diff --git a/app/services/dashboard/dese/five_c_one.rb b/app/services/dashboard/dese/five_c_one.rb index 305c198..02e4ff3 100644 --- a/app/services/dashboard/dese/five_c_one.rb +++ b/app/services/dashboard/dese/five_c_one.rb @@ -1,47 +1,49 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class FiveCOne - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class FiveCOne + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '5C_1_art_course.csv')]) - @filepaths = filepaths - end + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "5C_1_art_course.csv")]) + @filepaths = filepaths + end - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'K', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', - '11', '12', 'All Grades', 'Total Students'] - write_headers(filepath:, headers:) + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "K", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", + "11", "12", "All Grades", "Total Students"] + write_headers(filepath:, headers:) - run_a_picp_i1(filepath:) + run_a_picp_i1(filepath:) - browser.close - end + browser.close + end - def run_a_picp_i1(filepath:) - run do |academic_year| - admin_data_item_id = 'a-picp-i1' - url = 'https://profiles.doe.mass.edu/statereport/artcourse.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddView' => 'Percent' } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - percent_graduated_index = headers['All Grades'] - 1 - if items[percent_graduated_index].nil? || items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0' - return 'NA' - end + def run_a_picp_i1(filepath:) + run do |academic_year| + admin_data_item_id = "a-picp-i1" + url = "https://profiles.doe.mass.edu/statereport/artcourse.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddView" => "Percent" } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + percent_graduated_index = headers["All Grades"] - 1 + if items[percent_graduated_index].nil? || items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0" + return "NA" + end - percent_passing = items[percent_graduated_index].to_f - benchmark = 77.5 - percent_passing * 4 / benchmark if percent_graduated_index.present? - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + percent_passing = items[percent_graduated_index].to_f + benchmark = 77.5 + percent_passing * 4 / benchmark if percent_graduated_index.present? + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/five_d_two.rb b/app/services/dashboard/dese/five_d_two.rb index 4cbc9ac..9a3d88d 100644 --- a/app/services/dashboard/dese/five_d_two.rb +++ b/app/services/dashboard/dese/five_d_two.rb @@ -1,55 +1,57 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class FiveDTwo - include Dese::Scraper - include Dese::Enrollments - attr_reader :filepaths +module Dashboard + module Dese + class FiveDTwo + include Dese::Scraper + include Dese::Enrollments + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', 'enrollments.csv'), - Rails.root.join('data', 'admin_data', 'dese', '5D_2_age_staffing.csv')]) - @filepaths = filepaths - end + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "5D_2_age_staffing.csv")]) + @filepaths = filepaths + end - def run_all - filepath = filepaths[0] - scrape_enrollments(filepath:) + def run_all + filepath = filepaths[0] + scrape_enrollments(filepath:) - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '<26 yrs (# )', '26-32 yrs (#)', '33-40 yrs (#)', '41-48 yrs (#)', '49-56 yrs (#)', '57-64 yrs (#)', 'Over 64 yrs (#)', 'FTE Count'] - write_headers(filepath:, headers:) + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "<26 yrs (# )", "26-32 yrs (#)", "33-40 yrs (#)", "41-48 yrs (#)", "49-56 yrs (#)", "57-64 yrs (#)", "Over 64 yrs (#)", "FTE Count"] + write_headers(filepath:, headers:) - run_a_phya_i1(filepath:) + run_a_phya_i1(filepath:) - browser.close - end + browser.close + end - def run_a_phya_i1(filepath:) - run do |academic_year| - admin_data_item_id = 'a-phya-i1' - url = 'https://profiles.doe.mass.edu/statereport/agestaffing.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddJobClassification' => 'School Nurse -- Non-Special Education' } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - nurse_index = headers['FTE Count'] - return 'NA' if items[nurse_index] == '' || items[nurse_index].strip == '.0' + def run_a_phya_i1(filepath:) + run do |academic_year| + admin_data_item_id = "a-phya-i1" + url = "https://profiles.doe.mass.edu/statereport/agestaffing.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddJobClassification" => "School Nurse -- Non-Special Education" } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + nurse_index = headers["FTE Count"] + return "NA" if items[nurse_index] == "" || items[nurse_index].strip == ".0" - nurse_count = items[nurse_index].to_f - benchmark = 750 - nurse_count * 4 / benchmark if nurse_index.present? + nurse_count = items[nurse_index].to_f + benchmark = 750 + nurse_count * 4 / benchmark if nurse_index.present? - dese_id = items[headers['School Code']].to_i - num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 - items << num_of_students - items << (num_of_students / nurse_count) - ((benchmark - (num_of_students / nurse_count)) + benchmark) * 4 / benchmark - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + dese_id = items[headers["School Code"]].to_i + num_of_students = student_count(filepath: filepaths[0], dese_id:, year: academic_year.range) || 0 + items << num_of_students + items << (num_of_students / nurse_count) + ((benchmark - (num_of_students / nurse_count)) + benchmark) * 4 / benchmark + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/four_a_one.rb b/app/services/dashboard/dese/four_a_one.rb index b3537f5..8f9d4ff 100644 --- a/app/services/dashboard/dese/four_a_one.rb +++ b/app/services/dashboard/dese/four_a_one.rb @@ -1,43 +1,46 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class FourAOne - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class FourAOne + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '4A_1_grade_nine_course_pass.csv')]) - @filepaths = filepaths - end + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", + "4A_1_grade_nine_course_pass.csv")]) + @filepaths = filepaths + end - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# Grade Nine Students', '# Passing All Courses', '% Passing All Courses'] - write_headers(filepath:, headers:) + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# Grade Nine Students", "# Passing All Courses", "% Passing All Courses"] + write_headers(filepath:, headers:) - run_a_ovpe_i1(filepath:) + run_a_ovpe_i1(filepath:) - browser.close - end + browser.close + end - def run_a_ovpe_i1(filepath:) - run do |academic_year| - admin_data_item_id = 'a-ovpe-i1' - url = 'https://profiles.doe.mass.edu/statereport/gradeninecoursepass.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - passing_index = headers['% Passing All Courses'] - return 'NA' if items[passing_index] == '' || items[passing_index].strip == '.0' + def run_a_ovpe_i1(filepath:) + run do |academic_year| + admin_data_item_id = "a-ovpe-i1" + url = "https://profiles.doe.mass.edu/statereport/gradeninecoursepass.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + passing_index = headers["% Passing All Courses"] + return "NA" if items[passing_index] == "" || items[passing_index].strip == ".0" - percent_passing = items[passing_index].to_f - benchmark = 95 - percent_passing * 4 / benchmark if passing_index.present? - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + percent_passing = items[passing_index].to_f + benchmark = 95 + percent_passing * 4 / benchmark if passing_index.present? + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/four_b_two.rb b/app/services/dashboard/dese/four_b_two.rb index 3d8cbb1..e490fa6 100644 --- a/app/services/dashboard/dese/four_b_two.rb +++ b/app/services/dashboard/dese/four_b_two.rb @@ -1,104 +1,106 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class FourBTwo - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class FourBTwo + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '4B_2_four_year_grad.csv'), - Rails.root.join('data', 'admin_data', 'dese', '4B_2_retention.csv'), - Rails.root.join('data', 'admin_data', 'dese', '4B_2_five_year_grad.csv')]) - @filepaths = filepaths - end - - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# in Cohort', '% Graduated', '% Still in School', '% Non-Grad Completers', '% H.S. Equiv.', - '% Dropped Out', '% Permanently Excluded'] - write_headers(filepath:, headers:) - - run_a_degr_i1(filepath:) - - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# Enrolled', '# Retained', '% Retained', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', - '11', '12'] - write_headers(filepath:, headers:) - - run_a_degr_i2(filepath:) - - filepath = filepaths[2] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# in Cohort', '% Graduated', '% Still in School', '% Non-Grad Completers', '% H.S. Equiv.', - '% Dropped Out', '% Permanently Excluded'] - write_headers(filepath:, headers:) - - run_a_degr_i3(filepath:) - browser.close - end - - def run_a_degr_i1(filepath:) - run do |academic_year| - admin_data_item_id = 'a-degr-i1' - url = 'https://profiles.doe.mass.edu/statereport/gradrates.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddRateType' => '4yr Grad' } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - percent_graduated_index = headers['% Graduated'] - return 'NA' if items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0' - - percent_passing = items[percent_graduated_index].to_f - benchmark = 80 - percent_passing * 4 / benchmark if percent_graduated_index.present? - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_four_year_grad.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_retention.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "4B_2_five_year_grad.csv")]) + @filepaths = filepaths end - end - def run_a_degr_i2(filepath:) - run do |academic_year| - admin_data_item_id = 'a-degr-i2' - url = 'https://profiles.doe.mass.edu/statereport/retention.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddView' => 'Percent' } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - retained_index = headers['% Retained'] - return 'NA' if items[retained_index] == '' || items[retained_index].strip == '.0' + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# in Cohort", "% Graduated", "% Still in School", "% Non-Grad Completers", "% H.S. Equiv.", + "% Dropped Out", "% Permanently Excluded"] + write_headers(filepath:, headers:) - percent_retained = items[retained_index].to_f - benchmark = 2 - ((benchmark - percent_retained) + benchmark) * 4 / benchmark if retained_index.present? - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + run_a_degr_i1(filepath:) + + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# Enrolled", "# Retained", "% Retained", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", + "11", "12"] + write_headers(filepath:, headers:) + + run_a_degr_i2(filepath:) + + filepath = filepaths[2] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# in Cohort", "% Graduated", "% Still in School", "% Non-Grad Completers", "% H.S. Equiv.", + "% Dropped Out", "% Permanently Excluded"] + write_headers(filepath:, headers:) + + run_a_degr_i3(filepath:) + browser.close end - end - def run_a_degr_i3(filepath:) - run do |academic_year| - admin_data_item_id = 'a-degr-i3' - url = 'https://profiles.doe.mass.edu/statereport/gradrates.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddRateType' => '5yr Grad' } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - percent_graduated_index = headers['% Graduated'] - return 'NA' if items[percent_graduated_index] == '' || items[percent_graduated_index].strip == '.0' + def run_a_degr_i1(filepath:) + run do |academic_year| + admin_data_item_id = "a-degr-i1" + url = "https://profiles.doe.mass.edu/statereport/gradrates.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddRateType" => "4yr Grad" } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + percent_graduated_index = headers["% Graduated"] + return "NA" if items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0" - percent_passing = items[percent_graduated_index].to_f - benchmark = 85 - percent_passing * 4 / benchmark if percent_graduated_index.present? - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + percent_passing = items[percent_graduated_index].to_f + benchmark = 80 + percent_passing * 4 / benchmark if percent_graduated_index.present? + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_degr_i2(filepath:) + run do |academic_year| + admin_data_item_id = "a-degr-i2" + url = "https://profiles.doe.mass.edu/statereport/retention.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddView" => "Percent" } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + retained_index = headers["% Retained"] + return "NA" if items[retained_index] == "" || items[retained_index].strip == ".0" + + percent_retained = items[retained_index].to_f + benchmark = 2 + ((benchmark - percent_retained) + benchmark) * 4 / benchmark if retained_index.present? + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_degr_i3(filepath:) + run do |academic_year| + admin_data_item_id = "a-degr-i3" + url = "https://profiles.doe.mass.edu/statereport/gradrates.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddRateType" => "5yr Grad" } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + percent_graduated_index = headers["% Graduated"] + return "NA" if items[percent_graduated_index] == "" || items[percent_graduated_index].strip == ".0" + + percent_passing = items[percent_graduated_index].to_f + benchmark = 85 + percent_passing * 4 / benchmark if percent_graduated_index.present? + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/four_d_one.rb b/app/services/dashboard/dese/four_d_one.rb index 50a05d8..165e0b1 100644 --- a/app/services/dashboard/dese/four_d_one.rb +++ b/app/services/dashboard/dese/four_d_one.rb @@ -1,74 +1,76 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" # TODO: convert this to simpler format and add a run_all method -module Dese - class FourDOne - attr_reader :filepath +module Dashboard + module Dese + class FourDOne + attr_reader :filepath - def initialize(filepath: Rails.root.join('data', 'admin_data', 'dese', '4D_1_plans_of_grads.csv')) - @filepath = filepath - end - - def run_all - url = 'https://profiles.doe.mass.edu/statereport/plansofhsgrads.aspx' - browser = Watir::Browser.new - write_headers(filepath:) - academic_years = AcademicYear.all - academic_years.each do |academic_year| - table = scrape(browser:, url:, range: academic_year.range) - id = 'a-cgpr-i1' - write_csv(table:, filepath:, range: academic_year.range, id:) unless table.nil? + def initialize(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "4D_1_plans_of_grads.csv")) + @filepath = filepath end - browser.close - end - def scrape(browser:, url:, range:) - browser.goto(url) - - return unless browser.option(text: range).present? - - browser.select(id: 'ctl00_ContentPlaceHolder1_ddReportType').select(/School/) - browser.select(id: 'ctl00_ContentPlaceHolder1_ddYear').select(text: range) - browser.button(id: 'btnViewReport').click - sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests - document = Nokogiri::HTML(browser.html) - document.css('tr') - end - - def write_headers(filepath:) - CSV.open(filepath, 'w') do |csv| - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', '4 Year Private College', '4 Year Public College', '2 Year Private College', '2 Year Public College', - 'Other Post Secondary', 'Apprenticeship', 'Work', 'Military', 'Other', 'Unknown', 'Total'] - csv << headers + def run_all + url = "https://profiles.doe.mass.edu/statereport/plansofhsgrads.aspx" + browser = Watir::Browser.new + write_headers(filepath:) + academic_years = AcademicYear.all + academic_years.each do |academic_year| + table = scrape(browser:, url:, range: academic_year.range) + id = "a-cgpr-i1" + write_csv(table:, filepath:, range: academic_year.range, id:) unless table.nil? + end + browser.close end - end - def write_csv(table:, filepath:, range:, id:) - CSV.open(filepath, 'a') do |csv| - table.each do |row| - items = row.css('td').map(&:text) - dese_id = items[1].to_i - next if dese_id.nil? || dese_id.zero? + def scrape(browser:, url:, range:) + browser.goto(url) - raw_likert_score = calculate(cells: items) - likert_score = raw_likert_score - likert_score = 5 if raw_likert_score > 5 - likert_score = 1 if raw_likert_score < 1 - likert_score = likert_score.round(2) - output = [] - output << raw_likert_score - output << likert_score - output << id - output << range - output << items - csv << output.flatten + return unless browser.option(text: range).present? + + browser.select(id: "ctl00_ContentPlaceHolder1_ddReportType").select(/School/) + browser.select(id: "ctl00_ContentPlaceHolder1_ddYear").select(text: range) + browser.button(id: "btnViewReport").click + sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests + document = Nokogiri::HTML(browser.html) + document.css("tr") + end + + def write_headers(filepath:) + CSV.open(filepath, "w") do |csv| + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", "4 Year Private College", "4 Year Public College", "2 Year Private College", "2 Year Public College", + "Other Post Secondary", "Apprenticeship", "Work", "Military", "Other", "Unknown", "Total"] + csv << headers end end - end - def calculate(cells:) - (cells[2].to_f + cells[3].to_f + cells[4].to_f + cells[5].to_f + cells[6].to_f + cells[7].to_f + cells[8].to_f) * 4 / 75 + def write_csv(table:, filepath:, range:, id:) + CSV.open(filepath, "a") do |csv| + table.each do |row| + items = row.css("td").map(&:text) + dese_id = items[1].to_i + next if dese_id.nil? || dese_id.zero? + + raw_likert_score = calculate(cells: items) + likert_score = raw_likert_score + likert_score = 5 if raw_likert_score > 5 + likert_score = 1 if raw_likert_score < 1 + likert_score = likert_score.round(2) + output = [] + output << raw_likert_score + output << likert_score + output << id + output << range + output << items + csv << output.flatten + end + end + end + + def calculate(cells:) + (cells[2].to_f + cells[3].to_f + cells[4].to_f + cells[5].to_f + cells[6].to_f + cells[7].to_f + cells[8].to_f) * 4 / 75 + end end end end diff --git a/app/services/dashboard/dese/one_a_one.rb b/app/services/dashboard/dese/one_a_one.rb index 6eec2b6..f83c7e6 100644 --- a/app/services/dashboard/dese/one_a_one.rb +++ b/app/services/dashboard/dese/one_a_one.rb @@ -1,115 +1,117 @@ -require 'watir' -require 'csv' -# TODO: convert this to simpler format and add a run_all method -module Dese - class OneAOne - attr_reader :filepath +require "watir" +require "csv" - def initialize(filepath: Rails.root.join('data', 'admin_data', 'dese', '1A_1_teacher_data.csv')) - @filepath = filepath - end +module Dashboard + module Dese + class OneAOne + attr_reader :filepath - def run_all - url = 'https://profiles.doe.mass.edu/statereport/teacherdata.aspx' - browser = Watir::Browser.new - write_headers(filepath:) - academic_years = AcademicYear.all - academic_years.each do |academic_year| - document = scrape(browser:, url:, range: academic_year.range) - id = 'a-exp-i1' - write_csv(document:, filepath:, range: academic_year.range, id:) unless document.nil? + def initialize(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "1A_1_teacher_data.csv")) + @filepath = filepath end - browser.close - end - def scrape(browser:, url:, range:) - browser.goto(url) - - return unless browser.option(text: 'School').present? - return unless browser.option(text: range).present? - - browser.select(id: 'ctl00_ContentPlaceHolder1_ddReportType').select(text: 'School') - browser.select(id: 'ctl00_ContentPlaceHolder1_ddYear').select(text: range) - browser.button(id: 'ctl00_ContentPlaceHolder1_btnViewReport').click - sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests - Nokogiri::HTML(browser.html) - end - - def write_headers(filepath:) - CSV.open(filepath, 'w') do |csv| - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', 'Total # of Teachers(FTE)', 'Percent of Teachers Licensed', - 'Student/Teacher Ratio', 'Percent of Experienced Teachers', 'Percent of Teachers without Waiver or Provisional License', 'Percent Teaching in-field'] - csv << headers + def run_all + url = "https://profiles.doe.mass.edu/statereport/teacherdata.aspx" + browser = Watir::Browser.new + write_headers(filepath:) + academic_years = AcademicYear.all + academic_years.each do |academic_year| + document = scrape(browser:, url:, range: academic_year.range) + id = "a-exp-i1" + write_csv(document:, filepath:, range: academic_year.range, id:) unless document.nil? + end + browser.close end - end - def write_csv(document:, filepath:, range:, id:) - table = document.css('tr') - headers = document.css('.sorting') - header_hash = headers.each_with_index.map { |header, index| [header.text, index] }.to_h - experienced_teacher_index = header_hash['Percent of Experienced Teachers'] - dese_id_index = header_hash['School Code'] + def scrape(browser:, url:, range:) + browser.goto(url) - CSV.open(filepath, 'a') do |csv| - table.each do |row| - items = row.css('td').map(&:text) - dese_id = items[1].to_i - next if dese_id.nil? || dese_id.zero? + return unless browser.option(text: "School").present? + return unless browser.option(text: range).present? - raw_likert_score = items[experienced_teacher_index].to_f * 4 / 80 if experienced_teacher_index.present? - raw_likert_score ||= 'NA' - likert_score = raw_likert_score - if likert_score != 'NA' - likert_score = 5 if likert_score > 5 - likert_score = 1 if likert_score < 1 - likert_score = likert_score.round(2) - end + browser.select(id: "ctl00_ContentPlaceHolder1_ddReportType").select(text: "School") + browser.select(id: "ctl00_ContentPlaceHolder1_ddYear").select(text: range) + browser.button(id: "ctl00_ContentPlaceHolder1_btnViewReport").click + sleep Dese::Scraper::DELAY # Sleep to prevent hitting mass.edu with too many requests + Nokogiri::HTML(browser.html) + end - output = [] - output << raw_likert_score - output << likert_score - output << 'a-exp-i1' - output << range - output << items - output = output.flatten - csv << output + def write_headers(filepath:) + CSV.open(filepath, "w") do |csv| + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", "Total # of Teachers(FTE)", "Percent of Teachers Licensed", + "Student/Teacher Ratio", "Percent of Experienced Teachers", "Percent of Teachers without Waiver or Provisional License", "Percent Teaching in-field"] + csv << headers end end - in_field_index = header_hash['Percent Teaching In-Field'] + def write_csv(document:, filepath:, range:, id:) + table = document.css("tr") + headers = document.css(".sorting") + header_hash = headers.each_with_index.map { |header, index| [header.text, index] }.to_h + experienced_teacher_index = header_hash["Percent of Experienced Teachers"] + dese_id_index = header_hash["School Code"] - CSV.open(filepath, 'a') do |csv| - table.each do |row| - items = row.css('td').map(&:text) - dese_id = items[dese_id_index].to_i - next if dese_id.nil? || dese_id.zero? + CSV.open(filepath, "a") do |csv| + table.each do |row| + items = row.css("td").map(&:text) + dese_id = items[1].to_i + next if dese_id.nil? || dese_id.zero? - percent_in_field = items[in_field_index].to_f if in_field_index.present? - if in_field_index.present? && percent_in_field.present? && !percent_in_field.zero? - raw_likert_score = percent_in_field * 4 / 95 - end - raw_likert_score ||= 'NA' - likert_score = raw_likert_score - if likert_score != 'NA' - likert_score = 5 if likert_score > 5 - likert_score = 1 if likert_score < 1 - likert_score = likert_score.round(2) + raw_likert_score = items[experienced_teacher_index].to_f * 4 / 80 if experienced_teacher_index.present? + raw_likert_score ||= "NA" + likert_score = raw_likert_score + if likert_score != "NA" + likert_score = 5 if likert_score > 5 + likert_score = 1 if likert_score < 1 + likert_score = likert_score.round(2) + end + + output = [] + output << raw_likert_score + output << likert_score + output << "a-exp-i1" + output << range + output << items + output = output.flatten + csv << output end + end - output = [] - output << raw_likert_score - output << likert_score - output << 'a-exp-i3' - output << range - output << items - output = output.flatten - csv << output + in_field_index = header_hash["Percent Teaching In-Field"] + + CSV.open(filepath, "a") do |csv| + table.each do |row| + items = row.css("td").map(&:text) + dese_id = items[dese_id_index].to_i + next if dese_id.nil? || dese_id.zero? + + percent_in_field = items[in_field_index].to_f if in_field_index.present? + if in_field_index.present? && percent_in_field.present? && !percent_in_field.zero? + raw_likert_score = percent_in_field * 4 / 95 + end + raw_likert_score ||= "NA" + likert_score = raw_likert_score + if likert_score != "NA" + likert_score = 5 if likert_score > 5 + likert_score = 1 if likert_score < 1 + likert_score = likert_score.round(2) + end + + output = [] + output << raw_likert_score + output << likert_score + output << "a-exp-i3" + output << range + output << items + output = output.flatten + csv << output + end end end - end - def calculate(cells:) - cells[5].to_f * 4 / 95 + def calculate(cells:) + cells[5].to_f * 4 / 95 + end end end end diff --git a/app/services/dashboard/dese/one_a_three.rb b/app/services/dashboard/dese/one_a_three.rb index ceb6db2..4f86958 100644 --- a/app/services/dashboard/dese/one_a_three.rb +++ b/app/services/dashboard/dese/one_a_three.rb @@ -1,67 +1,70 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class OneAThree - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class OneAThree + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '1A_3_staffing_retention.csv'), - Rails.root.join('data', 'admin_data', 'dese', '1A_3_teachers_of_color.csv')]) - @filepaths = filepaths - end - - def run_all - run_a_pcom_i1 - run_a_pcom_i3 - - browser.close - end - - def run_a_pcom_i1 - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Principal Total', 'Principal # Retained', 'Principal % Retained', - 'Teacher Total', 'Teacher # Retained', 'Teacher % Retained'] - write_headers(filepath:, headers:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/staffingRetentionRates.aspx' - range = "#{academic_year.range.split('-').last.to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - retained_teachers = headers['% Retained'] - items[retained_teachers].to_f * 4 / 85 if retained_teachers.present? - } - admin_data_item_id = 'a-pcom-i1' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "1A_3_staffing_retention.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", + "1A_3_teachers_of_color.csv")]) + @filepaths = filepaths end - end - def run_a_pcom_i3 - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'African American (%)', 'Asian (%)', 'Hispanic (%)', 'White (%)', 'Native Hawaiian, Pacific Islander (%)', - 'Multi-Race,Non-Hispanic (%)', 'Females (%)', 'Males (%)', 'FTE Count'] - write_headers(filepath:, headers:) + def run_all + run_a_pcom_i1 + run_a_pcom_i3 - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddDisplay' => 'Percentages' } - submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport' - calculation = lambda { |headers, items| - white = headers['White (%)'] - result = ((100 - items[white].to_f) * 4) / 12.8 if white.present? + browser.close + end - result = 1 if result < 1 - result - } - admin_data_item_id = 'a-pcom-i3' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def run_a_pcom_i1 + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Principal Total", "Principal # Retained", "Principal % Retained", + "Teacher Total", "Teacher # Retained", "Teacher % Retained"] + write_headers(filepath:, headers:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/staffingRetentionRates.aspx" + range = "#{academic_year.range.split('-').last.to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + retained_teachers = headers["% Retained"] + items[retained_teachers].to_f * 4 / 85 if retained_teachers.present? + } + admin_data_item_id = "a-pcom-i1" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_pcom_i3 + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "African American (%)", "Asian (%)", "Hispanic (%)", "White (%)", "Native Hawaiian, Pacific Islander (%)", + "Multi-Race,Non-Hispanic (%)", "Females (%)", "Males (%)", "FTE Count"] + write_headers(filepath:, headers:) + + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddDisplay" => "Percentages" } + submit_id = "ctl00_ContentPlaceHolder1_btnViewReport" + calculation = lambda { |headers, items| + white = headers["White (%)"] + result = ((100 - items[white].to_f) * 4) / 12.8 if white.present? + + result = 1 if result < 1 + result + } + admin_data_item_id = "a-pcom-i3" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/staffing.rb b/app/services/dashboard/dese/staffing.rb index 9f491a9..d05b053 100644 --- a/app/services/dashboard/dese/staffing.rb +++ b/app/services/dashboard/dese/staffing.rb @@ -6,7 +6,7 @@ module Dashboard include Dashboard::Dese::Scraper attr_reader :filepath - def initialize(filepath: Dashboard::Engine.root.join("data", "dashboard", "staffing", "staffing.csv")) + def initialize(filepath: Dashboard::Engine.root.join("data", "staffing", "staffing.csv")) @filepath = filepath end diff --git a/app/services/dashboard/dese/three_a_one.rb b/app/services/dashboard/dese/three_a_one.rb index 6039a7b..499adf0 100644 --- a/app/services/dashboard/dese/three_a_one.rb +++ b/app/services/dashboard/dese/three_a_one.rb @@ -1,44 +1,47 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class ThreeAOne - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class ThreeAOne + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3A_1_average_class_size.csv')]) - @filepaths = filepaths - end + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", + "3A_1_average_class_size.csv")]) + @filepaths = filepaths + end - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Total # of Classes', 'Average Class Size', 'Number of Students', 'Female %', 'Male %', - 'English Language Learner %', 'Students with Disabilities %', 'Economically Disadvantaged %'] - write_headers(filepath:, headers:) + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Total # of Classes", "Average Class Size", "Number of Students", "Female %", "Male %", + "English Language Learner %", "Students with Disabilities %", "Economically Disadvantaged %"] + write_headers(filepath:, headers:) - run_a_reso_i1 + run_a_reso_i1 - browser.close - end + browser.close + end - def run_a_reso_i1 - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - class_size_index = headers['Average Class Size'] - average_class_size = items[class_size_index].to_f - benchmark = 20 - if class_size_index.present? && !items[class_size_index] != '' - ((benchmark - average_class_size) + benchmark) * 4 / benchmark - end - } - admin_data_item_id = 'a-reso-i1' - Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + def run_a_reso_i1 + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + class_size_index = headers["Average Class Size"] + average_class_size = items[class_size_index].to_f + benchmark = 20 + if class_size_index.present? && !items[class_size_index] != "" + ((benchmark - average_class_size) + benchmark) * 4 / benchmark + end + } + admin_data_item_id = "a-reso-i1" + Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/three_a_two.rb b/app/services/dashboard/dese/three_a_two.rb index df1d8d8..f8a6d29 100644 --- a/app/services/dashboard/dese/three_a_two.rb +++ b/app/services/dashboard/dese/three_a_two.rb @@ -9,11 +9,9 @@ module Dashboard attr_reader :filepaths def initialize(filepaths: - [Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", "enrollments.csv"), - Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", - "3A_2_age_staffing.csv"), - Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", - "3A_2_grade_subject_staffing.csv")]) + [Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "3A_2_age_staffing.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "3A_2_grade_subject_staffing.csv")]) @filepaths = filepaths end diff --git a/app/services/dashboard/dese/three_b_one.rb b/app/services/dashboard/dese/three_b_one.rb index e74151a..6286312 100644 --- a/app/services/dashboard/dese/three_b_one.rb +++ b/app/services/dashboard/dese/three_b_one.rb @@ -1,129 +1,133 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class ThreeBOne - include Dese::Scraper - include Dese::Enrollments - attr_reader :filepaths +module Dashboard + module Dese + class ThreeBOne + include Dese::Scraper + include Dese::Enrollments + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3B_1_masscore.csv'), - Rails.root.join('data', 'admin_data', 'dese', '3B_1_advcoursecomprate.csv'), - Rails.root.join('data', 'admin_data', 'dese', '3B_1_ap.csv'), - Rails.root.join('data', 'admin_data', 'dese', '3B_1_student_courses_ratio.csv')]) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_1_masscore.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", + "3B_1_advcoursecomprate.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_1_ap.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", + "3B_1_student_courses_ratio.csv")]) - @filepaths = filepaths - end - - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# Graduated', '# Completed MassCore', '% Completed MassCore'] - write_headers(filepath:, headers:) - - run_a_curv_i1(filepath:) - - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - '# Grade 11 and 12 Students', '# Students Completing Advanced', '% Students Completing Advanced', - '% ELA', '% Math', '% Science and Technology', '% Computer and Information Science', - '% History and Social Sciences', '% Arts', '% All Other Subjects', '% All Other Subjects'] - write_headers(filepath:, headers:) - run_a_curv_i2(filepath:) - - filepath = filepaths[2] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Tests Taken', 'Score=1', 'Score=2', 'Score=3', 'Score=4', 'Score=5', '% Score 1-2', '% Score 3-5'] - write_headers(filepath:, headers:) - run_a_curv_i3(filepath:) - - filepath = filepaths[3] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Total # of Classes', 'Average Class Size', 'Number of Students', 'Female %', 'Male %', 'English Language Learner %', 'Students with Disabilities %', 'Low Income %', 'Number of Students'] - write_headers(filepath:, headers:) - run_a_curv_i5(filepath:) - browser.close - end - - def run_a_curv_i1(filepath:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/masscore.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - completed_index = headers['% Completed MassCore'] - percent_completed = items[completed_index].to_f - benchmark = 90 - percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != '' - } - admin_data_item_id = 'a-curv-i1' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + @filepaths = filepaths end - end - def run_a_curv_i2(filepath:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/advcoursecomprate.aspx' - range = "#{academic_year.range.split('-')[1].to_i + 2000}" - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - completed_index = headers['% Students Completing Advanced'] - percent_completed = items[completed_index].to_f - benchmark = 30 - percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != '' - } - admin_data_item_id = 'a-curv-i2' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# Graduated", "# Completed MassCore", "% Completed MassCore"] + write_headers(filepath:, headers:) + + run_a_curv_i1(filepath:) + + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "# Grade 11 and 12 Students", "# Students Completing Advanced", "% Students Completing Advanced", + "% ELA", "% Math", "% Science and Technology", "% Computer and Information Science", + "% History and Social Sciences", "% Arts", "% All Other Subjects", "% All Other Subjects"] + write_headers(filepath:, headers:) + run_a_curv_i2(filepath:) + + filepath = filepaths[2] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Tests Taken", "Score=1", "Score=2", "Score=3", "Score=4", "Score=5", "% Score 1-2", "% Score 3-5"] + write_headers(filepath:, headers:) + run_a_curv_i3(filepath:) + + filepath = filepaths[3] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Total # of Classes", "Average Class Size", "Number of Students", "Female %", "Male %", "English Language Learner %", "Students with Disabilities %", "Low Income %", "Number of Students"] + write_headers(filepath:, headers:) + run_a_curv_i5(filepath:) + browser.close end - end - def run_a_curv_i3(filepath:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/ap.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport' - calculation = lambda { |headers, items| - completed_index = headers['% Score 3-5'] - percent_score = items[completed_index].to_f - benchmark = 20 - percent_score * 4 / benchmark if completed_index.present? && !items[completed_index] != '' - } - admin_data_item_id = 'a-curv-i3' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def run_a_curv_i1(filepath:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/masscore.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + completed_index = headers["% Completed MassCore"] + percent_completed = items[completed_index].to_f + benchmark = 90 + percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != "" + } + admin_data_item_id = "a-curv-i1" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end - end - def run_a_curv_i5(filepath:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - row = headers.keys.zip(items).to_h - dese_id = row['School Code'].to_i - is_hs = (row['School Name'] in /High School/i) - school = School.find_by(dese_id:) - is_hs = school.is_hs if school.present? - next 'NA' unless is_hs + def run_a_curv_i2(filepath:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/advcoursecomprate.aspx" + range = "#{academic_year.range.split('-')[1].to_i + 2000}" + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + completed_index = headers["% Students Completing Advanced"] + percent_completed = items[completed_index].to_f + benchmark = 30 + percent_completed * 4 / benchmark if completed_index.present? && !items[completed_index] != "" + } + admin_data_item_id = "a-curv-i2" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end - num_of_classes = row['Total # of Classes'].delete(',').to_f - num_of_students = student_count(filepath: Rails.root.join('data', 'admin_data', 'dese', 'enrollments.csv'), - dese_id:, year: academic_year.range) || 0 - items << num_of_students - actual = num_of_students / num_of_classes - benchmark = 5 - ((benchmark - actual) + benchmark) * 4 / benchmark if num_of_classes.present? && num_of_students.present? - } - admin_data_item_id = 'a-curv-i5' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def run_a_curv_i3(filepath:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/ap.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "ctl00_ContentPlaceHolder1_btnViewReport" + calculation = lambda { |headers, items| + completed_index = headers["% Score 3-5"] + percent_score = items[completed_index].to_f + benchmark = 20 + percent_score * 4 / benchmark if completed_index.present? && !items[completed_index] != "" + } + admin_data_item_id = "a-curv-i3" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_curv_i5(filepath:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/classsizebygenderpopulation.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + row = headers.keys.zip(items).to_h + dese_id = row["School Code"].to_i + is_hs = (row["School Name"] in /High School/i) + school = School.find_by(dese_id:) + is_hs = school.is_hs if school.present? + next "NA" unless is_hs + + num_of_classes = row["Total # of Classes"].delete(",").to_f + num_of_students = student_count(filepath: Dashboard::Engine.root.join("data", "admin_data", "dese", "enrollments.csv"), + dese_id:, year: academic_year.range) || 0 + items << num_of_students + actual = num_of_students / num_of_classes + benchmark = 5 + ((benchmark - actual) + benchmark) * 4 / benchmark if num_of_classes.present? && num_of_students.present? + } + admin_data_item_id = "a-curv-i5" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/three_b_two.rb b/app/services/dashboard/dese/three_b_two.rb index 9d2ec51..b112f4f 100644 --- a/app/services/dashboard/dese/three_b_two.rb +++ b/app/services/dashboard/dese/three_b_two.rb @@ -1,128 +1,131 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class ThreeBTwo - include Dese::Scraper - include Dese::Enrollments - attr_reader :filepaths +module Dashboard + module Dese + class ThreeBTwo + include Dese::Scraper + include Dese::Enrollments + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '3B_2_teacher_by_race_and_gender.csv'), - Rails.root.join('data', 'admin_data', 'dese', '3B_2_student_by_race_and_gender.csv')]) - @filepaths = filepaths - end - - def run_all - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'Teachers of color (%)', 'School Name', 'DESE ID', - 'African American (%)', 'Asian (%)', 'Hispanic (%)', 'White (%)', 'Native American (%)', - 'Native Hawaiian Pacific Islander (%)', 'Multi-Race Non-Hispanic (%)', 'Females (%)', - 'Males (%)', 'FTE Count'] - write_headers(filepath:, headers:) - run_teacher_demographics(filepath:) - - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'Non-White Teachers %', 'Non-White Students %', 'School Name', 'DESE ID', - 'African American', 'Asian', 'Hispanic', 'White', 'Native American', - 'Native Hawaiian or Pacific Islander', 'Multi-Race or Non-Hispanic', 'Males', - 'Females', 'Non-Binary', 'Students of color (%)'] - write_headers(filepath:, headers:) - run_student_demographics(filepath:) - - browser.close - end - - def run_teacher_demographics(filepath:) - run do |academic_year| - admin_data_item_id = '' - url = 'https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range, - 'ctl00_ContentPlaceHolder1_ddDisplay' => 'Percentages', - 'ctl00_ContentPlaceHolder1_ddClassification' => 'Teacher' } - submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport' - calculation = lambda { |headers, items| - african_american_index = headers['African American (%)'] - african_american_number = items[african_american_index].to_f - - asian_index = headers['Asian (%)'] - asian_number = items[asian_index].to_f - - hispanic_index = headers['Hispanic (%)'] - hispanic_number = items[hispanic_index].to_f - - native_american_index = headers['Native American (%)'] - native_american_number = items[native_american_index].to_f - - native_hawaiian_index = headers['Native Hawaiian, Pacific Islander (%)'] - native_hawaiian_number = items[native_hawaiian_index].to_f - - multi_race_index = headers['Multi-Race,Non-Hispanic (%)'] - multi_race_number = items[multi_race_index].to_f - - non_white_teachers = african_american_number + asian_number + hispanic_number + native_american_number + native_hawaiian_number + multi_race_number - items.unshift(non_white_teachers) - - non_white_teachers - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "3B_2_teacher_by_race_and_gender.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", + "3B_2_student_by_race_and_gender.csv")]) + @filepaths = filepaths end - end - def teacher_count(filepath:, dese_id:, year:) - @teachers ||= {} - @years_with_data ||= Set.new - if @teachers.count == 0 - CSV.parse(File.read(filepath), headers: true).map do |row| - academic_year = row['Academic Year'] - @years_with_data << academic_year - school_id = row['DESE ID'].to_i - total = row['Teachers of color (%)'].delete(',') - total = 'NA' if total == '' || total.nil? - @teachers[[school_id, academic_year]] = total + def run_all + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "Teachers of color (%)", "School Name", "DESE ID", + "African American (%)", "Asian (%)", "Hispanic (%)", "White (%)", "Native American (%)", + "Native Hawaiian Pacific Islander (%)", "Multi-Race Non-Hispanic (%)", "Females (%)", + "Males (%)", "FTE Count"] + write_headers(filepath:, headers:) + run_teacher_demographics(filepath:) + + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "Non-White Teachers %", "Non-White Students %", "School Name", "DESE ID", + "African American", "Asian", "Hispanic", "White", "Native American", + "Native Hawaiian or Pacific Islander", "Multi-Race or Non-Hispanic", "Males", + "Females", "Non-Binary", "Students of color (%)"] + write_headers(filepath:, headers:) + run_student_demographics(filepath:) + + browser.close + end + + def run_teacher_demographics(filepath:) + run do |academic_year| + admin_data_item_id = "" + url = "https://profiles.doe.mass.edu/statereport/teacherbyracegender.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range, + "ctl00_ContentPlaceHolder1_ddDisplay" => "Percentages", + "ctl00_ContentPlaceHolder1_ddClassification" => "Teacher" } + submit_id = "ctl00_ContentPlaceHolder1_btnViewReport" + calculation = lambda { |headers, items| + african_american_index = headers["African American (%)"] + african_american_number = items[african_american_index].to_f + + asian_index = headers["Asian (%)"] + asian_number = items[asian_index].to_f + + hispanic_index = headers["Hispanic (%)"] + hispanic_number = items[hispanic_index].to_f + + native_american_index = headers["Native American (%)"] + native_american_number = items[native_american_index].to_f + + native_hawaiian_index = headers["Native Hawaiian, Pacific Islander (%)"] + native_hawaiian_number = items[native_hawaiian_index].to_f + + multi_race_index = headers["Multi-Race,Non-Hispanic (%)"] + multi_race_number = items[multi_race_index].to_f + + non_white_teachers = african_american_number + asian_number + hispanic_number + native_american_number + native_hawaiian_number + multi_race_number + items.unshift(non_white_teachers) + + non_white_teachers + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) end end - return 'NA' unless @years_with_data.include? year - @teachers[[dese_id, year]] - end - - def run_student_demographics(filepath:) - run do |academic_year| - admin_data_item_id = 'a-cure-i1' - url = 'https://profiles.doe.mass.edu/statereport/enrollmentbyracegender.aspx' - range = academic_year.range - - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - white_index = headers['White'] - white_number = items[white_index].to_f - dese_id = items[headers['School Code']].to_i - non_white_student_percentage = (100 - white_number).to_f - items.unshift(non_white_student_percentage) - count_of_teachers = teacher_count(filepath: filepaths[0], dese_id:, year: academic_year.range) - return 'NA' if count_of_teachers == 'NA' - - non_white_teacher_percentage = count_of_teachers.to_f - items.unshift(non_white_teacher_percentage) - - floor = 5 - benchmark = 0.25 - - return 1 if non_white_student_percentage.zero? && non_white_teacher_percentage < floor - - if non_white_teacher_percentage >= floor - parity_index = non_white_teacher_percentage / non_white_student_percentage - likert_score = parity_index * 4 / benchmark - else - likert_score = 1 + def teacher_count(filepath:, dese_id:, year:) + @teachers ||= {} + @years_with_data ||= Set.new + if @teachers.count == 0 + CSV.parse(File.read(filepath), headers: true).map do |row| + academic_year = row["Academic Year"] + @years_with_data << academic_year + school_id = row["DESE ID"].to_i + total = row["Teachers of color (%)"].delete(",") + total = "NA" if total == "" || total.nil? + @teachers[[school_id, academic_year]] = total end - likert_score - } - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + return "NA" unless @years_with_data.include? year + + @teachers[[dese_id, year]] + end + + def run_student_demographics(filepath:) + run do |academic_year| + admin_data_item_id = "a-cure-i1" + url = "https://profiles.doe.mass.edu/statereport/enrollmentbyracegender.aspx" + range = academic_year.range + + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + white_index = headers["White"] + white_number = items[white_index].to_f + dese_id = items[headers["School Code"]].to_i + non_white_student_percentage = (100 - white_number).to_f + items.unshift(non_white_student_percentage) + count_of_teachers = teacher_count(filepath: filepaths[0], dese_id:, year: academic_year.range) + return "NA" if count_of_teachers == "NA" + + non_white_teacher_percentage = count_of_teachers.to_f + items.unshift(non_white_teacher_percentage) + + floor = 5 + benchmark = 0.25 + + return 1 if non_white_student_percentage.zero? && non_white_teacher_percentage < floor + + if non_white_teacher_percentage >= floor + parity_index = non_white_teacher_percentage / non_white_student_percentage + likert_score = parity_index * 4 / benchmark + else + likert_score = 1 + end + likert_score + } + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/two_a_one.rb b/app/services/dashboard/dese/two_a_one.rb index f025eaf..d9ed974 100644 --- a/app/services/dashboard/dese/two_a_one.rb +++ b/app/services/dashboard/dese/two_a_one.rb @@ -1,69 +1,72 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class TwoAOne - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class TwoAOne + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '2A_1_students_suspended.csv'), - Rails.root.join('data', 'admin_data', 'dese', '2A_1_students_disciplined.csv')]) - @filepaths = filepaths - end - - def run_all - run_a_phys_i1 - run_a_phys_i3 - - browser.close - end - - def run_a_phys_i1 - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Students', 'Students Disciplined', '% In-School Suspension', '% Out-of-School Suspension', '% Expulsion', '% Removed to Alternate Setting', - '% Emergency Removal', '% Students with a School-Based Arrest', '% Students with a Law Enforcement Referral'] - write_headers(filepath:, headers:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/ssdr.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport' - calculation = lambda { |headers, items| - suspensions_index = headers['% Out-of-School Suspension'] - benchmark = 5.27 - suspension_rate = items[suspensions_index].to_f - if suspensions_index.present? && items[suspensions_index] != '' - ((benchmark - suspension_rate) + benchmark) * 4 / 5.27 - end - } - admin_data_item_id = 'a-phys-i1' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "2A_1_students_suspended.csv"), + Dashboard::Engine.root.join("data", "admin_data", "dese", + "2A_1_students_disciplined.csv")]) + @filepaths = filepaths end - end - def run_a_phys_i3 - filepath = filepaths[1] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Students', 'Students Disciplined', '% 1 Day', '% 2 to 3 Days', '% 4 to 7 Days', '% 8 to 10 Days', '% > 10 Days'] - write_headers(filepath:, headers:) - run do |academic_year| - url = 'https://profiles.doe.mass.edu/statereport/ssdr_days_missed.aspx' - range = academic_year.range - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'ctl00_ContentPlaceHolder1_btnViewReport' - calculation = lambda { |headers, items| - days_missed_index = headers['% > 10 Days'] - benchmark = 1 - missed_days = items[days_missed_index].to_f - if days_missed_index.present? && items[days_missed_index] != '' - ((benchmark - missed_days) + benchmark) * 4 / benchmark - end - } - admin_data_item_id = 'a-phys-i3' - Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + def run_all + run_a_phys_i1 + run_a_phys_i3 + + browser.close + end + + def run_a_phys_i1 + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Students", "Students Disciplined", "% In-School Suspension", "% Out-of-School Suspension", "% Expulsion", "% Removed to Alternate Setting", + "% Emergency Removal", "% Students with a School-Based Arrest", "% Students with a Law Enforcement Referral"] + write_headers(filepath:, headers:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/ssdr.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "ctl00_ContentPlaceHolder1_btnViewReport" + calculation = lambda { |headers, items| + suspensions_index = headers["% Out-of-School Suspension"] + benchmark = 5.27 + suspension_rate = items[suspensions_index].to_f + if suspensions_index.present? && items[suspensions_index] != "" + ((benchmark - suspension_rate) + benchmark) * 4 / 5.27 + end + } + admin_data_item_id = "a-phys-i1" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_phys_i3 + filepath = filepaths[1] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Students", "Students Disciplined", "% 1 Day", "% 2 to 3 Days", "% 4 to 7 Days", "% 8 to 10 Days", "% > 10 Days"] + write_headers(filepath:, headers:) + run do |academic_year| + url = "https://profiles.doe.mass.edu/statereport/ssdr_days_missed.aspx" + range = academic_year.range + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "ctl00_ContentPlaceHolder1_btnViewReport" + calculation = lambda { |headers, items| + days_missed_index = headers["% > 10 Days"] + benchmark = 1 + missed_days = items[days_missed_index].to_f + if days_missed_index.present? && items[days_missed_index] != "" + ((benchmark - missed_days) + benchmark) * 4 / benchmark + end + } + admin_data_item_id = "a-phys-i3" + Prerequisites.new(filepath, url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/app/services/dashboard/dese/two_c_one.rb b/app/services/dashboard/dese/two_c_one.rb index 95ad83e..3bc29d3 100644 --- a/app/services/dashboard/dese/two_c_one.rb +++ b/app/services/dashboard/dese/two_c_one.rb @@ -1,75 +1,77 @@ -require 'watir' -require 'csv' +require "watir" +require "csv" -module Dese - class TwoCOne - include Dese::Scraper - attr_reader :filepaths +module Dashboard + module Dese + class TwoCOne + include Dese::Scraper + attr_reader :filepaths - def initialize(filepaths: [Rails.root.join('data', 'admin_data', 'dese', '2C_1_attendance.csv')]) - @filepaths = filepaths - end - - def run_all - write_a_vale_i1_headers - run_a_vale_i1 - run_a_vale_i2 - - browser.close - end - - def write_a_vale_i1_headers - filepath = filepaths[0] - headers = ['Raw likert calculation', 'Likert Score', 'Admin Data Item', 'Academic Year', 'School Name', 'DESE ID', - 'Attendance Rate', 'Average # of Absences', 'Absent 10 or more days', 'Chronically Absent (10% or more)', - 'Chronically Absent (20% or more)', 'Unexcused > 9 days'] - write_headers(filepath:, headers:) - end - - def run_a_vale_i1 - run do |academic_year| - admin_data_item_id = 'a-vale-i1' - url = 'https://profiles.doe.mass.edu/statereport/attendance.aspx' - range = case academic_year.range - when '2021-22', '2020-21' - "#{academic_year.range} (End of year)" - else - academic_year.range - end - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - absence_index = headers['Chronically Absent (10% or more)'] - benchmark = 10 - absence_rate = items[absence_index].to_f - if absence_index.present? && !items[absence_index].blank? - ((benchmark - absence_rate) + benchmark) * 4 / benchmark - end - } - Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + def initialize(filepaths: [Dashboard::Engine.root.join("data", "admin_data", "dese", "2C_1_attendance.csv")]) + @filepaths = filepaths end - end - def run_a_vale_i2 - run do |academic_year| - admin_data_item_id = 'a-vale-i2' - url = 'https://profiles.doe.mass.edu/statereport/attendance.aspx' - range = case academic_year.range - when '2021-22', '2020-21' - "#{academic_year.range} (End of year)" - else - academic_year.range - end - selectors = { 'ctl00_ContentPlaceHolder1_ddReportType' => 'School', - 'ctl00_ContentPlaceHolder1_ddYear' => range } - submit_id = 'btnViewReport' - calculation = lambda { |headers, items| - attendance = headers[' Attendance Rate '] - benchmark = 90 - items[attendance].to_f * 4 / benchmark if attendance.present? - } - Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + def run_all + write_a_vale_i1_headers + run_a_vale_i1 + run_a_vale_i2 + + browser.close + end + + def write_a_vale_i1_headers + filepath = filepaths[0] + headers = ["Raw likert calculation", "Likert Score", "Admin Data Item", "Academic Year", "School Name", "DESE ID", + "Attendance Rate", "Average # of Absences", "Absent 10 or more days", "Chronically Absent (10% or more)", + "Chronically Absent (20% or more)", "Unexcused > 9 days"] + write_headers(filepath:, headers:) + end + + def run_a_vale_i1 + run do |academic_year| + admin_data_item_id = "a-vale-i1" + url = "https://profiles.doe.mass.edu/statereport/attendance.aspx" + range = case academic_year.range + when "2021-22", "2020-21" + "#{academic_year.range} (End of year)" + else + academic_year.range + end + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + absence_index = headers["Chronically Absent (10% or more)"] + benchmark = 10 + absence_rate = items[absence_index].to_f + if absence_index.present? && !items[absence_index].blank? + ((benchmark - absence_rate) + benchmark) * 4 / benchmark + end + } + Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + end + end + + def run_a_vale_i2 + run do |academic_year| + admin_data_item_id = "a-vale-i2" + url = "https://profiles.doe.mass.edu/statereport/attendance.aspx" + range = case academic_year.range + when "2021-22", "2020-21" + "#{academic_year.range} (End of year)" + else + academic_year.range + end + selectors = { "ctl00_ContentPlaceHolder1_ddReportType" => "School", + "ctl00_ContentPlaceHolder1_ddYear" => range } + submit_id = "btnViewReport" + calculation = lambda { |headers, items| + attendance = headers[" Attendance Rate "] + benchmark = 90 + items[attendance].to_f * 4 / benchmark if attendance.present? + } + Prerequisites.new(filepaths[0], url, selectors, submit_id, admin_data_item_id, calculation) + end end end end diff --git a/data/dashboard/admin_data/dese/1A_1_teacher_data.csv b/data/admin_data/dese/1A_1_teacher_data.csv similarity index 65% rename from data/dashboard/admin_data/dese/1A_1_teacher_data.csv rename to data/admin_data/dese/1A_1_teacher_data.csv index a23a16b..667d865 100644 --- a/data/dashboard/admin_data/dese/1A_1_teacher_data.csv +++ b/data/admin_data/dese/1A_1_teacher_data.csv @@ -1,4 +1,7398 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Total # of Teachers(FTE),Percent of Teachers Licensed,Student/Teacher Ratio,Percent of Experienced Teachers,Percent of Teachers without Waiver or Provisional License,Percent Teaching in-field +NA,NA,a-exp-i1,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 106.6, 95.3, 590, 99.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Abington High,00010505, 39.3, 100.0, 192, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Beaver Brook Elementary School,00010003, 37.7, 100.0, 239, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Center Elementary School,00010002, 10.3, 100.0, 72, 100.0, 19.7 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Frolio Middle School,00010405, 25.1, 100.0, 131, 92.4, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 98, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 44.3, 78.2, 115, 90.4, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 125.9, 100.0, 535, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 27.5, 100.0, 116, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 28.0, 100.0, 122, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 26, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Luther Conant School,06000030, 28.1, 100.0, 122, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 29.5, 100.0, 128, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 140, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.5, 100.0, 110, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.8, 100.0, 303, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Acushnet - Acushnet Elementary School,00030025, 38.6, 100.0, 171, 97.1, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Acushnet - Albert F Ford Middle School,00030305, 32.4, 100.0, 225, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 15.1, 100.0, 116, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 46.1, 100.0, 312, 97.1, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 23.7, 100.0, 153, 100.0, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 78.4, 88.9, 371, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam Early Childhood Center,00050003, 10.0, 100.0, 24, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam High,00050505, 95.7, 100.0, 415, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam Junior High,00050405, 59.7, 100.0, 373, 100.0, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Benjamin J Phelps,00050020, 28.5, 100.0, 188, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Clifford M Granger,00050010, 21.6, 100.0, 117, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - James Clark School,00050030, 27.4, 100.0, 178, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Roberta G. Doering School,00050303, 46.5, 100.0, 325, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Robinson Park,00050025, 31.0, 100.0, 193, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 33.2, 60.7, 82, 51.2, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Elementary,00070005, 29.5, 100.0, 140, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury High,00070505, 43.9, 99.4, 279, 95.7, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Innovation High School,00070515, 6.0, 100.0, 24, 41.7, 5.2 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Middle,00070013, 56.6, 100.0, 249, 93.6, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 33.3, 100.0, 159, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Crocker Farm Elementary,00080009, 42.6, 100.0, 160, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Fort River Elementary,00080020, 37.8, 100.0, 128, 96.1, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Wildwood Elementary,00080050, 43.0, 97.7, 163, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 71.7, 98.6, 485, 97.9, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 44.4, 97.3, 168, 86.9, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Andover High,00090505, 117.6, 100.0, 844, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Andover West Middle,00090310, 45.9, 100.0, 211, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Bancroft Elementary,00090003, 46.5, 100.0, 164, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Doherty Middle,00090305, 49.0, 100.0, 216, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Henry C Sanborn Elementary,00090010, 27.3, 100.0, 107, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Andover - High Plain Elementary,00090004, 42.1, 100.0, 133, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Shawsheen School,00090005, 6.0, 100.0, 29, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Andover - South Elementary,00090020, 37.1, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Andover - West Elementary,00090025, 47.6, 100.0, 166, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Wood Hill Middle School,00090350, 37.9, 100.0, 163, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 26.0, 73.1, 72, 86.1, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Arlington High,00100505, 100.4, 99.0, 495, 98.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Brackett,00100010, 30.5, 100.0, 162, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Cyrus E Dallin,00100025, 31.9, 100.0, 162, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Hardy,00100030, 29.8, 100.0, 126, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - John A Bishop,00100005, 24.6, 99.2, 108, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - M Norcross Stratton,00100055, 30.0, 100.0, 150, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 30, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Ottoson Middle,00100410, 94.5, 98.9, 512, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Peirce,00100045, 18.6, 100.0, 72, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Thompson,00100050, 31.9, 100.0, 126, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 35.5, 100.0, 193, 94.8, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 57, 93.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 45.2, 100.0, 251, 99.6, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 36.9, 100.0, 317, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 21.6, 100.0, 121, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Ashland High,00140505, 52.0, 100.0, 260, 96.5, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Ashland Middle,00140405, 46.3, 100.0, 242, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - David Mindess,00140015, 39.6, 100.0, 178, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Henry E Warren Elementary,00140010, 41.5, 100.0, 229, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 30, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 107.5, 99.1, 344, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 36.1, 100.0, 189, 99.5, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol High,06150505, 28.9, 100.0, 158, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.2, 100.0, 167, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Royalston Community School,06150050, 10.9, 100.0, 68, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 82.2, 83.9, 359, 98.9, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 31.1, 100.0, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Attleboro Community Academy,00160515, 2.8, 100.0, 37, 83.8, 22.7 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Attleboro High,00160505, 103.7, 100.0, 667, 99.9, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 31.5, 100.0, 208, 99.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Early Learning Center,00160008, 8.1, 100.0, 18, 100.0, 23.1 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 25.1, 100.0, 114, 100.0, 18.6 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 26.8, 100.0, 113, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 31.3, 100.0, 164, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 38.4, 100.0, 170, 97.6, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 27.3, 100.0, 118, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Wamsutta Middle School,00160320, 33.1, 100.0, 150, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Auburn Middle,00170305, 43.8, 100.0, 200, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Auburn Senior High,00170505, 62.7, 100.0, 534, 99.8, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Bryn Mawr,00170010, 18.2, 100.0, 84, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Pakachoag School,00170025, 16.6, 100.0, 84, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 178, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Avon - Avon Middle High School,00180510, 34.8, 100.0, 176, 99.4, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Avon - Ralph D Butler,00180010, 31.0, 100.0, 125, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 37.1, 94.6, 171, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 34.3, 100.0, 124, 96.8, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.6, 100.0, 138, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.5, 100.0, 122, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable High,00200505, 140.7, 99.6, 536, 99.3, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable Intermediate School,00200315, 61.2, 100.0, 236, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable United Elementary School,00200050, 60.2, 99.6, 288, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Centerville Elementary,00200010, 22.5, 99.2, 83, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 17, 100.0, 21.0 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 138, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - West Barnstable Elementary,00200005, 18.7, 100.0, 90, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - West Villages Elementary School,00200045, 30.4, 96.7, 122, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 22.0, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 36.2, 70.0, 211, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Bedford High,00230505, 78.4, 97.3, 434, 99.8, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - John Glenn Middle,00230305, 54.7, 100.0, 250, 98.8, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Lt Elezer Davis,00230010, 45.0, 100.0, 181, 98.9, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Lt Job Lane School,00230012, 44.0, 100.0, 213, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Belchertown High,00240505, 48.4, 99.2, 275, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Chestnut Hill Community School,00240006, 39.2, 100.0, 249, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Cold Spring,00240005, 12.7, 100.0, 66, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Jabish Middle School,00240025, 32.7, 96.9, 168, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Swift River Elementary,00240018, 36.2, 100.0, 198, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 5.0, 100.0, 20, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham High School,00250505, 51.5, 100.0, 303, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham Memorial School,00250315, 47.6, 100.0, 254, 98.4, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Keough Memorial Academy,00250510, 7.0, 100.0, 27, 100.0, 4.8 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - South Elementary,00250020, 25.7, 100.0, 121, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Stall Brook,00250025, 27.6, 100.0, 128, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Belmont High,00260505, 74.9, 98.7, 348, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Daniel Butler,00260015, 24.1, 100.0, 114, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Mary Lee Burbank,00260010, 21.1, 100.0, 108, 100.0, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Roger E Wellington,00260035, 37.5, 100.0, 176, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Winn Brook,00260005, 27.1, 100.0, 122, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 83.9, 100.0, 442, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 95.0, 109, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 28.2, 79.8, 159, 59.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 32.3, 100.0, 117, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Berkley - Berkley Community School,00270010, 37.0, 100.0, 176, 99.4, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkley - Berkley Middle School,00270305, 27.0, 100.0, 119, 95.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 32.9, 52.7, 155, 92.3, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 45.7, 96.7, 234, 98.3, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 33.8, 100.0, 178, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 34.5, 100.0, 164, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Berlin - Berlin Memorial,00280005, 16.3, 100.0, 104, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 45.7, 98.7, 255, 99.2, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Ayers/Ryal Side School,00300055, 36.6, 99.5, 125, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Beverly High,00300505, 91.5, 95.9, 388, 98.5, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Briscoe Middle,00300305, 71.8, 100.0, 279, 99.6, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Centerville Elementary,00300010, 25.0, 99.2, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Cove Elementary,00300015, 29.3, 99.3, 107, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Hannah Elementary,00300033, 27.7, 99.3, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - McKeown School,00300002, 8.0, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - North Beverly Elementary,00300040, 27.9, 99.3, 99, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Billerica Memorial High School,00310505, 99.3, 100.0, 416, 94.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Eugene C Vining,00310030, 16.1, 100.0, 88, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Frederick J Dutile,00310007, 23.7, 100.0, 99, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Hajjar Elementary,00310026, 33.5, 100.0, 146, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - John F Kennedy,00310012, 23.2, 100.0, 105, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Locke Middle,00310310, 45.7, 100.0, 243, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Marshall Middle School,00310305, 54.7, 100.0, 217, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Parker,00310015, 35.5, 100.0, 140, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Thomas Ditson,00310005, 40.7, 100.0, 183, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 94.3, 96.8, 337, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - A F Maloney,06220015, 20.8, 100.0, 97, 96.9, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.4, 97.4, 154, 87.7, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.7, 100.0, 128, 96.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 24.0, 100.0, 98, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Millville Elementary,06220010, 20.2, 100.0, 100, 97.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.5, 97.5, 213, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Another Course To College,00350541, 20.1, 86.8, 101, 78.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Baldwin Early Learning Center,00350003, 11.0, 100.0, 52, 82.7, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Beethoven,00350021, 22.2, 100.0, 131, 96.2, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Blackstone,00350390, 45.4, 96.1, 307, 80.8, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Adult Academy,00350548, 19.1, 84.3, 97, 78.4, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Arts Academy,00350546, 49.7, 82.0, 256, 53.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Collaborative High School,00350755, .9, 100.0, 71, 18.3, 205.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Community Leadership Academy,00350558, 36.8, 92.5, 117, 81.2, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston International High School,00350507, 45.1, 93.3, 262, 76.7, 8.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Latin,00350560, 118.8, 100.0, 693, 95.8, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Latin Academy,00350545, 90.4, 96.9, 406, 96.8, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Teachers Union School,00350012, 22.5, 93.4, 128, 93.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Brighton High,00350505, 66.5, 90.9, 218, 71.6, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Carter Developmental Center,00350036, 1.0, 0.0, 2, 0.0, 29.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charles H Taylor,00350054, 36.7, 94.5, 301, 79.4, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charles Sumner,00350052, 37.4, 100.0, 263, 81.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charlestown High,00350515, 86.1, 89.0, 426, 73.2, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Clarence R Edwards Middle,00350430, 32.1, 93.8, 156, 73.1, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Community Academy,00350518, 9.9, 89.9, 57, 75.4, 4.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Community Academy of Science and Health,00350581, 36.0, 91.7, 137, 67.9, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Curley K-8 School,00350020, 70.0, 97.1, 353, 87.5, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Curtis Guild,00350062, 23.0, 95.9, 167, 85.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dante Alighieri Montessori School,00350066, 8.2, 100.0, 84, 92.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - David A Ellis,00350072, 29.7, 100.0, 152, 88.8, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dearborn,00350074, 30.9, 96.8, 121, 72.7, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dennis C Haley,00350077, 31.9, 100.0, 160, 86.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Donald Mckay,00350080, 44.2, 100.0, 216, 93.1, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dorchester Academy,00350651, 12.8, 100.0, 122, 94.3, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 12.9, 100.0, 66, 68.2, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. William Henderson Lower,00350266, 10.4, 100.0, 52, 61.5, 20.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. William Henderson Upper,00350426, 47.6, 92.8, 214, 77.1, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - ELC - West Zone,00350006, 8.0, 100.0, 35, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - East Boston Early Childhood Center,00350009, 13.6, 100.0, 69, 78.3, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - East Boston High,00350530, 108.6, 93.0, 388, 91.2, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Edison K-8,00350375, 53.3, 96.2, 334, 82.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Edward Everett,00350088, 19.9, 100.0, 86, 88.4, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Eliot Elementary,00350096, 41.7, 100.0, 265, 84.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Ellis Mendell,00350100, 17.2, 100.0, 81, 86.4, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Excel High School,00350522, 43.2, 93.6, 159, 88.7, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Fenway High School,00350540, 29.0, 88.5, 102, 72.5, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Franklin D Roosevelt,00350116, 25.0, 100.0, 135, 81.5, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Gardner Pilot Academy,00350326, 28.1, 92.6, 129, 99.2, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - George H Conley,00350122, 17.0, 100.0, 128, 85.2, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Greater Egleston Community High School,00350543, 10.0, 100.0, 45, 57.8, 22.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Harvard-Kent,00350200, 34.5, 100.0, 216, 92.6, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Haynes Early Education Center,00350010, 16.8, 88.4, 79, 73.4, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Henry Grew,00350135, 17.1, 100.0, 76, 76.3, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Higginson,00350015, 10.9, 90.9, 76, 88.2, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Higginson/Lewis K-8,00350377, 26.5, 98.1, 133, 86.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Horace Mann School for the Deaf,00350750, 33.9, 100.0, 91, 30.8, 2.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Hugh Roe O'Donnell,00350141, 15.4, 100.0, 63, 96.8, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Jackson Mann,00350013, 56.6, 96.5, 366, 86.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James Condon Elementary,00350146, 55.8, 100.0, 422, 81.5, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James J Chittick,00350154, 18.0, 94.4, 151, 78.1, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James Otis,00350156, 26.6, 100.0, 164, 97.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James P Timilty Middle,00350485, 30.7, 94.7, 135, 78.5, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James W Hennigan,00350153, 45.3, 97.8, 305, 89.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Jeremiah E Burke High,00350525, 34.5, 94.2, 118, 85.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John D Philbrick,00350172, 12.1, 100.0, 60, 88.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John F Kennedy,00350166, 18.9, 100.0, 140, 70.7, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John W McCormack,00350179, 40.7, 96.3, 183, 81.4, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John Winthrop,00350180, 19.9, 100.0, 144, 93.1, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph J Hurley,00350182, 20.0, 97.5, 113, 98.2, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph Lee,00350183, 48.2, 95.8, 194, 94.3, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph P Manning,00350184, 12.4, 96.0, 83, 83.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph P Tynan,00350181, 23.0, 100.0, 185, 86.5, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Josiah Quincy,00350286, 58.1, 100.0, 447, 91.7, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joyce Kilmer,00350190, 25.6, 100.0, 179, 86.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - King K-8,00350376, 33.5, 96.9, 210, 87.6, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lee Academy,00350001, 15.1, 96.7, 85, 52.9, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 34.7, 97.1, 214, 61.7, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyndon,00350262, 36.7, 97.3, 220, 93.6, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyon K-8,00350004, 14.5, 100.0, 74, 95.9, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyon Upper 9-12,00350655, 14.2, 100.0, 46, 84.8, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Madison Park High,00350537, 97.0, 87.1, 254, 74.4, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Manassah E Bradley,00350215, 17.7, 94.6, 79, 84.8, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Margarita Muniz Academy,00350549, 24.7, 95.9, 106, 89.6, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mario Umana Academy,00350656, 61.7, 99.2, 355, 86.5, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mather,00350227, 36.9, 97.5, 233, 76.8, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mattahunt,00350226, 44.4, 97.7, 273, 86.8, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Maurice J Tobin,00350229, 34.4, 94.2, 186, 84.9, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Michael J Perkins,00350231, 12.9, 100.0, 70, 88.6, 18.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mildred Avenue K-8,00350378, 37.0, 100.0, 216, 82.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mission Hill School,00350382, 17.0, 100.0, 115, 82.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mozart,00350237, 13.7, 92.8, 78, 85.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Nathan Hale,00350243, 10.3, 100.0, 70, 88.6, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - New Mission High School,00350542, 24.7, 80.6, 100, 73.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - O W Holmes,00350138, 24.0, 87.5, 123, 98.4, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - O'Bryant School Math/Science,00350575, 88.0, 93.9, 328, 92.4, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Oliver Hazard Perry,00350255, 19.0, 100.0, 87, 83.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Orchard Gardens,00350257, 58.4, 91.3, 377, 76.7, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Patrick J Kennedy,00350264, 18.9, 100.0, 92, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Paul A Dever,00350268, 28.8, 93.4, 237, 70.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 14.4, 87.5, 68, 75.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Phineas Bates,00350278, 22.8, 100.0, 102, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Quincy Upper School,00350565, 42.9, 81.4, 185, 67.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Rafael Hernandez,00350691, 23.8, 91.6, 161, 81.4, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Richard J Murphy,00350240, 57.3, 100.0, 341, 88.3, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Roger Clap,00350298, 9.9, 100.0, 49, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Samuel Adams,00350302, 21.0, 100.0, 110, 85.5, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Samuel W Mason,00350304, 16.9, 100.0, 79, 78.5, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Sarah Greenwood,00350308, 29.7, 100.0, 212, 84.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Snowden International School at Copley,00350690, 32.0, 93.8, 131, 77.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - TechBoston Academy,00350657, 85.9, 94.1, 337, 84.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - The English High,00350535, 48.7, 85.7, 199, 64.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Thomas J Kenny,00350328, 22.0, 95.5, 117, 88.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - UP Academy Holland,00350167, 48.4, 75.3, 200, 71.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Urban Science Academy,00350579, 44.1, 89.1, 202, 60.4, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Warren-Prescott,00350346, 36.0, 100.0, 239, 82.4, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Washington Irving Middle,00350445, 24.8, 100.0, 144, 81.9, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - West Roxbury Academy,00350658, 43.6, 90.8, 195, 64.6, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William E Russell,00350366, 23.4, 100.0, 142, 88.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William Ellery Channing,00350360, 14.3, 96.5, 73, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William H Ohrenberger,00350258, 40.9, 100.0, 261, 90.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William McKinley,00350363, 48.6, 98.0, 460, 34.8, 6.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William Monroe Trotter,00350370, 30.6, 96.7, 143, 79.7, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Winship Elementary,00350374, 18.7, 100.0, 107, 88.8, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Young Achievers,00350380, 36.9, 91.8, 182, 58.2, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 65.7, 72.6, 213, 85.9, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.0, 96.7, 262, 98.5, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 51.6, 80.5, 260, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 37.2, 67.7, 53, 58.5, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 75.6, 76.8, 344, 75.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bourne High School,00360505, 34.0, 97.5, 190, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bourne Middle School,00360325, 52.9, 100.0, 281, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bournedale Elementary School,00360005, 32.5, 100.0, 187, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Peebles Elementary School,00360010, 24.8, 100.0, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boxford - Harry Lee Cole,00380005, 25.6, 100.0, 114, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boxford - Spofford Pond,00380013, 36.9, 100.0, 132, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Boylston - Boylston Elementary,00390005, 20.1, 97.0, 128, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Archie T Morrison,00400033, 32.2, 100.0, 194, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Braintree High,00400505, 117.3, 98.3, 566, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Donald Ross,00400050, 21.8, 100.0, 139, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - East Middle School,00400305, 59.9, 98.3, 320, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Highlands,00400015, 26.3, 100.0, 184, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Hollis,00400005, 31.1, 96.8, 254, 97.2, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Liberty,00400025, 26.5, 100.0, 183, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Mary E Flaherty School,00400020, 25.6, 100.0, 170, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 14.5, 100.0, 90, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - South Middle School,00400310, 48.5, 97.9, 250, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brewster - Eddy Elementary,00410010, 22.1, 100.0, 80, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Brewster - Stony Brook Elementary,00410005, 23.0, 100.0, 82, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 26.1, 73.9, 100, 73.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.5, 100.0, 134, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 92.0, 98.9, 473, 98.9, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.0, 100.0, 134, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.1, 100.0, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.8, 100.0, 293, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 47.5, 100.0, 199, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.5, 100.0, 25, 100.0, 4.4 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 230, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Brimfield - Brimfield Elementary,00430005, 26.4, 100.0, 106, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 32.8, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 94.1, 100.0, 626, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Ashfield Middle School,00440421, 41.2, 100.0, 164, 97.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Barrett Russell School,00440007, 16.3, 100.0, 78, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brockton Champion High School,00440515, 14.4, 100.0, 82, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brockton High,00440505, 252.9, 99.2," 1,120", 94.8, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brookfield,00440010, 35.8, 99.7, 189, 97.9, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Downey,00440110, 42.1, 99.7, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Dr W Arnone Community School,00440001, 51.2, 99.8, 238, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - East Middle School,00440405, 39.3, 100.0, 176, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Edgar B Davis,00440023, 58.3, 99.5, 292, 98.3, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Edison Academy,00440520, 5.3, 100.0, 135, 77.0, 29.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Frederick Douglass Academy,00440080, 5.7, 100.0, 110, 78.2, 6.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 21.0, 99.5, 62, 95.2, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Goddard Alternative School,00440400, 13.4, 90.3, 84, 100.0, 3.6 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Hancock,00440045, 35.6, 100.0, 164, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Huntington,00440055, 30.0, 100.0, 148, 100.0, 18.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - John F Kennedy,00440017, 35.3, 100.0, 182, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 48.2, 99.4, 293, 78.5, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Louis F Angelo Elementary,00440065, 51.5, 100.0, 290, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Manthala George Jr. School,00440003, 52.7, 99.8, 273, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Mary E. Baker School,00440002, 43.0, 100.0, 259, 100.0, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - North Middle School,00440410, 43.1, 99.7, 218, 99.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Oscar F Raymond,00440078, 44.0, 100.0, 214, 100.0, 19.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - South Middle School,00440415, 41.6, 100.0, 163, 97.5, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - West Middle School,00440420, 45.8, 97.8, 225, 99.6, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 110.3, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Brookfield - Brookfield Elementary,00450005, 24.2, 100.0, 93, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 4.2, 100.0, 13, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 8.3, 100.0, 18, 100.0, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline High,00460505, 167.6, 99.4, 818, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Edith C Baker,00460005, 59.9, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Edward Devotion,00460015, 68.9, 98.5, 447, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Heath,00460025, 41.4, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - John D Runkle,00460045, 49.8, 100.0, 284, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Lawrence,00460030, 51.8, 100.0, 357, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Michael Driscoll,00460020, 43.3, 100.0, 290, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Pierce,00460040, 56.3, 100.0, 425, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - The Lynch Center,00460060, 5.4, 100.0, 10, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - William H Lincoln,00460035, 53.4, 100.0, 321, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Burlington High,00480505, 90.5, 100.0, 432, 99.5, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Fox Hill,00480007, 31.7, 100.0, 147, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Francis Wyman Elementary,00480035, 48.5, 100.0, 225, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Marshall Simonds Middle,00480303, 73.4, 98.6, 335, 95.8, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Memorial,00480015, 36.1, 100.0, 160, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Pine Glen Elementary,00480020, 28.5, 100.0, 142, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Amigos School,00490006, 32.7, 100.0, 164, 89.6, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 178.4, 99.2, 717, 92.5, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridge Street Upper School,00490305, 29.7, 100.0, 112, 97.3, 8.8 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridgeport,00490007, 22.8, 100.0, 111, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 29.9, 100.0, 201, 96.5, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Graham and Parks,00490080, 30.2, 100.0, 159, 96.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Haggerty,00490020, 25.1, 100.0, 109, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - John M Tobin,00490065, 21.9, 100.0, 175, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Kennedy-Longfellow,00490040, 28.5, 97.2, 122, 95.9, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - King Open,00490035, 35.5, 100.0, 200, 99.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Maria L. Baldwin,00490005, 30.3, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Martin Luther King Jr.,00490030, 26.9, 90.1, 158, 88.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Morse,00490045, 31.5, 100.0, 160, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Peabody,00490050, 26.2, 100.0, 102, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 30.4, 94.0, 104, 91.3, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 28.6, 100.0, 105, 96.2, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Vassal Lane Upper School,00490320, 32.8, 100.0, 106, 94.3, 8.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Canton High,00500505, 69.9, 100.0, 344, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Dean S Luce,00500020, 34.7, 100.0, 264, 98.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - John F Kennedy,00500017, 35.6, 100.0, 234, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 243, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Rodman Early Childhood Center,00500010, 6.6, 100.0, 14, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Wm H Galvin Middle,00500305, 59.8, 100.0, 369, 95.7, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.5, 86.0, 48, 87.5, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 67.2, 94.0, 191, 93.7, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Carlisle - Carlisle School,00510025, 54.7, 100.0, 238, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Carver - Carver Elementary School,00520015, 59.8, 100.0, 385, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Carver - Carver Middle/High School,00520405, 71.3, 98.6, 315, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Becket Washington School,06350005, 10.0, 100.0, 50, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Craneville,06350025, 29.7, 96.6, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Kittredge,06350035, 11.4, 100.0, 55, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 34.1, 100.0, 168, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Wahconah Regional High,06350505, 43.2, 100.0, 213, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Byam School,00560030, 32.2, 100.0, 142, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Center Elementary School,00560005, 27.8, 100.0, 136, 99.3, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Charles D Harrington,00560025, 28.0, 100.0, 143, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Chelmsford High,00560505, 112.2, 100.0, 546, 99.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Col Moses Parker School,00560305, 61.3, 100.0, 286, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 84, 83.3, 19.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - McCarthy Middle School,00560310, 69.1, 100.0, 283, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - South Row,00560015, 28.0, 100.0, 136, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Chelsea High,00570505, 112.6, 99.6, 581, 99.3, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Clark Avenue School,00570050, 38.0, 100.0, 187, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 36.7, 100.0, 104, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.1, 100.0, 140, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 36.0, 100.0, 104, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - George F. Kelly Elementary,00570035, 35.5, 100.0, 109, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Joseph A. Browne School,00570055, 43.2, 100.0, 166, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 52.0, 100.0, 189, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 120, 95.8, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.8, 100.0, 65, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Barry,00610003, 28.5, 100.0, 114, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Belcher,00610010, 19.6, 100.0, 49, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bellamy Middle,00610305, 61.4, 98.4, 220, 99.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bowe,00610015, 32.7, 100.0, 121, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bowie,00610020, 24.0, 100.0, 156, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee Academy,00610021, 17.3, 100.0, 98, 93.9, 6.1 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 90.0, 99.3, 454, 96.7, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee High,00610505, 74.1, 97.3, 349, 98.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Dupont Middle,00610310, 52.5, 98.1, 192, 93.2, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Fairview Elementary,00610050, 34.5, 100.0, 183, 87.4, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Gen John J Stefanik,00610090, 31.0, 100.0, 149, 96.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Lambert-Lavoie,00610040, 21.0, 100.0, 119, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Litwin,00610022, 31.3, 100.0, 149, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Streiber Memorial School,00610065, 21.0, 100.0, 130, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 29, 100.0, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 35.1, 68.4, 119, 84.9, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 25.1, 80.9, 80, 91.3, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 25.3, 71.1, 87, 87.4, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.3, 80.2, 51, 51.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Clarksburg - Clarksburg Elementary,00630010, 15.4, 97.4, 74, 87.8, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Elementary,00640050, 51.5, 100.0, 253, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Middle School,00640305, 52.3, 98.1, 277, 98.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Senior High,00640505, 40.5, 100.0, 177, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 35.9, 60.5, 97, 67.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Cohasset Middle/High School,00650505, 70.7, 98.6, 380, 98.9, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Deer Hill,00650005, 28.4, 100.0, 138, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Joseph Osgood,00650010, 21.8, 100.0, 109, 95.4, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33.0, 84.8, 162, 98.1, 19.6 to 1 +NA,NA,a-exp-i1,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.4, 69.8, 261, 95.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 27.5, 73.6, 82, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.0, 84.4, 102, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 30.5, 75.4, 82, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Alcott,00670005, 35.1, 100.0, 176, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Concord Middle,00670305, 56.7, 100.0, 377, 99.7, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Thoreau,00670020, 34.2, 100.0, 177, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Willard,00670030, 37.0, 100.0, 175, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 98.0, 100.0, 436, 98.9, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 22.0, 68.2, 83, 81.9, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Conway - Conway Grammar,00680005, 12.6, 99.2, 78, 98.7, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Danvers High,00710505, 78.2, 97.4, 365, 98.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Great Oak,00710015, 26.4, 100.0, 128, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Highlands,00710010, 29.5, 100.0, 128, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Holten Richmond Middle School,00710305, 64.3, 98.4, 372, 98.7, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Ivan G Smith,00710032, 19.6, 100.0, 93, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Riverside,00710030, 27.1, 100.0, 124, 96.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Willis E Thorpe,00710045, 24.7, 100.0, 131, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 9.5, 100.0, 53, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Dartmouth High,00720505, 78.4, 99.1, 326, 99.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Dartmouth Middle,00720050, 77.4, 100.0, 314, 98.7, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - George H Potter,00720030, 27.8, 100.0, 133, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - James M. Quinn School,00720040, 45.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Joseph Demello,00720015, 24.2, 100.0, 140, 99.3, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Avery,00730010, 26.5, 100.0, 112, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Dedham High,00730505, 65.0, 100.0, 268, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Dedham Middle School,00730305, 59.8, 100.0, 375, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Early Childhood Center,00730005, 17.0, 100.0, 105, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Greenlodge,00730025, 23.4, 100.0, 105, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Oakdale,00730030, 22.8, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Riverdale,00730045, 18.1, 100.0, 76, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Deerfield - Deerfield Elementary,00740015, 37.5, 95.4, 218, 99.5, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.4, 100.0, 489, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44.4, 100.0, 138, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 27.5, 100.0, 97, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 47.6, 100.0, 223, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 47.0, 100.0, 169, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 39.8, 97.5, 154, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 35.6, 100.0, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 28.5, 100.0, 126, 96.8, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 84.5, 100.0, 397, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.9, 100.0, 177, 99.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Palmer River,06500010, 46.3, 100.0, 240, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Elementary School,00770015, 20.7, 100.0, 99, 100.0, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas High School,00770505, 35.5, 91.5, 158, 91.8, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Middle School,00770305, 20.0, 100.0, 93, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Primary School,00770005, 12.4, 100.0, 43, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Dover - Chickering,00780005, 40.3, 98.3, 217, 97.2, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.2, 100.0, 330, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 51.3, 98.9, 227, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Brookside Elementary,00790035, 25.7, 100.0, 135, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Dracut Senior High,00790505, 60.7, 98.4, 246, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - George H. Englesby Elementary School,00790045, 28.5, 100.0, 151, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Greenmont Avenue,00790030, 17.2, 100.0, 93, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 30.7, 100.0, 190, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 53.8, 98.1, 335, 97.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 21.0, 95.3, 94, 85.1, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.6, 100.0, 112, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 52.7, 100.0, 283, 98.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.8, 100.0, 139, 96.4, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 36.4, 100.0, 223, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 32.3, 100.0, 145, 95.9, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 17.1, 100.0, 84, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 69.3, 100.0, 360, 91.9, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Alden School,00820004, 52.4, 98.1, 231, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Chandler Elementary,00820006, 43.8, 100.0, 204, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Duxbury High,00820505, 80.0, 99.5, 395, 99.7, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Duxbury Middle,00820305, 60.4, 96.7, 267, 95.9, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - Central,00830005, 36.0, 100.0, 180, 99.4, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 52.2, 96.6, 376, 92.3, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 42.0, 100.0, 220, 98.2, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Birchland Park,00870305, 52.5, 100.0, 215, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - East Longmeadow High,00870505, 61.9, 100.0, 217, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Mapleshade,00870010, 23.0, 100.0, 126, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Meadow Brook,00870013, 37.5, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Mountain View,00870015, 22.6, 100.0, 105, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Eastham - Eastham Elementary,00850005, 22.9, 100.0, 84, 100.0, 7.9 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Center School,00860005, 14.7, 100.0, 64, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Easthampton High,00860505, 31.6, 96.8, 154, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Maple,00860010, 17.7, 100.0, 78, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Neil A Pepin,00860020, 13.7, 100.0, 58, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - White Brook Middle School,00860305, 35.9, 97.2, 167, 97.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Center School,00880003, 19.7, 100.0, 80, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Easton Middle School,00880405, 64.5, 100.0, 312, 99.7, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Moreau Hall,00880020, 13.8, 100.0, 67, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Oliver Ames High,00880505, 81.4, 98.8, 318, 99.7, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Parkview Elementary,00880015, 21.8, 100.0, 102, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Richardson Olmsted School,00880025, 56.0, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Edgartown - Edgartown Elementary,00890005, 39.9, 99.6, 139, 90.6, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 28.7, 91.6, 85, 96.5, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Erving - Erving Elementary,00910030, 18.1, 97.2, 76, 100.0, 7.5 to 1 +NA,NA,a-exp-i1,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 113.2, 95.5, 335, 97.3, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Adams School,00930003, 9.0, 100.0, 64, 100.0, 23.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Devens School,00930030, 11.6, 100.0, 160, 100.0, 5.6 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Everett High,00930505, 145.3, 100.0, 615, 99.7, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Everett - George Keverian School,00930028, 60.7, 100.0, 289, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Lafayette School,00930038, 66.5, 100.0, 296, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Madeline English School,00930018, 65.8, 100.0, 246, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Parlin School,00930058, 53.9, 100.0, 227, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Sumner G. Whittier School,00930010, 48.8, 100.0, 187, 99.5, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Webster School,00930015, 39.1, 100.0, 206, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 86.0, 56.9, 231, 79.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - East Fairhaven,00940010, 28.0, 100.0, 146, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Fairhaven High,00940505, 50.2, 100.0, 302, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Hastings Middle,00940305, 34.7, 100.0, 151, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Leroy Wood,00940030, 31.4, 100.0, 192, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - B M C Durfee High,00950505, 174.4, 91.1, 680, 90.3, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 44.4, 91.0, 248, 85.5, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Fall River - Henry Lord Community School,00950017, 43.3, 86.2, 225, 85.8, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - James Tansey,00950140, 15.4, 93.5, 79, 89.9, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - John J Doran,00950045, 36.2, 86.2, 161, 83.9, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Letourneau Elementary School,00950013, 39.1, 90.5, 168, 92.9, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 47.3, 93.7, 188, 77.7, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Matthew J Kuss Middle,00950320, 58.3, 94.9, 288, 93.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Morton Middle,00950315, 51.4, 100.0, 240, 80.8, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - North End Elementary,00950005, 45.0, 95.6, 256, 82.8, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Resiliency Middle School,00950335, 4.2, 76.2, 20, 50.0, 6.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Resiliency Preparatory School,00950325, 13.9, 92.8, 64, 92.2, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Samuel Watson,00950145, 18.9, 94.7, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Spencer Borden,00950130, 37.6, 92.0, 214, 94.4, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Stone Day School,00950340, 12.2, 81.9, 80, 91.3, 2.6 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Talbot Innovation School,00950305, 49.8, 90.0, 234, 91.9, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - William S Greene,00950065, 48.2, 87.5, 244, 86.1, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - East Falmouth Elementary,00960005, 33.2, 100.0, 119, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Falmouth High,00960505, 73.0, 96.7, 516, 97.3, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Lawrence,00960405, 50.6, 100.0, 239, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Morse Pond School,00960305, 46.2, 100.0, 162, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Mullen-Hall,00960020, 37.8, 100.0, 171, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - North Falmouth Elementary,00960030, 26.8, 100.0, 119, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Teaticket,00960015, 29.4, 100.0, 134, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 12.5, 92.2, 56, 100.0, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 47.0, 100.0, 246, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Crocker Elementary,00970016, 40.0, 100.0, 145, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Fitchburg High,00970505, 87.3, 100.0, 407, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Goodrich Academy,00970510, 8.6, 100.0, 123, 100.0, 20.0 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - McKay Arts Academy,00970340, 52.0, 100.0, 232, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Memorial Intermediate,00970048, 50.2, 100.0, 212, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Reingold Elementary,00970043, 40.9, 100.0, 198, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - South Street Elementary,00970060, 47.0, 100.0, 214, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Florida - Abbott Memorial,00980005, 11.6, 95.7, 61, 80.3, 7.0 to 1 +NA,NA,a-exp-i1,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 22.0, 57.8, 131, 96.9, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Charles Taylor Elementary,00990050, 20.4, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Foxborough High,00990505, 64.5, 100.0, 319, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - John J Ahern,00990405, 64.2, 100.0, 380, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Mabelle M Burrell,00990015, 22.4, 100.0, 107, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 33.8, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 92.2, 81.8, 429, 96.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Barbieri Elementary,01000035, 52.2, 96.2, 249, 88.8, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Brophy,01000006, 42.5, 100.0, 189, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Cameron Middle School,01000302, 54.1, 100.0, 220, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Charlotte A Dunning,01000007, 36.7, 100.0, 199, 93.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Framingham High School,01000515, 177.1, 97.2, 692, 92.2, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Fuller Middle,01000305, 53.1, 100.0, 239, 94.1, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Hemenway,01000015, 40.6, 100.0, 177, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Juniper Hill School,01000001, 17.6, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - King Elementary School,01000005, 17.9, 95.6, 95, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 36.6, 100.0, 142, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Miriam F McCarthy School,01000050, 50.1, 100.0, 213, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Potter Road,01000039, 37.3, 100.0, 149, 99.3, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Walsh Middle,01000310, 71.5, 99.7, 324, 99.1, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Woodrow Wilson,01000055, 50.1, 100.0, 207, 98.1, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 45.7, 61.0, 200, 100.0, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Annie Sullivan Middle School,01010040, 40.8, 100.0, 150, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Davis Thayer,01010035, 20.6, 100.0, 78, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 6.0, 100.0, 30, 100.0, 21.8 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Franklin High,01010505, 125.6, 99.9, 749, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Helen Keller Elementary,01010012, 29.7, 100.0, 120, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Horace Mann,01010405, 40.0, 97.5, 149, 97.3, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - J F Kennedy Memorial,01010013, 26.2, 100.0, 105, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Jefferson Elementary,01010010, 23.4, 100.0, 101, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Oak Street Elementary,01010030, 27.4, 100.0, 119, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Parmenter,01010032, 27.4, 96.3, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Remington Middle,01010310, 43.4, 100.0, 148, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51.8, 96.1, 136, 97.8, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 60.5, 100.0, 256, 98.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 28.0, 100.0, 147, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 148, 98.6, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 48.1, 100.0, 243, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.1, 100.0, 144, 86.1, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Frontier - Frontier Regional,06700505, 51.9, 96.5, 315, 97.8, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Elm Street School,01030001, 39.5, 100.0, 182, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 8.0, 100.0, 46, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner High,01030505, 57.9, 100.0, 220, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner Middle School,01030405, 38.0, 100.0, 156, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Waterford Street,01030020, 26.9, 100.0, 132, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Chester Elementary,06720059, 12.5, 100.0, 44, 100.0, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Gateway Regional High,06720505, 23.1, 97.8, 127, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Gateway Regional Middle School,06720405, 19.8, 97.5, 82, 97.6, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Littleville Elementary School,06720143, 22.5, 100.0, 103, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Georgetown High School,01050505, 36.7, 100.0, 188, 99.5, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Georgetown Middle School,01050305, 21.5, 100.0, 103, 93.2, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Penn Brook,01050010, 43.9, 95.4, 236, 86.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 26, 100.0, 27.0 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Gill Elementary,06740005, 9.2, 100.0, 40, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Great Falls Middle,06740310, 21.2, 95.3, 131, 92.4, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 12.7, 100.0, 42, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 24.3, 95.9, 88, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Turners Fall High,06740505, 23.8, 100.0, 108, 98.1, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 40.8, 89.0, 233, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Beeman Memorial,01070010, 30.5, 100.0, 126, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - East Gloucester Elementary,01070020, 19.7, 100.0, 84, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Gloucester High,01070505, 79.9, 97.5, 294, 97.3, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 23, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Plum Cove School,01070042, 16.8, 100.0, 84, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 53.8, 98.1, 280, 97.9, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Veterans Memorial,01070045, 25.7, 100.0, 89, 100.0, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - West Parish,01070050, 27.5, 100.0, 135, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 8, 100.0, 1.8 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Grafton High School,01100505, 63.8, 100.0, 313, 99.7, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Grafton Middle,01100305, 33.7, 100.0, 179, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Millbury Street Elementary School,01100200, 52.4, 98.1, 260, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - North Grafton Elementary,01100025, 19.5, 100.0, 108, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - North Street Elementary School,01100030, 42.1, 100.0, 236, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - South Grafton Elementary,01100005, 20.7, 100.0, 112, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Granby - East Meadow,01110004, 12.6, 100.0, 105, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Granby - Granby Jr Sr High School,01110505, 30.7, 100.0, 235, 96.2, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Granby - West Street,01110010, 14.6, 93.1, 73, 86.3, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 133.2, 98.5, 500, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 135.2, 99.3, 313, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 175.1, 99.4, 454, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 204.1, 98.5, 501, 98.6, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Discovery School at Four Corners,01140025, 21.3, 90.6, 117, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Federal Street School,01140010, 21.7, 100.0, 110, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Green River,01140030, .5, 100.0, 12, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Greenfield High,01140505, 40.2, 100.0, 201, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Greenfield Middle,01140305, 43.3, 99.5, 198, 98.5, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Newton School,01140035, 22.1, 100.0, 112, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.0, 100.0, 29, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Boutwell School,06730001, 3.0, 100.0, 15, 100.0, 21.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Florence Roche School,06730010, 33.2, 100.0, 162, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.9, 100.0, 319, 99.4, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 59.4, 100.0, 273, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 22.8, 100.0, 108, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Hadley - Hadley Elementary,01170015, 24.9, 100.0, 263, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Hadley - Hopkins Academy,01170505, 23.3, 100.0, 142, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Halifax - Halifax Elementary,01180005, 38.8, 100.0, 195, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 17.4, 100.0, 68, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Cutler School,06750010, 20.4, 100.0, 84, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 50.7, 100.0, 238, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 40.2, 97.5, 153, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Winthrop School,06750015, 22.0, 100.0, 92, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 37.7, 74.5, 245, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 18.2, 100.0, 95, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 20.5, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.8, 100.0, 315, 99.4, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Soule Road,06800030, 21.9, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 15.2, 100.0, 76, 90.8, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 35.1, 100.0, 163, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Hampshire - Hampshire Regional High,06830505, 71.7, 96.2, 371, 86.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Hancock - Hancock Elementary,01210005, 5.8, 100.0, 25, 36.0, 6.2 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Cedar Elementary,01220004, 31.9, 100.0, 130, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Center Elementary,01220005, 21.0, 100.0, 94, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Hanover High,01220505, 60.9, 100.0, 259, 94.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Hanover Middle,01220305, 63.7, 100.0, 427, 99.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Sylvester,01220015, 17.1, 100.0, 72, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Harvard - Bromfield,01250505, 57.3, 99.5, 266, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Harvard - Hildreth Elementary School,01250005, 35.0, 100.0, 141, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 81, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Hatfield - Smith Academy,01270505, 22.4, 100.0, 125, 100.0, 8.8 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 9.0, 100.0, 77, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Bradford Elementary,01280008, 45.0, 100.0, 240, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 24.9, 100.0, 146, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Consentino Middle School,01280100, 61.8, 96.8, 332, 95.8, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Crowell,01280020, 9.7, 100.0, 91, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Dr Paul Nettle,01280050, 38.2, 100.0, 174, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Golden Hill,01280026, 39.0, 100.0, 250, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Greenleaf,01280027, 16.5, 100.0, 116, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Haverhill Alternative School,01280033, 7.0, 100.0, 36, 100.0, 6.6 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Haverhill High,01280505, 126.8, 94.7, 624, 94.7, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - John G Whittier,01280085, 27.3, 100.0, 144, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Moody,01280045, 13.0, 100.0, 216, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 43.5, 100.0, 356, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - TEACH,01280073, 7.0, 85.7, 130, 86.2, 7.3 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Tilton,01280075, 39.0, 100.0, 188, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Walnut Square,01280080, 8.0, 94.6, 69, 100.0, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Hawlemont - Hawlemont Regional,06850005, 10.4, 83.6, 50, 90.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 17.0, 64.7, 74, 81.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 20.1, 77.8, 97, 84.5, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.8, 91.6, 55, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - East Elementary School,01310005, 35.1, 100.0, 159, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Hingham High,01310505, 86.0, 100.0, 451, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Hingham Middle School,01310410, 70.1, 100.0, 380, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Plymouth River,01310019, 32.8, 100.0, 163, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - South Elementary,01310020, 36.0, 100.0, 167, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Wm L Foster Elementary,01310010, 33.7, 100.0, 160, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 37.8, 97.4, 192, 95.8, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - John F Kennedy,01330018, 30.9, 100.0, 141, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - South,01330025, 20.9, 100.0, 91, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Holland - Holland Elementary,01350005, 19.6, 100.0, 82, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Holliston High,01360505, 63.4, 98.4, 346, 98.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Miller School,01360007, 47.9, 100.0, 250, 99.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Placentino Elementary,01360010, 47.3, 97.9, 271, 99.3, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Robert H. Adams Middle School,01360305, 50.2, 100.0, 253, 98.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - E N White Elementary,01370045, 38.3, 97.7, 138, 80.4, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - H.B. Lawrence School,01370070, 21.0, 92.0, 97, 73.2, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Holyoke High,01370505, 78.2, 94.7, 396, 91.2, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Joseph Metcalf School,01370003, 14.8, 98.5, 56, 55.4, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Kelly Elementary,01370040, 41.0, 91.8, 179, 91.1, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 46.8, 84.9, 190, 47.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 28.6, 96.5, 106, 87.7, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 38.4, 87.1, 155, 73.5, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Morgan Full Service Community School,01370025, 33.3, 91.0, 91, 81.3, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - William R. Peck School,01370030, 33.3, 90.4, 154, 74.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 33.9, 71.5, 49, 85.7, 7.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.5, 72.2, 143, 92.3, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 43.2, 100.0, 213, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Memorial,01380010, 42.8, 100.0, 178, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Park Street School,01380003, 3.5, 88.6, 4, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Center,01390005, 32.7, 100.0, 149, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Elmwood,01390010, 35.7, 100.0, 147, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkins Elementary School,01390015, 37.6, 100.0, 166, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton High,01390505, 81.9, 100.0, 654, 97.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton Middle School,01390305, 66.8, 100.0, 310, 97.7, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 4.5, 100.0, 9, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - C A Farley,01410030, 41.2, 100.0, 156, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - David J. Quinn Middle School,01410410, 56.8, 100.0, 277, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Forest Avenue Elementary,01410015, 27.5, 100.0, 97, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Hudson High,01410505, 87.1, 97.7, 431, 96.5, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Mulready Elementary,01410007, 23.8, 100.0, 86, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Hull High,01420505, 28.6, 100.0, 138, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Lillian M Jacobs,01420015, 33.0, 100.0, 139, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Memorial Middle,01420305, 20.1, 100.0, 81, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 73.3, 85.0, 360, 96.1, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Ipswich High,01440505, 50.1, 98.0, 330, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Ipswich Middle School,01440305, 43.3, 100.0, 156, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 33.7, 100.0, 176, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Winthrop,01440015, 36.1, 100.0, 183, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 47.0, 44.7, 73, 69.9, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 99.7, 56.2, 305, 72.5, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,King Philip - King Philip Middle School,06900510, 47.0, 100.0, 285, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,King Philip - King Philip Regional High,06900505, 83.5, 98.7, 358, 98.6, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Kingston - Kingston Elementary,01450005, 32.2, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Kingston - Kingston Intermediate,01450020, 37.7, 100.0, 177, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Lanesborough - Lanesborough Elementary,01480005, 19.0, 100.0, 86, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Alexander B Bruce,01490015, 41.1, 100.0, 158, 74.1, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 221, 94.1, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Community Day Arlington,01490009, 56.5, 89.4, 168, 85.7, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Edward F. Parthum,01490053, 41.0, 95.1, 239, 86.2, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Emily G Wetherbee,01490080, 44.4, 97.7, 234, 74.8, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Francis M Leahy,01490040, 35.3, 100.0, 158, 80.4, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Frost Middle School,01490525, 31.0, 96.8, 183, 66.1, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Gerard A. Guilmette,01490022, 45.4, 89.0, 201, 72.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Guilmette Middle School,01490025, 43.4, 93.1, 247, 87.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - High School Learning Center,01490536, 17.8, 100.0, 120, 91.7, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - James F Hennessey,01490020, 27.0, 92.6, 88, 85.2, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - John Breen School,01490003, 18.0, 100.0, 50, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - John K Tarbox,01490075, 21.0, 95.2, 110, 81.8, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 10.0, 100.0, 37, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 16.0, 100.0, 80, 93.8, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawrence High School,01490515, 225.8, 90.6," 1,025", 89.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Oliver Partnership School,01490048, 33.0, 100.0, 160, 75.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Parthum Middle School,01490027, 39.0, 94.9, 171, 59.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 12.0, 75.0, 177, 69.5, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Robert Frost,01490018, 38.0, 100.0, 200, 85.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 59, 91.5, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - School for Exceptional Studies,01490537, 31.9, 78.3, 199, 64.8, 5.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 47.4, 100.0, 237, 70.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Spark Academy,01490085, 33.3, 91.0, 112, 81.3, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 27.0, 88.9, 84, 76.2, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 30.0, 86.7, 64, 96.9, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 59.5, 88.2, 273, 71.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Lee - Lee Elementary,01500025, 27.0, 100.0, 129, 92.2, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Lee - Lee Middle/High School,01500505, 35.5, 97.2, 170, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester High,01510505, 33.8, 100.0, 162, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Memorial Elementary,01510005, 23.2, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Middle,01510015, 28.1, 100.0, 137, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Primary School,01510010, 24.3, 100.0, 131, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lenox - Lenox Memorial High,01520505, 52.1, 98.1, 351, 100.0, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Lenox - Morris,01520015, 28.5, 100.0, 117, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Bennett,01530003, 5.0, 100.0, 16, 100.0, 21.0 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Center For Technical Education Innovation,01530605, 37.7, 90.4, 52, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Fall Brook,01530007, 46.6, 100.0, 254, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Frances Drake School,01530010, 45.4, 95.6, 251, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Johnny Appleseed,01530025, 48.5, 100.0, 264, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Leominster Center for Excellence,01530515, 3.5, 100.0, 24, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Leominster High School,01530505, 98.2, 99.0, 536, 99.8, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Lincoln School,01530005, 5.0, 100.0, 25, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Northwest,01530030, 48.1, 100.0, 274, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Priest Street,01530040, 10.3, 92.2, 56, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Samoset School,01530045, 39.1, 97.4, 295, 98.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Sky View Middle School,01530320, 57.6, 100.0, 380, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Leverett - Leverett Elementary,01540005, 13.8, 100.0, 55, 87.3, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Bowman,01550008, 49.0, 100.0, 91, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Bridge,01550006, 43.0, 100.0, 89, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Fiske,01550015, 39.0, 100.0, 79, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Harrington,01550030, 33.0, 100.0, 77, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Jonas Clarke Middle,01550305, 80.5, 100.0, 314, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Joseph Estabrook,01550010, 40.2, 100.0, 86, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Lexington Children's Place,01550001, 6.8, 100.0, 26, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Lexington High,01550505, 173.0, 99.7, 738, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Maria Hastings,01550035, 37.6, 100.0, 73, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Wm Diamond Middle,01550310, 75.7, 100.0, 317, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Hanscom Middle,01570305, 25.6, 100.0, 152, 96.7, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Hanscom Primary,01570006, 27.9, 100.0, 124, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Lincoln School,01570025, 63.3, 100.0, 304, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.8, 100.0, 828, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Littleton High School,01580505, 32.9, 99.4, 141, 99.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Littleton Middle School,01580305, 25.9, 100.0, 125, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Russell St Elementary,01580015, 23.1, 100.0, 170, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Shaker Lane Elementary,01580005, 28.2, 100.0, 140, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 159, 97.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Center,01590010, 31.9, 100.0, 160, 95.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Glenbrook Middle,01590017, 28.4, 100.0, 125, 93.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Longmeadow High,01590505, 75.8, 100.0, 296, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Williams Middle,01590305, 31.0, 100.0, 142, 98.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Wolf Swamp Road,01590025, 32.5, 100.0, 140, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Abraham Lincoln,01600020, 37.0, 100.0, 269, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - B.F. Butler Middle School,01600310, 42.9, 100.0, 277, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Bartlett Community Partnership,01600090, 36.1, 100.0, 233, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Charles W Morey,01600030, 34.0, 100.0, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 36.0, 100.0, 208, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Dr An Wang School,01600345, 48.4, 100.0, 275, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Dr Gertrude Bailey,01600002, 32.9, 100.0, 262, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Greenhalge,01600015, 35.0, 100.0, 216, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Henry J Robinson Middle,01600330, 52.9, 100.0, 197, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - James S Daley Middle School,01600315, 47.6, 100.0, 246, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - James Sullivan Middle School,01600340, 50.1, 100.0, 248, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - John J Shaughnessy,01600050, 34.9, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Joseph McAvinnue,01600010, 36.0, 100.0, 254, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 49.8, 100.0, 304, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 6.6, 100.0, 78, 100.0, 2.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 7.2, 100.0, 105, 100.0, 4.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Lowell High,01600505, 213.0, 97.7," 1,534", 98.8, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Moody Elementary,01600027, 20.0, 100.0, 118, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Pawtucketville Memorial,01600036, 34.9, 100.0, 272, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Peter W Reilly,01600040, 40.5, 100.0, 306, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Pyne Arts,01600018, 36.1, 100.0, 297, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Rogers STEM Academy,01600005, 36.9, 100.0, 307, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 34.0, 100.0, 270, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - The Career Academy,01600515, 9.7, 100.0, 68, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Washington,01600055, 19.5, 100.0, 170, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 61.0, 98.4, 238, 97.9, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 57.1, 96, 97.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Chapin Street Elementary School,01610020, 29.4, 100.0, 148, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - East Street Elementary School,01610010, 32.3, 100.0, 158, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Ludlow Senior High,01610505, 79.7, 98.7, 360, 95.3, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Paul R Baird Middle,01610305, 59.3, 99.2, 239, 98.7, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Veterans Park Elementary,01610023, 27.5, 100.0, 203, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg High,01620505, 35.7, 97.2, 151, 99.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg Middle School,01620305, 25.9, 100.0, 158, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg Primary School,01620010, 23.5, 100.0, 127, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 27.0, 100.0, 155, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - A Drewicz Elementary,01630016, 33.6, 97.0, 149, 96.6, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Aborn,01630011, 16.7, 100.0, 86, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Breed Middle School,01630405, 84.7, 94.1, 353, 94.1, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Brickett Elementary,01630020, 20.8, 100.0, 93, 94.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Capt William G Shoemaker,01630090, 30.9, 100.0, 142, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Classical High,01630505, 96.6, 99.0, 436, 95.4, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Cobbet Elementary,01630035, 41.7, 100.0, 186, 97.3, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - E J Harrington,01630045, 44.8, 100.0, 204, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Early Childhood Center,01630004, 21.8, 100.0, 121, 95.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Edward A Sisson,01630095, 30.1, 100.0, 142, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 37.0, 89.2, 139, 91.4, 8.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Hood,01630055, 31.7, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Ingalls,01630060, 44.4, 100.0, 198, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Julia F Callahan,01630030, 30.0, 100.0, 166, 94.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 81, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn English High,01630510, 105.2, 96.2, 539, 90.7, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 81.5, 96.3, 228, 95.6, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn Woods,01630075, 11.3, 100.0, 59, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Pickering Middle,01630420, 51.9, 100.0, 195, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Robert L Ford,01630050, 32.7, 100.0, 146, 96.6, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Sewell-Anderson,01630085, 23.2, 100.0, 114, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Thurgood Marshall Mid,01630305, 80.1, 96.3, 306, 88.9, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Tracy,01630100, 31.3, 100.0, 135, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Washington Elementary School,01630005, 30.6, 100.0, 142, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - William R Fallon,01630080, 9.8, 100.0, 42, 100.0, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Wm P Connery,01630040, 38.5, 100.0, 175, 97.1, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Huckleberry Hill,01640010, 28.4, 100.0, 143, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield High,01640505, 52.8, 100.0, 223, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield Middle School,01640405, 51.2, 100.0, 229, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield Preschool,01640005, 2.6, 100.0, 8, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Summer Street,01640020, 28.9, 100.0, 149, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 84.7, 66.4, 274, 77.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.9, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Beebe,01650003, 61.5, 100.0, 262, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Ferryway,01650013, 57.5, 100.0, 247, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Forestdale,01650027, 47.5, 100.0, 249, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Linden,01650047, 68.8, 100.0, 362, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 91, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Malden High,01650505, 114.2, 99.1, 542, 98.3, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Salemwood,01650057, 85.0, 100.0, 554, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 20.4, 100.0, 95, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 202, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 37.0, 95.7, 136, 91.2, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 31.7, 98.7, 143, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Everett W Robinson,01670007, 49.0, 100.0, 249, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Harold L Qualters Middle,01670035, 87.0, 100.0, 327, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 59.9, 100.0, 319, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Mansfield High,01670505, 99.4, 100.0, 537, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Roland Green School,01670003, 6.0, 100.0, 30, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Elbridge Gerry,01680015, 10.1, 100.0, 48, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Glover,01680020, 27.8, 100.0, 116, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - L H Coffin,01680010, 13.9, 94.2, 52, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Malcolm L Bell,01680005, 24.0, 100.0, 90, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Marblehead High,01680505, 89.7, 97.8, 387, 98.2, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 42.0, 100.0, 188, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Village School,01680016, 56.4, 99.9, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 21.9, 79.0, 78, 89.7, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Marion - Sippican,01690005, 33.6, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 114.5, 100.0, 494, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Charles Jaworek School,01700030, 56.2, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 26, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Francis J Kane,01700008, 49.0, 100.0, 174, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Marlborough High,01700505, 99.3, 100.0, 438, 99.5, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Richer,01700025, 45.0, 100.0, 150, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Daniel Webster,01710015, 24.9, 100.0, 109, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Eames Way School,01710005, 19.0, 100.0, 91, 94.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Furnace Brook Middle,01710310, 75.7, 100.0, 402, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Gov Edward Winslow,01710020, 31.8, 100.0, 146, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Marshfield High,01710505, 109.4, 99.1, 395, 98.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Martinson Elementary,01710025, 37.0, 97.3, 145, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - South River,01710010, 26.5, 100.0, 122, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 73.5, 99.3, 592, 94.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 18.9, 81.7, 70, 95.7, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 37.8, 81.4, 101, 63.4, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Masconomet - Masconomet Regional High School,07050505, 84.4, 100.0, 416, 99.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 47.2, 100.0, 232, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Kenneth Coombs School,01720005, 32.3, 100.0, 166, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Mashpee High,01720505, 42.6, 100.0, 236, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Mashpee Middle School,01720020, 21.2, 100.0, 112, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Quashnet School,01720035, 43.8, 100.0, 259, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,"","","","","" +NA,NA,a-exp-i1,2016-17,Mattapoisett - Center,01730005, 22.5, 100.0, 89, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Mattapoisett - Old Hammondtown,01730010, 17.8, 100.0, 75, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Fowler School,01740305, 35.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Green Meadow,01740010, 34.2, 100.0, 130, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Maynard High,01740505, 40.4, 97.5, 190, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Dale Street,01750005, 29.1, 97.8, 191, 95.3, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Medfield Senior High,01750505, 67.5, 100.0, 297, 99.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Memorial School,01750003, 24.1, 100.0, 140, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Ralph Wheelock School,01750007, 25.0, 100.0, 142, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Thomas Blake Middle,01750305, 51.7, 100.0, 381, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Medford - Brooks School,01760130,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Christopher Columbus,01760140,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Curtis-Tufts,01760510,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - John J McGlynn Elementary School,01760068,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - John J. McGlynn Middle School,01760320,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Madeleine Dugger Andrews,01760315,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Medford High,01760505,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Medford Vocational Technical High,01760605,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Milton Fuller Roberts,01760150,"","","","","" +NA,NA,a-exp-i1,2016-17,Medway - Burke/Memorial Elementary School,01770015, 30.8, 100.0, 152, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Medway - John D Mc Govern Elementary,01770013, 19.2, 100.0, 94, 94.7, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Medway - Medway High,01770505, 51.7, 98.1, 289, 91.3, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Medway - Medway Middle,01770305, 55.3, 100.0, 240, 98.3, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Early Childhood Center,01780003, 13.5, 100.0, 45, 100.0, 21.4 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Herbert Clark Hoover,01780017, 18.5, 100.0, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Horace Mann,01780025, 16.5, 100.0, 73, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Lincoln,01780020, 29.0, 100.0, 122, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Melrose High,01780505, 69.8, 100.0, 289, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Melrose Middle,01780305, 60.2, 98.3, 299, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Roosevelt,01780035, 31.0, 100.0, 120, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Winthrop,01780050, 23.8, 100.0, 109, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Henry P Clough,07100179, 29.3, 100.0, 146, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Memorial School,07100001, 30.6, 96.7, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 57.1, 100.0, 242, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 47.4, 96.6, 335, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Comprehensive Grammar School,01810050, 78.0, 98.7, 374, 99.5, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Donald P Timony Grammar,01810060, 93.2, 100.0, 402, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Marsh Grammar School,01810030, 84.5, 100.0, 421, 96.2, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Methuen High,01810505, 143.7, 98.5, 658, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Tenney Grammar School,01810055, 91.5, 100.0, 396, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 46.6, 100.0, 270, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - John T. Nichols Middle,01820305, 53.4, 100.0, 256, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 47.5, 100.0, 240, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 20.0, 100.0, 90, 100.0, 6.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Middleborough High,01820505, 62.8, 100.0, 333, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Middleton - Fuller Meadow,01840003, 23.4, 100.0, 89, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleton - Howe-Manning,01840005, 38.7, 100.0, 154, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Brookside,01850065, 42.1, 100.0, 162, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Memorial,01850010, 37.1, 100.0, 154, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Milford High,01850505, 85.6, 100.0, 350, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 25, 100.0, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Stacy Middle,01850305, 78.1, 100.0, 360, 98.6, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Woodland,01850090, 79.0, 98.7, 350, 97.7, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Elmwood Street,01860017, 37.5, 100.0, 126, 97.6, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Millbury Junior/Senior High,01860505, 61.7, 100.0, 296, 99.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 27.6, 100.0, 145, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Clyde F Brown,01870005, 37.1, 100.0, 184, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Millis High School,01870505, 26.3, 100.0, 139, 99.3, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Millis Middle,01870020, 31.1, 95.8, 158, 94.3, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Charles S Pierce Middle,01890410, 68.1, 100.0, 364, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Collicot,01890005, 39.1, 100.0, 208, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Cunningham School,01890007, 21.6, 100.0, 151, 100.0, 23.4 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Glover,01890010, 26.1, 100.0, 183, 97.3, 22.6 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Milton High,01890505, 66.9, 100.0, 372, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Tucker,01890020, 25.4, 100.0, 137, 96.4, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 72.5, 98.6, 231, 99.1, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 16.4, 99.4, 87, 94.3, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Colrain Central,07170010, 11.1, 100.0, 53, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Heath Elementary,07170015, 6.5, 93.8, 29, 100.0, 4.5 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 28.4, 85.9, 274, 90.1, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Sanderson Academy,07170020, 9.4, 100.0, 46, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 22.7, 96.3, 131, 82.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 46.5, 100.0, 244, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.3, 96.6, 283, 97.5, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 43.9, 100.0, 215, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Granite Valley Middle,01910310, 29.0, 100.0, 120, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Monson High School,01910505, 26.0, 88.4, 98, 83.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Quarry Hill Community School,01910025, 31.0, 100.0, 121, 94.2, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 112.0, 100.0, 322, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 44.6, 100.0, 210, 98.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 103.1, 66.0, 612, 89.2, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Nahant - Johnson,01960010, 11.0, 100.0, 50, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Cyrus Peirce,01970010, 31.9, 92.5, 165, 86.7, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Nantucket Elementary,01970005, 61.5, 96.7, 332, 88.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Nantucket High,01970505, 44.5, 86.8, 246, 80.1, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Baldwinville Elementary,07200005, 15.9, 100.0, 80, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Narragansett Middle,07200305, 26.3, 100.0, 108, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Narragansett Regional High,07200505, 27.2, 96.3, 139, 97.8, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Phillipston Memorial,07200003, 11.0, 90.9, 42, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Templeton Center,07200020, 10.9, 100.0, 56, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Center School,07250020, 40.9, 100.0, 210, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Florence Sawyer School,07250025, 58.6, 100.0, 248, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Hale,07250310, 23.3, 95.7, 97, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Luther Burbank Middle School,07250305, 23.9, 100.0, 87, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 35.7, 100.0, 152, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Nashoba Regional,07250505, 79.5, 99.4, 457, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 63.1, 98.4, 207, 97.1, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Bennett-Hemenway,01980005, 39.2, 100.0, 209, 97.6, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Brown,01980010, 34.1, 100.0, 176, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Natick - J F Kennedy Middle School,01980305, 51.0, 100.0, 237, 99.2, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Johnson,01980031, 20.0, 98.0, 77, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Lilja Elementary,01980035, 26.5, 100.0, 140, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Memorial,01980043, 25.5, 97.6, 147, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Natick High,01980505, 117.0, 99.1," 1,009", 97.9, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Wilson Middle,01980310, 73.8, 98.6, 282, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Nauset - Nauset Regional High,06600505, 81.7, 99.0, 408, 99.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Nauset - Nauset Regional Middle,06600305, 55.6, 100.0, 209, 100.0, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Broadmeadow,01990005, 34.0, 100.0, 175, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Needham - High Rock School,01990410, 37.8, 97.9, 170, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Hillside Elementary,01990035, 31.7, 100.0, 156, 96.8, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Needham - John Eliot,01990020, 23.7, 100.0, 112, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Needham High,01990505, 121.6, 99.5, 505, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Newman Elementary,01990050, 50.8, 98.0, 218, 97.7, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Pollard Middle,01990405, 71.7, 98.6, 367, 98.9, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Needham - William Mitchell,01990040, 30.5, 100.0, 164, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 50.1, 61.3, 93, 100.0, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Abraham Lincoln,02010095, 37.2, 100.0, 222, 92.8, 21.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Alfred J Gomes,02010063, 39.9, 89.9, 176, 92.6, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Betsey B Winslow,02010140, 16.9, 98.6, 80, 100.0, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Carlos Pacheco,02010105, 27.0, 100.0, 106, 96.2, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Casimir Pulaski,02010123, 48.0, 95.8, 289, 91.7, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Charles S Ashley,02010010, 20.9, 100.0, 102, 96.1, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 18.1, 97.1, 78, 97.4, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Ellen R Hathaway,02010075, 19.9, 88.4, 107, 81.3, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Elwyn G Campbell,02010020, 21.4, 100.0, 102, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Hayden/McFadden,02010078, 51.2, 82.3, 288, 71.5, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - James B Congdon,02010040, 25.2, 97.2, 108, 96.3, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Jireh Swift,02010130, 14.0, 100.0, 55, 70.9, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John Avery Parker,02010115, 21.1, 95.2, 82, 80.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John B Devalles,02010050, 22.4, 92.0, 138, 97.1, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John Hannigan,02010070, 23.0, 97.7, 86, 97.7, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Keith Middle School,02010405, 67.6, 88.1, 248, 76.2, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - New Bedford High,02010505, 165.7, 90.9, 750, 91.9, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Normandin Middle School,02010410, 82.9, 97.6, 376, 87.2, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 19.8, 94.9, 82, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Roosevelt Middle School,02010415, 65.1, 92.3, 274, 84.3, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 50.3, 87.7, 294, 90.8, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Thomas R Rodman,02010125, 13.9, 96.5, 66, 93.9, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Trinity Day Academy,02010510, 9.9, 70.7, 63, 69.8, 6.4 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 15.5, 70.9, 123, 64.2, 7.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - William H Taylor,02010135, 16.9, 97.2, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 22.1, 69.2, 81, 18.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,New Salem-Wendell - Swift River,07280015, 11.9, 100.0, 23, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 26.8, 100.0, 101, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 52.4, 100.0, 257, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Newburyport High,02040505, 64.1, 100.0, 531, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Rupert A Nock Middle,02040305, 41.6, 100.0, 233, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Newton - A E Angier,02070005, 35.5, 100.0, 134, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Bigelow Middle,02070305, 50.2, 99.0, 230, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Bowen,02070015, 35.4, 100.0, 124, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Newton - C C Burr,02070020, 31.0, 96.8, 122, 84.4, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Cabot,02070025, 32.4, 96.9, 128, 96.9, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Charles E Brown Middle,02070310, 67.8, 99.7, 272, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Countryside,02070040, 40.4, 97.5, 140, 97.1, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Newton - F A Day Middle,02070315, 83.1, 97.6, 353, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Franklin,02070055, 40.2, 92.5, 139, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Horace Mann,02070075, 34.1, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Newton - John Ward,02070120, 22.5, 100.0, 94, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Lincoln-Eliot,02070070, 32.9, 100.0, 114, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Mason-Rice,02070080, 32.8, 100.0, 140, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Memorial Spaulding,02070105, 35.2, 100.0, 134, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton Early Childhood Center,02070108, 16.4, 100.0, 46, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton North High,02070505, 183.1, 98.6, 741, 97.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton South High,02070510, 150.0, 99.8, 881, 99.8, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Oak Hill Middle,02070320, 55.7, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Peirce,02070100, 22.5, 100.0, 96, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Underwood,02070115, 26.3, 100.0, 96, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Williams,02070125, 22.1, 100.0, 90, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Zervas,02070130, 26.8, 100.0, 108, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk - Freeman-Kennedy School,02080005, 36.3, 100.0, 155, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk - H Olive Day,02080015, 32.6, 100.0, 145, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 52.2, 98.5, 130, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Brayton,02090035, 29.2, 100.0, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Colegrove Park Elementary,02090008, 24.4, 100.0, 108, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Drury High,02090505, 39.8, 98.5, 150, 98.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Greylock,02090015, 25.6, 100.0, 112, 96.4, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Annie L Sargent School,02110018, 34.2, 100.0, 155, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Atkinson,02110001, 34.8, 97.1, 156, 98.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Franklin,02110010, 29.7, 100.0, 141, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Kittredge,02110015, 16.7, 100.0, 80, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - North Andover High,02110505, 87.3, 100.0, 862, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - North Andover Middle,02110305, 74.3, 100.0, 502, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Thomson,02110020, 22.0, 100.0, 99, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Amvet Boulevard,02120007, 24.3, 100.0, 135, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Community,02120030, 29.7, 100.0, 129, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Falls,02120010, 18.7, 100.0, 100, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 37.4, 100.0, 185, 97.3, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleboro High,02120505, 78.4, 100.0, 416, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 17, 100.0, 19.4 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleborough Middle,02120305, 73.7, 100.0, 385, 99.5, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Roosevelt Avenue,02120015, 17.2, 100.0, 88, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,North Brookfield - North Brookfield Elementary,02150015, 20.8, 100.0, 99, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,North Brookfield - North Brookfield High,02150505, 21.4, 100.0, 109, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Ashby Elementary,07350010, 20.6, 100.0, 70, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Hawthorne Brook,07350030, 43.0, 100.0, 194, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Nissitissit Middle School,07350310, 46.9, 100.0, 178, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - North Middlesex Regional,07350505, 56.9, 100.0, 312, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, .1, 100.0, 0, 0.0, 80.0 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Spaulding Memorial,07350005, 34.9, 98.9, 140, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 4.5, 100.0, 13, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Varnum Brook,07350035, 44.6, 100.0, 202, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - E Ethel Little School,02170003, 23.1, 100.0, 174, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - J Turner Hood,02170010, 25.5, 100.0, 210, 96.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - L D Batchelder,02170005, 30.3, 100.0, 180, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - North Reading High,02170505, 70.6, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - North Reading Middle,02170305, 47.0, 100.0, 170, 97.1, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Bridge Street,02100005, 26.9, 100.0, 79, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Jackson Street,02100020, 28.7, 100.0, 99, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - John F Kennedy Middle School,02100410, 62.7, 100.0, 299, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Leeds,02100025, 26.7, 100.0, 99, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Northampton High,02100505, 56.8, 99.1, 277, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 21.8, 100.0, 70, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 50.1, 92.0, 133, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 107.4, 100.0, 521, 99.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Fannie E Proctor,02130015, 22.6, 100.0, 92, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Lincoln Street,02130003, 21.0, 100.0, 92, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Marguerite E Peaslee,02130014, 21.0, 100.0, 103, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Marion E Zeh,02130020, 21.2, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Robert E. Melican Middle School,02130305, 55.8, 100.0, 273, 98.2, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge Elementary,02140005, 28.0, 100.0, 132, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge High,02140505, 48.6, 100.0, 264, 99.6, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge Middle,02140305, 49.9, 100.0, 286, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 104, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 111.9, 97.9, 243, 99.6, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.7, 93.6, 130, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 128, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Norton - J C Solmonese,02180015, 33.2, 100.0, 148, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Norton - L G Nourse Elementary,02180010, 22.2, 100.0, 95, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Norton High,02180505, 47.1, 100.0, 231, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Norton Middle,02180305, 46.7, 100.0, 295, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Grace Farrar Cole,02190005, 34.8, 100.0, 170, 97.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Norwell High,02190505, 49.9, 100.0, 247, 99.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Norwell Middle School,02190405, 44.0, 100.0, 264, 96.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - William G Vinal,02190020, 34.8, 100.0, 170, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Balch,02200005, 26.9, 100.0, 112, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Charles J Prescott,02200025, 20.6, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Cornelius M Callahan,02200010, 19.1, 100.0, 73, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 65.3, 100.0, 253, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - F A Cleveland,02200015, 27.0, 100.0, 121, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - George F. Willett,02200075, 23.5, 100.0, 93, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - John P Oldham,02200020, 20.5, 100.0, 84, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Norwood High,02200505, 72.0, 100.0, 423, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 45.4, 99.6, 184, 99.5, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 54.1, 96.3, 104, 89.4, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Old Rochester - Old Rochester Regional High,07400505, 54.6, 100.0, 262, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 165, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Orange - Dexter Park,02230010, 26.2, 100.0, 109, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Orange - Fisher Hill,02230015, 20.7, 95.2, 116, 86.2, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Orleans - Orleans Elementary,02240005, 22.5, 100.0, 91, 87.9, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Alfred M Chaffee,02260010, 22.1, 100.0, 103, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Clara Barton,02260005, 23.4, 100.0, 127, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Oxford High,02260505, 43.1, 99.8, 191, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Oxford Middle,02260405, 30.1, 100.0, 116, 95.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 7.1, 100.0, 25, 100.0, 3.5 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Converse Middle,02270305, 19.0, 100.0, 95, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Old Mill Pond,02270008, 55.1, 100.0, 401, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Palmer High,02270505, 42.3, 99.5, 236, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 76.8, 97.4, 207, 99.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.5, 52.6, 108, 91.7, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Captain Samuel Brown,02290005, 33.4, 100.0, 151, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Center,02290015, 28.7, 100.0, 123, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - J Henry Higgins Middle,02290305, 94.0, 100.0, 606, 96.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - John E Burke,02290007, 20.2, 100.0, 93, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - John E. McCarthy,02290016, 24.5, 100.0, 111, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 127.1, 97.6, 600, 99.3, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - South Memorial,02290035, 27.4, 96.4, 126, 96.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Thomas Carroll,02290010, 42.5, 100.0, 186, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - West Memorial,02290045, 20.0, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - William A Welch Sr,02290027, 24.6, 100.0, 102, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Pelham - Pelham Elementary,02300005, 11.7, 100.0, 57, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Bryantville Elementary,02310003, 34.6, 100.0, 166, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Hobomock Elementary,02310010, 31.6, 100.0, 111, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - North Pembroke Elementary,02310015, 38.5, 100.0, 175, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Pembroke Community Middle School,02310305, 33.6, 100.0, 205, 99.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Pembroke High School,02310505, 66.5, 97.0, 328, 99.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 15.1, 100.0, 52, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Dr John C Page School,07450015, 27.3, 100.0, 116, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Elmer S Bagnall,07450005, 40.5, 100.0, 174, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Helen R Donaghue School,07450010, 21.8, 100.0, 81, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Pentucket Regional Middle,07450405, 40.1, 100.0, 164, 99.4, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 58.6, 100.0, 342, 99.7, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Petersham - Petersham Center,02340005, 11.5, 91.3, 47, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 11.9, 50.4, 72, 33.3, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 14.2, 42.3, 59, 45.8, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 50.6, 71.7, 166, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 32.2, 59.9, 116, 100.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 15.1, 100.0, 61, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Northfield Elementary,07500008, 16.9, 100.0, 73, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 5.5, 100.0, 27, 100.0, 7.1 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 42.2, 100.0, 250, 99.2, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Warwick Community School,07500009, 5.7, 100.0, 23, 100.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 60.7, 69.9, 188, 100.0, 7.8 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 40.6, 74.7, 311, 88.7, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Allendale,02360010, 22.0, 95.4, 163, 96.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Crosby,02360065, 33.0, 93.9, 181, 97.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Egremont,02360035, 29.0, 100.0, 197, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - John T Reid Middle,02360305, 54.4, 100.0, 304, 97.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Morningside Community School,02360055, 33.0, 96.9, 209, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Pittsfield High,02360505, 84.7, 94.5, 379, 86.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 15.0, 100.0, 98, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Silvio O Conte Community,02360105, 30.0, 96.7, 169, 97.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Stearns,02360090, 15.6, 93.6, 104, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Taconic High,02360510, 75.0, 98.7, 385, 82.1, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 53.5, 100.0, 292, 88.7, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Williams,02360100, 21.4, 100.0, 145, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Plainville - Anna Ware Jackson,02380010, 25.3, 98.9, 170, 88.2, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 18.8, 98.9, 120, 87.5, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Cold Spring,02390005, 21.7, 100.0, 121, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Federal Furnace School,02390011, 36.8, 100.0, 298, 93.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Hedge,02390010, 20.6, 97.1, 110, 89.1, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Indian Brook,02390012, 43.1, 99.1, 248, 96.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Manomet Elementary,02390015, 26.3, 96.2, 145, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 44.2, 100.0, 245, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 81.1, 100.0, 369, 95.1, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 31, 90.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth North High,02390505, 103.4, 100.0, 565, 93.3, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth South High,02390515, 108.1, 99.0, 419, 92.6, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth South Middle,02390305, 67.0, 100.0, 346, 91.9, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - South Elementary,02390046, 43.5, 97.7, 274, 94.2, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - West Elementary,02390047, 33.8, 100.0, 281, 82.6, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Plympton - Dennett Elementary,02400010, 17.4, 100.0, 84, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 109.3, 77.4, 367, 96.7, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Provincetown - Provincetown Schools,02420020, 18.6, 100.0, 81, 88.9, 6.9 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Hardwick Elementary,07530005, 12.2, 100.0, 67, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Hubbardston Center,07530010, 16.9, 100.0, 94, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - IB School of Quabbin,07530515, .8, 100.0, 9, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - New Braintree Grade,07530020, 5.6, 100.0, 29, 100.0, 19.3 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Oakham Center,07530025, 9.7, 100.0, 48, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Quabbin Regional High School,07530505, 46.5, 95.7, 366, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 24.6, 100.0, 207, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Ruggles Lane,07530030, 23.2, 100.0, 117, 95.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 30.1, 95.8, 130, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 16.6, 100.0, 92, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Warren Elementary,07780005, 34.5, 84.1, 161, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 18.0, 94.5, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.0, 100.0, 32, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Atherton Hough,02430040, 22.5, 100.0, 146, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Atlantic Middle,02430305, 33.3, 100.0, 178, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 24.1, 100.0, 151, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Broad Meadows Middle,02430310, 28.3, 100.0, 159, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Central Middle,02430315, 42.5, 100.0, 235, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 22.5, 100.0, 141, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 44.4, 100.0, 232, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Francis W Parker,02430075, 25.2, 100.0, 144, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 37.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Merrymount,02430060, 23.0, 100.0, 148, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Montclair,02430065, 28.8, 100.0, 176, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - North Quincy High,02430510, 89.4, 97.8, 400, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Point Webster Middle,02430325, 29.3, 100.0, 169, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Quincy High,02430505, 115.6, 99.6, 534, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Reay E Sterling Middle,02430320, 29.9, 100.0, 152, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Snug Harbor Community School,02430090, 33.2, 100.0, 239, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Squantum,02430095, 25.4, 100.0, 202, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Wollaston School,02430110, 24.6, 100.0, 143, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 58.5, 98.3, 456, 93.6, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - The Gateway to College,07550525, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 25.1, 100.0, 78, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - J F Kennedy Elementary,02440018, 43.5, 100.0, 174, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Margaret L Donovan,02440015, 33.2, 100.0, 108, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Martin E Young Elementary,02440040, 28.6, 100.0, 88, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Randolph Community Middle,02440410, 57.7, 100.0, 248, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Randolph High,02440505, 57.4, 98.3, 263, 98.5, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Alice M Barrows,02460002, 22.5, 100.0, 113, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Arthur W Coolidge Middle,02460305, 38.0, 100.0, 145, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Birch Meadow,02460005, 31.5, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Reading - J Warren Killam,02460017, 27.5, 100.0, 135, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Joshua Eaton,02460010, 29.0, 100.0, 139, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Reading - RISE PreSchool,02460001, 7.8, 100.0, 40, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Reading Memorial High,02460505, 85.3, 100.0, 387, 99.7, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Walter S Parker Middle,02460310, 46.8, 100.0, 182, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Wood End Elementary School,02460020, 22.2, 100.0, 103, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - A. C. Whelan Elementary School,02480003, 51.0, 100.0, 403, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 404, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 29.0, 96.6, 258, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Garfield Elementary School,02480056, 56.5, 100.0, 468, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Garfield Middle School,02480057, 43.5, 100.0, 223, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Paul Revere,02480050, 35.0, 100.0, 297, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Revere High,02480505, 124.1, 98.4, 651, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Rumney Marsh Academy,02480014, 47.5, 100.0, 183, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Seacoast School,02480520, 13.2, 100.0, 102, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 43.1, 100.0, 432, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Susan B. Anthony Middle School,02480305, 45.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Richmond - Richmond Consolidated,02490005, 18.8, 98.4, 93, 92.5, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 52.1, 65.5, 271, 99.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 18.4, 94.4, 112, 99.1, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Rochester - Rochester Memorial,02500005, 34.8, 100.0, 150, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Jefferson Elementary School,02510060, 19.5, 100.0, 95, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - John W Rogers Middle,02510305, 48.7, 100.0, 273, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Memorial Park,02510020, 16.3, 100.0, 92, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - R Stewart Esten,02510025, 17.4, 100.0, 99, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Rockland Senior High,02510505, 51.3, 100.0, 223, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport Elementary,02520005, 29.7, 100.0, 114, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport High,02520510, 30.7, 100.0, 148, 98.0, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport Middle,02520305, 24.8, 100.0, 131, 96.9, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Rowe - Rowe Elementary,02530005, 7.0, 100.0, 31, 74.2, 8.4 to 1 +NA,NA,a-exp-i1,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 111.2, 46.0, 277, 87.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 65.8, 90.7, 416, 99.3, 24.0 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Bates,02580003, 25.0, 100.0, 126, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Carlton,02580015, 24.7, 100.0, 95, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Collins Middle,02580305, 53.4, 100.0, 211, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Horace Mann Laboratory,02580030, 26.2, 100.0, 111, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Nathaniel Bowditch,02580025, 48.6, 91.8, 213, 81.2, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Salem - New Liberty Innovation School,02580510, 4.6, 100.0, 11, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem Early Childhood,02580001, 8.0, 100.0, 31, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem High,02580505, 104.9, 95.4, 339, 97.1, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem Prep High School,02580515, 5.4, 100.0, 137, 94.2, 2.4 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Saltonstall School,02580050, 34.9, 97.1, 231, 98.3, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Witchcraft Heights,02580070, 38.0, 100.0, 174, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 43.1, 75.1, 147, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Forestdale School,02610002, 55.7, 99.5, 238, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Oak Ridge,02610025, 63.4, 100.0, 381, 95.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Sandwich High,02610505, 61.3, 97.3, 250, 98.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Sandwich STEM Academy,02610305, 34.6, 99.0, 173, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Ballard School,02620001, 5.5, 100.0, 48, 100.0, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Belmonte Saugus Middle,02620305, 57.1, 100.0, 276, 99.6, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Douglas Waybright,02620067, 15.8, 100.0, 81, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Lynnhurst,02620040, 18.6, 100.0, 95, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Oaklandvale,02620050, 15.2, 100.0, 84, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Saugus High,02620505, 53.7, 100.0, 262, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Veterans Memorial,02620065, 41.1, 100.0, 266, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Savoy - Emma L Miller Elementary School,02630010, 4.7, 100.0, 23, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Cushing Elementary,02640007, 32.2, 100.0, 138, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Gates Intermediate School,02640305, 47.8, 100.0, 191, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Hatherly Elementary,02640010, 29.1, 100.0, 119, 93.3, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Jenkins Elementary School,02640015, 36.7, 100.0, 166, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Scituate High School,02640505, 65.1, 99.4, 289, 97.2, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Wampatuck Elementary,02640020, 34.0, 100.0, 155, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 41.7, 100.0, 165, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - George R Martin,02650007, 33.5, 100.0, 139, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Mildred Aitken School,02650015, 29.0, 100.0, 116, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Seekonk High,02650505, 46.3, 99.6, 190, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 49.6, 99.5, 173, 94.8, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Sharon - Cottage Street,02660005,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - East Elementary,02660010,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Heights Elementary,02660015,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Sharon High,02660505,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Sharon Middle,02660305,"","","","","" +NA,NA,a-exp-i1,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.2, 100.0, 314, 99.4, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Sherborn - Pine Hill,02690010, 31.8, 99.8, 174, 98.3, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Beal School,02710005, 17.0, 94.1, 84, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Calvin Coolidge,02710015, 22.1, 100.0, 135, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Floral Street School,02710020, 35.2, 100.0, 236, 100.0, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Oak Middle School,02710030, 62.6, 100.0, 313, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Parker Road Preschool,02710040, 9.3, 100.0, 24, 100.0, 25.0 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Sherwood Middle School,02710305, 66.7, 97.2, 408, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 113.1, 99.9, 599, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Spring Street,02710035, 19.1, 100.0, 121, 100.0, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Walter J Paton,02710025, 19.5, 94.9, 123, 100.0, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Shutesbury - Shutesbury Elementary,02720005, 15.7, 100.0, 45, 100.0, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 34.8, 100.0, 181, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Silver Lake - Silver Lake Regional High,07600505, 89.3, 98.9, 344, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 42.9, 100.0, 255, 97.6, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.1, 93.8, 261, 91.6, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - Chace Street,02730005, 26.0, 100.0, 131, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - North Elementary,02730008, 30.3, 100.0, 191, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - Somerset Middle School,02730305, 48.6, 100.0, 227, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - South,02730015, 18.2, 100.0, 94, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 83.5, 100.0, 419, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.4, 100.0, 217, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Arthur D Healey,02740075, 41.8, 100.0, 200, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Benjamin G Brown,02740015, 15.9, 100.0, 88, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Capuano Early Childhood Center,02740005, 26.9, 100.0, 133, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - E Somerville Community,02740111, 54.8, 100.0, 249, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Full Circle High School,02740510, 12.3, 100.0, 8, 100.0, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - John F Kennedy,02740083, 39.0, 100.0, 198, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Next Wave Junior High,02740410, 6.4, 100.0, 3, 100.0, 2.5 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Somerville High,02740505, 123.5, 98.4, 487, 99.6, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - West Somerville Neighborhood,02740115, 24.9, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Winter Hill Community,02740120, 40.5, 100.0, 160, 96.9, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 44.6, 100.0, 207, 98.1, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Mosier,02780020, 25.3, 95.9, 141, 85.1, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Plains Elementary,02780015, 19.0, 100.0, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - South Hadley High,02780505, 45.5, 98.1, 213, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 75.0, 98.7, 208, 98.1, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 64.6, 90.5, 298, 95.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 61.4, 96.7, 144, 99.3, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Southampton - William E Norris,02750005, 35.5, 100.0, 155, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 21.2, 100.0, 97, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Margaret A Neary,02760020, 24.6, 100.0, 109, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Mary E Finn School,02760008, 25.9, 100.0, 124, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - P Brent Trottier,02760305, 40.4, 100.0, 219, 99.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Charlton Street,02770005, 35.0, 97.1, 154, 98.1, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Eastford Road,02770010, 18.0, 100.0, 97, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Southbridge High School,02770515, 44.0, 95.5, 192, 80.2, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Southbridge Middle School,02770315, 45.0, 97.8, 202, 93.6, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - West Street,02770020, 33.5, 100.0, 168, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 116.0, 96.9, 379, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 36.3, 100.0, 174, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - New Marlborough Central,07650018, 6.8, 100.0, 69, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - South Egremont,07650030, 2.3, 100.0, 19, 100.0, 5.6 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - Undermountain,07650035, 29.7, 100.0, 170, 98.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 109.9, 100.0, 326, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 5.2, 100.0, 45, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 25.2, 100.0, 149, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 57.3, 98.3, 328, 93.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 13.0, 100.0, 131, 100.0, 26.0 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 33.2, 100.0, 181, 98.9, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 16.9, 100.0, 86, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 31.4, 100.0, 221, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 168, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.4, 96.8, 171, 96.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Alice B Beal Elementary,02810175, 19.6, 100.0, 157, 98.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Arthur T Talmadge,02810165, 22.7, 95.7, 135, 77.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Balliet Middle School,02810360, 11.4, 91.3, 41, 85.4, 4.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Brightwood,02810025, 25.9, 96.0, 156, 93.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 23.3, 84.7, 125, 67.2, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 23.8, 71.7, 132, 47.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 20.5, 74.9, 165, 55.2, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Conservatory of the Arts,02810475, 28.3, 94.6, 167, 70.1, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Daniel B Brunton,02810035, 38.2, 97.4, 212, 99.5, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Early Childhood Education Center,02810001, 15.0, 86.7, 23, 91.3, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Edward P. Boland School,02810010, 56.0, 98.2, 309, 88.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Elias Brookings,02810030, 30.5, 93.2, 162, 86.4, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Forest Park Middle,02810325, 55.0, 96.3, 336, 83.3, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Frank H Freedman,02810075, 20.1, 100.0, 140, 90.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Frederick Harris,02810080, 51.1, 96.1, 275, 93.5, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0, 2, 0.0, 900.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0, 2, 0.0,###### to 1 +NA,NA,a-exp-i1,2016-17,Springfield - German Gerena Community School,02810195, 55.3, 98.2, 404, 89.6, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Glenwood,02810065, 23.1, 100.0, 146, 95.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Glickman Elementary,02810068, 29.1, 89.8, 191, 88.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - High School Of Commerce,02810510, 94.4, 86.2, 497, 79.9, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Hiram L Dorman,02810050, 25.4, 100.0, 145, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Homer Street,02810085, 33.2, 97.0, 190, 95.3, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Indian Orchard Elementary,02810100, 51.8, 88.5, 287, 91.6, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - John F Kennedy Middle,02810328, 39.0, 76.7, 87, 58.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - John J Duggan Middle,02810320, 57.5, 92.7, 505, 73.7, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Kensington International School,02810110, 28.5, 100.0, 168, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Liberty,02810115, 25.2, 92.2, 124, 91.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Liberty Preparatory Academy,02810560, 3.4, 100.0, 12, 83.3, 3.8 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Lincoln,02810120, 33.0, 94.0, 168, 92.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - M Marcus Kiley Middle,02810330, 55.4, 85.6, 428, 83.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Margaret C Ells,02810060, 19.2, 84.4, 71, 94.4, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 24.4, 100.0, 116, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 123, 91.1, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary M Walsh,02810155, 25.9, 96.1, 146, 92.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary O Pottenger,02810145, 33.2, 100.0, 179, 94.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Milton Bradley School,02810023, 43.1, 100.0, 263, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Rebecca M Johnson,02810055, 58.2, 89.8, 348, 82.8, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 138.3, 93.5, 749, 76.4, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - STEM Middle Academy,02810350, 18.4, 83.1, 96, 68.8, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Samuel Bowles,02810020, 29.1, 93.1, 168, 94.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - South End Middle School,02810355, 20.0, 92.8, 80, 82.5, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Central High,02810500, 145.8, 94.5, 736, 91.2, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield High School,02810570, 11.5, 91.1, 124, 73.4, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 86.4, 581, 72.8, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 11.1, 71.8, 121, 65.3, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day High School,02810550, 22.3, 68.3, 101, 64.4, 5.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day Middle School,02810345, 14.4, 86.2, 82, 90.2, 3.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Sumner Avenue,02810160, 42.4, 97.5, 285, 87.4, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 97.7, 252, 93.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Thomas M Balliet,02810015, 22.2, 100.0, 128, 91.4, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Van Sickle Academy,02810480, 25.2, 63.8, 114, 43.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 25.2, 87.9, 233, 75.5, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Warner,02810180, 23.2, 91.8, 142, 88.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Washington,02810185, 40.4, 95.1, 195, 94.4, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - White Street,02810190, 27.6, 100.0, 168, 89.9, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - William N. DeBerry,02810045, 26.3, 88.5, 128, 79.7, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 13.0, 61.5, 31, 51.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Colonial Park,02840005, 19.8, 100.0, 82, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Robin Hood,02840025, 24.2, 100.0, 102, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - South,02840030, 22.1, 100.0, 96, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Stoneham Central Middle School,02840405, 63.4, 100.0, 308, 99.7, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Stoneham High,02840505, 56.2, 100.0, 289, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 13, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Helen Hansen Elementary,02850010, 22.3, 100.0, 123, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Joseph H Gibbons,02850025, 27.6, 100.0, 142, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 27.4, 100.0, 153, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - O'Donnell Middle School,02850405, 68.8, 100.0, 341, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - South Elementary,02850015, 20.8, 100.0, 93, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Stoughton High,02850505, 92.7, 100.0, 459, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - West Elementary,02850020, 33.1, 100.0, 123, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Sturbridge - Burgess Elementary,02870005, 67.1, 100.0, 278, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 89.2, 42.6, 411, 100.0, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 77.5, 100.0, 303, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - General John Nixon Elementary,02880025, 26.1, 100.0, 140, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Israel Loring School,02880015, 33.9, 100.0, 182, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 148, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Peter Noyes,02880030, 40.3, 100.0, 196, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Sunderland - Sunderland Elementary,02890005, 21.3, 99.1, 126, 99.2, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Early Learning,02900003, 20.0, 100.0, 58, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Elementary,02900005, 21.7, 100.0, 82, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton High School,02900510, 32.7, 100.0, 153, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Middle School,02900305, 23.8, 95.4, 121, 98.3, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Clarke,02910005, 18.9, 100.0, 84, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Hadley,02910010, 24.7, 100.0, 124, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Stanley,02910020, 23.4, 100.0, 90, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Swampscott High,02910505, 62.0, 98.4, 275, 96.7, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Swampscott Middle,02910305, 64.3, 98.4, 402, 98.8, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Elizabeth S Brown,02920006, 21.2, 100.0, 203, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Gardner,02920015, 16.9, 100.0, 88, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph Case High,02920505, 48.8, 100.0, 192, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph Case Jr High,02920305, 40.1, 100.0, 211, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph G Luther,02920020, 14.6, 100.0, 195, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 16.2, 100.0, 109, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 37.0, 100.0, 424, 97.9, 30.2 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 45.1, 100.0, 199, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 77.4, 100.0, 663, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 11.8, 100.0, 1, 100.0, 42.2 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Benjamin Friedman Middle,02930315, 48.5, 100.0, 278, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - East Taunton Elementary,02930010, 43.2, 100.0, 224, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Edmund Hatch Bennett,02930007, 23.1, 100.0, 102, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 11.0, 100.0, 33, 100.0, 29.9 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 218, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - H H Galligan,02930057, 25.4, 100.0, 88, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Hopewell,02930035, 24.6, 100.0, 102, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - John F Parker Middle,02930305, 34.6, 100.0, 125, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Joseph C Chamberlain,02930008, 35.0, 100.0, 201, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Joseph H Martin,02930042, 40.1, 100.0, 248, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Mulcahey Elementary School,02930015, 32.9, 100.0, 149, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Taunton Alternative High School,02930525, 6.2, 100.0, 124, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Taunton High,02930505, 80.1, 99.0, 715, 99.2, 31.2 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Heath-Brook,02950010, 22.5, 100.0, 110, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - John F. Ryan,02950023, 46.8, 100.0, 194, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - John W. Wynn Middle,02950305, 49.4, 98.7, 194, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - L F Dewing,02950001, 35.3, 100.0, 181, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Louise Davy Trahan,02950025, 18.2, 100.0, 96, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - North Street,02950020, 19.1, 100.0, 104, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 67.2, 100.0, 270, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Tisbury - Tisbury Elementary,02960005, 35.5, 100.0, 150, 100.0, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Topsfield - Proctor Elementary,02980005, 21.3, 100.0, 104, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Topsfield - Steward Elementary,02980010, 30.4, 100.0, 161, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 85.9, 96.5, 237, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Newbury Elementary,07730020, 35.2, 100.0, 136, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Pine Grove,07730025, 34.3, 100.0, 139, 97.1, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Salisbury Elementary,07730015, 42.6, 100.0, 165, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Triton Regional High School,07730505, 61.3, 96.7, 281, 99.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Triton Regional Middle School,07730405, 31.1, 100.0, 169, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Truro - Truro Central,03000005, 15.9, 100.0, 73, 100.0, 7.3 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 56.2, 100.0, 318, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough High School,03010505, 37.6, 100.0, 337, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 34.0, 100.0, 193, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 38.6, 79.2, 100, 79.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 62.8, 85.7, 158, 81.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 5.6, 100.0, 16, 75.0, 7.8 to 1 +NA,NA,a-exp-i1,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 39.1, 99.5, 152, 98.7, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 68.9, 97.1, 121, 97.5, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Gateway to College,03040515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Uxbridge - McCloskey Middle School,03040015, 31.8, 100.0, 133, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Taft Early Learning Center,03040005, 33.9, 100.0, 134, 98.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Uxbridge High,03040505, 37.9, 100.0, 188, 97.3, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Whitin Elementary School,03040020, 27.3, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 27.5, 54.5, 72, 65.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Central Tree Middle,07750310, 27.9, 100.0, 176, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Chocksett Middle School,07750315, 28.4, 100.0, 170, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Davis Hill Elementary,07750018, 27.9, 100.0, 132, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Dawson,07750020, 30.9, 100.0, 168, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 40, 100.0, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Glenwood Elementary School,07750060, 26.9, 100.0, 113, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Houghton Elementary,07750027, 27.5, 100.0, 122, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Leroy E.Mayo,07750032, 28.9, 100.0, 148, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Mountview Middle,07750305, 45.3, 100.0, 274, 100.0, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 92, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Paxton Center,07750040, 32.6, 100.0, 186, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Thomas Prince,07750045, 23.0, 100.0, 139, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Wachusett Regional High,07750505, 145.1, 100.0, 678, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Dolbeare,03050005, 32.8, 100.0, 147, 96.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 45, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Galvin Middle School,03050310, 83.1, 100.0, 322, 98.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Greenwood,03050020, 15.0, 100.0, 70, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Wakefield Memorial High,03050505, 79.2, 100.0, 335, 99.7, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Walton,03050040, 12.0, 100.0, 63, 92.1, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Woodville School,03050015, 34.4, 100.0, 143, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Wales - Wales Elementary,03060005, 10.4, 100.0, 46, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Bird Middle,03070305, 37.1, 100.0, 138, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Boyden,03070010, 28.9, 100.0, 136, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 19, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 34.0, 100.0, 150, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Elm Street School,03070005, 31.2, 100.0, 142, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Fisher,03070015, 36.4, 100.0, 153, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Old Post Road,03070018, 32.5, 100.0, 142, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Walpole High,03070505, 78.3, 100.0, 345, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 36.3, 100.0, 185, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 36.7, 100.0, 200, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 38.9, 100.0, 195, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - John F Kennedy Middle,03080404, 56.7, 100.0, 297, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - John W. McDevitt Middle School,03080415, 56.2, 100.0, 240, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Northeast Elementary School,03080040, 44.0, 100.0, 248, 98.4, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 32.8, 100.0, 188, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.4, 100.0, 14, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Waltham Sr High,03080505, 127.8, 100.0, 514, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - William F. Stanley Elementary School,03080005, 46.3, 100.0, 223, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 28.4, 100.0, 132, 97.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Ware Junior/Senior High School,03090505, 37.8, 97.4, 164, 91.5, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Ware Middle School,03090305, 23.4, 100.0, 103, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - John William Decas,03100003, 45.6, 100.0, 210, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Minot Forest,03100017, 33.6, 100.0, 150, 98.7, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 2.3, 78.5, 35, 60.0, 26.2 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Middle,03100305, 52.7, 100.0, 255, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Senior High,03100505, 54.5, 99.1, 302, 97.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Cunniff,03140015, 27.6, 100.0, 109, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Hosmer,03140020, 51.9, 100.0, 220, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - James Russell Lowell,03140025, 36.8, 100.0, 145, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Watertown High,03140505, 64.9, 98.5, 250, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Watertown Middle,03140305, 50.9, 100.0, 245, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Claypit Hill School,03150005, 38.6, 100.0, 178, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Happy Hollow School,03150015, 27.9, 100.0, 133, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Loker School,03150020, 18.0, 100.0, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Wayland High School,03150505, 69.4, 96.6, 344, 98.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Wayland Middle School,03150305, 53.0, 100.0, 327, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Bartlett High School,03160505, 39.8, 97.5, 165, 97.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Park Avenue Elementary,03160015, 46.5, 100.0, 268, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Webster Middle School,03160315, 46.0, 97.8, 151, 98.7, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Ernest F Upham,03170050, 16.6, 100.0, 74, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Hunnewell,03170025, 16.2, 100.0, 90, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - John D Hardy,03170020, 23.1, 100.0, 118, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Joseph E Fiske,03170015, 32.1, 100.0, 157, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Katharine Lee Bates,03170005, 25.1, 100.0, 131, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Schofield,03170045, 23.4, 100.0, 135, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Sprague Elementary School,03170048, 24.2, 100.0, 138, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Wellesley Middle,03170305, 97.6, 100.0, 540, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Wellesley Sr High,03170505, 118.9, 99.8, 546, 99.6, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellfleet - Wellfleet Elementary,03180005, 17.0, 100.0, 52, 100.0, 6.6 to 1 +NA,NA,a-exp-i1,2016-17,West Boylston - Major Edwards Elementary,03220005, 33.4, 100.0, 148, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 32.1, 100.0, 232, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Howard School,03230305, 20.2, 100.0, 115, 89.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Rose L Macdonald,03230003, 15.7, 100.0, 124, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Spring Street School,03230005, 7.2, 100.0, 33, 75.8, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 45.5, 100.0, 254, 96.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - 21st Century Skills Academy,03320515, 3.9, 100.0, 18, 100.0, 3.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 18, 100.0, 20.0 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - John Ashley,03320005, 16.4, 100.0, 84, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - John R Fausey,03320010, 34.6, 100.0, 177, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Memorial,03320025, 17.3, 100.0, 80, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Mittineague,03320030, 15.2, 100.0, 55, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Philip G Coburn,03320007, 46.5, 100.0, 183, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Tatham,03320040, 16.3, 100.0, 74, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - West Springfield High,03320505, 92.9, 100.0, 548, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - West Springfield Middle,03320305, 71.6, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Annie E Fales,03210010, 24.9, 100.0, 90, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 36.0, 100.0, 113, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - J Harding Armstrong,03210005, 30.3, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Mill Pond School,03210045, 58.2, 98.3, 235, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 54.6, 100.0, 285, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Westborough High,03210505, 79.9, 100.0, 464, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 70, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 8.0, 100.0, 22, 100.0, 21.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Franklin Ave,03250015, 17.0, 100.0, 84, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Highland,03250025, 32.3, 100.0, 153, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Munger Hill,03250033, 28.1, 100.0, 138, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - North Middle School,03250305, 52.0, 100.0, 231, 74.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Paper Mill,03250036, 28.5, 100.0, 147, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Russell Elementary School,03250055, 14.0, 100.0, 70, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - South Middle School,03250310, 49.5, 100.0, 174, 84.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Southampton Road,03250040, 30.4, 100.0, 164, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Westfield High,03250505, 90.9, 100.0, 400, 92.8, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Westfield Technical Academy,03250605, 56.6, 96.5, 137, 71.5, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Abbot Elementary,03260004, 25.4, 100.0, 124, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Blanchard Middle,03260310, 49.1, 100.0, 235, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Col John Robinson,03260025, 17.3, 100.0, 76, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Day Elementary,03260007, 25.9, 100.0, 124, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 25.0, 100.0, 125, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Millennium Elementary,03260013, 6.5, 100.0, 16, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Nabnasset,03260015, 21.9, 100.0, 127, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Rita E. Miller Elementary School,03260055, 22.7, 100.0, 100, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Stony Brook School,03260330, 51.2, 100.0, 250, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Westford Academy,03260505, 118.9, 100.0, 560, 99.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Westhampton - Westhampton Elementary School,03270005, 12.4, 91.9, 43, 74.4, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Country,03300010, 23.7, 100.0, 122, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Field Elementary School,03300012, 24.8, 100.0, 129, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Weston High,03300505, 69.9, 99.6, 293, 97.3, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Weston Middle,03300305, 48.6, 99.5, 247, 97.2, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Woodland,03300015, 22.3, 97.4, 127, 85.8, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Alice A Macomber,03310015, 24.4, 100.0, 104, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Westport Elementary,03310030, 35.8, 98.0, 188, 98.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Westport Junior/Senior High School,03310515, 34.9, 100.0, 290, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Deerfield School,03350010, 15.9, 100.0, 78, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Downey,03350012, 19.9, 100.0, 81, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - E W Thurston Middle,03350305, 59.0, 100.0, 280, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Martha Jones,03350017, 19.1, 100.0, 86, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Paul Hanlon,03350015, 14.3, 100.0, 64, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Westwood High,03350505, 78.5, 98.8, 403, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - William E Sheehan,03350025, 25.1, 100.0, 112, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Abigail Adams Middle School,03360310, 67.7, 100.0, 383, 96.9, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Academy Avenue,03360005, 18.7, 100.0, 96, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Frederick C Murphy,03360050, 13.9, 100.0, 75, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 11.9, 100.0, 49, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Lawrence W Pingree,03360065, 13.7, 100.0, 67, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 72.2, 100.0, 436, 95.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Ralph Talbot,03360085, 16.0, 100.0, 83, 100.0, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Thomas V Nash,03360060, 10.3, 100.0, 51, 100.0, 22.5 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 21.2, 100.0, 106, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Wessagusset,03360110, 17.2, 100.0, 96, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Weymouth High School,03360505, 139.5, 100.0, 661, 96.1, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - William Seach,03360080, 20.1, 100.0, 86, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Whately - Whately Elementary,03370005, 11.3, 99.1, 75, 98.7, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 29.3, 100.0, 119, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Indian Head,07800035, 25.1, 100.0, 92, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - John H Duval,07800030, 27.9, 100.0, 134, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Louise A Conley,07800010, 33.5, 100.0, 152, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 27.1, 100.0, 103, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.8, 98.6, 298, 97.3, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Whitman Middle,07800310, 38.2, 100.0, 151, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.2, 97.4, 461, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 15.7, 100.0, 68, 79.4, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Williamstown - Williamstown Elementary,03410010, 38.2, 97.4, 175, 97.1, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Boutwell,03420005, 9.7, 100.0, 58, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - North Intermediate,03420060, 20.2, 100.0, 89, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Shawsheen Elementary,03420025, 31.0, 100.0, 125, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - West Intermediate,03420080, 21.1, 100.0, 91, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wildwood,03420015, 14.0, 100.0, 68, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wilmington High,03420505, 72.7, 100.0, 346, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wilmington Middle School,03420330, 72.2, 97.2, 282, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Woburn Street,03420020, 33.0, 100.0, 139, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Memorial,03430040, 20.0, 100.0, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock Academy for Success,03430405, .7, 100.0, 4, 100.0, 40.1 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock High School,03430515, 27.5, 100.0, 116, 99.1, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock Middle School,03430315, 25.6, 100.0, 108, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Toy Town Elementary,03430050, 21.0, 100.0, 102, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 7, 100.0, 27.7 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Ambrose Elementary,03440045, 37.3, 97.3, 236, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Lincoln Elementary,03440005, 31.6, 100.0, 225, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Lynch Elementary,03440020, 44.3, 100.0, 293, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - McCall Middle,03440305, 82.7, 98.1, 335, 97.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Muraco Elementary,03440040, 32.4, 100.0, 210, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 223, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Winchester High School,03440505, 90.2, 100.0, 472, 98.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 30.6, 100.0, 133, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 40.4, 100.0, 161, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Winthrop High School,03460505, 45.3, 100.0, 161, 98.1, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Winthrop Middle School,03460305, 34.8, 100.0, 274, 99.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Clyde Reeves,03470040, 30.0, 100.0, 185, 97.3, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 54.0, 100.0, 302, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Daniel P Hurld,03470020, 15.0, 100.0, 84, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Goodyear Elementary School,03470005, 25.1, 100.0, 126, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - John F Kennedy Middle School,03470405, 50.2, 100.0, 257, 98.1, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Linscott-Rumford,03470025, 13.3, 100.0, 84, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Malcolm White,03470055, 23.4, 100.0, 119, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Mary D Altavesta,03470065, 21.6, 100.0, 87, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Shamrock,03470043, 30.0, 100.0, 152, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Woburn High,03470505, 99.2, 100.0, 446, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Wyman,03470060, 13.6, 100.0, 77, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Belmont Street Community,03480020, 34.7, 100.0, 146, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Middle School,03480405, 45.4, 97.8, 245, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Senior High,03480503, 70.9, 99.3, 412, 98.1, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Street,03480035, 20.3, 100.0, 108, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Canterbury,03480045, 26.2, 96.2, 123, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Chandler Elementary Community,03480050, 31.5, 100.0, 130, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Chandler Magnet,03480052, 44.5, 100.0, 228, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - City View,03480053, 34.6, 100.0, 165, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Claremont Academy,03480350, 38.4, 99.2, 211, 99.1, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Clark St Community,03480055, 21.4, 100.0, 91, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Columbus Park,03480060, 28.7, 100.0, 162, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Doherty Memorial High,03480512, 90.7, 99.3, 496, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Elm Park Community,03480095, 33.5, 100.0, 159, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Flagg Street,03480090, 20.0, 100.0, 97, 100.0, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Forest Grove Middle,03480415, 65.5, 100.0, 330, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Francis J McGrath Elementary,03480177, 18.4, 100.0, 81, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Gates Lane,03480110, 43.3, 92.8, 223, 83.9, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Goddard School/Science Technical,03480100, 34.3, 100.0, 156, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Grafton Street,03480115, 25.3, 98.7, 114, 94.7, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Head Start,03480002, 43.4, 45.2, 192, 46.9, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Heard Street,03480136, 15.4, 100.0, 72, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 27.8, 100.0, 114, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Lake View,03480145, 17.7, 100.0, 72, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Lincoln Street,03480160, 19.0, 100.0, 84, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - May Street,03480175, 19.4, 100.0, 142, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Midland Street,03480185, 16.1, 100.0, 68, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Nelson Place,03480200, 32.5, 100.0, 192, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Norrback Avenue,03480202, 38.5, 100.0, 229, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - North High,03480515, 90.5, 98.2, 501, 99.4, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Quinsigamond,03480210, 44.1, 100.0, 216, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Rice Square,03480215, 26.9, 100.0, 115, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Roosevelt,03480220, 43.1, 97.7, 240, 97.5, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - South High Community,03480520, 89.6, 95.3, 465, 96.3, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Sullivan Middle,03480423, 70.1, 100.0, 330, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Tatnuck,03480230, 23.2, 100.0, 122, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Thorndyke Road,03480235, 21.4, 100.0, 84, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Union Hill School,03480240, 32.1, 100.0, 217, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - University Pk Campus School,03480285, 20.8, 100.0, 104, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Vernon Hill School,03480280, 31.5, 100.0, 162, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Wawecus Road School,03480026, 11.6, 100.0, 66, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - West Tatnuck,03480260, 19.7, 100.0, 126, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Woodland Academy,03480030, 37.1, 100.0, 151, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester Arts Magnet School,03480225, 24.7, 98.7, 101, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester East Middle,03480420, 55.0, 98.2, 307, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester Technical High,03480605, 129.2, 98.5, 252, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Worthington - R. H. Conwell,03490010, 6.4, 96.9, 47, 70.2, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Wrentham - Charles E Roderick,03500010, 33.1, 100.0, 115, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wrentham - Delaney,03500003, 44.1, 100.0, 151, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 106.6, 95.3, 590, 99.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Abington High,00010505, 39.3, 100.0, 192, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Beaver Brook Elementary School,00010003, 37.7, 100.0, 239, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Center Elementary School,00010002, 10.3, 100.0, 72, 100.0, 19.7 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Frolio Middle School,00010405, 25.1, 100.0, 131, 92.4, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 98, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 44.3, 78.2, 115, 90.4, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 125.9, 100.0, 535, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 27.5, 100.0, 116, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 28.0, 100.0, 122, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 26, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Luther Conant School,06000030, 28.1, 100.0, 122, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 29.5, 100.0, 128, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 140, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.5, 100.0, 110, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.8, 100.0, 303, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Acushnet - Acushnet Elementary School,00030025, 38.6, 100.0, 171, 97.1, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Acushnet - Albert F Ford Middle School,00030305, 32.4, 100.0, 225, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 15.1, 100.0, 116, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 46.1, 100.0, 312, 97.1, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 23.7, 100.0, 153, 100.0, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 78.4, 88.9, 371, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam Early Childhood Center,00050003, 10.0, 100.0, 24, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam High,00050505, 95.7, 100.0, 415, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam Junior High,00050405, 59.7, 100.0, 373, 100.0, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Benjamin J Phelps,00050020, 28.5, 100.0, 188, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Clifford M Granger,00050010, 21.6, 100.0, 117, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - James Clark School,00050030, 27.4, 100.0, 178, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Roberta G. Doering School,00050303, 46.5, 100.0, 325, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Robinson Park,00050025, 31.0, 100.0, 193, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 33.2, 60.7, 82, 51.2, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Elementary,00070005, 29.5, 100.0, 140, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury High,00070505, 43.9, 99.4, 279, 95.7, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Innovation High School,00070515, 6.0, 100.0, 24, 41.7, 5.2 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Middle,00070013, 56.6, 100.0, 249, 93.6, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 33.3, 100.0, 159, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Crocker Farm Elementary,00080009, 42.6, 100.0, 160, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Fort River Elementary,00080020, 37.8, 100.0, 128, 96.1, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Wildwood Elementary,00080050, 43.0, 97.7, 163, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 71.7, 98.6, 485, 97.9, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 44.4, 97.3, 168, 86.9, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Andover High,00090505, 117.6, 100.0, 844, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Andover West Middle,00090310, 45.9, 100.0, 211, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Bancroft Elementary,00090003, 46.5, 100.0, 164, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Doherty Middle,00090305, 49.0, 100.0, 216, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Henry C Sanborn Elementary,00090010, 27.3, 100.0, 107, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Andover - High Plain Elementary,00090004, 42.1, 100.0, 133, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Shawsheen School,00090005, 6.0, 100.0, 29, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Andover - South Elementary,00090020, 37.1, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Andover - West Elementary,00090025, 47.6, 100.0, 166, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Wood Hill Middle School,00090350, 37.9, 100.0, 163, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 26.0, 73.1, 72, 86.1, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Arlington High,00100505, 100.4, 99.0, 495, 98.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Brackett,00100010, 30.5, 100.0, 162, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Cyrus E Dallin,00100025, 31.9, 100.0, 162, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Hardy,00100030, 29.8, 100.0, 126, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - John A Bishop,00100005, 24.6, 99.2, 108, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - M Norcross Stratton,00100055, 30.0, 100.0, 150, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 30, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Ottoson Middle,00100410, 94.5, 98.9, 512, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Peirce,00100045, 18.6, 100.0, 72, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Thompson,00100050, 31.9, 100.0, 126, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 35.5, 100.0, 193, 94.8, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 57, 93.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 45.2, 100.0, 251, 99.6, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 36.9, 100.0, 317, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 21.6, 100.0, 121, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Ashland High,00140505, 52.0, 100.0, 260, 96.5, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Ashland Middle,00140405, 46.3, 100.0, 242, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - David Mindess,00140015, 39.6, 100.0, 178, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Henry E Warren Elementary,00140010, 41.5, 100.0, 229, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 30, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 107.5, 99.1, 344, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 36.1, 100.0, 189, 99.5, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol High,06150505, 28.9, 100.0, 158, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.2, 100.0, 167, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Royalston Community School,06150050, 10.9, 100.0, 68, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 82.2, 83.9, 359, 98.9, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 31.1, 100.0, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Attleboro Community Academy,00160515, 2.8, 100.0, 37, 83.8, 22.7 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Attleboro High,00160505, 103.7, 100.0, 667, 99.9, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 31.5, 100.0, 208, 99.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Early Learning Center,00160008, 8.1, 100.0, 18, 100.0, 23.1 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 25.1, 100.0, 114, 100.0, 18.6 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 26.8, 100.0, 113, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 31.3, 100.0, 164, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 38.4, 100.0, 170, 97.6, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 27.3, 100.0, 118, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Wamsutta Middle School,00160320, 33.1, 100.0, 150, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Auburn Middle,00170305, 43.8, 100.0, 200, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Auburn Senior High,00170505, 62.7, 100.0, 534, 99.8, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Bryn Mawr,00170010, 18.2, 100.0, 84, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Pakachoag School,00170025, 16.6, 100.0, 84, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 178, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Avon - Avon Middle High School,00180510, 34.8, 100.0, 176, 99.4, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Avon - Ralph D Butler,00180010, 31.0, 100.0, 125, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 37.1, 94.6, 171, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 34.3, 100.0, 124, 96.8, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.6, 100.0, 138, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.5, 100.0, 122, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable High,00200505, 140.7, 99.6, 536, 99.3, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable Intermediate School,00200315, 61.2, 100.0, 236, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable United Elementary School,00200050, 60.2, 99.6, 288, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Centerville Elementary,00200010, 22.5, 99.2, 83, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 17, 100.0, 21.0 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 138, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - West Barnstable Elementary,00200005, 18.7, 100.0, 90, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - West Villages Elementary School,00200045, 30.4, 96.7, 122, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 22.0, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 36.2, 70.0, 211, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Bedford High,00230505, 78.4, 97.3, 434, 99.8, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - John Glenn Middle,00230305, 54.7, 100.0, 250, 98.8, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Lt Elezer Davis,00230010, 45.0, 100.0, 181, 98.9, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Lt Job Lane School,00230012, 44.0, 100.0, 213, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Belchertown High,00240505, 48.4, 99.2, 275, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Chestnut Hill Community School,00240006, 39.2, 100.0, 249, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Cold Spring,00240005, 12.7, 100.0, 66, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Jabish Middle School,00240025, 32.7, 96.9, 168, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Swift River Elementary,00240018, 36.2, 100.0, 198, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 5.0, 100.0, 20, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham High School,00250505, 51.5, 100.0, 303, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham Memorial School,00250315, 47.6, 100.0, 254, 98.4, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Keough Memorial Academy,00250510, 7.0, 100.0, 27, 100.0, 4.8 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - South Elementary,00250020, 25.7, 100.0, 121, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Stall Brook,00250025, 27.6, 100.0, 128, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Belmont High,00260505, 74.9, 98.7, 348, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Daniel Butler,00260015, 24.1, 100.0, 114, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Mary Lee Burbank,00260010, 21.1, 100.0, 108, 100.0, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Roger E Wellington,00260035, 37.5, 100.0, 176, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Winn Brook,00260005, 27.1, 100.0, 122, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 83.9, 100.0, 442, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 95.0, 109, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 28.2, 79.8, 159, 59.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 32.3, 100.0, 117, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Berkley - Berkley Community School,00270010, 37.0, 100.0, 176, 99.4, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkley - Berkley Middle School,00270305, 27.0, 100.0, 119, 95.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 32.9, 52.7, 155, 92.3, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 45.7, 96.7, 234, 98.3, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 33.8, 100.0, 178, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 34.5, 100.0, 164, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Berlin - Berlin Memorial,00280005, 16.3, 100.0, 104, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 45.7, 98.7, 255, 99.2, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Ayers/Ryal Side School,00300055, 36.6, 99.5, 125, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Beverly High,00300505, 91.5, 95.9, 388, 98.5, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Briscoe Middle,00300305, 71.8, 100.0, 279, 99.6, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Centerville Elementary,00300010, 25.0, 99.2, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Cove Elementary,00300015, 29.3, 99.3, 107, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Hannah Elementary,00300033, 27.7, 99.3, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - McKeown School,00300002, 8.0, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - North Beverly Elementary,00300040, 27.9, 99.3, 99, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Billerica Memorial High School,00310505, 99.3, 100.0, 416, 94.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Eugene C Vining,00310030, 16.1, 100.0, 88, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Frederick J Dutile,00310007, 23.7, 100.0, 99, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Hajjar Elementary,00310026, 33.5, 100.0, 146, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - John F Kennedy,00310012, 23.2, 100.0, 105, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Locke Middle,00310310, 45.7, 100.0, 243, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Marshall Middle School,00310305, 54.7, 100.0, 217, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Parker,00310015, 35.5, 100.0, 140, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Thomas Ditson,00310005, 40.7, 100.0, 183, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 94.3, 96.8, 337, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - A F Maloney,06220015, 20.8, 100.0, 97, 96.9, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.4, 97.4, 154, 87.7, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.7, 100.0, 128, 96.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 24.0, 100.0, 98, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Millville Elementary,06220010, 20.2, 100.0, 100, 97.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.5, 97.5, 213, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Another Course To College,00350541, 20.1, 86.8, 101, 78.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Baldwin Early Learning Center,00350003, 11.0, 100.0, 52, 82.7, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Beethoven,00350021, 22.2, 100.0, 131, 96.2, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Blackstone,00350390, 45.4, 96.1, 307, 80.8, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Adult Academy,00350548, 19.1, 84.3, 97, 78.4, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Arts Academy,00350546, 49.7, 82.0, 256, 53.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Collaborative High School,00350755, .9, 100.0, 71, 18.3, 205.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Community Leadership Academy,00350558, 36.8, 92.5, 117, 81.2, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston International High School,00350507, 45.1, 93.3, 262, 76.7, 8.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Latin,00350560, 118.8, 100.0, 693, 95.8, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Latin Academy,00350545, 90.4, 96.9, 406, 96.8, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Teachers Union School,00350012, 22.5, 93.4, 128, 93.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Brighton High,00350505, 66.5, 90.9, 218, 71.6, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Carter Developmental Center,00350036, 1.0, 0.0, 2, 0.0, 29.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charles H Taylor,00350054, 36.7, 94.5, 301, 79.4, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charles Sumner,00350052, 37.4, 100.0, 263, 81.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charlestown High,00350515, 86.1, 89.0, 426, 73.2, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Clarence R Edwards Middle,00350430, 32.1, 93.8, 156, 73.1, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Community Academy,00350518, 9.9, 89.9, 57, 75.4, 4.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Community Academy of Science and Health,00350581, 36.0, 91.7, 137, 67.9, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Curley K-8 School,00350020, 70.0, 97.1, 353, 87.5, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Curtis Guild,00350062, 23.0, 95.9, 167, 85.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dante Alighieri Montessori School,00350066, 8.2, 100.0, 84, 92.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - David A Ellis,00350072, 29.7, 100.0, 152, 88.8, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dearborn,00350074, 30.9, 96.8, 121, 72.7, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dennis C Haley,00350077, 31.9, 100.0, 160, 86.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Donald Mckay,00350080, 44.2, 100.0, 216, 93.1, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dorchester Academy,00350651, 12.8, 100.0, 122, 94.3, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 12.9, 100.0, 66, 68.2, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. William Henderson Lower,00350266, 10.4, 100.0, 52, 61.5, 20.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. William Henderson Upper,00350426, 47.6, 92.8, 214, 77.1, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - ELC - West Zone,00350006, 8.0, 100.0, 35, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - East Boston Early Childhood Center,00350009, 13.6, 100.0, 69, 78.3, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - East Boston High,00350530, 108.6, 93.0, 388, 91.2, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Edison K-8,00350375, 53.3, 96.2, 334, 82.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Edward Everett,00350088, 19.9, 100.0, 86, 88.4, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Eliot Elementary,00350096, 41.7, 100.0, 265, 84.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Ellis Mendell,00350100, 17.2, 100.0, 81, 86.4, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Excel High School,00350522, 43.2, 93.6, 159, 88.7, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Fenway High School,00350540, 29.0, 88.5, 102, 72.5, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Franklin D Roosevelt,00350116, 25.0, 100.0, 135, 81.5, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Gardner Pilot Academy,00350326, 28.1, 92.6, 129, 99.2, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - George H Conley,00350122, 17.0, 100.0, 128, 85.2, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Greater Egleston Community High School,00350543, 10.0, 100.0, 45, 57.8, 22.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Harvard-Kent,00350200, 34.5, 100.0, 216, 92.6, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Haynes Early Education Center,00350010, 16.8, 88.4, 79, 73.4, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Henry Grew,00350135, 17.1, 100.0, 76, 76.3, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Higginson,00350015, 10.9, 90.9, 76, 88.2, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Higginson/Lewis K-8,00350377, 26.5, 98.1, 133, 86.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Horace Mann School for the Deaf,00350750, 33.9, 100.0, 91, 30.8, 2.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Hugh Roe O'Donnell,00350141, 15.4, 100.0, 63, 96.8, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Jackson Mann,00350013, 56.6, 96.5, 366, 86.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James Condon Elementary,00350146, 55.8, 100.0, 422, 81.5, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James J Chittick,00350154, 18.0, 94.4, 151, 78.1, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James Otis,00350156, 26.6, 100.0, 164, 97.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James P Timilty Middle,00350485, 30.7, 94.7, 135, 78.5, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James W Hennigan,00350153, 45.3, 97.8, 305, 89.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Jeremiah E Burke High,00350525, 34.5, 94.2, 118, 85.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John D Philbrick,00350172, 12.1, 100.0, 60, 88.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John F Kennedy,00350166, 18.9, 100.0, 140, 70.7, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John W McCormack,00350179, 40.7, 96.3, 183, 81.4, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John Winthrop,00350180, 19.9, 100.0, 144, 93.1, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph J Hurley,00350182, 20.0, 97.5, 113, 98.2, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph Lee,00350183, 48.2, 95.8, 194, 94.3, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph P Manning,00350184, 12.4, 96.0, 83, 83.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph P Tynan,00350181, 23.0, 100.0, 185, 86.5, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Josiah Quincy,00350286, 58.1, 100.0, 447, 91.7, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joyce Kilmer,00350190, 25.6, 100.0, 179, 86.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - King K-8,00350376, 33.5, 96.9, 210, 87.6, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lee Academy,00350001, 15.1, 96.7, 85, 52.9, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 34.7, 97.1, 214, 61.7, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyndon,00350262, 36.7, 97.3, 220, 93.6, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyon K-8,00350004, 14.5, 100.0, 74, 95.9, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyon Upper 9-12,00350655, 14.2, 100.0, 46, 84.8, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Madison Park High,00350537, 97.0, 87.1, 254, 74.4, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Manassah E Bradley,00350215, 17.7, 94.6, 79, 84.8, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Margarita Muniz Academy,00350549, 24.7, 95.9, 106, 89.6, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mario Umana Academy,00350656, 61.7, 99.2, 355, 86.5, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mather,00350227, 36.9, 97.5, 233, 76.8, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mattahunt,00350226, 44.4, 97.7, 273, 86.8, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Maurice J Tobin,00350229, 34.4, 94.2, 186, 84.9, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Michael J Perkins,00350231, 12.9, 100.0, 70, 88.6, 18.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mildred Avenue K-8,00350378, 37.0, 100.0, 216, 82.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mission Hill School,00350382, 17.0, 100.0, 115, 82.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mozart,00350237, 13.7, 92.8, 78, 85.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Nathan Hale,00350243, 10.3, 100.0, 70, 88.6, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - New Mission High School,00350542, 24.7, 80.6, 100, 73.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - O W Holmes,00350138, 24.0, 87.5, 123, 98.4, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - O'Bryant School Math/Science,00350575, 88.0, 93.9, 328, 92.4, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Oliver Hazard Perry,00350255, 19.0, 100.0, 87, 83.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Orchard Gardens,00350257, 58.4, 91.3, 377, 76.7, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Patrick J Kennedy,00350264, 18.9, 100.0, 92, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Paul A Dever,00350268, 28.8, 93.4, 237, 70.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 14.4, 87.5, 68, 75.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Phineas Bates,00350278, 22.8, 100.0, 102, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Quincy Upper School,00350565, 42.9, 81.4, 185, 67.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Rafael Hernandez,00350691, 23.8, 91.6, 161, 81.4, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Richard J Murphy,00350240, 57.3, 100.0, 341, 88.3, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Roger Clap,00350298, 9.9, 100.0, 49, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Samuel Adams,00350302, 21.0, 100.0, 110, 85.5, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Samuel W Mason,00350304, 16.9, 100.0, 79, 78.5, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Sarah Greenwood,00350308, 29.7, 100.0, 212, 84.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Snowden International School at Copley,00350690, 32.0, 93.8, 131, 77.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - TechBoston Academy,00350657, 85.9, 94.1, 337, 84.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - The English High,00350535, 48.7, 85.7, 199, 64.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Thomas J Kenny,00350328, 22.0, 95.5, 117, 88.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - UP Academy Holland,00350167, 48.4, 75.3, 200, 71.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Urban Science Academy,00350579, 44.1, 89.1, 202, 60.4, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Warren-Prescott,00350346, 36.0, 100.0, 239, 82.4, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Washington Irving Middle,00350445, 24.8, 100.0, 144, 81.9, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - West Roxbury Academy,00350658, 43.6, 90.8, 195, 64.6, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William E Russell,00350366, 23.4, 100.0, 142, 88.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William Ellery Channing,00350360, 14.3, 96.5, 73, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William H Ohrenberger,00350258, 40.9, 100.0, 261, 90.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William McKinley,00350363, 48.6, 98.0, 460, 34.8, 6.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William Monroe Trotter,00350370, 30.6, 96.7, 143, 79.7, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Winship Elementary,00350374, 18.7, 100.0, 107, 88.8, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Young Achievers,00350380, 36.9, 91.8, 182, 58.2, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 65.7, 72.6, 213, 85.9, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.0, 96.7, 262, 98.5, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 51.6, 80.5, 260, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 37.2, 67.7, 53, 58.5, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 75.6, 76.8, 344, 75.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bourne High School,00360505, 34.0, 97.5, 190, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bourne Middle School,00360325, 52.9, 100.0, 281, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bournedale Elementary School,00360005, 32.5, 100.0, 187, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Peebles Elementary School,00360010, 24.8, 100.0, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boxford - Harry Lee Cole,00380005, 25.6, 100.0, 114, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boxford - Spofford Pond,00380013, 36.9, 100.0, 132, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Boylston - Boylston Elementary,00390005, 20.1, 97.0, 128, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Archie T Morrison,00400033, 32.2, 100.0, 194, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Braintree High,00400505, 117.3, 98.3, 566, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Donald Ross,00400050, 21.8, 100.0, 139, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - East Middle School,00400305, 59.9, 98.3, 320, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Highlands,00400015, 26.3, 100.0, 184, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Hollis,00400005, 31.1, 96.8, 254, 97.2, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Liberty,00400025, 26.5, 100.0, 183, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Mary E Flaherty School,00400020, 25.6, 100.0, 170, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 14.5, 100.0, 90, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - South Middle School,00400310, 48.5, 97.9, 250, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brewster - Eddy Elementary,00410010, 22.1, 100.0, 80, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Brewster - Stony Brook Elementary,00410005, 23.0, 100.0, 82, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 26.1, 73.9, 100, 73.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.5, 100.0, 134, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 92.0, 98.9, 473, 98.9, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.0, 100.0, 134, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.1, 100.0, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.8, 100.0, 293, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 47.5, 100.0, 199, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.5, 100.0, 25, 100.0, 4.4 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 230, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Brimfield - Brimfield Elementary,00430005, 26.4, 100.0, 106, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 32.8, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 94.1, 100.0, 626, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Ashfield Middle School,00440421, 41.2, 100.0, 164, 97.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Barrett Russell School,00440007, 16.3, 100.0, 78, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brockton Champion High School,00440515, 14.4, 100.0, 82, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brockton High,00440505, 252.9, 99.2," 1,120", 94.8, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brookfield,00440010, 35.8, 99.7, 189, 97.9, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Downey,00440110, 42.1, 99.7, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Dr W Arnone Community School,00440001, 51.2, 99.8, 238, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - East Middle School,00440405, 39.3, 100.0, 176, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Edgar B Davis,00440023, 58.3, 99.5, 292, 98.3, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Edison Academy,00440520, 5.3, 100.0, 135, 77.0, 29.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Frederick Douglass Academy,00440080, 5.7, 100.0, 110, 78.2, 6.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 21.0, 99.5, 62, 95.2, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Goddard Alternative School,00440400, 13.4, 90.3, 84, 100.0, 3.6 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Hancock,00440045, 35.6, 100.0, 164, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Huntington,00440055, 30.0, 100.0, 148, 100.0, 18.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - John F Kennedy,00440017, 35.3, 100.0, 182, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 48.2, 99.4, 293, 78.5, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Louis F Angelo Elementary,00440065, 51.5, 100.0, 290, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Manthala George Jr. School,00440003, 52.7, 99.8, 273, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Mary E. Baker School,00440002, 43.0, 100.0, 259, 100.0, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - North Middle School,00440410, 43.1, 99.7, 218, 99.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Oscar F Raymond,00440078, 44.0, 100.0, 214, 100.0, 19.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - South Middle School,00440415, 41.6, 100.0, 163, 97.5, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - West Middle School,00440420, 45.8, 97.8, 225, 99.6, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 110.3, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Brookfield - Brookfield Elementary,00450005, 24.2, 100.0, 93, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 4.2, 100.0, 13, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 8.3, 100.0, 18, 100.0, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline High,00460505, 167.6, 99.4, 818, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Edith C Baker,00460005, 59.9, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Edward Devotion,00460015, 68.9, 98.5, 447, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Heath,00460025, 41.4, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - John D Runkle,00460045, 49.8, 100.0, 284, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Lawrence,00460030, 51.8, 100.0, 357, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Michael Driscoll,00460020, 43.3, 100.0, 290, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Pierce,00460040, 56.3, 100.0, 425, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - The Lynch Center,00460060, 5.4, 100.0, 10, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - William H Lincoln,00460035, 53.4, 100.0, 321, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Burlington High,00480505, 90.5, 100.0, 432, 99.5, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Fox Hill,00480007, 31.7, 100.0, 147, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Francis Wyman Elementary,00480035, 48.5, 100.0, 225, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Marshall Simonds Middle,00480303, 73.4, 98.6, 335, 95.8, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Memorial,00480015, 36.1, 100.0, 160, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Pine Glen Elementary,00480020, 28.5, 100.0, 142, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Amigos School,00490006, 32.7, 100.0, 164, 89.6, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 178.4, 99.2, 717, 92.5, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridge Street Upper School,00490305, 29.7, 100.0, 112, 97.3, 8.8 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridgeport,00490007, 22.8, 100.0, 111, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 29.9, 100.0, 201, 96.5, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Graham and Parks,00490080, 30.2, 100.0, 159, 96.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Haggerty,00490020, 25.1, 100.0, 109, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - John M Tobin,00490065, 21.9, 100.0, 175, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Kennedy-Longfellow,00490040, 28.5, 97.2, 122, 95.9, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - King Open,00490035, 35.5, 100.0, 200, 99.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Maria L. Baldwin,00490005, 30.3, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Martin Luther King Jr.,00490030, 26.9, 90.1, 158, 88.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Morse,00490045, 31.5, 100.0, 160, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Peabody,00490050, 26.2, 100.0, 102, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 30.4, 94.0, 104, 91.3, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 28.6, 100.0, 105, 96.2, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Vassal Lane Upper School,00490320, 32.8, 100.0, 106, 94.3, 8.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Canton High,00500505, 69.9, 100.0, 344, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Dean S Luce,00500020, 34.7, 100.0, 264, 98.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - John F Kennedy,00500017, 35.6, 100.0, 234, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 243, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Rodman Early Childhood Center,00500010, 6.6, 100.0, 14, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Wm H Galvin Middle,00500305, 59.8, 100.0, 369, 95.7, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.5, 86.0, 48, 87.5, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 67.2, 94.0, 191, 93.7, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Carlisle - Carlisle School,00510025, 54.7, 100.0, 238, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Carver - Carver Elementary School,00520015, 59.8, 100.0, 385, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Carver - Carver Middle/High School,00520405, 71.3, 98.6, 315, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Becket Washington School,06350005, 10.0, 100.0, 50, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Craneville,06350025, 29.7, 96.6, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Kittredge,06350035, 11.4, 100.0, 55, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 34.1, 100.0, 168, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Wahconah Regional High,06350505, 43.2, 100.0, 213, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Byam School,00560030, 32.2, 100.0, 142, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Center Elementary School,00560005, 27.8, 100.0, 136, 99.3, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Charles D Harrington,00560025, 28.0, 100.0, 143, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Chelmsford High,00560505, 112.2, 100.0, 546, 99.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Col Moses Parker School,00560305, 61.3, 100.0, 286, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 84, 83.3, 19.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - McCarthy Middle School,00560310, 69.1, 100.0, 283, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - South Row,00560015, 28.0, 100.0, 136, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Chelsea High,00570505, 112.6, 99.6, 581, 99.3, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Clark Avenue School,00570050, 38.0, 100.0, 187, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 36.7, 100.0, 104, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.1, 100.0, 140, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 36.0, 100.0, 104, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - George F. Kelly Elementary,00570035, 35.5, 100.0, 109, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Joseph A. Browne School,00570055, 43.2, 100.0, 166, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 52.0, 100.0, 189, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 120, 95.8, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.8, 100.0, 65, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Barry,00610003, 28.5, 100.0, 114, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Belcher,00610010, 19.6, 100.0, 49, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bellamy Middle,00610305, 61.4, 98.4, 220, 99.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bowe,00610015, 32.7, 100.0, 121, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bowie,00610020, 24.0, 100.0, 156, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee Academy,00610021, 17.3, 100.0, 98, 93.9, 6.1 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 90.0, 99.3, 454, 96.7, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee High,00610505, 74.1, 97.3, 349, 98.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Dupont Middle,00610310, 52.5, 98.1, 192, 93.2, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Fairview Elementary,00610050, 34.5, 100.0, 183, 87.4, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Gen John J Stefanik,00610090, 31.0, 100.0, 149, 96.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Lambert-Lavoie,00610040, 21.0, 100.0, 119, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Litwin,00610022, 31.3, 100.0, 149, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Streiber Memorial School,00610065, 21.0, 100.0, 130, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 29, 100.0, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 35.1, 68.4, 119, 84.9, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 25.1, 80.9, 80, 91.3, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 25.3, 71.1, 87, 87.4, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.3, 80.2, 51, 51.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Clarksburg - Clarksburg Elementary,00630010, 15.4, 97.4, 74, 87.8, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Elementary,00640050, 51.5, 100.0, 253, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Middle School,00640305, 52.3, 98.1, 277, 98.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Senior High,00640505, 40.5, 100.0, 177, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 35.9, 60.5, 97, 67.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Cohasset Middle/High School,00650505, 70.7, 98.6, 380, 98.9, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Deer Hill,00650005, 28.4, 100.0, 138, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Joseph Osgood,00650010, 21.8, 100.0, 109, 95.4, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33.0, 84.8, 162, 98.1, 19.6 to 1 +NA,NA,a-exp-i3,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.4, 69.8, 261, 95.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 27.5, 73.6, 82, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.0, 84.4, 102, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 30.5, 75.4, 82, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Alcott,00670005, 35.1, 100.0, 176, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Concord Middle,00670305, 56.7, 100.0, 377, 99.7, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Thoreau,00670020, 34.2, 100.0, 177, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Willard,00670030, 37.0, 100.0, 175, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 98.0, 100.0, 436, 98.9, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 22.0, 68.2, 83, 81.9, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Conway - Conway Grammar,00680005, 12.6, 99.2, 78, 98.7, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Danvers High,00710505, 78.2, 97.4, 365, 98.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Great Oak,00710015, 26.4, 100.0, 128, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Highlands,00710010, 29.5, 100.0, 128, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Holten Richmond Middle School,00710305, 64.3, 98.4, 372, 98.7, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Ivan G Smith,00710032, 19.6, 100.0, 93, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Riverside,00710030, 27.1, 100.0, 124, 96.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Willis E Thorpe,00710045, 24.7, 100.0, 131, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 9.5, 100.0, 53, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Dartmouth High,00720505, 78.4, 99.1, 326, 99.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Dartmouth Middle,00720050, 77.4, 100.0, 314, 98.7, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - George H Potter,00720030, 27.8, 100.0, 133, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - James M. Quinn School,00720040, 45.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Joseph Demello,00720015, 24.2, 100.0, 140, 99.3, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Avery,00730010, 26.5, 100.0, 112, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Dedham High,00730505, 65.0, 100.0, 268, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Dedham Middle School,00730305, 59.8, 100.0, 375, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Early Childhood Center,00730005, 17.0, 100.0, 105, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Greenlodge,00730025, 23.4, 100.0, 105, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Oakdale,00730030, 22.8, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Riverdale,00730045, 18.1, 100.0, 76, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Deerfield - Deerfield Elementary,00740015, 37.5, 95.4, 218, 99.5, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.4, 100.0, 489, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44.4, 100.0, 138, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 27.5, 100.0, 97, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 47.6, 100.0, 223, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 47.0, 100.0, 169, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 39.8, 97.5, 154, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 35.6, 100.0, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 28.5, 100.0, 126, 96.8, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 84.5, 100.0, 397, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.9, 100.0, 177, 99.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Palmer River,06500010, 46.3, 100.0, 240, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Elementary School,00770015, 20.7, 100.0, 99, 100.0, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas High School,00770505, 35.5, 91.5, 158, 91.8, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Middle School,00770305, 20.0, 100.0, 93, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Primary School,00770005, 12.4, 100.0, 43, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Dover - Chickering,00780005, 40.3, 98.3, 217, 97.2, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.2, 100.0, 330, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 51.3, 98.9, 227, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Brookside Elementary,00790035, 25.7, 100.0, 135, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Dracut Senior High,00790505, 60.7, 98.4, 246, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - George H. Englesby Elementary School,00790045, 28.5, 100.0, 151, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Greenmont Avenue,00790030, 17.2, 100.0, 93, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 30.7, 100.0, 190, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 53.8, 98.1, 335, 97.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 21.0, 95.3, 94, 85.1, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.6, 100.0, 112, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 52.7, 100.0, 283, 98.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.8, 100.0, 139, 96.4, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 36.4, 100.0, 223, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 32.3, 100.0, 145, 95.9, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 17.1, 100.0, 84, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 69.3, 100.0, 360, 91.9, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Alden School,00820004, 52.4, 98.1, 231, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Chandler Elementary,00820006, 43.8, 100.0, 204, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Duxbury High,00820505, 80.0, 99.5, 395, 99.7, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Duxbury Middle,00820305, 60.4, 96.7, 267, 95.9, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - Central,00830005, 36.0, 100.0, 180, 99.4, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 52.2, 96.6, 376, 92.3, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 42.0, 100.0, 220, 98.2, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Birchland Park,00870305, 52.5, 100.0, 215, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - East Longmeadow High,00870505, 61.9, 100.0, 217, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Mapleshade,00870010, 23.0, 100.0, 126, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Meadow Brook,00870013, 37.5, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Mountain View,00870015, 22.6, 100.0, 105, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Eastham - Eastham Elementary,00850005, 22.9, 100.0, 84, 100.0, 7.9 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Center School,00860005, 14.7, 100.0, 64, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Easthampton High,00860505, 31.6, 96.8, 154, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Maple,00860010, 17.7, 100.0, 78, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Neil A Pepin,00860020, 13.7, 100.0, 58, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - White Brook Middle School,00860305, 35.9, 97.2, 167, 97.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Center School,00880003, 19.7, 100.0, 80, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Easton Middle School,00880405, 64.5, 100.0, 312, 99.7, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Moreau Hall,00880020, 13.8, 100.0, 67, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Oliver Ames High,00880505, 81.4, 98.8, 318, 99.7, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Parkview Elementary,00880015, 21.8, 100.0, 102, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Richardson Olmsted School,00880025, 56.0, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Edgartown - Edgartown Elementary,00890005, 39.9, 99.6, 139, 90.6, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 28.7, 91.6, 85, 96.5, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Erving - Erving Elementary,00910030, 18.1, 97.2, 76, 100.0, 7.5 to 1 +NA,NA,a-exp-i3,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 113.2, 95.5, 335, 97.3, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Adams School,00930003, 9.0, 100.0, 64, 100.0, 23.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Devens School,00930030, 11.6, 100.0, 160, 100.0, 5.6 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Everett High,00930505, 145.3, 100.0, 615, 99.7, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Everett - George Keverian School,00930028, 60.7, 100.0, 289, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Lafayette School,00930038, 66.5, 100.0, 296, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Madeline English School,00930018, 65.8, 100.0, 246, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Parlin School,00930058, 53.9, 100.0, 227, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Sumner G. Whittier School,00930010, 48.8, 100.0, 187, 99.5, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Webster School,00930015, 39.1, 100.0, 206, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 86.0, 56.9, 231, 79.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - East Fairhaven,00940010, 28.0, 100.0, 146, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Fairhaven High,00940505, 50.2, 100.0, 302, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Hastings Middle,00940305, 34.7, 100.0, 151, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Leroy Wood,00940030, 31.4, 100.0, 192, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - B M C Durfee High,00950505, 174.4, 91.1, 680, 90.3, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 44.4, 91.0, 248, 85.5, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Fall River - Henry Lord Community School,00950017, 43.3, 86.2, 225, 85.8, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - James Tansey,00950140, 15.4, 93.5, 79, 89.9, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - John J Doran,00950045, 36.2, 86.2, 161, 83.9, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Letourneau Elementary School,00950013, 39.1, 90.5, 168, 92.9, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 47.3, 93.7, 188, 77.7, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Matthew J Kuss Middle,00950320, 58.3, 94.9, 288, 93.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Morton Middle,00950315, 51.4, 100.0, 240, 80.8, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - North End Elementary,00950005, 45.0, 95.6, 256, 82.8, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Resiliency Middle School,00950335, 4.2, 76.2, 20, 50.0, 6.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Resiliency Preparatory School,00950325, 13.9, 92.8, 64, 92.2, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Samuel Watson,00950145, 18.9, 94.7, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Spencer Borden,00950130, 37.6, 92.0, 214, 94.4, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Stone Day School,00950340, 12.2, 81.9, 80, 91.3, 2.6 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Talbot Innovation School,00950305, 49.8, 90.0, 234, 91.9, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - William S Greene,00950065, 48.2, 87.5, 244, 86.1, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - East Falmouth Elementary,00960005, 33.2, 100.0, 119, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Falmouth High,00960505, 73.0, 96.7, 516, 97.3, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Lawrence,00960405, 50.6, 100.0, 239, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Morse Pond School,00960305, 46.2, 100.0, 162, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Mullen-Hall,00960020, 37.8, 100.0, 171, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - North Falmouth Elementary,00960030, 26.8, 100.0, 119, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Teaticket,00960015, 29.4, 100.0, 134, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 12.5, 92.2, 56, 100.0, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 47.0, 100.0, 246, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Crocker Elementary,00970016, 40.0, 100.0, 145, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Fitchburg High,00970505, 87.3, 100.0, 407, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Goodrich Academy,00970510, 8.6, 100.0, 123, 100.0, 20.0 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - McKay Arts Academy,00970340, 52.0, 100.0, 232, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Memorial Intermediate,00970048, 50.2, 100.0, 212, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Reingold Elementary,00970043, 40.9, 100.0, 198, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - South Street Elementary,00970060, 47.0, 100.0, 214, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Florida - Abbott Memorial,00980005, 11.6, 95.7, 61, 80.3, 7.0 to 1 +NA,NA,a-exp-i3,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 22.0, 57.8, 131, 96.9, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Charles Taylor Elementary,00990050, 20.4, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Foxborough High,00990505, 64.5, 100.0, 319, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - John J Ahern,00990405, 64.2, 100.0, 380, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Mabelle M Burrell,00990015, 22.4, 100.0, 107, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 33.8, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 92.2, 81.8, 429, 96.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Barbieri Elementary,01000035, 52.2, 96.2, 249, 88.8, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Brophy,01000006, 42.5, 100.0, 189, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Cameron Middle School,01000302, 54.1, 100.0, 220, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Charlotte A Dunning,01000007, 36.7, 100.0, 199, 93.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Framingham High School,01000515, 177.1, 97.2, 692, 92.2, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Fuller Middle,01000305, 53.1, 100.0, 239, 94.1, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Hemenway,01000015, 40.6, 100.0, 177, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Juniper Hill School,01000001, 17.6, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - King Elementary School,01000005, 17.9, 95.6, 95, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 36.6, 100.0, 142, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Miriam F McCarthy School,01000050, 50.1, 100.0, 213, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Potter Road,01000039, 37.3, 100.0, 149, 99.3, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Walsh Middle,01000310, 71.5, 99.7, 324, 99.1, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Woodrow Wilson,01000055, 50.1, 100.0, 207, 98.1, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 45.7, 61.0, 200, 100.0, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Annie Sullivan Middle School,01010040, 40.8, 100.0, 150, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Davis Thayer,01010035, 20.6, 100.0, 78, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 6.0, 100.0, 30, 100.0, 21.8 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Franklin High,01010505, 125.6, 99.9, 749, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Helen Keller Elementary,01010012, 29.7, 100.0, 120, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Horace Mann,01010405, 40.0, 97.5, 149, 97.3, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - J F Kennedy Memorial,01010013, 26.2, 100.0, 105, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Jefferson Elementary,01010010, 23.4, 100.0, 101, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Oak Street Elementary,01010030, 27.4, 100.0, 119, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Parmenter,01010032, 27.4, 96.3, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Remington Middle,01010310, 43.4, 100.0, 148, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51.8, 96.1, 136, 97.8, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 60.5, 100.0, 256, 98.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 28.0, 100.0, 147, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 148, 98.6, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 48.1, 100.0, 243, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.1, 100.0, 144, 86.1, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Frontier - Frontier Regional,06700505, 51.9, 96.5, 315, 97.8, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Elm Street School,01030001, 39.5, 100.0, 182, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 8.0, 100.0, 46, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner High,01030505, 57.9, 100.0, 220, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner Middle School,01030405, 38.0, 100.0, 156, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Waterford Street,01030020, 26.9, 100.0, 132, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Chester Elementary,06720059, 12.5, 100.0, 44, 100.0, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Gateway Regional High,06720505, 23.1, 97.8, 127, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Gateway Regional Middle School,06720405, 19.8, 97.5, 82, 97.6, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Littleville Elementary School,06720143, 22.5, 100.0, 103, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Georgetown High School,01050505, 36.7, 100.0, 188, 99.5, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Georgetown Middle School,01050305, 21.5, 100.0, 103, 93.2, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Penn Brook,01050010, 43.9, 95.4, 236, 86.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 26, 100.0, 27.0 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Gill Elementary,06740005, 9.2, 100.0, 40, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Great Falls Middle,06740310, 21.2, 95.3, 131, 92.4, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 12.7, 100.0, 42, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 24.3, 95.9, 88, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Turners Fall High,06740505, 23.8, 100.0, 108, 98.1, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 40.8, 89.0, 233, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Beeman Memorial,01070010, 30.5, 100.0, 126, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - East Gloucester Elementary,01070020, 19.7, 100.0, 84, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Gloucester High,01070505, 79.9, 97.5, 294, 97.3, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 23, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Plum Cove School,01070042, 16.8, 100.0, 84, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 53.8, 98.1, 280, 97.9, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Veterans Memorial,01070045, 25.7, 100.0, 89, 100.0, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - West Parish,01070050, 27.5, 100.0, 135, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 8, 100.0, 1.8 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Grafton High School,01100505, 63.8, 100.0, 313, 99.7, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Grafton Middle,01100305, 33.7, 100.0, 179, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Millbury Street Elementary School,01100200, 52.4, 98.1, 260, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - North Grafton Elementary,01100025, 19.5, 100.0, 108, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - North Street Elementary School,01100030, 42.1, 100.0, 236, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - South Grafton Elementary,01100005, 20.7, 100.0, 112, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Granby - East Meadow,01110004, 12.6, 100.0, 105, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Granby - Granby Jr Sr High School,01110505, 30.7, 100.0, 235, 96.2, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Granby - West Street,01110010, 14.6, 93.1, 73, 86.3, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 133.2, 98.5, 500, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 135.2, 99.3, 313, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 175.1, 99.4, 454, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 204.1, 98.5, 501, 98.6, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Discovery School at Four Corners,01140025, 21.3, 90.6, 117, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Federal Street School,01140010, 21.7, 100.0, 110, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Green River,01140030, .5, 100.0, 12, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Greenfield High,01140505, 40.2, 100.0, 201, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Greenfield Middle,01140305, 43.3, 99.5, 198, 98.5, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Newton School,01140035, 22.1, 100.0, 112, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.0, 100.0, 29, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Boutwell School,06730001, 3.0, 100.0, 15, 100.0, 21.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Florence Roche School,06730010, 33.2, 100.0, 162, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.9, 100.0, 319, 99.4, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 59.4, 100.0, 273, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 22.8, 100.0, 108, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Hadley - Hadley Elementary,01170015, 24.9, 100.0, 263, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Hadley - Hopkins Academy,01170505, 23.3, 100.0, 142, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Halifax - Halifax Elementary,01180005, 38.8, 100.0, 195, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 17.4, 100.0, 68, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Cutler School,06750010, 20.4, 100.0, 84, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 50.7, 100.0, 238, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 40.2, 97.5, 153, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Winthrop School,06750015, 22.0, 100.0, 92, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 37.7, 74.5, 245, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 18.2, 100.0, 95, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 20.5, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.8, 100.0, 315, 99.4, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Soule Road,06800030, 21.9, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 15.2, 100.0, 76, 90.8, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 35.1, 100.0, 163, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Hampshire - Hampshire Regional High,06830505, 71.7, 96.2, 371, 86.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Hancock - Hancock Elementary,01210005, 5.8, 100.0, 25, 36.0, 6.2 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Cedar Elementary,01220004, 31.9, 100.0, 130, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Center Elementary,01220005, 21.0, 100.0, 94, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Hanover High,01220505, 60.9, 100.0, 259, 94.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Hanover Middle,01220305, 63.7, 100.0, 427, 99.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Sylvester,01220015, 17.1, 100.0, 72, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Harvard - Bromfield,01250505, 57.3, 99.5, 266, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Harvard - Hildreth Elementary School,01250005, 35.0, 100.0, 141, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 81, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Hatfield - Smith Academy,01270505, 22.4, 100.0, 125, 100.0, 8.8 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 9.0, 100.0, 77, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Bradford Elementary,01280008, 45.0, 100.0, 240, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 24.9, 100.0, 146, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Consentino Middle School,01280100, 61.8, 96.8, 332, 95.8, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Crowell,01280020, 9.7, 100.0, 91, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Dr Paul Nettle,01280050, 38.2, 100.0, 174, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Golden Hill,01280026, 39.0, 100.0, 250, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Greenleaf,01280027, 16.5, 100.0, 116, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Haverhill Alternative School,01280033, 7.0, 100.0, 36, 100.0, 6.6 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Haverhill High,01280505, 126.8, 94.7, 624, 94.7, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - John G Whittier,01280085, 27.3, 100.0, 144, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Moody,01280045, 13.0, 100.0, 216, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 43.5, 100.0, 356, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - TEACH,01280073, 7.0, 85.7, 130, 86.2, 7.3 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Tilton,01280075, 39.0, 100.0, 188, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Walnut Square,01280080, 8.0, 94.6, 69, 100.0, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Hawlemont - Hawlemont Regional,06850005, 10.4, 83.6, 50, 90.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 17.0, 64.7, 74, 81.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 20.1, 77.8, 97, 84.5, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.8, 91.6, 55, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - East Elementary School,01310005, 35.1, 100.0, 159, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Hingham High,01310505, 86.0, 100.0, 451, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Hingham Middle School,01310410, 70.1, 100.0, 380, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Plymouth River,01310019, 32.8, 100.0, 163, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - South Elementary,01310020, 36.0, 100.0, 167, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Wm L Foster Elementary,01310010, 33.7, 100.0, 160, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 37.8, 97.4, 192, 95.8, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - John F Kennedy,01330018, 30.9, 100.0, 141, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - South,01330025, 20.9, 100.0, 91, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Holland - Holland Elementary,01350005, 19.6, 100.0, 82, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Holliston High,01360505, 63.4, 98.4, 346, 98.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Miller School,01360007, 47.9, 100.0, 250, 99.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Placentino Elementary,01360010, 47.3, 97.9, 271, 99.3, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Robert H. Adams Middle School,01360305, 50.2, 100.0, 253, 98.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - E N White Elementary,01370045, 38.3, 97.7, 138, 80.4, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - H.B. Lawrence School,01370070, 21.0, 92.0, 97, 73.2, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Holyoke High,01370505, 78.2, 94.7, 396, 91.2, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Joseph Metcalf School,01370003, 14.8, 98.5, 56, 55.4, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Kelly Elementary,01370040, 41.0, 91.8, 179, 91.1, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 46.8, 84.9, 190, 47.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 28.6, 96.5, 106, 87.7, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 38.4, 87.1, 155, 73.5, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Morgan Full Service Community School,01370025, 33.3, 91.0, 91, 81.3, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - William R. Peck School,01370030, 33.3, 90.4, 154, 74.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 33.9, 71.5, 49, 85.7, 7.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.5, 72.2, 143, 92.3, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 43.2, 100.0, 213, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Memorial,01380010, 42.8, 100.0, 178, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Park Street School,01380003, 3.5, 88.6, 4, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Center,01390005, 32.7, 100.0, 149, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Elmwood,01390010, 35.7, 100.0, 147, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkins Elementary School,01390015, 37.6, 100.0, 166, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton High,01390505, 81.9, 100.0, 654, 97.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton Middle School,01390305, 66.8, 100.0, 310, 97.7, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 4.5, 100.0, 9, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - C A Farley,01410030, 41.2, 100.0, 156, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - David J. Quinn Middle School,01410410, 56.8, 100.0, 277, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Forest Avenue Elementary,01410015, 27.5, 100.0, 97, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Hudson High,01410505, 87.1, 97.7, 431, 96.5, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Mulready Elementary,01410007, 23.8, 100.0, 86, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Hull High,01420505, 28.6, 100.0, 138, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Lillian M Jacobs,01420015, 33.0, 100.0, 139, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Memorial Middle,01420305, 20.1, 100.0, 81, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 73.3, 85.0, 360, 96.1, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Ipswich High,01440505, 50.1, 98.0, 330, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Ipswich Middle School,01440305, 43.3, 100.0, 156, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 33.7, 100.0, 176, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Winthrop,01440015, 36.1, 100.0, 183, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 47.0, 44.7, 73, 69.9, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 99.7, 56.2, 305, 72.5, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,King Philip - King Philip Middle School,06900510, 47.0, 100.0, 285, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,King Philip - King Philip Regional High,06900505, 83.5, 98.7, 358, 98.6, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Kingston - Kingston Elementary,01450005, 32.2, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Kingston - Kingston Intermediate,01450020, 37.7, 100.0, 177, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Lanesborough - Lanesborough Elementary,01480005, 19.0, 100.0, 86, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Alexander B Bruce,01490015, 41.1, 100.0, 158, 74.1, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 221, 94.1, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Community Day Arlington,01490009, 56.5, 89.4, 168, 85.7, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Edward F. Parthum,01490053, 41.0, 95.1, 239, 86.2, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Emily G Wetherbee,01490080, 44.4, 97.7, 234, 74.8, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Francis M Leahy,01490040, 35.3, 100.0, 158, 80.4, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Frost Middle School,01490525, 31.0, 96.8, 183, 66.1, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Gerard A. Guilmette,01490022, 45.4, 89.0, 201, 72.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Guilmette Middle School,01490025, 43.4, 93.1, 247, 87.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - High School Learning Center,01490536, 17.8, 100.0, 120, 91.7, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - James F Hennessey,01490020, 27.0, 92.6, 88, 85.2, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - John Breen School,01490003, 18.0, 100.0, 50, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - John K Tarbox,01490075, 21.0, 95.2, 110, 81.8, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 10.0, 100.0, 37, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 16.0, 100.0, 80, 93.8, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawrence High School,01490515, 225.8, 90.6," 1,025", 89.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Oliver Partnership School,01490048, 33.0, 100.0, 160, 75.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Parthum Middle School,01490027, 39.0, 94.9, 171, 59.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 12.0, 75.0, 177, 69.5, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Robert Frost,01490018, 38.0, 100.0, 200, 85.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 59, 91.5, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - School for Exceptional Studies,01490537, 31.9, 78.3, 199, 64.8, 5.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 47.4, 100.0, 237, 70.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Spark Academy,01490085, 33.3, 91.0, 112, 81.3, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 27.0, 88.9, 84, 76.2, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 30.0, 86.7, 64, 96.9, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 59.5, 88.2, 273, 71.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Lee - Lee Elementary,01500025, 27.0, 100.0, 129, 92.2, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Lee - Lee Middle/High School,01500505, 35.5, 97.2, 170, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester High,01510505, 33.8, 100.0, 162, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Memorial Elementary,01510005, 23.2, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Middle,01510015, 28.1, 100.0, 137, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Primary School,01510010, 24.3, 100.0, 131, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lenox - Lenox Memorial High,01520505, 52.1, 98.1, 351, 100.0, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Lenox - Morris,01520015, 28.5, 100.0, 117, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Bennett,01530003, 5.0, 100.0, 16, 100.0, 21.0 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Center For Technical Education Innovation,01530605, 37.7, 90.4, 52, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Fall Brook,01530007, 46.6, 100.0, 254, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Frances Drake School,01530010, 45.4, 95.6, 251, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Johnny Appleseed,01530025, 48.5, 100.0, 264, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Leominster Center for Excellence,01530515, 3.5, 100.0, 24, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Leominster High School,01530505, 98.2, 99.0, 536, 99.8, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Lincoln School,01530005, 5.0, 100.0, 25, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Northwest,01530030, 48.1, 100.0, 274, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Priest Street,01530040, 10.3, 92.2, 56, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Samoset School,01530045, 39.1, 97.4, 295, 98.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Sky View Middle School,01530320, 57.6, 100.0, 380, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Leverett - Leverett Elementary,01540005, 13.8, 100.0, 55, 87.3, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Bowman,01550008, 49.0, 100.0, 91, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Bridge,01550006, 43.0, 100.0, 89, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Fiske,01550015, 39.0, 100.0, 79, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Harrington,01550030, 33.0, 100.0, 77, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Jonas Clarke Middle,01550305, 80.5, 100.0, 314, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Joseph Estabrook,01550010, 40.2, 100.0, 86, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Lexington Children's Place,01550001, 6.8, 100.0, 26, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Lexington High,01550505, 173.0, 99.7, 738, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Maria Hastings,01550035, 37.6, 100.0, 73, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Wm Diamond Middle,01550310, 75.7, 100.0, 317, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Hanscom Middle,01570305, 25.6, 100.0, 152, 96.7, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Hanscom Primary,01570006, 27.9, 100.0, 124, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Lincoln School,01570025, 63.3, 100.0, 304, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.8, 100.0, 828, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Littleton High School,01580505, 32.9, 99.4, 141, 99.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Littleton Middle School,01580305, 25.9, 100.0, 125, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Russell St Elementary,01580015, 23.1, 100.0, 170, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Shaker Lane Elementary,01580005, 28.2, 100.0, 140, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 159, 97.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Center,01590010, 31.9, 100.0, 160, 95.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Glenbrook Middle,01590017, 28.4, 100.0, 125, 93.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Longmeadow High,01590505, 75.8, 100.0, 296, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Williams Middle,01590305, 31.0, 100.0, 142, 98.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Wolf Swamp Road,01590025, 32.5, 100.0, 140, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Abraham Lincoln,01600020, 37.0, 100.0, 269, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - B.F. Butler Middle School,01600310, 42.9, 100.0, 277, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Bartlett Community Partnership,01600090, 36.1, 100.0, 233, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Charles W Morey,01600030, 34.0, 100.0, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 36.0, 100.0, 208, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Dr An Wang School,01600345, 48.4, 100.0, 275, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Dr Gertrude Bailey,01600002, 32.9, 100.0, 262, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Greenhalge,01600015, 35.0, 100.0, 216, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Henry J Robinson Middle,01600330, 52.9, 100.0, 197, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - James S Daley Middle School,01600315, 47.6, 100.0, 246, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - James Sullivan Middle School,01600340, 50.1, 100.0, 248, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - John J Shaughnessy,01600050, 34.9, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Joseph McAvinnue,01600010, 36.0, 100.0, 254, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 49.8, 100.0, 304, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 6.6, 100.0, 78, 100.0, 2.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 7.2, 100.0, 105, 100.0, 4.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Lowell High,01600505, 213.0, 97.7," 1,534", 98.8, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Moody Elementary,01600027, 20.0, 100.0, 118, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Pawtucketville Memorial,01600036, 34.9, 100.0, 272, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Peter W Reilly,01600040, 40.5, 100.0, 306, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Pyne Arts,01600018, 36.1, 100.0, 297, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Rogers STEM Academy,01600005, 36.9, 100.0, 307, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 34.0, 100.0, 270, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - The Career Academy,01600515, 9.7, 100.0, 68, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Washington,01600055, 19.5, 100.0, 170, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 61.0, 98.4, 238, 97.9, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 57.1, 96, 97.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Chapin Street Elementary School,01610020, 29.4, 100.0, 148, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - East Street Elementary School,01610010, 32.3, 100.0, 158, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Ludlow Senior High,01610505, 79.7, 98.7, 360, 95.3, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Paul R Baird Middle,01610305, 59.3, 99.2, 239, 98.7, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Veterans Park Elementary,01610023, 27.5, 100.0, 203, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg High,01620505, 35.7, 97.2, 151, 99.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg Middle School,01620305, 25.9, 100.0, 158, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg Primary School,01620010, 23.5, 100.0, 127, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 27.0, 100.0, 155, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - A Drewicz Elementary,01630016, 33.6, 97.0, 149, 96.6, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Aborn,01630011, 16.7, 100.0, 86, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Breed Middle School,01630405, 84.7, 94.1, 353, 94.1, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Brickett Elementary,01630020, 20.8, 100.0, 93, 94.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Capt William G Shoemaker,01630090, 30.9, 100.0, 142, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Classical High,01630505, 96.6, 99.0, 436, 95.4, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Cobbet Elementary,01630035, 41.7, 100.0, 186, 97.3, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - E J Harrington,01630045, 44.8, 100.0, 204, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Early Childhood Center,01630004, 21.8, 100.0, 121, 95.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Edward A Sisson,01630095, 30.1, 100.0, 142, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 37.0, 89.2, 139, 91.4, 8.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Hood,01630055, 31.7, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Ingalls,01630060, 44.4, 100.0, 198, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Julia F Callahan,01630030, 30.0, 100.0, 166, 94.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 81, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn English High,01630510, 105.2, 96.2, 539, 90.7, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 81.5, 96.3, 228, 95.6, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn Woods,01630075, 11.3, 100.0, 59, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Pickering Middle,01630420, 51.9, 100.0, 195, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Robert L Ford,01630050, 32.7, 100.0, 146, 96.6, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Sewell-Anderson,01630085, 23.2, 100.0, 114, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Thurgood Marshall Mid,01630305, 80.1, 96.3, 306, 88.9, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Tracy,01630100, 31.3, 100.0, 135, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Washington Elementary School,01630005, 30.6, 100.0, 142, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - William R Fallon,01630080, 9.8, 100.0, 42, 100.0, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Wm P Connery,01630040, 38.5, 100.0, 175, 97.1, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Huckleberry Hill,01640010, 28.4, 100.0, 143, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield High,01640505, 52.8, 100.0, 223, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield Middle School,01640405, 51.2, 100.0, 229, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield Preschool,01640005, 2.6, 100.0, 8, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Summer Street,01640020, 28.9, 100.0, 149, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 84.7, 66.4, 274, 77.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.9, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Beebe,01650003, 61.5, 100.0, 262, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Ferryway,01650013, 57.5, 100.0, 247, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Forestdale,01650027, 47.5, 100.0, 249, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Linden,01650047, 68.8, 100.0, 362, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 91, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Malden High,01650505, 114.2, 99.1, 542, 98.3, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Salemwood,01650057, 85.0, 100.0, 554, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 20.4, 100.0, 95, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 202, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 37.0, 95.7, 136, 91.2, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 31.7, 98.7, 143, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Everett W Robinson,01670007, 49.0, 100.0, 249, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Harold L Qualters Middle,01670035, 87.0, 100.0, 327, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 59.9, 100.0, 319, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Mansfield High,01670505, 99.4, 100.0, 537, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Roland Green School,01670003, 6.0, 100.0, 30, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Elbridge Gerry,01680015, 10.1, 100.0, 48, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Glover,01680020, 27.8, 100.0, 116, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - L H Coffin,01680010, 13.9, 94.2, 52, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Malcolm L Bell,01680005, 24.0, 100.0, 90, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Marblehead High,01680505, 89.7, 97.8, 387, 98.2, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 42.0, 100.0, 188, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Village School,01680016, 56.4, 99.9, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 21.9, 79.0, 78, 89.7, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Marion - Sippican,01690005, 33.6, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 114.5, 100.0, 494, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Charles Jaworek School,01700030, 56.2, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 26, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Francis J Kane,01700008, 49.0, 100.0, 174, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Marlborough High,01700505, 99.3, 100.0, 438, 99.5, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Richer,01700025, 45.0, 100.0, 150, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Daniel Webster,01710015, 24.9, 100.0, 109, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Eames Way School,01710005, 19.0, 100.0, 91, 94.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Furnace Brook Middle,01710310, 75.7, 100.0, 402, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Gov Edward Winslow,01710020, 31.8, 100.0, 146, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Marshfield High,01710505, 109.4, 99.1, 395, 98.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Martinson Elementary,01710025, 37.0, 97.3, 145, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - South River,01710010, 26.5, 100.0, 122, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 73.5, 99.3, 592, 94.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 18.9, 81.7, 70, 95.7, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 37.8, 81.4, 101, 63.4, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Masconomet - Masconomet Regional High School,07050505, 84.4, 100.0, 416, 99.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 47.2, 100.0, 232, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Kenneth Coombs School,01720005, 32.3, 100.0, 166, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Mashpee High,01720505, 42.6, 100.0, 236, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Mashpee Middle School,01720020, 21.2, 100.0, 112, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Quashnet School,01720035, 43.8, 100.0, 259, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,"","","","","" +NA,NA,a-exp-i3,2016-17,Mattapoisett - Center,01730005, 22.5, 100.0, 89, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Mattapoisett - Old Hammondtown,01730010, 17.8, 100.0, 75, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Fowler School,01740305, 35.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Green Meadow,01740010, 34.2, 100.0, 130, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Maynard High,01740505, 40.4, 97.5, 190, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Dale Street,01750005, 29.1, 97.8, 191, 95.3, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Medfield Senior High,01750505, 67.5, 100.0, 297, 99.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Memorial School,01750003, 24.1, 100.0, 140, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Ralph Wheelock School,01750007, 25.0, 100.0, 142, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Thomas Blake Middle,01750305, 51.7, 100.0, 381, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Medford - Brooks School,01760130,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Christopher Columbus,01760140,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Curtis-Tufts,01760510,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - John J McGlynn Elementary School,01760068,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - John J. McGlynn Middle School,01760320,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Madeleine Dugger Andrews,01760315,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Medford High,01760505,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Medford Vocational Technical High,01760605,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Milton Fuller Roberts,01760150,"","","","","" +NA,NA,a-exp-i3,2016-17,Medway - Burke/Memorial Elementary School,01770015, 30.8, 100.0, 152, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Medway - John D Mc Govern Elementary,01770013, 19.2, 100.0, 94, 94.7, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Medway - Medway High,01770505, 51.7, 98.1, 289, 91.3, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Medway - Medway Middle,01770305, 55.3, 100.0, 240, 98.3, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Early Childhood Center,01780003, 13.5, 100.0, 45, 100.0, 21.4 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Herbert Clark Hoover,01780017, 18.5, 100.0, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Horace Mann,01780025, 16.5, 100.0, 73, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Lincoln,01780020, 29.0, 100.0, 122, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Melrose High,01780505, 69.8, 100.0, 289, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Melrose Middle,01780305, 60.2, 98.3, 299, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Roosevelt,01780035, 31.0, 100.0, 120, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Winthrop,01780050, 23.8, 100.0, 109, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Henry P Clough,07100179, 29.3, 100.0, 146, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Memorial School,07100001, 30.6, 96.7, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 57.1, 100.0, 242, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 47.4, 96.6, 335, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Comprehensive Grammar School,01810050, 78.0, 98.7, 374, 99.5, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Donald P Timony Grammar,01810060, 93.2, 100.0, 402, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Marsh Grammar School,01810030, 84.5, 100.0, 421, 96.2, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Methuen High,01810505, 143.7, 98.5, 658, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Tenney Grammar School,01810055, 91.5, 100.0, 396, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 46.6, 100.0, 270, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - John T. Nichols Middle,01820305, 53.4, 100.0, 256, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 47.5, 100.0, 240, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 20.0, 100.0, 90, 100.0, 6.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Middleborough High,01820505, 62.8, 100.0, 333, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Middleton - Fuller Meadow,01840003, 23.4, 100.0, 89, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleton - Howe-Manning,01840005, 38.7, 100.0, 154, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Brookside,01850065, 42.1, 100.0, 162, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Memorial,01850010, 37.1, 100.0, 154, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Milford High,01850505, 85.6, 100.0, 350, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 25, 100.0, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Stacy Middle,01850305, 78.1, 100.0, 360, 98.6, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Woodland,01850090, 79.0, 98.7, 350, 97.7, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Elmwood Street,01860017, 37.5, 100.0, 126, 97.6, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Millbury Junior/Senior High,01860505, 61.7, 100.0, 296, 99.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 27.6, 100.0, 145, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Clyde F Brown,01870005, 37.1, 100.0, 184, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Millis High School,01870505, 26.3, 100.0, 139, 99.3, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Millis Middle,01870020, 31.1, 95.8, 158, 94.3, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Charles S Pierce Middle,01890410, 68.1, 100.0, 364, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Collicot,01890005, 39.1, 100.0, 208, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Cunningham School,01890007, 21.6, 100.0, 151, 100.0, 23.4 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Glover,01890010, 26.1, 100.0, 183, 97.3, 22.6 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Milton High,01890505, 66.9, 100.0, 372, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Tucker,01890020, 25.4, 100.0, 137, 96.4, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 72.5, 98.6, 231, 99.1, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 16.4, 99.4, 87, 94.3, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Colrain Central,07170010, 11.1, 100.0, 53, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Heath Elementary,07170015, 6.5, 93.8, 29, 100.0, 4.5 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 28.4, 85.9, 274, 90.1, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Sanderson Academy,07170020, 9.4, 100.0, 46, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 22.7, 96.3, 131, 82.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 46.5, 100.0, 244, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.3, 96.6, 283, 97.5, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 43.9, 100.0, 215, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Granite Valley Middle,01910310, 29.0, 100.0, 120, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Monson High School,01910505, 26.0, 88.4, 98, 83.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Quarry Hill Community School,01910025, 31.0, 100.0, 121, 94.2, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 112.0, 100.0, 322, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 44.6, 100.0, 210, 98.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 103.1, 66.0, 612, 89.2, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Nahant - Johnson,01960010, 11.0, 100.0, 50, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Cyrus Peirce,01970010, 31.9, 92.5, 165, 86.7, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Nantucket Elementary,01970005, 61.5, 96.7, 332, 88.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Nantucket High,01970505, 44.5, 86.8, 246, 80.1, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Baldwinville Elementary,07200005, 15.9, 100.0, 80, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Narragansett Middle,07200305, 26.3, 100.0, 108, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Narragansett Regional High,07200505, 27.2, 96.3, 139, 97.8, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Phillipston Memorial,07200003, 11.0, 90.9, 42, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Templeton Center,07200020, 10.9, 100.0, 56, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Center School,07250020, 40.9, 100.0, 210, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Florence Sawyer School,07250025, 58.6, 100.0, 248, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Hale,07250310, 23.3, 95.7, 97, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Luther Burbank Middle School,07250305, 23.9, 100.0, 87, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 35.7, 100.0, 152, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Nashoba Regional,07250505, 79.5, 99.4, 457, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 63.1, 98.4, 207, 97.1, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Bennett-Hemenway,01980005, 39.2, 100.0, 209, 97.6, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Brown,01980010, 34.1, 100.0, 176, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Natick - J F Kennedy Middle School,01980305, 51.0, 100.0, 237, 99.2, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Johnson,01980031, 20.0, 98.0, 77, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Lilja Elementary,01980035, 26.5, 100.0, 140, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Memorial,01980043, 25.5, 97.6, 147, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Natick High,01980505, 117.0, 99.1," 1,009", 97.9, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Wilson Middle,01980310, 73.8, 98.6, 282, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Nauset - Nauset Regional High,06600505, 81.7, 99.0, 408, 99.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Nauset - Nauset Regional Middle,06600305, 55.6, 100.0, 209, 100.0, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Broadmeadow,01990005, 34.0, 100.0, 175, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Needham - High Rock School,01990410, 37.8, 97.9, 170, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Hillside Elementary,01990035, 31.7, 100.0, 156, 96.8, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Needham - John Eliot,01990020, 23.7, 100.0, 112, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Needham High,01990505, 121.6, 99.5, 505, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Newman Elementary,01990050, 50.8, 98.0, 218, 97.7, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Pollard Middle,01990405, 71.7, 98.6, 367, 98.9, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Needham - William Mitchell,01990040, 30.5, 100.0, 164, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 50.1, 61.3, 93, 100.0, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Abraham Lincoln,02010095, 37.2, 100.0, 222, 92.8, 21.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Alfred J Gomes,02010063, 39.9, 89.9, 176, 92.6, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Betsey B Winslow,02010140, 16.9, 98.6, 80, 100.0, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Carlos Pacheco,02010105, 27.0, 100.0, 106, 96.2, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Casimir Pulaski,02010123, 48.0, 95.8, 289, 91.7, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Charles S Ashley,02010010, 20.9, 100.0, 102, 96.1, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 18.1, 97.1, 78, 97.4, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Ellen R Hathaway,02010075, 19.9, 88.4, 107, 81.3, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Elwyn G Campbell,02010020, 21.4, 100.0, 102, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Hayden/McFadden,02010078, 51.2, 82.3, 288, 71.5, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - James B Congdon,02010040, 25.2, 97.2, 108, 96.3, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Jireh Swift,02010130, 14.0, 100.0, 55, 70.9, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John Avery Parker,02010115, 21.1, 95.2, 82, 80.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John B Devalles,02010050, 22.4, 92.0, 138, 97.1, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John Hannigan,02010070, 23.0, 97.7, 86, 97.7, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Keith Middle School,02010405, 67.6, 88.1, 248, 76.2, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - New Bedford High,02010505, 165.7, 90.9, 750, 91.9, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Normandin Middle School,02010410, 82.9, 97.6, 376, 87.2, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 19.8, 94.9, 82, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Roosevelt Middle School,02010415, 65.1, 92.3, 274, 84.3, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 50.3, 87.7, 294, 90.8, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Thomas R Rodman,02010125, 13.9, 96.5, 66, 93.9, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Trinity Day Academy,02010510, 9.9, 70.7, 63, 69.8, 6.4 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 15.5, 70.9, 123, 64.2, 7.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - William H Taylor,02010135, 16.9, 97.2, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 22.1, 69.2, 81, 18.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,New Salem-Wendell - Swift River,07280015, 11.9, 100.0, 23, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 26.8, 100.0, 101, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 52.4, 100.0, 257, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Newburyport High,02040505, 64.1, 100.0, 531, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Rupert A Nock Middle,02040305, 41.6, 100.0, 233, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Newton - A E Angier,02070005, 35.5, 100.0, 134, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Bigelow Middle,02070305, 50.2, 99.0, 230, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Bowen,02070015, 35.4, 100.0, 124, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Newton - C C Burr,02070020, 31.0, 96.8, 122, 84.4, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Cabot,02070025, 32.4, 96.9, 128, 96.9, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Charles E Brown Middle,02070310, 67.8, 99.7, 272, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Countryside,02070040, 40.4, 97.5, 140, 97.1, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Newton - F A Day Middle,02070315, 83.1, 97.6, 353, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Franklin,02070055, 40.2, 92.5, 139, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Horace Mann,02070075, 34.1, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Newton - John Ward,02070120, 22.5, 100.0, 94, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Lincoln-Eliot,02070070, 32.9, 100.0, 114, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Mason-Rice,02070080, 32.8, 100.0, 140, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Memorial Spaulding,02070105, 35.2, 100.0, 134, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton Early Childhood Center,02070108, 16.4, 100.0, 46, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton North High,02070505, 183.1, 98.6, 741, 97.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton South High,02070510, 150.0, 99.8, 881, 99.8, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Oak Hill Middle,02070320, 55.7, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Peirce,02070100, 22.5, 100.0, 96, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Underwood,02070115, 26.3, 100.0, 96, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Williams,02070125, 22.1, 100.0, 90, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Zervas,02070130, 26.8, 100.0, 108, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk - Freeman-Kennedy School,02080005, 36.3, 100.0, 155, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk - H Olive Day,02080015, 32.6, 100.0, 145, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 52.2, 98.5, 130, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Brayton,02090035, 29.2, 100.0, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Colegrove Park Elementary,02090008, 24.4, 100.0, 108, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Drury High,02090505, 39.8, 98.5, 150, 98.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Greylock,02090015, 25.6, 100.0, 112, 96.4, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Annie L Sargent School,02110018, 34.2, 100.0, 155, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Atkinson,02110001, 34.8, 97.1, 156, 98.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Franklin,02110010, 29.7, 100.0, 141, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Kittredge,02110015, 16.7, 100.0, 80, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - North Andover High,02110505, 87.3, 100.0, 862, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - North Andover Middle,02110305, 74.3, 100.0, 502, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Thomson,02110020, 22.0, 100.0, 99, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Amvet Boulevard,02120007, 24.3, 100.0, 135, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Community,02120030, 29.7, 100.0, 129, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Falls,02120010, 18.7, 100.0, 100, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 37.4, 100.0, 185, 97.3, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleboro High,02120505, 78.4, 100.0, 416, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 17, 100.0, 19.4 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleborough Middle,02120305, 73.7, 100.0, 385, 99.5, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Roosevelt Avenue,02120015, 17.2, 100.0, 88, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,North Brookfield - North Brookfield Elementary,02150015, 20.8, 100.0, 99, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,North Brookfield - North Brookfield High,02150505, 21.4, 100.0, 109, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Ashby Elementary,07350010, 20.6, 100.0, 70, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Hawthorne Brook,07350030, 43.0, 100.0, 194, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Nissitissit Middle School,07350310, 46.9, 100.0, 178, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - North Middlesex Regional,07350505, 56.9, 100.0, 312, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, .1, 100.0, 0, 0.0, 80.0 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Spaulding Memorial,07350005, 34.9, 98.9, 140, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 4.5, 100.0, 13, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Varnum Brook,07350035, 44.6, 100.0, 202, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - E Ethel Little School,02170003, 23.1, 100.0, 174, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - J Turner Hood,02170010, 25.5, 100.0, 210, 96.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - L D Batchelder,02170005, 30.3, 100.0, 180, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - North Reading High,02170505, 70.6, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - North Reading Middle,02170305, 47.0, 100.0, 170, 97.1, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Bridge Street,02100005, 26.9, 100.0, 79, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Jackson Street,02100020, 28.7, 100.0, 99, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - John F Kennedy Middle School,02100410, 62.7, 100.0, 299, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Leeds,02100025, 26.7, 100.0, 99, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Northampton High,02100505, 56.8, 99.1, 277, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 21.8, 100.0, 70, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 50.1, 92.0, 133, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 107.4, 100.0, 521, 99.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Fannie E Proctor,02130015, 22.6, 100.0, 92, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Lincoln Street,02130003, 21.0, 100.0, 92, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Marguerite E Peaslee,02130014, 21.0, 100.0, 103, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Marion E Zeh,02130020, 21.2, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Robert E. Melican Middle School,02130305, 55.8, 100.0, 273, 98.2, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge Elementary,02140005, 28.0, 100.0, 132, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge High,02140505, 48.6, 100.0, 264, 99.6, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge Middle,02140305, 49.9, 100.0, 286, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 104, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 111.9, 97.9, 243, 99.6, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.7, 93.6, 130, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 128, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Norton - J C Solmonese,02180015, 33.2, 100.0, 148, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Norton - L G Nourse Elementary,02180010, 22.2, 100.0, 95, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Norton High,02180505, 47.1, 100.0, 231, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Norton Middle,02180305, 46.7, 100.0, 295, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Grace Farrar Cole,02190005, 34.8, 100.0, 170, 97.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Norwell High,02190505, 49.9, 100.0, 247, 99.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Norwell Middle School,02190405, 44.0, 100.0, 264, 96.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - William G Vinal,02190020, 34.8, 100.0, 170, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Balch,02200005, 26.9, 100.0, 112, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Charles J Prescott,02200025, 20.6, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Cornelius M Callahan,02200010, 19.1, 100.0, 73, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 65.3, 100.0, 253, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - F A Cleveland,02200015, 27.0, 100.0, 121, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - George F. Willett,02200075, 23.5, 100.0, 93, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - John P Oldham,02200020, 20.5, 100.0, 84, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Norwood High,02200505, 72.0, 100.0, 423, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 45.4, 99.6, 184, 99.5, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 54.1, 96.3, 104, 89.4, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Old Rochester - Old Rochester Regional High,07400505, 54.6, 100.0, 262, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 165, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Orange - Dexter Park,02230010, 26.2, 100.0, 109, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Orange - Fisher Hill,02230015, 20.7, 95.2, 116, 86.2, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Orleans - Orleans Elementary,02240005, 22.5, 100.0, 91, 87.9, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Alfred M Chaffee,02260010, 22.1, 100.0, 103, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Clara Barton,02260005, 23.4, 100.0, 127, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Oxford High,02260505, 43.1, 99.8, 191, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Oxford Middle,02260405, 30.1, 100.0, 116, 95.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 7.1, 100.0, 25, 100.0, 3.5 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Converse Middle,02270305, 19.0, 100.0, 95, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Old Mill Pond,02270008, 55.1, 100.0, 401, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Palmer High,02270505, 42.3, 99.5, 236, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 76.8, 97.4, 207, 99.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.5, 52.6, 108, 91.7, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Captain Samuel Brown,02290005, 33.4, 100.0, 151, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Center,02290015, 28.7, 100.0, 123, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - J Henry Higgins Middle,02290305, 94.0, 100.0, 606, 96.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - John E Burke,02290007, 20.2, 100.0, 93, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - John E. McCarthy,02290016, 24.5, 100.0, 111, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 127.1, 97.6, 600, 99.3, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - South Memorial,02290035, 27.4, 96.4, 126, 96.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Thomas Carroll,02290010, 42.5, 100.0, 186, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - West Memorial,02290045, 20.0, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - William A Welch Sr,02290027, 24.6, 100.0, 102, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Pelham - Pelham Elementary,02300005, 11.7, 100.0, 57, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Bryantville Elementary,02310003, 34.6, 100.0, 166, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Hobomock Elementary,02310010, 31.6, 100.0, 111, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - North Pembroke Elementary,02310015, 38.5, 100.0, 175, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Pembroke Community Middle School,02310305, 33.6, 100.0, 205, 99.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Pembroke High School,02310505, 66.5, 97.0, 328, 99.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 15.1, 100.0, 52, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Dr John C Page School,07450015, 27.3, 100.0, 116, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Elmer S Bagnall,07450005, 40.5, 100.0, 174, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Helen R Donaghue School,07450010, 21.8, 100.0, 81, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Pentucket Regional Middle,07450405, 40.1, 100.0, 164, 99.4, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 58.6, 100.0, 342, 99.7, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Petersham - Petersham Center,02340005, 11.5, 91.3, 47, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 11.9, 50.4, 72, 33.3, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 14.2, 42.3, 59, 45.8, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 50.6, 71.7, 166, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 32.2, 59.9, 116, 100.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 15.1, 100.0, 61, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Northfield Elementary,07500008, 16.9, 100.0, 73, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 5.5, 100.0, 27, 100.0, 7.1 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 42.2, 100.0, 250, 99.2, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Warwick Community School,07500009, 5.7, 100.0, 23, 100.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 60.7, 69.9, 188, 100.0, 7.8 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 40.6, 74.7, 311, 88.7, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Allendale,02360010, 22.0, 95.4, 163, 96.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Crosby,02360065, 33.0, 93.9, 181, 97.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Egremont,02360035, 29.0, 100.0, 197, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - John T Reid Middle,02360305, 54.4, 100.0, 304, 97.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Morningside Community School,02360055, 33.0, 96.9, 209, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Pittsfield High,02360505, 84.7, 94.5, 379, 86.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 15.0, 100.0, 98, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Silvio O Conte Community,02360105, 30.0, 96.7, 169, 97.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Stearns,02360090, 15.6, 93.6, 104, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Taconic High,02360510, 75.0, 98.7, 385, 82.1, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 53.5, 100.0, 292, 88.7, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Williams,02360100, 21.4, 100.0, 145, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Plainville - Anna Ware Jackson,02380010, 25.3, 98.9, 170, 88.2, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 18.8, 98.9, 120, 87.5, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Cold Spring,02390005, 21.7, 100.0, 121, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Federal Furnace School,02390011, 36.8, 100.0, 298, 93.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Hedge,02390010, 20.6, 97.1, 110, 89.1, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Indian Brook,02390012, 43.1, 99.1, 248, 96.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Manomet Elementary,02390015, 26.3, 96.2, 145, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 44.2, 100.0, 245, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 81.1, 100.0, 369, 95.1, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 31, 90.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth North High,02390505, 103.4, 100.0, 565, 93.3, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth South High,02390515, 108.1, 99.0, 419, 92.6, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth South Middle,02390305, 67.0, 100.0, 346, 91.9, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - South Elementary,02390046, 43.5, 97.7, 274, 94.2, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - West Elementary,02390047, 33.8, 100.0, 281, 82.6, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Plympton - Dennett Elementary,02400010, 17.4, 100.0, 84, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 109.3, 77.4, 367, 96.7, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Provincetown - Provincetown Schools,02420020, 18.6, 100.0, 81, 88.9, 6.9 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Hardwick Elementary,07530005, 12.2, 100.0, 67, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Hubbardston Center,07530010, 16.9, 100.0, 94, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - IB School of Quabbin,07530515, .8, 100.0, 9, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - New Braintree Grade,07530020, 5.6, 100.0, 29, 100.0, 19.3 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Oakham Center,07530025, 9.7, 100.0, 48, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Quabbin Regional High School,07530505, 46.5, 95.7, 366, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 24.6, 100.0, 207, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Ruggles Lane,07530030, 23.2, 100.0, 117, 95.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 30.1, 95.8, 130, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 16.6, 100.0, 92, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Warren Elementary,07780005, 34.5, 84.1, 161, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 18.0, 94.5, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.0, 100.0, 32, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Atherton Hough,02430040, 22.5, 100.0, 146, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Atlantic Middle,02430305, 33.3, 100.0, 178, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 24.1, 100.0, 151, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Broad Meadows Middle,02430310, 28.3, 100.0, 159, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Central Middle,02430315, 42.5, 100.0, 235, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 22.5, 100.0, 141, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 44.4, 100.0, 232, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Francis W Parker,02430075, 25.2, 100.0, 144, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 37.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Merrymount,02430060, 23.0, 100.0, 148, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Montclair,02430065, 28.8, 100.0, 176, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - North Quincy High,02430510, 89.4, 97.8, 400, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Point Webster Middle,02430325, 29.3, 100.0, 169, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Quincy High,02430505, 115.6, 99.6, 534, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Reay E Sterling Middle,02430320, 29.9, 100.0, 152, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Snug Harbor Community School,02430090, 33.2, 100.0, 239, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Squantum,02430095, 25.4, 100.0, 202, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Wollaston School,02430110, 24.6, 100.0, 143, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 58.5, 98.3, 456, 93.6, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - The Gateway to College,07550525, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 25.1, 100.0, 78, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - J F Kennedy Elementary,02440018, 43.5, 100.0, 174, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Margaret L Donovan,02440015, 33.2, 100.0, 108, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Martin E Young Elementary,02440040, 28.6, 100.0, 88, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Randolph Community Middle,02440410, 57.7, 100.0, 248, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Randolph High,02440505, 57.4, 98.3, 263, 98.5, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Alice M Barrows,02460002, 22.5, 100.0, 113, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Arthur W Coolidge Middle,02460305, 38.0, 100.0, 145, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Birch Meadow,02460005, 31.5, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Reading - J Warren Killam,02460017, 27.5, 100.0, 135, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Joshua Eaton,02460010, 29.0, 100.0, 139, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Reading - RISE PreSchool,02460001, 7.8, 100.0, 40, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Reading Memorial High,02460505, 85.3, 100.0, 387, 99.7, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Walter S Parker Middle,02460310, 46.8, 100.0, 182, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Wood End Elementary School,02460020, 22.2, 100.0, 103, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - A. C. Whelan Elementary School,02480003, 51.0, 100.0, 403, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 404, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 29.0, 96.6, 258, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Garfield Elementary School,02480056, 56.5, 100.0, 468, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Garfield Middle School,02480057, 43.5, 100.0, 223, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Paul Revere,02480050, 35.0, 100.0, 297, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Revere High,02480505, 124.1, 98.4, 651, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Rumney Marsh Academy,02480014, 47.5, 100.0, 183, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Seacoast School,02480520, 13.2, 100.0, 102, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 43.1, 100.0, 432, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Susan B. Anthony Middle School,02480305, 45.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Richmond - Richmond Consolidated,02490005, 18.8, 98.4, 93, 92.5, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 52.1, 65.5, 271, 99.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 18.4, 94.4, 112, 99.1, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Rochester - Rochester Memorial,02500005, 34.8, 100.0, 150, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Jefferson Elementary School,02510060, 19.5, 100.0, 95, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - John W Rogers Middle,02510305, 48.7, 100.0, 273, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Memorial Park,02510020, 16.3, 100.0, 92, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - R Stewart Esten,02510025, 17.4, 100.0, 99, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Rockland Senior High,02510505, 51.3, 100.0, 223, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport Elementary,02520005, 29.7, 100.0, 114, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport High,02520510, 30.7, 100.0, 148, 98.0, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport Middle,02520305, 24.8, 100.0, 131, 96.9, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Rowe - Rowe Elementary,02530005, 7.0, 100.0, 31, 74.2, 8.4 to 1 +NA,NA,a-exp-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 111.2, 46.0, 277, 87.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 65.8, 90.7, 416, 99.3, 24.0 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Bates,02580003, 25.0, 100.0, 126, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Carlton,02580015, 24.7, 100.0, 95, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Collins Middle,02580305, 53.4, 100.0, 211, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Horace Mann Laboratory,02580030, 26.2, 100.0, 111, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Nathaniel Bowditch,02580025, 48.6, 91.8, 213, 81.2, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Salem - New Liberty Innovation School,02580510, 4.6, 100.0, 11, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem Early Childhood,02580001, 8.0, 100.0, 31, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem High,02580505, 104.9, 95.4, 339, 97.1, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem Prep High School,02580515, 5.4, 100.0, 137, 94.2, 2.4 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Saltonstall School,02580050, 34.9, 97.1, 231, 98.3, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Witchcraft Heights,02580070, 38.0, 100.0, 174, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 43.1, 75.1, 147, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Forestdale School,02610002, 55.7, 99.5, 238, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Oak Ridge,02610025, 63.4, 100.0, 381, 95.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Sandwich High,02610505, 61.3, 97.3, 250, 98.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Sandwich STEM Academy,02610305, 34.6, 99.0, 173, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Ballard School,02620001, 5.5, 100.0, 48, 100.0, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Belmonte Saugus Middle,02620305, 57.1, 100.0, 276, 99.6, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Douglas Waybright,02620067, 15.8, 100.0, 81, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Lynnhurst,02620040, 18.6, 100.0, 95, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Oaklandvale,02620050, 15.2, 100.0, 84, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Saugus High,02620505, 53.7, 100.0, 262, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Veterans Memorial,02620065, 41.1, 100.0, 266, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Savoy - Emma L Miller Elementary School,02630010, 4.7, 100.0, 23, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Cushing Elementary,02640007, 32.2, 100.0, 138, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Gates Intermediate School,02640305, 47.8, 100.0, 191, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Hatherly Elementary,02640010, 29.1, 100.0, 119, 93.3, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Jenkins Elementary School,02640015, 36.7, 100.0, 166, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Scituate High School,02640505, 65.1, 99.4, 289, 97.2, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Wampatuck Elementary,02640020, 34.0, 100.0, 155, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 41.7, 100.0, 165, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - George R Martin,02650007, 33.5, 100.0, 139, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Mildred Aitken School,02650015, 29.0, 100.0, 116, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Seekonk High,02650505, 46.3, 99.6, 190, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 49.6, 99.5, 173, 94.8, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Sharon - Cottage Street,02660005,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - East Elementary,02660010,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Heights Elementary,02660015,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Sharon High,02660505,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Sharon Middle,02660305,"","","","","" +NA,NA,a-exp-i3,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.2, 100.0, 314, 99.4, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Sherborn - Pine Hill,02690010, 31.8, 99.8, 174, 98.3, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Beal School,02710005, 17.0, 94.1, 84, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Calvin Coolidge,02710015, 22.1, 100.0, 135, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Floral Street School,02710020, 35.2, 100.0, 236, 100.0, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Oak Middle School,02710030, 62.6, 100.0, 313, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Parker Road Preschool,02710040, 9.3, 100.0, 24, 100.0, 25.0 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Sherwood Middle School,02710305, 66.7, 97.2, 408, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 113.1, 99.9, 599, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Spring Street,02710035, 19.1, 100.0, 121, 100.0, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Walter J Paton,02710025, 19.5, 94.9, 123, 100.0, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Shutesbury - Shutesbury Elementary,02720005, 15.7, 100.0, 45, 100.0, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 34.8, 100.0, 181, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Silver Lake - Silver Lake Regional High,07600505, 89.3, 98.9, 344, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 42.9, 100.0, 255, 97.6, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.1, 93.8, 261, 91.6, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - Chace Street,02730005, 26.0, 100.0, 131, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - North Elementary,02730008, 30.3, 100.0, 191, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - Somerset Middle School,02730305, 48.6, 100.0, 227, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - South,02730015, 18.2, 100.0, 94, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 83.5, 100.0, 419, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.4, 100.0, 217, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Arthur D Healey,02740075, 41.8, 100.0, 200, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Benjamin G Brown,02740015, 15.9, 100.0, 88, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Capuano Early Childhood Center,02740005, 26.9, 100.0, 133, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - E Somerville Community,02740111, 54.8, 100.0, 249, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Full Circle High School,02740510, 12.3, 100.0, 8, 100.0, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - John F Kennedy,02740083, 39.0, 100.0, 198, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Next Wave Junior High,02740410, 6.4, 100.0, 3, 100.0, 2.5 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Somerville High,02740505, 123.5, 98.4, 487, 99.6, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - West Somerville Neighborhood,02740115, 24.9, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Winter Hill Community,02740120, 40.5, 100.0, 160, 96.9, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 44.6, 100.0, 207, 98.1, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Mosier,02780020, 25.3, 95.9, 141, 85.1, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Plains Elementary,02780015, 19.0, 100.0, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - South Hadley High,02780505, 45.5, 98.1, 213, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 75.0, 98.7, 208, 98.1, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 64.6, 90.5, 298, 95.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 61.4, 96.7, 144, 99.3, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Southampton - William E Norris,02750005, 35.5, 100.0, 155, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 21.2, 100.0, 97, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Margaret A Neary,02760020, 24.6, 100.0, 109, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Mary E Finn School,02760008, 25.9, 100.0, 124, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - P Brent Trottier,02760305, 40.4, 100.0, 219, 99.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Charlton Street,02770005, 35.0, 97.1, 154, 98.1, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Eastford Road,02770010, 18.0, 100.0, 97, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Southbridge High School,02770515, 44.0, 95.5, 192, 80.2, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Southbridge Middle School,02770315, 45.0, 97.8, 202, 93.6, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - West Street,02770020, 33.5, 100.0, 168, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 116.0, 96.9, 379, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 36.3, 100.0, 174, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - New Marlborough Central,07650018, 6.8, 100.0, 69, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - South Egremont,07650030, 2.3, 100.0, 19, 100.0, 5.6 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - Undermountain,07650035, 29.7, 100.0, 170, 98.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 109.9, 100.0, 326, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 5.2, 100.0, 45, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 25.2, 100.0, 149, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 57.3, 98.3, 328, 93.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 13.0, 100.0, 131, 100.0, 26.0 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 33.2, 100.0, 181, 98.9, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 16.9, 100.0, 86, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 31.4, 100.0, 221, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 168, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.4, 96.8, 171, 96.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Alice B Beal Elementary,02810175, 19.6, 100.0, 157, 98.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Arthur T Talmadge,02810165, 22.7, 95.7, 135, 77.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Balliet Middle School,02810360, 11.4, 91.3, 41, 85.4, 4.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Brightwood,02810025, 25.9, 96.0, 156, 93.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 23.3, 84.7, 125, 67.2, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 23.8, 71.7, 132, 47.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 20.5, 74.9, 165, 55.2, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Conservatory of the Arts,02810475, 28.3, 94.6, 167, 70.1, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Daniel B Brunton,02810035, 38.2, 97.4, 212, 99.5, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Early Childhood Education Center,02810001, 15.0, 86.7, 23, 91.3, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Edward P. Boland School,02810010, 56.0, 98.2, 309, 88.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Elias Brookings,02810030, 30.5, 93.2, 162, 86.4, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Forest Park Middle,02810325, 55.0, 96.3, 336, 83.3, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Frank H Freedman,02810075, 20.1, 100.0, 140, 90.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Frederick Harris,02810080, 51.1, 96.1, 275, 93.5, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0, 2, 0.0, 900.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0, 2, 0.0,###### to 1 +NA,NA,a-exp-i3,2016-17,Springfield - German Gerena Community School,02810195, 55.3, 98.2, 404, 89.6, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Glenwood,02810065, 23.1, 100.0, 146, 95.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Glickman Elementary,02810068, 29.1, 89.8, 191, 88.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - High School Of Commerce,02810510, 94.4, 86.2, 497, 79.9, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Hiram L Dorman,02810050, 25.4, 100.0, 145, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Homer Street,02810085, 33.2, 97.0, 190, 95.3, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Indian Orchard Elementary,02810100, 51.8, 88.5, 287, 91.6, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - John F Kennedy Middle,02810328, 39.0, 76.7, 87, 58.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - John J Duggan Middle,02810320, 57.5, 92.7, 505, 73.7, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Kensington International School,02810110, 28.5, 100.0, 168, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Liberty,02810115, 25.2, 92.2, 124, 91.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Liberty Preparatory Academy,02810560, 3.4, 100.0, 12, 83.3, 3.8 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Lincoln,02810120, 33.0, 94.0, 168, 92.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - M Marcus Kiley Middle,02810330, 55.4, 85.6, 428, 83.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Margaret C Ells,02810060, 19.2, 84.4, 71, 94.4, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 24.4, 100.0, 116, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 123, 91.1, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary M Walsh,02810155, 25.9, 96.1, 146, 92.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary O Pottenger,02810145, 33.2, 100.0, 179, 94.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Milton Bradley School,02810023, 43.1, 100.0, 263, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Rebecca M Johnson,02810055, 58.2, 89.8, 348, 82.8, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 138.3, 93.5, 749, 76.4, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - STEM Middle Academy,02810350, 18.4, 83.1, 96, 68.8, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Samuel Bowles,02810020, 29.1, 93.1, 168, 94.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - South End Middle School,02810355, 20.0, 92.8, 80, 82.5, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Central High,02810500, 145.8, 94.5, 736, 91.2, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield High School,02810570, 11.5, 91.1, 124, 73.4, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 86.4, 581, 72.8, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 11.1, 71.8, 121, 65.3, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day High School,02810550, 22.3, 68.3, 101, 64.4, 5.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day Middle School,02810345, 14.4, 86.2, 82, 90.2, 3.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Sumner Avenue,02810160, 42.4, 97.5, 285, 87.4, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 97.7, 252, 93.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Thomas M Balliet,02810015, 22.2, 100.0, 128, 91.4, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Van Sickle Academy,02810480, 25.2, 63.8, 114, 43.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 25.2, 87.9, 233, 75.5, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Warner,02810180, 23.2, 91.8, 142, 88.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Washington,02810185, 40.4, 95.1, 195, 94.4, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - White Street,02810190, 27.6, 100.0, 168, 89.9, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - William N. DeBerry,02810045, 26.3, 88.5, 128, 79.7, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 13.0, 61.5, 31, 51.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Colonial Park,02840005, 19.8, 100.0, 82, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Robin Hood,02840025, 24.2, 100.0, 102, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - South,02840030, 22.1, 100.0, 96, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Stoneham Central Middle School,02840405, 63.4, 100.0, 308, 99.7, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Stoneham High,02840505, 56.2, 100.0, 289, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 13, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Helen Hansen Elementary,02850010, 22.3, 100.0, 123, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Joseph H Gibbons,02850025, 27.6, 100.0, 142, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 27.4, 100.0, 153, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - O'Donnell Middle School,02850405, 68.8, 100.0, 341, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - South Elementary,02850015, 20.8, 100.0, 93, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Stoughton High,02850505, 92.7, 100.0, 459, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - West Elementary,02850020, 33.1, 100.0, 123, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Sturbridge - Burgess Elementary,02870005, 67.1, 100.0, 278, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 89.2, 42.6, 411, 100.0, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 77.5, 100.0, 303, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - General John Nixon Elementary,02880025, 26.1, 100.0, 140, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Israel Loring School,02880015, 33.9, 100.0, 182, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 148, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Peter Noyes,02880030, 40.3, 100.0, 196, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Sunderland - Sunderland Elementary,02890005, 21.3, 99.1, 126, 99.2, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Early Learning,02900003, 20.0, 100.0, 58, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Elementary,02900005, 21.7, 100.0, 82, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton High School,02900510, 32.7, 100.0, 153, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Middle School,02900305, 23.8, 95.4, 121, 98.3, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Clarke,02910005, 18.9, 100.0, 84, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Hadley,02910010, 24.7, 100.0, 124, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Stanley,02910020, 23.4, 100.0, 90, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Swampscott High,02910505, 62.0, 98.4, 275, 96.7, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Swampscott Middle,02910305, 64.3, 98.4, 402, 98.8, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Elizabeth S Brown,02920006, 21.2, 100.0, 203, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Gardner,02920015, 16.9, 100.0, 88, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph Case High,02920505, 48.8, 100.0, 192, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph Case Jr High,02920305, 40.1, 100.0, 211, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph G Luther,02920020, 14.6, 100.0, 195, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 16.2, 100.0, 109, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 37.0, 100.0, 424, 97.9, 30.2 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 45.1, 100.0, 199, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 77.4, 100.0, 663, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 11.8, 100.0, 1, 100.0, 42.2 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Benjamin Friedman Middle,02930315, 48.5, 100.0, 278, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - East Taunton Elementary,02930010, 43.2, 100.0, 224, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Edmund Hatch Bennett,02930007, 23.1, 100.0, 102, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 11.0, 100.0, 33, 100.0, 29.9 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 218, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - H H Galligan,02930057, 25.4, 100.0, 88, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Hopewell,02930035, 24.6, 100.0, 102, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - John F Parker Middle,02930305, 34.6, 100.0, 125, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Joseph C Chamberlain,02930008, 35.0, 100.0, 201, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Joseph H Martin,02930042, 40.1, 100.0, 248, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Mulcahey Elementary School,02930015, 32.9, 100.0, 149, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Taunton Alternative High School,02930525, 6.2, 100.0, 124, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Taunton High,02930505, 80.1, 99.0, 715, 99.2, 31.2 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Heath-Brook,02950010, 22.5, 100.0, 110, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - John F. Ryan,02950023, 46.8, 100.0, 194, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - John W. Wynn Middle,02950305, 49.4, 98.7, 194, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - L F Dewing,02950001, 35.3, 100.0, 181, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Louise Davy Trahan,02950025, 18.2, 100.0, 96, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - North Street,02950020, 19.1, 100.0, 104, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 67.2, 100.0, 270, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Tisbury - Tisbury Elementary,02960005, 35.5, 100.0, 150, 100.0, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Topsfield - Proctor Elementary,02980005, 21.3, 100.0, 104, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Topsfield - Steward Elementary,02980010, 30.4, 100.0, 161, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 85.9, 96.5, 237, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Newbury Elementary,07730020, 35.2, 100.0, 136, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Pine Grove,07730025, 34.3, 100.0, 139, 97.1, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Salisbury Elementary,07730015, 42.6, 100.0, 165, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Triton Regional High School,07730505, 61.3, 96.7, 281, 99.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Triton Regional Middle School,07730405, 31.1, 100.0, 169, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Truro - Truro Central,03000005, 15.9, 100.0, 73, 100.0, 7.3 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 56.2, 100.0, 318, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough High School,03010505, 37.6, 100.0, 337, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 34.0, 100.0, 193, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 38.6, 79.2, 100, 79.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 62.8, 85.7, 158, 81.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 5.6, 100.0, 16, 75.0, 7.8 to 1 +NA,NA,a-exp-i3,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 39.1, 99.5, 152, 98.7, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 68.9, 97.1, 121, 97.5, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Gateway to College,03040515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Uxbridge - McCloskey Middle School,03040015, 31.8, 100.0, 133, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Taft Early Learning Center,03040005, 33.9, 100.0, 134, 98.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Uxbridge High,03040505, 37.9, 100.0, 188, 97.3, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Whitin Elementary School,03040020, 27.3, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 27.5, 54.5, 72, 65.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Central Tree Middle,07750310, 27.9, 100.0, 176, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Chocksett Middle School,07750315, 28.4, 100.0, 170, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Davis Hill Elementary,07750018, 27.9, 100.0, 132, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Dawson,07750020, 30.9, 100.0, 168, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 40, 100.0, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Glenwood Elementary School,07750060, 26.9, 100.0, 113, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Houghton Elementary,07750027, 27.5, 100.0, 122, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Leroy E.Mayo,07750032, 28.9, 100.0, 148, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Mountview Middle,07750305, 45.3, 100.0, 274, 100.0, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 92, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Paxton Center,07750040, 32.6, 100.0, 186, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Thomas Prince,07750045, 23.0, 100.0, 139, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Wachusett Regional High,07750505, 145.1, 100.0, 678, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Dolbeare,03050005, 32.8, 100.0, 147, 96.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 45, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Galvin Middle School,03050310, 83.1, 100.0, 322, 98.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Greenwood,03050020, 15.0, 100.0, 70, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Wakefield Memorial High,03050505, 79.2, 100.0, 335, 99.7, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Walton,03050040, 12.0, 100.0, 63, 92.1, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Woodville School,03050015, 34.4, 100.0, 143, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Wales - Wales Elementary,03060005, 10.4, 100.0, 46, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Bird Middle,03070305, 37.1, 100.0, 138, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Boyden,03070010, 28.9, 100.0, 136, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 19, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 34.0, 100.0, 150, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Elm Street School,03070005, 31.2, 100.0, 142, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Fisher,03070015, 36.4, 100.0, 153, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Old Post Road,03070018, 32.5, 100.0, 142, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Walpole High,03070505, 78.3, 100.0, 345, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 36.3, 100.0, 185, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 36.7, 100.0, 200, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 38.9, 100.0, 195, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - John F Kennedy Middle,03080404, 56.7, 100.0, 297, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - John W. McDevitt Middle School,03080415, 56.2, 100.0, 240, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Northeast Elementary School,03080040, 44.0, 100.0, 248, 98.4, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 32.8, 100.0, 188, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.4, 100.0, 14, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Waltham Sr High,03080505, 127.8, 100.0, 514, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - William F. Stanley Elementary School,03080005, 46.3, 100.0, 223, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 28.4, 100.0, 132, 97.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Ware Junior/Senior High School,03090505, 37.8, 97.4, 164, 91.5, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Ware Middle School,03090305, 23.4, 100.0, 103, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - John William Decas,03100003, 45.6, 100.0, 210, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Minot Forest,03100017, 33.6, 100.0, 150, 98.7, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 2.3, 78.5, 35, 60.0, 26.2 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Middle,03100305, 52.7, 100.0, 255, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Senior High,03100505, 54.5, 99.1, 302, 97.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Cunniff,03140015, 27.6, 100.0, 109, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Hosmer,03140020, 51.9, 100.0, 220, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - James Russell Lowell,03140025, 36.8, 100.0, 145, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Watertown High,03140505, 64.9, 98.5, 250, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Watertown Middle,03140305, 50.9, 100.0, 245, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Claypit Hill School,03150005, 38.6, 100.0, 178, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Happy Hollow School,03150015, 27.9, 100.0, 133, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Loker School,03150020, 18.0, 100.0, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Wayland High School,03150505, 69.4, 96.6, 344, 98.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Wayland Middle School,03150305, 53.0, 100.0, 327, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Bartlett High School,03160505, 39.8, 97.5, 165, 97.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Park Avenue Elementary,03160015, 46.5, 100.0, 268, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Webster Middle School,03160315, 46.0, 97.8, 151, 98.7, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Ernest F Upham,03170050, 16.6, 100.0, 74, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Hunnewell,03170025, 16.2, 100.0, 90, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - John D Hardy,03170020, 23.1, 100.0, 118, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Joseph E Fiske,03170015, 32.1, 100.0, 157, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Katharine Lee Bates,03170005, 25.1, 100.0, 131, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Schofield,03170045, 23.4, 100.0, 135, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Sprague Elementary School,03170048, 24.2, 100.0, 138, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Wellesley Middle,03170305, 97.6, 100.0, 540, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Wellesley Sr High,03170505, 118.9, 99.8, 546, 99.6, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellfleet - Wellfleet Elementary,03180005, 17.0, 100.0, 52, 100.0, 6.6 to 1 +NA,NA,a-exp-i3,2016-17,West Boylston - Major Edwards Elementary,03220005, 33.4, 100.0, 148, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 32.1, 100.0, 232, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Howard School,03230305, 20.2, 100.0, 115, 89.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Rose L Macdonald,03230003, 15.7, 100.0, 124, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Spring Street School,03230005, 7.2, 100.0, 33, 75.8, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 45.5, 100.0, 254, 96.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - 21st Century Skills Academy,03320515, 3.9, 100.0, 18, 100.0, 3.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 18, 100.0, 20.0 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - John Ashley,03320005, 16.4, 100.0, 84, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - John R Fausey,03320010, 34.6, 100.0, 177, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Memorial,03320025, 17.3, 100.0, 80, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Mittineague,03320030, 15.2, 100.0, 55, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Philip G Coburn,03320007, 46.5, 100.0, 183, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Tatham,03320040, 16.3, 100.0, 74, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - West Springfield High,03320505, 92.9, 100.0, 548, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - West Springfield Middle,03320305, 71.6, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Annie E Fales,03210010, 24.9, 100.0, 90, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 36.0, 100.0, 113, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - J Harding Armstrong,03210005, 30.3, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Mill Pond School,03210045, 58.2, 98.3, 235, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 54.6, 100.0, 285, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Westborough High,03210505, 79.9, 100.0, 464, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 70, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 8.0, 100.0, 22, 100.0, 21.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Franklin Ave,03250015, 17.0, 100.0, 84, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Highland,03250025, 32.3, 100.0, 153, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Munger Hill,03250033, 28.1, 100.0, 138, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - North Middle School,03250305, 52.0, 100.0, 231, 74.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Paper Mill,03250036, 28.5, 100.0, 147, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Russell Elementary School,03250055, 14.0, 100.0, 70, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - South Middle School,03250310, 49.5, 100.0, 174, 84.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Southampton Road,03250040, 30.4, 100.0, 164, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Westfield High,03250505, 90.9, 100.0, 400, 92.8, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Westfield Technical Academy,03250605, 56.6, 96.5, 137, 71.5, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Abbot Elementary,03260004, 25.4, 100.0, 124, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Blanchard Middle,03260310, 49.1, 100.0, 235, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Col John Robinson,03260025, 17.3, 100.0, 76, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Day Elementary,03260007, 25.9, 100.0, 124, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 25.0, 100.0, 125, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Millennium Elementary,03260013, 6.5, 100.0, 16, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Nabnasset,03260015, 21.9, 100.0, 127, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Rita E. Miller Elementary School,03260055, 22.7, 100.0, 100, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Stony Brook School,03260330, 51.2, 100.0, 250, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Westford Academy,03260505, 118.9, 100.0, 560, 99.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Westhampton - Westhampton Elementary School,03270005, 12.4, 91.9, 43, 74.4, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Country,03300010, 23.7, 100.0, 122, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Field Elementary School,03300012, 24.8, 100.0, 129, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Weston High,03300505, 69.9, 99.6, 293, 97.3, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Weston Middle,03300305, 48.6, 99.5, 247, 97.2, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Woodland,03300015, 22.3, 97.4, 127, 85.8, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Alice A Macomber,03310015, 24.4, 100.0, 104, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Westport Elementary,03310030, 35.8, 98.0, 188, 98.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Westport Junior/Senior High School,03310515, 34.9, 100.0, 290, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Deerfield School,03350010, 15.9, 100.0, 78, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Downey,03350012, 19.9, 100.0, 81, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - E W Thurston Middle,03350305, 59.0, 100.0, 280, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Martha Jones,03350017, 19.1, 100.0, 86, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Paul Hanlon,03350015, 14.3, 100.0, 64, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Westwood High,03350505, 78.5, 98.8, 403, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - William E Sheehan,03350025, 25.1, 100.0, 112, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Abigail Adams Middle School,03360310, 67.7, 100.0, 383, 96.9, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Academy Avenue,03360005, 18.7, 100.0, 96, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Frederick C Murphy,03360050, 13.9, 100.0, 75, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 11.9, 100.0, 49, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Lawrence W Pingree,03360065, 13.7, 100.0, 67, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 72.2, 100.0, 436, 95.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Ralph Talbot,03360085, 16.0, 100.0, 83, 100.0, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Thomas V Nash,03360060, 10.3, 100.0, 51, 100.0, 22.5 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 21.2, 100.0, 106, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Wessagusset,03360110, 17.2, 100.0, 96, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Weymouth High School,03360505, 139.5, 100.0, 661, 96.1, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - William Seach,03360080, 20.1, 100.0, 86, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Whately - Whately Elementary,03370005, 11.3, 99.1, 75, 98.7, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 29.3, 100.0, 119, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Indian Head,07800035, 25.1, 100.0, 92, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - John H Duval,07800030, 27.9, 100.0, 134, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Louise A Conley,07800010, 33.5, 100.0, 152, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 27.1, 100.0, 103, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.8, 98.6, 298, 97.3, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Whitman Middle,07800310, 38.2, 100.0, 151, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.2, 97.4, 461, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 15.7, 100.0, 68, 79.4, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Williamstown - Williamstown Elementary,03410010, 38.2, 97.4, 175, 97.1, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Boutwell,03420005, 9.7, 100.0, 58, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - North Intermediate,03420060, 20.2, 100.0, 89, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Shawsheen Elementary,03420025, 31.0, 100.0, 125, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - West Intermediate,03420080, 21.1, 100.0, 91, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wildwood,03420015, 14.0, 100.0, 68, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wilmington High,03420505, 72.7, 100.0, 346, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wilmington Middle School,03420330, 72.2, 97.2, 282, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Woburn Street,03420020, 33.0, 100.0, 139, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Memorial,03430040, 20.0, 100.0, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock Academy for Success,03430405, .7, 100.0, 4, 100.0, 40.1 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock High School,03430515, 27.5, 100.0, 116, 99.1, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock Middle School,03430315, 25.6, 100.0, 108, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Toy Town Elementary,03430050, 21.0, 100.0, 102, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 7, 100.0, 27.7 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Ambrose Elementary,03440045, 37.3, 97.3, 236, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Lincoln Elementary,03440005, 31.6, 100.0, 225, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Lynch Elementary,03440020, 44.3, 100.0, 293, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - McCall Middle,03440305, 82.7, 98.1, 335, 97.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Muraco Elementary,03440040, 32.4, 100.0, 210, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 223, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Winchester High School,03440505, 90.2, 100.0, 472, 98.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 30.6, 100.0, 133, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 40.4, 100.0, 161, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Winthrop High School,03460505, 45.3, 100.0, 161, 98.1, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Winthrop Middle School,03460305, 34.8, 100.0, 274, 99.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Clyde Reeves,03470040, 30.0, 100.0, 185, 97.3, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 54.0, 100.0, 302, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Daniel P Hurld,03470020, 15.0, 100.0, 84, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Goodyear Elementary School,03470005, 25.1, 100.0, 126, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - John F Kennedy Middle School,03470405, 50.2, 100.0, 257, 98.1, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Linscott-Rumford,03470025, 13.3, 100.0, 84, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Malcolm White,03470055, 23.4, 100.0, 119, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Mary D Altavesta,03470065, 21.6, 100.0, 87, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Shamrock,03470043, 30.0, 100.0, 152, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Woburn High,03470505, 99.2, 100.0, 446, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Wyman,03470060, 13.6, 100.0, 77, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Belmont Street Community,03480020, 34.7, 100.0, 146, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Middle School,03480405, 45.4, 97.8, 245, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Senior High,03480503, 70.9, 99.3, 412, 98.1, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Street,03480035, 20.3, 100.0, 108, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Canterbury,03480045, 26.2, 96.2, 123, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Chandler Elementary Community,03480050, 31.5, 100.0, 130, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Chandler Magnet,03480052, 44.5, 100.0, 228, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - City View,03480053, 34.6, 100.0, 165, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Claremont Academy,03480350, 38.4, 99.2, 211, 99.1, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Clark St Community,03480055, 21.4, 100.0, 91, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Columbus Park,03480060, 28.7, 100.0, 162, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Doherty Memorial High,03480512, 90.7, 99.3, 496, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Elm Park Community,03480095, 33.5, 100.0, 159, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Flagg Street,03480090, 20.0, 100.0, 97, 100.0, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Forest Grove Middle,03480415, 65.5, 100.0, 330, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Francis J McGrath Elementary,03480177, 18.4, 100.0, 81, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Gates Lane,03480110, 43.3, 92.8, 223, 83.9, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Goddard School/Science Technical,03480100, 34.3, 100.0, 156, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Grafton Street,03480115, 25.3, 98.7, 114, 94.7, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Head Start,03480002, 43.4, 45.2, 192, 46.9, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Heard Street,03480136, 15.4, 100.0, 72, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 27.8, 100.0, 114, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Lake View,03480145, 17.7, 100.0, 72, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Lincoln Street,03480160, 19.0, 100.0, 84, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - May Street,03480175, 19.4, 100.0, 142, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Midland Street,03480185, 16.1, 100.0, 68, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Nelson Place,03480200, 32.5, 100.0, 192, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Norrback Avenue,03480202, 38.5, 100.0, 229, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - North High,03480515, 90.5, 98.2, 501, 99.4, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Quinsigamond,03480210, 44.1, 100.0, 216, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Rice Square,03480215, 26.9, 100.0, 115, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Roosevelt,03480220, 43.1, 97.7, 240, 97.5, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - South High Community,03480520, 89.6, 95.3, 465, 96.3, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Sullivan Middle,03480423, 70.1, 100.0, 330, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Tatnuck,03480230, 23.2, 100.0, 122, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Thorndyke Road,03480235, 21.4, 100.0, 84, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Union Hill School,03480240, 32.1, 100.0, 217, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - University Pk Campus School,03480285, 20.8, 100.0, 104, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Vernon Hill School,03480280, 31.5, 100.0, 162, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Wawecus Road School,03480026, 11.6, 100.0, 66, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - West Tatnuck,03480260, 19.7, 100.0, 126, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Woodland Academy,03480030, 37.1, 100.0, 151, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester Arts Magnet School,03480225, 24.7, 98.7, 101, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester East Middle,03480420, 55.0, 98.2, 307, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester Technical High,03480605, 129.2, 98.5, 252, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Worthington - R. H. Conwell,03490010, 6.4, 96.9, 47, 70.2, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Wrentham - Charles E Roderick,03500010, 33.1, 100.0, 115, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wrentham - Delaney,03500003, 44.1, 100.0, 151, 100.0, 13.4 to 1 +4.055,4.06,a-exp-i1,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 109.0, 97.8, 13.1 to 1, 81.1, 83.7 +5.0,5.0,a-exp-i1,2017-18,Abington - Abington Early Education Program,00010001, 3.0, 100.0, 28.0 to 1, 100.0, 100.0 +4.14,4.14,a-exp-i1,2017-18,Abington - Abington High,00010505, 38.7, 100.0, 13.4 to 1, 82.8, 87.1 +3.565,3.57,a-exp-i1,2017-18,Abington - Abington Middle School,00010405, 40.8, 100.0, 16.8 to 1, 71.3, 92.9 +4.34,4.34,a-exp-i1,2017-18,Abington - Beaver Brook Elementary,00010020, 22.7, 100.0, 18.7 to 1, 86.8, 100.0 +4.455,4.46,a-exp-i1,2017-18,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 17.4 to 1, 89.1, 100.0 +1.985,1.99,a-exp-i1,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 48.1, 70.5, 10.9 to 1, 39.7, 79.7 +4.445,4.45,a-exp-i1,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.8, 100.0, 14.8 to 1, 88.9, 95.7 +4.17,4.17,a-exp-i1,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 30.2, 100.0, 14.8 to 1, 83.4, 100.0 +4.7,4.7,a-exp-i1,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 26.6, 100.0, 16.1 to 1, 94.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 15.9 to 1, 100.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Acton-Boxborough - Luther Conant School,06000030, 29.2, 100.0, 15.1 to 1, 85.6, 100.0 +3.905,3.91,a-exp-i1,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 30.2, 100.0, 16.1 to 1, 78.1, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Acton-Boxborough - Merriam School,06000010, 31.6, 100.0, 15.8 to 1, 85.4, 93.7 +4.8100000000000005,4.81,a-exp-i1,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.6, 100.0, 15.1 to 1, 96.2, 100.0 +4.654999999999999,4.65,a-exp-i1,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.6, 100.0, 14.5 to 1, 93.1, 97.0 +4.35,4.35,a-exp-i1,2017-18,Acushnet - Acushnet Elementary School,00030025, 36.5, 100.0, 15.1 to 1, 87.0, 100.0 +4.825,4.83,a-exp-i1,2017-18,Acushnet - Albert F Ford Middle School,00030305, 29.0, 100.0, 14.3 to 1, 96.5, 96.5 +4.725,4.73,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 22.0, 100.0, 18.3 to 1, 94.5, 100.0 +3.845,3.85,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 30.1, 96.7, 13.9 to 1, 76.9, 90.4 +3.8649999999999998,3.87,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 28.2, 100.0, 14.2 to 1, 77.3, 96.4 +3.1350000000000002,3.14,a-exp-i1,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 82.0, 86.0, 12.1 to 1, 62.7, 70.2 +4.475,4.48,a-exp-i1,2017-18,Agawam - Agawam Early Childhood Center,00050003, 9.5, 100.0, 17.2 to 1, 89.5, 89.5 +4.535,4.54,a-exp-i1,2017-18,Agawam - Agawam High,00050505, 97.0, 100.0, 12.1 to 1, 90.7, 95.9 +4.595000000000001,4.6,a-exp-i1,2017-18,Agawam - Agawam Junior High,00050405, 60.7, 100.0, 9.4 to 1, 91.9, 95.2 +4.58,4.58,a-exp-i1,2017-18,Agawam - Benjamin J Phelps,00050020, 29.8, 100.0, 13.0 to 1, 91.6, 95.0 +4.68,4.68,a-exp-i1,2017-18,Agawam - Clifford M Granger,00050010, 20.3, 100.0, 13.8 to 1, 93.6, 100.0 +4.715,4.72,a-exp-i1,2017-18,Agawam - James Clark School,00050030, 28.1, 100.0, 12.1 to 1, 94.3, 96.4 +4.68,4.68,a-exp-i1,2017-18,Agawam - Roberta G. Doering School,00050303, 47.1, 100.0, 12.1 to 1, 93.6, 96.8 +4.595000000000001,4.6,a-exp-i1,2017-18,Agawam - Robinson Park,00050025, 30.8, 100.0, 12.1 to 1, 91.9, 98.4 +2.715,2.72,a-exp-i1,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 35.0, 62.9, 11.8 to 1, 54.3, 97.1 +4.505,4.51,a-exp-i1,2017-18,Amesbury - Amesbury Elementary,00070005, 28.4, 100.0, 13.9 to 1, 90.1, 100.0 +4.475,4.48,a-exp-i1,2017-18,Amesbury - Amesbury High,00070505, 20.6, 100.0, 28.7 to 1, 89.5, 94.3 +3.8899999999999997,3.89,a-exp-i1,2017-18,Amesbury - Amesbury Innovation High School,00070515, 3.7, 100.0, 10.7 to 1, 77.8, 51.1 +4.115,4.12,a-exp-i1,2017-18,Amesbury - Amesbury Middle,00070013, 57.0, 100.0, 11.9 to 1, 82.3, 91.2 +4.7299999999999995,4.73,a-exp-i1,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 33.4, 100.0, 13.3 to 1, 94.6, 97.0 +4.6,4.6,a-exp-i1,2017-18,Amherst - Crocker Farm Elementary,00080009, 40.9, 100.0, 10.0 to 1, 92.0, 99.4 +3.54,3.54,a-exp-i1,2017-18,Amherst - Fort River Elementary,00080020, 38.6, 100.0, 8.7 to 1, 70.8, 91.6 +4.5,4.5,a-exp-i1,2017-18,Amherst - Wildwood Elementary,00080050, 42.6, 95.3, 9.5 to 1, 90.0, 99.4 +4.11,4.11,a-exp-i1,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 66.4, 98.5, 14.0 to 1, 82.2, 96.8 +4.385,4.39,a-exp-i1,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 42.6, 99.1, 9.6 to 1, 87.7, 93.0 +4.465,4.47,a-exp-i1,2017-18,Andover - Andover High,00090505, 124.6, 100.0, 14.3 to 1, 89.3, 93.7 +4.285,4.29,a-exp-i1,2017-18,Andover - Andover West Middle,00090310, 46.5, 100.0, 11.3 to 1, 85.7, 95.7 +4.62,4.62,a-exp-i1,2017-18,Andover - Bancroft Elementary,00090003, 46.0, 100.0, 12.6 to 1, 92.4, 100.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Andover - Doherty Middle,00090305, 46.1, 100.0, 12.1 to 1, 82.1, 100.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Andover - Henry C Sanborn Elementary,00090010, 31.9, 100.0, 12.2 to 1, 91.2, 100.0 +4.58,4.58,a-exp-i1,2017-18,Andover - High Plain Elementary,00090004, 43.4, 100.0, 11.5 to 1, 91.6, 100.0 +5.0,5.0,a-exp-i1,2017-18,Andover - Shawsheen School,00090005, 7.0, 100.0, 12.1 to 1, 100.0, 100.0 +4.67,4.67,a-exp-i1,2017-18,Andover - South Elementary,00090020, 38.1, 100.0, 12.9 to 1, 93.4, 100.0 +4.285,4.29,a-exp-i1,2017-18,Andover - West Elementary,00090025, 47.1, 100.0, 12.9 to 1, 85.7, 100.0 +4.265,4.27,a-exp-i1,2017-18,Andover - Wood Hill Middle School,00090350, 39.1, 100.0, 10.5 to 1, 85.3, 95.3 +1.2349999999999999,1.23,a-exp-i1,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 37.2, 67.2, 10.7 to 1, 24.7, 81.2 +4.08,4.08,a-exp-i1,2017-18,Arlington - Arlington High,00100505, 99.8, 100.0, 13.3 to 1, 81.6, 87.3 +4.2299999999999995,4.23,a-exp-i1,2017-18,Arlington - Brackett,00100010, 30.3, 100.0, 16.1 to 1, 84.6, 100.0 +3.975,3.98,a-exp-i1,2017-18,Arlington - Cyrus E Dallin,00100025, 33.3, 100.0, 14.4 to 1, 79.5, 96.0 +3.5799999999999996,3.58,a-exp-i1,2017-18,Arlington - Hardy,00100030, 31.8, 96.9, 14.4 to 1, 71.6, 96.7 +4.635,4.64,a-exp-i1,2017-18,Arlington - John A Bishop,00100005, 23.5, 100.0, 17.9 to 1, 92.7, 95.7 +4.095000000000001,4.1,a-exp-i1,2017-18,Arlington - M Norcross Stratton,00100055, 28.1, 100.0, 14.3 to 1, 81.9, 100.0 +4.165,4.17,a-exp-i1,2017-18,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 14.2 to 1, 83.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Arlington - Ottoson Middle,00100410, 94.2, 98.9, 13.4 to 1, 83.4, 88.1 +4.5600000000000005,4.56,a-exp-i1,2017-18,Arlington - Peirce,00100045, 17.6, 100.0, 17.3 to 1, 91.2, 88.4 +3.2399999999999998,3.24,a-exp-i1,2017-18,Arlington - Thompson,00100050, 35.1, 100.0, 13.9 to 1, 64.8, 96.7 +4.225,4.23,a-exp-i1,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 38.8, 100.0, 14.3 to 1, 84.5, 92.3 +4.225,4.23,a-exp-i1,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 15.2 to 1, 84.5, 96.9 +4.220000000000001,4.22,a-exp-i1,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 50.5, 100.0, 14.2 to 1, 84.4, 94.7 +4.13,4.13,a-exp-i1,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 37.9, 100.0, 15.1 to 1, 82.6, 94.7 +3.9,3.9,a-exp-i1,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 22.1, 100.0, 17.1 to 1, 78.0, 94.7 +4.07,4.07,a-exp-i1,2017-18,Ashland - Ashland High,00140505, 56.0, 100.0, 13.7 to 1, 81.4, 91.4 +4.635,4.64,a-exp-i1,2017-18,Ashland - Ashland Middle,00140405, 45.2, 100.0, 13.3 to 1, 92.7, 95.0 +4.245,4.25,a-exp-i1,2017-18,Ashland - David Mindess,00140015, 46.3, 100.0, 14.0 to 1, 84.9, 97.8 +4.01,4.01,a-exp-i1,2017-18,Ashland - Henry E Warren Elementary,00140010, 44.4, 100.0, 13.8 to 1, 80.2, 96.4 +2.5,2.5,a-exp-i1,2017-18,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 15.9 to 1, 50.0, 100.0 +4.205,4.21,a-exp-i1,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110.0, 95.5, 10.1 to 1, 84.1, 86.4 +3.525,3.53,a-exp-i1,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 37.3, 100.0, 16.2 to 1, 70.5, 86.6 +4.175,4.18,a-exp-i1,2017-18,Athol-Royalston - Athol High,06150505, 30.3, 100.0, 12.1 to 1, 83.5, 80.2 +4.17,4.17,a-exp-i1,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.1, 100.0, 13.0 to 1, 83.4, 86.7 +4.15,4.15,a-exp-i1,2017-18,Athol-Royalston - Royalston Community School,06150050, 11.8, 100.0, 11.8 to 1, 83.0, 100.0 +2.4050000000000002,2.41,a-exp-i1,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 88.6, 82.5, 13.7 to 1, 48.1, 75.2 +4.84,4.84,a-exp-i1,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 30.5, 100.0, 12.6 to 1, 96.8, 100.0 +4.13,4.13,a-exp-i1,2017-18,Attleboro - Attleboro Community Academy,00160515, 3.4, 94.2, 17.7 to 1, 82.6, 84.2 +4.35,4.35,a-exp-i1,2017-18,Attleboro - Attleboro High,00160505, 107.8, 98.1, 15.8 to 1, 87.0, 89.0 +4.555,4.56,a-exp-i1,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 33.8, 100.0, 17.2 to 1, 91.1, 97.0 +3.81,3.81,a-exp-i1,2017-18,Attleboro - Early Learning Center,00160008, 8.4, 100.0, 21.9 to 1, 76.2, 100.0 +3.2600000000000002,3.26,a-exp-i1,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 27.7, 100.0, 16.6 to 1, 65.2, 89.1 +4.64,4.64,a-exp-i1,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 28.0, 100.0, 17.2 to 1, 92.8, 96.4 +4.654999999999999,4.65,a-exp-i1,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 34.5, 100.0, 12.2 to 1, 93.1, 100.0 +4.475,4.48,a-exp-i1,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 38.0, 100.0, 17.5 to 1, 89.5, 100.0 +4.825,4.83,a-exp-i1,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 28.5, 100.0, 15.2 to 1, 96.5, 100.0 +4.7,4.7,a-exp-i1,2017-18,Attleboro - Wamsutta Middle School,00160320, 33.2, 100.0, 17.4 to 1, 94.0, 97.0 +4.505,4.51,a-exp-i1,2017-18,Auburn - Auburn Middle,00170305, 45.3, 100.0, 13.9 to 1, 90.1, 97.8 +4.595000000000001,4.6,a-exp-i1,2017-18,Auburn - Auburn Senior High,00170505, 61.6, 100.0, 13.0 to 1, 91.9, 90.3 +3.85,3.85,a-exp-i1,2017-18,Auburn - Bryn Mawr,00170010, 17.8, 100.0, 16.8 to 1, 77.0, 93.9 +4.165,4.17,a-exp-i1,2017-18,Auburn - Pakachoag School,00170025, 17.9, 100.0, 16.8 to 1, 83.3, 100.0 +4.595000000000001,4.6,a-exp-i1,2017-18,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 15.9 to 1, 91.9, 97.4 +3.7600000000000002,3.76,a-exp-i1,2017-18,Avon - Avon Middle High School,00180510, 35.1, 100.0, 8.9 to 1, 75.2, 82.9 +4.18,4.18,a-exp-i1,2017-18,Avon - Ralph D Butler,00180010, 32.3, 100.0, 12.8 to 1, 83.6, 100.0 +3.8600000000000003,3.86,a-exp-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 36.3, 99.6, 11.3 to 1, 77.2, 77.6 +4.525,4.53,a-exp-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 31.5, 100.0, 11.7 to 1, 90.5, 87.3 +3.94,3.94,a-exp-i1,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.8, 97.3, 13.4 to 1, 78.8, 93.9 +3.845,3.85,a-exp-i1,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.0, 100.0, 13.5 to 1, 76.9, 92.3 +4.5,4.5,a-exp-i1,2017-18,Barnstable - Barnstable High,00200505, 144.9, 99.3, 12.8 to 1, 90.0, 92.4 +4.1,4.1,a-exp-i1,2017-18,Barnstable - Barnstable Intermediate School,00200315, 58.4, 100.0, 12.6 to 1, 82.0, 91.4 +3.775,3.78,a-exp-i1,2017-18,Barnstable - Barnstable United Elementary School,00200050, 59.6, 100.0, 14.4 to 1, 75.5, 95.6 +4.345000000000001,4.35,a-exp-i1,2017-18,Barnstable - Centerville Elementary,00200010, 21.3, 100.0, 12.2 to 1, 86.9, 96.2 +2.5,2.5,a-exp-i1,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 22.5 to 1, 50.0, 83.3 +3.925,3.93,a-exp-i1,2017-18,Barnstable - Hyannis West Elementary,00200025, 31.6, 100.0, 10.6 to 1, 78.5, 88.0 +4.025,4.03,a-exp-i1,2017-18,Barnstable - West Barnstable Elementary,00200005, 16.4, 100.0, 15.8 to 1, 80.5, 92.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Barnstable - West Villages Elementary School,00200045, 29.0, 96.6, 14.9 to 1, 86.2, 100.0 +3.96,3.96,a-exp-i1,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 24.0, 100.0, 12.8 to 1, 79.2, 100.0 +1.27,1.27,a-exp-i1,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 51.2, 64.5, 8.7 to 1, 25.4, 76.6 +4.32,4.32,a-exp-i1,2017-18,Bedford - Bedford High,00230505, 82.4, 97.5, 10.4 to 1, 86.4, 94.3 +4.375,4.38,a-exp-i1,2017-18,Bedford - John Glenn Middle,00230305, 56.0, 100.0, 10.4 to 1, 87.5, 89.3 +4.66,4.66,a-exp-i1,2017-18,Bedford - Lt Elezer Davis,00230010, 44.0, 100.0, 13.6 to 1, 93.2, 100.0 +3.7350000000000003,3.74,a-exp-i1,2017-18,Bedford - Lt Job Lane School,00230012, 47.4, 100.0, 12.8 to 1, 74.7, 91.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Belchertown - Belchertown High,00240505, 47.0, 100.0, 15.1 to 1, 95.4, 97.9 +5.0,5.0,a-exp-i1,2017-18,Belchertown - Chestnut Hill Community School,00240006, 37.2, 100.0, 14.9 to 1, 100.0, 100.0 +4.205,4.21,a-exp-i1,2017-18,Belchertown - Cold Spring,00240005, 12.6, 100.0, 15.3 to 1, 84.1, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Belchertown - Jabish Middle School,00240025, 31.5, 100.0, 12.6 to 1, 87.1, 93.6 +4.86,4.86,a-exp-i1,2017-18,Belchertown - Swift River Elementary,00240018, 35.2, 100.0, 13.3 to 1, 97.2, 100.0 +5.0,5.0,a-exp-i1,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 5.5, 100.0, 20.0 to 1, 100.0, 100.0 +4.545,4.55,a-exp-i1,2017-18,Bellingham - Bellingham High School,00250505, 55.4, 100.0, 13.8 to 1, 90.9, 92.8 +3.8200000000000003,3.82,a-exp-i1,2017-18,Bellingham - Bellingham Memorial School,00250315, 51.8, 100.0, 13.9 to 1, 76.4, 90.6 +3.175,3.18,a-exp-i1,2017-18,Bellingham - Keough Memorial Academy,00250510, 7.8, 87.2, 4.3 to 1, 63.5, 87.2 +4.205,4.21,a-exp-i1,2017-18,Bellingham - South Elementary,00250020, 24.8, 100.0, 13.5 to 1, 84.1, 100.0 +4.2299999999999995,4.23,a-exp-i1,2017-18,Bellingham - Stall Brook,00250025, 25.9, 100.0, 12.4 to 1, 84.6, 96.1 +4.11,4.11,a-exp-i1,2017-18,Belmont - Belmont High,00260505, 70.0, 100.0, 18.5 to 1, 82.2, 93.7 +4.595000000000001,4.6,a-exp-i1,2017-18,Belmont - Daniel Butler,00260015, 24.6, 100.0, 15.8 to 1, 91.9, 95.9 +4.085,4.09,a-exp-i1,2017-18,Belmont - Mary Lee Burbank,00260010, 21.9, 100.0, 17.1 to 1, 81.7, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Belmont - Roger E Wellington,00260035, 39.2, 100.0, 15.9 to 1, 81.9, 94.9 +3.8200000000000003,3.82,a-exp-i1,2017-18,Belmont - Winn Brook,00260005, 28.9, 100.0, 17.0 to 1, 76.4, 93.1 +4.215,4.22,a-exp-i1,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 88.6, 100.0, 16.0 to 1, 84.3, 95.5 +3.8899999999999997,3.89,a-exp-i1,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 18.0, 94.4, 19.7 to 1, 77.8, 95.1 +4.09,4.09,a-exp-i1,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 33.0, 81.8, 13.4 to 1, 81.8, 87.9 +1.4949999999999999,1.5,a-exp-i1,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 24.4, 95.5, 12.1 to 1, 29.9, 71.3 +4.555,4.56,a-exp-i1,2017-18,Berkley - Berkley Community School,00270010, 33.8, 100.0, 15.7 to 1, 91.1, 100.0 +4.79,4.79,a-exp-i1,2017-18,Berkley - Berkley Middle School,00270305, 24.0, 100.0, 16.3 to 1, 95.8, 87.5 +2.4850000000000003,2.49,a-exp-i1,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 34.0, 63.7, 10.4 to 1, 49.7, 87.5 +4.475,4.48,a-exp-i1,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 42.8, 100.0, 12.2 to 1, 89.5, 94.2 +4.235,4.24,a-exp-i1,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 32.3, 100.0, 11.6 to 1, 84.7, 90.7 +4.025,4.03,a-exp-i1,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 36.2, 100.0, 9.6 to 1, 80.5, 91.7 +4.0649999999999995,4.06,a-exp-i1,2017-18,Berlin - Berlin Memorial,00280005, 18.0, 100.0, 10.2 to 1, 81.3, 93.5 +4.6450000000000005,4.65,a-exp-i1,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 45.5, 99.1, 13.0 to 1, 92.9, 91.6 +4.36,4.36,a-exp-i1,2017-18,Beverly - Ayers/Ryal Side School,00300055, 32.9, 100.0, 15.2 to 1, 87.2, 97.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Beverly - Beverly High,00300505, 90.6, 98.0, 13.7 to 1, 89.4, 89.4 +4.555,4.56,a-exp-i1,2017-18,Beverly - Briscoe Middle,00300305, 73.4, 100.0, 13.6 to 1, 91.1, 89.1 +4.32,4.32,a-exp-i1,2017-18,Beverly - Centerville Elementary,00300010, 27.3, 100.0, 13.3 to 1, 86.4, 100.0 +3.87,3.87,a-exp-i1,2017-18,Beverly - Cove Elementary,00300015, 34.1, 100.0, 14.4 to 1, 77.4, 94.1 +4.265,4.27,a-exp-i1,2017-18,Beverly - Hannah Elementary,00300033, 28.6, 100.0, 13.7 to 1, 85.3, 100.0 +4.445,4.45,a-exp-i1,2017-18,Beverly - McKeown School,00300002, 9.0, 100.0, 12.7 to 1, 88.9, 100.0 +4.295,4.3,a-exp-i1,2017-18,Beverly - North Beverly Elementary,00300040, 29.8, 100.0, 13.4 to 1, 85.9, 96.6 +4.34,4.34,a-exp-i1,2017-18,Billerica - Billerica Memorial High School,00310505, 101.6, 98.0, 13.2 to 1, 86.8, 91.9 +4.01,4.01,a-exp-i1,2017-18,Billerica - Eugene C Vining,00310030, 17.7, 100.0, 11.0 to 1, 80.2, 87.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Billerica - Frederick J Dutile,00310007, 22.7, 100.0, 12.0 to 1, 88.7, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Billerica - Hajjar Elementary,00310026, 32.3, 100.0, 14.3 to 1, 88.1, 90.6 +4.74,4.74,a-exp-i1,2017-18,Billerica - John F Kennedy,00310012, 22.7, 100.0, 13.8 to 1, 94.8, 96.7 +4.535,4.54,a-exp-i1,2017-18,Billerica - Locke Middle,00310310, 45.9, 100.0, 11.0 to 1, 90.7, 86.9 +4.71,4.71,a-exp-i1,2017-18,Billerica - Marshall Middle School,00310305, 56.1, 100.0, 11.6 to 1, 94.2, 91.1 +4.12,4.12,a-exp-i1,2017-18,Billerica - Parker,00310015, 36.6, 97.3, 13.7 to 1, 82.4, 96.1 +4.3100000000000005,4.31,a-exp-i1,2017-18,Billerica - Thomas Ditson,00310005, 39.9, 100.0, 13.4 to 1, 86.2, 93.7 +4.225,4.23,a-exp-i1,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 98.4, 96.6, 12.4 to 1, 84.5, 77.3 +4.43,4.43,a-exp-i1,2017-18,Blackstone-Millville - A F Maloney,06220015, 20.6, 100.0, 14.5 to 1, 88.6, 97.1 +4.08,4.08,a-exp-i1,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.0, 100.0, 10.7 to 1, 81.6, 84.2 +4.245,4.25,a-exp-i1,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.1, 100.0, 12.9 to 1, 84.9, 97.0 +4.7,4.7,a-exp-i1,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 22.6, 100.0, 13.1 to 1, 94.0, 100.0 +4.175,4.18,a-exp-i1,2017-18,Blackstone-Millville - Millville Elementary,06220010, 20.0, 100.0, 14.3 to 1, 83.5, 100.0 +4.025,4.03,a-exp-i1,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 82.0, 95.1, 10.4 to 1, 80.5, 87.8 +3.53,3.53,a-exp-i1,2017-18,Boston - Another Course To College,00350541, 22.1, 83.5, 10.1 to 1, 70.6, 88.7 +4.6450000000000005,4.65,a-exp-i1,2017-18,Boston - Baldwin Early Learning Center,00350003, 14.0, 100.0, 12.4 to 1, 92.9, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Boston - Beethoven,00350021, 22.4, 100.0, 14.5 to 1, 95.4, 100.0 +3.35,3.35,a-exp-i1,2017-18,Boston - Blackstone,00350390, 47.9, 98.0, 12.0 to 1, 67.0, 93.7 +3.4899999999999998,3.49,a-exp-i1,2017-18,Boston - Boston Adult Academy,00350548, 21.4, 84.1, 7.2 to 1, 69.8, 90.5 +3.63,3.63,a-exp-i1,2017-18,Boston - Boston Arts Academy,00350546, 47.8, 85.4, 9.8 to 1, 72.6, 89.4 +3.54,3.54,a-exp-i1,2017-18,Boston - Boston Collaborative High School,00350755, 7.0, 100.0, 26.0 to 1, 70.8, 85.1 +4.265,4.27,a-exp-i1,2017-18,Boston - Boston Community Leadership Academy,00350558, 38.6, 88.9, 12.3 to 1, 85.3, 94.8 +3.91,3.91,a-exp-i1,2017-18,Boston - Boston International High School,00350507, 49.5, 95.7, 7.4 to 1, 78.2, 90.8 +4.64,4.64,a-exp-i1,2017-18,Boston - Boston Latin,00350560, 117.2, 100.0, 20.9 to 1, 92.8, 91.5 +4.470000000000001,4.47,a-exp-i1,2017-18,Boston - Boston Latin Academy,00350545, 87.9, 96.7, 20.3 to 1, 89.4, 96.5 +4.66,4.66,a-exp-i1,2017-18,Boston - Boston Teachers Union School,00350012, 22.2, 93.4, 12.9 to 1, 93.2, 100.0 +2.975,2.98,a-exp-i1,2017-18,Boston - Brighton High,00350505, 57.2, 93.0, 11.9 to 1, 59.5, 75.3 +0.0,1,a-exp-i1,2017-18,Boston - Carter Developmental Center,00350036, .7, 0.0, 43.9 to 1, 0.0, 100.0 +3.715,3.72,a-exp-i1,2017-18,Boston - Charles H Taylor,00350054, 41.1, 98.4, 12.8 to 1, 74.3, 90.3 +4.61,4.61,a-exp-i1,2017-18,Boston - Charles Sumner,00350052, 38.5, 100.0, 15.1 to 1, 92.2, 94.7 +3.7399999999999998,3.74,a-exp-i1,2017-18,Boston - Charlestown High,00350515, 88.6, 90.0, 10.4 to 1, 74.8, 90.3 +4.545,4.55,a-exp-i1,2017-18,Boston - Clarence R Edwards Middle,00350430, 32.9, 100.0, 9.3 to 1, 90.9, 93.8 +3.675,3.68,a-exp-i1,2017-18,Boston - Community Academy,00350518, 12.1, 87.6, 6.5 to 1, 73.5, 76.0 +4.735,4.74,a-exp-i1,2017-18,Boston - Community Academy of Science and Health,00350581, 37.4, 92.4, 10.4 to 1, 94.7, 89.7 +4.115,4.12,a-exp-i1,2017-18,Boston - Curley K-8 School,00350020, 80.0, 98.7, 11.8 to 1, 82.3, 93.6 +3.81,3.81,a-exp-i1,2017-18,Boston - Curtis Guild,00350062, 25.3, 91.7, 11.6 to 1, 76.2, 98.0 +4.33,4.33,a-exp-i1,2017-18,Boston - Dante Alighieri Montessori School,00350066, 9.8, 100.0, 9.4 to 1, 86.6, 81.3 +3.925,3.93,a-exp-i1,2017-18,Boston - David A Ellis,00350072, 33.0, 100.0, 13.8 to 1, 78.5, 81.8 +3.04,3.04,a-exp-i1,2017-18,Boston - Dearborn,00350074, 35.7, 95.0, 9.9 to 1, 60.8, 76.2 +4.445,4.45,a-exp-i1,2017-18,Boston - Dennis C Haley,00350077, 45.3, 100.0, 9.9 to 1, 88.9, 97.8 +3.9450000000000003,3.95,a-exp-i1,2017-18,Boston - Donald Mckay,00350080, 52.4, 100.0, 14.8 to 1, 78.9, 96.2 +3.3049999999999997,3.31,a-exp-i1,2017-18,Boston - Dorchester Academy,00350651, 7.5, 73.3, 5.6 to 1, 66.1, 73.2 +4.07,4.07,a-exp-i1,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 16.1, 100.0, 11.7 to 1, 81.4, 87.3 +2.555,2.56,a-exp-i1,2017-18,Boston - Dr. William Henderson Lower,00350266, 22.5, 82.1, 9.4 to 1, 51.1, 91.1 +3.405,3.41,a-exp-i1,2017-18,Boston - Dr. William Henderson Upper,00350426, 69.2, 94.3, 8.8 to 1, 68.1, 78.3 +5.0,5.0,a-exp-i1,2017-18,Boston - ELC - West Zone,00350006, 11.3, 100.0, 10.2 to 1, 100.0, 100.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Boston - East Boston Early Childhood Center,00350009, 13.7, 92.7, 14.4 to 1, 87.9, 92.7 +4.029999999999999,4.03,a-exp-i1,2017-18,Boston - East Boston High,00350530, 99.9, 95.6, 13.4 to 1, 80.6, 85.1 +3.88,3.88,a-exp-i1,2017-18,Boston - Edison K-8,00350375, 54.3, 94.3, 11.7 to 1, 77.6, 96.1 +3.9850000000000003,3.99,a-exp-i1,2017-18,Boston - Edward Everett,00350088, 19.5, 100.0, 13.9 to 1, 79.7, 95.1 +3.745,3.75,a-exp-i1,2017-18,Boston - Eliot Elementary,00350096, 43.5, 100.0, 14.6 to 1, 74.9, 88.6 +3.84,3.84,a-exp-i1,2017-18,Boston - Ellis Mendell,00350100, 18.6, 100.0, 14.3 to 1, 76.8, 91.1 +3.055,3.06,a-exp-i1,2017-18,Boston - Excel High School,00350522, 42.9, 95.6, 11.4 to 1, 61.1, 81.6 +4.135,4.14,a-exp-i1,2017-18,Boston - Fenway High School,00350540, 31.3, 88.5, 11.6 to 1, 82.7, 95.3 +5.0,5.0,a-exp-i1,2017-18,Boston - Franklin D Roosevelt,00350116, 34.2, 100.0, 13.3 to 1, 100.0, 97.1 +4.235,4.24,a-exp-i1,2017-18,Boston - Gardner Pilot Academy,00350326, 34.6, 97.4, 11.6 to 1, 84.7, 94.2 +4.715,4.72,a-exp-i1,2017-18,Boston - George H Conley,00350122, 18.5, 100.0, 11.5 to 1, 94.3, 96.8 +3.31,3.31,a-exp-i1,2017-18,Boston - Greater Egleston Community High School,00350543, 13.6, 89.0, 7.7 to 1, 66.2, 77.2 +4.465,4.47,a-exp-i1,2017-18,Boston - Harvard-Kent,00350200, 42.0, 98.8, 11.3 to 1, 89.3, 97.6 +3.0300000000000002,3.03,a-exp-i1,2017-18,Boston - Haynes Early Education Center,00350010, 17.5, 77.9, 12.1 to 1, 60.6, 94.1 +3.88,3.88,a-exp-i1,2017-18,Boston - Henry Grew,00350135, 15.4, 100.0, 16.5 to 1, 77.6, 90.9 +3.6399999999999997,3.64,a-exp-i1,2017-18,Boston - Higginson,00350015, 13.8, 92.6, 12.4 to 1, 72.8, 80.4 +3.7950000000000004,3.8,a-exp-i1,2017-18,Boston - Higginson/Lewis K-8,00350377, 29.0, 96.5, 10.6 to 1, 75.9, 86.2 +4.36,4.36,a-exp-i1,2017-18,Boston - Horace Mann School for the Deaf,00350750, 35.0, 95.7, 2.4 to 1, 87.2, 97.2 +4.455,4.46,a-exp-i1,2017-18,Boston - Hugh Roe O'Donnell,00350141, 18.5, 100.0, 13.4 to 1, 89.1, 86.6 +4.035,4.04,a-exp-i1,2017-18,Boston - Jackson Mann,00350013, 57.2, 98.3, 11.5 to 1, 80.7, 91.5 +4.505,4.51,a-exp-i1,2017-18,Boston - James Condon Elementary,00350146, 61.0, 100.0, 14.8 to 1, 90.1, 93.3 +4.79,4.79,a-exp-i1,2017-18,Boston - James J Chittick,00350154, 24.1, 100.0, 12.7 to 1, 95.8, 87.5 +4.49,4.49,a-exp-i1,2017-18,Boston - James Otis,00350156, 29.5, 100.0, 13.7 to 1, 89.8, 93.2 +3.995,4.0,a-exp-i1,2017-18,Boston - James P Timilty Middle,00350485, 29.7, 93.3, 11.2 to 1, 79.9, 86.7 +4.575,4.58,a-exp-i1,2017-18,Boston - James W Hennigan,00350153, 47.5, 97.9, 12.2 to 1, 91.5, 97.9 +3.4850000000000003,3.49,a-exp-i1,2017-18,Boston - Jeremiah E Burke High,00350525, 31.9, 88.4, 14.8 to 1, 69.7, 75.7 +3.16,3.16,a-exp-i1,2017-18,Boston - John D Philbrick,00350172, 9.7, 89.3, 16.7 to 1, 63.2, 89.5 +3.6950000000000003,3.7,a-exp-i1,2017-18,Boston - John F Kennedy,00350166, 26.7, 100.0, 14.7 to 1, 73.9, 88.6 +4.055,4.06,a-exp-i1,2017-18,Boston - John W McCormack,00350179, 35.4, 95.3, 10.5 to 1, 81.1, 82.9 +4.465,4.47,a-exp-i1,2017-18,Boston - John Winthrop,00350180, 23.9, 100.0, 13.7 to 1, 89.3, 100.0 +4.58,4.58,a-exp-i1,2017-18,Boston - Joseph J Hurley,00350182, 24.0, 100.0, 15.0 to 1, 91.6, 87.5 +4.205,4.21,a-exp-i1,2017-18,Boston - Joseph Lee,00350183, 53.3, 98.8, 12.4 to 1, 84.1, 93.9 +4.36,4.36,a-exp-i1,2017-18,Boston - Joseph P Manning,00350184, 12.9, 95.3, 11.8 to 1, 87.2, 91.1 +4.205,4.21,a-exp-i1,2017-18,Boston - Joseph P Tynan,00350181, 25.1, 100.0, 9.3 to 1, 84.1, 83.8 +3.9,3.9,a-exp-i1,2017-18,Boston - Josiah Quincy,00350286, 59.0, 96.6, 14.1 to 1, 78.0, 98.3 +4.835,4.84,a-exp-i1,2017-18,Boston - Joyce Kilmer,00350190, 29.9, 100.0, 15.6 to 1, 96.7, 96.7 +4.16,4.16,a-exp-i1,2017-18,Boston - King K-8,00350376, 35.6, 94.4, 13.7 to 1, 83.2, 80.5 +3.525,3.53,a-exp-i1,2017-18,Boston - Lee Academy,00350001, 17.9, 97.2, 12.5 to 1, 70.5, 89.0 +3.54,3.54,a-exp-i1,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 48.0, 95.9, 10.3 to 1, 70.8, 89.4 +4.25,4.25,a-exp-i1,2017-18,Boston - Lyndon,00350262, 40.1, 98.8, 14.5 to 1, 85.0, 95.0 +3.995,4.0,a-exp-i1,2017-18,Boston - Lyon K-8,00350004, 18.9, 100.0, 6.9 to 1, 79.9, 89.1 +3.1100000000000003,3.11,a-exp-i1,2017-18,Boston - Lyon Upper 9-12,00350655, 17.3, 91.3, 7.2 to 1, 62.2, 79.4 +2.9699999999999998,2.97,a-exp-i1,2017-18,Boston - Madison Park High,00350537, 100.3, 90.9, 8.6 to 1, 59.4, 72.4 +4.25,4.25,a-exp-i1,2017-18,Boston - Manassah E Bradley,00350215, 21.8, 95.6, 13.5 to 1, 85.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2017-18,Boston - Margarita Muniz Academy,00350549, 27.9, 92.9, 10.7 to 1, 71.4, 78.5 +3.8850000000000002,3.89,a-exp-i1,2017-18,Boston - Mario Umana Academy,00350656, 74.4, 97.7, 13.5 to 1, 77.7, 89.9 +4.495,4.5,a-exp-i1,2017-18,Boston - Mather,00350227, 40.8, 97.7, 14.9 to 1, 89.9, 89.7 +2.415,2.42,a-exp-i1,2017-18,Boston - Mattapan Early Elementary School,00350016, 24.6, 96.0, 11.8 to 1, 48.3, 75.7 +3.5200000000000005,3.52,a-exp-i1,2017-18,Boston - Maurice J Tobin,00350229, 33.3, 91.3, 12.9 to 1, 70.4, 73.5 +4.665,4.67,a-exp-i1,2017-18,Boston - Michael J Perkins,00350231, 15.1, 100.0, 14.4 to 1, 93.3, 79.8 +4.1850000000000005,4.19,a-exp-i1,2017-18,Boston - Mildred Avenue K-8,00350378, 42.9, 100.0, 12.8 to 1, 83.7, 81.5 +3.9200000000000004,3.92,a-exp-i1,2017-18,Boston - Mission Hill School,00350382, 18.5, 100.0, 13.1 to 1, 78.4, 89.4 +4.0600000000000005,4.06,a-exp-i1,2017-18,Boston - Mozart,00350237, 16.0, 93.8, 11.2 to 1, 81.2, 100.0 +4.515,4.52,a-exp-i1,2017-18,Boston - Nathan Hale,00350243, 10.3, 100.0, 15.4 to 1, 90.3, 98.2 +3.6450000000000005,3.65,a-exp-i1,2017-18,Boston - New Mission High School,00350542, 33.4, 90.5, 11.7 to 1, 72.9, 97.3 +2.55,2.55,a-exp-i1,2017-18,Boston - O W Holmes,00350138, 27.5, 92.7, 12.6 to 1, 51.0, 84.2 +3.9200000000000004,3.92,a-exp-i1,2017-18,Boston - O'Bryant School Math/Science,00350575, 96.1, 93.0, 16.3 to 1, 78.4, 88.3 +4.76,4.76,a-exp-i1,2017-18,Boston - Oliver Hazard Perry,00350255, 21.1, 100.0, 10.4 to 1, 95.2, 85.7 +4.005,4.01,a-exp-i1,2017-18,Boston - Orchard Gardens,00350257, 68.2, 91.2, 13.3 to 1, 80.1, 91.1 +4.025,4.03,a-exp-i1,2017-18,Boston - Patrick J Kennedy,00350264, 22.3, 100.0, 13.7 to 1, 80.5, 86.6 +1.6149999999999998,1.61,a-exp-i1,2017-18,Boston - Paul A Dever,00350268, 34.3, 76.6, 10.4 to 1, 32.3, 73.4 +2.775,2.78,a-exp-i1,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 17.9, 88.8, 14.3 to 1, 55.5, 77.8 +4.529999999999999,4.53,a-exp-i1,2017-18,Boston - Phineas Bates,00350278, 22.7, 100.0, 11.5 to 1, 90.6, 96.5 +3.78,3.78,a-exp-i1,2017-18,Boston - Quincy Upper School,00350565, 45.9, 86.6, 11.1 to 1, 75.6, 82.6 +3.9850000000000003,3.99,a-exp-i1,2017-18,Boston - Rafael Hernandez,00350691, 24.5, 95.9, 15.9 to 1, 79.7, 91.8 +4.68,4.68,a-exp-i1,2017-18,Boston - Richard J Murphy,00350240, 60.9, 100.0, 15.5 to 1, 93.6, 96.7 +4.57,4.57,a-exp-i1,2017-18,Boston - Roger Clap,00350298, 12.1, 100.0, 13.0 to 1, 91.4, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Boston - Samuel Adams,00350302, 24.4, 100.0, 11.9 to 1, 81.9, 87.6 +3.62,3.62,a-exp-i1,2017-18,Boston - Samuel W Mason,00350304, 18.0, 94.7, 13.5 to 1, 72.4, 77.8 +3.5,3.5,a-exp-i1,2017-18,Boston - Sarah Greenwood,00350308, 30.2, 79.9, 13.3 to 1, 70.0, 86.5 +4.7299999999999995,4.73,a-exp-i1,2017-18,Boston - Snowden International School at Copley,00350690, 35.1, 94.7, 12.7 to 1, 94.6, 88.3 +3.9799999999999995,3.98,a-exp-i1,2017-18,Boston - TechBoston Academy,00350657, 93.6, 93.3, 9.8 to 1, 79.6, 93.6 +3.2950000000000004,3.3,a-exp-i1,2017-18,Boston - The English High,00350535, 49.9, 83.3, 10.8 to 1, 65.9, 85.9 +4.8149999999999995,4.81,a-exp-i1,2017-18,Boston - Thomas J Kenny,00350328, 27.0, 100.0, 12.0 to 1, 96.3, 96.0 +1.77,1.77,a-exp-i1,2017-18,Boston - UP Academy Holland,00350167, 48.0, 83.4, 15.9 to 1, 35.4, 74.9 +4.485,4.49,a-exp-i1,2017-18,Boston - Urban Science Academy,00350579, 40.1, 85.4, 9.8 to 1, 89.7, 94.6 +4.735,4.74,a-exp-i1,2017-18,Boston - Warren-Prescott,00350346, 37.8, 100.0, 15.9 to 1, 94.7, 100.0 +4.035,4.04,a-exp-i1,2017-18,Boston - Washington Irving Middle,00350445, 30.9, 95.1, 10.4 to 1, 80.7, 88.7 +4.3149999999999995,4.31,a-exp-i1,2017-18,Boston - West Roxbury Academy,00350658, 39.3, 95.1, 12.1 to 1, 86.3, 97.4 +3.675,3.68,a-exp-i1,2017-18,Boston - William E Russell,00350366, 28.5, 94.7, 14.3 to 1, 73.5, 89.5 +4.404999999999999,4.4,a-exp-i1,2017-18,Boston - William Ellery Channing,00350360, 17.0, 100.0, 12.7 to 1, 88.1, 94.1 +4.695,4.7,a-exp-i1,2017-18,Boston - William H Ohrenberger,00350258, 48.1, 95.9, 13.5 to 1, 93.9, 97.6 +4.5649999999999995,4.56,a-exp-i1,2017-18,Boston - William McKinley,00350363, 51.2, 98.1, 6.9 to 1, 91.3, 92.1 +4.57,4.57,a-exp-i1,2017-18,Boston - William Monroe Trotter,00350370, 34.5, 100.0, 15.2 to 1, 91.4, 90.3 +4.545,4.55,a-exp-i1,2017-18,Boston - Winship Elementary,00350374, 21.6, 100.0, 10.2 to 1, 90.9, 90.7 +3.495,3.5,a-exp-i1,2017-18,Boston - Young Achievers,00350380, 40.1, 87.5, 14.1 to 1, 69.9, 87.7 +2.52,2.52,a-exp-i1,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 63.5, 80.3, 11.0 to 1, 50.4, 66.3 +3.905,3.91,a-exp-i1,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.1, 95.4, 17.5 to 1, 78.1, 100.0 +3.325,3.33,a-exp-i1,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 40.6, 88.9, 11.6 to 1, 66.5, 90.4 +1.4849999999999999,1.49,a-exp-i1,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 44.1, 77.3, 10.5 to 1, 29.7, 87.1 +2.805,2.81,a-exp-i1,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.0, 80.5, 11.4 to 1, 56.1, 92.7 +4.485,4.49,a-exp-i1,2017-18,Bourne - Bourne High School,00360505, 37.6, 97.3, 12.8 to 1, 89.7, 92.0 +3.87,3.87,a-exp-i1,2017-18,Bourne - Bourne Middle School,00360325, 57.6, 91.3, 11.9 to 1, 77.4, 89.6 +4.465,4.47,a-exp-i1,2017-18,Bourne - Bournedale Elementary School,00360005, 27.9, 100.0, 16.1 to 1, 89.3, 93.3 +4.6,4.6,a-exp-i1,2017-18,Bourne - Peebles Elementary School,00360010, 25.0, 100.0, 13.6 to 1, 92.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,Boxford - Harry Lee Cole,00380005, 26.3, 100.0, 12.6 to 1, 93.9, 96.2 +4.84,4.84,a-exp-i1,2017-18,Boxford - Spofford Pond,00380013, 31.6, 100.0, 12.3 to 1, 96.8, 100.0 +3.8200000000000003,3.82,a-exp-i1,2017-18,Boylston - Boylston Elementary,00390005, 19.6, 100.0, 15.3 to 1, 76.4, 94.7 +4.36,4.36,a-exp-i1,2017-18,Braintree - Archie T Morrison,00400033, 35.9, 100.0, 11.7 to 1, 87.2, 92.0 +3.85,3.85,a-exp-i1,2017-18,Braintree - Braintree High,00400505, 116.2, 98.3, 15.5 to 1, 77.0, 89.9 +4.235,4.24,a-exp-i1,2017-18,Braintree - Donald Ross,00400050, 26.1, 100.0, 10.9 to 1, 84.7, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Braintree - East Middle School,00400305, 59.0, 100.0, 12.1 to 1, 88.1, 97.3 +4.285,4.29,a-exp-i1,2017-18,Braintree - Highlands,00400015, 30.9, 100.0, 13.7 to 1, 85.7, 98.6 +4.7,4.7,a-exp-i1,2017-18,Braintree - Hollis,00400005, 33.5, 100.0, 12.9 to 1, 94.0, 100.0 +4.21,4.21,a-exp-i1,2017-18,Braintree - Liberty,00400025, 29.2, 100.0, 15.8 to 1, 84.2, 96.6 +4.295,4.3,a-exp-i1,2017-18,Braintree - Mary E Flaherty School,00400020, 28.3, 100.0, 13.3 to 1, 85.9, 96.5 +4.38,4.38,a-exp-i1,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 16.2, 100.0, 15.5 to 1, 87.6, 87.6 +4.135,4.14,a-exp-i1,2017-18,Braintree - South Middle School,00400310, 48.4, 100.0, 13.8 to 1, 82.7, 93.8 +4.125,4.13,a-exp-i1,2017-18,Brewster - Eddy Elementary,00410010, 22.6, 100.0, 10.7 to 1, 82.5, 87.8 +4.225,4.23,a-exp-i1,2017-18,Brewster - Stony Brook Elementary,00410005, 20.7, 100.0, 11.3 to 1, 84.5, 95.2 +2.05,2.05,a-exp-i1,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 29.0, 75.4, 10.6 to 1, 41.0, 96.6 +4.535,4.54,a-exp-i1,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.3, 100.0, 15.8 to 1, 90.7, 92.6 +4.725,4.73,a-exp-i1,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 86.9, 100.0, 16.8 to 1, 94.5, 94.5 +4.220000000000001,4.22,a-exp-i1,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.4, 100.0, 18.6 to 1, 84.4, 100.0 +4.725,4.73,a-exp-i1,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 18.2, 100.0, 17.1 to 1, 94.5, 97.5 +4.63,4.63,a-exp-i1,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.3, 98.4, 16.9 to 1, 92.6, 97.3 +4.365,4.37,a-exp-i1,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 47.1, 100.0, 14.1 to 1, 87.3, 91.5 +5.0,5.0,a-exp-i1,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.9, 100.0, 5.5 to 1, 100.0, 100.0 +4.545,4.55,a-exp-i1,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 15.8 to 1, 90.9, 98.0 +4.715,4.72,a-exp-i1,2017-18,Brimfield - Brimfield Elementary,00430005, 26.3, 100.0, 10.9 to 1, 94.3, 100.0 +4.58,4.58,a-exp-i1,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 35.6, 100.0, 12.8 to 1, 91.6, 80.3 +4.6049999999999995,4.6,a-exp-i1,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 95.5, 100.0, 13.4 to 1, 92.1, 90.1 +4.725,4.73,a-exp-i1,2017-18,Brockton - Ashfield Middle School,00440421, 37.6, 99.7, 13.4 to 1, 94.5, 94.7 +4.975,4.98,a-exp-i1,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 14.4, 99.3, 16.5 to 1, 99.5, 100.0 +4.265,4.27,a-exp-i1,2017-18,Brockton - Brockton Champion High School,00440515, 16.8, 99.4, 10.4 to 1, 85.3, 97.6 +4.485,4.49,a-exp-i1,2017-18,Brockton - Brockton High,00440505, 243.2, 98.7, 17.0 to 1, 89.7, 92.6 +5.0,5.0,a-exp-i1,2017-18,Brockton - Brookfield,00440010, 36.3, 99.7, 17.8 to 1, 100.0, 98.9 +4.925,4.93,a-exp-i1,2017-18,Brockton - Downey,00440110, 38.7, 99.7, 16.3 to 1, 98.5, 96.1 +4.765,4.77,a-exp-i1,2017-18,Brockton - Dr W Arnone Community School,00440001, 44.3, 99.8, 16.6 to 1, 95.3, 92.8 +4.965,4.97,a-exp-i1,2017-18,Brockton - East Middle School,00440405, 38.3, 100.0, 12.5 to 1, 99.3, 92.7 +4.865,4.87,a-exp-i1,2017-18,Brockton - Edgar B Davis,00440023, 55.3, 98.2, 18.5 to 1, 97.3, 98.2 +4.46,4.46,a-exp-i1,2017-18,Brockton - Edison Academy,00440520, 7.5, 93.4, 26.0 to 1, 89.2, 97.3 +4.765,4.77,a-exp-i1,2017-18,Brockton - Frederick Douglass Academy,00440080, 5.3, 100.0, 6.4 to 1, 95.3, 57.7 +4.83,4.83,a-exp-i1,2017-18,Brockton - Gilmore Elementary School,00440055, 29.2, 100.0, 19.1 to 1, 96.6, 98.6 +5.0,5.0,a-exp-i1,2017-18,Brockton - Hancock,00440045, 32.9, 100.0, 20.0 to 1, 100.0, 100.0 +3.845,3.85,a-exp-i1,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 12.7, 89.7, 4.6 to 1, 76.9, 80.9 +4.83,4.83,a-exp-i1,2017-18,Brockton - John F Kennedy,00440017, 31.5, 100.0, 18.6 to 1, 96.6, 100.0 +4.64,4.64,a-exp-i1,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 41.4, 99.8, 16.6 to 1, 92.8, 100.0 +4.63,4.63,a-exp-i1,2017-18,Brockton - Louis F Angelo Elementary,00440065, 46.4, 100.0, 19.7 to 1, 92.6, 99.2 +4.795,4.8,a-exp-i1,2017-18,Brockton - Manthala George Jr. School,00440003, 50.0, 99.8, 18.4 to 1, 95.9, 98.0 +4.755,4.76,a-exp-i1,2017-18,Brockton - Mary E. Baker School,00440002, 42.1, 100.0, 19.3 to 1, 95.1, 96.5 +4.865,4.87,a-exp-i1,2017-18,Brockton - North Middle School,00440410, 40.1, 100.0, 15.7 to 1, 97.3, 97.5 +4.75,4.75,a-exp-i1,2017-18,Brockton - Oscar F Raymond,00440078, 41.7, 100.0, 21.9 to 1, 95.0, 97.6 +4.58,4.58,a-exp-i1,2017-18,Brockton - South Middle School,00440415, 36.7, 100.0, 13.3 to 1, 91.6, 94.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Brockton - West Middle School,00440420, 43.1, 99.8, 14.8 to 1, 95.4, 97.7 +2.305,2.31,a-exp-i1,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 139.4, 71.1, 12.5 to 1, 46.1, 79.2 +4.58,4.58,a-exp-i1,2017-18,Brookfield - Brookfield Elementary,00450005, 23.8, 100.0, 13.1 to 1, 91.6, 95.8 +2.715,2.72,a-exp-i1,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 3.0, 100.0, 19.7 to 1, 54.3, 100.0 +4.18,4.18,a-exp-i1,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 7.2, 100.0, 8.4 to 1, 83.6, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Brookline - Brookline High,00460505, 181.2, 98.9, 11.5 to 1, 87.1, 93.2 +3.995,4.0,a-exp-i1,2017-18,Brookline - Edith C Baker,00460005, 59.2, 99.6, 12.9 to 1, 79.9, 96.9 +4.1,4.1,a-exp-i1,2017-18,Brookline - Edward Devotion,00460015, 71.4, 99.7, 11.2 to 1, 82.0, 92.5 +4.49,4.49,a-exp-i1,2017-18,Brookline - Heath,00460025, 41.7, 100.0, 13.5 to 1, 89.8, 95.7 +4.235,4.24,a-exp-i1,2017-18,Brookline - John D Runkle,00460045, 48.0, 100.0, 13.1 to 1, 84.7, 97.9 +4.255,4.26,a-exp-i1,2017-18,Brookline - Lawrence,00460030, 54.6, 98.2, 13.2 to 1, 85.1, 96.8 +3.285,3.29,a-exp-i1,2017-18,Brookline - Michael Driscoll,00460020, 44.1, 95.8, 14.2 to 1, 65.7, 91.5 +3.9549999999999996,3.95,a-exp-i1,2017-18,Brookline - Pierce,00460040, 60.9, 99.0, 14.1 to 1, 79.1, 91.6 +5.0,5.0,a-exp-i1,2017-18,Brookline - The Lynch Center,00460060, 5.2, 100.0, 11.2 to 1, 100.0, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Brookline - William H Lincoln,00460035, 49.5, 100.0, 11.7 to 1, 85.4, 93.9 +4.365,4.37,a-exp-i1,2017-18,Burlington - Burlington High,00480505, 94.6, 99.4, 11.2 to 1, 87.3, 94.7 +3.745,3.75,a-exp-i1,2017-18,Burlington - Fox Hill,00480007, 36.9, 100.0, 10.8 to 1, 74.9, 93.9 +4.265,4.27,a-exp-i1,2017-18,Burlington - Francis Wyman Elementary,00480035, 50.8, 100.0, 10.6 to 1, 85.3, 95.2 +4.535,4.54,a-exp-i1,2017-18,Burlington - Marshall Simonds Middle,00480303, 73.1, 100.0, 11.0 to 1, 90.7, 94.8 +4.555,4.56,a-exp-i1,2017-18,Burlington - Memorial,00480015, 36.7, 100.0, 11.1 to 1, 91.1, 96.6 +4.38,4.38,a-exp-i1,2017-18,Burlington - Pine Glen Elementary,00480020, 30.2, 100.0, 10.3 to 1, 87.6, 99.2 +3.475,3.48,a-exp-i1,2017-18,Cambridge - Amigos School,00490006, 35.1, 97.2, 11.3 to 1, 69.5, 76.2 +4.08,4.08,a-exp-i1,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 190.2, 97.5, 10.3 to 1, 81.6, 84.5 +4.0,4.0,a-exp-i1,2017-18,Cambridge - Cambridge Street Upper School,00490305, 33.8, 100.0, 7.3 to 1, 80.0, 91.1 +4.125,4.13,a-exp-i1,2017-18,Cambridge - Cambridgeport,00490007, 25.0, 100.0, 13.7 to 1, 82.5, 87.3 +4.495,4.5,a-exp-i1,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 30.0, 100.0, 9.9 to 1, 89.9, 96.7 +4.05,4.05,a-exp-i1,2017-18,Cambridge - Graham and Parks,00490080, 31.5, 96.8, 11.5 to 1, 81.0, 93.7 +4.6450000000000005,4.65,a-exp-i1,2017-18,Cambridge - Haggerty,00490020, 24.9, 100.0, 10.3 to 1, 92.9, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Cambridge - John M Tobin,00490065, 21.8, 100.0, 13.5 to 1, 87.1, 100.0 +4.46,4.46,a-exp-i1,2017-18,Cambridge - Kennedy-Longfellow,00490040, 27.7, 100.0, 10.6 to 1, 89.2, 92.8 +3.85,3.85,a-exp-i1,2017-18,Cambridge - King Open,00490035, 34.9, 97.1, 9.4 to 1, 77.0, 94.3 +4.0200000000000005,4.02,a-exp-i1,2017-18,Cambridge - Maria L. Baldwin,00490005, 30.6, 100.0, 11.9 to 1, 80.4, 96.7 +4.32,4.32,a-exp-i1,2017-18,Cambridge - Martin Luther King Jr.,00490030, 29.5, 100.0, 11.1 to 1, 86.4, 79.7 +4.7700000000000005,4.77,a-exp-i1,2017-18,Cambridge - Morse,00490045, 32.5, 100.0, 9.4 to 1, 95.4, 93.3 +4.5649999999999995,4.56,a-exp-i1,2017-18,Cambridge - Peabody,00490050, 26.3, 100.0, 12.3 to 1, 91.3, 96.2 +3.94,3.94,a-exp-i1,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 33.1, 97.0, 7.9 to 1, 78.8, 80.1 +3.755,3.76,a-exp-i1,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 30.2, 100.0, 8.9 to 1, 75.1, 96.7 +3.665,3.67,a-exp-i1,2017-18,Cambridge - Vassal Lane Upper School,00490320, 33.7, 100.0, 8.3 to 1, 73.3, 91.1 +3.91,3.91,a-exp-i1,2017-18,Canton - Canton High,00500505, 69.8, 100.0, 14.1 to 1, 78.2, 88.2 +4.14,4.14,a-exp-i1,2017-18,Canton - Dean S Luce,00500020, 36.1, 100.0, 13.8 to 1, 82.8, 99.5 +4.33,4.33,a-exp-i1,2017-18,Canton - John F Kennedy,00500017, 38.5, 100.0, 13.8 to 1, 86.6, 94.4 +4.455,4.46,a-exp-i1,2017-18,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 12.8 to 1, 89.1, 99.9 +4.0,4.0,a-exp-i1,2017-18,Canton - Rodman Early Childhood Center,00500010, 5.0, 100.0, 17.6 to 1, 80.0, 100.0 +4.375,4.38,a-exp-i1,2017-18,Canton - Wm H Galvin Middle,00500305, 60.4, 100.0, 12.2 to 1, 87.5, 92.7 +4.555,4.56,a-exp-i1,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 22.0, 82.2, 11.0 to 1, 91.1, 78.2 +3.72,3.72,a-exp-i1,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 65.8, 87.9, 9.0 to 1, 74.4, 80.7 +4.65,4.65,a-exp-i1,2017-18,Carlisle - Carlisle School,00510025, 56.8, 100.0, 10.7 to 1, 93.0, 100.0 +4.01,4.01,a-exp-i1,2017-18,Carver - Carver Elementary School,00520015, 50.6, 100.0, 15.5 to 1, 80.2, 98.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,Carver - Carver Middle/High School,00520405, 67.3, 98.5, 11.8 to 1, 83.7, 91.1 +5.0,5.0,a-exp-i1,2017-18,Central Berkshire - Becket Washington School,06350005, 10.1, 100.0, 12.4 to 1, 100.0, 96.0 +4.82,4.82,a-exp-i1,2017-18,Central Berkshire - Craneville,06350025, 28.0, 100.0, 14.7 to 1, 96.4, 99.3 +5.0,5.0,a-exp-i1,2017-18,Central Berkshire - Kittredge,06350035, 12.5, 100.0, 12.0 to 1, 100.0, 88.8 +4.95,4.95,a-exp-i1,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 30.0, 100.0, 12.7 to 1, 99.0, 96.7 +4.885,4.89,a-exp-i1,2017-18,Central Berkshire - Wahconah Regional High,06350505, 44.3, 100.0, 12.1 to 1, 97.7, 100.0 +4.21,4.21,a-exp-i1,2017-18,Chelmsford - Byam School,00560030, 38.0, 100.0, 13.3 to 1, 84.2, 97.4 +4.029999999999999,4.03,a-exp-i1,2017-18,Chelmsford - Center Elementary School,00560005, 31.0, 100.0, 14.5 to 1, 80.6, 96.8 +4.675,4.68,a-exp-i1,2017-18,Chelmsford - Charles D Harrington,00560025, 31.0, 100.0, 15.9 to 1, 93.5, 100.0 +4.495,4.5,a-exp-i1,2017-18,Chelmsford - Chelmsford High,00560505, 109.5, 100.0, 13.5 to 1, 89.9, 97.3 +4.24,4.24,a-exp-i1,2017-18,Chelmsford - Col Moses Parker School,00560305, 62.3, 100.0, 11.5 to 1, 84.8, 93.6 +5.0,5.0,a-exp-i1,2017-18,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 18.9 to 1, 100.0, 85.7 +4.265,4.27,a-exp-i1,2017-18,Chelmsford - McCarthy Middle School,00560310, 67.8, 100.0, 12.0 to 1, 85.3, 91.2 +4.8100000000000005,4.81,a-exp-i1,2017-18,Chelmsford - South Row,00560015, 26.0, 100.0, 15.4 to 1, 96.2, 100.0 +2.66,2.66,a-exp-i1,2017-18,Chelsea - Chelsea High,00570505, 112.8, 99.3, 13.6 to 1, 53.2, 71.6 +3.28,3.28,a-exp-i1,2017-18,Chelsea - Clark Avenue School,00570050, 32.0, 96.9, 17.3 to 1, 65.6, 75.0 +3.8,3.8,a-exp-i1,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 37.5, 100.0, 15.7 to 1, 76.0, 89.3 +3.6100000000000003,3.61,a-exp-i1,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.3, 100.0, 16.5 to 1, 72.2, 84.5 +3.16,3.16,a-exp-i1,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 38.0, 94.7, 14.9 to 1, 63.2, 100.0 +3.8,3.8,a-exp-i1,2017-18,Chelsea - George F. Kelly Elementary,00570035, 37.5, 100.0, 14.6 to 1, 76.0, 100.0 +2.17,2.17,a-exp-i1,2017-18,Chelsea - Joseph A. Browne School,00570055, 40.7, 100.0, 15.1 to 1, 43.4, 70.5 +4.215,4.22,a-exp-i1,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 51.0, 98.0, 17.0 to 1, 84.3, 94.1 +3.125,3.13,a-exp-i1,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 32.0, 96.9, 15.9 to 1, 62.5, 90.6 +4.665,4.67,a-exp-i1,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.9, 100.0, 9.1 to 1, 93.3, 100.0 +4.465,4.47,a-exp-i1,2017-18,Chicopee - Barry,00610003, 28.0, 100.0, 14.3 to 1, 89.3, 92.9 +4.875,4.88,a-exp-i1,2017-18,Chicopee - Belcher,00610010, 19.9, 100.0, 13.6 to 1, 97.5, 95.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Chicopee - Bellamy Middle,00610305, 77.7, 98.7, 10.3 to 1, 87.1, 89.7 +4.375,4.38,a-exp-i1,2017-18,Chicopee - Bowe,00610015, 32.1, 100.0, 14.9 to 1, 87.5, 96.9 +4.93,4.93,a-exp-i1,2017-18,Chicopee - Bowie,00610020, 23.6, 100.0, 14.1 to 1, 98.6, 100.0 +4.7,4.7,a-exp-i1,2017-18,Chicopee - Chicopee Academy,00610021, 16.6, 100.0, 4.9 to 1, 94.0, 81.9 +4.6049999999999995,4.6,a-exp-i1,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 114.8, 99.1, 11.9 to 1, 92.1, 89.5 +4.515,4.52,a-exp-i1,2017-18,Chicopee - Chicopee High,00610505, 87.5, 97.7, 10.9 to 1, 90.3, 94.3 +4.42,4.42,a-exp-i1,2017-18,Chicopee - Dupont Middle,00610310, 60.5, 96.7, 12.4 to 1, 88.4, 85.1 +4.24,4.24,a-exp-i1,2017-18,Chicopee - Fairview Elementary,00610050, 33.7, 100.0, 13.7 to 1, 84.8, 94.1 +4.404999999999999,4.4,a-exp-i1,2017-18,Chicopee - Gen John J Stefanik,00610090, 28.9, 100.0, 13.9 to 1, 88.1, 100.0 +4.07,4.07,a-exp-i1,2017-18,Chicopee - Lambert-Lavoie,00610040, 24.0, 100.0, 13.2 to 1, 81.4, 95.8 +3.7950000000000004,3.8,a-exp-i1,2017-18,Chicopee - Litwin,00610022, 29.0, 100.0, 14.4 to 1, 75.9, 96.6 +4.8,4.8,a-exp-i1,2017-18,Chicopee - Streiber Memorial School,00610065, 18.0, 100.0, 15.5 to 1, 96.0, 100.0 +4.285,4.29,a-exp-i1,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 17.2 to 1, 85.7, 92.9 +3.965,3.97,a-exp-i1,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 41.0, 71.3, 9.6 to 1, 79.3, 88.4 +1.2550000000000001,1.26,a-exp-i1,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 26.7, 64.8, 10.6 to 1, 25.1, 77.5 +0.93,1,a-exp-i1,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 24.7, 72.1, 11.0 to 1, 18.6, 70.0 +0.8150000000000001,1,a-exp-i1,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 16.0, 80.0, 14.8 to 1, 16.3, 67.5 +4.92,4.92,a-exp-i1,2017-18,Clarksburg - Clarksburg Elementary,00630010, 15.5, 97.4, 12.5 to 1, 98.4, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Clinton - Clinton Elementary,00640050, 53.7, 100.0, 12.7 to 1, 88.8, 92.6 +3.145,3.15,a-exp-i1,2017-18,Clinton - Clinton Middle School,00640305, 57.2, 98.3, 13.0 to 1, 62.9, 98.3 +4.154999999999999,4.15,a-exp-i1,2017-18,Clinton - Clinton Senior High,00640505, 40.4, 100.0, 11.3 to 1, 83.1, 87.6 +1.215,1.22,a-exp-i1,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 37.0, 39.8, 9.3 to 1, 24.3, 85.9 +4.115,4.12,a-exp-i1,2017-18,Cohasset - Cohasset Middle/High School,00650505, 71.7, 100.0, 11.8 to 1, 82.3, 94.4 +4.55,4.55,a-exp-i1,2017-18,Cohasset - Deer Hill,00650005, 22.2, 100.0, 17.6 to 1, 91.0, 100.0 +3.925,3.93,a-exp-i1,2017-18,Cohasset - Joseph Osgood,00650010, 18.6, 100.0, 18.6 to 1, 78.5, 100.0 +1.625,1.63,a-exp-i1,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 40.0, 87.5, 19.0 to 1, 32.5, 80.0 +2.43,2.43,a-exp-i1,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 35.4, 80.3, 10.3 to 1, 48.6, 81.7 +2.045,2.05,a-exp-i1,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 33.0, 62.1, 9.7 to 1, 40.9, 97.0 +1.9100000000000001,1.91,a-exp-i1,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.3, 77.9, 8.8 to 1, 38.2, 85.9 +1.4949999999999999,1.5,a-exp-i1,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 33.5, 89.6, 9.6 to 1, 29.9, 91.0 +4.33,4.33,a-exp-i1,2017-18,Concord - Alcott,00670005, 38.8, 100.0, 12.6 to 1, 86.6, 100.0 +4.74,4.74,a-exp-i1,2017-18,Concord - Concord Middle,00670305, 55.7, 100.0, 13.0 to 1, 94.8, 89.2 +4.025,4.03,a-exp-i1,2017-18,Concord - Thoreau,00670020, 37.9, 100.0, 12.1 to 1, 80.5, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Concord - Willard,00670030, 36.9, 100.0, 11.9 to 1, 85.4, 100.0 +4.63,4.63,a-exp-i1,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 102.6, 100.0, 12.4 to 1, 92.6, 93.2 +0.79,1,a-exp-i1,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 25.3, 81.2, 17.8 to 1, 15.8, 84.2 +4.585,4.59,a-exp-i1,2017-18,Conway - Conway Grammar,00680005, 13.4, 100.0, 10.3 to 1, 91.7, 100.0 +4.265,4.27,a-exp-i1,2017-18,Danvers - Danvers High,00710505, 77.4, 98.7, 12.2 to 1, 85.3, 89.8 +4.41,4.41,a-exp-i1,2017-18,Danvers - Great Oak,00710015, 25.5, 100.0, 14.9 to 1, 88.2, 100.0 +4.63,4.63,a-exp-i1,2017-18,Danvers - Highlands,00710010, 27.0, 100.0, 13.8 to 1, 92.6, 90.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Danvers - Holten Richmond Middle School,00710305, 65.3, 98.5, 12.6 to 1, 86.2, 89.3 +4.725,4.73,a-exp-i1,2017-18,Danvers - Ivan G Smith,00710032, 18.0, 100.0, 15.7 to 1, 94.5, 97.2 +4.445,4.45,a-exp-i1,2017-18,Danvers - Riverside,00710030, 27.0, 100.0, 13.1 to 1, 88.9, 96.3 +4.195,4.2,a-exp-i1,2017-18,Danvers - Willis E Thorpe,00710045, 24.8, 100.0, 12.5 to 1, 83.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 10.7, 100.0, 13.1 to 1, 100.0, 81.3 +4.66,4.66,a-exp-i1,2017-18,Dartmouth - Dartmouth High,00720505, 79.2, 98.3, 13.5 to 1, 93.2, 96.3 +4.33,4.33,a-exp-i1,2017-18,Dartmouth - Dartmouth Middle,00720050, 78.0, 98.8, 12.4 to 1, 86.6, 96.3 +4.8100000000000005,4.81,a-exp-i1,2017-18,Dartmouth - George H Potter,00720030, 26.4, 100.0, 16.3 to 1, 96.2, 98.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Dartmouth - James M. Quinn School,00720040, 45.5, 100.0, 13.9 to 1, 91.2, 100.0 +4.125,4.13,a-exp-i1,2017-18,Dartmouth - Joseph Demello,00720015, 28.6, 100.0, 15.1 to 1, 82.5, 98.5 +4.3,4.3,a-exp-i1,2017-18,Dedham - Avery,00730010, 28.5, 100.0, 11.2 to 1, 86.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,Dedham - Dedham High,00730505, 65.0, 100.0, 11.3 to 1, 86.2, 92.3 +4.13,4.13,a-exp-i1,2017-18,Dedham - Dedham Middle School,00730305, 69.0, 95.7, 8.7 to 1, 82.6, 98.6 +4.7299999999999995,4.73,a-exp-i1,2017-18,Dedham - Early Childhood Center,00730005, 18.5, 100.0, 14.6 to 1, 94.6, 100.0 +4.54,4.54,a-exp-i1,2017-18,Dedham - Greenlodge,00730025, 21.8, 100.0, 12.2 to 1, 90.8, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Dedham - Oakdale,00730030, 21.7, 100.0, 13.2 to 1, 95.4, 100.0 +4.4799999999999995,4.48,a-exp-i1,2017-18,Dedham - Riverdale,00730045, 19.2, 100.0, 9.3 to 1, 89.6, 94.8 +4.275,4.28,a-exp-i1,2017-18,Deerfield - Deerfield Elementary,00740015, 37.4, 97.3, 10.7 to 1, 85.5, 92.5 +4.205,4.21,a-exp-i1,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.7, 98.8, 12.1 to 1, 84.1, 89.0 +4.65,4.65,a-exp-i1,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 43.1, 100.0, 8.1 to 1, 93.0, 97.7 +4.485,4.49,a-exp-i1,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 29.0, 100.0, 9.4 to 1, 89.7, 100.0 +4.55,4.55,a-exp-i1,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 44.3, 100.0, 10.1 to 1, 91.0, 86.4 +4.695,4.7,a-exp-i1,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 49.0, 100.0, 11.0 to 1, 93.9, 98.0 +4.720000000000001,4.72,a-exp-i1,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 35.7, 100.0, 11.7 to 1, 94.4, 100.0 +4.7,4.7,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 33.1, 100.0, 14.0 to 1, 94.0, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 29.2, 100.0, 13.4 to 1, 96.2, 100.0 +4.365,4.37,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 78.7, 100.0, 11.6 to 1, 87.3, 90.0 +4.775,4.78,a-exp-i1,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 44.2, 100.0, 13.2 to 1, 95.5, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Dighton-Rehoboth - Palmer River,06500010, 41.3, 100.0, 13.4 to 1, 90.4, 100.0 +3.825,3.83,a-exp-i1,2017-18,Douglas - Douglas Elementary School,00770015, 23.5, 100.0, 16.0 to 1, 76.5, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Douglas - Douglas High School,00770505, 34.3, 97.7, 11.1 to 1, 81.9, 81.9 +3.965,3.97,a-exp-i1,2017-18,Douglas - Douglas Middle School,00770305, 21.4, 100.0, 16.2 to 1, 79.3, 93.0 +4.025,4.03,a-exp-i1,2017-18,Douglas - Douglas Primary School,00770005, 13.1, 100.0, 17.1 to 1, 80.5, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Dover - Chickering,00780005, 41.8, 100.0, 11.8 to 1, 85.6, 97.6 +4.49,4.49,a-exp-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.8, 100.0, 11.5 to 1, 89.8, 95.8 +4.8549999999999995,4.85,a-exp-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 48.7, 100.0, 10.8 to 1, 97.1, 99.1 +4.095000000000001,4.1,a-exp-i1,2017-18,Dracut - Brookside Elementary,00790035, 22.1, 100.0, 20.7 to 1, 81.9, 92.3 +3.9,3.9,a-exp-i1,2017-18,Dracut - Dracut Senior High,00790505, 61.0, 95.1, 13.7 to 1, 78.0, 86.9 +3.15,3.15,a-exp-i1,2017-18,Dracut - George H. Englesby Elementary School,00790045, 27.0, 100.0, 19.1 to 1, 63.0, 92.6 +4.42,4.42,a-exp-i1,2017-18,Dracut - Greenmont Avenue,00790030, 17.3, 100.0, 17.0 to 1, 88.4, 98.3 +4.63,4.63,a-exp-i1,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 27.1, 100.0, 21.1 to 1, 92.6, 96.3 +3.8,3.8,a-exp-i1,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 55.1, 100.0, 15.9 to 1, 76.0, 81.1 +3.685,3.69,a-exp-i1,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.0, 100.0, 14.9 to 1, 73.7, 89.5 +4.49,4.49,a-exp-i1,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.5, 100.0, 14.1 to 1, 89.8, 100.0 +4.9,4.9,a-exp-i1,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 50.0, 100.0, 13.8 to 1, 98.0, 100.0 +4.195,4.2,a-exp-i1,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 28.0, 100.0, 14.0 to 1, 83.9, 96.4 +4.665,4.67,a-exp-i1,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 46.1, 100.0, 12.5 to 1, 93.3, 95.7 +4.515,4.52,a-exp-i1,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 31.0, 100.0, 15.5 to 1, 90.3, 96.8 +4.715,4.72,a-exp-i1,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 17.5, 100.0, 15.8 to 1, 94.3, 100.0 +4.385,4.39,a-exp-i1,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 73.0, 100.0, 16.0 to 1, 87.7, 89.0 +4.26,4.26,a-exp-i1,2017-18,Duxbury - Alden School,00820004, 47.1, 97.9, 14.3 to 1, 85.2, 93.6 +4.785,4.79,a-exp-i1,2017-18,Duxbury - Chandler Elementary,00820006, 46.4, 100.0, 13.5 to 1, 95.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Duxbury - Duxbury High,00820505, 80.0, 99.6, 13.2 to 1, 94.2, 96.3 +4.16,4.16,a-exp-i1,2017-18,Duxbury - Duxbury Middle,00820305, 55.3, 97.0, 13.4 to 1, 83.2, 90.6 +3.815,3.82,a-exp-i1,2017-18,East Bridgewater - Central,00830005, 39.3, 100.0, 15.3 to 1, 76.3, 97.5 +4.0649999999999995,4.06,a-exp-i1,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 71.3, 98.6, 14.5 to 1, 81.3, 87.4 +3.72,3.72,a-exp-i1,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 43.0, 100.0, 15.4 to 1, 74.4, 93.0 +4.720000000000001,4.72,a-exp-i1,2017-18,East Longmeadow - Birchland Park,00870305, 53.5, 100.0, 12.4 to 1, 94.4, 96.3 +4.68,4.68,a-exp-i1,2017-18,East Longmeadow - East Longmeadow High,00870505, 62.5, 100.0, 13.4 to 1, 93.6, 98.4 +4.8950000000000005,4.9,a-exp-i1,2017-18,East Longmeadow - Mapleshade,00870010, 23.9, 100.0, 11.8 to 1, 97.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,East Longmeadow - Meadow Brook,00870013, 41.8, 100.0, 13.9 to 1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,East Longmeadow - Mountain View,00870015, 24.4, 100.0, 12.0 to 1, 93.9, 100.0 +4.529999999999999,4.53,a-exp-i1,2017-18,Eastham - Eastham Elementary,00850005, 23.3, 100.0, 7.4 to 1, 90.6, 100.0 +4.35,4.35,a-exp-i1,2017-18,Easthampton - Center School,00860005, 14.4, 100.0, 13.7 to 1, 87.0, 97.6 +4.505,4.51,a-exp-i1,2017-18,Easthampton - Easthampton High,00860505, 32.2, 100.0, 14.5 to 1, 90.1, 92.2 +4.09,4.09,a-exp-i1,2017-18,Easthampton - Maple,00860010, 18.3, 100.0, 13.5 to 1, 81.8, 98.1 +3.7600000000000002,3.76,a-exp-i1,2017-18,Easthampton - Neil A Pepin,00860020, 15.2, 100.0, 11.8 to 1, 75.2, 98.0 +3.685,3.69,a-exp-i1,2017-18,Easthampton - White Brook Middle School,00860305, 35.4, 97.2, 12.7 to 1, 73.7, 88.7 +4.62,4.62,a-exp-i1,2017-18,Easton - Center School,00880003, 18.7, 100.0, 14.2 to 1, 92.4, 97.4 +4.285,4.29,a-exp-i1,2017-18,Easton - Easton Middle School,00880405, 67.7, 100.0, 13.1 to 1, 85.7, 100.0 +4.835,4.84,a-exp-i1,2017-18,Easton - Moreau Hall,00880020, 15.2, 100.0, 14.9 to 1, 96.7, 100.0 +4.595000000000001,4.6,a-exp-i1,2017-18,Easton - Oliver Ames High,00880505, 81.3, 100.0, 14.6 to 1, 91.9, 94.6 +4.985,4.99,a-exp-i1,2017-18,Easton - Parkview Elementary,00880015, 24.1, 100.0, 13.3 to 1, 99.7, 97.9 +4.455,4.46,a-exp-i1,2017-18,Easton - Richardson Olmsted School,00880025, 58.0, 100.0, 14.4 to 1, 89.1, 99.1 +4.195,4.2,a-exp-i1,2017-18,Edgartown - Edgartown Elementary,00890005, 38.5, 98.8, 8.9 to 1, 83.9, 91.6 +3.215,3.22,a-exp-i1,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 35.3, 92.6, 10.8 to 1, 64.3, 83.0 +4.475,4.48,a-exp-i1,2017-18,Erving - Erving Elementary,00910030, 18.1, 97.2, 7.8 to 1, 89.5, 100.0 +3.8850000000000002,3.89,a-exp-i1,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 122.7, 95.6, 11.3 to 1, 77.7, 73.9 +3.8899999999999997,3.89,a-exp-i1,2017-18,Everett - Adams School,00930003, 9.0, 100.0, 22.3 to 1, 77.8, 100.0 +4.535,4.54,a-exp-i1,2017-18,Everett - Devens School,00930030, 10.8, 100.0, 5.2 to 1, 90.7, 78.1 +3.6450000000000005,3.65,a-exp-i1,2017-18,Everett - Everett High,00930505, 149.7, 98.0, 13.2 to 1, 72.9, 79.3 +4.125,4.13,a-exp-i1,2017-18,Everett - George Keverian School,00930028, 63.9, 96.9, 13.5 to 1, 82.5, 89.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Everett - Lafayette School,00930038, 61.8, 98.4, 15.3 to 1, 79.8, 87.8 +3.7600000000000002,3.76,a-exp-i1,2017-18,Everett - Madeline English School,00930018, 68.1, 100.0, 12.2 to 1, 75.2, 89.7 +3.7299999999999995,3.73,a-exp-i1,2017-18,Everett - Parlin School,00930058, 60.9, 100.0, 13.7 to 1, 74.6, 81.4 +4.14,4.14,a-exp-i1,2017-18,Everett - Sumner G. Whittier School,00930010, 53.4, 100.0, 11.6 to 1, 82.8, 94.4 +3.905,3.91,a-exp-i1,2017-18,Everett - Webster School,00930015, 51.0, 100.0, 14.5 to 1, 78.1, 90.9 +1.365,1.37,a-exp-i1,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 98.4, 60.0, 11.4 to 1, 27.3, 83.7 +4.18,4.18,a-exp-i1,2017-18,Fairhaven - East Fairhaven,00940010, 27.5, 100.0, 15.2 to 1, 83.6, 100.0 +4.41,4.41,a-exp-i1,2017-18,Fairhaven - Fairhaven High,00940505, 49.0, 97.5, 13.4 to 1, 88.2, 93.9 +4.095000000000001,4.1,a-exp-i1,2017-18,Fairhaven - Hastings Middle,00940305, 34.5, 99.3, 13.6 to 1, 81.9, 94.2 +4.595000000000001,4.6,a-exp-i1,2017-18,Fairhaven - Leroy Wood,00940030, 31.0, 100.0, 16.5 to 1, 91.9, 100.0 +3.475,3.48,a-exp-i1,2017-18,Fall River - B M C Durfee High,00950505, 182.0, 92.4, 11.6 to 1, 69.5, 72.9 +2.965,2.97,a-exp-i1,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 54.0, 90.8, 13.7 to 1, 59.3, 75.9 +0.0,1,a-exp-i1,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0,N/A,"","" +2.445,2.45,a-exp-i1,2017-18,Fall River - Henry Lord Community School,00950017, 55.2, 87.3, 11.8 to 1, 48.9, 72.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Fall River - James Tansey,00950140, 18.4, 89.1, 17.1 to 1, 80.6, 94.6 +3.2950000000000004,3.3,a-exp-i1,2017-18,Fall River - John J Doran,00950045, 41.0, 85.4, 12.8 to 1, 65.9, 65.9 +2.7399999999999998,2.74,a-exp-i1,2017-18,Fall River - Letourneau Elementary School,00950013, 39.8, 95.0, 15.5 to 1, 54.8, 73.1 +1.72,1.72,a-exp-i1,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 51.8, 88.4, 13.7 to 1, 34.4, 78.8 +3.9299999999999997,3.93,a-exp-i1,2017-18,Fall River - Matthew J Kuss Middle,00950320, 56.1, 96.4, 13.4 to 1, 78.6, 75.0 +3.255,3.26,a-exp-i1,2017-18,Fall River - Morton Middle,00950315, 57.4, 93.0, 10.2 to 1, 65.1, 65.1 +3.66,3.66,a-exp-i1,2017-18,Fall River - North End Elementary,00950005, 48.4, 93.8, 15.9 to 1, 73.2, 93.8 +2.92,2.92,a-exp-i1,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 19.2, 83.7, 9.5 to 1, 58.4, 73.9 +4.04,4.04,a-exp-i1,2017-18,Fall River - Samuel Watson,00950145, 18.3, 100.0, 15.9 to 1, 80.8, 78.2 +3.905,3.91,a-exp-i1,2017-18,Fall River - Spencer Borden,00950130, 39.7, 98.2, 14.7 to 1, 78.1, 89.9 +3.285,3.29,a-exp-i1,2017-18,Fall River - Stone PK-12 School,00950340, 11.7, 79.4, 3.3 to 1, 65.7, 76.0 +3.7049999999999996,3.7,a-exp-i1,2017-18,Fall River - Talbot Innovation School,00950305, 49.9, 98.0, 10.1 to 1, 74.1, 70.5 +3.665,3.67,a-exp-i1,2017-18,Fall River - William S Greene,00950065, 56.2, 92.9, 13.3 to 1, 73.3, 87.6 +4.01,4.01,a-exp-i1,2017-18,Falmouth - East Falmouth Elementary,00960005, 29.2, 100.0, 9.0 to 1, 80.2, 100.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,Falmouth - Falmouth High,00960505, 67.6, 97.9, 12.5 to 1, 83.7, 85.2 +4.6,4.6,a-exp-i1,2017-18,Falmouth - Lawrence,00960405, 51.6, 100.0, 11.6 to 1, 92.0, 92.2 +3.9299999999999997,3.93,a-exp-i1,2017-18,Falmouth - Morse Pond School,00960305, 45.7, 97.8, 12.1 to 1, 78.6, 93.4 +4.255,4.26,a-exp-i1,2017-18,Falmouth - Mullen-Hall,00960020, 38.8, 100.0, 11.2 to 1, 85.1, 93.3 +4.495,4.5,a-exp-i1,2017-18,Falmouth - North Falmouth Elementary,00960030, 27.8, 100.0, 11.5 to 1, 89.9, 96.4 +3.9,3.9,a-exp-i1,2017-18,Falmouth - Teaticket,00960015, 30.9, 100.0, 11.8 to 1, 78.0, 97.4 +3.9899999999999998,3.99,a-exp-i1,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 13.5, 100.0, 8.9 to 1, 79.8, 95.6 +3.8200000000000003,3.82,a-exp-i1,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 46.6, 97.9, 12.7 to 1, 76.4, 85.0 +4.745,4.75,a-exp-i1,2017-18,Fitchburg - Crocker Elementary,00970016, 39.0, 100.0, 17.1 to 1, 94.9, 97.4 +4.66,4.66,a-exp-i1,2017-18,Fitchburg - Fitchburg High,00970505, 89.1, 98.9, 13.5 to 1, 93.2, 91.0 +4.45,4.45,a-exp-i1,2017-18,Fitchburg - Goodrich Academy,00970510, 9.1, 100.0, 18.6 to 1, 89.0, 100.0 +4.0,4.0,a-exp-i1,2017-18,Fitchburg - McKay Arts Academy,00970340, 45.0, 100.0, 15.1 to 1, 80.0, 91.1 +4.095000000000001,4.1,a-exp-i1,2017-18,Fitchburg - Memorial Intermediate,00970048, 49.8, 100.0, 14.2 to 1, 81.9, 94.0 +3.69,3.69,a-exp-i1,2017-18,Fitchburg - Reingold Elementary,00970043, 42.0, 100.0, 15.9 to 1, 73.8, 92.9 +4.0200000000000005,4.02,a-exp-i1,2017-18,Fitchburg - South Street Elementary,00970060, 46.0, 100.0, 14.5 to 1, 80.4, 100.0 +5.0,5.0,a-exp-i1,2017-18,Florida - Abbott Memorial,00980005, 11.8, 91.5, 6.8 to 1, 100.0, 96.6 +3.935,3.94,a-exp-i1,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.7, 57.9, 10.7 to 1, 78.7, 92.2 +4.555,4.56,a-exp-i1,2017-18,Foxborough - Charles Taylor Elementary,00990050, 19.3, 100.0, 12.3 to 1, 91.1, 100.0 +4.495,4.5,a-exp-i1,2017-18,Foxborough - Foxborough High,00990505, 64.1, 100.0, 12.6 to 1, 89.9, 93.8 +4.470000000000001,4.47,a-exp-i1,2017-18,Foxborough - John J Ahern,00990405, 66.1, 100.0, 12.7 to 1, 89.4, 98.5 +4.765,4.77,a-exp-i1,2017-18,Foxborough - Mabelle M Burrell,00990015, 21.4, 100.0, 14.8 to 1, 95.3, 100.0 +4.325,4.33,a-exp-i1,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 31.8, 100.0, 12.4 to 1, 86.5, 100.0 +3.12,3.12,a-exp-i1,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 111.7, 78.4, 13.2 to 1, 62.4, 89.3 +3.29,3.29,a-exp-i1,2017-18,Framingham - Barbieri Elementary,01000035, 52.6, 96.2, 12.9 to 1, 65.8, 86.7 +3.78,3.78,a-exp-i1,2017-18,Framingham - Brophy,01000006, 41.3, 100.0, 11.5 to 1, 75.6, 96.4 +4.35,4.35,a-exp-i1,2017-18,Framingham - Cameron Middle School,01000302, 51.1, 100.0, 10.5 to 1, 87.0, 91.2 +4.475,4.48,a-exp-i1,2017-18,Framingham - Charlotte A Dunning,01000007, 36.1, 100.0, 13.1 to 1, 89.5, 100.0 +3.5450000000000004,3.55,a-exp-i1,2017-18,Framingham - Framingham High School,01000515, 133.2, 97.7, 16.3 to 1, 70.9, 89.6 +3.6799999999999997,3.68,a-exp-i1,2017-18,Framingham - Fuller Middle,01000305, 39.7, 100.0, 12.6 to 1, 73.6, 89.9 +3.3299999999999996,3.33,a-exp-i1,2017-18,Framingham - Hemenway,01000015, 42.2, 100.0, 13.5 to 1, 66.6, 95.0 +4.43,4.43,a-exp-i1,2017-18,Framingham - Juniper Hill School,01000001, 17.5, 100.0, 15.6 to 1, 88.6, 100.0 +2.56,2.56,a-exp-i1,2017-18,Framingham - King Elementary School,01000005, 20.9, 100.0, 13.5 to 1, 51.2, 83.7 +3.7399999999999998,3.74,a-exp-i1,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 35.3, 100.0, 10.5 to 1, 74.8, 95.7 +4.455,4.46,a-exp-i1,2017-18,Framingham - Miriam F McCarthy School,01000050, 50.5, 100.0, 11.2 to 1, 89.1, 100.0 +4.5,4.5,a-exp-i1,2017-18,Framingham - Potter Road,01000039, 35.2, 100.0, 14.6 to 1, 90.0, 97.2 +4.0200000000000005,4.02,a-exp-i1,2017-18,Framingham - Walsh Middle,01000310, 60.1, 97.0, 12.7 to 1, 80.4, 87.5 +3.37,3.37,a-exp-i1,2017-18,Framingham - Woodrow Wilson,01000055, 46.3, 97.8, 12.2 to 1, 67.4, 92.4 +3.055,3.06,a-exp-i1,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.3, 60.2, 8.6 to 1, 61.1, 95.7 +4.33,4.33,a-exp-i1,2017-18,Franklin - Annie Sullivan Middle School,01010040, 39.8, 100.0, 11.2 to 1, 86.6, 95.0 +4.325,4.33,a-exp-i1,2017-18,Franklin - Davis Thayer,01010035, 20.1, 100.0, 11.5 to 1, 86.5, 100.0 +3.75,3.75,a-exp-i1,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 8.0, 100.0, 13.0 to 1, 75.0, 100.0 +3.915,3.92,a-exp-i1,2017-18,Franklin - Franklin High,01010505, 124.8, 98.6, 14.3 to 1, 78.3, 88.6 +4.475,4.48,a-exp-i1,2017-18,Franklin - Helen Keller Elementary,01010012, 28.7, 100.0, 14.0 to 1, 89.5, 100.0 +3.8299999999999996,3.83,a-exp-i1,2017-18,Franklin - Horace Mann,01010405, 42.1, 98.8, 11.0 to 1, 76.6, 92.9 +4.945,4.95,a-exp-i1,2017-18,Franklin - J F Kennedy Memorial,01010013, 23.5, 100.0, 15.6 to 1, 98.9, 100.0 +4.5649999999999995,4.56,a-exp-i1,2017-18,Franklin - Jefferson Elementary,01010010, 24.4, 100.0, 13.8 to 1, 91.3, 95.9 +4.035,4.04,a-exp-i1,2017-18,Franklin - Oak Street Elementary,01010030, 25.3, 100.0, 15.4 to 1, 80.7, 100.0 +4.365,4.37,a-exp-i1,2017-18,Franklin - Parmenter,01010032, 23.6, 100.0, 13.7 to 1, 87.3, 100.0 +4.205,4.21,a-exp-i1,2017-18,Franklin - Remington Middle,01010310, 41.1, 100.0, 10.7 to 1, 84.1, 92.2 +4.43,4.43,a-exp-i1,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 50.0, 95.1, 9.7 to 1, 88.6, 82.8 +3.925,3.93,a-exp-i1,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 60.8, 100.0, 12.8 to 1, 78.5, 86.8 +4.25,4.25,a-exp-i1,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 27.1, 100.0, 16.0 to 1, 85.0, 96.3 +4.285,4.29,a-exp-i1,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 14.7 to 1, 85.7, 100.0 +4.675,4.68,a-exp-i1,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 47.1, 100.0, 16.0 to 1, 93.5, 89.4 +4.82,4.82,a-exp-i1,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 29.1, 100.0, 15.1 to 1, 96.4, 100.0 +4.3,4.3,a-exp-i1,2017-18,Frontier - Frontier Regional,06700505, 51.5, 99.6, 12.1 to 1, 86.0, 94.2 +4.335,4.34,a-exp-i1,2017-18,Gardner - Elm Street School,01030001, 37.5, 100.0, 14.7 to 1, 86.7, 94.7 +3.3600000000000003,3.36,a-exp-i1,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 6.9, 100.0, 10.7 to 1, 67.2, 70.8 +4.135,4.14,a-exp-i1,2017-18,Gardner - Gardner High,01030505, 57.6, 100.0, 12.0 to 1, 82.7, 81.3 +3.9200000000000004,3.92,a-exp-i1,2017-18,Gardner - Gardner Middle School,01030405, 41.7, 100.0, 13.0 to 1, 78.4, 92.8 +4.135,4.14,a-exp-i1,2017-18,Gardner - Waterford Street,01030020, 28.9, 100.0, 16.2 to 1, 82.7, 96.5 +4.09,4.09,a-exp-i1,2017-18,Gateway - Chester Elementary,06720059, 11.0, 90.9, 10.8 to 1, 81.8, 100.0 +3.845,3.85,a-exp-i1,2017-18,Gateway - Gateway Regional High,06720505, 23.8, 97.9, 9.0 to 1, 76.9, 91.6 +4.6049999999999995,4.6,a-exp-i1,2017-18,Gateway - Gateway Regional Middle School,06720405, 18.5, 97.3, 10.7 to 1, 92.1, 100.0 +4.79,4.79,a-exp-i1,2017-18,Gateway - Littleville Elementary School,06720143, 24.0, 100.0, 12.5 to 1, 95.8, 100.0 +4.43,4.43,a-exp-i1,2017-18,Georgetown - Georgetown High School,01050505, 40.8, 100.0, 9.8 to 1, 88.6, 89.9 +4.545,4.55,a-exp-i1,2017-18,Georgetown - Georgetown Middle School,01050305, 12.1, 100.0, 19.0 to 1, 90.9, 99.5 +4.404999999999999,4.4,a-exp-i1,2017-18,Georgetown - Penn Brook,01050010, 38.7, 99.9, 17.9 to 1, 88.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 30.3 to 1, 100.0, 100.0 +3.28,3.28,a-exp-i1,2017-18,Gill-Montague - Gill Elementary,06740005, 9.3, 100.0, 14.4 to 1, 65.6, 100.0 +4.26,4.26,a-exp-i1,2017-18,Gill-Montague - Great Falls Middle,06740310, 21.6, 95.4, 11.3 to 1, 85.2, 94.5 +4.555,4.56,a-exp-i1,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 14.6, 100.0, 11.1 to 1, 91.1, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 22.2, 100.0, 9.7 to 1, 88.8, 100.0 +4.635,4.64,a-exp-i1,2017-18,Gill-Montague - Turners Fall High,06740505, 24.5, 95.9, 8.9 to 1, 92.7, 92.7 +2.4850000000000003,2.49,a-exp-i1,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 42.9, 93.0, 11.9 to 1, 49.7, 65.5 +4.37,4.37,a-exp-i1,2017-18,Gloucester - Beeman Memorial,01070010, 28.6, 100.0, 11.9 to 1, 87.4, 96.5 +4.6,4.6,a-exp-i1,2017-18,Gloucester - East Gloucester Elementary,01070020, 18.7, 100.0, 11.5 to 1, 92.0, 100.0 +4.505,4.51,a-exp-i1,2017-18,Gloucester - Gloucester High,01070505, 81.2, 96.3, 9.8 to 1, 90.1, 85.2 +4.285,4.29,a-exp-i1,2017-18,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 15.3 to 1, 85.7, 100.0 +3.72,3.72,a-exp-i1,2017-18,Gloucester - Plum Cove School,01070042, 15.6, 100.0, 13.6 to 1, 74.4, 96.2 +3.96,3.96,a-exp-i1,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 53.0, 100.0, 12.6 to 1, 79.2, 92.5 +4.01,4.01,a-exp-i1,2017-18,Gloucester - Veterans Memorial,01070045, 25.2, 100.0, 8.2 to 1, 80.2, 100.0 +4.0,4.0,a-exp-i1,2017-18,Gloucester - West Parish,01070050, 27.5, 100.0, 12.9 to 1, 80.0, 96.4 +0.0,1,a-exp-i1,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 1.8 to 1, 0.0, 100.0 +4.08,4.08,a-exp-i1,2017-18,Grafton - Grafton High School,01100505, 65.2, 100.0, 12.8 to 1, 81.6, 92.3 +3.9299999999999997,3.93,a-exp-i1,2017-18,Grafton - Grafton Middle,01100305, 38.4, 100.0, 13.6 to 1, 78.6, 97.4 +4.33,4.33,a-exp-i1,2017-18,Grafton - Millbury Street Elementary School,01100200, 51.8, 100.0, 12.7 to 1, 86.6, 96.0 +3.775,3.78,a-exp-i1,2017-18,Grafton - North Grafton Elementary,01100025, 20.4, 100.0, 12.4 to 1, 75.5, 97.6 +4.09,4.09,a-exp-i1,2017-18,Grafton - North Street Elementary School,01100030, 44.0, 100.0, 13.3 to 1, 81.8, 100.0 +4.654999999999999,4.65,a-exp-i1,2017-18,Grafton - South Grafton Elementary,01100005, 21.7, 100.0, 13.9 to 1, 93.1, 93.1 +5.0,5.0,a-exp-i1,2017-18,Granby - East Meadow,01110004, 11.0, 100.0, 13.5 to 1, 100.0, 100.0 +4.82,4.82,a-exp-i1,2017-18,Granby - Granby Jr Sr High School,01110505, 28.0, 100.0, 12.2 to 1, 96.4, 96.4 +4.835,4.84,a-exp-i1,2017-18,Granby - West Street,01110010, 18.0, 100.0, 11.8 to 1, 96.7, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 130.5, 98.5, 10.7 to 1, 85.4, 82.8 +4.0649999999999995,4.06,a-exp-i1,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 144.1, 96.7, 10.5 to 1, 81.3, 77.8 +4.505,4.51,a-exp-i1,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 182.0, 99.5, 12.5 to 1, 90.1, 84.1 +4.5200000000000005,4.52,a-exp-i1,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 198.5, 98.5, 10.8 to 1, 90.4, 87.9 +4.3149999999999995,4.31,a-exp-i1,2017-18,Greenfield - Discovery School at Four Corners,01140025, 21.9, 100.0, 11.5 to 1, 86.3, 95.4 +3.745,3.75,a-exp-i1,2017-18,Greenfield - Federal Street School,01140010, 22.7, 95.6, 10.9 to 1, 74.9, 84.6 +3.97,3.97,a-exp-i1,2017-18,Greenfield - Greenfield High,01140505, 42.7, 93.4, 10.8 to 1, 79.4, 83.6 +4.045,4.05,a-exp-i1,2017-18,Greenfield - Greenfield Middle,01140305, 41.8, 100.0, 9.1 to 1, 80.9, 80.4 +3.835,3.84,a-exp-i1,2017-18,Greenfield - Newton School,01140035, 22.3, 100.0, 10.9 to 1, 76.7, 95.5 +4.175,4.18,a-exp-i1,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.9, 100.0, 14.8 to 1, 83.5, 68.4 +3.75,3.75,a-exp-i1,2017-18,Groton-Dunstable - Boutwell School,06730001, 4.0, 100.0, 15.8 to 1, 75.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Groton-Dunstable - Florence Roche School,06730010, 34.8, 100.0, 14.7 to 1, 85.6, 97.1 +4.279999999999999,4.28,a-exp-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.2, 100.0, 14.0 to 1, 85.6, 92.1 +4.14,4.14,a-exp-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 58.1, 100.0, 13.2 to 1, 82.8, 94.8 +4.37,4.37,a-exp-i1,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 23.8, 100.0, 12.2 to 1, 87.4, 91.6 +4.15,4.15,a-exp-i1,2017-18,Hadley - Hadley Elementary,01170015, 23.5, 100.0, 12.2 to 1, 83.0, 91.5 +3.7299999999999995,3.73,a-exp-i1,2017-18,Hadley - Hopkins Academy,01170505, 24.8, 100.0, 9.8 to 1, 74.6, 87.9 +4.485,4.49,a-exp-i1,2017-18,Halifax - Halifax Elementary,01180005, 39.0, 100.0, 15.3 to 1, 89.7, 100.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 16.0, 100.0, 16.1 to 1, 89.4, 96.9 +3.9200000000000004,3.92,a-exp-i1,2017-18,Hamilton-Wenham - Cutler School,06750010, 21.8, 100.0, 13.3 to 1, 78.4, 99.1 +4.58,4.58,a-exp-i1,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 47.7, 97.9, 11.7 to 1, 91.6, 95.8 +4.43,4.43,a-exp-i1,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 36.8, 100.0, 10.4 to 1, 88.6, 90.2 +4.79,4.79,a-exp-i1,2017-18,Hamilton-Wenham - Winthrop School,06750015, 23.6, 100.0, 12.3 to 1, 95.8, 95.8 +1.855,1.86,a-exp-i1,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 45.2, 73.4, 10.9 to 1, 37.1, 72.6 +4.275,4.28,a-exp-i1,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 20.6, 100.0, 12.1 to 1, 85.5, 100.0 +4.555,4.56,a-exp-i1,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 22.5, 100.0, 15.4 to 1, 91.1, 100.0 +4.805,4.81,a-exp-i1,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.4, 100.0, 15.1 to 1, 96.1, 94.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Hampden-Wilbraham - Soule Road,06800030, 21.7, 100.0, 15.9 to 1, 95.4, 95.4 +5.0,5.0,a-exp-i1,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 15.2 to 1, 100.0, 100.0 +4.245,4.25,a-exp-i1,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 10.6, 100.0, 9.9 to 1, 84.9, 90.6 +4.595000000000001,4.6,a-exp-i1,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 37.1, 100.0, 16.4 to 1, 91.9, 97.3 +4.26,4.26,a-exp-i1,2017-18,Hampshire - Hampshire Regional High,06830505, 73.1, 97.3, 9.6 to 1, 85.2, 94.3 +2.5,2.5,a-exp-i1,2017-18,Hancock - Hancock Elementary,01210005, 6.8, 97.1, 6.2 to 1, 50.0, 91.2 +4.6899999999999995,4.69,a-exp-i1,2017-18,Hanover - Cedar Elementary,01220004, 32.0, 100.0, 12.9 to 1, 93.8, 100.0 +4.415,4.42,a-exp-i1,2017-18,Hanover - Center Elementary,01220005, 21.4, 97.7, 15.7 to 1, 88.3, 100.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Hanover - Hanover High,01220505, 61.7, 98.4, 13.0 to 1, 91.2, 91.9 +4.4399999999999995,4.44,a-exp-i1,2017-18,Hanover - Hanover Middle,01220305, 72.1, 97.2, 11.5 to 1, 88.8, 97.2 +4.125,4.13,a-exp-i1,2017-18,Hanover - Sylvester,01220015, 17.1, 100.0, 13.4 to 1, 82.5, 100.0 +4.3,4.3,a-exp-i1,2017-18,Harvard - Bromfield,01250505, 57.3, 100.0, 11.4 to 1, 86.0, 94.8 +4.525,4.53,a-exp-i1,2017-18,Harvard - Hildreth Elementary School,01250005, 31.5, 100.0, 14.0 to 1, 90.5, 93.7 +4.525,4.53,a-exp-i1,2017-18,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 12.4 to 1, 90.5, 95.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Hatfield - Smith Academy,01270505, 22.4, 98.2, 8.4 to 1, 82.1, 95.5 +4.345000000000001,4.35,a-exp-i1,2017-18,Haverhill - Bradford Elementary,01280008, 30.5, 96.7, 10.4 to 1, 86.9, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 62.5, 100.0, 16.4 to 1, 85.6, 96.8 +3.775,3.78,a-exp-i1,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 8.2, 100.0, 13.1 to 1, 75.5, 87.8 +4.13,4.13,a-exp-i1,2017-18,Haverhill - Consentino Middle School,01280100, 63.3, 98.4, 15.4 to 1, 82.6, 92.1 +3.37,3.37,a-exp-i1,2017-18,Haverhill - Crowell,01280020, 8.9, 100.0, 10.9 to 1, 67.4, 83.1 +4.154999999999999,4.15,a-exp-i1,2017-18,Haverhill - Dr Paul Nettle,01280050, 36.7, 100.0, 13.6 to 1, 83.1, 88.3 +4.04,4.04,a-exp-i1,2017-18,Haverhill - Golden Hill,01280026, 39.6, 97.5, 12.6 to 1, 80.8, 94.9 +4.45,4.45,a-exp-i1,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 9.1, 100.0, 11.9 to 1, 89.0, 100.0 +3.75,3.75,a-exp-i1,2017-18,Haverhill - Haverhill Alternative School,01280033, 8.0, 100.0, 5.8 to 1, 75.0, 75.0 +3.8950000000000005,3.9,a-exp-i1,2017-18,Haverhill - Haverhill High,01280505, 136.7, 95.6, 13.4 to 1, 77.9, 89.0 +4.49,4.49,a-exp-i1,2017-18,Haverhill - John G Whittier,01280085, 29.5, 100.0, 18.4 to 1, 89.8, 91.5 +3.6,3.6,a-exp-i1,2017-18,Haverhill - Moody,01280045, 13.5, 100.0, 16.3 to 1, 72.0, 77.9 +3.66,3.66,a-exp-i1,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 41.1, 100.0, 12.3 to 1, 73.2, 100.0 +2.855,2.86,a-exp-i1,2017-18,Haverhill - TEACH,01280073, 7.0, 100.0, 7.1 to 1, 57.1, 85.7 +4.415,4.42,a-exp-i1,2017-18,Haverhill - Tilton,01280075, 42.8, 100.0, 12.6 to 1, 88.3, 93.0 +5.0,5.0,a-exp-i1,2017-18,Haverhill - Walnut Square,01280080, 8.5, 100.0, 16.5 to 1, 100.0, 100.0 +3.2350000000000003,3.24,a-exp-i1,2017-18,Hawlemont - Hawlemont Regional,06850005, 11.6, 86.6, 14.1 to 1, 64.7, 91.4 +2.1100000000000003,2.11,a-exp-i1,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 13.9, 63.9, 15.4 to 1, 42.2, 78.3 +2.8,2.8,a-exp-i1,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 25.0, 80.0, 12.1 to 1, 56.0, 84.0 +3.9450000000000003,3.95,a-exp-i1,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.9, 86.5, 10.9 to 1, 78.9, 100.0 +4.37,4.37,a-exp-i1,2017-18,Hingham - East Elementary School,01310005, 35.8, 100.0, 14.7 to 1, 87.4, 100.0 +4.6450000000000005,4.65,a-exp-i1,2017-18,Hingham - Hingham High,01310505, 86.0, 100.0, 14.6 to 1, 92.9, 91.4 +4.68,4.68,a-exp-i1,2017-18,Hingham - Hingham Middle School,01310410, 68.4, 100.0, 15.7 to 1, 93.6, 95.6 +4.5,4.5,a-exp-i1,2017-18,Hingham - Plymouth River,01310019, 29.9, 100.0, 15.7 to 1, 90.0, 96.7 +4.2299999999999995,4.23,a-exp-i1,2017-18,Hingham - South Elementary,01310020, 35.7, 100.0, 14.8 to 1, 84.6, 97.2 +5.0,5.0,a-exp-i1,2017-18,Hingham - Wm L Foster Elementary,01310010, 31.1, 100.0, 14.3 to 1, 100.0, 96.8 +4.195,4.2,a-exp-i1,2017-18,Holbrook - Holbrook Middle High School,01330505, 39.5, 100.0, 14.9 to 1, 83.9, 89.9 +4.35,4.35,a-exp-i1,2017-18,Holbrook - John F Kennedy,01330018, 46.2, 100.0, 13.5 to 1, 87.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Holland - Holland Elementary,01350005, 18.3, 100.0, 12.7 to 1, 100.0, 100.0 +4.59,4.59,a-exp-i1,2017-18,Holliston - Holliston High,01360505, 64.9, 99.5, 12.3 to 1, 91.8, 96.3 +3.9799999999999995,3.98,a-exp-i1,2017-18,Holliston - Miller School,01360007, 49.2, 98.0, 13.9 to 1, 79.6, 93.7 +4.525,4.53,a-exp-i1,2017-18,Holliston - Placentino Elementary,01360010, 48.2, 97.9, 15.5 to 1, 90.5, 93.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,Holliston - Robert H. Adams Middle School,01360305, 52.2, 100.0, 13.0 to 1, 86.2, 84.3 +3.1100000000000003,3.11,a-exp-i1,2017-18,Holyoke - E N White Elementary,01370045, 36.7, 89.1, 13.7 to 1, 62.2, 80.9 +2.33,2.33,a-exp-i1,2017-18,Holyoke - H.B. Lawrence School,01370070, 20.6, 80.6, 13.5 to 1, 46.6, 63.6 +3.8200000000000003,3.82,a-exp-i1,2017-18,Holyoke - Holyoke High,01370505, 87.2, 97.7, 15.3 to 1, 76.4, 84.4 +3.9200000000000004,3.92,a-exp-i1,2017-18,Holyoke - Joseph Metcalf School,01370003, 13.9, 92.8, 18.6 to 1, 78.4, 92.8 +2.82,2.82,a-exp-i1,2017-18,Holyoke - Kelly Elementary,01370040, 36.7, 89.1, 15.3 to 1, 56.4, 67.3 +3.5549999999999997,3.56,a-exp-i1,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 42.6, 85.9, 12.7 to 1, 71.1, 83.6 +3.665,3.67,a-exp-i1,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.0, 100.0, 14.0 to 1, 73.3, 86.7 +3.4200000000000004,3.42,a-exp-i1,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 38.0, 86.8, 12.2 to 1, 68.4, 73.7 +2.9050000000000002,2.91,a-exp-i1,2017-18,Holyoke - Morgan Full Service Community School,01370025, 31.0, 90.3, 13.4 to 1, 58.1, 77.4 +2.5,2.5,a-exp-i1,2017-18,Holyoke - William R. Peck School,01370030, 34.0, 88.2, 10.0 to 1, 50.0, 67.7 +3.125,3.13,a-exp-i1,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 28.0, 82.1, 6.5 to 1, 62.5, 44.6 +2.705,2.71,a-exp-i1,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.1, 69.4, 13.5 to 1, 54.1, 84.6 +4.255,4.26,a-exp-i1,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 43.7, 100.0, 11.6 to 1, 85.1, 94.3 +4.51,4.51,a-exp-i1,2017-18,Hopedale - Memorial,01380010, 41.9, 100.0, 13.0 to 1, 90.2, 92.6 +5.0,5.0,a-exp-i1,2017-18,Hopedale - Park Street School,01380003, 2.6, 84.6, 31.9 to 1, 100.0, 100.0 +4.785,4.79,a-exp-i1,2017-18,Hopkinton - Center,01390005, 32.9, 100.0, 13.9 to 1, 95.7, 100.0 +4.275,4.28,a-exp-i1,2017-18,Hopkinton - Elmwood,01390010, 34.4, 100.0, 14.6 to 1, 85.5, 100.0 +4.715,4.72,a-exp-i1,2017-18,Hopkinton - Hopkins Elementary School,01390015, 38.0, 100.0, 14.2 to 1, 94.3, 97.4 +4.67,4.67,a-exp-i1,2017-18,Hopkinton - Hopkinton High,01390505, 81.4, 100.0, 14.2 to 1, 93.4, 96.1 +4.585,4.59,a-exp-i1,2017-18,Hopkinton - Hopkinton Middle School,01390305, 65.6, 100.0, 12.3 to 1, 91.7, 97.3 +5.0,5.0,a-exp-i1,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 4.0, 100.0, 14.8 to 1, 100.0, 100.0 +4.62,4.62,a-exp-i1,2017-18,Hudson - C A Farley,01410030, 39.6, 100.0, 11.6 to 1, 92.4, 97.2 +4.2,4.2,a-exp-i1,2017-18,Hudson - David J. Quinn Middle School,01410410, 57.4, 98.3, 11.3 to 1, 84.0, 90.6 +4.4799999999999995,4.48,a-exp-i1,2017-18,Hudson - Forest Avenue Elementary,01410015, 28.8, 100.0, 12.3 to 1, 89.6, 99.3 +4.465,4.47,a-exp-i1,2017-18,Hudson - Hudson High,01410505, 84.0, 98.8, 11.1 to 1, 89.3, 88.1 +4.465,4.47,a-exp-i1,2017-18,Hudson - Mulready Elementary,01410007, 24.2, 100.0, 9.8 to 1, 89.3, 91.3 +3.8950000000000005,3.9,a-exp-i1,2017-18,Hull - Hull High,01420505, 29.8, 100.0, 9.9 to 1, 77.9, 84.6 +4.5600000000000005,4.56,a-exp-i1,2017-18,Hull - Lillian M Jacobs,01420015, 34.0, 100.0, 12.1 to 1, 91.2, 97.1 +3.7399999999999998,3.74,a-exp-i1,2017-18,Hull - Memorial Middle,01420305, 19.9, 100.0, 9.5 to 1, 74.8, 74.8 +3.3049999999999997,3.31,a-exp-i1,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 75.4, 88.4, 10.6 to 1, 66.1, 81.9 +3.9850000000000003,3.99,a-exp-i1,2017-18,Ipswich - Ipswich High,01440505, 47.4, 99.2, 10.9 to 1, 79.7, 90.7 +4.365,4.37,a-exp-i1,2017-18,Ipswich - Ipswich Middle School,01440305, 41.9, 100.0, 10.5 to 1, 87.3, 92.8 +4.3100000000000005,4.31,a-exp-i1,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 32.9, 100.0, 12.2 to 1, 86.2, 97.0 +3.8950000000000005,3.9,a-exp-i1,2017-18,Ipswich - Winthrop,01440015, 33.7, 100.0, 11.2 to 1, 77.9, 100.0 +1.09,1.09,a-exp-i1,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 55.0, 49.1, 10.1 to 1, 21.8, 78.2 +0.89,1,a-exp-i1,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 109.6, 56.3, 12.2 to 1, 17.8, 84.4 +4.2299999999999995,4.23,a-exp-i1,2017-18,King Philip - King Philip Middle School,06900510, 45.4, 100.0, 16.3 to 1, 84.6, 93.4 +3.8,3.8,a-exp-i1,2017-18,King Philip - King Philip Regional High,06900505, 81.7, 100.0, 15.9 to 1, 76.0, 83.7 +3.6399999999999997,3.64,a-exp-i1,2017-18,Kingston - Kingston Elementary,01450005, 30.2, 100.0, 14.9 to 1, 72.8, 100.0 +4.585,4.59,a-exp-i1,2017-18,Kingston - Kingston Intermediate,01450020, 36.0, 100.0, 15.9 to 1, 91.7, 100.0 +3.325,3.33,a-exp-i1,2017-18,Lanesborough - Lanesborough Elementary,01480005, 19.7, 100.0, 10.7 to 1, 66.5, 86.8 +3.315,3.32,a-exp-i1,2017-18,Lawrence - Alexander B Bruce,01490015, 41.6, 100.0, 12.4 to 1, 66.3, 78.4 +3.72,3.72,a-exp-i1,2017-18,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 15.0 to 1, 74.4, 74.4 +1.47,1.47,a-exp-i1,2017-18,Lawrence - Community Day Arlington,01490009, 59.5, 91.6, 9.9 to 1, 29.4, 74.8 +3.6049999999999995,3.6,a-exp-i1,2017-18,Lawrence - Edward F. Parthum,01490053, 39.4, 94.9, 15.8 to 1, 72.1, 84.7 +3.8299999999999996,3.83,a-exp-i1,2017-18,Lawrence - Emily G Wetherbee,01490080, 47.0, 97.9, 14.9 to 1, 76.6, 78.7 +3.8600000000000003,3.86,a-exp-i1,2017-18,Lawrence - Francis M Leahy,01490040, 35.0, 97.1, 14.8 to 1, 77.2, 94.3 +4.535,4.54,a-exp-i1,2017-18,Lawrence - Frost Middle School,01490525, 32.1, 100.0, 15.8 to 1, 90.7, 87.5 +2.445,2.45,a-exp-i1,2017-18,Lawrence - Gerard A. Guilmette,01490022, 41.1, 95.1, 12.5 to 1, 48.9, 90.3 +3.0,3.0,a-exp-i1,2017-18,Lawrence - Guilmette Middle School,01490025, 45.0, 100.0, 10.8 to 1, 60.0, 69.1 +4.2700000000000005,4.27,a-exp-i1,2017-18,Lawrence - High School Learning Center,01490536, 17.8, 96.6, 10.5 to 1, 85.4, 79.8 +3.66,3.66,a-exp-i1,2017-18,Lawrence - James F Hennessey,01490020, 26.1, 96.2, 13.3 to 1, 73.2, 92.4 +3.95,3.95,a-exp-i1,2017-18,Lawrence - John Breen School,01490003, 19.1, 100.0, 17.5 to 1, 79.0, 100.0 +4.08,4.08,a-exp-i1,2017-18,Lawrence - John K Tarbox,01490075, 21.8, 95.4, 15.0 to 1, 81.6, 90.8 +4.585,4.59,a-exp-i1,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 12.0, 91.7, 13.6 to 1, 91.7, 83.3 +4.415,4.42,a-exp-i1,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 17.1, 100.0, 12.4 to 1, 88.3, 88.3 +3.055,3.06,a-exp-i1,2017-18,Lawrence - Lawrence High School,01490515, 252.9, 91.1, 13.1 to 1, 61.1, 76.8 +3.5700000000000003,3.57,a-exp-i1,2017-18,Lawrence - Oliver Partnership School,01490048, 35.0, 91.4, 12.8 to 1, 71.4, 88.6 +3.46,3.46,a-exp-i1,2017-18,Lawrence - Parthum Middle School,01490027, 39.0, 97.4, 14.9 to 1, 69.2, 76.9 +1.08,1.08,a-exp-i1,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 8.3, 59.9, 15.0 to 1, 21.6, 49.1 +3.5,3.5,a-exp-i1,2017-18,Lawrence - Robert Frost,01490018, 40.0, 90.0, 14.8 to 1, 70.0, 80.0 +3.0100000000000002,3.01,a-exp-i1,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 15.1, 100.0, 12.6 to 1, 60.2, 93.4 +2.085,2.09,a-exp-i1,2017-18,Lawrence - School for Exceptional Studies,01490537, 32.6, 78.5, 4.6 to 1, 41.7, 61.6 +3.0,3.0,a-exp-i1,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 49.9, 90.0, 15.0 to 1, 60.0, 82.0 +1.47,1.47,a-exp-i1,2017-18,Lawrence - Spark Academy,01490085, 41.1, 65.9, 11.2 to 1, 29.4, 58.6 +2.69,2.69,a-exp-i1,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 26.0, 88.5, 11.4 to 1, 53.8, 30.8 +1.1099999999999999,1.11,a-exp-i1,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 27.0, 81.5, 12.7 to 1, 22.2, 63.0 +2.98,2.98,a-exp-i1,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 60.9, 95.8, 12.1 to 1, 59.6, 91.7 +4.275,4.28,a-exp-i1,2017-18,Lee - Lee Elementary,01500025, 34.4, 100.0, 10.0 to 1, 85.5, 97.1 +4.4350000000000005,4.44,a-exp-i1,2017-18,Lee - Lee Middle/High School,01500505, 35.4, 97.2, 9.8 to 1, 88.7, 88.7 +4.0600000000000005,4.06,a-exp-i1,2017-18,Leicester - Leicester High,01510505, 35.5, 97.2, 13.0 to 1, 81.2, 92.9 +4.415,4.42,a-exp-i1,2017-18,Leicester - Leicester Memorial Elementary,01510005, 21.5, 100.0, 15.5 to 1, 88.3, 100.0 +4.335,4.34,a-exp-i1,2017-18,Leicester - Leicester Middle,01510015, 30.0, 100.0, 13.7 to 1, 86.7, 93.3 +4.085,4.09,a-exp-i1,2017-18,Leicester - Leicester Primary School,01510010, 24.5, 100.0, 14.8 to 1, 81.7, 100.0 +4.63,4.63,a-exp-i1,2017-18,Lenox - Lenox Memorial High,01520505, 50.9, 100.0, 8.7 to 1, 92.6, 87.8 +4.654999999999999,4.65,a-exp-i1,2017-18,Lenox - Morris,01520015, 29.0, 100.0, 10.7 to 1, 93.1, 100.0 +2.5,2.5,a-exp-i1,2017-18,Leominster - Bennett,01530003, 6.0, 83.3, 14.3 to 1, 50.0, 100.0 +4.675,4.68,a-exp-i1,2017-18,Leominster - Center For Technical Education Innovation,01530605, 32.1, 93.5, 22.3 to 1, 93.5, 81.0 +4.64,4.64,a-exp-i1,2017-18,Leominster - Fall Brook,01530007, 41.5, 100.0, 15.8 to 1, 92.8, 100.0 +4.39,4.39,a-exp-i1,2017-18,Leominster - Frances Drake School,01530010, 41.1, 97.6, 13.2 to 1, 87.8, 99.8 +4.6450000000000005,4.65,a-exp-i1,2017-18,Leominster - Johnny Appleseed,01530025, 42.5, 100.0, 15.3 to 1, 92.9, 97.6 +4.0,4.0,a-exp-i1,2017-18,Leominster - Leominster Center for Excellence,01530515, 5.0, 100.0, 10.0 to 1, 80.0, 40.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Leominster - Leominster High School,01530505, 99.8, 97.0, 10.6 to 1, 87.9, 90.8 +4.0,4.0,a-exp-i1,2017-18,Leominster - Lincoln School,01530005, 5.0, 100.0, 9.6 to 1, 80.0, 80.0 +4.545,4.55,a-exp-i1,2017-18,Leominster - Northwest,01530030, 44.0, 97.7, 15.6 to 1, 90.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,Leominster - Priest Street,01530040, 8.0, 100.0, 15.6 to 1, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Leominster - Samoset School,01530045, 37.0, 100.0, 13.3 to 1, 83.8, 86.5 +4.375,4.38,a-exp-i1,2017-18,Leominster - Sky View Middle School,01530320, 56.0, 98.2, 16.0 to 1, 87.5, 91.1 +3.8899999999999997,3.89,a-exp-i1,2017-18,Leverett - Leverett Elementary,01540005, 18.0, 100.0, 6.9 to 1, 77.8, 94.4 +3.845,3.85,a-exp-i1,2017-18,Lexington - Bowman,01550008, 47.6, 100.0, 11.8 to 1, 76.9, 100.0 +3.9850000000000003,3.99,a-exp-i1,2017-18,Lexington - Bridge,01550006, 45.2, 100.0, 12.7 to 1, 79.7, 91.1 +4.585,4.59,a-exp-i1,2017-18,Lexington - Fiske,01550015, 37.2, 100.0, 13.5 to 1, 91.7, 97.3 +3.565,3.57,a-exp-i1,2017-18,Lexington - Harrington,01550030, 35.8, 100.0, 13.4 to 1, 71.3, 97.2 +4.18,4.18,a-exp-i1,2017-18,Lexington - Jonas Clarke Middle,01550305, 86.5, 100.0, 10.7 to 1, 83.6, 96.3 +3.7700000000000005,3.77,a-exp-i1,2017-18,Lexington - Joseph Estabrook,01550010, 42.3, 100.0, 13.5 to 1, 75.4, 99.5 +5.0,5.0,a-exp-i1,2017-18,Lexington - Lexington Children's Place,01550001, 6.9, 100.0, 10.4 to 1, 100.0, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Lexington - Lexington High,01550505, 170.9, 99.6, 12.9 to 1, 81.9, 91.7 +3.935,3.94,a-exp-i1,2017-18,Lexington - Maria Hastings,01550035, 37.8, 100.0, 12.3 to 1, 78.7, 94.7 +4.175,4.18,a-exp-i1,2017-18,Lexington - Wm Diamond Middle,01550310, 79.3, 100.0, 11.2 to 1, 83.5, 92.4 +1.1800000000000002,1.18,a-exp-i1,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 7.2, 76.4, 12.5 to 1, 23.6, 44.4 +4.375,4.38,a-exp-i1,2017-18,Lincoln - Hanscom Middle,01570305, 25.8, 100.0, 10.5 to 1, 87.5, 98.6 +4.195,4.2,a-exp-i1,2017-18,Lincoln - Hanscom Primary,01570006, 28.9, 100.0, 11.5 to 1, 83.9, 97.5 +4.54,4.54,a-exp-i1,2017-18,Lincoln - Lincoln School,01570025, 63.2, 100.0, 9.3 to 1, 90.8, 99.2 +4.61,4.61,a-exp-i1,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.2, 100.0, 12.0 to 1, 92.2, 96.7 +4.305,4.31,a-exp-i1,2017-18,Littleton - Littleton High School,01580505, 36.6, 99.5, 12.6 to 1, 86.1, 97.3 +4.26,4.26,a-exp-i1,2017-18,Littleton - Littleton Middle School,01580305, 26.9, 100.0, 13.5 to 1, 85.2, 85.6 +3.55,3.55,a-exp-i1,2017-18,Littleton - Russell St Elementary,01580015, 25.9, 100.0, 14.9 to 1, 71.0, 98.1 +4.335,4.34,a-exp-i1,2017-18,Littleton - Shaker Lane Elementary,01580005, 30.1, 100.0, 14.9 to 1, 86.7, 91.7 +4.720000000000001,4.72,a-exp-i1,2017-18,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 12.3 to 1, 94.4, 97.2 +4.085,4.09,a-exp-i1,2017-18,Longmeadow - Center,01590010, 34.5, 100.0, 11.7 to 1, 81.7, 94.8 +4.3950000000000005,4.4,a-exp-i1,2017-18,Longmeadow - Glenbrook Middle,01590017, 27.7, 98.7, 12.4 to 1, 87.9, 96.4 +4.805,4.81,a-exp-i1,2017-18,Longmeadow - Longmeadow High,01590505, 76.3, 100.0, 12.6 to 1, 96.1, 97.4 +4.49,4.49,a-exp-i1,2017-18,Longmeadow - Williams Middle,01590305, 27.7, 97.7, 11.9 to 1, 89.8, 96.4 +4.7,4.7,a-exp-i1,2017-18,Longmeadow - Wolf Swamp Road,01590025, 33.3, 100.0, 12.1 to 1, 94.0, 97.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Lowell - Abraham Lincoln,01600020, 35.0, 100.0, 13.9 to 1, 82.9, 97.1 +3.825,3.83,a-exp-i1,2017-18,Lowell - B.F. Butler Middle School,01600310, 43.4, 100.0, 12.3 to 1, 76.5, 76.1 +4.165,4.17,a-exp-i1,2017-18,Lowell - Bartlett Community Partnership,01600090, 39.8, 100.0, 13.1 to 1, 83.3, 81.6 +4.86,4.86,a-exp-i1,2017-18,Lowell - Charles W Morey,01600030, 35.9, 97.2, 14.3 to 1, 97.2, 100.0 +4.205,4.21,a-exp-i1,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 37.8, 100.0, 13.3 to 1, 84.1, 97.4 +4.375,4.38,a-exp-i1,2017-18,Lowell - Dr An Wang School,01600345, 49.5, 98.0, 14.0 to 1, 87.5, 87.5 +4.7,4.7,a-exp-i1,2017-18,Lowell - Dr Gertrude Bailey,01600002, 33.0, 97.0, 14.8 to 1, 94.0, 100.0 +3.5100000000000002,3.51,a-exp-i1,2017-18,Lowell - Greenhalge,01600015, 37.0, 97.3, 13.6 to 1, 70.2, 100.0 +4.0200000000000005,4.02,a-exp-i1,2017-18,Lowell - Henry J Robinson Middle,01600330, 50.8, 99.8, 13.1 to 1, 80.4, 80.3 +4.465,4.47,a-exp-i1,2017-18,Lowell - James S Daley Middle School,01600315, 46.6, 100.0, 15.0 to 1, 89.3, 97.9 +4.3549999999999995,4.35,a-exp-i1,2017-18,Lowell - James Sullivan Middle School,01600340, 46.5, 100.0, 13.8 to 1, 87.1, 89.2 +4.115,4.12,a-exp-i1,2017-18,Lowell - John J Shaughnessy,01600050, 34.0, 97.1, 13.6 to 1, 82.3, 94.1 +4.41,4.41,a-exp-i1,2017-18,Lowell - Joseph McAvinnue,01600010, 34.0, 100.0, 14.3 to 1, 88.2, 94.1 +4.54,4.54,a-exp-i1,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 48.9, 100.0, 14.0 to 1, 90.8, 86.7 +3.2600000000000002,3.26,a-exp-i1,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 7.1, 100.0, 3.2 to 1, 65.2, 65.2 +4.215,4.22,a-exp-i1,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 7.1, 85.9, 5.1 to 1, 84.3, 84.3 +1.8800000000000001,1.88,a-exp-i1,2017-18,Lowell - Lowell Day School on Broadway,01600605, 8.0, 75.0, 3.3 to 1, 37.6, 50.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Lowell - Lowell High,01600505, 213.9, 95.3, 14.7 to 1, 84.4, 90.6 +4.61,4.61,a-exp-i1,2017-18,Lowell - Moody Elementary,01600027, 19.3, 94.8, 12.6 to 1, 92.2, 94.8 +4.025,4.03,a-exp-i1,2017-18,Lowell - Pawtucketville Memorial,01600036, 36.0, 100.0, 14.2 to 1, 80.5, 88.8 +4.75,4.75,a-exp-i1,2017-18,Lowell - Peter W Reilly,01600040, 40.2, 100.0, 13.5 to 1, 95.0, 97.5 +3.8600000000000003,3.86,a-exp-i1,2017-18,Lowell - Pyne Arts,01600018, 36.0, 97.2, 13.6 to 1, 77.2, 85.5 +4.11,4.11,a-exp-i1,2017-18,Lowell - Rogers STEM Academy,01600005, 44.9, 100.0, 15.2 to 1, 82.2, 93.4 +4.58,4.58,a-exp-i1,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 35.7, 100.0, 13.5 to 1, 91.6, 97.2 +5.0,5.0,a-exp-i1,2017-18,Lowell - The Career Academy,01600515, 9.4, 100.0, 12.1 to 1, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Lowell - Washington,01600055, 20.5, 95.1, 12.1 to 1, 82.9, 100.0 +2.32,2.32,a-exp-i1,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.5, 95.3, 12.8 to 1, 46.4, 89.0 +3.335,3.34,a-exp-i1,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 52.4, 8.7 to 1, 66.7, 71.4 +4.9,4.9,a-exp-i1,2017-18,Ludlow - Chapin Street Elementary School,01610020, 25.5, 100.0, 12.6 to 1, 98.0, 100.0 +4.845000000000001,4.85,a-exp-i1,2017-18,Ludlow - East Street Elementary School,01610010, 32.5, 100.0, 12.3 to 1, 96.9, 96.9 +4.745,4.75,a-exp-i1,2017-18,Ludlow - Ludlow Senior High,01610505, 79.9, 99.9, 11.2 to 1, 94.9, 90.0 +4.8950000000000005,4.9,a-exp-i1,2017-18,Ludlow - Paul R Baird Middle,01610305, 56.8, 100.0, 11.2 to 1, 97.9, 96.5 +4.04,4.04,a-exp-i1,2017-18,Ludlow - Veterans Park Elementary,01610023, 28.7, 100.0, 13.7 to 1, 80.8, 100.0 +2.535,2.54,a-exp-i1,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 2.0, 100.0, 4.4 to 1, 50.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Lunenburg - Lunenburg High,01620505, 34.6, 100.0, 12.8 to 1, 94.2, 94.2 +4.115,4.12,a-exp-i1,2017-18,Lunenburg - Lunenburg Middle School,01620305, 28.9, 100.0, 14.7 to 1, 82.3, 86.1 +4.495,4.5,a-exp-i1,2017-18,Lunenburg - Lunenburg Primary School,01620010, 25.0, 100.0, 15.7 to 1, 89.9, 100.0 +3.88,3.88,a-exp-i1,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 24.5, 100.0, 15.2 to 1, 77.6, 98.0 +2.85,2.85,a-exp-i1,2017-18,Lynn - A Drewicz Elementary,01630016, 34.6, 100.0, 14.2 to 1, 57.0, 91.0 +4.87,4.87,a-exp-i1,2017-18,Lynn - Aborn,01630011, 16.9, 100.0, 15.0 to 1, 97.4, 100.0 +3.3950000000000005,3.4,a-exp-i1,2017-18,Lynn - Breed Middle School,01630405, 88.0, 93.2, 15.1 to 1, 67.9, 79.3 +4.4,4.4,a-exp-i1,2017-18,Lynn - Brickett Elementary,01630020, 21.3, 100.0, 14.2 to 1, 88.0, 97.6 +4.654999999999999,4.65,a-exp-i1,2017-18,Lynn - Capt William G Shoemaker,01630090, 30.5, 100.0, 10.8 to 1, 93.1, 99.3 +4.345000000000001,4.35,a-exp-i1,2017-18,Lynn - Classical High,01630505, 101.3, 95.1, 16.4 to 1, 86.9, 84.0 +3.7350000000000003,3.74,a-exp-i1,2017-18,Lynn - Cobbet Elementary,01630035, 43.5, 100.0, 14.7 to 1, 74.7, 93.1 +3.8049999999999997,3.81,a-exp-i1,2017-18,Lynn - E J Harrington,01630045, 46.4, 97.8, 13.6 to 1, 76.1, 99.8 +3.69,3.69,a-exp-i1,2017-18,Lynn - Early Childhood Center,01630004, 23.0, 100.0, 13.0 to 1, 73.8, 85.8 +4.9799999999999995,4.98,a-exp-i1,2017-18,Lynn - Edward A Sisson,01630095, 27.7, 100.0, 15.6 to 1, 99.6, 99.6 +4.425,4.43,a-exp-i1,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 26.2, 96.2, 4.1 to 1, 88.5, 77.1 +2.93,2.93,a-exp-i1,2017-18,Lynn - Hood,01630055, 30.9, 100.0, 15.8 to 1, 58.6, 94.2 +3.8200000000000003,3.82,a-exp-i1,2017-18,Lynn - Ingalls,01630060, 42.3, 100.0, 15.4 to 1, 76.4, 88.2 +3.04,3.04,a-exp-i1,2017-18,Lynn - Julia F Callahan,01630030, 31.6, 100.0, 14.5 to 1, 60.8, 82.0 +4.88,4.88,a-exp-i1,2017-18,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 12.2 to 1, 97.6, 97.6 +4.285,4.29,a-exp-i1,2017-18,Lynn - Lynn English High,01630510, 105.9, 97.2, 16.3 to 1, 85.7, 84.8 +3.8850000000000002,3.89,a-exp-i1,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 81.8, 91.4, 12.3 to 1, 77.7, 80.0 +4.83,4.83,a-exp-i1,2017-18,Lynn - Lynn Woods,01630075, 10.4, 100.0, 15.7 to 1, 96.6, 96.6 +4.46,4.46,a-exp-i1,2017-18,Lynn - Pickering Middle,01630420, 47.4, 100.0, 13.0 to 1, 89.2, 91.3 +2.695,2.7,a-exp-i1,2017-18,Lynn - Robert L Ford,01630050, 32.1, 96.9, 15.3 to 1, 53.9, 85.0 +4.785,4.79,a-exp-i1,2017-18,Lynn - Sewell-Anderson,01630085, 22.2, 100.0, 14.0 to 1, 95.7, 97.5 +3.69,3.69,a-exp-i1,2017-18,Lynn - Thurgood Marshall Mid,01630305, 85.0, 96.5, 15.2 to 1, 73.8, 71.8 +4.33,4.33,a-exp-i1,2017-18,Lynn - Tracy,01630100, 31.7, 100.0, 13.7 to 1, 86.6, 97.5 +3.62,3.62,a-exp-i1,2017-18,Lynn - Washington Elementary School,01630005, 32.3, 100.0, 14.5 to 1, 72.4, 82.2 +4.4799999999999995,4.48,a-exp-i1,2017-18,Lynn - William R Fallon,01630080, 9.6, 100.0, 5.2 to 1, 89.6, 100.0 +3.9299999999999997,3.93,a-exp-i1,2017-18,Lynn - Wm P Connery,01630040, 41.7, 97.6, 15.4 to 1, 78.6, 86.9 +4.45,4.45,a-exp-i1,2017-18,Lynnfield - Huckleberry Hill,01640010, 29.0, 100.0, 14.7 to 1, 89.0, 100.0 +4.635,4.64,a-exp-i1,2017-18,Lynnfield - Lynnfield High,01640505, 53.2, 100.0, 12.2 to 1, 92.7, 98.1 +4.404999999999999,4.4,a-exp-i1,2017-18,Lynnfield - Lynnfield Middle School,01640405, 52.3, 100.0, 12.9 to 1, 88.1, 97.6 +1.875,1.88,a-exp-i1,2017-18,Lynnfield - Lynnfield Preschool,01640005, 1.6, 100.0, 23.8 to 1, 37.5, 100.0 +4.04,4.04,a-exp-i1,2017-18,Lynnfield - Summer Street,01640020, 29.1, 100.0, 14.8 to 1, 80.8, 100.0 +1.6199999999999999,1.62,a-exp-i1,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 102.9, 61.5, 11.9 to 1, 32.4, 90.3 +4.165,4.17,a-exp-i1,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.0 to 1, 83.3, 83.3 +4.6850000000000005,4.69,a-exp-i1,2017-18,Malden - Beebe,01650003, 63.5, 100.0, 14.1 to 1, 93.7, 96.9 +4.085,4.09,a-exp-i1,2017-18,Malden - Ferryway,01650013, 60.2, 100.0, 14.5 to 1, 81.7, 98.3 +3.7350000000000003,3.74,a-exp-i1,2017-18,Malden - Forestdale,01650027, 47.5, 100.0, 11.5 to 1, 74.7, 95.8 +3.87,3.87,a-exp-i1,2017-18,Malden - Linden,01650047, 66.5, 100.0, 13.1 to 1, 77.4, 95.5 +3.6350000000000002,3.64,a-exp-i1,2017-18,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 14.3 to 1, 72.7, 100.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Malden - Malden High,01650505, 115.0, 99.1, 15.8 to 1, 88.7, 94.8 +3.7350000000000003,3.74,a-exp-i1,2017-18,Malden - Salemwood,01650057, 83.0, 100.0, 14.7 to 1, 74.7, 86.8 +4.715,4.72,a-exp-i1,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 15.7, 100.0, 14.5 to 1, 94.3, 94.3 +4.525,4.53,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 42.6, 97.7, 10.4 to 1, 90.5, 90.6 +3.88,3.88,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 33.3, 100.0, 11.2 to 1, 77.6, 98.8 +4.785,4.79,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 23.2, 100.0, 14.8 to 1, 95.7, 95.7 +4.61,4.61,a-exp-i1,2017-18,Mansfield - Everett W Robinson,01670007, 51.0, 100.0, 14.0 to 1, 92.2, 98.0 +4.82,4.82,a-exp-i1,2017-18,Mansfield - Harold L Qualters Middle,01670035, 82.4, 100.0, 11.4 to 1, 96.4, 94.6 +4.625,4.63,a-exp-i1,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 58.4, 100.0, 13.5 to 1, 92.5, 95.9 +4.75,4.75,a-exp-i1,2017-18,Mansfield - Mansfield High,01670505, 101.2, 100.0, 13.0 to 1, 95.0, 92.1 +4.165,4.17,a-exp-i1,2017-18,Mansfield - Roland Green School,01670003, 6.0, 100.0, 16.2 to 1, 83.3, 100.0 +4.32,4.32,a-exp-i1,2017-18,Marblehead - Elbridge Gerry,01680015, 7.4, 100.0, 18.7 to 1, 86.4, 100.0 +4.025,4.03,a-exp-i1,2017-18,Marblehead - Glover,01680020, 28.7, 100.0, 12.9 to 1, 80.5, 93.7 +4.425,4.43,a-exp-i1,2017-18,Marblehead - L H Coffin,01680010, 13.0, 92.3, 11.7 to 1, 88.5, 100.0 +4.495,4.5,a-exp-i1,2017-18,Marblehead - Malcolm L Bell,01680005, 25.7, 100.0, 10.6 to 1, 89.9, 97.7 +4.05,4.05,a-exp-i1,2017-18,Marblehead - Marblehead High,01680505, 88.0, 100.0, 11.8 to 1, 81.0, 90.9 +4.37,4.37,a-exp-i1,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 40.5, 100.0, 12.1 to 1, 87.4, 92.6 +4.045,4.05,a-exp-i1,2017-18,Marblehead - Village School,01680016, 57.7, 100.0, 11.0 to 1, 80.9, 100.0 +2.56,2.56,a-exp-i1,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 20.5, 87.3, 11.2 to 1, 51.2, 65.9 +4.025,4.03,a-exp-i1,2017-18,Marion - Sippican,01690005, 34.8, 100.0, 13.0 to 1, 80.5, 97.7 +4.16,4.16,a-exp-i1,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 118.8, 99.2, 11.0 to 1, 83.2, 94.9 +3.5450000000000004,3.55,a-exp-i1,2017-18,Marlborough - Charles Jaworek School,01700030, 62.3, 100.0, 12.2 to 1, 70.9, 93.6 +4.5,4.5,a-exp-i1,2017-18,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 17.4 to 1, 90.0, 100.0 +4.18,4.18,a-exp-i1,2017-18,Marlborough - Francis J Kane,01700008, 48.9, 100.0, 12.6 to 1, 83.6, 100.0 +4.165,4.17,a-exp-i1,2017-18,Marlborough - Marlborough High,01700505, 98.2, 100.0, 11.3 to 1, 83.3, 90.4 +3.78,3.78,a-exp-i1,2017-18,Marlborough - Richer,01700025, 48.8, 100.0, 12.4 to 1, 75.6, 98.0 +4.445,4.45,a-exp-i1,2017-18,Marshfield - Daniel Webster,01710015, 27.0, 100.0, 14.9 to 1, 88.9, 100.0 +4.545,4.55,a-exp-i1,2017-18,Marshfield - Eames Way School,01710005, 18.5, 100.0, 13.1 to 1, 90.9, 100.0 +4.345000000000001,4.35,a-exp-i1,2017-18,Marshfield - Furnace Brook Middle,01710310, 76.2, 100.0, 12.7 to 1, 86.9, 93.4 +4.375,4.38,a-exp-i1,2017-18,Marshfield - Gov Edward Winslow,01710020, 32.1, 100.0, 12.9 to 1, 87.5, 93.8 +4.3950000000000005,4.4,a-exp-i1,2017-18,Marshfield - Marshfield High,01710505, 108.3, 99.1, 12.4 to 1, 87.9, 91.7 +4.41,4.41,a-exp-i1,2017-18,Marshfield - Martinson Elementary,01710025, 36.6, 100.0, 11.7 to 1, 88.2, 97.3 +4.615,4.62,a-exp-i1,2017-18,Marshfield - South River,01710010, 26.1, 100.0, 14.3 to 1, 92.3, 100.0 +4.335,4.34,a-exp-i1,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 71.2, 97.3, 8.9 to 1, 86.7, 85.3 +3.8,3.8,a-exp-i1,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 16.6, 93.1, 11.1 to 1, 76.0, 57.4 +3.47,3.47,a-exp-i1,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 34.9, 75.4, 10.4 to 1, 69.4, 88.5 +4.665,4.67,a-exp-i1,2017-18,Masconomet - Masconomet Regional High School,07050505, 80.8, 100.0, 14.2 to 1, 93.3, 96.0 +4.545,4.55,a-exp-i1,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 48.1, 99.2, 13.6 to 1, 90.9, 95.8 +4.4,4.4,a-exp-i1,2017-18,Mashpee - Kenneth Coombs School,01720005, 33.4, 100.0, 12.5 to 1, 88.0, 94.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Mashpee - Mashpee High,01720505, 42.1, 100.0, 10.7 to 1, 87.9, 95.5 +4.425,4.43,a-exp-i1,2017-18,Mashpee - Mashpee Middle School,01720020, 21.6, 100.0, 12.5 to 1, 88.5, 90.3 +3.725,3.73,a-exp-i1,2017-18,Mashpee - Quashnet School,01720035, 43.1, 100.0, 11.3 to 1, 74.5, 95.4 +3.065,3.07,a-exp-i1,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 32.6, 100.0, 18.0 to 1, 61.3, 87.7 +4.715,4.72,a-exp-i1,2017-18,Mattapoisett - Center,01730005, 20.2, 100.0, 11.8 to 1, 94.3, 94.3 +4.25,4.25,a-exp-i1,2017-18,Mattapoisett - Old Hammondtown,01730010, 17.6, 100.0, 11.7 to 1, 85.0, 99.2 +4.485,4.49,a-exp-i1,2017-18,Maynard - Fowler School,01740305, 39.0, 100.0, 13.4 to 1, 89.7, 92.3 +4.404999999999999,4.4,a-exp-i1,2017-18,Maynard - Green Meadow,01740010, 29.5, 96.6, 16.5 to 1, 88.1, 96.6 +4.525,4.53,a-exp-i1,2017-18,Maynard - Maynard High,01740505, 30.0, 99.3, 13.0 to 1, 90.5, 90.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Medfield - Dale Street,01750005, 28.9, 100.0, 12.6 to 1, 88.7, 92.1 +3.9799999999999995,3.98,a-exp-i1,2017-18,Medfield - Medfield Senior High,01750505, 66.1, 98.5, 12.5 to 1, 79.6, 89.7 +4.1899999999999995,4.19,a-exp-i1,2017-18,Medfield - Memorial School,01750003, 25.6, 100.0, 17.0 to 1, 83.8, 96.1 +4.654999999999999,4.65,a-exp-i1,2017-18,Medfield - Ralph Wheelock School,01750007, 25.7, 100.0, 14.7 to 1, 93.1, 98.3 +4.705,4.71,a-exp-i1,2017-18,Medfield - Thomas Blake Middle,01750305, 55.6, 100.0, 11.2 to 1, 94.1, 100.0 +4.05,4.05,a-exp-i1,2017-18,Medford - Brooks School,01760130, 42.0, 100.0, 12.0 to 1, 81.0, 100.0 +3.905,3.91,a-exp-i1,2017-18,Medford - Christopher Columbus,01760140, 36.5, 100.0, 10.3 to 1, 78.1, 100.0 +2.895,2.9,a-exp-i1,2017-18,Medford - Curtis-Tufts,01760510, 5.4, 100.0, 2.4 to 1, 57.9, 98.1 +3.835,3.84,a-exp-i1,2017-18,Medford - John J McGlynn Elementary School,01760068, 38.6, 100.0, 13.6 to 1, 76.7, 97.5 +3.4899999999999998,3.49,a-exp-i1,2017-18,Medford - John J. McGlynn Middle School,01760320, 51.4, 100.0, 9.0 to 1, 69.8, 97.1 +3.8299999999999996,3.83,a-exp-i1,2017-18,Medford - Madeleine Dugger Andrews,01760315, 47.0, 100.0, 10.6 to 1, 76.6, 90.4 +3.7399999999999998,3.74,a-exp-i1,2017-18,Medford - Medford High,01760505, 139.3, 97.1, 10.1 to 1, 74.8, 83.9 +3.6450000000000005,3.65,a-exp-i1,2017-18,Medford - Milton Fuller Roberts,01760150, 44.3, 100.0, 12.2 to 1, 72.9, 97.7 +4.37,4.37,a-exp-i1,2017-18,Medway - Burke/Memorial Elementary School,01770015, 31.9, 100.0, 15.8 to 1, 87.4, 93.7 +3.6149999999999998,3.62,a-exp-i1,2017-18,Medway - John D Mc Govern Elementary,01770013, 20.5, 100.0, 16.4 to 1, 72.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Medway - Medway High,01770505, 46.5, 97.9, 15.6 to 1, 83.4, 94.6 +4.6049999999999995,4.6,a-exp-i1,2017-18,Medway - Medway Middle,01770305, 56.8, 100.0, 12.4 to 1, 92.1, 94.7 +4.29,4.29,a-exp-i1,2017-18,Melrose - Early Childhood Center,01780003, 14.6, 93.2, 21.7 to 1, 85.8, 95.5 +3.5549999999999997,3.56,a-exp-i1,2017-18,Melrose - Herbert Clark Hoover,01780017, 20.8, 100.0, 13.0 to 1, 71.1, 97.6 +4.0600000000000005,4.06,a-exp-i1,2017-18,Melrose - Horace Mann,01780025, 17.3, 100.0, 16.3 to 1, 81.2, 94.2 +3.8649999999999998,3.87,a-exp-i1,2017-18,Melrose - Lincoln,01780020, 30.8, 100.0, 13.6 to 1, 77.3, 100.0 +4.154999999999999,4.15,a-exp-i1,2017-18,Melrose - Melrose High,01780505, 70.0, 100.0, 14.3 to 1, 83.1, 92.0 +4.035,4.04,a-exp-i1,2017-18,Melrose - Melrose Middle,01780305, 57.9, 100.0, 13.4 to 1, 80.7, 81.9 +3.6,3.6,a-exp-i1,2017-18,Melrose - Roosevelt,01780035, 29.5, 96.6, 14.8 to 1, 72.0, 96.6 +3.38,3.38,a-exp-i1,2017-18,Melrose - Winthrop,01780050, 26.3, 100.0, 15.4 to 1, 67.6, 94.3 +4.61,4.61,a-exp-i1,2017-18,Mendon-Upton - Henry P Clough,07100179, 25.5, 100.0, 14.6 to 1, 92.2, 100.0 +4.195,4.2,a-exp-i1,2017-18,Mendon-Upton - Memorial School,07100001, 31.0, 96.8, 15.4 to 1, 83.9, 93.5 +4.865,4.87,a-exp-i1,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 54.6, 100.0, 14.3 to 1, 97.3, 95.4 +4.1,4.1,a-exp-i1,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 47.7, 98.7, 13.3 to 1, 82.0, 87.4 +4.09,4.09,a-exp-i1,2017-18,Methuen - Comprehensive Grammar School,01810050, 77.0, 98.7, 14.0 to 1, 81.8, 97.4 +4.24,4.24,a-exp-i1,2017-18,Methuen - Donald P Timony Grammar,01810060, 93.5, 100.0, 14.5 to 1, 84.8, 94.7 +4.46,4.46,a-exp-i1,2017-18,Methuen - Marsh Grammar School,01810030, 84.0, 99.0, 14.3 to 1, 89.2, 96.1 +4.25,4.25,a-exp-i1,2017-18,Methuen - Methuen High,01810505, 143.7, 97.2, 13.6 to 1, 85.0, 85.1 +4.715,4.72,a-exp-i1,2017-18,Methuen - Tenney Grammar School,01810055, 91.4, 100.0, 14.8 to 1, 94.3, 97.8 +3.69,3.69,a-exp-i1,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 42.0, 100.0, 13.4 to 1, 73.8, 95.2 +4.71,4.71,a-exp-i1,2017-18,Middleborough - John T. Nichols Middle,01820305, 51.8, 100.0, 15.1 to 1, 94.2, 96.2 +4.1850000000000005,4.19,a-exp-i1,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 13.8 to 1, 83.7, 100.0 +4.735,4.74,a-exp-i1,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 19.0, 100.0, 15.3 to 1, 94.7, 100.0 +4.63,4.63,a-exp-i1,2017-18,Middleborough - Middleborough High,01820505, 67.2, 98.5, 10.7 to 1, 92.6, 94.0 +4.215,4.22,a-exp-i1,2017-18,Middleton - Fuller Meadow,01840003, 20.7, 100.0, 11.0 to 1, 84.3, 100.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Middleton - Howe-Manning,01840005, 36.0, 100.0, 12.8 to 1, 93.8, 97.2 +4.535,4.54,a-exp-i1,2017-18,Milford - Brookside,01850065, 40.6, 100.0, 11.7 to 1, 90.7, 97.5 +4.3950000000000005,4.4,a-exp-i1,2017-18,Milford - Memorial,01850010, 38.7, 100.0, 12.1 to 1, 87.9, 94.8 +4.5200000000000005,4.52,a-exp-i1,2017-18,Milford - Milford High,01850505, 87.1, 99.9, 13.2 to 1, 90.4, 88.1 +1.9449999999999998,1.94,a-exp-i1,2017-18,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 22.0 to 1, 38.9, 84.7 +4.475,4.48,a-exp-i1,2017-18,Milford - Stacy Middle,01850305, 77.8, 100.0, 12.6 to 1, 89.5, 88.4 +4.4350000000000005,4.44,a-exp-i1,2017-18,Milford - Woodland,01850090, 79.9, 100.0, 12.1 to 1, 88.7, 100.0 +4.08,4.08,a-exp-i1,2017-18,Millbury - Elmwood Street,01860017, 38.0, 100.0, 15.3 to 1, 81.6, 97.4 +4.09,4.09,a-exp-i1,2017-18,Millbury - Millbury Junior/Senior High,01860505, 60.6, 100.0, 11.8 to 1, 81.8, 82.5 +3.6049999999999995,3.6,a-exp-i1,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 28.7, 100.0, 15.2 to 1, 72.1, 96.5 +4.785,4.79,a-exp-i1,2017-18,Millis - Clyde F Brown,01870005, 34.9, 100.0, 14.4 to 1, 95.7, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Millis - Millis High School,01870505, 26.5, 100.0, 14.8 to 1, 96.2, 96.2 +4.515,4.52,a-exp-i1,2017-18,Millis - Millis Middle,01870020, 30.9, 96.8, 13.2 to 1, 90.3, 98.7 +3.975,3.98,a-exp-i1,2017-18,Milton - Charles S Pierce Middle,01890410, 76.7, 96.1, 11.9 to 1, 79.5, 88.5 +3.915,3.92,a-exp-i1,2017-18,Milton - Collicot,01890005, 41.5, 99.3, 17.2 to 1, 78.3, 98.3 +3.8200000000000003,3.82,a-exp-i1,2017-18,Milton - Cunningham School,01890007, 35.1, 100.0, 15.1 to 1, 76.4, 90.6 +3.7600000000000002,3.76,a-exp-i1,2017-18,Milton - Glover,01890010, 38.3, 97.4, 15.3 to 1, 75.2, 90.9 +4.165,4.17,a-exp-i1,2017-18,Milton - Milton High,01890505, 77.7, 100.0, 13.2 to 1, 83.3, 87.4 +4.16,4.16,a-exp-i1,2017-18,Milton - Tucker,01890020, 29.7, 100.0, 14.8 to 1, 83.2, 88.2 +4.465,4.47,a-exp-i1,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 73.7, 97.3, 7.3 to 1, 89.3, 86.4 +3.9,3.9,a-exp-i1,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 18.2, 100.0, 15.0 to 1, 78.0, 83.5 +4.775,4.78,a-exp-i1,2017-18,Mohawk Trail - Colrain Central,07170010, 8.9, 95.5, 11.9 to 1, 95.5, 100.0 +4.325,4.33,a-exp-i1,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 36.9, 100.0, 10.5 to 1, 86.5, 94.6 +3.88,3.88,a-exp-i1,2017-18,Mohawk Trail - Sanderson Academy,07170020, 13.4, 100.0, 11.9 to 1, 77.6, 92.5 +3.675,3.68,a-exp-i1,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 24.5, 91.8, 9.9 to 1, 73.5, 100.0 +4.33,4.33,a-exp-i1,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 48.5, 97.9, 11.3 to 1, 86.6, 99.0 +4.12,4.12,a-exp-i1,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.9, 98.3, 10.5 to 1, 82.4, 84.5 +3.81,3.81,a-exp-i1,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 44.9, 100.0, 10.1 to 1, 76.2, 89.7 +3.775,3.78,a-exp-i1,2017-18,Monson - Granite Valley Middle,01910310, 26.5, 98.1, 10.5 to 1, 75.5, 93.4 +3.96,3.96,a-exp-i1,2017-18,Monson - Monson High School,01910505, 26.5, 98.1, 9.7 to 1, 79.2, 88.7 +4.51,4.51,a-exp-i1,2017-18,Monson - Quarry Hill Community School,01910025, 30.5, 100.0, 12.9 to 1, 90.2, 99.2 +4.275,4.28,a-exp-i1,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 113.5, 99.1, 12.5 to 1, 85.5, 82.4 +4.67,4.67,a-exp-i1,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 45.5, 100.0, 11.8 to 1, 93.4, 95.6 +2.09,2.09,a-exp-i1,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 100.5, 53.2, 15.6 to 1, 41.8, 76.6 +4.555,4.56,a-exp-i1,2017-18,Nahant - Johnson,01960010, 9.5, 97.9, 15.5 to 1, 91.1, 97.9 +3.4850000000000003,3.49,a-exp-i1,2017-18,Nantucket - Cyrus Peirce,01970010, 33.0, 93.9, 10.5 to 1, 69.7, 87.9 +3.63,3.63,a-exp-i1,2017-18,Nantucket - Nantucket Elementary,01970005, 32.9, 97.0, 11.0 to 1, 72.6, 84.8 +3.53,3.53,a-exp-i1,2017-18,Nantucket - Nantucket High,01970505, 47.0, 96.6, 11.3 to 1, 70.6, 65.9 +4.154999999999999,4.15,a-exp-i1,2017-18,Nantucket - Nantucket Intermediate School,01970020, 29.5, 96.6, 12.7 to 1, 83.1, 93.2 +3.835,3.84,a-exp-i1,2017-18,Narragansett - Baldwinville Elementary,07200005, 17.2, 100.0, 16.8 to 1, 76.7, 73.9 +4.66,4.66,a-exp-i1,2017-18,Narragansett - Narragansett Middle,07200305, 29.3, 100.0, 15.6 to 1, 93.2, 88.0 +3.88,3.88,a-exp-i1,2017-18,Narragansett - Narragansett Regional High,07200505, 31.3, 93.6, 11.0 to 1, 77.6, 85.6 +5.0,5.0,a-exp-i1,2017-18,Narragansett - Phillipston Memorial,07200003, 9.0, 88.9, 18.8 to 1, 100.0, 97.8 +5.0,5.0,a-exp-i1,2017-18,Narragansett - Templeton Center,07200020, 10.8, 100.0, 15.7 to 1, 100.0, 97.0 +3.97,3.97,a-exp-i1,2017-18,Nashoba - Center School,07250020, 41.7, 100.0, 13.6 to 1, 79.4, 98.6 +4.13,4.13,a-exp-i1,2017-18,Nashoba - Florence Sawyer School,07250025, 60.6, 100.0, 12.6 to 1, 82.6, 98.4 +3.95,3.95,a-exp-i1,2017-18,Nashoba - Hale,07250310, 23.4, 100.0, 12.9 to 1, 79.0, 95.7 +4.39,4.39,a-exp-i1,2017-18,Nashoba - Luther Burbank Middle School,07250305, 23.2, 100.0, 10.7 to 1, 87.8, 91.4 +4.35,4.35,a-exp-i1,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 36.3, 100.0, 13.0 to 1, 87.0, 94.5 +4.24,4.24,a-exp-i1,2017-18,Nashoba - Nashoba Regional,07250505, 75.2, 98.7, 13.1 to 1, 84.8, 93.6 +3.6700000000000004,3.67,a-exp-i1,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.0, 98.4, 10.9 to 1, 73.4, 68.8 +4.485,4.49,a-exp-i1,2017-18,Natick - Bennett-Hemenway,01980005, 38.7, 100.0, 15.3 to 1, 89.7, 100.0 +3.2350000000000003,3.24,a-exp-i1,2017-18,Natick - Brown,01980010, 37.4, 100.0, 14.0 to 1, 64.7, 86.1 +4.529999999999999,4.53,a-exp-i1,2017-18,Natick - J F Kennedy Middle School,01980305, 53.0, 100.0, 12.1 to 1, 90.6, 91.5 +3.8850000000000002,3.89,a-exp-i1,2017-18,Natick - Johnson,01980031, 20.4, 98.0, 11.2 to 1, 77.7, 100.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Natick - Lilja Elementary,01980035, 27.9, 100.0, 15.4 to 1, 82.1, 89.2 +4.175,4.18,a-exp-i1,2017-18,Natick - Memorial,01980043, 27.8, 100.0, 14.9 to 1, 83.5, 96.4 +4.1450000000000005,4.15,a-exp-i1,2017-18,Natick - Natick High,01980505, 120.8, 100.0, 14.3 to 1, 82.9, 89.2 +3.415,3.42,a-exp-i1,2017-18,Natick - Wilson Middle,01980310, 77.9, 99.9, 12.1 to 1, 68.3, 87.8 +4.2,4.2,a-exp-i1,2017-18,Nauset - Nauset Regional High,06600505, 81.6, 97.7, 11.2 to 1, 84.0, 89.2 +4.09,4.09,a-exp-i1,2017-18,Nauset - Nauset Regional Middle,06600305, 55.1, 97.7, 10.0 to 1, 81.8, 96.0 +4.535,4.54,a-exp-i1,2017-18,Needham - Broadmeadow,01990005, 32.4, 100.0, 16.8 to 1, 90.7, 90.7 +4.8,4.8,a-exp-i1,2017-18,Needham - High Rock School,01990410, 37.8, 100.0, 11.9 to 1, 96.0, 97.4 +4.3950000000000005,4.4,a-exp-i1,2017-18,Needham - Hillside Elementary,01990035, 33.1, 100.0, 14.7 to 1, 87.9, 92.7 +4.38,4.38,a-exp-i1,2017-18,Needham - John Eliot,01990020, 24.2, 100.0, 16.2 to 1, 87.6, 100.0 +4.21,4.21,a-exp-i1,2017-18,Needham - Needham High,01990505, 124.6, 99.2, 13.5 to 1, 84.2, 93.6 +4.18,4.18,a-exp-i1,2017-18,Needham - Newman Elementary,01990050, 51.5, 97.2, 14.7 to 1, 83.6, 99.1 +3.9200000000000004,3.92,a-exp-i1,2017-18,Needham - Pollard Middle,01990405, 74.0, 100.0, 11.5 to 1, 78.4, 87.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Needham - William Mitchell,01990040, 30.6, 99.8, 16.3 to 1, 89.4, 99.8 +1.3800000000000001,1.38,a-exp-i1,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 57.8, 60.7, 9.2 to 1, 27.6, 84.4 +4.305,4.31,a-exp-i1,2017-18,New Bedford - Abraham Lincoln,02010095, 43.1, 100.0, 16.6 to 1, 86.1, 97.7 +3.335,3.34,a-exp-i1,2017-18,New Bedford - Alfred J Gomes,02010063, 39.0, 97.4, 14.2 to 1, 66.7, 92.4 +3.595,3.6,a-exp-i1,2017-18,New Bedford - Betsey B Winslow,02010140, 17.9, 98.6, 17.3 to 1, 71.9, 90.1 +2.52,2.52,a-exp-i1,2017-18,New Bedford - Carlos Pacheco,02010105, 27.8, 96.4, 12.9 to 1, 50.4, 92.7 +4.38,4.38,a-exp-i1,2017-18,New Bedford - Casimir Pulaski,02010123, 48.5, 95.9, 15.0 to 1, 87.6, 100.0 +4.07,4.07,a-exp-i1,2017-18,New Bedford - Charles S Ashley,02010010, 18.2, 97.4, 15.5 to 1, 81.4, 94.5 +4.5649999999999995,4.56,a-exp-i1,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 16.6, 91.3, 18.0 to 1, 91.3, 100.0 +2.215,2.22,a-exp-i1,2017-18,New Bedford - Ellen R Hathaway,02010075, 22.6, 97.7, 13.4 to 1, 44.3, 82.3 +4.3100000000000005,4.31,a-exp-i1,2017-18,New Bedford - Elwyn G Campbell,02010020, 18.3, 94.5, 15.0 to 1, 86.2, 91.8 +1.67,1.67,a-exp-i1,2017-18,New Bedford - Hayden/McFadden,02010078, 54.1, 92.6, 12.5 to 1, 33.4, 90.7 +3.22,3.22,a-exp-i1,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 23.2, 97.0, 14.9 to 1, 64.4, 89.1 +4.08,4.08,a-exp-i1,2017-18,New Bedford - James B Congdon,02010040, 24.2, 100.0, 13.9 to 1, 81.6, 90.9 +4.83,4.83,a-exp-i1,2017-18,New Bedford - Jireh Swift,02010130, 13.4, 100.0, 16.1 to 1, 96.6, 96.3 +2.075,2.08,a-exp-i1,2017-18,New Bedford - John Avery Parker,02010115, 20.5, 90.3, 13.9 to 1, 41.5, 85.3 +3.3200000000000003,3.32,a-exp-i1,2017-18,New Bedford - John B Devalles,02010050, 25.2, 97.1, 15.4 to 1, 66.4, 88.1 +2.85,2.85,a-exp-i1,2017-18,New Bedford - Keith Middle School,02010405, 72.0, 88.2, 12.4 to 1, 57.0, 84.7 +3.585,3.59,a-exp-i1,2017-18,New Bedford - New Bedford High,02010505, 162.1, 94.3, 12.1 to 1, 71.7, 78.3 +4.015,4.02,a-exp-i1,2017-18,New Bedford - Normandin Middle School,02010410, 78.6, 96.2, 16.0 to 1, 80.3, 78.3 +2.4699999999999998,2.47,a-exp-i1,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 20.3, 95.1, 11.0 to 1, 49.4, 95.1 +3.94,3.94,a-exp-i1,2017-18,New Bedford - Roosevelt Middle School,02010415, 66.0, 97.0, 12.2 to 1, 78.8, 83.3 +3.3,3.3,a-exp-i1,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 50.0, 86.0, 15.6 to 1, 66.0, 96.0 +4.445,4.45,a-exp-i1,2017-18,New Bedford - Thomas R Rodman,02010125, 12.3, 92.9, 15.9 to 1, 88.9, 100.0 +2.93,2.93,a-exp-i1,2017-18,New Bedford - Trinity Day Academy,02010510, 9.7, 74.1, 8.2 to 1, 58.6, 89.6 +3.09,3.09,a-exp-i1,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 15.7, 93.6, 6.4 to 1, 61.8, 55.4 +4.32,4.32,a-exp-i1,2017-18,New Bedford - William H Taylor,02010135, 17.8, 100.0, 14.7 to 1, 86.4, 97.3 +0.95,1,a-exp-i1,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 31.5, 68.3, 13.4 to 1, 19.0, 71.4 +3.2649999999999997,3.26,a-exp-i1,2017-18,New Salem-Wendell - Swift River,07280015, 14.3, 100.0, 10.6 to 1, 65.3, 86.0 +4.465,4.47,a-exp-i1,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 27.0, 100.0, 11.9 to 1, 89.3, 98.5 +4.39,4.39,a-exp-i1,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 53.3, 100.0, 11.5 to 1, 87.8, 100.0 +4.485,4.49,a-exp-i1,2017-18,Newburyport - Newburyport High,02040505, 63.2, 100.0, 12.2 to 1, 89.7, 96.8 +4.635,4.64,a-exp-i1,2017-18,Newburyport - Rupert A Nock Middle,02040305, 42.6, 100.0, 13.1 to 1, 92.7, 96.2 +4.36,4.36,a-exp-i1,2017-18,Newton - A E Angier,02070005, 39.9, 97.5, 11.7 to 1, 87.2, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Newton - Bigelow Middle,02070305, 52.1, 98.1, 10.0 to 1, 90.4, 98.1 +3.785,3.79,a-exp-i1,2017-18,Newton - Bowen,02070015, 32.9, 100.0, 12.8 to 1, 75.7, 100.0 +3.3549999999999995,3.35,a-exp-i1,2017-18,Newton - C C Burr,02070020, 29.7, 100.0, 13.0 to 1, 67.1, 93.3 +3.535,3.54,a-exp-i1,2017-18,Newton - Cabot,02070025, 30.7, 95.1, 12.7 to 1, 70.7, 96.7 +4.76,4.76,a-exp-i1,2017-18,Newton - Charles E Brown Middle,02070310, 66.9, 100.0, 11.3 to 1, 95.2, 90.7 +4.455,4.46,a-exp-i1,2017-18,Newton - Countryside,02070040, 36.9, 97.3, 11.1 to 1, 89.1, 97.3 +4.1899999999999995,4.19,a-exp-i1,2017-18,Newton - F A Day Middle,02070315, 86.5, 98.8, 11.3 to 1, 83.8, 93.1 +3.4850000000000003,3.49,a-exp-i1,2017-18,Newton - Franklin,02070055, 36.0, 93.1, 12.1 to 1, 69.7, 93.9 +4.0,4.0,a-exp-i1,2017-18,Newton - Horace Mann,02070075, 31.1, 94.8, 13.0 to 1, 80.0, 97.1 +4.165,4.17,a-exp-i1,2017-18,Newton - John Ward,02070120, 24.0, 100.0, 12.9 to 1, 83.3, 95.0 +4.16,4.16,a-exp-i1,2017-18,Newton - Lincoln-Eliot,02070070, 32.6, 98.5, 11.5 to 1, 83.2, 100.0 +4.25,4.25,a-exp-i1,2017-18,Newton - Mason-Rice,02070080, 32.0, 98.4, 16.0 to 1, 85.0, 100.0 +4.285,4.29,a-exp-i1,2017-18,Newton - Memorial Spaulding,02070105, 39.2, 100.0, 11.6 to 1, 85.7, 97.4 +4.1,4.1,a-exp-i1,2017-18,Newton - Newton Early Childhood Center,02070108, 15.3, 100.0, 12.9 to 1, 82.0, 100.0 +4.335,4.34,a-exp-i1,2017-18,Newton - Newton North High,02070505, 186.4, 98.6, 11.5 to 1, 86.7, 94.3 +4.36,4.36,a-exp-i1,2017-18,Newton - Newton South High,02070510, 156.6, 99.7, 12.1 to 1, 87.2, 94.5 +4.0,4.0,a-exp-i1,2017-18,Newton - Oak Hill Middle,02070320, 57.3, 99.1, 10.7 to 1, 80.0, 93.3 +4.65,4.65,a-exp-i1,2017-18,Newton - Peirce,02070100, 21.3, 100.0, 12.9 to 1, 93.0, 100.0 +4.35,4.35,a-exp-i1,2017-18,Newton - Underwood,02070115, 23.0, 100.0, 12.3 to 1, 87.0, 91.3 +3.685,3.69,a-exp-i1,2017-18,Newton - Williams,02070125, 22.8, 97.8, 13.0 to 1, 73.7, 100.0 +4.075,4.08,a-exp-i1,2017-18,Newton - Zervas,02070130, 32.4, 96.9, 12.6 to 1, 81.5, 96.9 +4.49,4.49,a-exp-i1,2017-18,Norfolk - Freeman-Kennedy School,02080005, 39.2, 97.4, 12.5 to 1, 89.8, 100.0 +4.18,4.18,a-exp-i1,2017-18,Norfolk - H Olive Day,02080015, 36.6, 100.0, 12.6 to 1, 83.6, 95.9 +3.835,3.84,a-exp-i1,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 55.9, 98.2, 9.8 to 1, 76.7, 78.5 +4.82,4.82,a-exp-i1,2017-18,North Adams - Brayton,02090035, 27.7, 96.4, 9.4 to 1, 96.4, 92.8 +3.535,3.54,a-exp-i1,2017-18,North Adams - Colegrove Park Elementary,02090008, 26.5, 96.2, 13.6 to 1, 70.7, 78.3 +4.07,4.07,a-exp-i1,2017-18,North Adams - Drury High,02090505, 45.8, 93.4, 11.4 to 1, 81.4, 82.0 +4.365,4.37,a-exp-i1,2017-18,North Adams - Greylock,02090015, 23.7, 100.0, 12.5 to 1, 87.3, 93.7 +4.725,4.73,a-exp-i1,2017-18,North Andover - Annie L Sargent School,02110018, 31.5, 100.0, 17.8 to 1, 94.5, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,North Andover - Atkinson,02110001, 34.6, 97.1, 16.4 to 1, 85.6, 98.4 +4.1450000000000005,4.15,a-exp-i1,2017-18,North Andover - Franklin,02110010, 29.2, 100.0, 15.5 to 1, 82.9, 100.0 +4.425,4.43,a-exp-i1,2017-18,North Andover - Kittredge,02110015, 17.4, 100.0, 16.6 to 1, 88.5, 97.5 +4.1450000000000005,4.15,a-exp-i1,2017-18,North Andover - North Andover High,02110505, 90.7, 96.9, 16.4 to 1, 82.9, 91.8 +4.39,4.39,a-exp-i1,2017-18,North Andover - North Andover Middle,02110305, 73.6, 100.0, 15.0 to 1, 87.8, 90.5 +4.5200000000000005,4.52,a-exp-i1,2017-18,North Andover - Thomson,02110020, 23.9, 100.0, 14.4 to 1, 90.4, 95.8 +4.785,4.79,a-exp-i1,2017-18,North Attleborough - Amvet Boulevard,02120007, 23.3, 100.0, 17.1 to 1, 95.7, 100.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,North Attleborough - Community,02120030, 30.7, 100.0, 10.4 to 1, 83.7, 93.5 +5.0,5.0,a-exp-i1,2017-18,North Attleborough - Falls,02120010, 17.4, 100.0, 15.8 to 1, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 36.0, 100.0, 17.7 to 1, 86.2, 94.4 +4.43,4.43,a-exp-i1,2017-18,North Attleborough - North Attleboro High,02120505, 80.7, 100.0, 14.3 to 1, 88.6, 95.1 +2.8600000000000003,2.86,a-exp-i1,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 18.0 to 1, 57.2, 100.0 +3.9799999999999995,3.98,a-exp-i1,2017-18,North Attleborough - North Attleborough Middle,02120305, 73.4, 100.0, 14.8 to 1, 79.6, 93.2 +4.775,4.78,a-exp-i1,2017-18,North Attleborough - Roosevelt Avenue,02120015, 17.3, 100.0, 16.3 to 1, 95.5, 95.5 +2.935,2.94,a-exp-i1,2017-18,North Brookfield - North Brookfield Elementary,02150015, 23.0, 95.7, 14.3 to 1, 58.7, 95.7 +4.08,4.08,a-exp-i1,2017-18,North Brookfield - North Brookfield High,02150505, 21.7, 95.4, 10.5 to 1, 81.6, 86.2 +4.38,4.38,a-exp-i1,2017-18,North Middlesex - Ashby Elementary,07350010, 18.5, 100.0, 9.9 to 1, 87.6, 93.0 +3.9299999999999997,3.93,a-exp-i1,2017-18,North Middlesex - Hawthorne Brook,07350030, 42.0, 100.0, 12.0 to 1, 78.6, 95.2 +4.275,4.28,a-exp-i1,2017-18,North Middlesex - Nissitissit Middle School,07350310, 48.4, 97.9, 10.8 to 1, 85.5, 89.7 +3.745,3.75,a-exp-i1,2017-18,North Middlesex - North Middlesex Regional,07350505, 60.0, 98.3, 13.3 to 1, 74.9, 95.0 +5.0,5.0,a-exp-i1,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 1.0, 100.0, 18.0 to 1, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,North Middlesex - Spaulding Memorial,07350005, 32.0, 100.0, 13.2 to 1, 84.4, 96.9 +3.935,3.94,a-exp-i1,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 4.7, 100.0, 19.1 to 1, 78.7, 100.0 +4.825,4.83,a-exp-i1,2017-18,North Middlesex - Varnum Brook,07350035, 42.3, 100.0, 12.7 to 1, 96.5, 100.0 +4.8950000000000005,4.9,a-exp-i1,2017-18,North Reading - E Ethel Little School,02170003, 23.7, 100.0, 13.9 to 1, 97.9, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,North Reading - J Turner Hood,02170010, 28.2, 100.0, 11.9 to 1, 90.4, 100.0 +4.455,4.46,a-exp-i1,2017-18,North Reading - L D Batchelder,02170005, 31.1, 96.8, 14.9 to 1, 89.1, 100.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,North Reading - North Reading High,02170505, 69.8, 100.0, 11.6 to 1, 88.7, 92.2 +4.779999999999999,4.78,a-exp-i1,2017-18,North Reading - North Reading Middle,02170305, 45.2, 100.0, 12.1 to 1, 95.6, 97.8 +4.195,4.2,a-exp-i1,2017-18,Northampton - Bridge Street,02100005, 29.9, 100.0, 9.2 to 1, 83.9, 90.6 +4.165,4.17,a-exp-i1,2017-18,Northampton - Jackson Street,02100020, 31.2, 100.0, 11.5 to 1, 83.3, 96.2 +4.14,4.14,a-exp-i1,2017-18,Northampton - John F Kennedy Middle School,02100410, 60.6, 100.0, 10.1 to 1, 82.8, 91.1 +3.7700000000000005,3.77,a-exp-i1,2017-18,Northampton - Leeds,02100025, 28.5, 100.0, 11.3 to 1, 75.4, 100.0 +4.65,4.65,a-exp-i1,2017-18,Northampton - Northampton High,02100505, 56.8, 99.1, 15.3 to 1, 93.0, 94.7 +4.59,4.59,a-exp-i1,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 24.5, 100.0, 9.0 to 1, 91.8, 95.9 +3.84,3.84,a-exp-i1,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 56.0, 94.6, 8.9 to 1, 76.8, 73.2 +4.43,4.43,a-exp-i1,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 114.8, 99.3, 12.8 to 1, 88.6, 94.9 +4.455,4.46,a-exp-i1,2017-18,Northborough - Fannie E Proctor,02130015, 18.4, 100.0, 13.5 to 1, 89.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Northborough - Lincoln Street,02130003, 14.7, 100.0, 17.3 to 1, 100.0, 100.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Northborough - Marguerite E Peaslee,02130014, 16.0, 100.0, 17.2 to 1, 93.8, 100.0 +5.0,5.0,a-exp-i1,2017-18,Northborough - Marion E Zeh,02130020, 12.9, 100.0, 18.9 to 1, 100.0, 100.0 +4.154999999999999,4.15,a-exp-i1,2017-18,Northborough - Robert E. Melican Middle School,02130305, 51.5, 100.0, 12.1 to 1, 83.1, 90.6 +5.0,5.0,a-exp-i1,2017-18,Northbridge - Northbridge Elementary,02140005, 27.7, 100.0, 13.7 to 1, 100.0, 100.0 +4.46,4.46,a-exp-i1,2017-18,Northbridge - Northbridge High,02140505, 49.9, 100.0, 11.4 to 1, 89.2, 92.0 +4.49,4.49,a-exp-i1,2017-18,Northbridge - Northbridge Middle,02140305, 49.0, 100.0, 14.8 to 1, 89.8, 93.9 +4.265,4.27,a-exp-i1,2017-18,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 13.5 to 1, 85.3, 100.0 +4.3149999999999995,4.31,a-exp-i1,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 115.3, 97.0, 10.8 to 1, 86.3, 85.9 +4.63,4.63,a-exp-i1,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.4, 94.6, 10.5 to 1, 92.6, 93.5 +4.1049999999999995,4.1,a-exp-i1,2017-18,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 13.8 to 1, 82.1, 96.5 +4.45,4.45,a-exp-i1,2017-18,Norton - J C Solmonese,02180015, 36.5, 100.0, 12.7 to 1, 89.0, 100.0 +3.6149999999999998,3.62,a-exp-i1,2017-18,Norton - L G Nourse Elementary,02180010, 21.8, 100.0, 13.1 to 1, 72.3, 100.0 +4.01,4.01,a-exp-i1,2017-18,Norton - Norton High,02180505, 56.2, 96.4, 13.2 to 1, 80.2, 83.1 +4.3549999999999995,4.35,a-exp-i1,2017-18,Norton - Norton Middle,02180305, 51.6, 100.0, 11.4 to 1, 87.1, 94.2 +4.295,4.3,a-exp-i1,2017-18,Norwell - Grace Farrar Cole,02190005, 33.8, 100.0, 14.1 to 1, 85.9, 97.0 +4.71,4.71,a-exp-i1,2017-18,Norwell - Norwell High,02190505, 51.9, 100.0, 13.4 to 1, 94.2, 96.1 +4.885,4.89,a-exp-i1,2017-18,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.7 to 1, 97.7, 95.4 +4.11,4.11,a-exp-i1,2017-18,Norwell - William G Vinal,02190020, 33.7, 100.0, 15.4 to 1, 82.2, 97.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Norwood - Balch,02200005, 24.2, 100.0, 12.2 to 1, 93.8, 100.0 +5.0,5.0,a-exp-i1,2017-18,Norwood - Charles J Prescott,02200025, 20.1, 100.0, 12.4 to 1, 100.0, 100.0 +4.015,4.02,a-exp-i1,2017-18,Norwood - Cornelius M Callahan,02200010, 20.3, 100.0, 10.8 to 1, 80.3, 95.1 +4.33,4.33,a-exp-i1,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 62.9, 100.0, 11.7 to 1, 86.6, 93.0 +4.8149999999999995,4.81,a-exp-i1,2017-18,Norwood - F A Cleveland,02200015, 27.0, 100.0, 12.1 to 1, 96.3, 100.0 +4.6,4.6,a-exp-i1,2017-18,Norwood - George F. Willett,02200075, 24.9, 100.0, 15.6 to 1, 92.0, 100.0 +4.54,4.54,a-exp-i1,2017-18,Norwood - John P Oldham,02200020, 21.7, 100.0, 10.5 to 1, 90.8, 100.0 +4.55,4.55,a-exp-i1,2017-18,Norwood - Norwood High,02200505, 69.7, 100.0, 13.7 to 1, 91.0, 93.0 +4.035,4.04,a-exp-i1,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 46.5, 98.8, 9.2 to 1, 80.7, 88.6 +4.029999999999999,4.03,a-exp-i1,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 57.0, 96.5, 9.4 to 1, 80.6, 80.2 +4.55,4.55,a-exp-i1,2017-18,Old Rochester - Old Rochester Regional High,07400505, 53.7, 100.0, 14.5 to 1, 91.0, 96.3 +4.46,4.46,a-exp-i1,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 12.9 to 1, 89.2, 97.3 +0.7849999999999999,1,a-exp-i1,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 14.2, 100.0, 11.2 to 1, 15.7, 78.9 +3.905,3.91,a-exp-i1,2017-18,Orange - Dexter Park,02230010, 23.1, 100.0, 13.6 to 1, 78.1, 89.1 +3.4200000000000004,3.42,a-exp-i1,2017-18,Orange - Fisher Hill,02230015, 21.9, 100.0, 12.8 to 1, 68.4, 88.8 +4.6049999999999995,4.6,a-exp-i1,2017-18,Orleans - Orleans Elementary,02240005, 21.6, 100.0, 10.3 to 1, 92.1, 97.7 +4.39,4.39,a-exp-i1,2017-18,Oxford - Alfred M Chaffee,02260010, 20.0, 100.0, 14.5 to 1, 87.8, 97.8 +4.475,4.48,a-exp-i1,2017-18,Oxford - Clara Barton,02260005, 24.5, 100.0, 15.6 to 1, 89.5, 93.6 +4.325,4.33,a-exp-i1,2017-18,Oxford - Oxford High,02260505, 40.8, 100.0, 13.3 to 1, 86.5, 83.8 +4.7700000000000005,4.77,a-exp-i1,2017-18,Oxford - Oxford Middle,02260405, 30.7, 100.0, 14.4 to 1, 95.4, 93.5 +4.8950000000000005,4.9,a-exp-i1,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 7.2, 100.0, 3.8 to 1, 97.9, 58.0 +4.21,4.21,a-exp-i1,2017-18,Palmer - Old Mill Pond,02270008, 57.0, 100.0, 12.1 to 1, 84.2, 98.2 +4.470000000000001,4.47,a-exp-i1,2017-18,Palmer - Palmer High,02270505, 62.0, 100.0, 11.5 to 1, 89.4, 93.5 +4.12,4.12,a-exp-i1,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 73.7, 91.9, 8.3 to 1, 82.4, 85.8 +2.04,2.04,a-exp-i1,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.0, 57.9, 7.7 to 1, 40.8, 74.3 +4.805,4.81,a-exp-i1,2017-18,Peabody - Captain Samuel Brown,02290005, 29.3, 99.5, 12.2 to 1, 96.1, 99.3 +4.2700000000000005,4.27,a-exp-i1,2017-18,Peabody - Center,02290015, 26.1, 99.5, 15.1 to 1, 85.4, 94.3 +4.39,4.39,a-exp-i1,2017-18,Peabody - J Henry Higgins Middle,02290305, 94.0, 98.4, 14.5 to 1, 87.8, 92.0 +3.96,3.96,a-exp-i1,2017-18,Peabody - John E Burke,02290007, 23.4, 99.5, 11.2 to 1, 79.2, 96.9 +4.55,4.55,a-exp-i1,2017-18,Peabody - John E. McCarthy,02290016, 25.9, 100.0, 13.7 to 1, 91.0, 98.5 +4.365,4.37,a-exp-i1,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 126.2, 96.0, 11.7 to 1, 87.3, 91.1 +4.32,4.32,a-exp-i1,2017-18,Peabody - South Memorial,02290035, 28.8, 96.1, 16.2 to 1, 86.4, 96.5 +3.9200000000000004,3.92,a-exp-i1,2017-18,Peabody - Thomas Carroll,02290010, 41.6, 100.0, 15.0 to 1, 78.4, 99.5 +4.11,4.11,a-exp-i1,2017-18,Peabody - West Memorial,02290045, 20.1, 98.8, 12.3 to 1, 82.2, 93.4 +4.485,4.49,a-exp-i1,2017-18,Peabody - William A Welch Sr,02290027, 24.2, 100.0, 14.9 to 1, 89.7, 89.7 +3.35,3.35,a-exp-i1,2017-18,Pelham - Pelham Elementary,02300005, 11.5, 98.3, 11.0 to 1, 67.0, 91.3 +4.375,4.38,a-exp-i1,2017-18,Pembroke - Bryantville Elementary,02310003, 31.9, 100.0, 15.7 to 1, 87.5, 98.2 +4.37,4.37,a-exp-i1,2017-18,Pembroke - Hobomock Elementary,02310010, 29.7, 100.0, 14.3 to 1, 87.4, 91.3 +4.625,4.63,a-exp-i1,2017-18,Pembroke - North Pembroke Elementary,02310015, 39.9, 100.0, 13.8 to 1, 92.5, 97.3 +4.76,4.76,a-exp-i1,2017-18,Pembroke - Pembroke Community Middle School,02310305, 31.1, 100.0, 16.0 to 1, 95.2, 99.7 +4.25,4.25,a-exp-i1,2017-18,Pembroke - Pembroke High School,02310505, 65.8, 98.5, 14.0 to 1, 85.0, 88.0 +3.7299999999999995,3.73,a-exp-i1,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 16.4, 100.0, 13.3 to 1, 74.6, 96.2 +4.58,4.58,a-exp-i1,2017-18,Pentucket - Dr John C Page School,07450015, 27.7, 100.0, 12.3 to 1, 91.6, 95.2 +4.24,4.24,a-exp-i1,2017-18,Pentucket - Elmer S Bagnall,07450005, 38.4, 100.0, 13.2 to 1, 84.8, 95.3 +4.2,4.2,a-exp-i1,2017-18,Pentucket - Helen R Donaghue School,07450010, 22.3, 100.0, 10.8 to 1, 84.0, 96.2 +4.7299999999999995,4.73,a-exp-i1,2017-18,Pentucket - Pentucket Regional Middle,07450405, 31.5, 100.0, 13.4 to 1, 94.6, 91.7 +4.375,4.38,a-exp-i1,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 58.1, 100.0, 12.8 to 1, 87.5, 89.8 +3.97,3.97,a-exp-i1,2017-18,Petersham - Petersham Center,02340005, 11.3, 82.5, 10.3 to 1, 79.4, 96.9 +0.0,1,a-exp-i1,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 13.3, 63.9, 15.3 to 1, 0.0, 62.4 +1.565,1.57,a-exp-i1,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 16.0, 43.8, 12.3 to 1, 31.3, 68.8 +0.97,1,a-exp-i1,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 66.5, 71.0, 10.0 to 1, 19.4, 87.9 +0.8150000000000001,1,a-exp-i1,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 30.7, 65.8, 11.6 to 1, 16.3, 71.5 +4.635,4.64,a-exp-i1,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 13.7, 100.0, 11.5 to 1, 92.7, 100.0 +4.41,4.41,a-exp-i1,2017-18,Pioneer Valley - Northfield Elementary,07500008, 17.5, 96.8, 10.6 to 1, 88.2, 97.1 +3.4899999999999998,3.49,a-exp-i1,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 6.6, 100.0, 5.0 to 1, 69.8, 100.0 +4.485,4.49,a-exp-i1,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 29.2, 96.6, 12.3 to 1, 89.7, 93.2 +5.0,5.0,a-exp-i1,2017-18,Pioneer Valley - Warwick Community School,07500009, 6.9, 100.0, 8.6 to 1, 100.0, 100.0 +2.5149999999999997,2.51,a-exp-i1,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.6, 72.2, 7.8 to 1, 50.3, 78.3 +4.0649999999999995,4.06,a-exp-i1,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 44.1, 67.3, 9.1 to 1, 81.3, 72.8 +4.295,4.3,a-exp-i1,2017-18,Pittsfield - Allendale,02360010, 21.3, 100.0, 13.5 to 1, 85.9, 100.0 +3.5799999999999996,3.58,a-exp-i1,2017-18,Pittsfield - Crosby,02360065, 35.2, 94.3, 12.7 to 1, 71.6, 85.8 +3.965,3.97,a-exp-i1,2017-18,Pittsfield - Egremont,02360035, 29.0, 96.6, 14.6 to 1, 79.3, 93.1 +4.665,4.67,a-exp-i1,2017-18,Pittsfield - John T Reid Middle,02360305, 52.6, 100.0, 10.5 to 1, 93.3, 91.2 +3.63,3.63,a-exp-i1,2017-18,Pittsfield - Morningside Community School,02360055, 36.5, 94.5, 10.6 to 1, 72.6, 91.8 +4.26,4.26,a-exp-i1,2017-18,Pittsfield - Pittsfield High,02360505, 80.5, 100.0, 10.6 to 1, 85.2, 82.1 +4.87,4.87,a-exp-i1,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 16.0, 100.0, 13.5 to 1, 97.4, 98.8 +3.815,3.82,a-exp-i1,2017-18,Pittsfield - Silvio O Conte Community,02360105, 30.8, 100.0, 11.7 to 1, 76.3, 87.9 +3.595,3.6,a-exp-i1,2017-18,Pittsfield - Stearns,02360090, 15.7, 100.0, 15.6 to 1, 71.9, 87.2 +4.675,4.68,a-exp-i1,2017-18,Pittsfield - Taconic High,02360510, 73.1, 98.6, 10.0 to 1, 93.5, 90.3 +4.265,4.27,a-exp-i1,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 50.7, 100.0, 12.7 to 1, 85.3, 79.7 +4.18,4.18,a-exp-i1,2017-18,Pittsfield - Williams,02360100, 21.9, 95.4, 14.6 to 1, 83.6, 100.0 +4.0649999999999995,4.06,a-exp-i1,2017-18,Plainville - Anna Ware Jackson,02380010, 27.3, 97.8, 14.8 to 1, 81.3, 97.8 +4.045,4.05,a-exp-i1,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 21.0, 98.1, 14.4 to 1, 80.9, 96.2 +3.755,3.76,a-exp-i1,2017-18,Plymouth - Cold Spring,02390005, 21.7, 97.2, 11.7 to 1, 75.1, 91.6 +3.9850000000000003,3.99,a-exp-i1,2017-18,Plymouth - Federal Furnace School,02390011, 36.9, 97.3, 10.5 to 1, 79.7, 96.9 +3.54,3.54,a-exp-i1,2017-18,Plymouth - Hedge,02390010, 21.7, 100.0, 7.1 to 1, 70.8, 96.6 +4.025,4.03,a-exp-i1,2017-18,Plymouth - Indian Brook,02390012, 41.7, 100.0, 13.6 to 1, 80.5, 99.2 +3.7350000000000003,3.74,a-exp-i1,2017-18,Plymouth - Manomet Elementary,02390015, 22.6, 95.6, 12.7 to 1, 74.7, 97.3 +4.49,4.49,a-exp-i1,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 44.5, 97.8, 12.3 to 1, 89.8, 96.6 +4.385,4.39,a-exp-i1,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 84.6, 100.0, 12.1 to 1, 87.7, 95.3 +3.8899999999999997,3.89,a-exp-i1,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 15.6 to 1, 77.8, 100.0 +3.85,3.85,a-exp-i1,2017-18,Plymouth - Plymouth North High,02390505, 104.2, 98.7, 12.3 to 1, 77.0, 83.7 +4.36,4.36,a-exp-i1,2017-18,Plymouth - Plymouth South High,02390515, 105.5, 96.0, 10.4 to 1, 87.2, 90.4 +4.755,4.76,a-exp-i1,2017-18,Plymouth - Plymouth South Middle,02390305, 57.2, 100.0, 12.7 to 1, 95.1, 98.3 +3.66,3.66,a-exp-i1,2017-18,Plymouth - South Elementary,02390046, 50.1, 99.2, 13.0 to 1, 73.2, 95.6 +4.154999999999999,4.15,a-exp-i1,2017-18,Plymouth - West Elementary,02390047, 33.9, 100.0, 11.6 to 1, 83.1, 98.5 +4.425,4.43,a-exp-i1,2017-18,Plympton - Dennett Elementary,02400010, 18.3, 100.0, 11.3 to 1, 88.5, 100.0 +2.495,2.5,a-exp-i1,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 111.1, 81.6, 10.2 to 1, 49.9, 88.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Provincetown - Provincetown Schools,02420020, 19.1, 100.0, 6.3 to 1, 80.6, 85.9 +3.79,3.79,a-exp-i1,2017-18,Quabbin - Hardwick Elementary,07530005, 13.2, 100.0, 14.7 to 1, 75.8, 100.0 +3.655,3.66,a-exp-i1,2017-18,Quabbin - Hubbardston Center,07530010, 19.3, 100.0, 16.5 to 1, 73.1, 94.8 +5.0,5.0,a-exp-i1,2017-18,Quabbin - IB School of Quabbin,07530515, 1.3, 100.0, 9.7 to 1, 100.0, 100.0 +4.75,4.75,a-exp-i1,2017-18,Quabbin - New Braintree Grade,07530020, 4.0, 100.0, 13.5 to 1, 95.0, 100.0 +4.8549999999999995,4.85,a-exp-i1,2017-18,Quabbin - Oakham Center,07530025, 6.8, 100.0, 19.0 to 1, 97.1, 100.0 +4.335,4.34,a-exp-i1,2017-18,Quabbin - Quabbin Regional High School,07530505, 45.1, 100.0, 14.6 to 1, 86.7, 95.6 +4.82,4.82,a-exp-i1,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 27.5, 96.4, 14.4 to 1, 96.4, 96.4 +4.14,4.14,a-exp-i1,2017-18,Quabbin - Ruggles Lane,07530030, 30.3, 100.0, 15.3 to 1, 82.8, 96.7 +4.295,4.3,a-exp-i1,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 31.2, 96.8, 11.8 to 1, 85.9, 85.7 +3.9799999999999995,3.98,a-exp-i1,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 17.7, 100.0, 13.4 to 1, 79.6, 85.7 +4.26,4.26,a-exp-i1,2017-18,Quaboag Regional - Warren Elementary,07780005, 36.4, 80.8, 12.2 to 1, 85.2, 94.5 +4.21,4.21,a-exp-i1,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 19.0, 94.7, 16.0 to 1, 84.2, 94.7 +4.2299999999999995,4.23,a-exp-i1,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 13.0, 100.0, 14.8 to 1, 84.6, 92.3 +4.14,4.14,a-exp-i1,2017-18,Quincy - Atherton Hough,02430040, 24.4, 95.9, 10.3 to 1, 82.8, 99.2 +5.0,5.0,a-exp-i1,2017-18,Quincy - Atlantic Middle,02430305, 33.4, 100.0, 14.9 to 1, 100.0, 97.0 +4.08,4.08,a-exp-i1,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 25.5, 100.0, 13.8 to 1, 81.6, 100.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Quincy - Broad Meadows Middle,02430310, 29.5, 96.6, 13.0 to 1, 79.8, 83.2 +4.765,4.77,a-exp-i1,2017-18,Quincy - Central Middle,02430315, 42.4, 100.0, 15.0 to 1, 95.3, 95.3 +4.779999999999999,4.78,a-exp-i1,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 23.0, 100.0, 14.4 to 1, 95.6, 95.6 +4.79,4.79,a-exp-i1,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 43.2, 100.0, 13.1 to 1, 95.8, 95.8 +4.415,4.42,a-exp-i1,2017-18,Quincy - Francis W Parker,02430075, 27.3, 100.0, 11.5 to 1, 88.3, 95.6 +4.055,4.06,a-exp-i1,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 39.2, 97.4, 13.2 to 1, 81.1, 99.0 +5.0,5.0,a-exp-i1,2017-18,Quincy - Merrymount,02430060, 22.9, 100.0, 15.2 to 1, 100.0, 100.0 +4.58,4.58,a-exp-i1,2017-18,Quincy - Montclair,02430065, 27.7, 100.0, 14.9 to 1, 91.6, 97.1 +4.585,4.59,a-exp-i1,2017-18,Quincy - North Quincy High,02430510, 88.4, 97.7, 13.8 to 1, 91.7, 94.3 +3.625,3.63,a-exp-i1,2017-18,Quincy - Point Webster Middle,02430325, 28.0, 100.0, 12.7 to 1, 72.5, 84.1 +4.425,4.43,a-exp-i1,2017-18,Quincy - Quincy High,02430505, 119.5, 99.2, 12.9 to 1, 88.5, 88.3 +4.279999999999999,4.28,a-exp-i1,2017-18,Quincy - Reay E Sterling Middle,02430320, 29.5, 100.0, 12.3 to 1, 85.6, 80.7 +4.225,4.23,a-exp-i1,2017-18,Quincy - Snug Harbor Community School,02430090, 34.8, 97.1, 13.3 to 1, 84.5, 84.5 +4.805,4.81,a-exp-i1,2017-18,Quincy - Squantum,02430095, 25.9, 100.0, 13.3 to 1, 96.1, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Quincy - Wollaston School,02430110, 23.7, 100.0, 14.0 to 1, 93.7, 91.6 +0.0,1,a-exp-i1,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 100.0,###### to 1, 0.0, 100.0 +4.665,4.67,a-exp-i1,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 59.6, 98.3, 10.8 to 1, 93.3, 95.0 +0.0,1,a-exp-i1,2017-18,Ralph C Mahar - The Gateway to College,07550525, .0, 100.0,###### to 1, 0.0, 100.0 +4.235,4.24,a-exp-i1,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 21.3, 100.0, 14.0 to 1, 84.7, 100.0 +4.375,4.38,a-exp-i1,2017-18,Randolph - J F Kennedy Elementary,02440018, 39.9, 100.0, 11.7 to 1, 87.5, 92.5 +3.965,3.97,a-exp-i1,2017-18,Randolph - Margaret L Donovan,02440015, 29.0, 100.0, 15.2 to 1, 79.3, 100.0 +4.46,4.46,a-exp-i1,2017-18,Randolph - Martin E Young Elementary,02440040, 27.8, 100.0, 11.1 to 1, 89.2, 100.0 +3.905,3.91,a-exp-i1,2017-18,Randolph - Randolph Community Middle,02440410, 58.5, 100.0, 10.3 to 1, 78.1, 79.5 +4.175,4.18,a-exp-i1,2017-18,Randolph - Randolph High,02440505, 60.7, 100.0, 11.7 to 1, 83.5, 91.8 +4.05,4.05,a-exp-i1,2017-18,Reading - Alice M Barrows,02460002, 24.2, 100.0, 15.6 to 1, 81.0, 91.7 +4.2700000000000005,4.27,a-exp-i1,2017-18,Reading - Arthur W Coolidge Middle,02460305, 37.6, 100.0, 12.7 to 1, 85.4, 89.4 +3.8549999999999995,3.85,a-exp-i1,2017-18,Reading - Birch Meadow,02460005, 30.6, 100.0, 12.1 to 1, 77.1, 96.7 +4.335,4.34,a-exp-i1,2017-18,Reading - J Warren Killam,02460017, 29.0, 100.0, 14.5 to 1, 86.7, 96.5 +4.2299999999999995,4.23,a-exp-i1,2017-18,Reading - Joshua Eaton,02460010, 28.5, 100.0, 13.6 to 1, 84.6, 93.0 +4.59,4.59,a-exp-i1,2017-18,Reading - RISE PreSchool,02460001, 7.3, 100.0, 12.9 to 1, 91.8, 100.0 +4.495,4.5,a-exp-i1,2017-18,Reading - Reading Memorial High,02460505, 81.9, 100.0, 15.1 to 1, 89.9, 96.8 +4.57,4.57,a-exp-i1,2017-18,Reading - Walter S Parker Middle,02460310, 46.3, 100.0, 12.2 to 1, 91.4, 93.5 +4.63,4.63,a-exp-i1,2017-18,Reading - Wood End Elementary School,02460020, 20.3, 100.0, 14.3 to 1, 92.6, 100.0 +4.1,4.1,a-exp-i1,2017-18,Revere - A. C. Whelan Elementary School,02480003, 50.0, 100.0, 15.1 to 1, 82.0, 94.0 +3.69,3.69,a-exp-i1,2017-18,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 16.5 to 1, 73.8, 92.9 +4.205,4.21,a-exp-i1,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 31.1, 100.0, 12.0 to 1, 84.1, 95.7 +4.34,4.34,a-exp-i1,2017-18,Revere - Garfield Elementary School,02480056, 53.2, 100.0, 14.4 to 1, 86.8, 97.2 +3.54,3.54,a-exp-i1,2017-18,Revere - Garfield Middle School,02480057, 44.5, 100.0, 12.1 to 1, 70.8, 74.2 +4.029999999999999,4.03,a-exp-i1,2017-18,Revere - Paul Revere,02480050, 36.0, 100.0, 13.1 to 1, 80.6, 97.2 +4.095000000000001,4.1,a-exp-i1,2017-18,Revere - Revere High,02480505, 129.2, 97.7, 15.4 to 1, 81.9, 94.6 +3.65,3.65,a-exp-i1,2017-18,Revere - Rumney Marsh Academy,02480014, 48.2, 100.0, 12.4 to 1, 73.0, 85.5 +2.625,2.63,a-exp-i1,2017-18,Revere - Seacoast School,02480520, 13.0, 100.0, 6.3 to 1, 52.5, 79.5 +4.45,4.45,a-exp-i1,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 45.5, 100.0, 15.6 to 1, 89.0, 93.4 +4.0200000000000005,4.02,a-exp-i1,2017-18,Revere - Susan B. Anthony Middle School,02480305, 46.0, 100.0, 12.4 to 1, 80.4, 91.3 +4.95,4.95,a-exp-i1,2017-18,Richmond - Richmond Consolidated,02490005, 19.2, 97.9, 9.3 to 1, 99.0, 90.6 +2.645,2.65,a-exp-i1,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 61.0, 68.4, 10.8 to 1, 52.9, 82.0 +3.79,3.79,a-exp-i1,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 20.8, 91.3, 13.9 to 1, 75.8, 75.9 +4.5649999999999995,4.56,a-exp-i1,2017-18,Rochester - Rochester Memorial,02500005, 38.1, 100.0, 13.1 to 1, 91.3, 99.2 +3.4899999999999998,3.49,a-exp-i1,2017-18,Rockland - Jefferson Elementary School,02510060, 24.2, 97.9, 12.6 to 1, 69.8, 93.8 +3.925,3.93,a-exp-i1,2017-18,Rockland - John W Rogers Middle,02510305, 50.2, 100.0, 12.9 to 1, 78.5, 94.0 +3.5450000000000004,3.55,a-exp-i1,2017-18,Rockland - Memorial Park,02510020, 26.1, 98.1, 10.8 to 1, 70.9, 98.1 +3.72,3.72,a-exp-i1,2017-18,Rockland - R Stewart Esten,02510025, 26.3, 100.0, 11.8 to 1, 74.4, 88.6 +4.15,4.15,a-exp-i1,2017-18,Rockland - Rockland Senior High,02510505, 47.0, 100.0, 13.7 to 1, 83.0, 89.8 +4.46,4.46,a-exp-i1,2017-18,Rockport - Rockport Elementary,02520005, 27.9, 100.0, 14.1 to 1, 89.2, 100.0 +3.95,3.95,a-exp-i1,2017-18,Rockport - Rockport High,02520510, 30.9, 99.1, 9.3 to 1, 79.0, 74.8 +3.84,3.84,a-exp-i1,2017-18,Rockport - Rockport Middle,02520305, 29.8, 96.0, 7.6 to 1, 76.8, 97.5 +5.0,5.0,a-exp-i1,2017-18,Rowe - Rowe Elementary,02530005, 8.0, 100.0, 8.9 to 1, 100.0, 100.0 +1.1400000000000001,1.14,a-exp-i1,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 117.9, 55.7, 12.1 to 1, 22.8, 85.1 +3.785,3.79,a-exp-i1,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 66.0, 91.7, 23.8 to 1, 75.7, 77.1 +3.95,3.95,a-exp-i1,2017-18,Salem - Bates,02580003, 26.9, 99.4, 12.7 to 1, 79.0, 88.9 +2.8,2.8,a-exp-i1,2017-18,Salem - Carlton,02580015, 23.0, 99.6, 11.0 to 1, 56.0, 95.6 +3.78,3.78,a-exp-i1,2017-18,Salem - Collins Middle,02580305, 55.2, 100.0, 9.7 to 1, 75.6, 83.7 +4.385,4.39,a-exp-i1,2017-18,Salem - Horace Mann Laboratory,02580030, 25.2, 99.6, 10.8 to 1, 87.7, 98.0 +2.375,2.38,a-exp-i1,2017-18,Salem - Nathaniel Bowditch,02580025, 39.2, 96.9, 9.6 to 1, 47.5, 77.1 +1.1099999999999999,1.11,a-exp-i1,2017-18,Salem - New Liberty Innovation School,02580510, 4.5, 100.0, 10.0 to 1, 22.2, 88.9 +4.285,4.29,a-exp-i1,2017-18,Salem - Salem Early Childhood,02580001, 7.0, 100.0, 13.3 to 1, 85.7, 100.0 +4.175,4.18,a-exp-i1,2017-18,Salem - Salem High,02580505, 97.8, 93.4, 9.4 to 1, 83.5, 92.8 +4.465,4.47,a-exp-i1,2017-18,Salem - Salem Prep High School,02580515, 5.6, 100.0, 4.6 to 1, 89.3, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Salem - Saltonstall School,02580050, 31.4, 99.4, 11.9 to 1, 96.2, 92.0 +3.79,3.79,a-exp-i1,2017-18,Salem - Witchcraft Heights,02580070, 41.5, 99.6, 11.0 to 1, 75.8, 100.0 +2.7199999999999998,2.72,a-exp-i1,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 46.1, 75.6, 10.3 to 1, 54.4, 66.7 +3.9899999999999998,3.99,a-exp-i1,2017-18,Sandwich - Forestdale School,02610002, 50.4, 98.0, 12.5 to 1, 79.8, 94.1 +4.015,4.02,a-exp-i1,2017-18,Sandwich - Oak Ridge,02610025, 57.5, 100.0, 14.3 to 1, 80.3, 94.8 +4.205,4.21,a-exp-i1,2017-18,Sandwich - Sandwich High,02610505, 53.9, 100.0, 12.4 to 1, 84.1, 86.4 +4.18,4.18,a-exp-i1,2017-18,Sandwich - Sandwich STEM Academy,02610305, 38.1, 100.0, 12.1 to 1, 83.6, 87.3 +4.085,4.09,a-exp-i1,2017-18,Saugus - Belmonte Saugus Middle,02620305, 54.8, 98.2, 11.9 to 1, 81.7, 87.2 +4.89,4.89,a-exp-i1,2017-18,Saugus - Douglas Waybright,02620067, 15.2, 100.0, 15.2 to 1, 97.8, 100.0 +4.915,4.92,a-exp-i1,2017-18,Saugus - Lynnhurst,02620040, 19.2, 100.0, 14.1 to 1, 98.3, 100.0 +4.255,4.26,a-exp-i1,2017-18,Saugus - Oaklandvale,02620050, 15.6, 100.0, 15.4 to 1, 85.1, 100.0 +4.675,4.68,a-exp-i1,2017-18,Saugus - Saugus High,02620505, 54.4, 100.0, 12.1 to 1, 93.5, 92.6 +3.935,3.94,a-exp-i1,2017-18,Saugus - Veterans Memorial,02620065, 42.3, 100.0, 12.8 to 1, 78.7, 95.3 +3.415,3.42,a-exp-i1,2017-18,Savoy - Emma L Miller Elementary School,02630010, 4.9, 100.0, 12.2 to 1, 68.3, 100.0 +5.0,5.0,a-exp-i1,2017-18,Scituate - Cushing Elementary,02640007, 27.5, 100.0, 11.3 to 1, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2017-18,Scituate - Gates Middle School,02640305, 58.2, 100.0, 12.4 to 1, 86.3, 94.8 +3.975,3.98,a-exp-i1,2017-18,Scituate - Hatherly Elementary,02640010, 29.3, 100.0, 9.2 to 1, 79.5, 95.9 +4.49,4.49,a-exp-i1,2017-18,Scituate - Jenkins Elementary School,02640015, 32.2, 100.0, 11.2 to 1, 89.8, 93.2 +4.29,4.29,a-exp-i1,2017-18,Scituate - Scituate High School,02640505, 65.0, 99.4, 14.2 to 1, 85.8, 94.8 +4.255,4.26,a-exp-i1,2017-18,Scituate - Wampatuck Elementary,02640020, 32.3, 100.0, 12.4 to 1, 85.1, 99.7 +4.39,4.39,a-exp-i1,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.1, 100.0, 11.4 to 1, 87.8, 93.2 +4.720000000000001,4.72,a-exp-i1,2017-18,Seekonk - George R Martin,02650007, 35.7, 100.0, 13.4 to 1, 94.4, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Seekonk - Mildred Aitken School,02650015, 31.7, 100.0, 13.5 to 1, 93.7, 100.0 +4.755,4.76,a-exp-i1,2017-18,Seekonk - Seekonk High,02650505, 45.2, 99.6, 13.2 to 1, 95.1, 95.6 +1.735,1.74,a-exp-i1,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 37.4, 86.6, 17.8 to 1, 34.7, 76.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Sharon - Cottage Street,02660005, 26.6, 100.0, 19.5 to 1, 88.7, 98.8 +4.265,4.27,a-exp-i1,2017-18,Sharon - East Elementary,02660010, 27.2, 100.0, 18.1 to 1, 85.3, 98.8 +4.470000000000001,4.47,a-exp-i1,2017-18,Sharon - Heights Elementary,02660015, 28.2, 100.0, 18.6 to 1, 89.4, 95.3 +5.0,5.0,a-exp-i1,2017-18,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 12.5 to 1, 100.0, 100.0 +4.11,4.11,a-exp-i1,2017-18,Sharon - Sharon High,02660505, 94.9, 96.8, 11.4 to 1, 82.2, 94.9 +4.37,4.37,a-exp-i1,2017-18,Sharon - Sharon Middle,02660305, 67.6, 100.0, 12.9 to 1, 87.4, 91.1 +4.470000000000001,4.47,a-exp-i1,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 126.1, 98.4, 10.5 to 1, 89.4, 86.5 +4.465,4.47,a-exp-i1,2017-18,Sherborn - Pine Hill,02690010, 32.7, 100.0, 12.9 to 1, 89.3, 99.7 +4.18,4.18,a-exp-i1,2017-18,Shrewsbury - Beal School,02710005, 22.1, 94.9, 14.0 to 1, 83.6, 94.9 +4.055,4.06,a-exp-i1,2017-18,Shrewsbury - Calvin Coolidge,02710015, 29.6, 96.3, 14.0 to 1, 81.1, 97.0 +4.475,4.48,a-exp-i1,2017-18,Shrewsbury - Floral Street School,02710020, 42.7, 98.9, 17.6 to 1, 89.5, 100.0 +4.275,4.28,a-exp-i1,2017-18,Shrewsbury - Oak Middle School,02710030, 64.0, 98.5, 15.8 to 1, 85.5, 96.9 +3.5,3.5,a-exp-i1,2017-18,Shrewsbury - Parker Road Preschool,02710040, 10.0, 100.0, 23.5 to 1, 70.0, 90.0 +4.07,4.07,a-exp-i1,2017-18,Shrewsbury - Sherwood Middle School,02710305, 69.2, 95.2, 14.0 to 1, 81.4, 92.9 +4.39,4.39,a-exp-i1,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 116.0, 100.0, 15.8 to 1, 87.8, 92.8 +4.115,4.12,a-exp-i1,2017-18,Shrewsbury - Spring Street,02710035, 23.9, 99.4, 15.0 to 1, 82.3, 100.0 +3.6399999999999997,3.64,a-exp-i1,2017-18,Shrewsbury - Walter J Paton,02710025, 21.1, 99.1, 16.2 to 1, 72.8, 90.5 +4.04,4.04,a-exp-i1,2017-18,Shutesbury - Shutesbury Elementary,02720005, 13.7, 95.4, 8.9 to 1, 80.8, 97.1 +4.545,4.55,a-exp-i1,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 35.2, 100.0, 15.9 to 1, 90.9, 94.3 +4.720000000000001,4.72,a-exp-i1,2017-18,Silver Lake - Silver Lake Regional High,07600505, 90.7, 98.9, 14.4 to 1, 94.4, 90.1 +4.445,4.45,a-exp-i1,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 45.0, 100.0, 12.0 to 1, 88.9, 93.3 +3.7299999999999995,3.73,a-exp-i1,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 34.8, 88.4, 10.3 to 1, 74.6, 82.7 +3.7600000000000002,3.76,a-exp-i1,2017-18,Somerset - Chace Street,02730005, 29.8, 100.0, 14.1 to 1, 75.2, 97.0 +4.115,4.12,a-exp-i1,2017-18,Somerset - North Elementary,02730008, 34.4, 100.0, 14.2 to 1, 82.3, 96.8 +4.4799999999999995,4.48,a-exp-i1,2017-18,Somerset - Somerset Middle School,02730305, 48.0, 100.0, 12.6 to 1, 89.6, 95.8 +5.0,5.0,a-exp-i1,2017-18,Somerset - South,02730015, 18.6, 100.0, 14.8 to 1, 100.0, 100.0 +4.535,4.54,a-exp-i1,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 80.9, 100.0, 12.4 to 1, 90.7, 95.1 +4.175,4.18,a-exp-i1,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.2, 100.0, 13.2 to 1, 83.5, 94.7 +3.785,3.79,a-exp-i1,2017-18,Somerville - Arthur D Healey,02740075, 44.1, 97.7, 10.2 to 1, 75.7, 97.7 +4.07,4.07,a-exp-i1,2017-18,Somerville - Benjamin G Brown,02740015, 16.2, 100.0, 14.3 to 1, 81.4, 100.0 +4.445,4.45,a-exp-i1,2017-18,Somerville - Capuano Early Childhood Center,02740005, 21.8, 95.4, 14.4 to 1, 88.9, 95.4 +3.925,3.93,a-exp-i1,2017-18,Somerville - E Somerville Community,02740111, 54.3, 98.2, 13.2 to 1, 78.5, 84.8 +3.0100000000000002,3.01,a-exp-i1,2017-18,Somerville - Full Circle High School,02740510, 10.8, 100.0, 4.8 to 1, 60.2, 69.8 +3.8600000000000003,3.86,a-exp-i1,2017-18,Somerville - John F Kennedy,02740083, 36.8, 100.0, 12.4 to 1, 77.2, 91.5 +4.275,4.28,a-exp-i1,2017-18,Somerville - Next Wave Junior High,02740410, 5.3, 100.0, 2.8 to 1, 85.5, 93.0 +3.96,3.96,a-exp-i1,2017-18,Somerville - Somerville High,02740505, 124.7, 98.0, 9.7 to 1, 79.2, 85.9 +4.08,4.08,a-exp-i1,2017-18,Somerville - West Somerville Neighborhood,02740115, 26.4, 100.0, 14.1 to 1, 81.6, 97.1 +4.2299999999999995,4.23,a-exp-i1,2017-18,Somerville - Winter Hill Community,02740120, 43.0, 98.5, 10.7 to 1, 84.6, 97.7 +3.91,3.91,a-exp-i1,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 48.4, 100.0, 11.8 to 1, 78.2, 88.6 +3.7049999999999996,3.7,a-exp-i1,2017-18,South Hadley - Mosier,02780020, 27.0, 100.0, 15.6 to 1, 74.1, 92.6 +4.525,4.53,a-exp-i1,2017-18,South Hadley - Plains Elementary,02780015, 21.0, 100.0, 16.2 to 1, 90.5, 95.2 +4.43,4.43,a-exp-i1,2017-18,South Hadley - South Hadley High,02780505, 45.7, 100.0, 12.1 to 1, 88.6, 91.7 +4.32,4.32,a-exp-i1,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 81.0, 100.0, 9.0 to 1, 86.4, 84.0 +3.16,3.16,a-exp-i1,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 76.2, 85.5, 12.2 to 1, 63.2, 83.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 63.7, 92.3, 10.2 to 1, 77.3, 76.6 +4.465,4.47,a-exp-i1,2017-18,Southampton - William E Norris,02750005, 37.5, 100.0, 13.7 to 1, 89.3, 97.3 +4.42,4.42,a-exp-i1,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 17.2, 100.0, 15.5 to 1, 88.4, 100.0 +4.715,4.72,a-exp-i1,2017-18,Southborough - Margaret A Neary,02760020, 17.6, 100.0, 14.7 to 1, 94.3, 100.0 +4.63,4.63,a-exp-i1,2017-18,Southborough - Mary E Finn School,02760008, 21.5, 100.0, 15.6 to 1, 92.6, 100.0 +4.7,4.7,a-exp-i1,2017-18,Southborough - P Brent Trottier,02760305, 36.7, 100.0, 12.5 to 1, 94.0, 94.5 +2.95,2.95,a-exp-i1,2017-18,Southbridge - Charlton Street,02770005, 32.2, 83.8, 9.6 to 1, 59.0, 100.0 +3.215,3.22,a-exp-i1,2017-18,Southbridge - Eastford Road,02770010, 28.0, 89.3, 14.0 to 1, 64.3, 89.3 +3.22,3.22,a-exp-i1,2017-18,Southbridge - Southbridge High School,02770515, 47.3, 93.3, 10.6 to 1, 64.4, 70.6 +2.035,2.04,a-exp-i1,2017-18,Southbridge - Southbridge Middle School,02770315, 48.1, 88.5, 10.0 to 1, 40.7, 67.5 +3.59,3.59,a-exp-i1,2017-18,Southbridge - West Street,02770020, 32.0, 100.0, 9.9 to 1, 71.8, 87.5 +3.78,3.78,a-exp-i1,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 117.0, 95.7, 12.2 to 1, 75.6, 82.9 +4.8100000000000005,4.81,a-exp-i1,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 37.0, 99.5, 8.2 to 1, 96.2, 97.3 +3.4200000000000004,3.42,a-exp-i1,2017-18,Southern Berkshire - New Marlborough Central,07650018, 7.6, 100.0, 11.4 to 1, 68.4, 81.6 +4.41,4.41,a-exp-i1,2017-18,Southern Berkshire - Undermountain,07650035, 28.8, 100.0, 10.1 to 1, 88.2, 98.6 +3.8850000000000002,3.89,a-exp-i1,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 112.0, 95.5, 10.0 to 1, 77.7, 80.4 +4.575,4.58,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 35.4, 97.2, 12.5 to 1, 91.5, 98.6 +4.62,4.62,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 66.0, 100.0, 10.9 to 1, 92.4, 92.4 +3.665,3.67,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.9, 100.0, 11.2 to 1, 73.3, 98.5 +4.5,4.5,a-exp-i1,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 28.0, 100.0, 10.5 to 1, 90.0, 92.8 +4.745,4.75,a-exp-i1,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 19.5, 100.0, 11.8 to 1, 94.9, 94.9 +4.08,4.08,a-exp-i1,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 30.0, 100.0, 13.9 to 1, 81.6, 90.0 +4.13,4.13,a-exp-i1,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 12.3 to 1, 82.6, 97.1 +4.465,4.47,a-exp-i1,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 28.0, 96.4, 15.5 to 1, 89.3, 89.3 +4.5,4.5,a-exp-i1,2017-18,Springfield - Alice B Beal Elementary,02810175, 20.1, 100.0, 13.0 to 1, 90.0, 100.0 +3.725,3.73,a-exp-i1,2017-18,Springfield - Arthur T Talmadge,02810165, 19.6, 94.9, 12.9 to 1, 74.5, 100.0 +3.065,3.07,a-exp-i1,2017-18,Springfield - Balliet Middle School,02810360, 10.4, 100.0, 4.9 to 1, 61.3, 61.3 +4.165,4.17,a-exp-i1,2017-18,Springfield - Brightwood,02810025, 24.0, 95.8, 13.2 to 1, 83.3, 91.7 +3.4799999999999995,3.48,a-exp-i1,2017-18,Springfield - Chestnut Academy,02810365, 36.8, 81.9, 11.4 to 1, 69.6, 84.3 +1.9949999999999999,2.0,a-exp-i1,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 24.1, 83.4, 13.1 to 1, 39.9, 60.6 +3.96,3.96,a-exp-i1,2017-18,Springfield - Conservatory of the Arts,02810475, 28.9, 95.3, 12.7 to 1, 79.2, 77.5 +4.5600000000000005,4.56,a-exp-i1,2017-18,Springfield - Daniel B Brunton,02810035, 34.0, 100.0, 13.7 to 1, 91.2, 91.2 +3.075,3.08,a-exp-i1,2017-18,Springfield - Early Childhood Education Center,02810001, 13.0, 92.3, 13.1 to 1, 61.5, 92.3 +4.09,4.09,a-exp-i1,2017-18,Springfield - Edward P. Boland School,02810010, 54.9, 94.5, 14.3 to 1, 81.8, 90.9 +3.925,3.93,a-exp-i1,2017-18,Springfield - Elias Brookings,02810030, 27.9, 96.4, 12.3 to 1, 78.5, 89.3 +4.425,4.43,a-exp-i1,2017-18,Springfield - Forest Park Middle,02810325, 51.9, 96.1, 13.7 to 1, 88.5, 88.4 +4.75,4.75,a-exp-i1,2017-18,Springfield - Frank H Freedman,02810075, 20.0, 95.0, 17.6 to 1, 95.0, 100.0 +4.755,4.76,a-exp-i1,2017-18,Springfield - Frederick Harris,02810080, 41.0, 95.1, 15.5 to 1, 95.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0,###### to 1, 100.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0,###### to 1, 100.0, 100.0 +3.965,3.97,a-exp-i1,2017-18,Springfield - German Gerena Community School,02810195, 55.5, 95.5, 13.0 to 1, 79.3, 91.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,Springfield - Glenwood,02810065, 22.0, 100.0, 13.5 to 1, 77.3, 95.5 +3.96,3.96,a-exp-i1,2017-18,Springfield - Glickman Elementary,02810068, 24.0, 87.5, 13.9 to 1, 79.2, 91.7 +3.21,3.21,a-exp-i1,2017-18,Springfield - High School Of Commerce,02810510, 92.5, 86.7, 11.7 to 1, 64.2, 76.9 +3.81,3.81,a-exp-i1,2017-18,Springfield - Hiram L Dorman,02810050, 21.0, 100.0, 14.6 to 1, 76.2, 100.0 +3.7049999999999996,3.7,a-exp-i1,2017-18,Springfield - Homer Street,02810085, 27.0, 100.0, 16.4 to 1, 74.1, 88.9 +2.165,2.17,a-exp-i1,2017-18,Springfield - Impact Prep at Chestnut,02810366, 17.5, 68.7, 13.1 to 1, 43.3, 64.7 +2.6100000000000003,2.61,a-exp-i1,2017-18,Springfield - Indian Orchard Elementary,02810100, 46.0, 97.8, 13.9 to 1, 52.2, 89.1 +0.625,1,a-exp-i1,2017-18,Springfield - John F Kennedy Middle,02810328, 32.1, 75.0, 14.0 to 1, 12.5, 31.4 +3.3200000000000003,3.32,a-exp-i1,2017-18,Springfield - John J Duggan Middle,02810320, 65.4, 88.5, 11.7 to 1, 66.4, 70.2 +4.5,4.5,a-exp-i1,2017-18,Springfield - Kensington International School,02810110, 20.0, 100.0, 15.5 to 1, 90.0, 95.0 +4.525,4.53,a-exp-i1,2017-18,Springfield - Liberty,02810115, 21.0, 100.0, 13.5 to 1, 90.5, 95.2 +5.0,5.0,a-exp-i1,2017-18,Springfield - Liberty Preparatory Academy,02810560, 3.2, 100.0, 3.8 to 1, 100.0, 68.5 +2.8850000000000002,2.89,a-exp-i1,2017-18,Springfield - Lincoln,02810120, 26.0, 100.0, 15.5 to 1, 57.7, 88.5 +3.8899999999999997,3.89,a-exp-i1,2017-18,Springfield - M Marcus Kiley Middle,02810330, 45.0, 86.7, 14.7 to 1, 77.8, 75.5 +4.335,4.34,a-exp-i1,2017-18,Springfield - Margaret C Ells,02810060, 15.0, 93.3, 16.0 to 1, 86.7, 73.3 +4.545,4.55,a-exp-i1,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 22.0, 100.0, 16.9 to 1, 90.9, 100.0 +3.685,3.69,a-exp-i1,2017-18,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 14.0 to 1, 73.7, 89.5 +3.44,3.44,a-exp-i1,2017-18,Springfield - Mary M Walsh,02810155, 22.5, 100.0, 13.1 to 1, 68.8, 91.1 +4.445,4.45,a-exp-i1,2017-18,Springfield - Mary O Pottenger,02810145, 27.0, 100.0, 15.7 to 1, 88.9, 96.3 +2.95,2.95,a-exp-i1,2017-18,Springfield - Milton Bradley School,02810023, 39.0, 100.0, 14.0 to 1, 59.0, 89.7 +4.4799999999999995,4.48,a-exp-i1,2017-18,Springfield - Rebecca M Johnson,02810055, 48.5, 93.7, 15.4 to 1, 89.6, 91.8 +0.335,1,a-exp-i1,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 15.0, 86.7, 14.3 to 1, 6.7, 46.7 +4.1850000000000005,4.19,a-exp-i1,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 132.0, 95.4, 10.9 to 1, 83.7, 77.3 +3.75,3.75,a-exp-i1,2017-18,Springfield - STEM Middle Academy,02810350, 20.0, 100.0, 14.7 to 1, 75.0, 70.0 +4.0,4.0,a-exp-i1,2017-18,Springfield - Samuel Bowles,02810020, 20.0, 95.0, 16.9 to 1, 80.0, 95.0 +4.720000000000001,4.72,a-exp-i1,2017-18,Springfield - South End Middle School,02810355, 18.0, 99.2, 13.3 to 1, 94.4, 88.9 +4.4799999999999995,4.48,a-exp-i1,2017-18,Springfield - Springfield Central High,02810500, 143.9, 97.9, 14.2 to 1, 89.6, 87.5 +3.465,3.47,a-exp-i1,2017-18,Springfield - Springfield High School,02810570, 16.3, 93.8, 13.0 to 1, 69.3, 84.7 +3.495,3.5,a-exp-i1,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 88.2, 82.9, 14.8 to 1, 69.9, 77.5 +3.53,3.53,a-exp-i1,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 10.2, 70.1, 7.2 to 1, 70.6, 80.4 +3.4850000000000003,3.49,a-exp-i1,2017-18,Springfield - Springfield Public Day High School,02810550, 16.5, 81.9, 5.9 to 1, 69.7, 63.6 +1.7449999999999999,1.75,a-exp-i1,2017-18,Springfield - Springfield Public Day Middle School,02810345, 12.2, 100.0, 4.1 to 1, 34.9, 75.6 +3.4899999999999998,3.49,a-exp-i1,2017-18,Springfield - Springfield Vocational Academy,02810675, 3.0, 69.8, 31.2 to 1, 69.8, 100.0 +3.81,3.81,a-exp-i1,2017-18,Springfield - Sumner Avenue,02810160, 42.0, 92.9, 14.0 to 1, 76.2, 80.9 +3.62,3.62,a-exp-i1,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 93.9, 14.2 to 1, 72.4, 89.8 +3.0,3.0,a-exp-i1,2017-18,Springfield - Thomas M Balliet,02810015, 20.0, 100.0, 15.9 to 1, 60.0, 85.0 +3.595,3.6,a-exp-i1,2017-18,Springfield - Van Sickle Academy,02810485, 32.0, 87.5, 12.6 to 1, 71.9, 68.8 +3.63,3.63,a-exp-i1,2017-18,Springfield - Warner,02810180, 22.0, 95.5, 13.2 to 1, 72.6, 81.7 +3.7049999999999996,3.7,a-exp-i1,2017-18,Springfield - Washington,02810185, 27.0, 100.0, 15.4 to 1, 74.1, 100.0 +3.75,3.75,a-exp-i1,2017-18,Springfield - White Street,02810190, 28.0, 96.4, 16.3 to 1, 75.0, 85.7 +3.8649999999999998,3.87,a-exp-i1,2017-18,Springfield - William N. DeBerry,02810045, 22.0, 95.5, 11.9 to 1, 77.3, 90.9 +0.52,1,a-exp-i1,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 19.3, 59.6, 11.1 to 1, 10.4, 80.8 +2.77,2.77,a-exp-i1,2017-18,Stoneham - Colonial Park,02840005, 19.5, 100.0, 14.3 to 1, 55.4, 98.5 +4.5,4.5,a-exp-i1,2017-18,Stoneham - Robin Hood,02840025, 25.1, 100.0, 15.2 to 1, 90.0, 97.6 +4.545,4.55,a-exp-i1,2017-18,Stoneham - South,02840030, 22.5, 100.0, 14.2 to 1, 90.9, 95.3 +3.935,3.94,a-exp-i1,2017-18,Stoneham - Stoneham Central Middle School,02840405, 65.1, 98.5, 10.5 to 1, 78.7, 87.4 +4.385,4.39,a-exp-i1,2017-18,Stoneham - Stoneham High,02840505, 57.4, 100.0, 11.8 to 1, 87.7, 94.4 +3.0,3.0,a-exp-i1,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 20.6 to 1, 60.0, 80.0 +3.38,3.38,a-exp-i1,2017-18,Stoughton - Helen Hansen Elementary,02850010, 22.7, 100.0, 10.2 to 1, 67.6, 88.7 +4.1,4.1,a-exp-i1,2017-18,Stoughton - Joseph H Gibbons,02850025, 27.8, 100.0, 12.8 to 1, 82.0, 97.2 +4.279999999999999,4.28,a-exp-i1,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 28.5, 100.0, 12.5 to 1, 85.6, 100.0 +4.115,4.12,a-exp-i1,2017-18,Stoughton - O'Donnell Middle School,02850405, 70.9, 100.0, 11.6 to 1, 82.3, 95.8 +3.835,3.84,a-exp-i1,2017-18,Stoughton - South Elementary,02850015, 19.5, 100.0, 12.7 to 1, 76.7, 95.8 +3.87,3.87,a-exp-i1,2017-18,Stoughton - Stoughton High,02850505, 98.9, 99.0, 11.1 to 1, 77.4, 91.4 +3.315,3.32,a-exp-i1,2017-18,Stoughton - West Elementary,02850020, 32.5, 100.0, 11.5 to 1, 66.3, 98.8 +4.705,4.71,a-exp-i1,2017-18,Sturbridge - Burgess Elementary,02870005, 67.6, 100.0, 13.3 to 1, 94.1, 98.5 +3.145,3.15,a-exp-i1,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 86.6, 46.8, 9.4 to 1, 62.9, 83.3 +4.7299999999999995,4.73,a-exp-i1,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 74.5, 100.0, 12.6 to 1, 94.6, 94.6 +4.29,4.29,a-exp-i1,2017-18,Sudbury - General John Nixon Elementary,02880025, 28.1, 100.0, 12.1 to 1, 85.8, 100.0 +3.85,3.85,a-exp-i1,2017-18,Sudbury - Israel Loring School,02880015, 34.8, 100.0, 13.4 to 1, 77.0, 91.7 +4.62,4.62,a-exp-i1,2017-18,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 13.1 to 1, 92.4, 96.6 +4.71,4.71,a-exp-i1,2017-18,Sudbury - Peter Noyes,02880030, 41.5, 100.0, 13.7 to 1, 94.2, 100.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,Sunderland - Sunderland Elementary,02890005, 23.0, 100.0, 10.4 to 1, 77.3, 86.9 +4.61,4.61,a-exp-i1,2017-18,Sutton - Sutton Early Learning,02900003, 19.3, 100.0, 17.0 to 1, 92.2, 100.0 +4.779999999999999,4.78,a-exp-i1,2017-18,Sutton - Sutton Elementary,02900005, 22.9, 100.0, 14.3 to 1, 95.6, 100.0 +4.62,4.62,a-exp-i1,2017-18,Sutton - Sutton High School,02900510, 32.8, 100.0, 12.2 to 1, 92.4, 90.9 +4.4799999999999995,4.48,a-exp-i1,2017-18,Sutton - Sutton Middle School,02900305, 24.0, 99.2, 15.2 to 1, 89.6, 100.0 +4.3,4.3,a-exp-i1,2017-18,Swampscott - Clarke,02910005, 19.6, 100.0, 10.1 to 1, 86.0, 95.4 +4.0,4.0,a-exp-i1,2017-18,Swampscott - Hadley,02910010, 22.5, 100.0, 12.7 to 1, 80.0, 97.8 +3.94,3.94,a-exp-i1,2017-18,Swampscott - Stanley,02910020, 22.5, 100.0, 13.2 to 1, 78.8, 97.3 +4.0649999999999995,4.06,a-exp-i1,2017-18,Swampscott - Swampscott High,02910505, 60.5, 98.1, 11.2 to 1, 81.3, 85.1 +4.4399999999999995,4.44,a-exp-i1,2017-18,Swampscott - Swampscott Middle,02910305, 64.6, 100.0, 11.7 to 1, 88.8, 92.3 +4.475,4.48,a-exp-i1,2017-18,Swansea - Elizabeth S Brown,02920006, 19.0, 100.0, 14.4 to 1, 89.5, 94.7 +4.84,4.84,a-exp-i1,2017-18,Swansea - Gardner,02920015, 15.6, 100.0, 16.7 to 1, 96.8, 96.8 +4.5,4.5,a-exp-i1,2017-18,Swansea - Joseph Case High,02920505, 50.2, 100.0, 10.7 to 1, 90.0, 92.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Swansea - Joseph Case Jr High,02920305, 41.5, 97.6, 12.6 to 1, 90.4, 95.2 +3.87,3.87,a-exp-i1,2017-18,Swansea - Joseph G Luther,02920020, 15.5, 100.0, 14.7 to 1, 77.4, 93.5 +4.585,4.59,a-exp-i1,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 18.2, 100.0, 14.0 to 1, 91.7, 97.2 +2.965,2.97,a-exp-i1,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 57.4, 98.3, 26.8 to 1, 59.3, 71.7 +4.63,4.63,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 45.2, 100.0, 13.1 to 1, 92.6, 97.3 +4.63,4.63,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 77.1, 100.0, 9.4 to 1, 92.6, 98.9 +3.62,3.62,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 92.5, 35.3 to 1, 72.4, 67.5 +3.71,3.71,a-exp-i1,2017-18,Taunton - Benjamin Friedman Middle,02930315, 51.3, 100.0, 14.9 to 1, 74.2, 94.1 +4.33,4.33,a-exp-i1,2017-18,Taunton - East Taunton Elementary,02930010, 41.9, 100.0, 14.7 to 1, 86.6, 97.8 +4.1850000000000005,4.19,a-exp-i1,2017-18,Taunton - Edmund Hatch Bennett,02930007, 23.5, 100.0, 14.1 to 1, 83.7, 100.0 +4.585,4.59,a-exp-i1,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 12.0, 100.0, 28.2 to 1, 91.7, 91.7 +4.4799999999999995,4.48,a-exp-i1,2017-18,Taunton - Elizabeth Pole,02930027, 41.6, 100.0, 15.0 to 1, 89.6, 97.4 +4.425,4.43,a-exp-i1,2017-18,Taunton - H H Galligan,02930057, 23.8, 100.0, 10.1 to 1, 88.5, 96.7 +4.1850000000000005,4.19,a-exp-i1,2017-18,Taunton - Hopewell,02930035, 23.5, 100.0, 11.6 to 1, 83.7, 99.8 +3.06,3.06,a-exp-i1,2017-18,Taunton - John F Parker Middle,02930305, 33.5, 100.0, 14.8 to 1, 61.2, 79.7 +4.785,4.79,a-exp-i1,2017-18,Taunton - Joseph C Chamberlain,02930008, 35.6, 100.0, 14.5 to 1, 95.7, 92.7 +4.075,4.08,a-exp-i1,2017-18,Taunton - Joseph H Martin,02930042, 43.3, 100.0, 15.6 to 1, 81.5, 95.4 +4.075,4.08,a-exp-i1,2017-18,Taunton - Mulcahey Elementary School,02930015, 35.1, 100.0, 13.9 to 1, 81.5, 99.9 +4.79,4.79,a-exp-i1,2017-18,Taunton - Taunton Alternative High School,02930525, 6.0, 100.0, 15.8 to 1, 95.8, 100.0 +4.17,4.17,a-exp-i1,2017-18,Taunton - Taunton High,02930505, 160.7, 98.8, 16.4 to 1, 83.4, 86.6 +4.545,4.55,a-exp-i1,2017-18,Tewksbury - Heath-Brook,02950010, 23.5, 100.0, 14.9 to 1, 90.9, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Tewksbury - John F. Ryan,02950023, 45.8, 100.0, 11.2 to 1, 84.4, 89.1 +4.029999999999999,4.03,a-exp-i1,2017-18,Tewksbury - John W. Wynn Middle,02950305, 50.4, 100.0, 11.5 to 1, 80.6, 90.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Tewksbury - L F Dewing,02950001, 37.2, 97.3, 16.3 to 1, 86.2, 100.0 +3.16,3.16,a-exp-i1,2017-18,Tewksbury - Louise Davy Trahan,02950025, 17.4, 100.0, 13.4 to 1, 63.2, 100.0 +4.18,4.18,a-exp-i1,2017-18,Tewksbury - North Street,02950020, 19.9, 100.0, 13.9 to 1, 83.6, 100.0 +3.7950000000000004,3.8,a-exp-i1,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 65.9, 100.0, 13.9 to 1, 75.9, 90.9 +4.154999999999999,4.15,a-exp-i1,2017-18,Tisbury - Tisbury Elementary,02960005, 36.7, 100.0, 8.3 to 1, 83.1, 81.7 +4.74,4.74,a-exp-i1,2017-18,Topsfield - Proctor Elementary,02980005, 19.3, 100.0, 13.2 to 1, 94.8, 100.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Topsfield - Steward Elementary,02980010, 29.2, 100.0, 13.0 to 1, 82.9, 100.0 +4.34,4.34,a-exp-i1,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 90.7, 98.9, 10.9 to 1, 86.8, 86.0 +4.12,4.12,a-exp-i1,2017-18,Triton - Newbury Elementary,07730020, 36.9, 100.0, 12.2 to 1, 82.4, 94.6 +4.85,4.85,a-exp-i1,2017-18,Triton - Pine Grove,07730025, 33.2, 100.0, 13.6 to 1, 97.0, 100.0 +4.65,4.65,a-exp-i1,2017-18,Triton - Salisbury Elementary,07730015, 42.8, 100.0, 12.3 to 1, 93.0, 97.7 +4.3549999999999995,4.35,a-exp-i1,2017-18,Triton - Triton Regional High School,07730505, 58.1, 100.0, 12.4 to 1, 87.1, 89.7 +3.8899999999999997,3.89,a-exp-i1,2017-18,Triton - Triton Regional Middle School,07730405, 29.2, 96.6, 14.2 to 1, 77.8, 81.2 +4.07,4.07,a-exp-i1,2017-18,Truro - Truro Central,03000005, 16.2, 100.0, 6.4 to 1, 81.4, 100.0 +4.4,4.4,a-exp-i1,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 56.4, 100.0, 12.9 to 1, 88.0, 98.2 +4.335,4.34,a-exp-i1,2017-18,Tyngsborough - Tyngsborough High School,03010505, 34.7, 100.0, 13.7 to 1, 86.7, 84.3 +4.64,4.64,a-exp-i1,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 34.7, 100.0, 11.8 to 1, 92.8, 83.1 +2.175,2.18,a-exp-i1,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 42.5, 92.9, 11.8 to 1, 43.5, 60.0 +1.815,1.82,a-exp-i1,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56.4, 84.2, 13.1 to 1, 36.3, 49.6 +3.35,3.35,a-exp-i1,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 4.6, 100.0, 11.4 to 1, 67.0, 95.6 +4.165,4.17,a-exp-i1,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 39.9, 98.8, 8.8 to 1, 83.3, 90.0 +3.8200000000000003,3.82,a-exp-i1,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 72.1, 97.2, 9.9 to 1, 76.4, 82.0 +0.0,1,a-exp-i1,2017-18,Uxbridge - Gateway to College,03040515, .0, 0.0,N/A,"","" +4.9,4.9,a-exp-i1,2017-18,Uxbridge - McCloskey Middle School,03040015, 25.5, 100.0, 15.8 to 1, 98.0, 96.1 +5.0,5.0,a-exp-i1,2017-18,Uxbridge - Taft Early Learning Center,03040005, 22.2, 100.0, 20.3 to 1, 100.0, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Uxbridge - Uxbridge High,03040505, 38.8, 100.0, 12.4 to 1, 81.9, 81.7 +5.0,5.0,a-exp-i1,2017-18,Uxbridge - Whitin Elementary School,03040020, 21.5, 100.0, 17.8 to 1, 100.0, 100.0 +0.805,1,a-exp-i1,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 31.0, 51.6, 10.4 to 1, 16.1, 77.4 +4.635,4.64,a-exp-i1,2017-18,Wachusett - Central Tree Middle,07750310, 27.4, 100.0, 13.6 to 1, 92.7, 95.1 +4.525,4.53,a-exp-i1,2017-18,Wachusett - Chocksett Middle School,07750315, 26.3, 100.0, 13.9 to 1, 90.5, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Wachusett - Davis Hill Elementary,07750018, 26.5, 100.0, 17.0 to 1, 96.2, 92.4 +4.5,4.5,a-exp-i1,2017-18,Wachusett - Dawson,07750020, 29.9, 100.0, 15.4 to 1, 90.0, 96.7 +3.75,3.75,a-exp-i1,2017-18,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 20.3 to 1, 75.0, 87.5 +4.58,4.58,a-exp-i1,2017-18,Wachusett - Glenwood Elementary School,07750060, 23.9, 100.0, 14.3 to 1, 91.6, 98.6 +4.6850000000000005,4.69,a-exp-i1,2017-18,Wachusett - Houghton Elementary,07750027, 23.8, 100.0, 15.8 to 1, 93.7, 100.0 +4.83,4.83,a-exp-i1,2017-18,Wachusett - Leroy E.Mayo,07750032, 29.0, 100.0, 16.4 to 1, 96.6, 100.0 +4.46,4.46,a-exp-i1,2017-18,Wachusett - Mountview Middle,07750305, 46.1, 100.0, 17.4 to 1, 89.2, 97.8 +4.529999999999999,4.53,a-exp-i1,2017-18,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 16.1 to 1, 90.6, 93.7 +3.745,3.75,a-exp-i1,2017-18,Wachusett - Paxton Center,07750040, 31.7, 100.0, 14.8 to 1, 74.9, 90.5 +3.255,3.26,a-exp-i1,2017-18,Wachusett - Thomas Prince,07750045, 24.6, 100.0, 16.3 to 1, 65.1, 84.7 +4.34,4.34,a-exp-i1,2017-18,Wachusett - Wachusett Regional High,07750505, 144.0, 100.0, 14.8 to 1, 86.8, 90.3 +4.675,4.68,a-exp-i1,2017-18,Wakefield - Dolbeare,03050005, 30.6, 100.0, 14.6 to 1, 93.5, 100.0 +3.37,3.37,a-exp-i1,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 13.7 to 1, 67.4, 89.1 +4.42,4.42,a-exp-i1,2017-18,Wakefield - Galvin Middle School,03050310, 82.7, 100.0, 12.6 to 1, 88.4, 91.5 +5.0,5.0,a-exp-i1,2017-18,Wakefield - Greenwood,03050020, 12.3, 100.0, 18.0 to 1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,Wakefield - Wakefield Memorial High,03050505, 82.4, 100.0, 12.5 to 1, 93.9, 93.9 +4.91,4.91,a-exp-i1,2017-18,Wakefield - Walton,03050040, 11.3, 100.0, 18.2 to 1, 98.2, 100.0 +4.505,4.51,a-exp-i1,2017-18,Wakefield - Woodville School,03050015, 28.4, 100.0, 15.2 to 1, 90.1, 100.0 +4.904999999999999,4.9,a-exp-i1,2017-18,Wales - Wales Elementary,03060005, 10.4, 100.0, 15.4 to 1, 98.1, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Walpole - Bird Middle,03070305, 35.2, 100.0, 13.9 to 1, 88.1, 96.9 +4.83,4.83,a-exp-i1,2017-18,Walpole - Boyden,03070010, 29.4, 100.0, 12.1 to 1, 96.6, 100.0 +5.0,5.0,a-exp-i1,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 14.6 to 1, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 34.9, 98.3, 12.8 to 1, 89.4, 100.0 +4.529999999999999,4.53,a-exp-i1,2017-18,Walpole - Elm Street School,03070005, 28.7, 100.0, 15.0 to 1, 90.6, 97.6 +4.865,4.87,a-exp-i1,2017-18,Walpole - Fisher,03070015, 36.9, 100.0, 12.3 to 1, 97.3, 100.0 +4.835,4.84,a-exp-i1,2017-18,Walpole - Old Post Road,03070018, 30.0, 100.0, 14.0 to 1, 96.7, 100.0 +4.375,4.38,a-exp-i1,2017-18,Walpole - Walpole High,03070505, 84.6, 99.3, 13.4 to 1, 87.5, 95.3 +4.45,4.45,a-exp-i1,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 36.7, 100.0, 12.0 to 1, 89.0, 97.3 +4.5600000000000005,4.56,a-exp-i1,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 40.0, 100.0, 10.8 to 1, 91.2, 94.4 +4.15,4.15,a-exp-i1,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 37.1, 99.1, 11.8 to 1, 83.0, 97.2 +4.295,4.3,a-exp-i1,2017-18,Waltham - John F Kennedy Middle,03080404, 54.2, 100.0, 9.4 to 1, 85.9, 91.4 +3.8600000000000003,3.86,a-exp-i1,2017-18,Waltham - John W. McDevitt Middle School,03080415, 61.3, 100.0, 10.3 to 1, 77.2, 90.2 +4.029999999999999,4.03,a-exp-i1,2017-18,Waltham - Northeast Elementary School,03080040, 43.1, 100.0, 13.8 to 1, 80.6, 97.1 +3.4299999999999997,3.43,a-exp-i1,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 39.5, 97.3, 10.7 to 1, 68.6, 95.6 +1.4949999999999999,1.5,a-exp-i1,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.9, 100.0, 16.3 to 1, 29.9, 95.9 +3.7049999999999996,3.7,a-exp-i1,2017-18,Waltham - Waltham Sr High,03080505, 141.9, 100.0, 11.4 to 1, 74.1, 89.6 +4.25,4.25,a-exp-i1,2017-18,Waltham - William F. Stanley Elementary School,03080005, 43.6, 100.0, 9.9 to 1, 85.0, 98.5 +4.3,4.3,a-exp-i1,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 28.6, 100.0, 14.4 to 1, 86.0, 100.0 +4.385,4.39,a-exp-i1,2017-18,Ware - Ware Junior/Senior High School,03090505, 38.8, 99.6, 12.0 to 1, 87.7, 85.6 +4.279999999999999,4.28,a-exp-i1,2017-18,Ware - Ware Middle School,03090305, 23.6, 100.0, 14.2 to 1, 85.6, 94.1 +4.285,4.29,a-exp-i1,2017-18,Wareham - John William Decas,03100003, 45.6, 100.0, 12.7 to 1, 85.7, 98.9 +3.505,3.51,a-exp-i1,2017-18,Wareham - Minot Forest,03100017, 33.4, 97.0, 14.7 to 1, 70.1, 97.0 +2.205,2.21,a-exp-i1,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 3.1, 92.0, 20.1 to 1, 44.1, 84.0 +4.0649999999999995,4.06,a-exp-i1,2017-18,Wareham - Wareham Middle,03100305, 53.6, 100.0, 13.5 to 1, 81.3, 90.7 +4.115,4.12,a-exp-i1,2017-18,Wareham - Wareham Senior High,03100505, 53.7, 99.1, 8.5 to 1, 82.3, 85.4 +3.405,3.41,a-exp-i1,2017-18,Watertown - Cunniff,03140015, 31.3, 100.0, 9.8 to 1, 68.1, 94.9 +3.71,3.71,a-exp-i1,2017-18,Watertown - Hosmer,03140020, 59.1, 100.0, 11.5 to 1, 74.2, 93.2 +4.325,4.33,a-exp-i1,2017-18,Watertown - James Russell Lowell,03140025, 38.4, 100.0, 10.8 to 1, 86.5, 100.0 +4.035,4.04,a-exp-i1,2017-18,Watertown - Watertown High,03140505, 66.4, 99.4, 10.1 to 1, 80.7, 93.1 +4.335,4.34,a-exp-i1,2017-18,Watertown - Watertown Middle,03140305, 52.0, 100.0, 10.1 to 1, 86.7, 96.2 +4.29,4.29,a-exp-i1,2017-18,Wayland - Claypit Hill School,03150005, 43.1, 100.0, 12.6 to 1, 85.8, 97.7 +4.63,4.63,a-exp-i1,2017-18,Wayland - Happy Hollow School,03150015, 27.2, 100.0, 14.2 to 1, 92.6, 97.8 +4.49,4.49,a-exp-i1,2017-18,Wayland - Loker School,03150020, 20.6, 100.0, 13.6 to 1, 89.8, 96.1 +4.43,4.43,a-exp-i1,2017-18,Wayland - Wayland High School,03150505, 72.0, 99.6, 11.9 to 1, 88.6, 96.7 +4.76,4.76,a-exp-i1,2017-18,Wayland - Wayland Middle School,03150305, 54.9, 100.0, 11.6 to 1, 95.2, 94.2 +4.470000000000001,4.47,a-exp-i1,2017-18,Webster - Bartlett High School,03160505, 42.5, 98.8, 10.3 to 1, 89.4, 85.9 +3.6799999999999997,3.68,a-exp-i1,2017-18,Webster - Park Avenue Elementary,03160015, 53.0, 100.0, 15.6 to 1, 73.6, 88.7 +3.8200000000000003,3.82,a-exp-i1,2017-18,Webster - Webster Middle School,03160315, 42.4, 100.0, 13.9 to 1, 76.4, 83.5 +3.94,3.94,a-exp-i1,2017-18,Wellesley - Ernest F Upham,03170050, 19.7, 100.0, 12.0 to 1, 78.8, 85.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Wellesley - Hunnewell,03170025, 17.4, 100.0, 14.3 to 1, 80.6, 90.0 +4.295,4.3,a-exp-i1,2017-18,Wellesley - John D Hardy,03170020, 22.7, 100.0, 13.0 to 1, 85.9, 99.1 +4.24,4.24,a-exp-i1,2017-18,Wellesley - Joseph E Fiske,03170015, 33.0, 100.0, 12.1 to 1, 84.8, 97.0 +4.76,4.76,a-exp-i1,2017-18,Wellesley - Katharine Lee Bates,03170005, 21.0, 100.0, 17.7 to 1, 95.2, 100.0 +4.8,4.8,a-exp-i1,2017-18,Wellesley - Schofield,03170045, 25.0, 100.0, 15.1 to 1, 96.0, 96.0 +4.6,4.6,a-exp-i1,2017-18,Wellesley - Sprague Elementary School,03170048, 28.3, 100.0, 13.5 to 1, 92.0, 99.0 +4.495,4.5,a-exp-i1,2017-18,Wellesley - Wellesley Middle,03170305, 104.6, 100.0, 10.8 to 1, 89.9, 95.3 +4.525,4.53,a-exp-i1,2017-18,Wellesley - Wellesley Sr High,03170505, 119.7, 99.6, 13.1 to 1, 90.5, 92.9 +4.595000000000001,4.6,a-exp-i1,2017-18,Wellfleet - Wellfleet Elementary,03180005, 14.8, 100.0, 7.6 to 1, 91.9, 93.2 +4.29,4.29,a-exp-i1,2017-18,West Boylston - Major Edwards Elementary,03220005, 35.3, 100.0, 11.9 to 1, 85.8, 100.0 +4.325,4.33,a-exp-i1,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 48.0, 100.0, 10.1 to 1, 86.5, 94.1 +4.8100000000000005,4.81,a-exp-i1,2017-18,West Bridgewater - Howard School,03230305, 18.5, 100.0, 15.6 to 1, 96.2, 97.3 +4.01,4.01,a-exp-i1,2017-18,West Bridgewater - Rose L Macdonald,03230003, 15.2, 100.0, 16.3 to 1, 80.2, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,West Bridgewater - Spring Street School,03230005, 8.9, 100.0, 15.9 to 1, 88.8, 100.0 +4.39,4.39,a-exp-i1,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 51.5, 100.0, 12.2 to 1, 87.8, 94.2 +4.86,4.86,a-exp-i1,2017-18,West Springfield - 21st Century Skills Academy,03320515, 6.2, 97.2, 1.3 to 1, 97.2, 100.0 +4.165,4.17,a-exp-i1,2017-18,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 20.3 to 1, 83.3, 100.0 +4.904999999999999,4.9,a-exp-i1,2017-18,West Springfield - John Ashley,03320005, 17.5, 100.0, 13.4 to 1, 98.1, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,West Springfield - John R Fausey,03320010, 34.7, 100.0, 13.3 to 1, 85.6, 97.1 +4.0200000000000005,4.02,a-exp-i1,2017-18,West Springfield - Memorial,03320025, 19.0, 100.0, 12.6 to 1, 80.4, 100.0 +4.445,4.45,a-exp-i1,2017-18,West Springfield - Mittineague,03320030, 14.7, 100.0, 11.0 to 1, 88.9, 95.7 +4.705,4.71,a-exp-i1,2017-18,West Springfield - Philip G Coburn,03320007, 45.2, 100.0, 11.5 to 1, 94.1, 96.9 +4.0600000000000005,4.06,a-exp-i1,2017-18,West Springfield - Tatham,03320040, 19.0, 100.0, 12.6 to 1, 81.2, 94.7 +4.84,4.84,a-exp-i1,2017-18,West Springfield - West Springfield High,03320505, 94.2, 100.0, 13.1 to 1, 96.8, 94.7 +4.745,4.75,a-exp-i1,2017-18,West Springfield - West Springfield Middle,03320305, 72.5, 98.6, 12.4 to 1, 94.9, 100.0 +4.135,4.14,a-exp-i1,2017-18,Westborough - Annie E Fales,03210010, 28.9, 100.0, 11.7 to 1, 82.7, 89.6 +3.685,3.69,a-exp-i1,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 43.1, 100.0, 11.6 to 1, 73.7, 95.4 +3.9899999999999998,3.99,a-exp-i1,2017-18,Westborough - J Harding Armstrong,03210005, 34.6, 100.0, 12.2 to 1, 79.8, 97.1 +4.3549999999999995,4.35,a-exp-i1,2017-18,Westborough - Mill Pond School,03210045, 70.3, 100.0, 13.3 to 1, 87.1, 96.0 +4.18,4.18,a-exp-i1,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 54.9, 100.0, 10.9 to 1, 83.6, 90.9 +4.135,4.14,a-exp-i1,2017-18,Westborough - Westborough High,03210505, 89.5, 99.0, 12.6 to 1, 82.7, 93.3 +4.779999999999999,4.78,a-exp-i1,2017-18,Westfield - Abner Gibbs,03250020, 15.4, 100.0, 14.5 to 1, 95.6, 98.1 +5.0,5.0,a-exp-i1,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 24.3 to 1, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Westfield - Franklin Ave,03250015, 16.8, 100.0, 14.7 to 1, 83.8, 95.8 +4.695,4.7,a-exp-i1,2017-18,Westfield - Highland,03250025, 33.1, 100.0, 11.3 to 1, 93.9, 94.9 +4.705,4.71,a-exp-i1,2017-18,Westfield - Munger Hill,03250033, 27.9, 100.0, 13.6 to 1, 94.1, 95.2 +4.3149999999999995,4.31,a-exp-i1,2017-18,Westfield - North Middle School,03250305, 51.4, 100.0, 13.1 to 1, 86.3, 92.1 +3.9850000000000003,3.99,a-exp-i1,2017-18,Westfield - Paper Mill,03250036, 30.8, 100.0, 13.4 to 1, 79.7, 100.0 +4.585,4.59,a-exp-i1,2017-18,Westfield - Russell Elementary School,03250055, 12.2, 100.0, 13.2 to 1, 91.7, 100.0 +4.6,4.6,a-exp-i1,2017-18,Westfield - South Middle School,03250310, 50.3, 100.0, 11.7 to 1, 92.0, 94.0 +4.535,4.54,a-exp-i1,2017-18,Westfield - Southampton Road,03250040, 30.5, 100.0, 13.9 to 1, 90.7, 96.7 +4.3,4.3,a-exp-i1,2017-18,Westfield - Westfield High,03250505, 91.7, 98.9, 13.7 to 1, 86.0, 93.8 +4.385,4.39,a-exp-i1,2017-18,Westfield - Westfield Technical Academy,03250605, 55.0, 89.9, 9.8 to 1, 87.7, 84.6 +4.13,4.13,a-exp-i1,2017-18,Westford - Abbot Elementary,03260004, 21.8, 100.0, 16.8 to 1, 82.6, 100.0 +4.465,4.47,a-exp-i1,2017-18,Westford - Blanchard Middle,03260310, 46.7, 100.0, 12.6 to 1, 89.3, 93.6 +4.54,4.54,a-exp-i1,2017-18,Westford - Col John Robinson,03260025, 16.3, 100.0, 17.9 to 1, 90.8, 93.9 +4.885,4.89,a-exp-i1,2017-18,Westford - Day Elementary,03260007, 22.0, 100.0, 16.2 to 1, 97.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 20.6, 100.0, 16.7 to 1, 94.2, 100.0 +4.9350000000000005,4.94,a-exp-i1,2017-18,Westford - Millennium Elementary,03260013, 7.8, 100.0, 14.1 to 1, 98.7, 100.0 +4.575,4.58,a-exp-i1,2017-18,Westford - Nabnasset,03260015, 18.8, 100.0, 17.5 to 1, 91.5, 100.0 +4.6,4.6,a-exp-i1,2017-18,Westford - Rita E. Miller Elementary School,03260055, 18.8, 100.0, 17.3 to 1, 92.0, 92.0 +4.61,4.61,a-exp-i1,2017-18,Westford - Stony Brook School,03260330, 51.0, 100.0, 12.7 to 1, 92.2, 96.1 +4.45,4.45,a-exp-i1,2017-18,Westford - Westford Academy,03260505, 119.1, 99.7, 14.4 to 1, 89.0, 95.8 +4.654999999999999,4.65,a-exp-i1,2017-18,Westhampton - Westhampton Elementary School,03270005, 14.4, 100.0, 8.5 to 1, 93.1, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Weston - Country,03300010, 21.2, 98.6, 14.3 to 1, 84.4, 95.3 +4.045,4.05,a-exp-i1,2017-18,Weston - Field Elementary School,03300012, 24.4, 100.0, 13.3 to 1, 80.9, 92.8 +4.2700000000000005,4.27,a-exp-i1,2017-18,Weston - Weston High,03300505, 63.8, 99.7, 10.9 to 1, 85.4, 98.4 +4.45,4.45,a-exp-i1,2017-18,Weston - Weston Middle,03300305, 39.9, 99.5, 12.1 to 1, 89.0, 90.5 +4.245,4.25,a-exp-i1,2017-18,Weston - Woodland,03300015, 18.1, 100.0, 16.5 to 1, 84.9, 94.5 +4.4,4.4,a-exp-i1,2017-18,Westport - Alice A Macomber,03310015, 25.0, 100.0, 14.9 to 1, 88.0, 100.0 +4.35,4.35,a-exp-i1,2017-18,Westport - Westport Elementary,03310030, 38.5, 100.0, 13.2 to 1, 87.0, 89.6 +4.195,4.2,a-exp-i1,2017-18,Westport - Westport Junior/Senior High School,03310515, 54.2, 100.0, 10.1 to 1, 83.9, 93.5 +4.6,4.6,a-exp-i1,2017-18,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.7 to 1, 92.0, 100.0 +4.57,4.57,a-exp-i1,2017-18,Westwood - Downey,03350012, 18.6, 100.0, 13.5 to 1, 91.4, 86.0 +4.38,4.38,a-exp-i1,2017-18,Westwood - E W Thurston Middle,03350305, 59.7, 100.0, 13.3 to 1, 87.6, 96.7 +4.41,4.41,a-exp-i1,2017-18,Westwood - Martha Jones,03350017, 19.5, 100.0, 15.1 to 1, 88.2, 94.9 +4.235,4.24,a-exp-i1,2017-18,Westwood - Paul Hanlon,03350015, 15.9, 100.0, 13.8 to 1, 84.7, 95.0 +3.66,3.66,a-exp-i1,2017-18,Westwood - Westwood High,03350505, 78.6, 100.0, 12.7 to 1, 73.2, 93.6 +3.335,3.34,a-exp-i1,2017-18,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15.3 to 1, 66.7, 100.0 +4.775,4.78,a-exp-i1,2017-18,Westwood - William E Sheehan,03350025, 22.1, 100.0, 14.4 to 1, 95.5, 100.0 +4.32,4.32,a-exp-i1,2017-18,Weymouth - Abigail Adams Middle School,03360310, 71.4, 98.0, 12.7 to 1, 86.4, 91.2 +4.14,4.14,a-exp-i1,2017-18,Weymouth - Academy Avenue,03360005, 19.7, 100.0, 15.6 to 1, 82.8, 100.0 +3.995,4.0,a-exp-i1,2017-18,Weymouth - Frederick C Murphy,03360050, 16.3, 100.0, 15.1 to 1, 79.9, 100.0 +3.63,3.63,a-exp-i1,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 15.6 to 1, 72.6, 100.0 +4.245,4.25,a-exp-i1,2017-18,Weymouth - Lawrence W Pingree,03360065, 13.2, 100.0, 14.6 to 1, 84.9, 100.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 74.0, 100.0, 11.9 to 1, 79.8, 85.1 +4.35,4.35,a-exp-i1,2017-18,Weymouth - Ralph Talbot,03360085, 18.0, 100.0, 13.8 to 1, 87.0, 100.0 +4.265,4.27,a-exp-i1,2017-18,Weymouth - Thomas V Nash,03360060, 13.6, 100.0, 14.9 to 1, 85.3, 100.0 +4.64,4.64,a-exp-i1,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 20.8, 100.0, 16.9 to 1, 92.8, 100.0 +4.16,4.16,a-exp-i1,2017-18,Weymouth - Wessagusset,03360110, 18.7, 100.0, 14.9 to 1, 83.2, 96.9 +4.165,4.17,a-exp-i1,2017-18,Weymouth - Weymouth High School,03360505, 136.7, 99.3, 13.9 to 1, 83.3, 88.9 +4.15,4.15,a-exp-i1,2017-18,Weymouth - William Seach,03360080, 16.8, 100.0, 18.9 to 1, 83.0, 91.5 +3.62,3.62,a-exp-i1,2017-18,Whately - Whately Elementary,03370005, 12.7, 100.0, 11.1 to 1, 72.4, 100.0 +4.29,4.29,a-exp-i1,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 28.2, 100.0, 13.9 to 1, 85.8, 92.9 +4.32,4.32,a-exp-i1,2017-18,Whitman-Hanson - Indian Head,07800035, 22.0, 100.0, 14.7 to 1, 86.4, 100.0 +5.0,5.0,a-exp-i1,2017-18,Whitman-Hanson - John H Duval,07800030, 27.1, 100.0, 16.4 to 1, 100.0, 100.0 +3.9799999999999995,3.98,a-exp-i1,2017-18,Whitman-Hanson - Louise A Conley,07800010, 34.3, 100.0, 16.4 to 1, 79.6, 94.2 +4.585,4.59,a-exp-i1,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 24.2, 100.0, 18.0 to 1, 91.7, 95.9 +4.035,4.04,a-exp-i1,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 72.6, 100.0, 16.1 to 1, 80.7, 84.5 +4.74,4.74,a-exp-i1,2017-18,Whitman-Hanson - Whitman Middle,07800310, 36.2, 100.0, 15.9 to 1, 94.8, 89.3 +4.404999999999999,4.4,a-exp-i1,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.9, 97.4, 11.0 to 1, 88.1, 82.4 +4.71,4.71,a-exp-i1,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 17.2, 100.0, 9.5 to 1, 94.2, 100.0 +4.125,4.13,a-exp-i1,2017-18,Williamstown - Williamstown Elementary,03410010, 38.8, 100.0, 11.8 to 1, 82.5, 100.0 +3.3950000000000005,3.4,a-exp-i1,2017-18,Wilmington - Boutwell,03420005, 12.5, 100.0, 12.9 to 1, 67.9, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Wilmington - North Intermediate,03420060, 21.5, 100.0, 14.1 to 1, 95.4, 100.0 +4.42,4.42,a-exp-i1,2017-18,Wilmington - Shawsheen Elementary,03420025, 30.0, 100.0, 11.5 to 1, 88.4, 96.7 +4.205,4.21,a-exp-i1,2017-18,Wilmington - West Intermediate,03420080, 22.0, 100.0, 11.2 to 1, 84.1, 95.4 +4.595000000000001,4.6,a-exp-i1,2017-18,Wilmington - Wildwood,03420015, 12.4, 100.0, 15.7 to 1, 91.9, 100.0 +4.61,4.61,a-exp-i1,2017-18,Wilmington - Wilmington High,03420505, 71.8, 100.0, 12.0 to 1, 92.2, 95.0 +4.25,4.25,a-exp-i1,2017-18,Wilmington - Wilmington Middle School,03420330, 74.2, 100.0, 11.3 to 1, 85.0, 93.6 +4.84,4.84,a-exp-i1,2017-18,Wilmington - Woburn Street,03420020, 31.0, 100.0, 12.4 to 1, 96.8, 100.0 +4.695,4.7,a-exp-i1,2017-18,Winchendon - Memorial,03430040, 16.5, 100.0, 18.6 to 1, 93.9, 93.9 +3.8950000000000005,3.9,a-exp-i1,2017-18,Winchendon - Murdock Academy for Success,03430405, 1.5, 100.0, 19.5 to 1, 77.9, 100.0 +3.44,3.44,a-exp-i1,2017-18,Winchendon - Murdock High School,03430515, 25.4, 100.0, 12.0 to 1, 68.8, 90.6 +4.445,4.45,a-exp-i1,2017-18,Winchendon - Murdock Middle School,03430315, 20.3, 100.0, 13.5 to 1, 88.9, 88.9 +5.0,5.0,a-exp-i1,2017-18,Winchendon - Toy Town Elementary,03430050, 20.5, 100.0, 14.3 to 1, 100.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 26.3 to 1, 100.0, 100.0 +4.12,4.12,a-exp-i1,2017-18,Winchester - Ambrose Elementary,03440045, 36.6, 100.0, 11.5 to 1, 82.4, 97.3 +3.6149999999999998,3.62,a-exp-i1,2017-18,Winchester - Lincoln Elementary,03440005, 32.5, 100.0, 12.4 to 1, 72.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Winchester - Lynch Elementary,03440020, 47.6, 100.0, 11.3 to 1, 83.4, 97.9 +3.935,3.94,a-exp-i1,2017-18,Winchester - McCall Middle,03440305, 83.5, 100.0, 13.3 to 1, 78.7, 90.7 +4.275,4.28,a-exp-i1,2017-18,Winchester - Muraco Elementary,03440040, 34.4, 100.0, 11.1 to 1, 85.5, 100.0 +4.18,4.18,a-exp-i1,2017-18,Winchester - Vinson-Owen Elementary,03440025, 35.1, 100.0, 13.0 to 1, 83.6, 94.3 +4.515,4.52,a-exp-i1,2017-18,Winchester - Winchester High School,03440505, 90.6, 100.0, 14.9 to 1, 90.3, 95.2 +3.72,3.72,a-exp-i1,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 23.5, 100.0, 19.4 to 1, 74.4, 95.7 +3.22,3.22,a-exp-i1,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 29.5, 100.0, 16.0 to 1, 64.4, 93.2 +3.87,3.87,a-exp-i1,2017-18,Winthrop - Winthrop High School,03460505, 44.2, 97.7, 13.9 to 1, 77.4, 61.5 +3.7350000000000003,3.74,a-exp-i1,2017-18,Winthrop - Winthrop Middle School,03460305, 34.5, 100.0, 14.0 to 1, 74.7, 76.8 +5.0,5.0,a-exp-i1,2017-18,Woburn - Clyde Reeves,03470040, 29.0, 100.0, 14.8 to 1, 100.0, 100.0 +4.625,4.63,a-exp-i1,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 53.5, 100.0, 9.8 to 1, 92.5, 94.4 +4.225,4.23,a-exp-i1,2017-18,Woburn - Daniel P Hurld,03470020, 14.2, 100.0, 15.2 to 1, 84.5, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Woburn - Goodyear Elementary School,03470005, 24.8, 96.0, 12.4 to 1, 83.8, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Woburn - John F Kennedy Middle School,03470405, 48.5, 100.0, 10.0 to 1, 85.6, 85.6 +4.9350000000000005,4.94,a-exp-i1,2017-18,Woburn - Linscott-Rumford,03470025, 16.2, 100.0, 12.8 to 1, 98.7, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Woburn - Malcolm White,03470055, 23.0, 100.0, 14.1 to 1, 90.4, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Woburn - Mary D Altavesta,03470065, 17.1, 100.0, 14.5 to 1, 87.1, 100.0 +4.18,4.18,a-exp-i1,2017-18,Woburn - Shamrock,03470043, 30.5, 100.0, 11.9 to 1, 83.6, 96.7 +4.64,4.64,a-exp-i1,2017-18,Woburn - Woburn High,03470505, 104.6, 100.0, 12.6 to 1, 92.8, 94.3 +4.925,4.93,a-exp-i1,2017-18,Woburn - Wyman,03470060, 13.3, 100.0, 13.7 to 1, 98.5, 100.0 +3.6799999999999997,3.68,a-exp-i1,2017-18,Worcester - Belmont Street Community,03480020, 31.5, 100.0, 18.4 to 1, 73.6, 100.0 +4.045,4.05,a-exp-i1,2017-18,Worcester - Burncoat Middle School,03480405, 50.4, 98.0, 12.4 to 1, 80.9, 84.6 +4.470000000000001,4.47,a-exp-i1,2017-18,Worcester - Burncoat Senior High,03480503, 79.6, 97.5, 13.0 to 1, 89.4, 92.2 +3.8,3.8,a-exp-i1,2017-18,Worcester - Burncoat Street,03480035, 18.9, 100.0, 15.5 to 1, 76.0, 94.2 +3.4799999999999995,3.48,a-exp-i1,2017-18,Worcester - Canterbury,03480045, 25.2, 100.0, 14.9 to 1, 69.6, 91.0 +4.235,4.24,a-exp-i1,2017-18,Worcester - Chandler Elementary Community,03480050, 26.6, 92.5, 18.8 to 1, 84.7, 96.2 +3.905,3.91,a-exp-i1,2017-18,Worcester - Chandler Magnet,03480052, 38.3, 100.0, 11.3 to 1, 78.1, 91.7 +4.785,4.79,a-exp-i1,2017-18,Worcester - City View,03480053, 31.6, 100.0, 15.0 to 1, 95.7, 96.9 +4.38,4.38,a-exp-i1,2017-18,Worcester - Claremont Academy,03480350, 40.2, 97.5, 13.7 to 1, 87.6, 85.1 +4.17,4.17,a-exp-i1,2017-18,Worcester - Clark St Community,03480055, 17.6, 100.0, 14.8 to 1, 83.4, 99.2 +4.59,4.59,a-exp-i1,2017-18,Worcester - Columbus Park,03480060, 26.8, 100.0, 18.9 to 1, 91.8, 97.0 +4.36,4.36,a-exp-i1,2017-18,Worcester - Doherty Memorial High,03480512, 101.4, 97.0, 15.4 to 1, 87.2, 89.1 +3.4,3.4,a-exp-i1,2017-18,Worcester - Elm Park Community,03480095, 28.2, 96.7, 16.9 to 1, 68.0, 100.0 +4.7,4.7,a-exp-i1,2017-18,Worcester - Flagg Street,03480090, 22.5, 100.0, 18.1 to 1, 94.0, 98.7 +4.635,4.64,a-exp-i1,2017-18,Worcester - Forest Grove Middle,03480415, 68.8, 100.0, 14.2 to 1, 92.7, 92.4 +4.975,4.98,a-exp-i1,2017-18,Worcester - Francis J McGrath Elementary,03480177, 15.4, 100.0, 15.4 to 1, 99.5, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Worcester - Gates Lane,03480110, 39.9, 97.5, 14.3 to 1, 81.9, 87.4 +3.2950000000000004,3.3,a-exp-i1,2017-18,Worcester - Goddard School/Science Technical,03480100, 32.9, 100.0, 14.1 to 1, 65.9, 93.9 +3.53,3.53,a-exp-i1,2017-18,Worcester - Grafton Street,03480115, 23.0, 95.7, 16.8 to 1, 70.6, 100.0 +2.25,2.25,a-exp-i1,2017-18,Worcester - Head Start,03480002, 31.2, 26.1, 17.0 to 1, 45.0, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Worcester - Heard Street,03480136, 17.3, 100.0, 17.1 to 1, 93.7, 100.0 +4.779999999999999,4.78,a-exp-i1,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 26.3, 100.0, 15.3 to 1, 95.6, 95.8 +5.0,5.0,a-exp-i1,2017-18,Worcester - Lake View,03480145, 16.5, 100.0, 17.3 to 1, 100.0, 100.0 +3.085,3.09,a-exp-i1,2017-18,Worcester - Lincoln Street,03480160, 18.3, 100.0, 14.8 to 1, 61.7, 100.0 +4.705,4.71,a-exp-i1,2017-18,Worcester - May Street,03480175, 18.4, 100.0, 18.4 to 1, 94.1, 100.0 +4.64,4.64,a-exp-i1,2017-18,Worcester - Midland Street,03480185, 16.3, 100.0, 14.1 to 1, 92.8, 99.4 +4.515,4.52,a-exp-i1,2017-18,Worcester - Nelson Place,03480200, 33.8, 100.0, 15.4 to 1, 90.3, 99.7 +3.925,3.93,a-exp-i1,2017-18,Worcester - Norrback Avenue,03480202, 37.0, 100.0, 15.2 to 1, 78.5, 91.9 +3.8200000000000003,3.82,a-exp-i1,2017-18,Worcester - North High,03480515, 97.1, 95.9, 13.3 to 1, 76.4, 80.4 +3.62,3.62,a-exp-i1,2017-18,Worcester - Quinsigamond,03480210, 40.8, 100.0, 18.3 to 1, 72.4, 92.1 +3.7299999999999995,3.73,a-exp-i1,2017-18,Worcester - Rice Square,03480215, 26.3, 100.0, 16.2 to 1, 74.6, 95.4 +4.154999999999999,4.15,a-exp-i1,2017-18,Worcester - Roosevelt,03480220, 41.4, 97.8, 16.2 to 1, 83.1, 95.1 +3.97,3.97,a-exp-i1,2017-18,Worcester - South High Community,03480520, 96.6, 93.8, 14.6 to 1, 79.4, 92.0 +3.8299999999999996,3.83,a-exp-i1,2017-18,Worcester - Sullivan Middle,03480423, 72.7, 98.6, 11.9 to 1, 76.6, 87.6 +3.69,3.69,a-exp-i1,2017-18,Worcester - Tatnuck,03480230, 23.2, 100.0, 16.9 to 1, 73.8, 100.0 +4.01,4.01,a-exp-i1,2017-18,Worcester - Thorndyke Road,03480235, 20.4, 100.0, 18.7 to 1, 80.2, 99.0 +4.4,4.4,a-exp-i1,2017-18,Worcester - Union Hill School,03480240, 25.7, 96.1, 17.7 to 1, 88.0, 88.3 +4.45,4.45,a-exp-i1,2017-18,Worcester - University Pk Campus School,03480285, 18.2, 100.0, 13.1 to 1, 89.0, 94.5 +4.05,4.05,a-exp-i1,2017-18,Worcester - Vernon Hill School,03480280, 31.6, 100.0, 17.0 to 1, 81.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2017-18,Worcester - Wawecus Road School,03480026, 11.8, 100.0, 12.9 to 1, 78.9, 92.1 +4.3950000000000005,4.4,a-exp-i1,2017-18,Worcester - West Tatnuck,03480260, 21.4, 100.0, 17.3 to 1, 87.9, 95.3 +3.0949999999999998,3.1,a-exp-i1,2017-18,Worcester - Woodland Academy,03480030, 31.8, 100.0, 19.0 to 1, 61.9, 93.5 +4.32,4.32,a-exp-i1,2017-18,Worcester - Worcester Arts Magnet School,03480225, 23.4, 100.0, 17.3 to 1, 86.4, 99.6 +3.75,3.75,a-exp-i1,2017-18,Worcester - Worcester East Middle,03480420, 64.0, 100.0, 12.8 to 1, 75.0, 78.1 +4.13,4.13,a-exp-i1,2017-18,Worcester - Worcester Technical High,03480605, 138.3, 97.8, 10.0 to 1, 82.6, 84.8 +2.575,2.58,a-exp-i1,2017-18,Worthington - R. H. Conwell,03490010, 6.6, 93.9, 9.4 to 1, 51.5, 97.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Wrentham - Charles E Roderick,03500010, 33.4, 100.0, 13.9 to 1, 88.8, 100.0 +4.665,4.67,a-exp-i1,2017-18,Wrentham - Delaney,03500003, 42.0, 100.0, 13.8 to 1, 93.3, 100.0 +NA,NA,a-exp-i3,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 109.0, 97.8, 13.1 to 1, 81.1, 83.7 +NA,NA,a-exp-i3,2017-18,Abington - Abington Early Education Program,00010001, 3.0, 100.0, 28.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Abington - Abington High,00010505, 38.7, 100.0, 13.4 to 1, 82.8, 87.1 +NA,NA,a-exp-i3,2017-18,Abington - Abington Middle School,00010405, 40.8, 100.0, 16.8 to 1, 71.3, 92.9 +NA,NA,a-exp-i3,2017-18,Abington - Beaver Brook Elementary,00010020, 22.7, 100.0, 18.7 to 1, 86.8, 100.0 +NA,NA,a-exp-i3,2017-18,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 17.4 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 48.1, 70.5, 10.9 to 1, 39.7, 79.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.8, 100.0, 14.8 to 1, 88.9, 95.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 30.2, 100.0, 14.8 to 1, 83.4, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 26.6, 100.0, 16.1 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 15.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Luther Conant School,06000030, 29.2, 100.0, 15.1 to 1, 85.6, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 30.2, 100.0, 16.1 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Merriam School,06000010, 31.6, 100.0, 15.8 to 1, 85.4, 93.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.6, 100.0, 15.1 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.6, 100.0, 14.5 to 1, 93.1, 97.0 +NA,NA,a-exp-i3,2017-18,Acushnet - Acushnet Elementary School,00030025, 36.5, 100.0, 15.1 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acushnet - Albert F Ford Middle School,00030305, 29.0, 100.0, 14.3 to 1, 96.5, 96.5 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 22.0, 100.0, 18.3 to 1, 94.5, 100.0 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 30.1, 96.7, 13.9 to 1, 76.9, 90.4 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 28.2, 100.0, 14.2 to 1, 77.3, 96.4 +NA,NA,a-exp-i3,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 82.0, 86.0, 12.1 to 1, 62.7, 70.2 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam Early Childhood Center,00050003, 9.5, 100.0, 17.2 to 1, 89.5, 89.5 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam High,00050505, 97.0, 100.0, 12.1 to 1, 90.7, 95.9 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam Junior High,00050405, 60.7, 100.0, 9.4 to 1, 91.9, 95.2 +NA,NA,a-exp-i3,2017-18,Agawam - Benjamin J Phelps,00050020, 29.8, 100.0, 13.0 to 1, 91.6, 95.0 +NA,NA,a-exp-i3,2017-18,Agawam - Clifford M Granger,00050010, 20.3, 100.0, 13.8 to 1, 93.6, 100.0 +NA,NA,a-exp-i3,2017-18,Agawam - James Clark School,00050030, 28.1, 100.0, 12.1 to 1, 94.3, 96.4 +NA,NA,a-exp-i3,2017-18,Agawam - Roberta G. Doering School,00050303, 47.1, 100.0, 12.1 to 1, 93.6, 96.8 +NA,NA,a-exp-i3,2017-18,Agawam - Robinson Park,00050025, 30.8, 100.0, 12.1 to 1, 91.9, 98.4 +NA,NA,a-exp-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 35.0, 62.9, 11.8 to 1, 54.3, 97.1 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Elementary,00070005, 28.4, 100.0, 13.9 to 1, 90.1, 100.0 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury High,00070505, 20.6, 100.0, 28.7 to 1, 89.5, 94.3 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Innovation High School,00070515, 3.7, 100.0, 10.7 to 1, 77.8, 51.1 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Middle,00070013, 57.0, 100.0, 11.9 to 1, 82.3, 91.2 +NA,NA,a-exp-i3,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 33.4, 100.0, 13.3 to 1, 94.6, 97.0 +NA,NA,a-exp-i3,2017-18,Amherst - Crocker Farm Elementary,00080009, 40.9, 100.0, 10.0 to 1, 92.0, 99.4 +NA,NA,a-exp-i3,2017-18,Amherst - Fort River Elementary,00080020, 38.6, 100.0, 8.7 to 1, 70.8, 91.6 +NA,NA,a-exp-i3,2017-18,Amherst - Wildwood Elementary,00080050, 42.6, 95.3, 9.5 to 1, 90.0, 99.4 +NA,NA,a-exp-i3,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 66.4, 98.5, 14.0 to 1, 82.2, 96.8 +NA,NA,a-exp-i3,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 42.6, 99.1, 9.6 to 1, 87.7, 93.0 +NA,NA,a-exp-i3,2017-18,Andover - Andover High,00090505, 124.6, 100.0, 14.3 to 1, 89.3, 93.7 +NA,NA,a-exp-i3,2017-18,Andover - Andover West Middle,00090310, 46.5, 100.0, 11.3 to 1, 85.7, 95.7 +NA,NA,a-exp-i3,2017-18,Andover - Bancroft Elementary,00090003, 46.0, 100.0, 12.6 to 1, 92.4, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Doherty Middle,00090305, 46.1, 100.0, 12.1 to 1, 82.1, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Henry C Sanborn Elementary,00090010, 31.9, 100.0, 12.2 to 1, 91.2, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - High Plain Elementary,00090004, 43.4, 100.0, 11.5 to 1, 91.6, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Shawsheen School,00090005, 7.0, 100.0, 12.1 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - South Elementary,00090020, 38.1, 100.0, 12.9 to 1, 93.4, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - West Elementary,00090025, 47.1, 100.0, 12.9 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Wood Hill Middle School,00090350, 39.1, 100.0, 10.5 to 1, 85.3, 95.3 +NA,NA,a-exp-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 37.2, 67.2, 10.7 to 1, 24.7, 81.2 +NA,NA,a-exp-i3,2017-18,Arlington - Arlington High,00100505, 99.8, 100.0, 13.3 to 1, 81.6, 87.3 +NA,NA,a-exp-i3,2017-18,Arlington - Brackett,00100010, 30.3, 100.0, 16.1 to 1, 84.6, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Cyrus E Dallin,00100025, 33.3, 100.0, 14.4 to 1, 79.5, 96.0 +NA,NA,a-exp-i3,2017-18,Arlington - Hardy,00100030, 31.8, 96.9, 14.4 to 1, 71.6, 96.7 +NA,NA,a-exp-i3,2017-18,Arlington - John A Bishop,00100005, 23.5, 100.0, 17.9 to 1, 92.7, 95.7 +NA,NA,a-exp-i3,2017-18,Arlington - M Norcross Stratton,00100055, 28.1, 100.0, 14.3 to 1, 81.9, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 14.2 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Ottoson Middle,00100410, 94.2, 98.9, 13.4 to 1, 83.4, 88.1 +NA,NA,a-exp-i3,2017-18,Arlington - Peirce,00100045, 17.6, 100.0, 17.3 to 1, 91.2, 88.4 +NA,NA,a-exp-i3,2017-18,Arlington - Thompson,00100050, 35.1, 100.0, 13.9 to 1, 64.8, 96.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 38.8, 100.0, 14.3 to 1, 84.5, 92.3 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 15.2 to 1, 84.5, 96.9 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 50.5, 100.0, 14.2 to 1, 84.4, 94.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 37.9, 100.0, 15.1 to 1, 82.6, 94.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 22.1, 100.0, 17.1 to 1, 78.0, 94.7 +NA,NA,a-exp-i3,2017-18,Ashland - Ashland High,00140505, 56.0, 100.0, 13.7 to 1, 81.4, 91.4 +NA,NA,a-exp-i3,2017-18,Ashland - Ashland Middle,00140405, 45.2, 100.0, 13.3 to 1, 92.7, 95.0 +NA,NA,a-exp-i3,2017-18,Ashland - David Mindess,00140015, 46.3, 100.0, 14.0 to 1, 84.9, 97.8 +NA,NA,a-exp-i3,2017-18,Ashland - Henry E Warren Elementary,00140010, 44.4, 100.0, 13.8 to 1, 80.2, 96.4 +NA,NA,a-exp-i3,2017-18,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 15.9 to 1, 50.0, 100.0 +NA,NA,a-exp-i3,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110.0, 95.5, 10.1 to 1, 84.1, 86.4 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 37.3, 100.0, 16.2 to 1, 70.5, 86.6 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol High,06150505, 30.3, 100.0, 12.1 to 1, 83.5, 80.2 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.1, 100.0, 13.0 to 1, 83.4, 86.7 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Royalston Community School,06150050, 11.8, 100.0, 11.8 to 1, 83.0, 100.0 +NA,NA,a-exp-i3,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 88.6, 82.5, 13.7 to 1, 48.1, 75.2 +NA,NA,a-exp-i3,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 30.5, 100.0, 12.6 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Attleboro Community Academy,00160515, 3.4, 94.2, 17.7 to 1, 82.6, 84.2 +NA,NA,a-exp-i3,2017-18,Attleboro - Attleboro High,00160505, 107.8, 98.1, 15.8 to 1, 87.0, 89.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 33.8, 100.0, 17.2 to 1, 91.1, 97.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Early Learning Center,00160008, 8.4, 100.0, 21.9 to 1, 76.2, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 27.7, 100.0, 16.6 to 1, 65.2, 89.1 +NA,NA,a-exp-i3,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 28.0, 100.0, 17.2 to 1, 92.8, 96.4 +NA,NA,a-exp-i3,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 34.5, 100.0, 12.2 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 38.0, 100.0, 17.5 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 28.5, 100.0, 15.2 to 1, 96.5, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Wamsutta Middle School,00160320, 33.2, 100.0, 17.4 to 1, 94.0, 97.0 +NA,NA,a-exp-i3,2017-18,Auburn - Auburn Middle,00170305, 45.3, 100.0, 13.9 to 1, 90.1, 97.8 +NA,NA,a-exp-i3,2017-18,Auburn - Auburn Senior High,00170505, 61.6, 100.0, 13.0 to 1, 91.9, 90.3 +NA,NA,a-exp-i3,2017-18,Auburn - Bryn Mawr,00170010, 17.8, 100.0, 16.8 to 1, 77.0, 93.9 +NA,NA,a-exp-i3,2017-18,Auburn - Pakachoag School,00170025, 17.9, 100.0, 16.8 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 15.9 to 1, 91.9, 97.4 +NA,NA,a-exp-i3,2017-18,Avon - Avon Middle High School,00180510, 35.1, 100.0, 8.9 to 1, 75.2, 82.9 +NA,NA,a-exp-i3,2017-18,Avon - Ralph D Butler,00180010, 32.3, 100.0, 12.8 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 36.3, 99.6, 11.3 to 1, 77.2, 77.6 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 31.5, 100.0, 11.7 to 1, 90.5, 87.3 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.8, 97.3, 13.4 to 1, 78.8, 93.9 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.0, 100.0, 13.5 to 1, 76.9, 92.3 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable High,00200505, 144.9, 99.3, 12.8 to 1, 90.0, 92.4 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable Intermediate School,00200315, 58.4, 100.0, 12.6 to 1, 82.0, 91.4 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable United Elementary School,00200050, 59.6, 100.0, 14.4 to 1, 75.5, 95.6 +NA,NA,a-exp-i3,2017-18,Barnstable - Centerville Elementary,00200010, 21.3, 100.0, 12.2 to 1, 86.9, 96.2 +NA,NA,a-exp-i3,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 22.5 to 1, 50.0, 83.3 +NA,NA,a-exp-i3,2017-18,Barnstable - Hyannis West Elementary,00200025, 31.6, 100.0, 10.6 to 1, 78.5, 88.0 +NA,NA,a-exp-i3,2017-18,Barnstable - West Barnstable Elementary,00200005, 16.4, 100.0, 15.8 to 1, 80.5, 92.7 +NA,NA,a-exp-i3,2017-18,Barnstable - West Villages Elementary School,00200045, 29.0, 96.6, 14.9 to 1, 86.2, 100.0 +NA,NA,a-exp-i3,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 24.0, 100.0, 12.8 to 1, 79.2, 100.0 +NA,NA,a-exp-i3,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 51.2, 64.5, 8.7 to 1, 25.4, 76.6 +NA,NA,a-exp-i3,2017-18,Bedford - Bedford High,00230505, 82.4, 97.5, 10.4 to 1, 86.4, 94.3 +NA,NA,a-exp-i3,2017-18,Bedford - John Glenn Middle,00230305, 56.0, 100.0, 10.4 to 1, 87.5, 89.3 +NA,NA,a-exp-i3,2017-18,Bedford - Lt Elezer Davis,00230010, 44.0, 100.0, 13.6 to 1, 93.2, 100.0 +NA,NA,a-exp-i3,2017-18,Bedford - Lt Job Lane School,00230012, 47.4, 100.0, 12.8 to 1, 74.7, 91.6 +NA,NA,a-exp-i3,2017-18,Belchertown - Belchertown High,00240505, 47.0, 100.0, 15.1 to 1, 95.4, 97.9 +NA,NA,a-exp-i3,2017-18,Belchertown - Chestnut Hill Community School,00240006, 37.2, 100.0, 14.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Belchertown - Cold Spring,00240005, 12.6, 100.0, 15.3 to 1, 84.1, 100.0 +NA,NA,a-exp-i3,2017-18,Belchertown - Jabish Middle School,00240025, 31.5, 100.0, 12.6 to 1, 87.1, 93.6 +NA,NA,a-exp-i3,2017-18,Belchertown - Swift River Elementary,00240018, 35.2, 100.0, 13.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 5.5, 100.0, 20.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham High School,00250505, 55.4, 100.0, 13.8 to 1, 90.9, 92.8 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham Memorial School,00250315, 51.8, 100.0, 13.9 to 1, 76.4, 90.6 +NA,NA,a-exp-i3,2017-18,Bellingham - Keough Memorial Academy,00250510, 7.8, 87.2, 4.3 to 1, 63.5, 87.2 +NA,NA,a-exp-i3,2017-18,Bellingham - South Elementary,00250020, 24.8, 100.0, 13.5 to 1, 84.1, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Stall Brook,00250025, 25.9, 100.0, 12.4 to 1, 84.6, 96.1 +NA,NA,a-exp-i3,2017-18,Belmont - Belmont High,00260505, 70.0, 100.0, 18.5 to 1, 82.2, 93.7 +NA,NA,a-exp-i3,2017-18,Belmont - Daniel Butler,00260015, 24.6, 100.0, 15.8 to 1, 91.9, 95.9 +NA,NA,a-exp-i3,2017-18,Belmont - Mary Lee Burbank,00260010, 21.9, 100.0, 17.1 to 1, 81.7, 100.0 +NA,NA,a-exp-i3,2017-18,Belmont - Roger E Wellington,00260035, 39.2, 100.0, 15.9 to 1, 81.9, 94.9 +NA,NA,a-exp-i3,2017-18,Belmont - Winn Brook,00260005, 28.9, 100.0, 17.0 to 1, 76.4, 93.1 +NA,NA,a-exp-i3,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 88.6, 100.0, 16.0 to 1, 84.3, 95.5 +NA,NA,a-exp-i3,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 18.0, 94.4, 19.7 to 1, 77.8, 95.1 +NA,NA,a-exp-i3,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 33.0, 81.8, 13.4 to 1, 81.8, 87.9 +NA,NA,a-exp-i3,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 24.4, 95.5, 12.1 to 1, 29.9, 71.3 +NA,NA,a-exp-i3,2017-18,Berkley - Berkley Community School,00270010, 33.8, 100.0, 15.7 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Berkley - Berkley Middle School,00270305, 24.0, 100.0, 16.3 to 1, 95.8, 87.5 +NA,NA,a-exp-i3,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 34.0, 63.7, 10.4 to 1, 49.7, 87.5 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 42.8, 100.0, 12.2 to 1, 89.5, 94.2 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 32.3, 100.0, 11.6 to 1, 84.7, 90.7 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 36.2, 100.0, 9.6 to 1, 80.5, 91.7 +NA,NA,a-exp-i3,2017-18,Berlin - Berlin Memorial,00280005, 18.0, 100.0, 10.2 to 1, 81.3, 93.5 +NA,NA,a-exp-i3,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 45.5, 99.1, 13.0 to 1, 92.9, 91.6 +NA,NA,a-exp-i3,2017-18,Beverly - Ayers/Ryal Side School,00300055, 32.9, 100.0, 15.2 to 1, 87.2, 97.0 +NA,NA,a-exp-i3,2017-18,Beverly - Beverly High,00300505, 90.6, 98.0, 13.7 to 1, 89.4, 89.4 +NA,NA,a-exp-i3,2017-18,Beverly - Briscoe Middle,00300305, 73.4, 100.0, 13.6 to 1, 91.1, 89.1 +NA,NA,a-exp-i3,2017-18,Beverly - Centerville Elementary,00300010, 27.3, 100.0, 13.3 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - Cove Elementary,00300015, 34.1, 100.0, 14.4 to 1, 77.4, 94.1 +NA,NA,a-exp-i3,2017-18,Beverly - Hannah Elementary,00300033, 28.6, 100.0, 13.7 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - McKeown School,00300002, 9.0, 100.0, 12.7 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - North Beverly Elementary,00300040, 29.8, 100.0, 13.4 to 1, 85.9, 96.6 +NA,NA,a-exp-i3,2017-18,Billerica - Billerica Memorial High School,00310505, 101.6, 98.0, 13.2 to 1, 86.8, 91.9 +NA,NA,a-exp-i3,2017-18,Billerica - Eugene C Vining,00310030, 17.7, 100.0, 11.0 to 1, 80.2, 87.0 +NA,NA,a-exp-i3,2017-18,Billerica - Frederick J Dutile,00310007, 22.7, 100.0, 12.0 to 1, 88.7, 100.0 +NA,NA,a-exp-i3,2017-18,Billerica - Hajjar Elementary,00310026, 32.3, 100.0, 14.3 to 1, 88.1, 90.6 +NA,NA,a-exp-i3,2017-18,Billerica - John F Kennedy,00310012, 22.7, 100.0, 13.8 to 1, 94.8, 96.7 +NA,NA,a-exp-i3,2017-18,Billerica - Locke Middle,00310310, 45.9, 100.0, 11.0 to 1, 90.7, 86.9 +NA,NA,a-exp-i3,2017-18,Billerica - Marshall Middle School,00310305, 56.1, 100.0, 11.6 to 1, 94.2, 91.1 +NA,NA,a-exp-i3,2017-18,Billerica - Parker,00310015, 36.6, 97.3, 13.7 to 1, 82.4, 96.1 +NA,NA,a-exp-i3,2017-18,Billerica - Thomas Ditson,00310005, 39.9, 100.0, 13.4 to 1, 86.2, 93.7 +NA,NA,a-exp-i3,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 98.4, 96.6, 12.4 to 1, 84.5, 77.3 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - A F Maloney,06220015, 20.6, 100.0, 14.5 to 1, 88.6, 97.1 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.0, 100.0, 10.7 to 1, 81.6, 84.2 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.1, 100.0, 12.9 to 1, 84.9, 97.0 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 22.6, 100.0, 13.1 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Millville Elementary,06220010, 20.0, 100.0, 14.3 to 1, 83.5, 100.0 +NA,NA,a-exp-i3,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 82.0, 95.1, 10.4 to 1, 80.5, 87.8 +NA,NA,a-exp-i3,2017-18,Boston - Another Course To College,00350541, 22.1, 83.5, 10.1 to 1, 70.6, 88.7 +NA,NA,a-exp-i3,2017-18,Boston - Baldwin Early Learning Center,00350003, 14.0, 100.0, 12.4 to 1, 92.9, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Beethoven,00350021, 22.4, 100.0, 14.5 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Blackstone,00350390, 47.9, 98.0, 12.0 to 1, 67.0, 93.7 +NA,NA,a-exp-i3,2017-18,Boston - Boston Adult Academy,00350548, 21.4, 84.1, 7.2 to 1, 69.8, 90.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Arts Academy,00350546, 47.8, 85.4, 9.8 to 1, 72.6, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Boston Collaborative High School,00350755, 7.0, 100.0, 26.0 to 1, 70.8, 85.1 +NA,NA,a-exp-i3,2017-18,Boston - Boston Community Leadership Academy,00350558, 38.6, 88.9, 12.3 to 1, 85.3, 94.8 +NA,NA,a-exp-i3,2017-18,Boston - Boston International High School,00350507, 49.5, 95.7, 7.4 to 1, 78.2, 90.8 +NA,NA,a-exp-i3,2017-18,Boston - Boston Latin,00350560, 117.2, 100.0, 20.9 to 1, 92.8, 91.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Latin Academy,00350545, 87.9, 96.7, 20.3 to 1, 89.4, 96.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Teachers Union School,00350012, 22.2, 93.4, 12.9 to 1, 93.2, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Brighton High,00350505, 57.2, 93.0, 11.9 to 1, 59.5, 75.3 +NA,NA,a-exp-i3,2017-18,Boston - Carter Developmental Center,00350036, .7, 0.0, 43.9 to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Charles H Taylor,00350054, 41.1, 98.4, 12.8 to 1, 74.3, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Charles Sumner,00350052, 38.5, 100.0, 15.1 to 1, 92.2, 94.7 +NA,NA,a-exp-i3,2017-18,Boston - Charlestown High,00350515, 88.6, 90.0, 10.4 to 1, 74.8, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Clarence R Edwards Middle,00350430, 32.9, 100.0, 9.3 to 1, 90.9, 93.8 +NA,NA,a-exp-i3,2017-18,Boston - Community Academy,00350518, 12.1, 87.6, 6.5 to 1, 73.5, 76.0 +NA,NA,a-exp-i3,2017-18,Boston - Community Academy of Science and Health,00350581, 37.4, 92.4, 10.4 to 1, 94.7, 89.7 +NA,NA,a-exp-i3,2017-18,Boston - Curley K-8 School,00350020, 80.0, 98.7, 11.8 to 1, 82.3, 93.6 +NA,NA,a-exp-i3,2017-18,Boston - Curtis Guild,00350062, 25.3, 91.7, 11.6 to 1, 76.2, 98.0 +NA,NA,a-exp-i3,2017-18,Boston - Dante Alighieri Montessori School,00350066, 9.8, 100.0, 9.4 to 1, 86.6, 81.3 +NA,NA,a-exp-i3,2017-18,Boston - David A Ellis,00350072, 33.0, 100.0, 13.8 to 1, 78.5, 81.8 +NA,NA,a-exp-i3,2017-18,Boston - Dearborn,00350074, 35.7, 95.0, 9.9 to 1, 60.8, 76.2 +NA,NA,a-exp-i3,2017-18,Boston - Dennis C Haley,00350077, 45.3, 100.0, 9.9 to 1, 88.9, 97.8 +NA,NA,a-exp-i3,2017-18,Boston - Donald Mckay,00350080, 52.4, 100.0, 14.8 to 1, 78.9, 96.2 +NA,NA,a-exp-i3,2017-18,Boston - Dorchester Academy,00350651, 7.5, 73.3, 5.6 to 1, 66.1, 73.2 +NA,NA,a-exp-i3,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 16.1, 100.0, 11.7 to 1, 81.4, 87.3 +NA,NA,a-exp-i3,2017-18,Boston - Dr. William Henderson Lower,00350266, 22.5, 82.1, 9.4 to 1, 51.1, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Dr. William Henderson Upper,00350426, 69.2, 94.3, 8.8 to 1, 68.1, 78.3 +NA,NA,a-exp-i3,2017-18,Boston - ELC - West Zone,00350006, 11.3, 100.0, 10.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - East Boston Early Childhood Center,00350009, 13.7, 92.7, 14.4 to 1, 87.9, 92.7 +NA,NA,a-exp-i3,2017-18,Boston - East Boston High,00350530, 99.9, 95.6, 13.4 to 1, 80.6, 85.1 +NA,NA,a-exp-i3,2017-18,Boston - Edison K-8,00350375, 54.3, 94.3, 11.7 to 1, 77.6, 96.1 +NA,NA,a-exp-i3,2017-18,Boston - Edward Everett,00350088, 19.5, 100.0, 13.9 to 1, 79.7, 95.1 +NA,NA,a-exp-i3,2017-18,Boston - Eliot Elementary,00350096, 43.5, 100.0, 14.6 to 1, 74.9, 88.6 +NA,NA,a-exp-i3,2017-18,Boston - Ellis Mendell,00350100, 18.6, 100.0, 14.3 to 1, 76.8, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Excel High School,00350522, 42.9, 95.6, 11.4 to 1, 61.1, 81.6 +NA,NA,a-exp-i3,2017-18,Boston - Fenway High School,00350540, 31.3, 88.5, 11.6 to 1, 82.7, 95.3 +NA,NA,a-exp-i3,2017-18,Boston - Franklin D Roosevelt,00350116, 34.2, 100.0, 13.3 to 1, 100.0, 97.1 +NA,NA,a-exp-i3,2017-18,Boston - Gardner Pilot Academy,00350326, 34.6, 97.4, 11.6 to 1, 84.7, 94.2 +NA,NA,a-exp-i3,2017-18,Boston - George H Conley,00350122, 18.5, 100.0, 11.5 to 1, 94.3, 96.8 +NA,NA,a-exp-i3,2017-18,Boston - Greater Egleston Community High School,00350543, 13.6, 89.0, 7.7 to 1, 66.2, 77.2 +NA,NA,a-exp-i3,2017-18,Boston - Harvard-Kent,00350200, 42.0, 98.8, 11.3 to 1, 89.3, 97.6 +NA,NA,a-exp-i3,2017-18,Boston - Haynes Early Education Center,00350010, 17.5, 77.9, 12.1 to 1, 60.6, 94.1 +NA,NA,a-exp-i3,2017-18,Boston - Henry Grew,00350135, 15.4, 100.0, 16.5 to 1, 77.6, 90.9 +NA,NA,a-exp-i3,2017-18,Boston - Higginson,00350015, 13.8, 92.6, 12.4 to 1, 72.8, 80.4 +NA,NA,a-exp-i3,2017-18,Boston - Higginson/Lewis K-8,00350377, 29.0, 96.5, 10.6 to 1, 75.9, 86.2 +NA,NA,a-exp-i3,2017-18,Boston - Horace Mann School for the Deaf,00350750, 35.0, 95.7, 2.4 to 1, 87.2, 97.2 +NA,NA,a-exp-i3,2017-18,Boston - Hugh Roe O'Donnell,00350141, 18.5, 100.0, 13.4 to 1, 89.1, 86.6 +NA,NA,a-exp-i3,2017-18,Boston - Jackson Mann,00350013, 57.2, 98.3, 11.5 to 1, 80.7, 91.5 +NA,NA,a-exp-i3,2017-18,Boston - James Condon Elementary,00350146, 61.0, 100.0, 14.8 to 1, 90.1, 93.3 +NA,NA,a-exp-i3,2017-18,Boston - James J Chittick,00350154, 24.1, 100.0, 12.7 to 1, 95.8, 87.5 +NA,NA,a-exp-i3,2017-18,Boston - James Otis,00350156, 29.5, 100.0, 13.7 to 1, 89.8, 93.2 +NA,NA,a-exp-i3,2017-18,Boston - James P Timilty Middle,00350485, 29.7, 93.3, 11.2 to 1, 79.9, 86.7 +NA,NA,a-exp-i3,2017-18,Boston - James W Hennigan,00350153, 47.5, 97.9, 12.2 to 1, 91.5, 97.9 +NA,NA,a-exp-i3,2017-18,Boston - Jeremiah E Burke High,00350525, 31.9, 88.4, 14.8 to 1, 69.7, 75.7 +NA,NA,a-exp-i3,2017-18,Boston - John D Philbrick,00350172, 9.7, 89.3, 16.7 to 1, 63.2, 89.5 +NA,NA,a-exp-i3,2017-18,Boston - John F Kennedy,00350166, 26.7, 100.0, 14.7 to 1, 73.9, 88.6 +NA,NA,a-exp-i3,2017-18,Boston - John W McCormack,00350179, 35.4, 95.3, 10.5 to 1, 81.1, 82.9 +NA,NA,a-exp-i3,2017-18,Boston - John Winthrop,00350180, 23.9, 100.0, 13.7 to 1, 89.3, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Joseph J Hurley,00350182, 24.0, 100.0, 15.0 to 1, 91.6, 87.5 +NA,NA,a-exp-i3,2017-18,Boston - Joseph Lee,00350183, 53.3, 98.8, 12.4 to 1, 84.1, 93.9 +NA,NA,a-exp-i3,2017-18,Boston - Joseph P Manning,00350184, 12.9, 95.3, 11.8 to 1, 87.2, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Joseph P Tynan,00350181, 25.1, 100.0, 9.3 to 1, 84.1, 83.8 +NA,NA,a-exp-i3,2017-18,Boston - Josiah Quincy,00350286, 59.0, 96.6, 14.1 to 1, 78.0, 98.3 +NA,NA,a-exp-i3,2017-18,Boston - Joyce Kilmer,00350190, 29.9, 100.0, 15.6 to 1, 96.7, 96.7 +NA,NA,a-exp-i3,2017-18,Boston - King K-8,00350376, 35.6, 94.4, 13.7 to 1, 83.2, 80.5 +NA,NA,a-exp-i3,2017-18,Boston - Lee Academy,00350001, 17.9, 97.2, 12.5 to 1, 70.5, 89.0 +NA,NA,a-exp-i3,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 48.0, 95.9, 10.3 to 1, 70.8, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Lyndon,00350262, 40.1, 98.8, 14.5 to 1, 85.0, 95.0 +NA,NA,a-exp-i3,2017-18,Boston - Lyon K-8,00350004, 18.9, 100.0, 6.9 to 1, 79.9, 89.1 +NA,NA,a-exp-i3,2017-18,Boston - Lyon Upper 9-12,00350655, 17.3, 91.3, 7.2 to 1, 62.2, 79.4 +NA,NA,a-exp-i3,2017-18,Boston - Madison Park High,00350537, 100.3, 90.9, 8.6 to 1, 59.4, 72.4 +NA,NA,a-exp-i3,2017-18,Boston - Manassah E Bradley,00350215, 21.8, 95.6, 13.5 to 1, 85.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Margarita Muniz Academy,00350549, 27.9, 92.9, 10.7 to 1, 71.4, 78.5 +NA,NA,a-exp-i3,2017-18,Boston - Mario Umana Academy,00350656, 74.4, 97.7, 13.5 to 1, 77.7, 89.9 +NA,NA,a-exp-i3,2017-18,Boston - Mather,00350227, 40.8, 97.7, 14.9 to 1, 89.9, 89.7 +NA,NA,a-exp-i3,2017-18,Boston - Mattapan Early Elementary School,00350016, 24.6, 96.0, 11.8 to 1, 48.3, 75.7 +NA,NA,a-exp-i3,2017-18,Boston - Maurice J Tobin,00350229, 33.3, 91.3, 12.9 to 1, 70.4, 73.5 +NA,NA,a-exp-i3,2017-18,Boston - Michael J Perkins,00350231, 15.1, 100.0, 14.4 to 1, 93.3, 79.8 +NA,NA,a-exp-i3,2017-18,Boston - Mildred Avenue K-8,00350378, 42.9, 100.0, 12.8 to 1, 83.7, 81.5 +NA,NA,a-exp-i3,2017-18,Boston - Mission Hill School,00350382, 18.5, 100.0, 13.1 to 1, 78.4, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Mozart,00350237, 16.0, 93.8, 11.2 to 1, 81.2, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Nathan Hale,00350243, 10.3, 100.0, 15.4 to 1, 90.3, 98.2 +NA,NA,a-exp-i3,2017-18,Boston - New Mission High School,00350542, 33.4, 90.5, 11.7 to 1, 72.9, 97.3 +NA,NA,a-exp-i3,2017-18,Boston - O W Holmes,00350138, 27.5, 92.7, 12.6 to 1, 51.0, 84.2 +NA,NA,a-exp-i3,2017-18,Boston - O'Bryant School Math/Science,00350575, 96.1, 93.0, 16.3 to 1, 78.4, 88.3 +NA,NA,a-exp-i3,2017-18,Boston - Oliver Hazard Perry,00350255, 21.1, 100.0, 10.4 to 1, 95.2, 85.7 +NA,NA,a-exp-i3,2017-18,Boston - Orchard Gardens,00350257, 68.2, 91.2, 13.3 to 1, 80.1, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Patrick J Kennedy,00350264, 22.3, 100.0, 13.7 to 1, 80.5, 86.6 +NA,NA,a-exp-i3,2017-18,Boston - Paul A Dever,00350268, 34.3, 76.6, 10.4 to 1, 32.3, 73.4 +NA,NA,a-exp-i3,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 17.9, 88.8, 14.3 to 1, 55.5, 77.8 +NA,NA,a-exp-i3,2017-18,Boston - Phineas Bates,00350278, 22.7, 100.0, 11.5 to 1, 90.6, 96.5 +NA,NA,a-exp-i3,2017-18,Boston - Quincy Upper School,00350565, 45.9, 86.6, 11.1 to 1, 75.6, 82.6 +NA,NA,a-exp-i3,2017-18,Boston - Rafael Hernandez,00350691, 24.5, 95.9, 15.9 to 1, 79.7, 91.8 +NA,NA,a-exp-i3,2017-18,Boston - Richard J Murphy,00350240, 60.9, 100.0, 15.5 to 1, 93.6, 96.7 +NA,NA,a-exp-i3,2017-18,Boston - Roger Clap,00350298, 12.1, 100.0, 13.0 to 1, 91.4, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Samuel Adams,00350302, 24.4, 100.0, 11.9 to 1, 81.9, 87.6 +NA,NA,a-exp-i3,2017-18,Boston - Samuel W Mason,00350304, 18.0, 94.7, 13.5 to 1, 72.4, 77.8 +NA,NA,a-exp-i3,2017-18,Boston - Sarah Greenwood,00350308, 30.2, 79.9, 13.3 to 1, 70.0, 86.5 +NA,NA,a-exp-i3,2017-18,Boston - Snowden International School at Copley,00350690, 35.1, 94.7, 12.7 to 1, 94.6, 88.3 +NA,NA,a-exp-i3,2017-18,Boston - TechBoston Academy,00350657, 93.6, 93.3, 9.8 to 1, 79.6, 93.6 +NA,NA,a-exp-i3,2017-18,Boston - The English High,00350535, 49.9, 83.3, 10.8 to 1, 65.9, 85.9 +NA,NA,a-exp-i3,2017-18,Boston - Thomas J Kenny,00350328, 27.0, 100.0, 12.0 to 1, 96.3, 96.0 +NA,NA,a-exp-i3,2017-18,Boston - UP Academy Holland,00350167, 48.0, 83.4, 15.9 to 1, 35.4, 74.9 +NA,NA,a-exp-i3,2017-18,Boston - Urban Science Academy,00350579, 40.1, 85.4, 9.8 to 1, 89.7, 94.6 +NA,NA,a-exp-i3,2017-18,Boston - Warren-Prescott,00350346, 37.8, 100.0, 15.9 to 1, 94.7, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Washington Irving Middle,00350445, 30.9, 95.1, 10.4 to 1, 80.7, 88.7 +NA,NA,a-exp-i3,2017-18,Boston - West Roxbury Academy,00350658, 39.3, 95.1, 12.1 to 1, 86.3, 97.4 +NA,NA,a-exp-i3,2017-18,Boston - William E Russell,00350366, 28.5, 94.7, 14.3 to 1, 73.5, 89.5 +NA,NA,a-exp-i3,2017-18,Boston - William Ellery Channing,00350360, 17.0, 100.0, 12.7 to 1, 88.1, 94.1 +NA,NA,a-exp-i3,2017-18,Boston - William H Ohrenberger,00350258, 48.1, 95.9, 13.5 to 1, 93.9, 97.6 +NA,NA,a-exp-i3,2017-18,Boston - William McKinley,00350363, 51.2, 98.1, 6.9 to 1, 91.3, 92.1 +NA,NA,a-exp-i3,2017-18,Boston - William Monroe Trotter,00350370, 34.5, 100.0, 15.2 to 1, 91.4, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Winship Elementary,00350374, 21.6, 100.0, 10.2 to 1, 90.9, 90.7 +NA,NA,a-exp-i3,2017-18,Boston - Young Achievers,00350380, 40.1, 87.5, 14.1 to 1, 69.9, 87.7 +NA,NA,a-exp-i3,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 63.5, 80.3, 11.0 to 1, 50.4, 66.3 +NA,NA,a-exp-i3,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.1, 95.4, 17.5 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 40.6, 88.9, 11.6 to 1, 66.5, 90.4 +NA,NA,a-exp-i3,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 44.1, 77.3, 10.5 to 1, 29.7, 87.1 +NA,NA,a-exp-i3,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.0, 80.5, 11.4 to 1, 56.1, 92.7 +NA,NA,a-exp-i3,2017-18,Bourne - Bourne High School,00360505, 37.6, 97.3, 12.8 to 1, 89.7, 92.0 +NA,NA,a-exp-i3,2017-18,Bourne - Bourne Middle School,00360325, 57.6, 91.3, 11.9 to 1, 77.4, 89.6 +NA,NA,a-exp-i3,2017-18,Bourne - Bournedale Elementary School,00360005, 27.9, 100.0, 16.1 to 1, 89.3, 93.3 +NA,NA,a-exp-i3,2017-18,Bourne - Peebles Elementary School,00360010, 25.0, 100.0, 13.6 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boxford - Harry Lee Cole,00380005, 26.3, 100.0, 12.6 to 1, 93.9, 96.2 +NA,NA,a-exp-i3,2017-18,Boxford - Spofford Pond,00380013, 31.6, 100.0, 12.3 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Boylston - Boylston Elementary,00390005, 19.6, 100.0, 15.3 to 1, 76.4, 94.7 +NA,NA,a-exp-i3,2017-18,Braintree - Archie T Morrison,00400033, 35.9, 100.0, 11.7 to 1, 87.2, 92.0 +NA,NA,a-exp-i3,2017-18,Braintree - Braintree High,00400505, 116.2, 98.3, 15.5 to 1, 77.0, 89.9 +NA,NA,a-exp-i3,2017-18,Braintree - Donald Ross,00400050, 26.1, 100.0, 10.9 to 1, 84.7, 100.0 +NA,NA,a-exp-i3,2017-18,Braintree - East Middle School,00400305, 59.0, 100.0, 12.1 to 1, 88.1, 97.3 +NA,NA,a-exp-i3,2017-18,Braintree - Highlands,00400015, 30.9, 100.0, 13.7 to 1, 85.7, 98.6 +NA,NA,a-exp-i3,2017-18,Braintree - Hollis,00400005, 33.5, 100.0, 12.9 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Braintree - Liberty,00400025, 29.2, 100.0, 15.8 to 1, 84.2, 96.6 +NA,NA,a-exp-i3,2017-18,Braintree - Mary E Flaherty School,00400020, 28.3, 100.0, 13.3 to 1, 85.9, 96.5 +NA,NA,a-exp-i3,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 16.2, 100.0, 15.5 to 1, 87.6, 87.6 +NA,NA,a-exp-i3,2017-18,Braintree - South Middle School,00400310, 48.4, 100.0, 13.8 to 1, 82.7, 93.8 +NA,NA,a-exp-i3,2017-18,Brewster - Eddy Elementary,00410010, 22.6, 100.0, 10.7 to 1, 82.5, 87.8 +NA,NA,a-exp-i3,2017-18,Brewster - Stony Brook Elementary,00410005, 20.7, 100.0, 11.3 to 1, 84.5, 95.2 +NA,NA,a-exp-i3,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 29.0, 75.4, 10.6 to 1, 41.0, 96.6 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.3, 100.0, 15.8 to 1, 90.7, 92.6 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 86.9, 100.0, 16.8 to 1, 94.5, 94.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.4, 100.0, 18.6 to 1, 84.4, 100.0 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 18.2, 100.0, 17.1 to 1, 94.5, 97.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.3, 98.4, 16.9 to 1, 92.6, 97.3 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 47.1, 100.0, 14.1 to 1, 87.3, 91.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.9, 100.0, 5.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 15.8 to 1, 90.9, 98.0 +NA,NA,a-exp-i3,2017-18,Brimfield - Brimfield Elementary,00430005, 26.3, 100.0, 10.9 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 35.6, 100.0, 12.8 to 1, 91.6, 80.3 +NA,NA,a-exp-i3,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 95.5, 100.0, 13.4 to 1, 92.1, 90.1 +NA,NA,a-exp-i3,2017-18,Brockton - Ashfield Middle School,00440421, 37.6, 99.7, 13.4 to 1, 94.5, 94.7 +NA,NA,a-exp-i3,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 14.4, 99.3, 16.5 to 1, 99.5, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Brockton Champion High School,00440515, 16.8, 99.4, 10.4 to 1, 85.3, 97.6 +NA,NA,a-exp-i3,2017-18,Brockton - Brockton High,00440505, 243.2, 98.7, 17.0 to 1, 89.7, 92.6 +NA,NA,a-exp-i3,2017-18,Brockton - Brookfield,00440010, 36.3, 99.7, 17.8 to 1, 100.0, 98.9 +NA,NA,a-exp-i3,2017-18,Brockton - Downey,00440110, 38.7, 99.7, 16.3 to 1, 98.5, 96.1 +NA,NA,a-exp-i3,2017-18,Brockton - Dr W Arnone Community School,00440001, 44.3, 99.8, 16.6 to 1, 95.3, 92.8 +NA,NA,a-exp-i3,2017-18,Brockton - East Middle School,00440405, 38.3, 100.0, 12.5 to 1, 99.3, 92.7 +NA,NA,a-exp-i3,2017-18,Brockton - Edgar B Davis,00440023, 55.3, 98.2, 18.5 to 1, 97.3, 98.2 +NA,NA,a-exp-i3,2017-18,Brockton - Edison Academy,00440520, 7.5, 93.4, 26.0 to 1, 89.2, 97.3 +NA,NA,a-exp-i3,2017-18,Brockton - Frederick Douglass Academy,00440080, 5.3, 100.0, 6.4 to 1, 95.3, 57.7 +NA,NA,a-exp-i3,2017-18,Brockton - Gilmore Elementary School,00440055, 29.2, 100.0, 19.1 to 1, 96.6, 98.6 +NA,NA,a-exp-i3,2017-18,Brockton - Hancock,00440045, 32.9, 100.0, 20.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 12.7, 89.7, 4.6 to 1, 76.9, 80.9 +NA,NA,a-exp-i3,2017-18,Brockton - John F Kennedy,00440017, 31.5, 100.0, 18.6 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 41.4, 99.8, 16.6 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Louis F Angelo Elementary,00440065, 46.4, 100.0, 19.7 to 1, 92.6, 99.2 +NA,NA,a-exp-i3,2017-18,Brockton - Manthala George Jr. School,00440003, 50.0, 99.8, 18.4 to 1, 95.9, 98.0 +NA,NA,a-exp-i3,2017-18,Brockton - Mary E. Baker School,00440002, 42.1, 100.0, 19.3 to 1, 95.1, 96.5 +NA,NA,a-exp-i3,2017-18,Brockton - North Middle School,00440410, 40.1, 100.0, 15.7 to 1, 97.3, 97.5 +NA,NA,a-exp-i3,2017-18,Brockton - Oscar F Raymond,00440078, 41.7, 100.0, 21.9 to 1, 95.0, 97.6 +NA,NA,a-exp-i3,2017-18,Brockton - South Middle School,00440415, 36.7, 100.0, 13.3 to 1, 91.6, 94.6 +NA,NA,a-exp-i3,2017-18,Brockton - West Middle School,00440420, 43.1, 99.8, 14.8 to 1, 95.4, 97.7 +NA,NA,a-exp-i3,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 139.4, 71.1, 12.5 to 1, 46.1, 79.2 +NA,NA,a-exp-i3,2017-18,Brookfield - Brookfield Elementary,00450005, 23.8, 100.0, 13.1 to 1, 91.6, 95.8 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 3.0, 100.0, 19.7 to 1, 54.3, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 7.2, 100.0, 8.4 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline High,00460505, 181.2, 98.9, 11.5 to 1, 87.1, 93.2 +NA,NA,a-exp-i3,2017-18,Brookline - Edith C Baker,00460005, 59.2, 99.6, 12.9 to 1, 79.9, 96.9 +NA,NA,a-exp-i3,2017-18,Brookline - Edward Devotion,00460015, 71.4, 99.7, 11.2 to 1, 82.0, 92.5 +NA,NA,a-exp-i3,2017-18,Brookline - Heath,00460025, 41.7, 100.0, 13.5 to 1, 89.8, 95.7 +NA,NA,a-exp-i3,2017-18,Brookline - John D Runkle,00460045, 48.0, 100.0, 13.1 to 1, 84.7, 97.9 +NA,NA,a-exp-i3,2017-18,Brookline - Lawrence,00460030, 54.6, 98.2, 13.2 to 1, 85.1, 96.8 +NA,NA,a-exp-i3,2017-18,Brookline - Michael Driscoll,00460020, 44.1, 95.8, 14.2 to 1, 65.7, 91.5 +NA,NA,a-exp-i3,2017-18,Brookline - Pierce,00460040, 60.9, 99.0, 14.1 to 1, 79.1, 91.6 +NA,NA,a-exp-i3,2017-18,Brookline - The Lynch Center,00460060, 5.2, 100.0, 11.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - William H Lincoln,00460035, 49.5, 100.0, 11.7 to 1, 85.4, 93.9 +NA,NA,a-exp-i3,2017-18,Burlington - Burlington High,00480505, 94.6, 99.4, 11.2 to 1, 87.3, 94.7 +NA,NA,a-exp-i3,2017-18,Burlington - Fox Hill,00480007, 36.9, 100.0, 10.8 to 1, 74.9, 93.9 +NA,NA,a-exp-i3,2017-18,Burlington - Francis Wyman Elementary,00480035, 50.8, 100.0, 10.6 to 1, 85.3, 95.2 +NA,NA,a-exp-i3,2017-18,Burlington - Marshall Simonds Middle,00480303, 73.1, 100.0, 11.0 to 1, 90.7, 94.8 +NA,NA,a-exp-i3,2017-18,Burlington - Memorial,00480015, 36.7, 100.0, 11.1 to 1, 91.1, 96.6 +NA,NA,a-exp-i3,2017-18,Burlington - Pine Glen Elementary,00480020, 30.2, 100.0, 10.3 to 1, 87.6, 99.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Amigos School,00490006, 35.1, 97.2, 11.3 to 1, 69.5, 76.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 190.2, 97.5, 10.3 to 1, 81.6, 84.5 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridge Street Upper School,00490305, 33.8, 100.0, 7.3 to 1, 80.0, 91.1 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridgeport,00490007, 25.0, 100.0, 13.7 to 1, 82.5, 87.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 30.0, 100.0, 9.9 to 1, 89.9, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Graham and Parks,00490080, 31.5, 96.8, 11.5 to 1, 81.0, 93.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Haggerty,00490020, 24.9, 100.0, 10.3 to 1, 92.9, 100.0 +NA,NA,a-exp-i3,2017-18,Cambridge - John M Tobin,00490065, 21.8, 100.0, 13.5 to 1, 87.1, 100.0 +NA,NA,a-exp-i3,2017-18,Cambridge - Kennedy-Longfellow,00490040, 27.7, 100.0, 10.6 to 1, 89.2, 92.8 +NA,NA,a-exp-i3,2017-18,Cambridge - King Open,00490035, 34.9, 97.1, 9.4 to 1, 77.0, 94.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Maria L. Baldwin,00490005, 30.6, 100.0, 11.9 to 1, 80.4, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Martin Luther King Jr.,00490030, 29.5, 100.0, 11.1 to 1, 86.4, 79.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Morse,00490045, 32.5, 100.0, 9.4 to 1, 95.4, 93.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Peabody,00490050, 26.3, 100.0, 12.3 to 1, 91.3, 96.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 33.1, 97.0, 7.9 to 1, 78.8, 80.1 +NA,NA,a-exp-i3,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 30.2, 100.0, 8.9 to 1, 75.1, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Vassal Lane Upper School,00490320, 33.7, 100.0, 8.3 to 1, 73.3, 91.1 +NA,NA,a-exp-i3,2017-18,Canton - Canton High,00500505, 69.8, 100.0, 14.1 to 1, 78.2, 88.2 +NA,NA,a-exp-i3,2017-18,Canton - Dean S Luce,00500020, 36.1, 100.0, 13.8 to 1, 82.8, 99.5 +NA,NA,a-exp-i3,2017-18,Canton - John F Kennedy,00500017, 38.5, 100.0, 13.8 to 1, 86.6, 94.4 +NA,NA,a-exp-i3,2017-18,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 12.8 to 1, 89.1, 99.9 +NA,NA,a-exp-i3,2017-18,Canton - Rodman Early Childhood Center,00500010, 5.0, 100.0, 17.6 to 1, 80.0, 100.0 +NA,NA,a-exp-i3,2017-18,Canton - Wm H Galvin Middle,00500305, 60.4, 100.0, 12.2 to 1, 87.5, 92.7 +NA,NA,a-exp-i3,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 22.0, 82.2, 11.0 to 1, 91.1, 78.2 +NA,NA,a-exp-i3,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 65.8, 87.9, 9.0 to 1, 74.4, 80.7 +NA,NA,a-exp-i3,2017-18,Carlisle - Carlisle School,00510025, 56.8, 100.0, 10.7 to 1, 93.0, 100.0 +NA,NA,a-exp-i3,2017-18,Carver - Carver Elementary School,00520015, 50.6, 100.0, 15.5 to 1, 80.2, 98.0 +NA,NA,a-exp-i3,2017-18,Carver - Carver Middle/High School,00520405, 67.3, 98.5, 11.8 to 1, 83.7, 91.1 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Becket Washington School,06350005, 10.1, 100.0, 12.4 to 1, 100.0, 96.0 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Craneville,06350025, 28.0, 100.0, 14.7 to 1, 96.4, 99.3 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Kittredge,06350035, 12.5, 100.0, 12.0 to 1, 100.0, 88.8 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 30.0, 100.0, 12.7 to 1, 99.0, 96.7 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Wahconah Regional High,06350505, 44.3, 100.0, 12.1 to 1, 97.7, 100.0 +NA,NA,a-exp-i3,2017-18,Chelmsford - Byam School,00560030, 38.0, 100.0, 13.3 to 1, 84.2, 97.4 +NA,NA,a-exp-i3,2017-18,Chelmsford - Center Elementary School,00560005, 31.0, 100.0, 14.5 to 1, 80.6, 96.8 +NA,NA,a-exp-i3,2017-18,Chelmsford - Charles D Harrington,00560025, 31.0, 100.0, 15.9 to 1, 93.5, 100.0 +NA,NA,a-exp-i3,2017-18,Chelmsford - Chelmsford High,00560505, 109.5, 100.0, 13.5 to 1, 89.9, 97.3 +NA,NA,a-exp-i3,2017-18,Chelmsford - Col Moses Parker School,00560305, 62.3, 100.0, 11.5 to 1, 84.8, 93.6 +NA,NA,a-exp-i3,2017-18,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 18.9 to 1, 100.0, 85.7 +NA,NA,a-exp-i3,2017-18,Chelmsford - McCarthy Middle School,00560310, 67.8, 100.0, 12.0 to 1, 85.3, 91.2 +NA,NA,a-exp-i3,2017-18,Chelmsford - South Row,00560015, 26.0, 100.0, 15.4 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Chelsea High,00570505, 112.8, 99.3, 13.6 to 1, 53.2, 71.6 +NA,NA,a-exp-i3,2017-18,Chelsea - Clark Avenue School,00570050, 32.0, 96.9, 17.3 to 1, 65.6, 75.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 37.5, 100.0, 15.7 to 1, 76.0, 89.3 +NA,NA,a-exp-i3,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.3, 100.0, 16.5 to 1, 72.2, 84.5 +NA,NA,a-exp-i3,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 38.0, 94.7, 14.9 to 1, 63.2, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - George F. Kelly Elementary,00570035, 37.5, 100.0, 14.6 to 1, 76.0, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Joseph A. Browne School,00570055, 40.7, 100.0, 15.1 to 1, 43.4, 70.5 +NA,NA,a-exp-i3,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 51.0, 98.0, 17.0 to 1, 84.3, 94.1 +NA,NA,a-exp-i3,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 32.0, 96.9, 15.9 to 1, 62.5, 90.6 +NA,NA,a-exp-i3,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.9, 100.0, 9.1 to 1, 93.3, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Barry,00610003, 28.0, 100.0, 14.3 to 1, 89.3, 92.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Belcher,00610010, 19.9, 100.0, 13.6 to 1, 97.5, 95.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Bellamy Middle,00610305, 77.7, 98.7, 10.3 to 1, 87.1, 89.7 +NA,NA,a-exp-i3,2017-18,Chicopee - Bowe,00610015, 32.1, 100.0, 14.9 to 1, 87.5, 96.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Bowie,00610020, 23.6, 100.0, 14.1 to 1, 98.6, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee Academy,00610021, 16.6, 100.0, 4.9 to 1, 94.0, 81.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 114.8, 99.1, 11.9 to 1, 92.1, 89.5 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee High,00610505, 87.5, 97.7, 10.9 to 1, 90.3, 94.3 +NA,NA,a-exp-i3,2017-18,Chicopee - Dupont Middle,00610310, 60.5, 96.7, 12.4 to 1, 88.4, 85.1 +NA,NA,a-exp-i3,2017-18,Chicopee - Fairview Elementary,00610050, 33.7, 100.0, 13.7 to 1, 84.8, 94.1 +NA,NA,a-exp-i3,2017-18,Chicopee - Gen John J Stefanik,00610090, 28.9, 100.0, 13.9 to 1, 88.1, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Lambert-Lavoie,00610040, 24.0, 100.0, 13.2 to 1, 81.4, 95.8 +NA,NA,a-exp-i3,2017-18,Chicopee - Litwin,00610022, 29.0, 100.0, 14.4 to 1, 75.9, 96.6 +NA,NA,a-exp-i3,2017-18,Chicopee - Streiber Memorial School,00610065, 18.0, 100.0, 15.5 to 1, 96.0, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 17.2 to 1, 85.7, 92.9 +NA,NA,a-exp-i3,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 41.0, 71.3, 9.6 to 1, 79.3, 88.4 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 26.7, 64.8, 10.6 to 1, 25.1, 77.5 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 24.7, 72.1, 11.0 to 1, 18.6, 70.0 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 16.0, 80.0, 14.8 to 1, 16.3, 67.5 +NA,NA,a-exp-i3,2017-18,Clarksburg - Clarksburg Elementary,00630010, 15.5, 97.4, 12.5 to 1, 98.4, 100.0 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Elementary,00640050, 53.7, 100.0, 12.7 to 1, 88.8, 92.6 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Middle School,00640305, 57.2, 98.3, 13.0 to 1, 62.9, 98.3 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Senior High,00640505, 40.4, 100.0, 11.3 to 1, 83.1, 87.6 +NA,NA,a-exp-i3,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 37.0, 39.8, 9.3 to 1, 24.3, 85.9 +NA,NA,a-exp-i3,2017-18,Cohasset - Cohasset Middle/High School,00650505, 71.7, 100.0, 11.8 to 1, 82.3, 94.4 +NA,NA,a-exp-i3,2017-18,Cohasset - Deer Hill,00650005, 22.2, 100.0, 17.6 to 1, 91.0, 100.0 +NA,NA,a-exp-i3,2017-18,Cohasset - Joseph Osgood,00650010, 18.6, 100.0, 18.6 to 1, 78.5, 100.0 +NA,NA,a-exp-i3,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 40.0, 87.5, 19.0 to 1, 32.5, 80.0 +NA,NA,a-exp-i3,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 35.4, 80.3, 10.3 to 1, 48.6, 81.7 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 33.0, 62.1, 9.7 to 1, 40.9, 97.0 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.3, 77.9, 8.8 to 1, 38.2, 85.9 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 33.5, 89.6, 9.6 to 1, 29.9, 91.0 +NA,NA,a-exp-i3,2017-18,Concord - Alcott,00670005, 38.8, 100.0, 12.6 to 1, 86.6, 100.0 +NA,NA,a-exp-i3,2017-18,Concord - Concord Middle,00670305, 55.7, 100.0, 13.0 to 1, 94.8, 89.2 +NA,NA,a-exp-i3,2017-18,Concord - Thoreau,00670020, 37.9, 100.0, 12.1 to 1, 80.5, 100.0 +NA,NA,a-exp-i3,2017-18,Concord - Willard,00670030, 36.9, 100.0, 11.9 to 1, 85.4, 100.0 +NA,NA,a-exp-i3,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 102.6, 100.0, 12.4 to 1, 92.6, 93.2 +NA,NA,a-exp-i3,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 25.3, 81.2, 17.8 to 1, 15.8, 84.2 +NA,NA,a-exp-i3,2017-18,Conway - Conway Grammar,00680005, 13.4, 100.0, 10.3 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Danvers - Danvers High,00710505, 77.4, 98.7, 12.2 to 1, 85.3, 89.8 +NA,NA,a-exp-i3,2017-18,Danvers - Great Oak,00710015, 25.5, 100.0, 14.9 to 1, 88.2, 100.0 +NA,NA,a-exp-i3,2017-18,Danvers - Highlands,00710010, 27.0, 100.0, 13.8 to 1, 92.6, 90.7 +NA,NA,a-exp-i3,2017-18,Danvers - Holten Richmond Middle School,00710305, 65.3, 98.5, 12.6 to 1, 86.2, 89.3 +NA,NA,a-exp-i3,2017-18,Danvers - Ivan G Smith,00710032, 18.0, 100.0, 15.7 to 1, 94.5, 97.2 +NA,NA,a-exp-i3,2017-18,Danvers - Riverside,00710030, 27.0, 100.0, 13.1 to 1, 88.9, 96.3 +NA,NA,a-exp-i3,2017-18,Danvers - Willis E Thorpe,00710045, 24.8, 100.0, 12.5 to 1, 83.9, 100.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 10.7, 100.0, 13.1 to 1, 100.0, 81.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - Dartmouth High,00720505, 79.2, 98.3, 13.5 to 1, 93.2, 96.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - Dartmouth Middle,00720050, 78.0, 98.8, 12.4 to 1, 86.6, 96.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - George H Potter,00720030, 26.4, 100.0, 16.3 to 1, 96.2, 98.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - James M. Quinn School,00720040, 45.5, 100.0, 13.9 to 1, 91.2, 100.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - Joseph Demello,00720015, 28.6, 100.0, 15.1 to 1, 82.5, 98.5 +NA,NA,a-exp-i3,2017-18,Dedham - Avery,00730010, 28.5, 100.0, 11.2 to 1, 86.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Dedham High,00730505, 65.0, 100.0, 11.3 to 1, 86.2, 92.3 +NA,NA,a-exp-i3,2017-18,Dedham - Dedham Middle School,00730305, 69.0, 95.7, 8.7 to 1, 82.6, 98.6 +NA,NA,a-exp-i3,2017-18,Dedham - Early Childhood Center,00730005, 18.5, 100.0, 14.6 to 1, 94.6, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Greenlodge,00730025, 21.8, 100.0, 12.2 to 1, 90.8, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Oakdale,00730030, 21.7, 100.0, 13.2 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Riverdale,00730045, 19.2, 100.0, 9.3 to 1, 89.6, 94.8 +NA,NA,a-exp-i3,2017-18,Deerfield - Deerfield Elementary,00740015, 37.4, 97.3, 10.7 to 1, 85.5, 92.5 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.7, 98.8, 12.1 to 1, 84.1, 89.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 43.1, 100.0, 8.1 to 1, 93.0, 97.7 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 29.0, 100.0, 9.4 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 44.3, 100.0, 10.1 to 1, 91.0, 86.4 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 49.0, 100.0, 11.0 to 1, 93.9, 98.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 35.7, 100.0, 11.7 to 1, 94.4, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 33.1, 100.0, 14.0 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 29.2, 100.0, 13.4 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 78.7, 100.0, 11.6 to 1, 87.3, 90.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 44.2, 100.0, 13.2 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Palmer River,06500010, 41.3, 100.0, 13.4 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Elementary School,00770015, 23.5, 100.0, 16.0 to 1, 76.5, 100.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas High School,00770505, 34.3, 97.7, 11.1 to 1, 81.9, 81.9 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Middle School,00770305, 21.4, 100.0, 16.2 to 1, 79.3, 93.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Primary School,00770005, 13.1, 100.0, 17.1 to 1, 80.5, 100.0 +NA,NA,a-exp-i3,2017-18,Dover - Chickering,00780005, 41.8, 100.0, 11.8 to 1, 85.6, 97.6 +NA,NA,a-exp-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.8, 100.0, 11.5 to 1, 89.8, 95.8 +NA,NA,a-exp-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 48.7, 100.0, 10.8 to 1, 97.1, 99.1 +NA,NA,a-exp-i3,2017-18,Dracut - Brookside Elementary,00790035, 22.1, 100.0, 20.7 to 1, 81.9, 92.3 +NA,NA,a-exp-i3,2017-18,Dracut - Dracut Senior High,00790505, 61.0, 95.1, 13.7 to 1, 78.0, 86.9 +NA,NA,a-exp-i3,2017-18,Dracut - George H. Englesby Elementary School,00790045, 27.0, 100.0, 19.1 to 1, 63.0, 92.6 +NA,NA,a-exp-i3,2017-18,Dracut - Greenmont Avenue,00790030, 17.3, 100.0, 17.0 to 1, 88.4, 98.3 +NA,NA,a-exp-i3,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 27.1, 100.0, 21.1 to 1, 92.6, 96.3 +NA,NA,a-exp-i3,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 55.1, 100.0, 15.9 to 1, 76.0, 81.1 +NA,NA,a-exp-i3,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.0, 100.0, 14.9 to 1, 73.7, 89.5 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.5, 100.0, 14.1 to 1, 89.8, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 50.0, 100.0, 13.8 to 1, 98.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 28.0, 100.0, 14.0 to 1, 83.9, 96.4 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 46.1, 100.0, 12.5 to 1, 93.3, 95.7 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 31.0, 100.0, 15.5 to 1, 90.3, 96.8 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 17.5, 100.0, 15.8 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 73.0, 100.0, 16.0 to 1, 87.7, 89.0 +NA,NA,a-exp-i3,2017-18,Duxbury - Alden School,00820004, 47.1, 97.9, 14.3 to 1, 85.2, 93.6 +NA,NA,a-exp-i3,2017-18,Duxbury - Chandler Elementary,00820006, 46.4, 100.0, 13.5 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Duxbury - Duxbury High,00820505, 80.0, 99.6, 13.2 to 1, 94.2, 96.3 +NA,NA,a-exp-i3,2017-18,Duxbury - Duxbury Middle,00820305, 55.3, 97.0, 13.4 to 1, 83.2, 90.6 +NA,NA,a-exp-i3,2017-18,East Bridgewater - Central,00830005, 39.3, 100.0, 15.3 to 1, 76.3, 97.5 +NA,NA,a-exp-i3,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 71.3, 98.6, 14.5 to 1, 81.3, 87.4 +NA,NA,a-exp-i3,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 43.0, 100.0, 15.4 to 1, 74.4, 93.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Birchland Park,00870305, 53.5, 100.0, 12.4 to 1, 94.4, 96.3 +NA,NA,a-exp-i3,2017-18,East Longmeadow - East Longmeadow High,00870505, 62.5, 100.0, 13.4 to 1, 93.6, 98.4 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Mapleshade,00870010, 23.9, 100.0, 11.8 to 1, 97.9, 100.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Meadow Brook,00870013, 41.8, 100.0, 13.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Mountain View,00870015, 24.4, 100.0, 12.0 to 1, 93.9, 100.0 +NA,NA,a-exp-i3,2017-18,Eastham - Eastham Elementary,00850005, 23.3, 100.0, 7.4 to 1, 90.6, 100.0 +NA,NA,a-exp-i3,2017-18,Easthampton - Center School,00860005, 14.4, 100.0, 13.7 to 1, 87.0, 97.6 +NA,NA,a-exp-i3,2017-18,Easthampton - Easthampton High,00860505, 32.2, 100.0, 14.5 to 1, 90.1, 92.2 +NA,NA,a-exp-i3,2017-18,Easthampton - Maple,00860010, 18.3, 100.0, 13.5 to 1, 81.8, 98.1 +NA,NA,a-exp-i3,2017-18,Easthampton - Neil A Pepin,00860020, 15.2, 100.0, 11.8 to 1, 75.2, 98.0 +NA,NA,a-exp-i3,2017-18,Easthampton - White Brook Middle School,00860305, 35.4, 97.2, 12.7 to 1, 73.7, 88.7 +NA,NA,a-exp-i3,2017-18,Easton - Center School,00880003, 18.7, 100.0, 14.2 to 1, 92.4, 97.4 +NA,NA,a-exp-i3,2017-18,Easton - Easton Middle School,00880405, 67.7, 100.0, 13.1 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Easton - Moreau Hall,00880020, 15.2, 100.0, 14.9 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Easton - Oliver Ames High,00880505, 81.3, 100.0, 14.6 to 1, 91.9, 94.6 +NA,NA,a-exp-i3,2017-18,Easton - Parkview Elementary,00880015, 24.1, 100.0, 13.3 to 1, 99.7, 97.9 +NA,NA,a-exp-i3,2017-18,Easton - Richardson Olmsted School,00880025, 58.0, 100.0, 14.4 to 1, 89.1, 99.1 +NA,NA,a-exp-i3,2017-18,Edgartown - Edgartown Elementary,00890005, 38.5, 98.8, 8.9 to 1, 83.9, 91.6 +NA,NA,a-exp-i3,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 35.3, 92.6, 10.8 to 1, 64.3, 83.0 +NA,NA,a-exp-i3,2017-18,Erving - Erving Elementary,00910030, 18.1, 97.2, 7.8 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 122.7, 95.6, 11.3 to 1, 77.7, 73.9 +NA,NA,a-exp-i3,2017-18,Everett - Adams School,00930003, 9.0, 100.0, 22.3 to 1, 77.8, 100.0 +NA,NA,a-exp-i3,2017-18,Everett - Devens School,00930030, 10.8, 100.0, 5.2 to 1, 90.7, 78.1 +NA,NA,a-exp-i3,2017-18,Everett - Everett High,00930505, 149.7, 98.0, 13.2 to 1, 72.9, 79.3 +NA,NA,a-exp-i3,2017-18,Everett - George Keverian School,00930028, 63.9, 96.9, 13.5 to 1, 82.5, 89.0 +NA,NA,a-exp-i3,2017-18,Everett - Lafayette School,00930038, 61.8, 98.4, 15.3 to 1, 79.8, 87.8 +NA,NA,a-exp-i3,2017-18,Everett - Madeline English School,00930018, 68.1, 100.0, 12.2 to 1, 75.2, 89.7 +NA,NA,a-exp-i3,2017-18,Everett - Parlin School,00930058, 60.9, 100.0, 13.7 to 1, 74.6, 81.4 +NA,NA,a-exp-i3,2017-18,Everett - Sumner G. Whittier School,00930010, 53.4, 100.0, 11.6 to 1, 82.8, 94.4 +NA,NA,a-exp-i3,2017-18,Everett - Webster School,00930015, 51.0, 100.0, 14.5 to 1, 78.1, 90.9 +NA,NA,a-exp-i3,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 98.4, 60.0, 11.4 to 1, 27.3, 83.7 +NA,NA,a-exp-i3,2017-18,Fairhaven - East Fairhaven,00940010, 27.5, 100.0, 15.2 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Fairhaven - Fairhaven High,00940505, 49.0, 97.5, 13.4 to 1, 88.2, 93.9 +NA,NA,a-exp-i3,2017-18,Fairhaven - Hastings Middle,00940305, 34.5, 99.3, 13.6 to 1, 81.9, 94.2 +NA,NA,a-exp-i3,2017-18,Fairhaven - Leroy Wood,00940030, 31.0, 100.0, 16.5 to 1, 91.9, 100.0 +NA,NA,a-exp-i3,2017-18,Fall River - B M C Durfee High,00950505, 182.0, 92.4, 11.6 to 1, 69.5, 72.9 +NA,NA,a-exp-i3,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 54.0, 90.8, 13.7 to 1, 59.3, 75.9 +NA,NA,a-exp-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0,N/A,"","" +NA,NA,a-exp-i3,2017-18,Fall River - Henry Lord Community School,00950017, 55.2, 87.3, 11.8 to 1, 48.9, 72.8 +NA,NA,a-exp-i3,2017-18,Fall River - James Tansey,00950140, 18.4, 89.1, 17.1 to 1, 80.6, 94.6 +NA,NA,a-exp-i3,2017-18,Fall River - John J Doran,00950045, 41.0, 85.4, 12.8 to 1, 65.9, 65.9 +NA,NA,a-exp-i3,2017-18,Fall River - Letourneau Elementary School,00950013, 39.8, 95.0, 15.5 to 1, 54.8, 73.1 +NA,NA,a-exp-i3,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 51.8, 88.4, 13.7 to 1, 34.4, 78.8 +NA,NA,a-exp-i3,2017-18,Fall River - Matthew J Kuss Middle,00950320, 56.1, 96.4, 13.4 to 1, 78.6, 75.0 +NA,NA,a-exp-i3,2017-18,Fall River - Morton Middle,00950315, 57.4, 93.0, 10.2 to 1, 65.1, 65.1 +NA,NA,a-exp-i3,2017-18,Fall River - North End Elementary,00950005, 48.4, 93.8, 15.9 to 1, 73.2, 93.8 +NA,NA,a-exp-i3,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 19.2, 83.7, 9.5 to 1, 58.4, 73.9 +NA,NA,a-exp-i3,2017-18,Fall River - Samuel Watson,00950145, 18.3, 100.0, 15.9 to 1, 80.8, 78.2 +NA,NA,a-exp-i3,2017-18,Fall River - Spencer Borden,00950130, 39.7, 98.2, 14.7 to 1, 78.1, 89.9 +NA,NA,a-exp-i3,2017-18,Fall River - Stone PK-12 School,00950340, 11.7, 79.4, 3.3 to 1, 65.7, 76.0 +NA,NA,a-exp-i3,2017-18,Fall River - Talbot Innovation School,00950305, 49.9, 98.0, 10.1 to 1, 74.1, 70.5 +NA,NA,a-exp-i3,2017-18,Fall River - William S Greene,00950065, 56.2, 92.9, 13.3 to 1, 73.3, 87.6 +NA,NA,a-exp-i3,2017-18,Falmouth - East Falmouth Elementary,00960005, 29.2, 100.0, 9.0 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,Falmouth - Falmouth High,00960505, 67.6, 97.9, 12.5 to 1, 83.7, 85.2 +NA,NA,a-exp-i3,2017-18,Falmouth - Lawrence,00960405, 51.6, 100.0, 11.6 to 1, 92.0, 92.2 +NA,NA,a-exp-i3,2017-18,Falmouth - Morse Pond School,00960305, 45.7, 97.8, 12.1 to 1, 78.6, 93.4 +NA,NA,a-exp-i3,2017-18,Falmouth - Mullen-Hall,00960020, 38.8, 100.0, 11.2 to 1, 85.1, 93.3 +NA,NA,a-exp-i3,2017-18,Falmouth - North Falmouth Elementary,00960030, 27.8, 100.0, 11.5 to 1, 89.9, 96.4 +NA,NA,a-exp-i3,2017-18,Falmouth - Teaticket,00960015, 30.9, 100.0, 11.8 to 1, 78.0, 97.4 +NA,NA,a-exp-i3,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 13.5, 100.0, 8.9 to 1, 79.8, 95.6 +NA,NA,a-exp-i3,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 46.6, 97.9, 12.7 to 1, 76.4, 85.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Crocker Elementary,00970016, 39.0, 100.0, 17.1 to 1, 94.9, 97.4 +NA,NA,a-exp-i3,2017-18,Fitchburg - Fitchburg High,00970505, 89.1, 98.9, 13.5 to 1, 93.2, 91.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Goodrich Academy,00970510, 9.1, 100.0, 18.6 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - McKay Arts Academy,00970340, 45.0, 100.0, 15.1 to 1, 80.0, 91.1 +NA,NA,a-exp-i3,2017-18,Fitchburg - Memorial Intermediate,00970048, 49.8, 100.0, 14.2 to 1, 81.9, 94.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Reingold Elementary,00970043, 42.0, 100.0, 15.9 to 1, 73.8, 92.9 +NA,NA,a-exp-i3,2017-18,Fitchburg - South Street Elementary,00970060, 46.0, 100.0, 14.5 to 1, 80.4, 100.0 +NA,NA,a-exp-i3,2017-18,Florida - Abbott Memorial,00980005, 11.8, 91.5, 6.8 to 1, 100.0, 96.6 +NA,NA,a-exp-i3,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.7, 57.9, 10.7 to 1, 78.7, 92.2 +NA,NA,a-exp-i3,2017-18,Foxborough - Charles Taylor Elementary,00990050, 19.3, 100.0, 12.3 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough - Foxborough High,00990505, 64.1, 100.0, 12.6 to 1, 89.9, 93.8 +NA,NA,a-exp-i3,2017-18,Foxborough - John J Ahern,00990405, 66.1, 100.0, 12.7 to 1, 89.4, 98.5 +NA,NA,a-exp-i3,2017-18,Foxborough - Mabelle M Burrell,00990015, 21.4, 100.0, 14.8 to 1, 95.3, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 31.8, 100.0, 12.4 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 111.7, 78.4, 13.2 to 1, 62.4, 89.3 +NA,NA,a-exp-i3,2017-18,Framingham - Barbieri Elementary,01000035, 52.6, 96.2, 12.9 to 1, 65.8, 86.7 +NA,NA,a-exp-i3,2017-18,Framingham - Brophy,01000006, 41.3, 100.0, 11.5 to 1, 75.6, 96.4 +NA,NA,a-exp-i3,2017-18,Framingham - Cameron Middle School,01000302, 51.1, 100.0, 10.5 to 1, 87.0, 91.2 +NA,NA,a-exp-i3,2017-18,Framingham - Charlotte A Dunning,01000007, 36.1, 100.0, 13.1 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - Framingham High School,01000515, 133.2, 97.7, 16.3 to 1, 70.9, 89.6 +NA,NA,a-exp-i3,2017-18,Framingham - Fuller Middle,01000305, 39.7, 100.0, 12.6 to 1, 73.6, 89.9 +NA,NA,a-exp-i3,2017-18,Framingham - Hemenway,01000015, 42.2, 100.0, 13.5 to 1, 66.6, 95.0 +NA,NA,a-exp-i3,2017-18,Framingham - Juniper Hill School,01000001, 17.5, 100.0, 15.6 to 1, 88.6, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - King Elementary School,01000005, 20.9, 100.0, 13.5 to 1, 51.2, 83.7 +NA,NA,a-exp-i3,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 35.3, 100.0, 10.5 to 1, 74.8, 95.7 +NA,NA,a-exp-i3,2017-18,Framingham - Miriam F McCarthy School,01000050, 50.5, 100.0, 11.2 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - Potter Road,01000039, 35.2, 100.0, 14.6 to 1, 90.0, 97.2 +NA,NA,a-exp-i3,2017-18,Framingham - Walsh Middle,01000310, 60.1, 97.0, 12.7 to 1, 80.4, 87.5 +NA,NA,a-exp-i3,2017-18,Framingham - Woodrow Wilson,01000055, 46.3, 97.8, 12.2 to 1, 67.4, 92.4 +NA,NA,a-exp-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.3, 60.2, 8.6 to 1, 61.1, 95.7 +NA,NA,a-exp-i3,2017-18,Franklin - Annie Sullivan Middle School,01010040, 39.8, 100.0, 11.2 to 1, 86.6, 95.0 +NA,NA,a-exp-i3,2017-18,Franklin - Davis Thayer,01010035, 20.1, 100.0, 11.5 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 8.0, 100.0, 13.0 to 1, 75.0, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Franklin High,01010505, 124.8, 98.6, 14.3 to 1, 78.3, 88.6 +NA,NA,a-exp-i3,2017-18,Franklin - Helen Keller Elementary,01010012, 28.7, 100.0, 14.0 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Horace Mann,01010405, 42.1, 98.8, 11.0 to 1, 76.6, 92.9 +NA,NA,a-exp-i3,2017-18,Franklin - J F Kennedy Memorial,01010013, 23.5, 100.0, 15.6 to 1, 98.9, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Jefferson Elementary,01010010, 24.4, 100.0, 13.8 to 1, 91.3, 95.9 +NA,NA,a-exp-i3,2017-18,Franklin - Oak Street Elementary,01010030, 25.3, 100.0, 15.4 to 1, 80.7, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Parmenter,01010032, 23.6, 100.0, 13.7 to 1, 87.3, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Remington Middle,01010310, 41.1, 100.0, 10.7 to 1, 84.1, 92.2 +NA,NA,a-exp-i3,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 50.0, 95.1, 9.7 to 1, 88.6, 82.8 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 60.8, 100.0, 12.8 to 1, 78.5, 86.8 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 27.1, 100.0, 16.0 to 1, 85.0, 96.3 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 14.7 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 47.1, 100.0, 16.0 to 1, 93.5, 89.4 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 29.1, 100.0, 15.1 to 1, 96.4, 100.0 +NA,NA,a-exp-i3,2017-18,Frontier - Frontier Regional,06700505, 51.5, 99.6, 12.1 to 1, 86.0, 94.2 +NA,NA,a-exp-i3,2017-18,Gardner - Elm Street School,01030001, 37.5, 100.0, 14.7 to 1, 86.7, 94.7 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 6.9, 100.0, 10.7 to 1, 67.2, 70.8 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner High,01030505, 57.6, 100.0, 12.0 to 1, 82.7, 81.3 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner Middle School,01030405, 41.7, 100.0, 13.0 to 1, 78.4, 92.8 +NA,NA,a-exp-i3,2017-18,Gardner - Waterford Street,01030020, 28.9, 100.0, 16.2 to 1, 82.7, 96.5 +NA,NA,a-exp-i3,2017-18,Gateway - Chester Elementary,06720059, 11.0, 90.9, 10.8 to 1, 81.8, 100.0 +NA,NA,a-exp-i3,2017-18,Gateway - Gateway Regional High,06720505, 23.8, 97.9, 9.0 to 1, 76.9, 91.6 +NA,NA,a-exp-i3,2017-18,Gateway - Gateway Regional Middle School,06720405, 18.5, 97.3, 10.7 to 1, 92.1, 100.0 +NA,NA,a-exp-i3,2017-18,Gateway - Littleville Elementary School,06720143, 24.0, 100.0, 12.5 to 1, 95.8, 100.0 +NA,NA,a-exp-i3,2017-18,Georgetown - Georgetown High School,01050505, 40.8, 100.0, 9.8 to 1, 88.6, 89.9 +NA,NA,a-exp-i3,2017-18,Georgetown - Georgetown Middle School,01050305, 12.1, 100.0, 19.0 to 1, 90.9, 99.5 +NA,NA,a-exp-i3,2017-18,Georgetown - Penn Brook,01050010, 38.7, 99.9, 17.9 to 1, 88.1, 100.0 +NA,NA,a-exp-i3,2017-18,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 30.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Gill Elementary,06740005, 9.3, 100.0, 14.4 to 1, 65.6, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Great Falls Middle,06740310, 21.6, 95.4, 11.3 to 1, 85.2, 94.5 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 14.6, 100.0, 11.1 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 22.2, 100.0, 9.7 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Turners Fall High,06740505, 24.5, 95.9, 8.9 to 1, 92.7, 92.7 +NA,NA,a-exp-i3,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 42.9, 93.0, 11.9 to 1, 49.7, 65.5 +NA,NA,a-exp-i3,2017-18,Gloucester - Beeman Memorial,01070010, 28.6, 100.0, 11.9 to 1, 87.4, 96.5 +NA,NA,a-exp-i3,2017-18,Gloucester - East Gloucester Elementary,01070020, 18.7, 100.0, 11.5 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - Gloucester High,01070505, 81.2, 96.3, 9.8 to 1, 90.1, 85.2 +NA,NA,a-exp-i3,2017-18,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 15.3 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - Plum Cove School,01070042, 15.6, 100.0, 13.6 to 1, 74.4, 96.2 +NA,NA,a-exp-i3,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 53.0, 100.0, 12.6 to 1, 79.2, 92.5 +NA,NA,a-exp-i3,2017-18,Gloucester - Veterans Memorial,01070045, 25.2, 100.0, 8.2 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - West Parish,01070050, 27.5, 100.0, 12.9 to 1, 80.0, 96.4 +NA,NA,a-exp-i3,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 1.8 to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Grafton - Grafton High School,01100505, 65.2, 100.0, 12.8 to 1, 81.6, 92.3 +NA,NA,a-exp-i3,2017-18,Grafton - Grafton Middle,01100305, 38.4, 100.0, 13.6 to 1, 78.6, 97.4 +NA,NA,a-exp-i3,2017-18,Grafton - Millbury Street Elementary School,01100200, 51.8, 100.0, 12.7 to 1, 86.6, 96.0 +NA,NA,a-exp-i3,2017-18,Grafton - North Grafton Elementary,01100025, 20.4, 100.0, 12.4 to 1, 75.5, 97.6 +NA,NA,a-exp-i3,2017-18,Grafton - North Street Elementary School,01100030, 44.0, 100.0, 13.3 to 1, 81.8, 100.0 +NA,NA,a-exp-i3,2017-18,Grafton - South Grafton Elementary,01100005, 21.7, 100.0, 13.9 to 1, 93.1, 93.1 +NA,NA,a-exp-i3,2017-18,Granby - East Meadow,01110004, 11.0, 100.0, 13.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Granby - Granby Jr Sr High School,01110505, 28.0, 100.0, 12.2 to 1, 96.4, 96.4 +NA,NA,a-exp-i3,2017-18,Granby - West Street,01110010, 18.0, 100.0, 11.8 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 130.5, 98.5, 10.7 to 1, 85.4, 82.8 +NA,NA,a-exp-i3,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 144.1, 96.7, 10.5 to 1, 81.3, 77.8 +NA,NA,a-exp-i3,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 182.0, 99.5, 12.5 to 1, 90.1, 84.1 +NA,NA,a-exp-i3,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 198.5, 98.5, 10.8 to 1, 90.4, 87.9 +NA,NA,a-exp-i3,2017-18,Greenfield - Discovery School at Four Corners,01140025, 21.9, 100.0, 11.5 to 1, 86.3, 95.4 +NA,NA,a-exp-i3,2017-18,Greenfield - Federal Street School,01140010, 22.7, 95.6, 10.9 to 1, 74.9, 84.6 +NA,NA,a-exp-i3,2017-18,Greenfield - Greenfield High,01140505, 42.7, 93.4, 10.8 to 1, 79.4, 83.6 +NA,NA,a-exp-i3,2017-18,Greenfield - Greenfield Middle,01140305, 41.8, 100.0, 9.1 to 1, 80.9, 80.4 +NA,NA,a-exp-i3,2017-18,Greenfield - Newton School,01140035, 22.3, 100.0, 10.9 to 1, 76.7, 95.5 +NA,NA,a-exp-i3,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.9, 100.0, 14.8 to 1, 83.5, 68.4 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Boutwell School,06730001, 4.0, 100.0, 15.8 to 1, 75.0, 100.0 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Florence Roche School,06730010, 34.8, 100.0, 14.7 to 1, 85.6, 97.1 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.2, 100.0, 14.0 to 1, 85.6, 92.1 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 58.1, 100.0, 13.2 to 1, 82.8, 94.8 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 23.8, 100.0, 12.2 to 1, 87.4, 91.6 +NA,NA,a-exp-i3,2017-18,Hadley - Hadley Elementary,01170015, 23.5, 100.0, 12.2 to 1, 83.0, 91.5 +NA,NA,a-exp-i3,2017-18,Hadley - Hopkins Academy,01170505, 24.8, 100.0, 9.8 to 1, 74.6, 87.9 +NA,NA,a-exp-i3,2017-18,Halifax - Halifax Elementary,01180005, 39.0, 100.0, 15.3 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 16.0, 100.0, 16.1 to 1, 89.4, 96.9 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Cutler School,06750010, 21.8, 100.0, 13.3 to 1, 78.4, 99.1 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 47.7, 97.9, 11.7 to 1, 91.6, 95.8 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 36.8, 100.0, 10.4 to 1, 88.6, 90.2 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Winthrop School,06750015, 23.6, 100.0, 12.3 to 1, 95.8, 95.8 +NA,NA,a-exp-i3,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 45.2, 73.4, 10.9 to 1, 37.1, 72.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 20.6, 100.0, 12.1 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 22.5, 100.0, 15.4 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.4, 100.0, 15.1 to 1, 96.1, 94.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Soule Road,06800030, 21.7, 100.0, 15.9 to 1, 95.4, 95.4 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 15.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 10.6, 100.0, 9.9 to 1, 84.9, 90.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 37.1, 100.0, 16.4 to 1, 91.9, 97.3 +NA,NA,a-exp-i3,2017-18,Hampshire - Hampshire Regional High,06830505, 73.1, 97.3, 9.6 to 1, 85.2, 94.3 +NA,NA,a-exp-i3,2017-18,Hancock - Hancock Elementary,01210005, 6.8, 97.1, 6.2 to 1, 50.0, 91.2 +NA,NA,a-exp-i3,2017-18,Hanover - Cedar Elementary,01220004, 32.0, 100.0, 12.9 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Hanover - Center Elementary,01220005, 21.4, 97.7, 15.7 to 1, 88.3, 100.0 +NA,NA,a-exp-i3,2017-18,Hanover - Hanover High,01220505, 61.7, 98.4, 13.0 to 1, 91.2, 91.9 +NA,NA,a-exp-i3,2017-18,Hanover - Hanover Middle,01220305, 72.1, 97.2, 11.5 to 1, 88.8, 97.2 +NA,NA,a-exp-i3,2017-18,Hanover - Sylvester,01220015, 17.1, 100.0, 13.4 to 1, 82.5, 100.0 +NA,NA,a-exp-i3,2017-18,Harvard - Bromfield,01250505, 57.3, 100.0, 11.4 to 1, 86.0, 94.8 +NA,NA,a-exp-i3,2017-18,Harvard - Hildreth Elementary School,01250005, 31.5, 100.0, 14.0 to 1, 90.5, 93.7 +NA,NA,a-exp-i3,2017-18,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 12.4 to 1, 90.5, 95.0 +NA,NA,a-exp-i3,2017-18,Hatfield - Smith Academy,01270505, 22.4, 98.2, 8.4 to 1, 82.1, 95.5 +NA,NA,a-exp-i3,2017-18,Haverhill - Bradford Elementary,01280008, 30.5, 96.7, 10.4 to 1, 86.9, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 62.5, 100.0, 16.4 to 1, 85.6, 96.8 +NA,NA,a-exp-i3,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 8.2, 100.0, 13.1 to 1, 75.5, 87.8 +NA,NA,a-exp-i3,2017-18,Haverhill - Consentino Middle School,01280100, 63.3, 98.4, 15.4 to 1, 82.6, 92.1 +NA,NA,a-exp-i3,2017-18,Haverhill - Crowell,01280020, 8.9, 100.0, 10.9 to 1, 67.4, 83.1 +NA,NA,a-exp-i3,2017-18,Haverhill - Dr Paul Nettle,01280050, 36.7, 100.0, 13.6 to 1, 83.1, 88.3 +NA,NA,a-exp-i3,2017-18,Haverhill - Golden Hill,01280026, 39.6, 97.5, 12.6 to 1, 80.8, 94.9 +NA,NA,a-exp-i3,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 9.1, 100.0, 11.9 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Haverhill Alternative School,01280033, 8.0, 100.0, 5.8 to 1, 75.0, 75.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Haverhill High,01280505, 136.7, 95.6, 13.4 to 1, 77.9, 89.0 +NA,NA,a-exp-i3,2017-18,Haverhill - John G Whittier,01280085, 29.5, 100.0, 18.4 to 1, 89.8, 91.5 +NA,NA,a-exp-i3,2017-18,Haverhill - Moody,01280045, 13.5, 100.0, 16.3 to 1, 72.0, 77.9 +NA,NA,a-exp-i3,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 41.1, 100.0, 12.3 to 1, 73.2, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - TEACH,01280073, 7.0, 100.0, 7.1 to 1, 57.1, 85.7 +NA,NA,a-exp-i3,2017-18,Haverhill - Tilton,01280075, 42.8, 100.0, 12.6 to 1, 88.3, 93.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Walnut Square,01280080, 8.5, 100.0, 16.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hawlemont - Hawlemont Regional,06850005, 11.6, 86.6, 14.1 to 1, 64.7, 91.4 +NA,NA,a-exp-i3,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 13.9, 63.9, 15.4 to 1, 42.2, 78.3 +NA,NA,a-exp-i3,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 25.0, 80.0, 12.1 to 1, 56.0, 84.0 +NA,NA,a-exp-i3,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.9, 86.5, 10.9 to 1, 78.9, 100.0 +NA,NA,a-exp-i3,2017-18,Hingham - East Elementary School,01310005, 35.8, 100.0, 14.7 to 1, 87.4, 100.0 +NA,NA,a-exp-i3,2017-18,Hingham - Hingham High,01310505, 86.0, 100.0, 14.6 to 1, 92.9, 91.4 +NA,NA,a-exp-i3,2017-18,Hingham - Hingham Middle School,01310410, 68.4, 100.0, 15.7 to 1, 93.6, 95.6 +NA,NA,a-exp-i3,2017-18,Hingham - Plymouth River,01310019, 29.9, 100.0, 15.7 to 1, 90.0, 96.7 +NA,NA,a-exp-i3,2017-18,Hingham - South Elementary,01310020, 35.7, 100.0, 14.8 to 1, 84.6, 97.2 +NA,NA,a-exp-i3,2017-18,Hingham - Wm L Foster Elementary,01310010, 31.1, 100.0, 14.3 to 1, 100.0, 96.8 +NA,NA,a-exp-i3,2017-18,Holbrook - Holbrook Middle High School,01330505, 39.5, 100.0, 14.9 to 1, 83.9, 89.9 +NA,NA,a-exp-i3,2017-18,Holbrook - John F Kennedy,01330018, 46.2, 100.0, 13.5 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Holland - Holland Elementary,01350005, 18.3, 100.0, 12.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Holliston - Holliston High,01360505, 64.9, 99.5, 12.3 to 1, 91.8, 96.3 +NA,NA,a-exp-i3,2017-18,Holliston - Miller School,01360007, 49.2, 98.0, 13.9 to 1, 79.6, 93.7 +NA,NA,a-exp-i3,2017-18,Holliston - Placentino Elementary,01360010, 48.2, 97.9, 15.5 to 1, 90.5, 93.0 +NA,NA,a-exp-i3,2017-18,Holliston - Robert H. Adams Middle School,01360305, 52.2, 100.0, 13.0 to 1, 86.2, 84.3 +NA,NA,a-exp-i3,2017-18,Holyoke - E N White Elementary,01370045, 36.7, 89.1, 13.7 to 1, 62.2, 80.9 +NA,NA,a-exp-i3,2017-18,Holyoke - H.B. Lawrence School,01370070, 20.6, 80.6, 13.5 to 1, 46.6, 63.6 +NA,NA,a-exp-i3,2017-18,Holyoke - Holyoke High,01370505, 87.2, 97.7, 15.3 to 1, 76.4, 84.4 +NA,NA,a-exp-i3,2017-18,Holyoke - Joseph Metcalf School,01370003, 13.9, 92.8, 18.6 to 1, 78.4, 92.8 +NA,NA,a-exp-i3,2017-18,Holyoke - Kelly Elementary,01370040, 36.7, 89.1, 15.3 to 1, 56.4, 67.3 +NA,NA,a-exp-i3,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 42.6, 85.9, 12.7 to 1, 71.1, 83.6 +NA,NA,a-exp-i3,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.0, 100.0, 14.0 to 1, 73.3, 86.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 38.0, 86.8, 12.2 to 1, 68.4, 73.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Morgan Full Service Community School,01370025, 31.0, 90.3, 13.4 to 1, 58.1, 77.4 +NA,NA,a-exp-i3,2017-18,Holyoke - William R. Peck School,01370030, 34.0, 88.2, 10.0 to 1, 50.0, 67.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 28.0, 82.1, 6.5 to 1, 62.5, 44.6 +NA,NA,a-exp-i3,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.1, 69.4, 13.5 to 1, 54.1, 84.6 +NA,NA,a-exp-i3,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 43.7, 100.0, 11.6 to 1, 85.1, 94.3 +NA,NA,a-exp-i3,2017-18,Hopedale - Memorial,01380010, 41.9, 100.0, 13.0 to 1, 90.2, 92.6 +NA,NA,a-exp-i3,2017-18,Hopedale - Park Street School,01380003, 2.6, 84.6, 31.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Center,01390005, 32.9, 100.0, 13.9 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Elmwood,01390010, 34.4, 100.0, 14.6 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkins Elementary School,01390015, 38.0, 100.0, 14.2 to 1, 94.3, 97.4 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton High,01390505, 81.4, 100.0, 14.2 to 1, 93.4, 96.1 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton Middle School,01390305, 65.6, 100.0, 12.3 to 1, 91.7, 97.3 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 4.0, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hudson - C A Farley,01410030, 39.6, 100.0, 11.6 to 1, 92.4, 97.2 +NA,NA,a-exp-i3,2017-18,Hudson - David J. Quinn Middle School,01410410, 57.4, 98.3, 11.3 to 1, 84.0, 90.6 +NA,NA,a-exp-i3,2017-18,Hudson - Forest Avenue Elementary,01410015, 28.8, 100.0, 12.3 to 1, 89.6, 99.3 +NA,NA,a-exp-i3,2017-18,Hudson - Hudson High,01410505, 84.0, 98.8, 11.1 to 1, 89.3, 88.1 +NA,NA,a-exp-i3,2017-18,Hudson - Mulready Elementary,01410007, 24.2, 100.0, 9.8 to 1, 89.3, 91.3 +NA,NA,a-exp-i3,2017-18,Hull - Hull High,01420505, 29.8, 100.0, 9.9 to 1, 77.9, 84.6 +NA,NA,a-exp-i3,2017-18,Hull - Lillian M Jacobs,01420015, 34.0, 100.0, 12.1 to 1, 91.2, 97.1 +NA,NA,a-exp-i3,2017-18,Hull - Memorial Middle,01420305, 19.9, 100.0, 9.5 to 1, 74.8, 74.8 +NA,NA,a-exp-i3,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 75.4, 88.4, 10.6 to 1, 66.1, 81.9 +NA,NA,a-exp-i3,2017-18,Ipswich - Ipswich High,01440505, 47.4, 99.2, 10.9 to 1, 79.7, 90.7 +NA,NA,a-exp-i3,2017-18,Ipswich - Ipswich Middle School,01440305, 41.9, 100.0, 10.5 to 1, 87.3, 92.8 +NA,NA,a-exp-i3,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 32.9, 100.0, 12.2 to 1, 86.2, 97.0 +NA,NA,a-exp-i3,2017-18,Ipswich - Winthrop,01440015, 33.7, 100.0, 11.2 to 1, 77.9, 100.0 +NA,NA,a-exp-i3,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 55.0, 49.1, 10.1 to 1, 21.8, 78.2 +NA,NA,a-exp-i3,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 109.6, 56.3, 12.2 to 1, 17.8, 84.4 +NA,NA,a-exp-i3,2017-18,King Philip - King Philip Middle School,06900510, 45.4, 100.0, 16.3 to 1, 84.6, 93.4 +NA,NA,a-exp-i3,2017-18,King Philip - King Philip Regional High,06900505, 81.7, 100.0, 15.9 to 1, 76.0, 83.7 +NA,NA,a-exp-i3,2017-18,Kingston - Kingston Elementary,01450005, 30.2, 100.0, 14.9 to 1, 72.8, 100.0 +NA,NA,a-exp-i3,2017-18,Kingston - Kingston Intermediate,01450020, 36.0, 100.0, 15.9 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lanesborough - Lanesborough Elementary,01480005, 19.7, 100.0, 10.7 to 1, 66.5, 86.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Alexander B Bruce,01490015, 41.6, 100.0, 12.4 to 1, 66.3, 78.4 +NA,NA,a-exp-i3,2017-18,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 15.0 to 1, 74.4, 74.4 +NA,NA,a-exp-i3,2017-18,Lawrence - Community Day Arlington,01490009, 59.5, 91.6, 9.9 to 1, 29.4, 74.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Edward F. Parthum,01490053, 39.4, 94.9, 15.8 to 1, 72.1, 84.7 +NA,NA,a-exp-i3,2017-18,Lawrence - Emily G Wetherbee,01490080, 47.0, 97.9, 14.9 to 1, 76.6, 78.7 +NA,NA,a-exp-i3,2017-18,Lawrence - Francis M Leahy,01490040, 35.0, 97.1, 14.8 to 1, 77.2, 94.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Frost Middle School,01490525, 32.1, 100.0, 15.8 to 1, 90.7, 87.5 +NA,NA,a-exp-i3,2017-18,Lawrence - Gerard A. Guilmette,01490022, 41.1, 95.1, 12.5 to 1, 48.9, 90.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Guilmette Middle School,01490025, 45.0, 100.0, 10.8 to 1, 60.0, 69.1 +NA,NA,a-exp-i3,2017-18,Lawrence - High School Learning Center,01490536, 17.8, 96.6, 10.5 to 1, 85.4, 79.8 +NA,NA,a-exp-i3,2017-18,Lawrence - James F Hennessey,01490020, 26.1, 96.2, 13.3 to 1, 73.2, 92.4 +NA,NA,a-exp-i3,2017-18,Lawrence - John Breen School,01490003, 19.1, 100.0, 17.5 to 1, 79.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lawrence - John K Tarbox,01490075, 21.8, 95.4, 15.0 to 1, 81.6, 90.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 12.0, 91.7, 13.6 to 1, 91.7, 83.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 17.1, 100.0, 12.4 to 1, 88.3, 88.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawrence High School,01490515, 252.9, 91.1, 13.1 to 1, 61.1, 76.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Oliver Partnership School,01490048, 35.0, 91.4, 12.8 to 1, 71.4, 88.6 +NA,NA,a-exp-i3,2017-18,Lawrence - Parthum Middle School,01490027, 39.0, 97.4, 14.9 to 1, 69.2, 76.9 +NA,NA,a-exp-i3,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 8.3, 59.9, 15.0 to 1, 21.6, 49.1 +NA,NA,a-exp-i3,2017-18,Lawrence - Robert Frost,01490018, 40.0, 90.0, 14.8 to 1, 70.0, 80.0 +NA,NA,a-exp-i3,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 15.1, 100.0, 12.6 to 1, 60.2, 93.4 +NA,NA,a-exp-i3,2017-18,Lawrence - School for Exceptional Studies,01490537, 32.6, 78.5, 4.6 to 1, 41.7, 61.6 +NA,NA,a-exp-i3,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 49.9, 90.0, 15.0 to 1, 60.0, 82.0 +NA,NA,a-exp-i3,2017-18,Lawrence - Spark Academy,01490085, 41.1, 65.9, 11.2 to 1, 29.4, 58.6 +NA,NA,a-exp-i3,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 26.0, 88.5, 11.4 to 1, 53.8, 30.8 +NA,NA,a-exp-i3,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 27.0, 81.5, 12.7 to 1, 22.2, 63.0 +NA,NA,a-exp-i3,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 60.9, 95.8, 12.1 to 1, 59.6, 91.7 +NA,NA,a-exp-i3,2017-18,Lee - Lee Elementary,01500025, 34.4, 100.0, 10.0 to 1, 85.5, 97.1 +NA,NA,a-exp-i3,2017-18,Lee - Lee Middle/High School,01500505, 35.4, 97.2, 9.8 to 1, 88.7, 88.7 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester High,01510505, 35.5, 97.2, 13.0 to 1, 81.2, 92.9 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Memorial Elementary,01510005, 21.5, 100.0, 15.5 to 1, 88.3, 100.0 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Middle,01510015, 30.0, 100.0, 13.7 to 1, 86.7, 93.3 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Primary School,01510010, 24.5, 100.0, 14.8 to 1, 81.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lenox - Lenox Memorial High,01520505, 50.9, 100.0, 8.7 to 1, 92.6, 87.8 +NA,NA,a-exp-i3,2017-18,Lenox - Morris,01520015, 29.0, 100.0, 10.7 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Bennett,01530003, 6.0, 83.3, 14.3 to 1, 50.0, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Center For Technical Education Innovation,01530605, 32.1, 93.5, 22.3 to 1, 93.5, 81.0 +NA,NA,a-exp-i3,2017-18,Leominster - Fall Brook,01530007, 41.5, 100.0, 15.8 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Frances Drake School,01530010, 41.1, 97.6, 13.2 to 1, 87.8, 99.8 +NA,NA,a-exp-i3,2017-18,Leominster - Johnny Appleseed,01530025, 42.5, 100.0, 15.3 to 1, 92.9, 97.6 +NA,NA,a-exp-i3,2017-18,Leominster - Leominster Center for Excellence,01530515, 5.0, 100.0, 10.0 to 1, 80.0, 40.0 +NA,NA,a-exp-i3,2017-18,Leominster - Leominster High School,01530505, 99.8, 97.0, 10.6 to 1, 87.9, 90.8 +NA,NA,a-exp-i3,2017-18,Leominster - Lincoln School,01530005, 5.0, 100.0, 9.6 to 1, 80.0, 80.0 +NA,NA,a-exp-i3,2017-18,Leominster - Northwest,01530030, 44.0, 97.7, 15.6 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Priest Street,01530040, 8.0, 100.0, 15.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Samoset School,01530045, 37.0, 100.0, 13.3 to 1, 83.8, 86.5 +NA,NA,a-exp-i3,2017-18,Leominster - Sky View Middle School,01530320, 56.0, 98.2, 16.0 to 1, 87.5, 91.1 +NA,NA,a-exp-i3,2017-18,Leverett - Leverett Elementary,01540005, 18.0, 100.0, 6.9 to 1, 77.8, 94.4 +NA,NA,a-exp-i3,2017-18,Lexington - Bowman,01550008, 47.6, 100.0, 11.8 to 1, 76.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lexington - Bridge,01550006, 45.2, 100.0, 12.7 to 1, 79.7, 91.1 +NA,NA,a-exp-i3,2017-18,Lexington - Fiske,01550015, 37.2, 100.0, 13.5 to 1, 91.7, 97.3 +NA,NA,a-exp-i3,2017-18,Lexington - Harrington,01550030, 35.8, 100.0, 13.4 to 1, 71.3, 97.2 +NA,NA,a-exp-i3,2017-18,Lexington - Jonas Clarke Middle,01550305, 86.5, 100.0, 10.7 to 1, 83.6, 96.3 +NA,NA,a-exp-i3,2017-18,Lexington - Joseph Estabrook,01550010, 42.3, 100.0, 13.5 to 1, 75.4, 99.5 +NA,NA,a-exp-i3,2017-18,Lexington - Lexington Children's Place,01550001, 6.9, 100.0, 10.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lexington - Lexington High,01550505, 170.9, 99.6, 12.9 to 1, 81.9, 91.7 +NA,NA,a-exp-i3,2017-18,Lexington - Maria Hastings,01550035, 37.8, 100.0, 12.3 to 1, 78.7, 94.7 +NA,NA,a-exp-i3,2017-18,Lexington - Wm Diamond Middle,01550310, 79.3, 100.0, 11.2 to 1, 83.5, 92.4 +NA,NA,a-exp-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 7.2, 76.4, 12.5 to 1, 23.6, 44.4 +NA,NA,a-exp-i3,2017-18,Lincoln - Hanscom Middle,01570305, 25.8, 100.0, 10.5 to 1, 87.5, 98.6 +NA,NA,a-exp-i3,2017-18,Lincoln - Hanscom Primary,01570006, 28.9, 100.0, 11.5 to 1, 83.9, 97.5 +NA,NA,a-exp-i3,2017-18,Lincoln - Lincoln School,01570025, 63.2, 100.0, 9.3 to 1, 90.8, 99.2 +NA,NA,a-exp-i3,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.2, 100.0, 12.0 to 1, 92.2, 96.7 +NA,NA,a-exp-i3,2017-18,Littleton - Littleton High School,01580505, 36.6, 99.5, 12.6 to 1, 86.1, 97.3 +NA,NA,a-exp-i3,2017-18,Littleton - Littleton Middle School,01580305, 26.9, 100.0, 13.5 to 1, 85.2, 85.6 +NA,NA,a-exp-i3,2017-18,Littleton - Russell St Elementary,01580015, 25.9, 100.0, 14.9 to 1, 71.0, 98.1 +NA,NA,a-exp-i3,2017-18,Littleton - Shaker Lane Elementary,01580005, 30.1, 100.0, 14.9 to 1, 86.7, 91.7 +NA,NA,a-exp-i3,2017-18,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 12.3 to 1, 94.4, 97.2 +NA,NA,a-exp-i3,2017-18,Longmeadow - Center,01590010, 34.5, 100.0, 11.7 to 1, 81.7, 94.8 +NA,NA,a-exp-i3,2017-18,Longmeadow - Glenbrook Middle,01590017, 27.7, 98.7, 12.4 to 1, 87.9, 96.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Longmeadow High,01590505, 76.3, 100.0, 12.6 to 1, 96.1, 97.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Williams Middle,01590305, 27.7, 97.7, 11.9 to 1, 89.8, 96.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Wolf Swamp Road,01590025, 33.3, 100.0, 12.1 to 1, 94.0, 97.0 +NA,NA,a-exp-i3,2017-18,Lowell - Abraham Lincoln,01600020, 35.0, 100.0, 13.9 to 1, 82.9, 97.1 +NA,NA,a-exp-i3,2017-18,Lowell - B.F. Butler Middle School,01600310, 43.4, 100.0, 12.3 to 1, 76.5, 76.1 +NA,NA,a-exp-i3,2017-18,Lowell - Bartlett Community Partnership,01600090, 39.8, 100.0, 13.1 to 1, 83.3, 81.6 +NA,NA,a-exp-i3,2017-18,Lowell - Charles W Morey,01600030, 35.9, 97.2, 14.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 37.8, 100.0, 13.3 to 1, 84.1, 97.4 +NA,NA,a-exp-i3,2017-18,Lowell - Dr An Wang School,01600345, 49.5, 98.0, 14.0 to 1, 87.5, 87.5 +NA,NA,a-exp-i3,2017-18,Lowell - Dr Gertrude Bailey,01600002, 33.0, 97.0, 14.8 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Greenhalge,01600015, 37.0, 97.3, 13.6 to 1, 70.2, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Henry J Robinson Middle,01600330, 50.8, 99.8, 13.1 to 1, 80.4, 80.3 +NA,NA,a-exp-i3,2017-18,Lowell - James S Daley Middle School,01600315, 46.6, 100.0, 15.0 to 1, 89.3, 97.9 +NA,NA,a-exp-i3,2017-18,Lowell - James Sullivan Middle School,01600340, 46.5, 100.0, 13.8 to 1, 87.1, 89.2 +NA,NA,a-exp-i3,2017-18,Lowell - John J Shaughnessy,01600050, 34.0, 97.1, 13.6 to 1, 82.3, 94.1 +NA,NA,a-exp-i3,2017-18,Lowell - Joseph McAvinnue,01600010, 34.0, 100.0, 14.3 to 1, 88.2, 94.1 +NA,NA,a-exp-i3,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 48.9, 100.0, 14.0 to 1, 90.8, 86.7 +NA,NA,a-exp-i3,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 7.1, 100.0, 3.2 to 1, 65.2, 65.2 +NA,NA,a-exp-i3,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 7.1, 85.9, 5.1 to 1, 84.3, 84.3 +NA,NA,a-exp-i3,2017-18,Lowell - Lowell Day School on Broadway,01600605, 8.0, 75.0, 3.3 to 1, 37.6, 50.0 +NA,NA,a-exp-i3,2017-18,Lowell - Lowell High,01600505, 213.9, 95.3, 14.7 to 1, 84.4, 90.6 +NA,NA,a-exp-i3,2017-18,Lowell - Moody Elementary,01600027, 19.3, 94.8, 12.6 to 1, 92.2, 94.8 +NA,NA,a-exp-i3,2017-18,Lowell - Pawtucketville Memorial,01600036, 36.0, 100.0, 14.2 to 1, 80.5, 88.8 +NA,NA,a-exp-i3,2017-18,Lowell - Peter W Reilly,01600040, 40.2, 100.0, 13.5 to 1, 95.0, 97.5 +NA,NA,a-exp-i3,2017-18,Lowell - Pyne Arts,01600018, 36.0, 97.2, 13.6 to 1, 77.2, 85.5 +NA,NA,a-exp-i3,2017-18,Lowell - Rogers STEM Academy,01600005, 44.9, 100.0, 15.2 to 1, 82.2, 93.4 +NA,NA,a-exp-i3,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 35.7, 100.0, 13.5 to 1, 91.6, 97.2 +NA,NA,a-exp-i3,2017-18,Lowell - The Career Academy,01600515, 9.4, 100.0, 12.1 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Washington,01600055, 20.5, 95.1, 12.1 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.5, 95.3, 12.8 to 1, 46.4, 89.0 +NA,NA,a-exp-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 52.4, 8.7 to 1, 66.7, 71.4 +NA,NA,a-exp-i3,2017-18,Ludlow - Chapin Street Elementary School,01610020, 25.5, 100.0, 12.6 to 1, 98.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ludlow - East Street Elementary School,01610010, 32.5, 100.0, 12.3 to 1, 96.9, 96.9 +NA,NA,a-exp-i3,2017-18,Ludlow - Ludlow Senior High,01610505, 79.9, 99.9, 11.2 to 1, 94.9, 90.0 +NA,NA,a-exp-i3,2017-18,Ludlow - Paul R Baird Middle,01610305, 56.8, 100.0, 11.2 to 1, 97.9, 96.5 +NA,NA,a-exp-i3,2017-18,Ludlow - Veterans Park Elementary,01610023, 28.7, 100.0, 13.7 to 1, 80.8, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 2.0, 100.0, 4.4 to 1, 50.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg High,01620505, 34.6, 100.0, 12.8 to 1, 94.2, 94.2 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg Middle School,01620305, 28.9, 100.0, 14.7 to 1, 82.3, 86.1 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg Primary School,01620010, 25.0, 100.0, 15.7 to 1, 89.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 24.5, 100.0, 15.2 to 1, 77.6, 98.0 +NA,NA,a-exp-i3,2017-18,Lynn - A Drewicz Elementary,01630016, 34.6, 100.0, 14.2 to 1, 57.0, 91.0 +NA,NA,a-exp-i3,2017-18,Lynn - Aborn,01630011, 16.9, 100.0, 15.0 to 1, 97.4, 100.0 +NA,NA,a-exp-i3,2017-18,Lynn - Breed Middle School,01630405, 88.0, 93.2, 15.1 to 1, 67.9, 79.3 +NA,NA,a-exp-i3,2017-18,Lynn - Brickett Elementary,01630020, 21.3, 100.0, 14.2 to 1, 88.0, 97.6 +NA,NA,a-exp-i3,2017-18,Lynn - Capt William G Shoemaker,01630090, 30.5, 100.0, 10.8 to 1, 93.1, 99.3 +NA,NA,a-exp-i3,2017-18,Lynn - Classical High,01630505, 101.3, 95.1, 16.4 to 1, 86.9, 84.0 +NA,NA,a-exp-i3,2017-18,Lynn - Cobbet Elementary,01630035, 43.5, 100.0, 14.7 to 1, 74.7, 93.1 +NA,NA,a-exp-i3,2017-18,Lynn - E J Harrington,01630045, 46.4, 97.8, 13.6 to 1, 76.1, 99.8 +NA,NA,a-exp-i3,2017-18,Lynn - Early Childhood Center,01630004, 23.0, 100.0, 13.0 to 1, 73.8, 85.8 +NA,NA,a-exp-i3,2017-18,Lynn - Edward A Sisson,01630095, 27.7, 100.0, 15.6 to 1, 99.6, 99.6 +NA,NA,a-exp-i3,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 26.2, 96.2, 4.1 to 1, 88.5, 77.1 +NA,NA,a-exp-i3,2017-18,Lynn - Hood,01630055, 30.9, 100.0, 15.8 to 1, 58.6, 94.2 +NA,NA,a-exp-i3,2017-18,Lynn - Ingalls,01630060, 42.3, 100.0, 15.4 to 1, 76.4, 88.2 +NA,NA,a-exp-i3,2017-18,Lynn - Julia F Callahan,01630030, 31.6, 100.0, 14.5 to 1, 60.8, 82.0 +NA,NA,a-exp-i3,2017-18,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 12.2 to 1, 97.6, 97.6 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn English High,01630510, 105.9, 97.2, 16.3 to 1, 85.7, 84.8 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 81.8, 91.4, 12.3 to 1, 77.7, 80.0 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn Woods,01630075, 10.4, 100.0, 15.7 to 1, 96.6, 96.6 +NA,NA,a-exp-i3,2017-18,Lynn - Pickering Middle,01630420, 47.4, 100.0, 13.0 to 1, 89.2, 91.3 +NA,NA,a-exp-i3,2017-18,Lynn - Robert L Ford,01630050, 32.1, 96.9, 15.3 to 1, 53.9, 85.0 +NA,NA,a-exp-i3,2017-18,Lynn - Sewell-Anderson,01630085, 22.2, 100.0, 14.0 to 1, 95.7, 97.5 +NA,NA,a-exp-i3,2017-18,Lynn - Thurgood Marshall Mid,01630305, 85.0, 96.5, 15.2 to 1, 73.8, 71.8 +NA,NA,a-exp-i3,2017-18,Lynn - Tracy,01630100, 31.7, 100.0, 13.7 to 1, 86.6, 97.5 +NA,NA,a-exp-i3,2017-18,Lynn - Washington Elementary School,01630005, 32.3, 100.0, 14.5 to 1, 72.4, 82.2 +NA,NA,a-exp-i3,2017-18,Lynn - William R Fallon,01630080, 9.6, 100.0, 5.2 to 1, 89.6, 100.0 +NA,NA,a-exp-i3,2017-18,Lynn - Wm P Connery,01630040, 41.7, 97.6, 15.4 to 1, 78.6, 86.9 +NA,NA,a-exp-i3,2017-18,Lynnfield - Huckleberry Hill,01640010, 29.0, 100.0, 14.7 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield High,01640505, 53.2, 100.0, 12.2 to 1, 92.7, 98.1 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield Middle School,01640405, 52.3, 100.0, 12.9 to 1, 88.1, 97.6 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield Preschool,01640005, 1.6, 100.0, 23.8 to 1, 37.5, 100.0 +NA,NA,a-exp-i3,2017-18,Lynnfield - Summer Street,01640020, 29.1, 100.0, 14.8 to 1, 80.8, 100.0 +NA,NA,a-exp-i3,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 102.9, 61.5, 11.9 to 1, 32.4, 90.3 +NA,NA,a-exp-i3,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.0 to 1, 83.3, 83.3 +NA,NA,a-exp-i3,2017-18,Malden - Beebe,01650003, 63.5, 100.0, 14.1 to 1, 93.7, 96.9 +NA,NA,a-exp-i3,2017-18,Malden - Ferryway,01650013, 60.2, 100.0, 14.5 to 1, 81.7, 98.3 +NA,NA,a-exp-i3,2017-18,Malden - Forestdale,01650027, 47.5, 100.0, 11.5 to 1, 74.7, 95.8 +NA,NA,a-exp-i3,2017-18,Malden - Linden,01650047, 66.5, 100.0, 13.1 to 1, 77.4, 95.5 +NA,NA,a-exp-i3,2017-18,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 14.3 to 1, 72.7, 100.0 +NA,NA,a-exp-i3,2017-18,Malden - Malden High,01650505, 115.0, 99.1, 15.8 to 1, 88.7, 94.8 +NA,NA,a-exp-i3,2017-18,Malden - Salemwood,01650057, 83.0, 100.0, 14.7 to 1, 74.7, 86.8 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 15.7, 100.0, 14.5 to 1, 94.3, 94.3 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 42.6, 97.7, 10.4 to 1, 90.5, 90.6 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 33.3, 100.0, 11.2 to 1, 77.6, 98.8 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 23.2, 100.0, 14.8 to 1, 95.7, 95.7 +NA,NA,a-exp-i3,2017-18,Mansfield - Everett W Robinson,01670007, 51.0, 100.0, 14.0 to 1, 92.2, 98.0 +NA,NA,a-exp-i3,2017-18,Mansfield - Harold L Qualters Middle,01670035, 82.4, 100.0, 11.4 to 1, 96.4, 94.6 +NA,NA,a-exp-i3,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 58.4, 100.0, 13.5 to 1, 92.5, 95.9 +NA,NA,a-exp-i3,2017-18,Mansfield - Mansfield High,01670505, 101.2, 100.0, 13.0 to 1, 95.0, 92.1 +NA,NA,a-exp-i3,2017-18,Mansfield - Roland Green School,01670003, 6.0, 100.0, 16.2 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Elbridge Gerry,01680015, 7.4, 100.0, 18.7 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Glover,01680020, 28.7, 100.0, 12.9 to 1, 80.5, 93.7 +NA,NA,a-exp-i3,2017-18,Marblehead - L H Coffin,01680010, 13.0, 92.3, 11.7 to 1, 88.5, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Malcolm L Bell,01680005, 25.7, 100.0, 10.6 to 1, 89.9, 97.7 +NA,NA,a-exp-i3,2017-18,Marblehead - Marblehead High,01680505, 88.0, 100.0, 11.8 to 1, 81.0, 90.9 +NA,NA,a-exp-i3,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 40.5, 100.0, 12.1 to 1, 87.4, 92.6 +NA,NA,a-exp-i3,2017-18,Marblehead - Village School,01680016, 57.7, 100.0, 11.0 to 1, 80.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 20.5, 87.3, 11.2 to 1, 51.2, 65.9 +NA,NA,a-exp-i3,2017-18,Marion - Sippican,01690005, 34.8, 100.0, 13.0 to 1, 80.5, 97.7 +NA,NA,a-exp-i3,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 118.8, 99.2, 11.0 to 1, 83.2, 94.9 +NA,NA,a-exp-i3,2017-18,Marlborough - Charles Jaworek School,01700030, 62.3, 100.0, 12.2 to 1, 70.9, 93.6 +NA,NA,a-exp-i3,2017-18,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 17.4 to 1, 90.0, 100.0 +NA,NA,a-exp-i3,2017-18,Marlborough - Francis J Kane,01700008, 48.9, 100.0, 12.6 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Marlborough - Marlborough High,01700505, 98.2, 100.0, 11.3 to 1, 83.3, 90.4 +NA,NA,a-exp-i3,2017-18,Marlborough - Richer,01700025, 48.8, 100.0, 12.4 to 1, 75.6, 98.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Daniel Webster,01710015, 27.0, 100.0, 14.9 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Eames Way School,01710005, 18.5, 100.0, 13.1 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Furnace Brook Middle,01710310, 76.2, 100.0, 12.7 to 1, 86.9, 93.4 +NA,NA,a-exp-i3,2017-18,Marshfield - Gov Edward Winslow,01710020, 32.1, 100.0, 12.9 to 1, 87.5, 93.8 +NA,NA,a-exp-i3,2017-18,Marshfield - Marshfield High,01710505, 108.3, 99.1, 12.4 to 1, 87.9, 91.7 +NA,NA,a-exp-i3,2017-18,Marshfield - Martinson Elementary,01710025, 36.6, 100.0, 11.7 to 1, 88.2, 97.3 +NA,NA,a-exp-i3,2017-18,Marshfield - South River,01710010, 26.1, 100.0, 14.3 to 1, 92.3, 100.0 +NA,NA,a-exp-i3,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 71.2, 97.3, 8.9 to 1, 86.7, 85.3 +NA,NA,a-exp-i3,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 16.6, 93.1, 11.1 to 1, 76.0, 57.4 +NA,NA,a-exp-i3,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 34.9, 75.4, 10.4 to 1, 69.4, 88.5 +NA,NA,a-exp-i3,2017-18,Masconomet - Masconomet Regional High School,07050505, 80.8, 100.0, 14.2 to 1, 93.3, 96.0 +NA,NA,a-exp-i3,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 48.1, 99.2, 13.6 to 1, 90.9, 95.8 +NA,NA,a-exp-i3,2017-18,Mashpee - Kenneth Coombs School,01720005, 33.4, 100.0, 12.5 to 1, 88.0, 94.0 +NA,NA,a-exp-i3,2017-18,Mashpee - Mashpee High,01720505, 42.1, 100.0, 10.7 to 1, 87.9, 95.5 +NA,NA,a-exp-i3,2017-18,Mashpee - Mashpee Middle School,01720020, 21.6, 100.0, 12.5 to 1, 88.5, 90.3 +NA,NA,a-exp-i3,2017-18,Mashpee - Quashnet School,01720035, 43.1, 100.0, 11.3 to 1, 74.5, 95.4 +NA,NA,a-exp-i3,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 32.6, 100.0, 18.0 to 1, 61.3, 87.7 +NA,NA,a-exp-i3,2017-18,Mattapoisett - Center,01730005, 20.2, 100.0, 11.8 to 1, 94.3, 94.3 +NA,NA,a-exp-i3,2017-18,Mattapoisett - Old Hammondtown,01730010, 17.6, 100.0, 11.7 to 1, 85.0, 99.2 +NA,NA,a-exp-i3,2017-18,Maynard - Fowler School,01740305, 39.0, 100.0, 13.4 to 1, 89.7, 92.3 +NA,NA,a-exp-i3,2017-18,Maynard - Green Meadow,01740010, 29.5, 96.6, 16.5 to 1, 88.1, 96.6 +NA,NA,a-exp-i3,2017-18,Maynard - Maynard High,01740505, 30.0, 99.3, 13.0 to 1, 90.5, 90.0 +NA,NA,a-exp-i3,2017-18,Medfield - Dale Street,01750005, 28.9, 100.0, 12.6 to 1, 88.7, 92.1 +NA,NA,a-exp-i3,2017-18,Medfield - Medfield Senior High,01750505, 66.1, 98.5, 12.5 to 1, 79.6, 89.7 +NA,NA,a-exp-i3,2017-18,Medfield - Memorial School,01750003, 25.6, 100.0, 17.0 to 1, 83.8, 96.1 +NA,NA,a-exp-i3,2017-18,Medfield - Ralph Wheelock School,01750007, 25.7, 100.0, 14.7 to 1, 93.1, 98.3 +NA,NA,a-exp-i3,2017-18,Medfield - Thomas Blake Middle,01750305, 55.6, 100.0, 11.2 to 1, 94.1, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Brooks School,01760130, 42.0, 100.0, 12.0 to 1, 81.0, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Christopher Columbus,01760140, 36.5, 100.0, 10.3 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Curtis-Tufts,01760510, 5.4, 100.0, 2.4 to 1, 57.9, 98.1 +NA,NA,a-exp-i3,2017-18,Medford - John J McGlynn Elementary School,01760068, 38.6, 100.0, 13.6 to 1, 76.7, 97.5 +NA,NA,a-exp-i3,2017-18,Medford - John J. McGlynn Middle School,01760320, 51.4, 100.0, 9.0 to 1, 69.8, 97.1 +NA,NA,a-exp-i3,2017-18,Medford - Madeleine Dugger Andrews,01760315, 47.0, 100.0, 10.6 to 1, 76.6, 90.4 +NA,NA,a-exp-i3,2017-18,Medford - Medford High,01760505, 139.3, 97.1, 10.1 to 1, 74.8, 83.9 +NA,NA,a-exp-i3,2017-18,Medford - Milton Fuller Roberts,01760150, 44.3, 100.0, 12.2 to 1, 72.9, 97.7 +NA,NA,a-exp-i3,2017-18,Medway - Burke/Memorial Elementary School,01770015, 31.9, 100.0, 15.8 to 1, 87.4, 93.7 +NA,NA,a-exp-i3,2017-18,Medway - John D Mc Govern Elementary,01770013, 20.5, 100.0, 16.4 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Medway - Medway High,01770505, 46.5, 97.9, 15.6 to 1, 83.4, 94.6 +NA,NA,a-exp-i3,2017-18,Medway - Medway Middle,01770305, 56.8, 100.0, 12.4 to 1, 92.1, 94.7 +NA,NA,a-exp-i3,2017-18,Melrose - Early Childhood Center,01780003, 14.6, 93.2, 21.7 to 1, 85.8, 95.5 +NA,NA,a-exp-i3,2017-18,Melrose - Herbert Clark Hoover,01780017, 20.8, 100.0, 13.0 to 1, 71.1, 97.6 +NA,NA,a-exp-i3,2017-18,Melrose - Horace Mann,01780025, 17.3, 100.0, 16.3 to 1, 81.2, 94.2 +NA,NA,a-exp-i3,2017-18,Melrose - Lincoln,01780020, 30.8, 100.0, 13.6 to 1, 77.3, 100.0 +NA,NA,a-exp-i3,2017-18,Melrose - Melrose High,01780505, 70.0, 100.0, 14.3 to 1, 83.1, 92.0 +NA,NA,a-exp-i3,2017-18,Melrose - Melrose Middle,01780305, 57.9, 100.0, 13.4 to 1, 80.7, 81.9 +NA,NA,a-exp-i3,2017-18,Melrose - Roosevelt,01780035, 29.5, 96.6, 14.8 to 1, 72.0, 96.6 +NA,NA,a-exp-i3,2017-18,Melrose - Winthrop,01780050, 26.3, 100.0, 15.4 to 1, 67.6, 94.3 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Henry P Clough,07100179, 25.5, 100.0, 14.6 to 1, 92.2, 100.0 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Memorial School,07100001, 31.0, 96.8, 15.4 to 1, 83.9, 93.5 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 54.6, 100.0, 14.3 to 1, 97.3, 95.4 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 47.7, 98.7, 13.3 to 1, 82.0, 87.4 +NA,NA,a-exp-i3,2017-18,Methuen - Comprehensive Grammar School,01810050, 77.0, 98.7, 14.0 to 1, 81.8, 97.4 +NA,NA,a-exp-i3,2017-18,Methuen - Donald P Timony Grammar,01810060, 93.5, 100.0, 14.5 to 1, 84.8, 94.7 +NA,NA,a-exp-i3,2017-18,Methuen - Marsh Grammar School,01810030, 84.0, 99.0, 14.3 to 1, 89.2, 96.1 +NA,NA,a-exp-i3,2017-18,Methuen - Methuen High,01810505, 143.7, 97.2, 13.6 to 1, 85.0, 85.1 +NA,NA,a-exp-i3,2017-18,Methuen - Tenney Grammar School,01810055, 91.4, 100.0, 14.8 to 1, 94.3, 97.8 +NA,NA,a-exp-i3,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 42.0, 100.0, 13.4 to 1, 73.8, 95.2 +NA,NA,a-exp-i3,2017-18,Middleborough - John T. Nichols Middle,01820305, 51.8, 100.0, 15.1 to 1, 94.2, 96.2 +NA,NA,a-exp-i3,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 13.8 to 1, 83.7, 100.0 +NA,NA,a-exp-i3,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 19.0, 100.0, 15.3 to 1, 94.7, 100.0 +NA,NA,a-exp-i3,2017-18,Middleborough - Middleborough High,01820505, 67.2, 98.5, 10.7 to 1, 92.6, 94.0 +NA,NA,a-exp-i3,2017-18,Middleton - Fuller Meadow,01840003, 20.7, 100.0, 11.0 to 1, 84.3, 100.0 +NA,NA,a-exp-i3,2017-18,Middleton - Howe-Manning,01840005, 36.0, 100.0, 12.8 to 1, 93.8, 97.2 +NA,NA,a-exp-i3,2017-18,Milford - Brookside,01850065, 40.6, 100.0, 11.7 to 1, 90.7, 97.5 +NA,NA,a-exp-i3,2017-18,Milford - Memorial,01850010, 38.7, 100.0, 12.1 to 1, 87.9, 94.8 +NA,NA,a-exp-i3,2017-18,Milford - Milford High,01850505, 87.1, 99.9, 13.2 to 1, 90.4, 88.1 +NA,NA,a-exp-i3,2017-18,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 22.0 to 1, 38.9, 84.7 +NA,NA,a-exp-i3,2017-18,Milford - Stacy Middle,01850305, 77.8, 100.0, 12.6 to 1, 89.5, 88.4 +NA,NA,a-exp-i3,2017-18,Milford - Woodland,01850090, 79.9, 100.0, 12.1 to 1, 88.7, 100.0 +NA,NA,a-exp-i3,2017-18,Millbury - Elmwood Street,01860017, 38.0, 100.0, 15.3 to 1, 81.6, 97.4 +NA,NA,a-exp-i3,2017-18,Millbury - Millbury Junior/Senior High,01860505, 60.6, 100.0, 11.8 to 1, 81.8, 82.5 +NA,NA,a-exp-i3,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 28.7, 100.0, 15.2 to 1, 72.1, 96.5 +NA,NA,a-exp-i3,2017-18,Millis - Clyde F Brown,01870005, 34.9, 100.0, 14.4 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Millis - Millis High School,01870505, 26.5, 100.0, 14.8 to 1, 96.2, 96.2 +NA,NA,a-exp-i3,2017-18,Millis - Millis Middle,01870020, 30.9, 96.8, 13.2 to 1, 90.3, 98.7 +NA,NA,a-exp-i3,2017-18,Milton - Charles S Pierce Middle,01890410, 76.7, 96.1, 11.9 to 1, 79.5, 88.5 +NA,NA,a-exp-i3,2017-18,Milton - Collicot,01890005, 41.5, 99.3, 17.2 to 1, 78.3, 98.3 +NA,NA,a-exp-i3,2017-18,Milton - Cunningham School,01890007, 35.1, 100.0, 15.1 to 1, 76.4, 90.6 +NA,NA,a-exp-i3,2017-18,Milton - Glover,01890010, 38.3, 97.4, 15.3 to 1, 75.2, 90.9 +NA,NA,a-exp-i3,2017-18,Milton - Milton High,01890505, 77.7, 100.0, 13.2 to 1, 83.3, 87.4 +NA,NA,a-exp-i3,2017-18,Milton - Tucker,01890020, 29.7, 100.0, 14.8 to 1, 83.2, 88.2 +NA,NA,a-exp-i3,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 73.7, 97.3, 7.3 to 1, 89.3, 86.4 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 18.2, 100.0, 15.0 to 1, 78.0, 83.5 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Colrain Central,07170010, 8.9, 95.5, 11.9 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 36.9, 100.0, 10.5 to 1, 86.5, 94.6 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Sanderson Academy,07170020, 13.4, 100.0, 11.9 to 1, 77.6, 92.5 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 24.5, 91.8, 9.9 to 1, 73.5, 100.0 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 48.5, 97.9, 11.3 to 1, 86.6, 99.0 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.9, 98.3, 10.5 to 1, 82.4, 84.5 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 44.9, 100.0, 10.1 to 1, 76.2, 89.7 +NA,NA,a-exp-i3,2017-18,Monson - Granite Valley Middle,01910310, 26.5, 98.1, 10.5 to 1, 75.5, 93.4 +NA,NA,a-exp-i3,2017-18,Monson - Monson High School,01910505, 26.5, 98.1, 9.7 to 1, 79.2, 88.7 +NA,NA,a-exp-i3,2017-18,Monson - Quarry Hill Community School,01910025, 30.5, 100.0, 12.9 to 1, 90.2, 99.2 +NA,NA,a-exp-i3,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 113.5, 99.1, 12.5 to 1, 85.5, 82.4 +NA,NA,a-exp-i3,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 45.5, 100.0, 11.8 to 1, 93.4, 95.6 +NA,NA,a-exp-i3,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 100.5, 53.2, 15.6 to 1, 41.8, 76.6 +NA,NA,a-exp-i3,2017-18,Nahant - Johnson,01960010, 9.5, 97.9, 15.5 to 1, 91.1, 97.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Cyrus Peirce,01970010, 33.0, 93.9, 10.5 to 1, 69.7, 87.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket Elementary,01970005, 32.9, 97.0, 11.0 to 1, 72.6, 84.8 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket High,01970505, 47.0, 96.6, 11.3 to 1, 70.6, 65.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket Intermediate School,01970020, 29.5, 96.6, 12.7 to 1, 83.1, 93.2 +NA,NA,a-exp-i3,2017-18,Narragansett - Baldwinville Elementary,07200005, 17.2, 100.0, 16.8 to 1, 76.7, 73.9 +NA,NA,a-exp-i3,2017-18,Narragansett - Narragansett Middle,07200305, 29.3, 100.0, 15.6 to 1, 93.2, 88.0 +NA,NA,a-exp-i3,2017-18,Narragansett - Narragansett Regional High,07200505, 31.3, 93.6, 11.0 to 1, 77.6, 85.6 +NA,NA,a-exp-i3,2017-18,Narragansett - Phillipston Memorial,07200003, 9.0, 88.9, 18.8 to 1, 100.0, 97.8 +NA,NA,a-exp-i3,2017-18,Narragansett - Templeton Center,07200020, 10.8, 100.0, 15.7 to 1, 100.0, 97.0 +NA,NA,a-exp-i3,2017-18,Nashoba - Center School,07250020, 41.7, 100.0, 13.6 to 1, 79.4, 98.6 +NA,NA,a-exp-i3,2017-18,Nashoba - Florence Sawyer School,07250025, 60.6, 100.0, 12.6 to 1, 82.6, 98.4 +NA,NA,a-exp-i3,2017-18,Nashoba - Hale,07250310, 23.4, 100.0, 12.9 to 1, 79.0, 95.7 +NA,NA,a-exp-i3,2017-18,Nashoba - Luther Burbank Middle School,07250305, 23.2, 100.0, 10.7 to 1, 87.8, 91.4 +NA,NA,a-exp-i3,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 36.3, 100.0, 13.0 to 1, 87.0, 94.5 +NA,NA,a-exp-i3,2017-18,Nashoba - Nashoba Regional,07250505, 75.2, 98.7, 13.1 to 1, 84.8, 93.6 +NA,NA,a-exp-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.0, 98.4, 10.9 to 1, 73.4, 68.8 +NA,NA,a-exp-i3,2017-18,Natick - Bennett-Hemenway,01980005, 38.7, 100.0, 15.3 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Natick - Brown,01980010, 37.4, 100.0, 14.0 to 1, 64.7, 86.1 +NA,NA,a-exp-i3,2017-18,Natick - J F Kennedy Middle School,01980305, 53.0, 100.0, 12.1 to 1, 90.6, 91.5 +NA,NA,a-exp-i3,2017-18,Natick - Johnson,01980031, 20.4, 98.0, 11.2 to 1, 77.7, 100.0 +NA,NA,a-exp-i3,2017-18,Natick - Lilja Elementary,01980035, 27.9, 100.0, 15.4 to 1, 82.1, 89.2 +NA,NA,a-exp-i3,2017-18,Natick - Memorial,01980043, 27.8, 100.0, 14.9 to 1, 83.5, 96.4 +NA,NA,a-exp-i3,2017-18,Natick - Natick High,01980505, 120.8, 100.0, 14.3 to 1, 82.9, 89.2 +NA,NA,a-exp-i3,2017-18,Natick - Wilson Middle,01980310, 77.9, 99.9, 12.1 to 1, 68.3, 87.8 +NA,NA,a-exp-i3,2017-18,Nauset - Nauset Regional High,06600505, 81.6, 97.7, 11.2 to 1, 84.0, 89.2 +NA,NA,a-exp-i3,2017-18,Nauset - Nauset Regional Middle,06600305, 55.1, 97.7, 10.0 to 1, 81.8, 96.0 +NA,NA,a-exp-i3,2017-18,Needham - Broadmeadow,01990005, 32.4, 100.0, 16.8 to 1, 90.7, 90.7 +NA,NA,a-exp-i3,2017-18,Needham - High Rock School,01990410, 37.8, 100.0, 11.9 to 1, 96.0, 97.4 +NA,NA,a-exp-i3,2017-18,Needham - Hillside Elementary,01990035, 33.1, 100.0, 14.7 to 1, 87.9, 92.7 +NA,NA,a-exp-i3,2017-18,Needham - John Eliot,01990020, 24.2, 100.0, 16.2 to 1, 87.6, 100.0 +NA,NA,a-exp-i3,2017-18,Needham - Needham High,01990505, 124.6, 99.2, 13.5 to 1, 84.2, 93.6 +NA,NA,a-exp-i3,2017-18,Needham - Newman Elementary,01990050, 51.5, 97.2, 14.7 to 1, 83.6, 99.1 +NA,NA,a-exp-i3,2017-18,Needham - Pollard Middle,01990405, 74.0, 100.0, 11.5 to 1, 78.4, 87.0 +NA,NA,a-exp-i3,2017-18,Needham - William Mitchell,01990040, 30.6, 99.8, 16.3 to 1, 89.4, 99.8 +NA,NA,a-exp-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 57.8, 60.7, 9.2 to 1, 27.6, 84.4 +NA,NA,a-exp-i3,2017-18,New Bedford - Abraham Lincoln,02010095, 43.1, 100.0, 16.6 to 1, 86.1, 97.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Alfred J Gomes,02010063, 39.0, 97.4, 14.2 to 1, 66.7, 92.4 +NA,NA,a-exp-i3,2017-18,New Bedford - Betsey B Winslow,02010140, 17.9, 98.6, 17.3 to 1, 71.9, 90.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Carlos Pacheco,02010105, 27.8, 96.4, 12.9 to 1, 50.4, 92.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Casimir Pulaski,02010123, 48.5, 95.9, 15.0 to 1, 87.6, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Charles S Ashley,02010010, 18.2, 97.4, 15.5 to 1, 81.4, 94.5 +NA,NA,a-exp-i3,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 16.6, 91.3, 18.0 to 1, 91.3, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Ellen R Hathaway,02010075, 22.6, 97.7, 13.4 to 1, 44.3, 82.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Elwyn G Campbell,02010020, 18.3, 94.5, 15.0 to 1, 86.2, 91.8 +NA,NA,a-exp-i3,2017-18,New Bedford - Hayden/McFadden,02010078, 54.1, 92.6, 12.5 to 1, 33.4, 90.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 23.2, 97.0, 14.9 to 1, 64.4, 89.1 +NA,NA,a-exp-i3,2017-18,New Bedford - James B Congdon,02010040, 24.2, 100.0, 13.9 to 1, 81.6, 90.9 +NA,NA,a-exp-i3,2017-18,New Bedford - Jireh Swift,02010130, 13.4, 100.0, 16.1 to 1, 96.6, 96.3 +NA,NA,a-exp-i3,2017-18,New Bedford - John Avery Parker,02010115, 20.5, 90.3, 13.9 to 1, 41.5, 85.3 +NA,NA,a-exp-i3,2017-18,New Bedford - John B Devalles,02010050, 25.2, 97.1, 15.4 to 1, 66.4, 88.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Keith Middle School,02010405, 72.0, 88.2, 12.4 to 1, 57.0, 84.7 +NA,NA,a-exp-i3,2017-18,New Bedford - New Bedford High,02010505, 162.1, 94.3, 12.1 to 1, 71.7, 78.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Normandin Middle School,02010410, 78.6, 96.2, 16.0 to 1, 80.3, 78.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 20.3, 95.1, 11.0 to 1, 49.4, 95.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Roosevelt Middle School,02010415, 66.0, 97.0, 12.2 to 1, 78.8, 83.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 50.0, 86.0, 15.6 to 1, 66.0, 96.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Thomas R Rodman,02010125, 12.3, 92.9, 15.9 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Trinity Day Academy,02010510, 9.7, 74.1, 8.2 to 1, 58.6, 89.6 +NA,NA,a-exp-i3,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 15.7, 93.6, 6.4 to 1, 61.8, 55.4 +NA,NA,a-exp-i3,2017-18,New Bedford - William H Taylor,02010135, 17.8, 100.0, 14.7 to 1, 86.4, 97.3 +NA,NA,a-exp-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 31.5, 68.3, 13.4 to 1, 19.0, 71.4 +NA,NA,a-exp-i3,2017-18,New Salem-Wendell - Swift River,07280015, 14.3, 100.0, 10.6 to 1, 65.3, 86.0 +NA,NA,a-exp-i3,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 27.0, 100.0, 11.9 to 1, 89.3, 98.5 +NA,NA,a-exp-i3,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 53.3, 100.0, 11.5 to 1, 87.8, 100.0 +NA,NA,a-exp-i3,2017-18,Newburyport - Newburyport High,02040505, 63.2, 100.0, 12.2 to 1, 89.7, 96.8 +NA,NA,a-exp-i3,2017-18,Newburyport - Rupert A Nock Middle,02040305, 42.6, 100.0, 13.1 to 1, 92.7, 96.2 +NA,NA,a-exp-i3,2017-18,Newton - A E Angier,02070005, 39.9, 97.5, 11.7 to 1, 87.2, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Bigelow Middle,02070305, 52.1, 98.1, 10.0 to 1, 90.4, 98.1 +NA,NA,a-exp-i3,2017-18,Newton - Bowen,02070015, 32.9, 100.0, 12.8 to 1, 75.7, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - C C Burr,02070020, 29.7, 100.0, 13.0 to 1, 67.1, 93.3 +NA,NA,a-exp-i3,2017-18,Newton - Cabot,02070025, 30.7, 95.1, 12.7 to 1, 70.7, 96.7 +NA,NA,a-exp-i3,2017-18,Newton - Charles E Brown Middle,02070310, 66.9, 100.0, 11.3 to 1, 95.2, 90.7 +NA,NA,a-exp-i3,2017-18,Newton - Countryside,02070040, 36.9, 97.3, 11.1 to 1, 89.1, 97.3 +NA,NA,a-exp-i3,2017-18,Newton - F A Day Middle,02070315, 86.5, 98.8, 11.3 to 1, 83.8, 93.1 +NA,NA,a-exp-i3,2017-18,Newton - Franklin,02070055, 36.0, 93.1, 12.1 to 1, 69.7, 93.9 +NA,NA,a-exp-i3,2017-18,Newton - Horace Mann,02070075, 31.1, 94.8, 13.0 to 1, 80.0, 97.1 +NA,NA,a-exp-i3,2017-18,Newton - John Ward,02070120, 24.0, 100.0, 12.9 to 1, 83.3, 95.0 +NA,NA,a-exp-i3,2017-18,Newton - Lincoln-Eliot,02070070, 32.6, 98.5, 11.5 to 1, 83.2, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Mason-Rice,02070080, 32.0, 98.4, 16.0 to 1, 85.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Memorial Spaulding,02070105, 39.2, 100.0, 11.6 to 1, 85.7, 97.4 +NA,NA,a-exp-i3,2017-18,Newton - Newton Early Childhood Center,02070108, 15.3, 100.0, 12.9 to 1, 82.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Newton North High,02070505, 186.4, 98.6, 11.5 to 1, 86.7, 94.3 +NA,NA,a-exp-i3,2017-18,Newton - Newton South High,02070510, 156.6, 99.7, 12.1 to 1, 87.2, 94.5 +NA,NA,a-exp-i3,2017-18,Newton - Oak Hill Middle,02070320, 57.3, 99.1, 10.7 to 1, 80.0, 93.3 +NA,NA,a-exp-i3,2017-18,Newton - Peirce,02070100, 21.3, 100.0, 12.9 to 1, 93.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Underwood,02070115, 23.0, 100.0, 12.3 to 1, 87.0, 91.3 +NA,NA,a-exp-i3,2017-18,Newton - Williams,02070125, 22.8, 97.8, 13.0 to 1, 73.7, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Zervas,02070130, 32.4, 96.9, 12.6 to 1, 81.5, 96.9 +NA,NA,a-exp-i3,2017-18,Norfolk - Freeman-Kennedy School,02080005, 39.2, 97.4, 12.5 to 1, 89.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norfolk - H Olive Day,02080015, 36.6, 100.0, 12.6 to 1, 83.6, 95.9 +NA,NA,a-exp-i3,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 55.9, 98.2, 9.8 to 1, 76.7, 78.5 +NA,NA,a-exp-i3,2017-18,North Adams - Brayton,02090035, 27.7, 96.4, 9.4 to 1, 96.4, 92.8 +NA,NA,a-exp-i3,2017-18,North Adams - Colegrove Park Elementary,02090008, 26.5, 96.2, 13.6 to 1, 70.7, 78.3 +NA,NA,a-exp-i3,2017-18,North Adams - Drury High,02090505, 45.8, 93.4, 11.4 to 1, 81.4, 82.0 +NA,NA,a-exp-i3,2017-18,North Adams - Greylock,02090015, 23.7, 100.0, 12.5 to 1, 87.3, 93.7 +NA,NA,a-exp-i3,2017-18,North Andover - Annie L Sargent School,02110018, 31.5, 100.0, 17.8 to 1, 94.5, 100.0 +NA,NA,a-exp-i3,2017-18,North Andover - Atkinson,02110001, 34.6, 97.1, 16.4 to 1, 85.6, 98.4 +NA,NA,a-exp-i3,2017-18,North Andover - Franklin,02110010, 29.2, 100.0, 15.5 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,North Andover - Kittredge,02110015, 17.4, 100.0, 16.6 to 1, 88.5, 97.5 +NA,NA,a-exp-i3,2017-18,North Andover - North Andover High,02110505, 90.7, 96.9, 16.4 to 1, 82.9, 91.8 +NA,NA,a-exp-i3,2017-18,North Andover - North Andover Middle,02110305, 73.6, 100.0, 15.0 to 1, 87.8, 90.5 +NA,NA,a-exp-i3,2017-18,North Andover - Thomson,02110020, 23.9, 100.0, 14.4 to 1, 90.4, 95.8 +NA,NA,a-exp-i3,2017-18,North Attleborough - Amvet Boulevard,02120007, 23.3, 100.0, 17.1 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - Community,02120030, 30.7, 100.0, 10.4 to 1, 83.7, 93.5 +NA,NA,a-exp-i3,2017-18,North Attleborough - Falls,02120010, 17.4, 100.0, 15.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 36.0, 100.0, 17.7 to 1, 86.2, 94.4 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleboro High,02120505, 80.7, 100.0, 14.3 to 1, 88.6, 95.1 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 18.0 to 1, 57.2, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleborough Middle,02120305, 73.4, 100.0, 14.8 to 1, 79.6, 93.2 +NA,NA,a-exp-i3,2017-18,North Attleborough - Roosevelt Avenue,02120015, 17.3, 100.0, 16.3 to 1, 95.5, 95.5 +NA,NA,a-exp-i3,2017-18,North Brookfield - North Brookfield Elementary,02150015, 23.0, 95.7, 14.3 to 1, 58.7, 95.7 +NA,NA,a-exp-i3,2017-18,North Brookfield - North Brookfield High,02150505, 21.7, 95.4, 10.5 to 1, 81.6, 86.2 +NA,NA,a-exp-i3,2017-18,North Middlesex - Ashby Elementary,07350010, 18.5, 100.0, 9.9 to 1, 87.6, 93.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Hawthorne Brook,07350030, 42.0, 100.0, 12.0 to 1, 78.6, 95.2 +NA,NA,a-exp-i3,2017-18,North Middlesex - Nissitissit Middle School,07350310, 48.4, 97.9, 10.8 to 1, 85.5, 89.7 +NA,NA,a-exp-i3,2017-18,North Middlesex - North Middlesex Regional,07350505, 60.0, 98.3, 13.3 to 1, 74.9, 95.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 1.0, 100.0, 18.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Spaulding Memorial,07350005, 32.0, 100.0, 13.2 to 1, 84.4, 96.9 +NA,NA,a-exp-i3,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 4.7, 100.0, 19.1 to 1, 78.7, 100.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Varnum Brook,07350035, 42.3, 100.0, 12.7 to 1, 96.5, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - E Ethel Little School,02170003, 23.7, 100.0, 13.9 to 1, 97.9, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - J Turner Hood,02170010, 28.2, 100.0, 11.9 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - L D Batchelder,02170005, 31.1, 96.8, 14.9 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - North Reading High,02170505, 69.8, 100.0, 11.6 to 1, 88.7, 92.2 +NA,NA,a-exp-i3,2017-18,North Reading - North Reading Middle,02170305, 45.2, 100.0, 12.1 to 1, 95.6, 97.8 +NA,NA,a-exp-i3,2017-18,Northampton - Bridge Street,02100005, 29.9, 100.0, 9.2 to 1, 83.9, 90.6 +NA,NA,a-exp-i3,2017-18,Northampton - Jackson Street,02100020, 31.2, 100.0, 11.5 to 1, 83.3, 96.2 +NA,NA,a-exp-i3,2017-18,Northampton - John F Kennedy Middle School,02100410, 60.6, 100.0, 10.1 to 1, 82.8, 91.1 +NA,NA,a-exp-i3,2017-18,Northampton - Leeds,02100025, 28.5, 100.0, 11.3 to 1, 75.4, 100.0 +NA,NA,a-exp-i3,2017-18,Northampton - Northampton High,02100505, 56.8, 99.1, 15.3 to 1, 93.0, 94.7 +NA,NA,a-exp-i3,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 24.5, 100.0, 9.0 to 1, 91.8, 95.9 +NA,NA,a-exp-i3,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 56.0, 94.6, 8.9 to 1, 76.8, 73.2 +NA,NA,a-exp-i3,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 114.8, 99.3, 12.8 to 1, 88.6, 94.9 +NA,NA,a-exp-i3,2017-18,Northborough - Fannie E Proctor,02130015, 18.4, 100.0, 13.5 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Lincoln Street,02130003, 14.7, 100.0, 17.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Marguerite E Peaslee,02130014, 16.0, 100.0, 17.2 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Marion E Zeh,02130020, 12.9, 100.0, 18.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Robert E. Melican Middle School,02130305, 51.5, 100.0, 12.1 to 1, 83.1, 90.6 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge Elementary,02140005, 27.7, 100.0, 13.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge High,02140505, 49.9, 100.0, 11.4 to 1, 89.2, 92.0 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge Middle,02140305, 49.0, 100.0, 14.8 to 1, 89.8, 93.9 +NA,NA,a-exp-i3,2017-18,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 13.5 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 115.3, 97.0, 10.8 to 1, 86.3, 85.9 +NA,NA,a-exp-i3,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.4, 94.6, 10.5 to 1, 92.6, 93.5 +NA,NA,a-exp-i3,2017-18,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 13.8 to 1, 82.1, 96.5 +NA,NA,a-exp-i3,2017-18,Norton - J C Solmonese,02180015, 36.5, 100.0, 12.7 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norton - L G Nourse Elementary,02180010, 21.8, 100.0, 13.1 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Norton - Norton High,02180505, 56.2, 96.4, 13.2 to 1, 80.2, 83.1 +NA,NA,a-exp-i3,2017-18,Norton - Norton Middle,02180305, 51.6, 100.0, 11.4 to 1, 87.1, 94.2 +NA,NA,a-exp-i3,2017-18,Norwell - Grace Farrar Cole,02190005, 33.8, 100.0, 14.1 to 1, 85.9, 97.0 +NA,NA,a-exp-i3,2017-18,Norwell - Norwell High,02190505, 51.9, 100.0, 13.4 to 1, 94.2, 96.1 +NA,NA,a-exp-i3,2017-18,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.7 to 1, 97.7, 95.4 +NA,NA,a-exp-i3,2017-18,Norwell - William G Vinal,02190020, 33.7, 100.0, 15.4 to 1, 82.2, 97.0 +NA,NA,a-exp-i3,2017-18,Norwood - Balch,02200005, 24.2, 100.0, 12.2 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Charles J Prescott,02200025, 20.1, 100.0, 12.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Cornelius M Callahan,02200010, 20.3, 100.0, 10.8 to 1, 80.3, 95.1 +NA,NA,a-exp-i3,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 62.9, 100.0, 11.7 to 1, 86.6, 93.0 +NA,NA,a-exp-i3,2017-18,Norwood - F A Cleveland,02200015, 27.0, 100.0, 12.1 to 1, 96.3, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - George F. Willett,02200075, 24.9, 100.0, 15.6 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - John P Oldham,02200020, 21.7, 100.0, 10.5 to 1, 90.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Norwood High,02200505, 69.7, 100.0, 13.7 to 1, 91.0, 93.0 +NA,NA,a-exp-i3,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 46.5, 98.8, 9.2 to 1, 80.7, 88.6 +NA,NA,a-exp-i3,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 57.0, 96.5, 9.4 to 1, 80.6, 80.2 +NA,NA,a-exp-i3,2017-18,Old Rochester - Old Rochester Regional High,07400505, 53.7, 100.0, 14.5 to 1, 91.0, 96.3 +NA,NA,a-exp-i3,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 12.9 to 1, 89.2, 97.3 +NA,NA,a-exp-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 14.2, 100.0, 11.2 to 1, 15.7, 78.9 +NA,NA,a-exp-i3,2017-18,Orange - Dexter Park,02230010, 23.1, 100.0, 13.6 to 1, 78.1, 89.1 +NA,NA,a-exp-i3,2017-18,Orange - Fisher Hill,02230015, 21.9, 100.0, 12.8 to 1, 68.4, 88.8 +NA,NA,a-exp-i3,2017-18,Orleans - Orleans Elementary,02240005, 21.6, 100.0, 10.3 to 1, 92.1, 97.7 +NA,NA,a-exp-i3,2017-18,Oxford - Alfred M Chaffee,02260010, 20.0, 100.0, 14.5 to 1, 87.8, 97.8 +NA,NA,a-exp-i3,2017-18,Oxford - Clara Barton,02260005, 24.5, 100.0, 15.6 to 1, 89.5, 93.6 +NA,NA,a-exp-i3,2017-18,Oxford - Oxford High,02260505, 40.8, 100.0, 13.3 to 1, 86.5, 83.8 +NA,NA,a-exp-i3,2017-18,Oxford - Oxford Middle,02260405, 30.7, 100.0, 14.4 to 1, 95.4, 93.5 +NA,NA,a-exp-i3,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 7.2, 100.0, 3.8 to 1, 97.9, 58.0 +NA,NA,a-exp-i3,2017-18,Palmer - Old Mill Pond,02270008, 57.0, 100.0, 12.1 to 1, 84.2, 98.2 +NA,NA,a-exp-i3,2017-18,Palmer - Palmer High,02270505, 62.0, 100.0, 11.5 to 1, 89.4, 93.5 +NA,NA,a-exp-i3,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 73.7, 91.9, 8.3 to 1, 82.4, 85.8 +NA,NA,a-exp-i3,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.0, 57.9, 7.7 to 1, 40.8, 74.3 +NA,NA,a-exp-i3,2017-18,Peabody - Captain Samuel Brown,02290005, 29.3, 99.5, 12.2 to 1, 96.1, 99.3 +NA,NA,a-exp-i3,2017-18,Peabody - Center,02290015, 26.1, 99.5, 15.1 to 1, 85.4, 94.3 +NA,NA,a-exp-i3,2017-18,Peabody - J Henry Higgins Middle,02290305, 94.0, 98.4, 14.5 to 1, 87.8, 92.0 +NA,NA,a-exp-i3,2017-18,Peabody - John E Burke,02290007, 23.4, 99.5, 11.2 to 1, 79.2, 96.9 +NA,NA,a-exp-i3,2017-18,Peabody - John E. McCarthy,02290016, 25.9, 100.0, 13.7 to 1, 91.0, 98.5 +NA,NA,a-exp-i3,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 126.2, 96.0, 11.7 to 1, 87.3, 91.1 +NA,NA,a-exp-i3,2017-18,Peabody - South Memorial,02290035, 28.8, 96.1, 16.2 to 1, 86.4, 96.5 +NA,NA,a-exp-i3,2017-18,Peabody - Thomas Carroll,02290010, 41.6, 100.0, 15.0 to 1, 78.4, 99.5 +NA,NA,a-exp-i3,2017-18,Peabody - West Memorial,02290045, 20.1, 98.8, 12.3 to 1, 82.2, 93.4 +NA,NA,a-exp-i3,2017-18,Peabody - William A Welch Sr,02290027, 24.2, 100.0, 14.9 to 1, 89.7, 89.7 +NA,NA,a-exp-i3,2017-18,Pelham - Pelham Elementary,02300005, 11.5, 98.3, 11.0 to 1, 67.0, 91.3 +NA,NA,a-exp-i3,2017-18,Pembroke - Bryantville Elementary,02310003, 31.9, 100.0, 15.7 to 1, 87.5, 98.2 +NA,NA,a-exp-i3,2017-18,Pembroke - Hobomock Elementary,02310010, 29.7, 100.0, 14.3 to 1, 87.4, 91.3 +NA,NA,a-exp-i3,2017-18,Pembroke - North Pembroke Elementary,02310015, 39.9, 100.0, 13.8 to 1, 92.5, 97.3 +NA,NA,a-exp-i3,2017-18,Pembroke - Pembroke Community Middle School,02310305, 31.1, 100.0, 16.0 to 1, 95.2, 99.7 +NA,NA,a-exp-i3,2017-18,Pembroke - Pembroke High School,02310505, 65.8, 98.5, 14.0 to 1, 85.0, 88.0 +NA,NA,a-exp-i3,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 16.4, 100.0, 13.3 to 1, 74.6, 96.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Dr John C Page School,07450015, 27.7, 100.0, 12.3 to 1, 91.6, 95.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Elmer S Bagnall,07450005, 38.4, 100.0, 13.2 to 1, 84.8, 95.3 +NA,NA,a-exp-i3,2017-18,Pentucket - Helen R Donaghue School,07450010, 22.3, 100.0, 10.8 to 1, 84.0, 96.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Pentucket Regional Middle,07450405, 31.5, 100.0, 13.4 to 1, 94.6, 91.7 +NA,NA,a-exp-i3,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 58.1, 100.0, 12.8 to 1, 87.5, 89.8 +NA,NA,a-exp-i3,2017-18,Petersham - Petersham Center,02340005, 11.3, 82.5, 10.3 to 1, 79.4, 96.9 +NA,NA,a-exp-i3,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 13.3, 63.9, 15.3 to 1, 0.0, 62.4 +NA,NA,a-exp-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 16.0, 43.8, 12.3 to 1, 31.3, 68.8 +NA,NA,a-exp-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 66.5, 71.0, 10.0 to 1, 19.4, 87.9 +NA,NA,a-exp-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 30.7, 65.8, 11.6 to 1, 16.3, 71.5 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 13.7, 100.0, 11.5 to 1, 92.7, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Northfield Elementary,07500008, 17.5, 96.8, 10.6 to 1, 88.2, 97.1 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 6.6, 100.0, 5.0 to 1, 69.8, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 29.2, 96.6, 12.3 to 1, 89.7, 93.2 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Warwick Community School,07500009, 6.9, 100.0, 8.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.6, 72.2, 7.8 to 1, 50.3, 78.3 +NA,NA,a-exp-i3,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 44.1, 67.3, 9.1 to 1, 81.3, 72.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Allendale,02360010, 21.3, 100.0, 13.5 to 1, 85.9, 100.0 +NA,NA,a-exp-i3,2017-18,Pittsfield - Crosby,02360065, 35.2, 94.3, 12.7 to 1, 71.6, 85.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Egremont,02360035, 29.0, 96.6, 14.6 to 1, 79.3, 93.1 +NA,NA,a-exp-i3,2017-18,Pittsfield - John T Reid Middle,02360305, 52.6, 100.0, 10.5 to 1, 93.3, 91.2 +NA,NA,a-exp-i3,2017-18,Pittsfield - Morningside Community School,02360055, 36.5, 94.5, 10.6 to 1, 72.6, 91.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Pittsfield High,02360505, 80.5, 100.0, 10.6 to 1, 85.2, 82.1 +NA,NA,a-exp-i3,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 16.0, 100.0, 13.5 to 1, 97.4, 98.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Silvio O Conte Community,02360105, 30.8, 100.0, 11.7 to 1, 76.3, 87.9 +NA,NA,a-exp-i3,2017-18,Pittsfield - Stearns,02360090, 15.7, 100.0, 15.6 to 1, 71.9, 87.2 +NA,NA,a-exp-i3,2017-18,Pittsfield - Taconic High,02360510, 73.1, 98.6, 10.0 to 1, 93.5, 90.3 +NA,NA,a-exp-i3,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 50.7, 100.0, 12.7 to 1, 85.3, 79.7 +NA,NA,a-exp-i3,2017-18,Pittsfield - Williams,02360100, 21.9, 95.4, 14.6 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Plainville - Anna Ware Jackson,02380010, 27.3, 97.8, 14.8 to 1, 81.3, 97.8 +NA,NA,a-exp-i3,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 21.0, 98.1, 14.4 to 1, 80.9, 96.2 +NA,NA,a-exp-i3,2017-18,Plymouth - Cold Spring,02390005, 21.7, 97.2, 11.7 to 1, 75.1, 91.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Federal Furnace School,02390011, 36.9, 97.3, 10.5 to 1, 79.7, 96.9 +NA,NA,a-exp-i3,2017-18,Plymouth - Hedge,02390010, 21.7, 100.0, 7.1 to 1, 70.8, 96.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Indian Brook,02390012, 41.7, 100.0, 13.6 to 1, 80.5, 99.2 +NA,NA,a-exp-i3,2017-18,Plymouth - Manomet Elementary,02390015, 22.6, 95.6, 12.7 to 1, 74.7, 97.3 +NA,NA,a-exp-i3,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 44.5, 97.8, 12.3 to 1, 89.8, 96.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 84.6, 100.0, 12.1 to 1, 87.7, 95.3 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 15.6 to 1, 77.8, 100.0 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth North High,02390505, 104.2, 98.7, 12.3 to 1, 77.0, 83.7 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth South High,02390515, 105.5, 96.0, 10.4 to 1, 87.2, 90.4 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth South Middle,02390305, 57.2, 100.0, 12.7 to 1, 95.1, 98.3 +NA,NA,a-exp-i3,2017-18,Plymouth - South Elementary,02390046, 50.1, 99.2, 13.0 to 1, 73.2, 95.6 +NA,NA,a-exp-i3,2017-18,Plymouth - West Elementary,02390047, 33.9, 100.0, 11.6 to 1, 83.1, 98.5 +NA,NA,a-exp-i3,2017-18,Plympton - Dennett Elementary,02400010, 18.3, 100.0, 11.3 to 1, 88.5, 100.0 +NA,NA,a-exp-i3,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 111.1, 81.6, 10.2 to 1, 49.9, 88.8 +NA,NA,a-exp-i3,2017-18,Provincetown - Provincetown Schools,02420020, 19.1, 100.0, 6.3 to 1, 80.6, 85.9 +NA,NA,a-exp-i3,2017-18,Quabbin - Hardwick Elementary,07530005, 13.2, 100.0, 14.7 to 1, 75.8, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Hubbardston Center,07530010, 19.3, 100.0, 16.5 to 1, 73.1, 94.8 +NA,NA,a-exp-i3,2017-18,Quabbin - IB School of Quabbin,07530515, 1.3, 100.0, 9.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - New Braintree Grade,07530020, 4.0, 100.0, 13.5 to 1, 95.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Oakham Center,07530025, 6.8, 100.0, 19.0 to 1, 97.1, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Quabbin Regional High School,07530505, 45.1, 100.0, 14.6 to 1, 86.7, 95.6 +NA,NA,a-exp-i3,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 27.5, 96.4, 14.4 to 1, 96.4, 96.4 +NA,NA,a-exp-i3,2017-18,Quabbin - Ruggles Lane,07530030, 30.3, 100.0, 15.3 to 1, 82.8, 96.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 31.2, 96.8, 11.8 to 1, 85.9, 85.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 17.7, 100.0, 13.4 to 1, 79.6, 85.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Warren Elementary,07780005, 36.4, 80.8, 12.2 to 1, 85.2, 94.5 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 19.0, 94.7, 16.0 to 1, 84.2, 94.7 +NA,NA,a-exp-i3,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 13.0, 100.0, 14.8 to 1, 84.6, 92.3 +NA,NA,a-exp-i3,2017-18,Quincy - Atherton Hough,02430040, 24.4, 95.9, 10.3 to 1, 82.8, 99.2 +NA,NA,a-exp-i3,2017-18,Quincy - Atlantic Middle,02430305, 33.4, 100.0, 14.9 to 1, 100.0, 97.0 +NA,NA,a-exp-i3,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 25.5, 100.0, 13.8 to 1, 81.6, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Broad Meadows Middle,02430310, 29.5, 96.6, 13.0 to 1, 79.8, 83.2 +NA,NA,a-exp-i3,2017-18,Quincy - Central Middle,02430315, 42.4, 100.0, 15.0 to 1, 95.3, 95.3 +NA,NA,a-exp-i3,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 23.0, 100.0, 14.4 to 1, 95.6, 95.6 +NA,NA,a-exp-i3,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 43.2, 100.0, 13.1 to 1, 95.8, 95.8 +NA,NA,a-exp-i3,2017-18,Quincy - Francis W Parker,02430075, 27.3, 100.0, 11.5 to 1, 88.3, 95.6 +NA,NA,a-exp-i3,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 39.2, 97.4, 13.2 to 1, 81.1, 99.0 +NA,NA,a-exp-i3,2017-18,Quincy - Merrymount,02430060, 22.9, 100.0, 15.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Montclair,02430065, 27.7, 100.0, 14.9 to 1, 91.6, 97.1 +NA,NA,a-exp-i3,2017-18,Quincy - North Quincy High,02430510, 88.4, 97.7, 13.8 to 1, 91.7, 94.3 +NA,NA,a-exp-i3,2017-18,Quincy - Point Webster Middle,02430325, 28.0, 100.0, 12.7 to 1, 72.5, 84.1 +NA,NA,a-exp-i3,2017-18,Quincy - Quincy High,02430505, 119.5, 99.2, 12.9 to 1, 88.5, 88.3 +NA,NA,a-exp-i3,2017-18,Quincy - Reay E Sterling Middle,02430320, 29.5, 100.0, 12.3 to 1, 85.6, 80.7 +NA,NA,a-exp-i3,2017-18,Quincy - Snug Harbor Community School,02430090, 34.8, 97.1, 13.3 to 1, 84.5, 84.5 +NA,NA,a-exp-i3,2017-18,Quincy - Squantum,02430095, 25.9, 100.0, 13.3 to 1, 96.1, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Wollaston School,02430110, 23.7, 100.0, 14.0 to 1, 93.7, 91.6 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 100.0,###### to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 59.6, 98.3, 10.8 to 1, 93.3, 95.0 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - The Gateway to College,07550525, .0, 100.0,###### to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 21.3, 100.0, 14.0 to 1, 84.7, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - J F Kennedy Elementary,02440018, 39.9, 100.0, 11.7 to 1, 87.5, 92.5 +NA,NA,a-exp-i3,2017-18,Randolph - Margaret L Donovan,02440015, 29.0, 100.0, 15.2 to 1, 79.3, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Martin E Young Elementary,02440040, 27.8, 100.0, 11.1 to 1, 89.2, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Randolph Community Middle,02440410, 58.5, 100.0, 10.3 to 1, 78.1, 79.5 +NA,NA,a-exp-i3,2017-18,Randolph - Randolph High,02440505, 60.7, 100.0, 11.7 to 1, 83.5, 91.8 +NA,NA,a-exp-i3,2017-18,Reading - Alice M Barrows,02460002, 24.2, 100.0, 15.6 to 1, 81.0, 91.7 +NA,NA,a-exp-i3,2017-18,Reading - Arthur W Coolidge Middle,02460305, 37.6, 100.0, 12.7 to 1, 85.4, 89.4 +NA,NA,a-exp-i3,2017-18,Reading - Birch Meadow,02460005, 30.6, 100.0, 12.1 to 1, 77.1, 96.7 +NA,NA,a-exp-i3,2017-18,Reading - J Warren Killam,02460017, 29.0, 100.0, 14.5 to 1, 86.7, 96.5 +NA,NA,a-exp-i3,2017-18,Reading - Joshua Eaton,02460010, 28.5, 100.0, 13.6 to 1, 84.6, 93.0 +NA,NA,a-exp-i3,2017-18,Reading - RISE PreSchool,02460001, 7.3, 100.0, 12.9 to 1, 91.8, 100.0 +NA,NA,a-exp-i3,2017-18,Reading - Reading Memorial High,02460505, 81.9, 100.0, 15.1 to 1, 89.9, 96.8 +NA,NA,a-exp-i3,2017-18,Reading - Walter S Parker Middle,02460310, 46.3, 100.0, 12.2 to 1, 91.4, 93.5 +NA,NA,a-exp-i3,2017-18,Reading - Wood End Elementary School,02460020, 20.3, 100.0, 14.3 to 1, 92.6, 100.0 +NA,NA,a-exp-i3,2017-18,Revere - A. C. Whelan Elementary School,02480003, 50.0, 100.0, 15.1 to 1, 82.0, 94.0 +NA,NA,a-exp-i3,2017-18,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 16.5 to 1, 73.8, 92.9 +NA,NA,a-exp-i3,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 31.1, 100.0, 12.0 to 1, 84.1, 95.7 +NA,NA,a-exp-i3,2017-18,Revere - Garfield Elementary School,02480056, 53.2, 100.0, 14.4 to 1, 86.8, 97.2 +NA,NA,a-exp-i3,2017-18,Revere - Garfield Middle School,02480057, 44.5, 100.0, 12.1 to 1, 70.8, 74.2 +NA,NA,a-exp-i3,2017-18,Revere - Paul Revere,02480050, 36.0, 100.0, 13.1 to 1, 80.6, 97.2 +NA,NA,a-exp-i3,2017-18,Revere - Revere High,02480505, 129.2, 97.7, 15.4 to 1, 81.9, 94.6 +NA,NA,a-exp-i3,2017-18,Revere - Rumney Marsh Academy,02480014, 48.2, 100.0, 12.4 to 1, 73.0, 85.5 +NA,NA,a-exp-i3,2017-18,Revere - Seacoast School,02480520, 13.0, 100.0, 6.3 to 1, 52.5, 79.5 +NA,NA,a-exp-i3,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 45.5, 100.0, 15.6 to 1, 89.0, 93.4 +NA,NA,a-exp-i3,2017-18,Revere - Susan B. Anthony Middle School,02480305, 46.0, 100.0, 12.4 to 1, 80.4, 91.3 +NA,NA,a-exp-i3,2017-18,Richmond - Richmond Consolidated,02490005, 19.2, 97.9, 9.3 to 1, 99.0, 90.6 +NA,NA,a-exp-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 61.0, 68.4, 10.8 to 1, 52.9, 82.0 +NA,NA,a-exp-i3,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 20.8, 91.3, 13.9 to 1, 75.8, 75.9 +NA,NA,a-exp-i3,2017-18,Rochester - Rochester Memorial,02500005, 38.1, 100.0, 13.1 to 1, 91.3, 99.2 +NA,NA,a-exp-i3,2017-18,Rockland - Jefferson Elementary School,02510060, 24.2, 97.9, 12.6 to 1, 69.8, 93.8 +NA,NA,a-exp-i3,2017-18,Rockland - John W Rogers Middle,02510305, 50.2, 100.0, 12.9 to 1, 78.5, 94.0 +NA,NA,a-exp-i3,2017-18,Rockland - Memorial Park,02510020, 26.1, 98.1, 10.8 to 1, 70.9, 98.1 +NA,NA,a-exp-i3,2017-18,Rockland - R Stewart Esten,02510025, 26.3, 100.0, 11.8 to 1, 74.4, 88.6 +NA,NA,a-exp-i3,2017-18,Rockland - Rockland Senior High,02510505, 47.0, 100.0, 13.7 to 1, 83.0, 89.8 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport Elementary,02520005, 27.9, 100.0, 14.1 to 1, 89.2, 100.0 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport High,02520510, 30.9, 99.1, 9.3 to 1, 79.0, 74.8 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport Middle,02520305, 29.8, 96.0, 7.6 to 1, 76.8, 97.5 +NA,NA,a-exp-i3,2017-18,Rowe - Rowe Elementary,02530005, 8.0, 100.0, 8.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 117.9, 55.7, 12.1 to 1, 22.8, 85.1 +NA,NA,a-exp-i3,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 66.0, 91.7, 23.8 to 1, 75.7, 77.1 +NA,NA,a-exp-i3,2017-18,Salem - Bates,02580003, 26.9, 99.4, 12.7 to 1, 79.0, 88.9 +NA,NA,a-exp-i3,2017-18,Salem - Carlton,02580015, 23.0, 99.6, 11.0 to 1, 56.0, 95.6 +NA,NA,a-exp-i3,2017-18,Salem - Collins Middle,02580305, 55.2, 100.0, 9.7 to 1, 75.6, 83.7 +NA,NA,a-exp-i3,2017-18,Salem - Horace Mann Laboratory,02580030, 25.2, 99.6, 10.8 to 1, 87.7, 98.0 +NA,NA,a-exp-i3,2017-18,Salem - Nathaniel Bowditch,02580025, 39.2, 96.9, 9.6 to 1, 47.5, 77.1 +NA,NA,a-exp-i3,2017-18,Salem - New Liberty Innovation School,02580510, 4.5, 100.0, 10.0 to 1, 22.2, 88.9 +NA,NA,a-exp-i3,2017-18,Salem - Salem Early Childhood,02580001, 7.0, 100.0, 13.3 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Salem - Salem High,02580505, 97.8, 93.4, 9.4 to 1, 83.5, 92.8 +NA,NA,a-exp-i3,2017-18,Salem - Salem Prep High School,02580515, 5.6, 100.0, 4.6 to 1, 89.3, 100.0 +NA,NA,a-exp-i3,2017-18,Salem - Saltonstall School,02580050, 31.4, 99.4, 11.9 to 1, 96.2, 92.0 +NA,NA,a-exp-i3,2017-18,Salem - Witchcraft Heights,02580070, 41.5, 99.6, 11.0 to 1, 75.8, 100.0 +NA,NA,a-exp-i3,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 46.1, 75.6, 10.3 to 1, 54.4, 66.7 +NA,NA,a-exp-i3,2017-18,Sandwich - Forestdale School,02610002, 50.4, 98.0, 12.5 to 1, 79.8, 94.1 +NA,NA,a-exp-i3,2017-18,Sandwich - Oak Ridge,02610025, 57.5, 100.0, 14.3 to 1, 80.3, 94.8 +NA,NA,a-exp-i3,2017-18,Sandwich - Sandwich High,02610505, 53.9, 100.0, 12.4 to 1, 84.1, 86.4 +NA,NA,a-exp-i3,2017-18,Sandwich - Sandwich STEM Academy,02610305, 38.1, 100.0, 12.1 to 1, 83.6, 87.3 +NA,NA,a-exp-i3,2017-18,Saugus - Belmonte Saugus Middle,02620305, 54.8, 98.2, 11.9 to 1, 81.7, 87.2 +NA,NA,a-exp-i3,2017-18,Saugus - Douglas Waybright,02620067, 15.2, 100.0, 15.2 to 1, 97.8, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Lynnhurst,02620040, 19.2, 100.0, 14.1 to 1, 98.3, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Oaklandvale,02620050, 15.6, 100.0, 15.4 to 1, 85.1, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Saugus High,02620505, 54.4, 100.0, 12.1 to 1, 93.5, 92.6 +NA,NA,a-exp-i3,2017-18,Saugus - Veterans Memorial,02620065, 42.3, 100.0, 12.8 to 1, 78.7, 95.3 +NA,NA,a-exp-i3,2017-18,Savoy - Emma L Miller Elementary School,02630010, 4.9, 100.0, 12.2 to 1, 68.3, 100.0 +NA,NA,a-exp-i3,2017-18,Scituate - Cushing Elementary,02640007, 27.5, 100.0, 11.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Scituate - Gates Middle School,02640305, 58.2, 100.0, 12.4 to 1, 86.3, 94.8 +NA,NA,a-exp-i3,2017-18,Scituate - Hatherly Elementary,02640010, 29.3, 100.0, 9.2 to 1, 79.5, 95.9 +NA,NA,a-exp-i3,2017-18,Scituate - Jenkins Elementary School,02640015, 32.2, 100.0, 11.2 to 1, 89.8, 93.2 +NA,NA,a-exp-i3,2017-18,Scituate - Scituate High School,02640505, 65.0, 99.4, 14.2 to 1, 85.8, 94.8 +NA,NA,a-exp-i3,2017-18,Scituate - Wampatuck Elementary,02640020, 32.3, 100.0, 12.4 to 1, 85.1, 99.7 +NA,NA,a-exp-i3,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.1, 100.0, 11.4 to 1, 87.8, 93.2 +NA,NA,a-exp-i3,2017-18,Seekonk - George R Martin,02650007, 35.7, 100.0, 13.4 to 1, 94.4, 100.0 +NA,NA,a-exp-i3,2017-18,Seekonk - Mildred Aitken School,02650015, 31.7, 100.0, 13.5 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Seekonk - Seekonk High,02650505, 45.2, 99.6, 13.2 to 1, 95.1, 95.6 +NA,NA,a-exp-i3,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 37.4, 86.6, 17.8 to 1, 34.7, 76.0 +NA,NA,a-exp-i3,2017-18,Sharon - Cottage Street,02660005, 26.6, 100.0, 19.5 to 1, 88.7, 98.8 +NA,NA,a-exp-i3,2017-18,Sharon - East Elementary,02660010, 27.2, 100.0, 18.1 to 1, 85.3, 98.8 +NA,NA,a-exp-i3,2017-18,Sharon - Heights Elementary,02660015, 28.2, 100.0, 18.6 to 1, 89.4, 95.3 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 12.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon High,02660505, 94.9, 96.8, 11.4 to 1, 82.2, 94.9 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon Middle,02660305, 67.6, 100.0, 12.9 to 1, 87.4, 91.1 +NA,NA,a-exp-i3,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 126.1, 98.4, 10.5 to 1, 89.4, 86.5 +NA,NA,a-exp-i3,2017-18,Sherborn - Pine Hill,02690010, 32.7, 100.0, 12.9 to 1, 89.3, 99.7 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Beal School,02710005, 22.1, 94.9, 14.0 to 1, 83.6, 94.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Calvin Coolidge,02710015, 29.6, 96.3, 14.0 to 1, 81.1, 97.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Floral Street School,02710020, 42.7, 98.9, 17.6 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Oak Middle School,02710030, 64.0, 98.5, 15.8 to 1, 85.5, 96.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Parker Road Preschool,02710040, 10.0, 100.0, 23.5 to 1, 70.0, 90.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Sherwood Middle School,02710305, 69.2, 95.2, 14.0 to 1, 81.4, 92.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 116.0, 100.0, 15.8 to 1, 87.8, 92.8 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Spring Street,02710035, 23.9, 99.4, 15.0 to 1, 82.3, 100.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Walter J Paton,02710025, 21.1, 99.1, 16.2 to 1, 72.8, 90.5 +NA,NA,a-exp-i3,2017-18,Shutesbury - Shutesbury Elementary,02720005, 13.7, 95.4, 8.9 to 1, 80.8, 97.1 +NA,NA,a-exp-i3,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 35.2, 100.0, 15.9 to 1, 90.9, 94.3 +NA,NA,a-exp-i3,2017-18,Silver Lake - Silver Lake Regional High,07600505, 90.7, 98.9, 14.4 to 1, 94.4, 90.1 +NA,NA,a-exp-i3,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 45.0, 100.0, 12.0 to 1, 88.9, 93.3 +NA,NA,a-exp-i3,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 34.8, 88.4, 10.3 to 1, 74.6, 82.7 +NA,NA,a-exp-i3,2017-18,Somerset - Chace Street,02730005, 29.8, 100.0, 14.1 to 1, 75.2, 97.0 +NA,NA,a-exp-i3,2017-18,Somerset - North Elementary,02730008, 34.4, 100.0, 14.2 to 1, 82.3, 96.8 +NA,NA,a-exp-i3,2017-18,Somerset - Somerset Middle School,02730305, 48.0, 100.0, 12.6 to 1, 89.6, 95.8 +NA,NA,a-exp-i3,2017-18,Somerset - South,02730015, 18.6, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 80.9, 100.0, 12.4 to 1, 90.7, 95.1 +NA,NA,a-exp-i3,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.2, 100.0, 13.2 to 1, 83.5, 94.7 +NA,NA,a-exp-i3,2017-18,Somerville - Arthur D Healey,02740075, 44.1, 97.7, 10.2 to 1, 75.7, 97.7 +NA,NA,a-exp-i3,2017-18,Somerville - Benjamin G Brown,02740015, 16.2, 100.0, 14.3 to 1, 81.4, 100.0 +NA,NA,a-exp-i3,2017-18,Somerville - Capuano Early Childhood Center,02740005, 21.8, 95.4, 14.4 to 1, 88.9, 95.4 +NA,NA,a-exp-i3,2017-18,Somerville - E Somerville Community,02740111, 54.3, 98.2, 13.2 to 1, 78.5, 84.8 +NA,NA,a-exp-i3,2017-18,Somerville - Full Circle High School,02740510, 10.8, 100.0, 4.8 to 1, 60.2, 69.8 +NA,NA,a-exp-i3,2017-18,Somerville - John F Kennedy,02740083, 36.8, 100.0, 12.4 to 1, 77.2, 91.5 +NA,NA,a-exp-i3,2017-18,Somerville - Next Wave Junior High,02740410, 5.3, 100.0, 2.8 to 1, 85.5, 93.0 +NA,NA,a-exp-i3,2017-18,Somerville - Somerville High,02740505, 124.7, 98.0, 9.7 to 1, 79.2, 85.9 +NA,NA,a-exp-i3,2017-18,Somerville - West Somerville Neighborhood,02740115, 26.4, 100.0, 14.1 to 1, 81.6, 97.1 +NA,NA,a-exp-i3,2017-18,Somerville - Winter Hill Community,02740120, 43.0, 98.5, 10.7 to 1, 84.6, 97.7 +NA,NA,a-exp-i3,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 48.4, 100.0, 11.8 to 1, 78.2, 88.6 +NA,NA,a-exp-i3,2017-18,South Hadley - Mosier,02780020, 27.0, 100.0, 15.6 to 1, 74.1, 92.6 +NA,NA,a-exp-i3,2017-18,South Hadley - Plains Elementary,02780015, 21.0, 100.0, 16.2 to 1, 90.5, 95.2 +NA,NA,a-exp-i3,2017-18,South Hadley - South Hadley High,02780505, 45.7, 100.0, 12.1 to 1, 88.6, 91.7 +NA,NA,a-exp-i3,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 81.0, 100.0, 9.0 to 1, 86.4, 84.0 +NA,NA,a-exp-i3,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 76.2, 85.5, 12.2 to 1, 63.2, 83.0 +NA,NA,a-exp-i3,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 63.7, 92.3, 10.2 to 1, 77.3, 76.6 +NA,NA,a-exp-i3,2017-18,Southampton - William E Norris,02750005, 37.5, 100.0, 13.7 to 1, 89.3, 97.3 +NA,NA,a-exp-i3,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 17.2, 100.0, 15.5 to 1, 88.4, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - Margaret A Neary,02760020, 17.6, 100.0, 14.7 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - Mary E Finn School,02760008, 21.5, 100.0, 15.6 to 1, 92.6, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - P Brent Trottier,02760305, 36.7, 100.0, 12.5 to 1, 94.0, 94.5 +NA,NA,a-exp-i3,2017-18,Southbridge - Charlton Street,02770005, 32.2, 83.8, 9.6 to 1, 59.0, 100.0 +NA,NA,a-exp-i3,2017-18,Southbridge - Eastford Road,02770010, 28.0, 89.3, 14.0 to 1, 64.3, 89.3 +NA,NA,a-exp-i3,2017-18,Southbridge - Southbridge High School,02770515, 47.3, 93.3, 10.6 to 1, 64.4, 70.6 +NA,NA,a-exp-i3,2017-18,Southbridge - Southbridge Middle School,02770315, 48.1, 88.5, 10.0 to 1, 40.7, 67.5 +NA,NA,a-exp-i3,2017-18,Southbridge - West Street,02770020, 32.0, 100.0, 9.9 to 1, 71.8, 87.5 +NA,NA,a-exp-i3,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 117.0, 95.7, 12.2 to 1, 75.6, 82.9 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 37.0, 99.5, 8.2 to 1, 96.2, 97.3 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - New Marlborough Central,07650018, 7.6, 100.0, 11.4 to 1, 68.4, 81.6 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - Undermountain,07650035, 28.8, 100.0, 10.1 to 1, 88.2, 98.6 +NA,NA,a-exp-i3,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 112.0, 95.5, 10.0 to 1, 77.7, 80.4 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 35.4, 97.2, 12.5 to 1, 91.5, 98.6 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 66.0, 100.0, 10.9 to 1, 92.4, 92.4 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.9, 100.0, 11.2 to 1, 73.3, 98.5 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 28.0, 100.0, 10.5 to 1, 90.0, 92.8 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 19.5, 100.0, 11.8 to 1, 94.9, 94.9 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 30.0, 100.0, 13.9 to 1, 81.6, 90.0 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 12.3 to 1, 82.6, 97.1 +NA,NA,a-exp-i3,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 28.0, 96.4, 15.5 to 1, 89.3, 89.3 +NA,NA,a-exp-i3,2017-18,Springfield - Alice B Beal Elementary,02810175, 20.1, 100.0, 13.0 to 1, 90.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Arthur T Talmadge,02810165, 19.6, 94.9, 12.9 to 1, 74.5, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Balliet Middle School,02810360, 10.4, 100.0, 4.9 to 1, 61.3, 61.3 +NA,NA,a-exp-i3,2017-18,Springfield - Brightwood,02810025, 24.0, 95.8, 13.2 to 1, 83.3, 91.7 +NA,NA,a-exp-i3,2017-18,Springfield - Chestnut Academy,02810365, 36.8, 81.9, 11.4 to 1, 69.6, 84.3 +NA,NA,a-exp-i3,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 24.1, 83.4, 13.1 to 1, 39.9, 60.6 +NA,NA,a-exp-i3,2017-18,Springfield - Conservatory of the Arts,02810475, 28.9, 95.3, 12.7 to 1, 79.2, 77.5 +NA,NA,a-exp-i3,2017-18,Springfield - Daniel B Brunton,02810035, 34.0, 100.0, 13.7 to 1, 91.2, 91.2 +NA,NA,a-exp-i3,2017-18,Springfield - Early Childhood Education Center,02810001, 13.0, 92.3, 13.1 to 1, 61.5, 92.3 +NA,NA,a-exp-i3,2017-18,Springfield - Edward P. Boland School,02810010, 54.9, 94.5, 14.3 to 1, 81.8, 90.9 +NA,NA,a-exp-i3,2017-18,Springfield - Elias Brookings,02810030, 27.9, 96.4, 12.3 to 1, 78.5, 89.3 +NA,NA,a-exp-i3,2017-18,Springfield - Forest Park Middle,02810325, 51.9, 96.1, 13.7 to 1, 88.5, 88.4 +NA,NA,a-exp-i3,2017-18,Springfield - Frank H Freedman,02810075, 20.0, 95.0, 17.6 to 1, 95.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Frederick Harris,02810080, 41.0, 95.1, 15.5 to 1, 95.1, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0,###### to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0,###### to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - German Gerena Community School,02810195, 55.5, 95.5, 13.0 to 1, 79.3, 91.0 +NA,NA,a-exp-i3,2017-18,Springfield - Glenwood,02810065, 22.0, 100.0, 13.5 to 1, 77.3, 95.5 +NA,NA,a-exp-i3,2017-18,Springfield - Glickman Elementary,02810068, 24.0, 87.5, 13.9 to 1, 79.2, 91.7 +NA,NA,a-exp-i3,2017-18,Springfield - High School Of Commerce,02810510, 92.5, 86.7, 11.7 to 1, 64.2, 76.9 +NA,NA,a-exp-i3,2017-18,Springfield - Hiram L Dorman,02810050, 21.0, 100.0, 14.6 to 1, 76.2, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Homer Street,02810085, 27.0, 100.0, 16.4 to 1, 74.1, 88.9 +NA,NA,a-exp-i3,2017-18,Springfield - Impact Prep at Chestnut,02810366, 17.5, 68.7, 13.1 to 1, 43.3, 64.7 +NA,NA,a-exp-i3,2017-18,Springfield - Indian Orchard Elementary,02810100, 46.0, 97.8, 13.9 to 1, 52.2, 89.1 +NA,NA,a-exp-i3,2017-18,Springfield - John F Kennedy Middle,02810328, 32.1, 75.0, 14.0 to 1, 12.5, 31.4 +NA,NA,a-exp-i3,2017-18,Springfield - John J Duggan Middle,02810320, 65.4, 88.5, 11.7 to 1, 66.4, 70.2 +NA,NA,a-exp-i3,2017-18,Springfield - Kensington International School,02810110, 20.0, 100.0, 15.5 to 1, 90.0, 95.0 +NA,NA,a-exp-i3,2017-18,Springfield - Liberty,02810115, 21.0, 100.0, 13.5 to 1, 90.5, 95.2 +NA,NA,a-exp-i3,2017-18,Springfield - Liberty Preparatory Academy,02810560, 3.2, 100.0, 3.8 to 1, 100.0, 68.5 +NA,NA,a-exp-i3,2017-18,Springfield - Lincoln,02810120, 26.0, 100.0, 15.5 to 1, 57.7, 88.5 +NA,NA,a-exp-i3,2017-18,Springfield - M Marcus Kiley Middle,02810330, 45.0, 86.7, 14.7 to 1, 77.8, 75.5 +NA,NA,a-exp-i3,2017-18,Springfield - Margaret C Ells,02810060, 15.0, 93.3, 16.0 to 1, 86.7, 73.3 +NA,NA,a-exp-i3,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 22.0, 100.0, 16.9 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 14.0 to 1, 73.7, 89.5 +NA,NA,a-exp-i3,2017-18,Springfield - Mary M Walsh,02810155, 22.5, 100.0, 13.1 to 1, 68.8, 91.1 +NA,NA,a-exp-i3,2017-18,Springfield - Mary O Pottenger,02810145, 27.0, 100.0, 15.7 to 1, 88.9, 96.3 +NA,NA,a-exp-i3,2017-18,Springfield - Milton Bradley School,02810023, 39.0, 100.0, 14.0 to 1, 59.0, 89.7 +NA,NA,a-exp-i3,2017-18,Springfield - Rebecca M Johnson,02810055, 48.5, 93.7, 15.4 to 1, 89.6, 91.8 +NA,NA,a-exp-i3,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 15.0, 86.7, 14.3 to 1, 6.7, 46.7 +NA,NA,a-exp-i3,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 132.0, 95.4, 10.9 to 1, 83.7, 77.3 +NA,NA,a-exp-i3,2017-18,Springfield - STEM Middle Academy,02810350, 20.0, 100.0, 14.7 to 1, 75.0, 70.0 +NA,NA,a-exp-i3,2017-18,Springfield - Samuel Bowles,02810020, 20.0, 95.0, 16.9 to 1, 80.0, 95.0 +NA,NA,a-exp-i3,2017-18,Springfield - South End Middle School,02810355, 18.0, 99.2, 13.3 to 1, 94.4, 88.9 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Central High,02810500, 143.9, 97.9, 14.2 to 1, 89.6, 87.5 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield High School,02810570, 16.3, 93.8, 13.0 to 1, 69.3, 84.7 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 88.2, 82.9, 14.8 to 1, 69.9, 77.5 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 10.2, 70.1, 7.2 to 1, 70.6, 80.4 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day High School,02810550, 16.5, 81.9, 5.9 to 1, 69.7, 63.6 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day Middle School,02810345, 12.2, 100.0, 4.1 to 1, 34.9, 75.6 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Vocational Academy,02810675, 3.0, 69.8, 31.2 to 1, 69.8, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Sumner Avenue,02810160, 42.0, 92.9, 14.0 to 1, 76.2, 80.9 +NA,NA,a-exp-i3,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 93.9, 14.2 to 1, 72.4, 89.8 +NA,NA,a-exp-i3,2017-18,Springfield - Thomas M Balliet,02810015, 20.0, 100.0, 15.9 to 1, 60.0, 85.0 +NA,NA,a-exp-i3,2017-18,Springfield - Van Sickle Academy,02810485, 32.0, 87.5, 12.6 to 1, 71.9, 68.8 +NA,NA,a-exp-i3,2017-18,Springfield - Warner,02810180, 22.0, 95.5, 13.2 to 1, 72.6, 81.7 +NA,NA,a-exp-i3,2017-18,Springfield - Washington,02810185, 27.0, 100.0, 15.4 to 1, 74.1, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - White Street,02810190, 28.0, 96.4, 16.3 to 1, 75.0, 85.7 +NA,NA,a-exp-i3,2017-18,Springfield - William N. DeBerry,02810045, 22.0, 95.5, 11.9 to 1, 77.3, 90.9 +NA,NA,a-exp-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 19.3, 59.6, 11.1 to 1, 10.4, 80.8 +NA,NA,a-exp-i3,2017-18,Stoneham - Colonial Park,02840005, 19.5, 100.0, 14.3 to 1, 55.4, 98.5 +NA,NA,a-exp-i3,2017-18,Stoneham - Robin Hood,02840025, 25.1, 100.0, 15.2 to 1, 90.0, 97.6 +NA,NA,a-exp-i3,2017-18,Stoneham - South,02840030, 22.5, 100.0, 14.2 to 1, 90.9, 95.3 +NA,NA,a-exp-i3,2017-18,Stoneham - Stoneham Central Middle School,02840405, 65.1, 98.5, 10.5 to 1, 78.7, 87.4 +NA,NA,a-exp-i3,2017-18,Stoneham - Stoneham High,02840505, 57.4, 100.0, 11.8 to 1, 87.7, 94.4 +NA,NA,a-exp-i3,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 20.6 to 1, 60.0, 80.0 +NA,NA,a-exp-i3,2017-18,Stoughton - Helen Hansen Elementary,02850010, 22.7, 100.0, 10.2 to 1, 67.6, 88.7 +NA,NA,a-exp-i3,2017-18,Stoughton - Joseph H Gibbons,02850025, 27.8, 100.0, 12.8 to 1, 82.0, 97.2 +NA,NA,a-exp-i3,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 28.5, 100.0, 12.5 to 1, 85.6, 100.0 +NA,NA,a-exp-i3,2017-18,Stoughton - O'Donnell Middle School,02850405, 70.9, 100.0, 11.6 to 1, 82.3, 95.8 +NA,NA,a-exp-i3,2017-18,Stoughton - South Elementary,02850015, 19.5, 100.0, 12.7 to 1, 76.7, 95.8 +NA,NA,a-exp-i3,2017-18,Stoughton - Stoughton High,02850505, 98.9, 99.0, 11.1 to 1, 77.4, 91.4 +NA,NA,a-exp-i3,2017-18,Stoughton - West Elementary,02850020, 32.5, 100.0, 11.5 to 1, 66.3, 98.8 +NA,NA,a-exp-i3,2017-18,Sturbridge - Burgess Elementary,02870005, 67.6, 100.0, 13.3 to 1, 94.1, 98.5 +NA,NA,a-exp-i3,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 86.6, 46.8, 9.4 to 1, 62.9, 83.3 +NA,NA,a-exp-i3,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 74.5, 100.0, 12.6 to 1, 94.6, 94.6 +NA,NA,a-exp-i3,2017-18,Sudbury - General John Nixon Elementary,02880025, 28.1, 100.0, 12.1 to 1, 85.8, 100.0 +NA,NA,a-exp-i3,2017-18,Sudbury - Israel Loring School,02880015, 34.8, 100.0, 13.4 to 1, 77.0, 91.7 +NA,NA,a-exp-i3,2017-18,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 13.1 to 1, 92.4, 96.6 +NA,NA,a-exp-i3,2017-18,Sudbury - Peter Noyes,02880030, 41.5, 100.0, 13.7 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Sunderland - Sunderland Elementary,02890005, 23.0, 100.0, 10.4 to 1, 77.3, 86.9 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Early Learning,02900003, 19.3, 100.0, 17.0 to 1, 92.2, 100.0 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Elementary,02900005, 22.9, 100.0, 14.3 to 1, 95.6, 100.0 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton High School,02900510, 32.8, 100.0, 12.2 to 1, 92.4, 90.9 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Middle School,02900305, 24.0, 99.2, 15.2 to 1, 89.6, 100.0 +NA,NA,a-exp-i3,2017-18,Swampscott - Clarke,02910005, 19.6, 100.0, 10.1 to 1, 86.0, 95.4 +NA,NA,a-exp-i3,2017-18,Swampscott - Hadley,02910010, 22.5, 100.0, 12.7 to 1, 80.0, 97.8 +NA,NA,a-exp-i3,2017-18,Swampscott - Stanley,02910020, 22.5, 100.0, 13.2 to 1, 78.8, 97.3 +NA,NA,a-exp-i3,2017-18,Swampscott - Swampscott High,02910505, 60.5, 98.1, 11.2 to 1, 81.3, 85.1 +NA,NA,a-exp-i3,2017-18,Swampscott - Swampscott Middle,02910305, 64.6, 100.0, 11.7 to 1, 88.8, 92.3 +NA,NA,a-exp-i3,2017-18,Swansea - Elizabeth S Brown,02920006, 19.0, 100.0, 14.4 to 1, 89.5, 94.7 +NA,NA,a-exp-i3,2017-18,Swansea - Gardner,02920015, 15.6, 100.0, 16.7 to 1, 96.8, 96.8 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph Case High,02920505, 50.2, 100.0, 10.7 to 1, 90.0, 92.0 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph Case Jr High,02920305, 41.5, 97.6, 12.6 to 1, 90.4, 95.2 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph G Luther,02920020, 15.5, 100.0, 14.7 to 1, 77.4, 93.5 +NA,NA,a-exp-i3,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 18.2, 100.0, 14.0 to 1, 91.7, 97.2 +NA,NA,a-exp-i3,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 57.4, 98.3, 26.8 to 1, 59.3, 71.7 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 45.2, 100.0, 13.1 to 1, 92.6, 97.3 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 77.1, 100.0, 9.4 to 1, 92.6, 98.9 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 92.5, 35.3 to 1, 72.4, 67.5 +NA,NA,a-exp-i3,2017-18,Taunton - Benjamin Friedman Middle,02930315, 51.3, 100.0, 14.9 to 1, 74.2, 94.1 +NA,NA,a-exp-i3,2017-18,Taunton - East Taunton Elementary,02930010, 41.9, 100.0, 14.7 to 1, 86.6, 97.8 +NA,NA,a-exp-i3,2017-18,Taunton - Edmund Hatch Bennett,02930007, 23.5, 100.0, 14.1 to 1, 83.7, 100.0 +NA,NA,a-exp-i3,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 12.0, 100.0, 28.2 to 1, 91.7, 91.7 +NA,NA,a-exp-i3,2017-18,Taunton - Elizabeth Pole,02930027, 41.6, 100.0, 15.0 to 1, 89.6, 97.4 +NA,NA,a-exp-i3,2017-18,Taunton - H H Galligan,02930057, 23.8, 100.0, 10.1 to 1, 88.5, 96.7 +NA,NA,a-exp-i3,2017-18,Taunton - Hopewell,02930035, 23.5, 100.0, 11.6 to 1, 83.7, 99.8 +NA,NA,a-exp-i3,2017-18,Taunton - John F Parker Middle,02930305, 33.5, 100.0, 14.8 to 1, 61.2, 79.7 +NA,NA,a-exp-i3,2017-18,Taunton - Joseph C Chamberlain,02930008, 35.6, 100.0, 14.5 to 1, 95.7, 92.7 +NA,NA,a-exp-i3,2017-18,Taunton - Joseph H Martin,02930042, 43.3, 100.0, 15.6 to 1, 81.5, 95.4 +NA,NA,a-exp-i3,2017-18,Taunton - Mulcahey Elementary School,02930015, 35.1, 100.0, 13.9 to 1, 81.5, 99.9 +NA,NA,a-exp-i3,2017-18,Taunton - Taunton Alternative High School,02930525, 6.0, 100.0, 15.8 to 1, 95.8, 100.0 +NA,NA,a-exp-i3,2017-18,Taunton - Taunton High,02930505, 160.7, 98.8, 16.4 to 1, 83.4, 86.6 +NA,NA,a-exp-i3,2017-18,Tewksbury - Heath-Brook,02950010, 23.5, 100.0, 14.9 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - John F. Ryan,02950023, 45.8, 100.0, 11.2 to 1, 84.4, 89.1 +NA,NA,a-exp-i3,2017-18,Tewksbury - John W. Wynn Middle,02950305, 50.4, 100.0, 11.5 to 1, 80.6, 90.7 +NA,NA,a-exp-i3,2017-18,Tewksbury - L F Dewing,02950001, 37.2, 97.3, 16.3 to 1, 86.2, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - Louise Davy Trahan,02950025, 17.4, 100.0, 13.4 to 1, 63.2, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - North Street,02950020, 19.9, 100.0, 13.9 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 65.9, 100.0, 13.9 to 1, 75.9, 90.9 +NA,NA,a-exp-i3,2017-18,Tisbury - Tisbury Elementary,02960005, 36.7, 100.0, 8.3 to 1, 83.1, 81.7 +NA,NA,a-exp-i3,2017-18,Topsfield - Proctor Elementary,02980005, 19.3, 100.0, 13.2 to 1, 94.8, 100.0 +NA,NA,a-exp-i3,2017-18,Topsfield - Steward Elementary,02980010, 29.2, 100.0, 13.0 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 90.7, 98.9, 10.9 to 1, 86.8, 86.0 +NA,NA,a-exp-i3,2017-18,Triton - Newbury Elementary,07730020, 36.9, 100.0, 12.2 to 1, 82.4, 94.6 +NA,NA,a-exp-i3,2017-18,Triton - Pine Grove,07730025, 33.2, 100.0, 13.6 to 1, 97.0, 100.0 +NA,NA,a-exp-i3,2017-18,Triton - Salisbury Elementary,07730015, 42.8, 100.0, 12.3 to 1, 93.0, 97.7 +NA,NA,a-exp-i3,2017-18,Triton - Triton Regional High School,07730505, 58.1, 100.0, 12.4 to 1, 87.1, 89.7 +NA,NA,a-exp-i3,2017-18,Triton - Triton Regional Middle School,07730405, 29.2, 96.6, 14.2 to 1, 77.8, 81.2 +NA,NA,a-exp-i3,2017-18,Truro - Truro Central,03000005, 16.2, 100.0, 6.4 to 1, 81.4, 100.0 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 56.4, 100.0, 12.9 to 1, 88.0, 98.2 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough High School,03010505, 34.7, 100.0, 13.7 to 1, 86.7, 84.3 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 34.7, 100.0, 11.8 to 1, 92.8, 83.1 +NA,NA,a-exp-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 42.5, 92.9, 11.8 to 1, 43.5, 60.0 +NA,NA,a-exp-i3,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56.4, 84.2, 13.1 to 1, 36.3, 49.6 +NA,NA,a-exp-i3,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 4.6, 100.0, 11.4 to 1, 67.0, 95.6 +NA,NA,a-exp-i3,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 39.9, 98.8, 8.8 to 1, 83.3, 90.0 +NA,NA,a-exp-i3,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 72.1, 97.2, 9.9 to 1, 76.4, 82.0 +NA,NA,a-exp-i3,2017-18,Uxbridge - Gateway to College,03040515, .0, 0.0,N/A,"","" +NA,NA,a-exp-i3,2017-18,Uxbridge - McCloskey Middle School,03040015, 25.5, 100.0, 15.8 to 1, 98.0, 96.1 +NA,NA,a-exp-i3,2017-18,Uxbridge - Taft Early Learning Center,03040005, 22.2, 100.0, 20.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Uxbridge - Uxbridge High,03040505, 38.8, 100.0, 12.4 to 1, 81.9, 81.7 +NA,NA,a-exp-i3,2017-18,Uxbridge - Whitin Elementary School,03040020, 21.5, 100.0, 17.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 31.0, 51.6, 10.4 to 1, 16.1, 77.4 +NA,NA,a-exp-i3,2017-18,Wachusett - Central Tree Middle,07750310, 27.4, 100.0, 13.6 to 1, 92.7, 95.1 +NA,NA,a-exp-i3,2017-18,Wachusett - Chocksett Middle School,07750315, 26.3, 100.0, 13.9 to 1, 90.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Davis Hill Elementary,07750018, 26.5, 100.0, 17.0 to 1, 96.2, 92.4 +NA,NA,a-exp-i3,2017-18,Wachusett - Dawson,07750020, 29.9, 100.0, 15.4 to 1, 90.0, 96.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 20.3 to 1, 75.0, 87.5 +NA,NA,a-exp-i3,2017-18,Wachusett - Glenwood Elementary School,07750060, 23.9, 100.0, 14.3 to 1, 91.6, 98.6 +NA,NA,a-exp-i3,2017-18,Wachusett - Houghton Elementary,07750027, 23.8, 100.0, 15.8 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Leroy E.Mayo,07750032, 29.0, 100.0, 16.4 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Mountview Middle,07750305, 46.1, 100.0, 17.4 to 1, 89.2, 97.8 +NA,NA,a-exp-i3,2017-18,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 16.1 to 1, 90.6, 93.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Paxton Center,07750040, 31.7, 100.0, 14.8 to 1, 74.9, 90.5 +NA,NA,a-exp-i3,2017-18,Wachusett - Thomas Prince,07750045, 24.6, 100.0, 16.3 to 1, 65.1, 84.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Wachusett Regional High,07750505, 144.0, 100.0, 14.8 to 1, 86.8, 90.3 +NA,NA,a-exp-i3,2017-18,Wakefield - Dolbeare,03050005, 30.6, 100.0, 14.6 to 1, 93.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 13.7 to 1, 67.4, 89.1 +NA,NA,a-exp-i3,2017-18,Wakefield - Galvin Middle School,03050310, 82.7, 100.0, 12.6 to 1, 88.4, 91.5 +NA,NA,a-exp-i3,2017-18,Wakefield - Greenwood,03050020, 12.3, 100.0, 18.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Wakefield Memorial High,03050505, 82.4, 100.0, 12.5 to 1, 93.9, 93.9 +NA,NA,a-exp-i3,2017-18,Wakefield - Walton,03050040, 11.3, 100.0, 18.2 to 1, 98.2, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Woodville School,03050015, 28.4, 100.0, 15.2 to 1, 90.1, 100.0 +NA,NA,a-exp-i3,2017-18,Wales - Wales Elementary,03060005, 10.4, 100.0, 15.4 to 1, 98.1, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Bird Middle,03070305, 35.2, 100.0, 13.9 to 1, 88.1, 96.9 +NA,NA,a-exp-i3,2017-18,Walpole - Boyden,03070010, 29.4, 100.0, 12.1 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 14.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 34.9, 98.3, 12.8 to 1, 89.4, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Elm Street School,03070005, 28.7, 100.0, 15.0 to 1, 90.6, 97.6 +NA,NA,a-exp-i3,2017-18,Walpole - Fisher,03070015, 36.9, 100.0, 12.3 to 1, 97.3, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Old Post Road,03070018, 30.0, 100.0, 14.0 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Walpole High,03070505, 84.6, 99.3, 13.4 to 1, 87.5, 95.3 +NA,NA,a-exp-i3,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 36.7, 100.0, 12.0 to 1, 89.0, 97.3 +NA,NA,a-exp-i3,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 40.0, 100.0, 10.8 to 1, 91.2, 94.4 +NA,NA,a-exp-i3,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 37.1, 99.1, 11.8 to 1, 83.0, 97.2 +NA,NA,a-exp-i3,2017-18,Waltham - John F Kennedy Middle,03080404, 54.2, 100.0, 9.4 to 1, 85.9, 91.4 +NA,NA,a-exp-i3,2017-18,Waltham - John W. McDevitt Middle School,03080415, 61.3, 100.0, 10.3 to 1, 77.2, 90.2 +NA,NA,a-exp-i3,2017-18,Waltham - Northeast Elementary School,03080040, 43.1, 100.0, 13.8 to 1, 80.6, 97.1 +NA,NA,a-exp-i3,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 39.5, 97.3, 10.7 to 1, 68.6, 95.6 +NA,NA,a-exp-i3,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.9, 100.0, 16.3 to 1, 29.9, 95.9 +NA,NA,a-exp-i3,2017-18,Waltham - Waltham Sr High,03080505, 141.9, 100.0, 11.4 to 1, 74.1, 89.6 +NA,NA,a-exp-i3,2017-18,Waltham - William F. Stanley Elementary School,03080005, 43.6, 100.0, 9.9 to 1, 85.0, 98.5 +NA,NA,a-exp-i3,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 28.6, 100.0, 14.4 to 1, 86.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ware - Ware Junior/Senior High School,03090505, 38.8, 99.6, 12.0 to 1, 87.7, 85.6 +NA,NA,a-exp-i3,2017-18,Ware - Ware Middle School,03090305, 23.6, 100.0, 14.2 to 1, 85.6, 94.1 +NA,NA,a-exp-i3,2017-18,Wareham - John William Decas,03100003, 45.6, 100.0, 12.7 to 1, 85.7, 98.9 +NA,NA,a-exp-i3,2017-18,Wareham - Minot Forest,03100017, 33.4, 97.0, 14.7 to 1, 70.1, 97.0 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 3.1, 92.0, 20.1 to 1, 44.1, 84.0 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Middle,03100305, 53.6, 100.0, 13.5 to 1, 81.3, 90.7 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Senior High,03100505, 53.7, 99.1, 8.5 to 1, 82.3, 85.4 +NA,NA,a-exp-i3,2017-18,Watertown - Cunniff,03140015, 31.3, 100.0, 9.8 to 1, 68.1, 94.9 +NA,NA,a-exp-i3,2017-18,Watertown - Hosmer,03140020, 59.1, 100.0, 11.5 to 1, 74.2, 93.2 +NA,NA,a-exp-i3,2017-18,Watertown - James Russell Lowell,03140025, 38.4, 100.0, 10.8 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Watertown - Watertown High,03140505, 66.4, 99.4, 10.1 to 1, 80.7, 93.1 +NA,NA,a-exp-i3,2017-18,Watertown - Watertown Middle,03140305, 52.0, 100.0, 10.1 to 1, 86.7, 96.2 +NA,NA,a-exp-i3,2017-18,Wayland - Claypit Hill School,03150005, 43.1, 100.0, 12.6 to 1, 85.8, 97.7 +NA,NA,a-exp-i3,2017-18,Wayland - Happy Hollow School,03150015, 27.2, 100.0, 14.2 to 1, 92.6, 97.8 +NA,NA,a-exp-i3,2017-18,Wayland - Loker School,03150020, 20.6, 100.0, 13.6 to 1, 89.8, 96.1 +NA,NA,a-exp-i3,2017-18,Wayland - Wayland High School,03150505, 72.0, 99.6, 11.9 to 1, 88.6, 96.7 +NA,NA,a-exp-i3,2017-18,Wayland - Wayland Middle School,03150305, 54.9, 100.0, 11.6 to 1, 95.2, 94.2 +NA,NA,a-exp-i3,2017-18,Webster - Bartlett High School,03160505, 42.5, 98.8, 10.3 to 1, 89.4, 85.9 +NA,NA,a-exp-i3,2017-18,Webster - Park Avenue Elementary,03160015, 53.0, 100.0, 15.6 to 1, 73.6, 88.7 +NA,NA,a-exp-i3,2017-18,Webster - Webster Middle School,03160315, 42.4, 100.0, 13.9 to 1, 76.4, 83.5 +NA,NA,a-exp-i3,2017-18,Wellesley - Ernest F Upham,03170050, 19.7, 100.0, 12.0 to 1, 78.8, 85.8 +NA,NA,a-exp-i3,2017-18,Wellesley - Hunnewell,03170025, 17.4, 100.0, 14.3 to 1, 80.6, 90.0 +NA,NA,a-exp-i3,2017-18,Wellesley - John D Hardy,03170020, 22.7, 100.0, 13.0 to 1, 85.9, 99.1 +NA,NA,a-exp-i3,2017-18,Wellesley - Joseph E Fiske,03170015, 33.0, 100.0, 12.1 to 1, 84.8, 97.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Katharine Lee Bates,03170005, 21.0, 100.0, 17.7 to 1, 95.2, 100.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Schofield,03170045, 25.0, 100.0, 15.1 to 1, 96.0, 96.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Sprague Elementary School,03170048, 28.3, 100.0, 13.5 to 1, 92.0, 99.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Wellesley Middle,03170305, 104.6, 100.0, 10.8 to 1, 89.9, 95.3 +NA,NA,a-exp-i3,2017-18,Wellesley - Wellesley Sr High,03170505, 119.7, 99.6, 13.1 to 1, 90.5, 92.9 +NA,NA,a-exp-i3,2017-18,Wellfleet - Wellfleet Elementary,03180005, 14.8, 100.0, 7.6 to 1, 91.9, 93.2 +NA,NA,a-exp-i3,2017-18,West Boylston - Major Edwards Elementary,03220005, 35.3, 100.0, 11.9 to 1, 85.8, 100.0 +NA,NA,a-exp-i3,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 48.0, 100.0, 10.1 to 1, 86.5, 94.1 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Howard School,03230305, 18.5, 100.0, 15.6 to 1, 96.2, 97.3 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Rose L Macdonald,03230003, 15.2, 100.0, 16.3 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Spring Street School,03230005, 8.9, 100.0, 15.9 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 51.5, 100.0, 12.2 to 1, 87.8, 94.2 +NA,NA,a-exp-i3,2017-18,West Springfield - 21st Century Skills Academy,03320515, 6.2, 97.2, 1.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 20.3 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - John Ashley,03320005, 17.5, 100.0, 13.4 to 1, 98.1, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - John R Fausey,03320010, 34.7, 100.0, 13.3 to 1, 85.6, 97.1 +NA,NA,a-exp-i3,2017-18,West Springfield - Memorial,03320025, 19.0, 100.0, 12.6 to 1, 80.4, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - Mittineague,03320030, 14.7, 100.0, 11.0 to 1, 88.9, 95.7 +NA,NA,a-exp-i3,2017-18,West Springfield - Philip G Coburn,03320007, 45.2, 100.0, 11.5 to 1, 94.1, 96.9 +NA,NA,a-exp-i3,2017-18,West Springfield - Tatham,03320040, 19.0, 100.0, 12.6 to 1, 81.2, 94.7 +NA,NA,a-exp-i3,2017-18,West Springfield - West Springfield High,03320505, 94.2, 100.0, 13.1 to 1, 96.8, 94.7 +NA,NA,a-exp-i3,2017-18,West Springfield - West Springfield Middle,03320305, 72.5, 98.6, 12.4 to 1, 94.9, 100.0 +NA,NA,a-exp-i3,2017-18,Westborough - Annie E Fales,03210010, 28.9, 100.0, 11.7 to 1, 82.7, 89.6 +NA,NA,a-exp-i3,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 43.1, 100.0, 11.6 to 1, 73.7, 95.4 +NA,NA,a-exp-i3,2017-18,Westborough - J Harding Armstrong,03210005, 34.6, 100.0, 12.2 to 1, 79.8, 97.1 +NA,NA,a-exp-i3,2017-18,Westborough - Mill Pond School,03210045, 70.3, 100.0, 13.3 to 1, 87.1, 96.0 +NA,NA,a-exp-i3,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 54.9, 100.0, 10.9 to 1, 83.6, 90.9 +NA,NA,a-exp-i3,2017-18,Westborough - Westborough High,03210505, 89.5, 99.0, 12.6 to 1, 82.7, 93.3 +NA,NA,a-exp-i3,2017-18,Westfield - Abner Gibbs,03250020, 15.4, 100.0, 14.5 to 1, 95.6, 98.1 +NA,NA,a-exp-i3,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 24.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - Franklin Ave,03250015, 16.8, 100.0, 14.7 to 1, 83.8, 95.8 +NA,NA,a-exp-i3,2017-18,Westfield - Highland,03250025, 33.1, 100.0, 11.3 to 1, 93.9, 94.9 +NA,NA,a-exp-i3,2017-18,Westfield - Munger Hill,03250033, 27.9, 100.0, 13.6 to 1, 94.1, 95.2 +NA,NA,a-exp-i3,2017-18,Westfield - North Middle School,03250305, 51.4, 100.0, 13.1 to 1, 86.3, 92.1 +NA,NA,a-exp-i3,2017-18,Westfield - Paper Mill,03250036, 30.8, 100.0, 13.4 to 1, 79.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - Russell Elementary School,03250055, 12.2, 100.0, 13.2 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - South Middle School,03250310, 50.3, 100.0, 11.7 to 1, 92.0, 94.0 +NA,NA,a-exp-i3,2017-18,Westfield - Southampton Road,03250040, 30.5, 100.0, 13.9 to 1, 90.7, 96.7 +NA,NA,a-exp-i3,2017-18,Westfield - Westfield High,03250505, 91.7, 98.9, 13.7 to 1, 86.0, 93.8 +NA,NA,a-exp-i3,2017-18,Westfield - Westfield Technical Academy,03250605, 55.0, 89.9, 9.8 to 1, 87.7, 84.6 +NA,NA,a-exp-i3,2017-18,Westford - Abbot Elementary,03260004, 21.8, 100.0, 16.8 to 1, 82.6, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Blanchard Middle,03260310, 46.7, 100.0, 12.6 to 1, 89.3, 93.6 +NA,NA,a-exp-i3,2017-18,Westford - Col John Robinson,03260025, 16.3, 100.0, 17.9 to 1, 90.8, 93.9 +NA,NA,a-exp-i3,2017-18,Westford - Day Elementary,03260007, 22.0, 100.0, 16.2 to 1, 97.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 20.6, 100.0, 16.7 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Millennium Elementary,03260013, 7.8, 100.0, 14.1 to 1, 98.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Nabnasset,03260015, 18.8, 100.0, 17.5 to 1, 91.5, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Rita E. Miller Elementary School,03260055, 18.8, 100.0, 17.3 to 1, 92.0, 92.0 +NA,NA,a-exp-i3,2017-18,Westford - Stony Brook School,03260330, 51.0, 100.0, 12.7 to 1, 92.2, 96.1 +NA,NA,a-exp-i3,2017-18,Westford - Westford Academy,03260505, 119.1, 99.7, 14.4 to 1, 89.0, 95.8 +NA,NA,a-exp-i3,2017-18,Westhampton - Westhampton Elementary School,03270005, 14.4, 100.0, 8.5 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Weston - Country,03300010, 21.2, 98.6, 14.3 to 1, 84.4, 95.3 +NA,NA,a-exp-i3,2017-18,Weston - Field Elementary School,03300012, 24.4, 100.0, 13.3 to 1, 80.9, 92.8 +NA,NA,a-exp-i3,2017-18,Weston - Weston High,03300505, 63.8, 99.7, 10.9 to 1, 85.4, 98.4 +NA,NA,a-exp-i3,2017-18,Weston - Weston Middle,03300305, 39.9, 99.5, 12.1 to 1, 89.0, 90.5 +NA,NA,a-exp-i3,2017-18,Weston - Woodland,03300015, 18.1, 100.0, 16.5 to 1, 84.9, 94.5 +NA,NA,a-exp-i3,2017-18,Westport - Alice A Macomber,03310015, 25.0, 100.0, 14.9 to 1, 88.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westport - Westport Elementary,03310030, 38.5, 100.0, 13.2 to 1, 87.0, 89.6 +NA,NA,a-exp-i3,2017-18,Westport - Westport Junior/Senior High School,03310515, 54.2, 100.0, 10.1 to 1, 83.9, 93.5 +NA,NA,a-exp-i3,2017-18,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.7 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westwood - Downey,03350012, 18.6, 100.0, 13.5 to 1, 91.4, 86.0 +NA,NA,a-exp-i3,2017-18,Westwood - E W Thurston Middle,03350305, 59.7, 100.0, 13.3 to 1, 87.6, 96.7 +NA,NA,a-exp-i3,2017-18,Westwood - Martha Jones,03350017, 19.5, 100.0, 15.1 to 1, 88.2, 94.9 +NA,NA,a-exp-i3,2017-18,Westwood - Paul Hanlon,03350015, 15.9, 100.0, 13.8 to 1, 84.7, 95.0 +NA,NA,a-exp-i3,2017-18,Westwood - Westwood High,03350505, 78.6, 100.0, 12.7 to 1, 73.2, 93.6 +NA,NA,a-exp-i3,2017-18,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15.3 to 1, 66.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westwood - William E Sheehan,03350025, 22.1, 100.0, 14.4 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Abigail Adams Middle School,03360310, 71.4, 98.0, 12.7 to 1, 86.4, 91.2 +NA,NA,a-exp-i3,2017-18,Weymouth - Academy Avenue,03360005, 19.7, 100.0, 15.6 to 1, 82.8, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Frederick C Murphy,03360050, 16.3, 100.0, 15.1 to 1, 79.9, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 15.6 to 1, 72.6, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Lawrence W Pingree,03360065, 13.2, 100.0, 14.6 to 1, 84.9, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 74.0, 100.0, 11.9 to 1, 79.8, 85.1 +NA,NA,a-exp-i3,2017-18,Weymouth - Ralph Talbot,03360085, 18.0, 100.0, 13.8 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Thomas V Nash,03360060, 13.6, 100.0, 14.9 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 20.8, 100.0, 16.9 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Wessagusset,03360110, 18.7, 100.0, 14.9 to 1, 83.2, 96.9 +NA,NA,a-exp-i3,2017-18,Weymouth - Weymouth High School,03360505, 136.7, 99.3, 13.9 to 1, 83.3, 88.9 +NA,NA,a-exp-i3,2017-18,Weymouth - William Seach,03360080, 16.8, 100.0, 18.9 to 1, 83.0, 91.5 +NA,NA,a-exp-i3,2017-18,Whately - Whately Elementary,03370005, 12.7, 100.0, 11.1 to 1, 72.4, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 28.2, 100.0, 13.9 to 1, 85.8, 92.9 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Indian Head,07800035, 22.0, 100.0, 14.7 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - John H Duval,07800030, 27.1, 100.0, 16.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Louise A Conley,07800010, 34.3, 100.0, 16.4 to 1, 79.6, 94.2 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 24.2, 100.0, 18.0 to 1, 91.7, 95.9 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 72.6, 100.0, 16.1 to 1, 80.7, 84.5 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Whitman Middle,07800310, 36.2, 100.0, 15.9 to 1, 94.8, 89.3 +NA,NA,a-exp-i3,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.9, 97.4, 11.0 to 1, 88.1, 82.4 +NA,NA,a-exp-i3,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 17.2, 100.0, 9.5 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Williamstown - Williamstown Elementary,03410010, 38.8, 100.0, 11.8 to 1, 82.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Boutwell,03420005, 12.5, 100.0, 12.9 to 1, 67.9, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - North Intermediate,03420060, 21.5, 100.0, 14.1 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Shawsheen Elementary,03420025, 30.0, 100.0, 11.5 to 1, 88.4, 96.7 +NA,NA,a-exp-i3,2017-18,Wilmington - West Intermediate,03420080, 22.0, 100.0, 11.2 to 1, 84.1, 95.4 +NA,NA,a-exp-i3,2017-18,Wilmington - Wildwood,03420015, 12.4, 100.0, 15.7 to 1, 91.9, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Wilmington High,03420505, 71.8, 100.0, 12.0 to 1, 92.2, 95.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Wilmington Middle School,03420330, 74.2, 100.0, 11.3 to 1, 85.0, 93.6 +NA,NA,a-exp-i3,2017-18,Wilmington - Woburn Street,03420020, 31.0, 100.0, 12.4 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Memorial,03430040, 16.5, 100.0, 18.6 to 1, 93.9, 93.9 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock Academy for Success,03430405, 1.5, 100.0, 19.5 to 1, 77.9, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock High School,03430515, 25.4, 100.0, 12.0 to 1, 68.8, 90.6 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock Middle School,03430315, 20.3, 100.0, 13.5 to 1, 88.9, 88.9 +NA,NA,a-exp-i3,2017-18,Winchendon - Toy Town Elementary,03430050, 20.5, 100.0, 14.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 26.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Ambrose Elementary,03440045, 36.6, 100.0, 11.5 to 1, 82.4, 97.3 +NA,NA,a-exp-i3,2017-18,Winchester - Lincoln Elementary,03440005, 32.5, 100.0, 12.4 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Lynch Elementary,03440020, 47.6, 100.0, 11.3 to 1, 83.4, 97.9 +NA,NA,a-exp-i3,2017-18,Winchester - McCall Middle,03440305, 83.5, 100.0, 13.3 to 1, 78.7, 90.7 +NA,NA,a-exp-i3,2017-18,Winchester - Muraco Elementary,03440040, 34.4, 100.0, 11.1 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Vinson-Owen Elementary,03440025, 35.1, 100.0, 13.0 to 1, 83.6, 94.3 +NA,NA,a-exp-i3,2017-18,Winchester - Winchester High School,03440505, 90.6, 100.0, 14.9 to 1, 90.3, 95.2 +NA,NA,a-exp-i3,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 23.5, 100.0, 19.4 to 1, 74.4, 95.7 +NA,NA,a-exp-i3,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 29.5, 100.0, 16.0 to 1, 64.4, 93.2 +NA,NA,a-exp-i3,2017-18,Winthrop - Winthrop High School,03460505, 44.2, 97.7, 13.9 to 1, 77.4, 61.5 +NA,NA,a-exp-i3,2017-18,Winthrop - Winthrop Middle School,03460305, 34.5, 100.0, 14.0 to 1, 74.7, 76.8 +NA,NA,a-exp-i3,2017-18,Woburn - Clyde Reeves,03470040, 29.0, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 53.5, 100.0, 9.8 to 1, 92.5, 94.4 +NA,NA,a-exp-i3,2017-18,Woburn - Daniel P Hurld,03470020, 14.2, 100.0, 15.2 to 1, 84.5, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Goodyear Elementary School,03470005, 24.8, 96.0, 12.4 to 1, 83.8, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - John F Kennedy Middle School,03470405, 48.5, 100.0, 10.0 to 1, 85.6, 85.6 +NA,NA,a-exp-i3,2017-18,Woburn - Linscott-Rumford,03470025, 16.2, 100.0, 12.8 to 1, 98.7, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Malcolm White,03470055, 23.0, 100.0, 14.1 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Mary D Altavesta,03470065, 17.1, 100.0, 14.5 to 1, 87.1, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Shamrock,03470043, 30.5, 100.0, 11.9 to 1, 83.6, 96.7 +NA,NA,a-exp-i3,2017-18,Woburn - Woburn High,03470505, 104.6, 100.0, 12.6 to 1, 92.8, 94.3 +NA,NA,a-exp-i3,2017-18,Woburn - Wyman,03470060, 13.3, 100.0, 13.7 to 1, 98.5, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Belmont Street Community,03480020, 31.5, 100.0, 18.4 to 1, 73.6, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Middle School,03480405, 50.4, 98.0, 12.4 to 1, 80.9, 84.6 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Senior High,03480503, 79.6, 97.5, 13.0 to 1, 89.4, 92.2 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Street,03480035, 18.9, 100.0, 15.5 to 1, 76.0, 94.2 +NA,NA,a-exp-i3,2017-18,Worcester - Canterbury,03480045, 25.2, 100.0, 14.9 to 1, 69.6, 91.0 +NA,NA,a-exp-i3,2017-18,Worcester - Chandler Elementary Community,03480050, 26.6, 92.5, 18.8 to 1, 84.7, 96.2 +NA,NA,a-exp-i3,2017-18,Worcester - Chandler Magnet,03480052, 38.3, 100.0, 11.3 to 1, 78.1, 91.7 +NA,NA,a-exp-i3,2017-18,Worcester - City View,03480053, 31.6, 100.0, 15.0 to 1, 95.7, 96.9 +NA,NA,a-exp-i3,2017-18,Worcester - Claremont Academy,03480350, 40.2, 97.5, 13.7 to 1, 87.6, 85.1 +NA,NA,a-exp-i3,2017-18,Worcester - Clark St Community,03480055, 17.6, 100.0, 14.8 to 1, 83.4, 99.2 +NA,NA,a-exp-i3,2017-18,Worcester - Columbus Park,03480060, 26.8, 100.0, 18.9 to 1, 91.8, 97.0 +NA,NA,a-exp-i3,2017-18,Worcester - Doherty Memorial High,03480512, 101.4, 97.0, 15.4 to 1, 87.2, 89.1 +NA,NA,a-exp-i3,2017-18,Worcester - Elm Park Community,03480095, 28.2, 96.7, 16.9 to 1, 68.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Flagg Street,03480090, 22.5, 100.0, 18.1 to 1, 94.0, 98.7 +NA,NA,a-exp-i3,2017-18,Worcester - Forest Grove Middle,03480415, 68.8, 100.0, 14.2 to 1, 92.7, 92.4 +NA,NA,a-exp-i3,2017-18,Worcester - Francis J McGrath Elementary,03480177, 15.4, 100.0, 15.4 to 1, 99.5, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Gates Lane,03480110, 39.9, 97.5, 14.3 to 1, 81.9, 87.4 +NA,NA,a-exp-i3,2017-18,Worcester - Goddard School/Science Technical,03480100, 32.9, 100.0, 14.1 to 1, 65.9, 93.9 +NA,NA,a-exp-i3,2017-18,Worcester - Grafton Street,03480115, 23.0, 95.7, 16.8 to 1, 70.6, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Head Start,03480002, 31.2, 26.1, 17.0 to 1, 45.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Heard Street,03480136, 17.3, 100.0, 17.1 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 26.3, 100.0, 15.3 to 1, 95.6, 95.8 +NA,NA,a-exp-i3,2017-18,Worcester - Lake View,03480145, 16.5, 100.0, 17.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Lincoln Street,03480160, 18.3, 100.0, 14.8 to 1, 61.7, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - May Street,03480175, 18.4, 100.0, 18.4 to 1, 94.1, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Midland Street,03480185, 16.3, 100.0, 14.1 to 1, 92.8, 99.4 +NA,NA,a-exp-i3,2017-18,Worcester - Nelson Place,03480200, 33.8, 100.0, 15.4 to 1, 90.3, 99.7 +NA,NA,a-exp-i3,2017-18,Worcester - Norrback Avenue,03480202, 37.0, 100.0, 15.2 to 1, 78.5, 91.9 +NA,NA,a-exp-i3,2017-18,Worcester - North High,03480515, 97.1, 95.9, 13.3 to 1, 76.4, 80.4 +NA,NA,a-exp-i3,2017-18,Worcester - Quinsigamond,03480210, 40.8, 100.0, 18.3 to 1, 72.4, 92.1 +NA,NA,a-exp-i3,2017-18,Worcester - Rice Square,03480215, 26.3, 100.0, 16.2 to 1, 74.6, 95.4 +NA,NA,a-exp-i3,2017-18,Worcester - Roosevelt,03480220, 41.4, 97.8, 16.2 to 1, 83.1, 95.1 +NA,NA,a-exp-i3,2017-18,Worcester - South High Community,03480520, 96.6, 93.8, 14.6 to 1, 79.4, 92.0 +NA,NA,a-exp-i3,2017-18,Worcester - Sullivan Middle,03480423, 72.7, 98.6, 11.9 to 1, 76.6, 87.6 +NA,NA,a-exp-i3,2017-18,Worcester - Tatnuck,03480230, 23.2, 100.0, 16.9 to 1, 73.8, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Thorndyke Road,03480235, 20.4, 100.0, 18.7 to 1, 80.2, 99.0 +NA,NA,a-exp-i3,2017-18,Worcester - Union Hill School,03480240, 25.7, 96.1, 17.7 to 1, 88.0, 88.3 +NA,NA,a-exp-i3,2017-18,Worcester - University Pk Campus School,03480285, 18.2, 100.0, 13.1 to 1, 89.0, 94.5 +NA,NA,a-exp-i3,2017-18,Worcester - Vernon Hill School,03480280, 31.6, 100.0, 17.0 to 1, 81.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Wawecus Road School,03480026, 11.8, 100.0, 12.9 to 1, 78.9, 92.1 +NA,NA,a-exp-i3,2017-18,Worcester - West Tatnuck,03480260, 21.4, 100.0, 17.3 to 1, 87.9, 95.3 +NA,NA,a-exp-i3,2017-18,Worcester - Woodland Academy,03480030, 31.8, 100.0, 19.0 to 1, 61.9, 93.5 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester Arts Magnet School,03480225, 23.4, 100.0, 17.3 to 1, 86.4, 99.6 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester East Middle,03480420, 64.0, 100.0, 12.8 to 1, 75.0, 78.1 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester Technical High,03480605, 138.3, 97.8, 10.0 to 1, 82.6, 84.8 +NA,NA,a-exp-i3,2017-18,Worthington - R. H. Conwell,03490010, 6.6, 93.9, 9.4 to 1, 51.5, 97.0 +NA,NA,a-exp-i3,2017-18,Wrentham - Charles E Roderick,03500010, 33.4, 100.0, 13.9 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,Wrentham - Delaney,03500003, 42.0, 100.0, 13.8 to 1, 93.3, 100.0 3.8200000000000003,3.82,a-exp-i1,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 116.4, 94.5, 12.3 to 1, 76.4, 87.1, 85.1 5.0,5.0,a-exp-i1,2018-19,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 22.5 to 1, 100.0, 100.0, 100.0 4.63,4.63,a-exp-i1,2018-19,Abington - Abington High,00010505, 37.9, 100.0, 14.4 to 1, 92.6, 88.9, 83.3 @@ -14737,3671 +22131,3669 @@ NA,NA,a-exp-i3,2021-22,Whitman-Hanson - Whitman Middle,07800310, 37.3, 100. 4.2105263157894735,4.21,a-exp-i3,2021-22,Worthington - R. H. Conwell,03490010, 6.4, 100.0, 10.5 to 1, 68.8, 81.3, 100.0 4.2105263157894735,4.21,a-exp-i3,2021-22,Wrentham - Charles E Roderick,03500010, 35.4, 100.0, 10.7 to 1, 77.4, 97.2, 100.0 4.2105263157894735,4.21,a-exp-i3,2021-22,Wrentham - Delaney,03500003, 46.0, 100.0, 11.8 to 1, 92.6, 97.8, 100.0 -4.075,4.08,a-exp-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3,"" -5.0,5.0,a-exp-i1,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0,"" -3.905,3.91,a-exp-i1,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3,"" -4.46,4.46,a-exp-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4,"" -1.8649999999999998,1.86,a-exp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6,"" -4.63,4.63,a-exp-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8,"" -4.325,4.33,a-exp-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0,"" -4.335,4.34,a-exp-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0,"" -4.24,4.24,a-exp-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9,"" -4.04,4.04,a-exp-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9,"" -5.0,5.0,a-exp-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0,"" -4.63,4.63,a-exp-i1,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9,"" -4.58,4.58,a-exp-i1,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4,"" -4.715,4.72,a-exp-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0,"" -3.215,3.22,a-exp-i1,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8,"" -3.475,3.48,a-exp-i1,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9,"" -4.755,4.76,a-exp-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0,"" -1.5699999999999998,1.57,a-exp-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0,"" -4.29,4.29,a-exp-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3,"" -3.475,3.48,a-exp-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0,"" -4.54,4.54,a-exp-i1,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6,"" -4.385,4.39,a-exp-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2,"" -4.035,4.04,a-exp-i1,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2,"" -4.455,4.46,a-exp-i1,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3,"" -4.255,4.26,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1,"" -4.38,4.38,a-exp-i1,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8,"" -4.6,4.6,a-exp-i1,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9,"" -4.285,4.29,a-exp-i1,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0,"" -4.29,4.29,a-exp-i1,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2,"" -5.0,5.0,a-exp-i1,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0,"" -4.08,4.08,a-exp-i1,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0,"" -4.86,4.86,a-exp-i1,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3,"" -2.35,2.35,a-exp-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7,"" -4.135,4.14,a-exp-i1,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5,"" -4.165,4.17,a-exp-i1,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8,"" -4.415,4.42,a-exp-i1,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8,"" -4.055,4.06,a-exp-i1,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5,"" -3.7649999999999997,3.76,a-exp-i1,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5,"" -3.685,3.69,a-exp-i1,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4,"" -3.47,3.47,a-exp-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0,"" -3.725,3.73,a-exp-i1,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2,"" -3.28,3.28,a-exp-i1,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9,"" -4.41,4.41,a-exp-i1,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9,"" -5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6,"" -4.25,4.25,a-exp-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5,"" -4.46,4.46,a-exp-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0,"" -4.66,4.66,a-exp-i1,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3,"" -4.01,4.01,a-exp-i1,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2,"" -4.2,4.2,a-exp-i1,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0,"" -4.36,4.36,a-exp-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9,"" -4.285,4.29,a-exp-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0,"" -4.415,4.42,a-exp-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8,"" -3.54,3.54,a-exp-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6,"" -3.22,3.22,a-exp-i1,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8,"" -3.075,3.08,a-exp-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0,"" -2.87,2.87,a-exp-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1,"" -4.2,4.2,a-exp-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0,"" -2.805,2.81,a-exp-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3,"" -4.35,4.35,a-exp-i1,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1,"" -4.88,4.88,a-exp-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0,"" -4.17,4.17,a-exp-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6,"" -3.72,3.72,a-exp-i1,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7,"" -4.205,4.21,a-exp-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0,"" -3.69,3.69,a-exp-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1,"" -4.175,4.18,a-exp-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0,"" -4.33,4.33,a-exp-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7,"" -4.545,4.55,a-exp-i1,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6,"" -4.505,4.51,a-exp-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4,"" -4.085,4.09,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5,"" -4.705,4.71,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0,"" -4.515,4.52,a-exp-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8,"" -4.265,4.27,a-exp-i1,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1,"" -4.37,4.37,a-exp-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0,"" -3.335,3.34,a-exp-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2,"" -4.275,4.28,a-exp-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0,"" -1.4,1.4,a-exp-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4,"" -4.26,4.26,a-exp-i1,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9,"" -4.37,4.37,a-exp-i1,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8,"" -4.385,4.39,a-exp-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9,"" -4.13,4.13,a-exp-i1,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0,"" -4.865,4.87,a-exp-i1,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0,"" -3.335,3.34,a-exp-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0,"" -4.495,4.5,a-exp-i1,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6,"" -4.545,4.55,a-exp-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0,"" -2.535,2.54,a-exp-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0,"" -4.8149999999999995,4.81,a-exp-i1,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9,"" -4.01,4.01,a-exp-i1,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2,"" -5.0,5.0,a-exp-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0,"" -3.665,3.67,a-exp-i1,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3,"" -4.375,4.38,a-exp-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9,"" -4.0,4.0,a-exp-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0,"" -3.825,3.83,a-exp-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2,"" -4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0,"" -4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5,"" -3.675,3.68,a-exp-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8,"" -4.235,4.24,a-exp-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3,"" -4.455,4.46,a-exp-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4,"" -4.16,4.16,a-exp-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7,"" -4.585,4.59,a-exp-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6,"" -4.18,4.18,a-exp-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8,"" -4.15,4.15,a-exp-i1,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0,"" -4.485,4.49,a-exp-i1,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3,"" -4.07,4.07,a-exp-i1,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9,"" -3.4450000000000003,3.45,a-exp-i1,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5,"" -4.535,4.54,a-exp-i1,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2,"" -4.54,4.54,a-exp-i1,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2,"" -4.755,4.76,a-exp-i1,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6,"" -4.55,4.55,a-exp-i1,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9,"" -4.37,4.37,a-exp-i1,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2,"" -4.415,4.42,a-exp-i1,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0,"" -4.485,4.49,a-exp-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8,"" -2.245,2.25,a-exp-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2,"" -3.87,3.87,a-exp-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2,"" -2.825,2.83,a-exp-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6,"" -4.165,4.17,a-exp-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7,"" -2.875,2.88,a-exp-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3,"" -4.485,4.49,a-exp-i1,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6,"" -3.595,3.6,a-exp-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8,"" -4.33,4.33,a-exp-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0,"" -4.775,4.78,a-exp-i1,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5,"" -4.58,4.58,a-exp-i1,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8,"" -4.09,4.09,a-exp-i1,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9,"" -3.1100000000000003,3.11,a-exp-i1,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7,"" -4.045,4.05,a-exp-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7,"" -4.615,4.62,a-exp-i1,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8,"" -3.6950000000000003,3.7,a-exp-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7,"" -3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4,"" +4.075,4.08,a-exp-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3, 90.5 +5.0,5.0,a-exp-i1,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0, 100.0 +3.905,3.91,a-exp-i1,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0, 95.8 +3.8899999999999997,3.89,a-exp-i1,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3, 92.2 +4.46,4.46,a-exp-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9, 97.6 +3.9200000000000004,3.92,a-exp-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4, 100.0 +1.8649999999999998,1.86,a-exp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6, 47.3 +4.63,4.63,a-exp-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8, 98.5 +4.325,4.33,a-exp-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5, 96.9 +5.0,5.0,a-exp-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0, 100.0 +4.335,4.34,a-exp-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0, 100.0 +3.7700000000000005,3.77,a-exp-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9, 97.3 +4.1850000000000005,4.19,a-exp-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3, 100.0 +3.6350000000000002,3.64,a-exp-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9, 87.9 +4.04,4.04,a-exp-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9, 82.8 +5.0,5.0,a-exp-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0, 90.0 +4.63,4.63,a-exp-i1,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9, 96.0 +4.58,4.58,a-exp-i1,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4, 92.4 +4.715,4.72,a-exp-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0, 100.0 +3.215,3.22,a-exp-i1,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8, 95.7 +3.475,3.48,a-exp-i1,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9, 100.0 +4.755,4.76,a-exp-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0, 100.0 +1.5699999999999998,1.57,a-exp-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0, 28.6 +4.29,4.29,a-exp-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0, 100.0 +4.61,4.61,a-exp-i1,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3, 96.0 +3.475,3.48,a-exp-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0, 75.0 +4.54,4.54,a-exp-i1,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6, 100.0 +4.385,4.39,a-exp-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0, 100.0 +4.6,4.6,a-exp-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2, 97.7 +4.035,4.04,a-exp-i1,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2, 92.5 +4.455,4.46,a-exp-i1,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3, 97.5 +4.255,4.26,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6, 90.8 +3.7600000000000002,3.76,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1, 75.0 +4.38,4.38,a-exp-i1,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8, 97.0 +4.6,4.6,a-exp-i1,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9, 100.0 +4.285,4.29,a-exp-i1,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0, 100.0 +4.585,4.59,a-exp-i1,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0, 100.0 +4.6450000000000005,4.65,a-exp-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0, 96.9 +4.29,4.29,a-exp-i1,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0, 100.0 +4.08,4.08,a-exp-i1,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0, 100.0 +4.86,4.86,a-exp-i1,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3, 100.0 +2.35,2.35,a-exp-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7, 53.1 +4.135,4.14,a-exp-i1,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5, 94.6 +4.165,4.17,a-exp-i1,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0, 97.4 +3.965,3.97,a-exp-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8, 97.6 +4.415,4.42,a-exp-i1,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8, 100.0 +4.055,4.06,a-exp-i1,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5, 95.1 +3.7649999999999997,3.76,a-exp-i1,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5, 97.5 +3.685,3.69,a-exp-i1,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4, 100.0 +3.47,3.47,a-exp-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0, 100.0 +3.725,3.73,a-exp-i1,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2, 97.7 +3.28,3.28,a-exp-i1,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9, 93.9 +4.41,4.41,a-exp-i1,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9, 95.7 +5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6, 96.0 +4.25,4.25,a-exp-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5, 97.6 +4.46,4.46,a-exp-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0, 100.0 +4.66,4.66,a-exp-i1,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3, 96.7 +4.01,4.01,a-exp-i1,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2, 96.6 +4.2,4.2,a-exp-i1,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0, 96.1 +4.36,4.36,a-exp-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9, 97.9 +4.285,4.29,a-exp-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0, 100.0 +4.415,4.42,a-exp-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8, 93.8 +3.54,3.54,a-exp-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6, 97.7 +3.22,3.22,a-exp-i1,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0, 88.9 +4.029999999999999,4.03,a-exp-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8, 94.1 +3.075,3.08,a-exp-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0, 84.6 +2.87,2.87,a-exp-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1, 63.9 +4.2,4.2,a-exp-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0, 92.3 +2.805,2.81,a-exp-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3, 72.7 +4.35,4.35,a-exp-i1,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1, 91.1 +4.88,4.88,a-exp-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0, 62.5 +4.17,4.17,a-exp-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6, 100.0 +3.72,3.72,a-exp-i1,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0, 100.0 +4.175,4.18,a-exp-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7, 93.5 +4.205,4.21,a-exp-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0, 100.0 +3.69,3.69,a-exp-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1, 97.4 +4.175,4.18,a-exp-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0, 100.0 +4.33,4.33,a-exp-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0, 100.0 +4.35,4.35,a-exp-i1,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7, 94.0 +4.545,4.55,a-exp-i1,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4, 90.3 +4.720000000000001,4.72,a-exp-i1,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6, 100.0 +4.505,4.51,a-exp-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0, 97.9 +3.8950000000000005,3.9,a-exp-i1,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4, 100.0 +4.085,4.09,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5, 89.7 +4.705,4.71,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0, 94.6 +4.515,4.52,a-exp-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0, 97.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7, 97.7 +4.095000000000001,4.1,a-exp-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8, 100.0 +4.265,4.27,a-exp-i1,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9, 94.6 +3.7299999999999995,3.73,a-exp-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1, 95.5 +4.37,4.37,a-exp-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5, 98.6 +4.3100000000000005,4.31,a-exp-i1,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0, 97.2 +4.345000000000001,4.35,a-exp-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2, 100.0 +4.275,4.28,a-exp-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0, 94.3 +1.4,1.4,a-exp-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4, 35.6 +4.26,4.26,a-exp-i1,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9, 96.7 +4.37,4.37,a-exp-i1,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8, 96.8 +4.385,4.39,a-exp-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9, 100.0 +4.13,4.13,a-exp-i1,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0, 86.0 +4.465,4.47,a-exp-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0, 92.3 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0, 97.2 +4.865,4.87,a-exp-i1,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0, 100.0 +4.495,4.5,a-exp-i1,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6, 95.0 +4.545,4.55,a-exp-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0, 95.7 +4.4399999999999995,4.44,a-exp-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0, 100.0 +2.535,2.54,a-exp-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0, 87.5 +4.8149999999999995,4.81,a-exp-i1,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9, 96.7 +4.01,4.01,a-exp-i1,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0, 95.6 +3.665,3.67,a-exp-i1,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3, 100.0 +4.375,4.38,a-exp-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9, 98.9 +4.0,4.0,a-exp-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0, 80.0 +3.825,3.83,a-exp-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2, 83.9 +4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0, 97.4 +4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5, 96.9 +3.675,3.68,a-exp-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8, 34.0 +4.235,4.24,a-exp-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3, 96.0 +4.455,4.46,a-exp-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4, 100.0 +4.16,4.16,a-exp-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0, 94.1 +4.720000000000001,4.72,a-exp-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4, 100.0 +3.6100000000000003,3.61,a-exp-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7, 100.0 +4.585,4.59,a-exp-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6, 95.9 +4.18,4.18,a-exp-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7, 100.0 +3.8600000000000003,3.86,a-exp-i1,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8, 91.8 +4.15,4.15,a-exp-i1,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0, 91.8 +4.485,4.49,a-exp-i1,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3, 94.6 +4.07,4.07,a-exp-i1,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9, 100.0 +3.4450000000000003,3.45,a-exp-i1,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0, 96.8 +4.43,4.43,a-exp-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5, 93.0 +4.535,4.54,a-exp-i1,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0, 100.0 +4.365,4.37,a-exp-i1,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2, 100.0 +4.54,4.54,a-exp-i1,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2, 96.3 +4.755,4.76,a-exp-i1,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6, 98.1 +4.55,4.55,a-exp-i1,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9, 96.8 +4.37,4.37,a-exp-i1,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2, 97.3 +4.415,4.42,a-exp-i1,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0, 100.0 +4.485,4.49,a-exp-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8, 90.7 +2.245,2.25,a-exp-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2, 95.2 +3.87,3.87,a-exp-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2, 87.5 +2.825,2.83,a-exp-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6, 96.8 +4.165,4.17,a-exp-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7, 91.7 +2.875,2.88,a-exp-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0, 93.3 +4.68,4.68,a-exp-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3, 98.8 +4.485,4.49,a-exp-i1,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6, 96.6 +3.595,3.6,a-exp-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0, 80.0 +3.71,3.71,a-exp-i1,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8, 66.7 +4.33,4.33,a-exp-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0, 93.3 +4.68,4.68,a-exp-i1,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0, 96.8 +4.775,4.78,a-exp-i1,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5, 95.7 +4.58,4.58,a-exp-i1,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4, 92.2 +4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8, 82.6 +4.09,4.09,a-exp-i1,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9, 94.4 +3.1100000000000003,3.11,a-exp-i1,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7, 70.6 +4.045,4.05,a-exp-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7, 82.9 +4.470000000000001,4.47,a-exp-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7, 78.7 +4.615,4.62,a-exp-i1,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9, 98.9 +4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8, 91.9 +3.6950000000000003,3.7,a-exp-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8, 92.9 +3.7600000000000002,3.76,a-exp-i1,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7, 87.3 +3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4, 82.4 0.0,1,a-exp-i1,2022-23,Boston - Carter School,00350036, 0.0, 0.0,N/A,"","","" -3.81,3.81,a-exp-i1,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2,"" -3.29,3.29,a-exp-i1,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0,"" -4.245,4.25,a-exp-i1,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0,"" -2.9,2.9,a-exp-i1,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7,"" -4.11,4.11,a-exp-i1,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9,"" -3.335,3.34,a-exp-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3,"" -3.6049999999999995,3.6,a-exp-i1,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7,"" -3.495,3.5,a-exp-i1,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2,"" -4.295,4.3,a-exp-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2,"" -3.41,3.41,a-exp-i1,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6,"" -3.87,3.87,a-exp-i1,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5,"" -3.575,3.58,a-exp-i1,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5,"" -4.33,4.33,a-exp-i1,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7,"" -4.285,4.29,a-exp-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7,"" -3.75,3.75,a-exp-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7,"" -4.165,4.17,a-exp-i1,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0,"" -2.94,2.94,a-exp-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2,"" -3.66,3.66,a-exp-i1,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0,"" -4.62,4.62,a-exp-i1,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0,"" -3.785,3.79,a-exp-i1,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0,"" -3.415,3.42,a-exp-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0,"" -3.04,3.04,a-exp-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2,"" -4.15,4.15,a-exp-i1,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0,"" -3.6,3.6,a-exp-i1,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1,"" -4.115,4.12,a-exp-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6,"" -3.71,3.71,a-exp-i1,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8,"" -4.54,4.54,a-exp-i1,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0,"" -3.18,3.18,a-exp-i1,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9,"" -4.11,4.11,a-exp-i1,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1,"" -3.785,3.79,a-exp-i1,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0,"" -3.815,3.82,a-exp-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6,"" -4.075,4.08,a-exp-i1,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8,"" -4.37,4.37,a-exp-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6,"" -3.44,3.44,a-exp-i1,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5,"" -4.970000000000001,4.97,a-exp-i1,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4,"" -3.815,3.82,a-exp-i1,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5,"" -3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3,"" -4.55,4.55,a-exp-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0,"" -4.25,4.25,a-exp-i1,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0,"" -4.785,4.79,a-exp-i1,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0,"" -4.045,4.05,a-exp-i1,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2,"" -4.17,4.17,a-exp-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2,"" -3.9850000000000003,3.99,a-exp-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9,"" -3.2,3.2,a-exp-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6,"" -4.025,4.03,a-exp-i1,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0,"" -2.995,3.0,a-exp-i1,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3,"" -4.75,4.75,a-exp-i1,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4,"" -4.165,4.17,a-exp-i1,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9,"" -3.825,3.83,a-exp-i1,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6,"" -4.51,4.51,a-exp-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0,"" -3.685,3.69,a-exp-i1,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0,"" -4.425,4.43,a-exp-i1,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3,"" -4.34,4.34,a-exp-i1,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7,"" -4.58,4.58,a-exp-i1,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6,"" -3.65,3.65,a-exp-i1,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3,"" -4.025,4.03,a-exp-i1,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8,"" -4.015,4.02,a-exp-i1,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0,"" -3.28,3.28,a-exp-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5,"" -2.305,2.31,a-exp-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0,"" -4.49,4.49,a-exp-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2,"" -3.41,3.41,a-exp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0,"" -1.5699999999999998,1.57,a-exp-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7,"" -3.425,3.43,a-exp-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4,"" -4.57,4.57,a-exp-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3,"" -4.255,4.26,a-exp-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9,"" -4.3,4.3,a-exp-i1,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6,"" -4.675,4.68,a-exp-i1,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0,"" -4.88,4.88,a-exp-i1,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1,"" -4.415,4.42,a-exp-i1,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2,"" -4.415,4.42,a-exp-i1,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5,"" -4.34,4.34,a-exp-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5,"" -4.66,4.66,a-exp-i1,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3,"" -4.0,4.0,a-exp-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0,"" -2.67,2.67,a-exp-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9,"" -4.45,4.45,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4,"" -4.09,4.09,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8,"" -4.75,4.75,a-exp-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0,"" -4.38,4.38,a-exp-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2,"" -4.285,4.29,a-exp-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4,"" -2.91,2.91,a-exp-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0,"" -4.475,4.48,a-exp-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3,"" -3.725,3.73,a-exp-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2,"" -4.335,4.34,a-exp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6,"" -4.615,4.62,a-exp-i1,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8,"" -3.505,3.51,a-exp-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0,"" -4.135,4.14,a-exp-i1,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9,"" -4.24,4.24,a-exp-i1,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0,"" -4.17,4.17,a-exp-i1,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4,"" -4.24,4.24,a-exp-i1,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8,"" -4.285,4.29,a-exp-i1,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6,"" -4.275,4.28,a-exp-i1,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9,"" -4.12,4.12,a-exp-i1,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8,"" -4.525,4.53,a-exp-i1,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6,"" -4.175,4.18,a-exp-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0,"" -4.0,4.0,a-exp-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1,"" -3.63,3.63,a-exp-i1,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2,"" -2.81,2.81,a-exp-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3,"" -4.04,4.04,a-exp-i1,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6,"" -3.835,3.84,a-exp-i1,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7,"" -2.54,2.54,a-exp-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0,"" -3.325,3.33,a-exp-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8,"" -3.97,3.97,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0,"" -1.625,1.63,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5,"" -4.42,4.42,a-exp-i1,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5,"" -4.725,4.73,a-exp-i1,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9,"" -4.61,4.61,a-exp-i1,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8,"" -3.975,3.98,a-exp-i1,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0,"" -4.235,4.24,a-exp-i1,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4,"" -4.125,4.13,a-exp-i1,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2,"" -3.935,3.94,a-exp-i1,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0,"" -4.785,4.79,a-exp-i1,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0,"" -4.385,4.39,a-exp-i1,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0,"" -3.435,3.44,a-exp-i1,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9,"" -4.46,4.46,a-exp-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2,"" -3.755,3.76,a-exp-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1,"" -3.87,3.87,a-exp-i1,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5,"" -4.125,4.13,a-exp-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2,"" -4.3,4.3,a-exp-i1,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5,"" -4.26,4.26,a-exp-i1,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1,"" -4.515,4.52,a-exp-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4,"" -4.255,4.26,a-exp-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8,"" -4.295,4.3,a-exp-i1,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0,"" -4.54,4.54,a-exp-i1,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3,"" -2.9,2.9,a-exp-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6,"" -3.595,3.6,a-exp-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8,"" -4.4,4.4,a-exp-i1,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4,"" -4.08,4.08,a-exp-i1,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7,"" -4.465,4.47,a-exp-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0,"" -4.21,4.21,a-exp-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3,"" -3.66,3.66,a-exp-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5,"" -4.505,4.51,a-exp-i1,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6,"" -4.74,4.74,a-exp-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8,"" -4.675,4.68,a-exp-i1,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0,"" -4.765,4.77,a-exp-i1,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3,"" -4.38,4.38,a-exp-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6,"" -4.88,4.88,a-exp-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6,"" -4.62,4.62,a-exp-i1,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2,"" -4.46,4.46,a-exp-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9,"" -4.705,4.71,a-exp-i1,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3,"" -4.37,4.37,a-exp-i1,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0,"" -4.235,4.24,a-exp-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0,"" -2.855,2.86,a-exp-i1,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2,"" -5.0,5.0,a-exp-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3,"" -4.0,4.0,a-exp-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2,"" -3.66,3.66,a-exp-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6,"" -3.535,3.54,a-exp-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1,"" -2.58,2.58,a-exp-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5,"" -2.7800000000000002,2.78,a-exp-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7,"" -3.56,3.56,a-exp-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1,"" -3.505,3.51,a-exp-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7,"" -4.45,4.45,a-exp-i1,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5,"" -4.41,4.41,a-exp-i1,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1,"" -4.12,4.12,a-exp-i1,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0,"" -3.915,3.92,a-exp-i1,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0,"" -4.67,4.67,a-exp-i1,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7,"" -4.485,4.49,a-exp-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0,"" -3.125,3.13,a-exp-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5,"" -3.245,3.25,a-exp-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9,"" -1.6800000000000002,1.68,a-exp-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4,"" -4.1,4.1,a-exp-i1,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5,"" -4.305,4.31,a-exp-i1,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0,"" -2.85,2.85,a-exp-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9,"" -4.49,4.49,a-exp-i1,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8,"" -4.83,4.83,a-exp-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6,"" -4.425,4.43,a-exp-i1,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0,"" -1.09,1.09,a-exp-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2,"" -1.8,1.8,a-exp-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8,"" -2.195,2.2,a-exp-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6,"" -4.86,4.86,a-exp-i1,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8,"" -4.285,4.29,a-exp-i1,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5,"" -4.725,4.73,a-exp-i1,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4,"" -4.555,4.56,a-exp-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3,"" -2.805,2.81,a-exp-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5,"" -3.97,3.97,a-exp-i1,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7,"" -4.805,4.81,a-exp-i1,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1,"" -4.235,4.24,a-exp-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3,"" -4.82,4.82,a-exp-i1,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0,"" -4.66,4.66,a-exp-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8,"" -4.71,4.71,a-exp-i1,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5,"" -4.36,4.36,a-exp-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0,"" -4.455,4.46,a-exp-i1,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0,"" -4.695,4.7,a-exp-i1,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3,"" -4.83,4.83,a-exp-i1,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8,"" -4.975,4.98,a-exp-i1,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0,"" -4.275,4.28,a-exp-i1,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0,"" -4.275,4.28,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9,"" -4.57,4.57,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6,"" -4.225,4.23,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8,"" -4.34,4.34,a-exp-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4,"" -3.79,3.79,a-exp-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0,"" -4.18,4.18,a-exp-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0,"" -4.725,4.73,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8,"" -4.825,4.83,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0,"" -4.16,4.16,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3,"" -4.42,4.42,a-exp-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0,"" -4.11,4.11,a-exp-i1,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8,"" -4.42,4.42,a-exp-i1,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1,"" -4.14,4.14,a-exp-i1,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4,"" -4.445,4.45,a-exp-i1,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0,"" -4.165,4.17,a-exp-i1,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3,"" -4.3,4.3,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9,"" -4.2,4.2,a-exp-i1,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0,"" -3.875,3.88,a-exp-i1,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9,"" -3.6049999999999995,3.6,a-exp-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3,"" -3.69,3.69,a-exp-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6,"" -3.72,3.72,a-exp-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0,"" -4.525,4.53,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9,"" -4.59,4.59,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4,"" -4.66,4.66,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6,"" -4.465,4.47,a-exp-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2,"" -4.61,4.61,a-exp-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5,"" -4.845000000000001,4.85,a-exp-i1,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0,"" -3.925,3.93,a-exp-i1,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8,"" -3.7,3.7,a-exp-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0,"" -4.7,4.7,a-exp-i1,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1,"" -3.925,3.93,a-exp-i1,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5,"" -4.35,4.35,a-exp-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3,"" -4.46,4.46,a-exp-i1,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4,"" -4.505,4.51,a-exp-i1,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4,"" -4.58,4.58,a-exp-i1,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0,"" -4.05,4.05,a-exp-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8,"" -4.515,4.52,a-exp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5,"" -4.07,4.07,a-exp-i1,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1,"" -3.81,3.81,a-exp-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5,"" -4.445,4.45,a-exp-i1,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1,"" -4.14,4.14,a-exp-i1,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9,"" -4.045,4.05,a-exp-i1,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3,"" -3.4,3.4,a-exp-i1,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3,"" -4.285,4.29,a-exp-i1,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8,"" -2.4050000000000002,2.41,a-exp-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1,"" -4.64,4.64,a-exp-i1,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4,"" -4.58,4.58,a-exp-i1,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9,"" -3.405,3.41,a-exp-i1,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0,"" -4.925,4.93,a-exp-i1,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5,"" -3.6399999999999997,3.64,a-exp-i1,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8,"" -3.69,3.69,a-exp-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0,"" -0.0,1,a-exp-i1,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0,"" -2.105,2.11,a-exp-i1,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6,"" -4.55,4.55,a-exp-i1,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0,"" -3.4,3.4,a-exp-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2,"" -3.105,3.11,a-exp-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3,"" -3.025,3.03,a-exp-i1,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9,"" -3.1149999999999998,3.12,a-exp-i1,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2,"" -1.6,1.6,a-exp-i1,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9,"" -3.775,3.78,a-exp-i1,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9,"" -2.875,2.88,a-exp-i1,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3,"" -2.335,2.34,a-exp-i1,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1,"" -4.805,4.81,a-exp-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3,"" -4.11,4.11,a-exp-i1,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4,"" -4.535,4.54,a-exp-i1,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0,"" -4.33,4.33,a-exp-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6,"" -4.29,4.29,a-exp-i1,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0,"" -3.815,3.82,a-exp-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7,"" -4.7,4.7,a-exp-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1,"" -5.0,5.0,a-exp-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6,"" -3.725,3.73,a-exp-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2,"" -4.125,4.13,a-exp-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5,"" -3.845,3.85,a-exp-i1,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9,"" -4.585,4.59,a-exp-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0,"" -4.36,4.36,a-exp-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0,"" +3.81,3.81,a-exp-i1,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2, 95.0 +3.29,3.29,a-exp-i1,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0, 82.3 +4.245,4.25,a-exp-i1,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3, 96.7 +3.7950000000000004,3.8,a-exp-i1,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0, 100.0 +2.9,2.9,a-exp-i1,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0, 57.1 +4.2299999999999995,4.23,a-exp-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0, 73.7 +3.7299999999999995,3.73,a-exp-i1,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5, 89.6 +4.21,4.21,a-exp-i1,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7, 100.0 +4.11,4.11,a-exp-i1,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9, 92.8 +3.335,3.34,a-exp-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3, 83.6 +3.6049999999999995,3.6,a-exp-i1,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7, 88.6 +3.495,3.5,a-exp-i1,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9, 87.5 +3.8549999999999995,3.85,a-exp-i1,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8, 83.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2, 91.2 +4.295,4.3,a-exp-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2, 94.6 +3.41,3.41,a-exp-i1,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4, 86.8 +4.21,4.21,a-exp-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0, 94.7 +3.8299999999999996,3.83,a-exp-i1,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6, 74.2 +3.87,3.87,a-exp-i1,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5, 95.8 +3.575,3.58,a-exp-i1,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5, 76.1 +4.33,4.33,a-exp-i1,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7, 64.1 +4.285,4.29,a-exp-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7, 83.7 +3.75,3.75,a-exp-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7, 97.2 +4.165,4.17,a-exp-i1,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0, 64.3 +2.94,2.94,a-exp-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2, 91.2 +3.66,3.66,a-exp-i1,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1, 91.7 +4.21,4.21,a-exp-i1,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0, 100.0 +4.62,4.62,a-exp-i1,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0, 92.9 +4.654999999999999,4.65,a-exp-i1,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0, 93.5 +4.68,4.68,a-exp-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0, 97.5 +3.785,3.79,a-exp-i1,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9, 88.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7, 100.0 +3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4, 85.4 +3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1, 90.9 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0, 93.1 +3.415,3.42,a-exp-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0, 68.8 +3.04,3.04,a-exp-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2, 88.0 +4.15,4.15,a-exp-i1,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1, 89.5 +4.404999999999999,4.4,a-exp-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0, 78.9 +3.6,3.6,a-exp-i1,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1, 96.2 +4.115,4.12,a-exp-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0, 81.8 +3.995,4.0,a-exp-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6, 100.0 +3.71,3.71,a-exp-i1,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8, 100.0 +4.54,4.54,a-exp-i1,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0, 97.8 +3.18,3.18,a-exp-i1,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9, 89.8 +4.11,4.11,a-exp-i1,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1, 94.4 +3.785,3.79,a-exp-i1,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5, 95.2 +3.9450000000000003,3.95,a-exp-i1,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3, 89.4 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0, 70.0 +4.6,4.6,a-exp-i1,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0, 88.9 +3.815,3.82,a-exp-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6, 84.0 +4.075,4.08,a-exp-i1,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8, 88.2 +4.37,4.37,a-exp-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6, 68.8 +3.44,3.44,a-exp-i1,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6, 86.7 +3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5, 84.0 +4.970000000000001,4.97,a-exp-i1,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7, 93.3 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4, 98.2 +4.279999999999999,4.28,a-exp-i1,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4, 92.4 +3.815,3.82,a-exp-i1,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5, 62.9 +3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3, 81.5 +4.55,4.55,a-exp-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0, 91.5 +4.25,4.25,a-exp-i1,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0, 95.7 +4.785,4.79,a-exp-i1,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0, 93.2 +4.045,4.05,a-exp-i1,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2, 85.9 +4.17,4.17,a-exp-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2, 89.7 +3.9850000000000003,3.99,a-exp-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9, 88.5 +4.8950000000000005,4.9,a-exp-i1,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9, 96.1 +3.2,3.2,a-exp-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6, 86.1 +4.025,4.03,a-exp-i1,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0, 85.7 +2.995,3.0,a-exp-i1,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3, 95.5 +4.75,4.75,a-exp-i1,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0, 90.9 +3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4, 76.5 +4.165,4.17,a-exp-i1,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9, 95.5 +3.825,3.83,a-exp-i1,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6, 81.1 +4.51,4.51,a-exp-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0, 97.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0, 96.8 +3.685,3.69,a-exp-i1,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0, 89.5 +4.425,4.43,a-exp-i1,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3, 87.5 +4.34,4.34,a-exp-i1,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0, 96.2 +3.6100000000000003,3.61,a-exp-i1,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0, 87.5 +3.7399999999999998,3.74,a-exp-i1,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7, 80.7 +4.58,4.58,a-exp-i1,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4, 94.3 +3.9200000000000004,3.92,a-exp-i1,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6, 79.4 +3.65,3.65,a-exp-i1,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3, 92.3 +4.025,4.03,a-exp-i1,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8, 89.4 +4.345000000000001,4.35,a-exp-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8, 97.8 +3.8899999999999997,3.89,a-exp-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8, 71.4 +4.015,4.02,a-exp-i1,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0, 86.2 +4.76,4.76,a-exp-i1,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0, 92.3 +3.28,3.28,a-exp-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5, 93.8 +2.305,2.31,a-exp-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0, 53.3 +4.49,4.49,a-exp-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2, 64.9 +3.41,3.41,a-exp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0, 80.0 +1.5699999999999998,1.57,a-exp-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7, 57.0 +3.425,3.43,a-exp-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3, 93.3 +3.8549999999999995,3.85,a-exp-i1,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4, 92.1 +4.57,4.57,a-exp-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1, 94.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3, 93.8 +4.255,4.26,a-exp-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0, 97.1 +3.9549999999999996,3.95,a-exp-i1,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9, 100.0 +4.3,4.3,a-exp-i1,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0, 95.5 +4.5200000000000005,4.52,a-exp-i1,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6, 97.0 +4.675,4.68,a-exp-i1,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0, 96.7 +4.88,4.88,a-exp-i1,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0, 95.5 +4.68,4.68,a-exp-i1,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1, 100.0 +4.415,4.42,a-exp-i1,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2, 93.8 +4.415,4.42,a-exp-i1,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0, 90.9 +4.49,4.49,a-exp-i1,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5, 96.9 +4.34,4.34,a-exp-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0, 96.7 +5.0,5.0,a-exp-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5, 88.9 +4.66,4.66,a-exp-i1,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0, 97.8 +4.515,4.52,a-exp-i1,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3, 100.0 +4.0,4.0,a-exp-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0, 100.0 +2.67,2.67,a-exp-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9, 71.9 +4.45,4.45,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4, 98.2 +4.09,4.09,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2, 98.9 +4.529999999999999,4.53,a-exp-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8, 97.0 +4.75,4.75,a-exp-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0, 100.0 +4.38,4.38,a-exp-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4, 100.0 +2.91,2.91,a-exp-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0, 100.0 +4.475,4.48,a-exp-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3, 96.4 +3.725,3.73,a-exp-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2, 85.7 +4.335,4.34,a-exp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6, 96.1 +4.615,4.62,a-exp-i1,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8, 93.2 +3.505,3.51,a-exp-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0, 94.7 +4.135,4.14,a-exp-i1,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9, 89.3 +4.24,4.24,a-exp-i1,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0, 92.1 +3.0949999999999998,3.1,a-exp-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5, 87.5 +3.6100000000000003,3.61,a-exp-i1,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0, 97.6 +4.17,4.17,a-exp-i1,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4, 97.0 +4.24,4.24,a-exp-i1,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8, 88.7 +4.285,4.29,a-exp-i1,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6, 98.7 +4.275,4.28,a-exp-i1,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0, 86.7 +3.75,3.75,a-exp-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9, 100.0 +4.12,4.12,a-exp-i1,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5, 100.0 +3.4299999999999997,3.43,a-exp-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8, 77.8 +4.525,4.53,a-exp-i1,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6, 100.0 +4.175,4.18,a-exp-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0, 98.5 +4.0,4.0,a-exp-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1, 90.8 +3.8200000000000003,3.82,a-exp-i1,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1, 96.6 +3.63,3.63,a-exp-i1,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6, 92.9 +4.220000000000001,4.22,a-exp-i1,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2, 95.5 +2.81,2.81,a-exp-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3, 86.7 +4.04,4.04,a-exp-i1,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2, 96.3 +3.7600000000000002,3.76,a-exp-i1,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6, 85.9 +3.835,3.84,a-exp-i1,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7, 96.4 +2.54,2.54,a-exp-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0, 36.3 +3.325,3.33,a-exp-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8, 92.3 +3.97,3.97,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0, 100.0 +1.625,1.63,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0, 85.7 +5.0,5.0,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5, 94.9 +4.42,4.42,a-exp-i1,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2, 98.5 +3.9549999999999996,3.95,a-exp-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5, 96.1 +4.725,4.73,a-exp-i1,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9, 95.5 +4.61,4.61,a-exp-i1,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8, 100.0 +3.975,3.98,a-exp-i1,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0, 98.3 +4.235,4.24,a-exp-i1,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4, 100.0 +4.125,4.13,a-exp-i1,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2, 98.4 +3.935,3.94,a-exp-i1,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0, 100.0 +4.785,4.79,a-exp-i1,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0, 100.0 +4.58,4.58,a-exp-i1,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0, 93.1 +4.385,4.39,a-exp-i1,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1, 96.3 +4.470000000000001,4.47,a-exp-i1,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0, 100.0 +4.6450000000000005,4.65,a-exp-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0, 100.0 +3.435,3.44,a-exp-i1,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9, 82.5 +4.46,4.46,a-exp-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2, 95.1 +3.755,3.76,a-exp-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1, 91.9 +3.87,3.87,a-exp-i1,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5, 100.0 +4.125,4.13,a-exp-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2, 97.5 +4.3,4.3,a-exp-i1,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5, 100.0 +4.26,4.26,a-exp-i1,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1, 97.3 +4.515,4.52,a-exp-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5, 97.1 +3.5450000000000004,3.55,a-exp-i1,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4, 93.3 +4.255,4.26,a-exp-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0, 97.5 +4.1450000000000005,4.15,a-exp-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8, 89.5 +4.295,4.3,a-exp-i1,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0, 100.0 +4.54,4.54,a-exp-i1,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3, 96.7 +2.9,2.9,a-exp-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6, 97.1 +3.595,3.6,a-exp-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8, 95.7 +4.4,4.4,a-exp-i1,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0, 91.1 +4.1850000000000005,4.19,a-exp-i1,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4, 100.0 +4.08,4.08,a-exp-i1,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7, 100.0 +4.465,4.47,a-exp-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0, 100.0 +4.21,4.21,a-exp-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6, 95.6 +4.720000000000001,4.72,a-exp-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3, 58.8 +3.66,3.66,a-exp-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5, 88.7 +4.505,4.51,a-exp-i1,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0, 93.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0, 94.8 +4.365,4.37,a-exp-i1,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6, 90.4 +4.74,4.74,a-exp-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8, 100.0 +4.675,4.68,a-exp-i1,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0, 100.0 +4.765,4.77,a-exp-i1,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3, 100.0 +4.38,4.38,a-exp-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6, 92.3 +4.88,4.88,a-exp-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6, 95.7 +4.62,4.62,a-exp-i1,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5, 100.0 +4.154999999999999,4.15,a-exp-i1,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2, 100.0 +4.46,4.46,a-exp-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9, 97.1 +4.705,4.71,a-exp-i1,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0, 97.2 +4.095000000000001,4.1,a-exp-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3, 94.0 +4.37,4.37,a-exp-i1,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0, 92.3 +4.235,4.24,a-exp-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0, 95.5 +4.265,4.27,a-exp-i1,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0, 97.1 +2.855,2.86,a-exp-i1,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2, 92.9 +5.0,5.0,a-exp-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3, 100.0 +4.0,4.0,a-exp-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0, 87.5 +3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2, 92.2 +3.66,3.66,a-exp-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7, 95.1 +3.8600000000000003,3.86,a-exp-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6, 100.0 +3.535,3.54,a-exp-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1, 92.5 +2.58,2.58,a-exp-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5, 92.5 +2.7800000000000002,2.78,a-exp-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7, 88.9 +3.56,3.56,a-exp-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4, 93.1 +3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1, 97.2 +3.505,3.51,a-exp-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8, 90.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7, 96.8 +4.45,4.45,a-exp-i1,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5, 90.0 +4.41,4.41,a-exp-i1,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1, 98.7 +4.12,4.12,a-exp-i1,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0, 97.1 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0, 95.5 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0, 100.0 +4.25,4.25,a-exp-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3, 93.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0, 96.6 +3.915,3.92,a-exp-i1,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0, 98.6 +4.6899999999999995,4.69,a-exp-i1,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0, 96.0 +4.67,4.67,a-exp-i1,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7, 96.8 +4.485,4.49,a-exp-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0, 95.5 +3.125,3.13,a-exp-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5, 93.8 +3.245,3.25,a-exp-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9, 72.5 +1.6800000000000002,1.68,a-exp-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0, 48.6 +4.220000000000001,4.22,a-exp-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4, 94.1 +4.1,4.1,a-exp-i1,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5, 98.6 +4.305,4.31,a-exp-i1,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0, 96.2 +4.345000000000001,4.35,a-exp-i1,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0, 94.0 +2.85,2.85,a-exp-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9, 49.1 +4.49,4.49,a-exp-i1,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8, 100.0 +4.83,4.83,a-exp-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6, 94.4 +4.425,4.43,a-exp-i1,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0, 100.0 +1.09,1.09,a-exp-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2, 37.9 +1.8,1.8,a-exp-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8, 50.0 +2.195,2.2,a-exp-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6, 43.0 +4.86,4.86,a-exp-i1,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7, 100.0 +4.6850000000000005,4.69,a-exp-i1,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8, 97.1 +4.285,4.29,a-exp-i1,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5, 100.0 +4.725,4.73,a-exp-i1,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4, 100.0 +4.555,4.56,a-exp-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3, 94.2 +2.805,2.81,a-exp-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5, 48.4 +3.97,3.97,a-exp-i1,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1, 98.7 +4.1450000000000005,4.15,a-exp-i1,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7, 100.0 +4.805,4.81,a-exp-i1,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1, 100.0 +4.235,4.24,a-exp-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3, 93.0 +4.82,4.82,a-exp-i1,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0, 100.0 +4.1049999999999995,4.1,a-exp-i1,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0, 100.0 +4.68,4.68,a-exp-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0, 92.0 +4.66,4.66,a-exp-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8, 95.2 +4.71,4.71,a-exp-i1,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5, 100.0 +4.36,4.36,a-exp-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0, 98.2 +4.455,4.46,a-exp-i1,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0, 97.0 +4.2700000000000005,4.27,a-exp-i1,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3, 94.4 +4.83,4.83,a-exp-i1,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8, 98.3 +4.975,4.98,a-exp-i1,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0, 96.3 +4.4399999999999995,4.44,a-exp-i1,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0, 96.6 +4.275,4.28,a-exp-i1,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7, 91.3 +4.3950000000000005,4.4,a-exp-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0, 91.9 +4.275,4.28,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9, 98.0 +4.57,4.57,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6, 100.0 +4.225,4.23,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8, 93.5 +4.34,4.34,a-exp-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4, 97.5 +3.79,3.79,a-exp-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0, 100.0 +4.18,4.18,a-exp-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0, 97.4 +4.725,4.73,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8, 100.0 +4.825,4.83,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0, 96.6 +4.16,4.16,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4, 95.6 +3.9899999999999998,3.99,a-exp-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3, 93.2 +4.42,4.42,a-exp-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0, 100.0 +4.11,4.11,a-exp-i1,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8, 100.0 +4.42,4.42,a-exp-i1,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1, 92.3 +4.14,4.14,a-exp-i1,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4, 96.2 +4.445,4.45,a-exp-i1,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0, 94.7 +4.165,4.17,a-exp-i1,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3, 92.8 +4.3,4.3,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9, 98.1 +4.2,4.2,a-exp-i1,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0, 100.0 +3.875,3.88,a-exp-i1,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7, 97.1 +4.6850000000000005,4.69,a-exp-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9, 100.0 +3.6049999999999995,3.6,a-exp-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3, 100.0 +3.69,3.69,a-exp-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6, 95.6 +3.72,3.72,a-exp-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0, 84.2 +4.58,4.58,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0, 93.1 +4.525,4.53,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9, 98.0 +4.59,4.59,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4, 96.6 +4.66,4.66,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6, 97.8 +4.465,4.47,a-exp-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0, 94.9 +4.675,4.68,a-exp-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2, 100.0 +4.61,4.61,a-exp-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5, 94.5 +4.845000000000001,4.85,a-exp-i1,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4, 96.7 +4.7299999999999995,4.73,a-exp-i1,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0, 98.3 +3.925,3.93,a-exp-i1,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6, 100.0 +3.7700000000000005,3.77,a-exp-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8, 98.6 +3.7,3.7,a-exp-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0, 98.1 +4.7,4.7,a-exp-i1,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0, 93.0 +4.68,4.68,a-exp-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9, 97.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0, 100.0 +4.41,4.41,a-exp-i1,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1, 100.0 +3.925,3.93,a-exp-i1,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0, 100.0 +4.6049999999999995,4.6,a-exp-i1,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0, 94.4 +4.445,4.45,a-exp-i1,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5, 100.0 +4.35,4.35,a-exp-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3, 100.0 +4.46,4.46,a-exp-i1,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4, 98.5 +4.505,4.51,a-exp-i1,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4, 97.8 +4.58,4.58,a-exp-i1,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0, 100.0 +4.05,4.05,a-exp-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8, 93.1 +4.515,4.52,a-exp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5, 85.0 +4.07,4.07,a-exp-i1,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1, 95.2 +3.81,3.81,a-exp-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5, 92.7 +4.445,4.45,a-exp-i1,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9, 100.0 +3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7, 95.5 +4.1049999999999995,4.1,a-exp-i1,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9, 91.0 +4.045,4.05,a-exp-i1,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3, 95.5 +3.4,3.4,a-exp-i1,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3, 90.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1, 90.3 +3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3, 90.9 +4.285,4.29,a-exp-i1,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0, 100.0 +4.1,4.1,a-exp-i1,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8, 92.3 +2.4050000000000002,2.41,a-exp-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1, 51.4 +4.64,4.64,a-exp-i1,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4, 96.7 +4.58,4.58,a-exp-i1,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9, 87.9 +3.405,3.41,a-exp-i1,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0, 100.0 +4.925,4.93,a-exp-i1,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5, 100.0 +3.6399999999999997,3.64,a-exp-i1,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8, 85.0 +3.69,3.69,a-exp-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0, 80.8 +0.0,1,a-exp-i1,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0, 87.5 +2.105,2.11,a-exp-i1,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6, 73.6 +4.55,4.55,a-exp-i1,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0, 86.0 +3.4,3.4,a-exp-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2, 87.5 +2.8600000000000003,2.86,a-exp-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2, 86.0 +3.105,3.11,a-exp-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3, 83.8 +3.025,3.03,a-exp-i1,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9, 79.7 +3.1149999999999998,3.12,a-exp-i1,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9, 83.6 +3.0949999999999998,3.1,a-exp-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2, 51.7 +1.6,1.6,a-exp-i1,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9, 84.2 +3.775,3.78,a-exp-i1,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7, 93.9 +3.6100000000000003,3.61,a-exp-i1,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9, 82.4 +2.875,2.88,a-exp-i1,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3, 75.4 +2.335,2.34,a-exp-i1,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1, 92.2 +4.805,4.81,a-exp-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3, 86.5 +4.11,4.11,a-exp-i1,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4, 100.0 +4.535,4.54,a-exp-i1,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8, 97.9 +4.6450000000000005,4.65,a-exp-i1,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0, 97.5 +4.33,4.33,a-exp-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6, 100.0 +4.29,4.29,a-exp-i1,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0, 100.0 +3.815,3.82,a-exp-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7, 90.3 +4.7,4.7,a-exp-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0, 96.1 +3.8549999999999995,3.85,a-exp-i1,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1, 92.1 +5.0,5.0,a-exp-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0, 90.9 +3.8649999999999998,3.87,a-exp-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9, 97.1 +4.4799999999999995,4.48,a-exp-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6, 91.8 +3.725,3.73,a-exp-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2, 98.3 +4.125,4.13,a-exp-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5, 100.0 +3.845,3.85,a-exp-i1,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9, 84.6 +4.585,4.59,a-exp-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1, 48.4 +4.779999999999999,4.78,a-exp-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0, 100.0 +4.61,4.61,a-exp-i1,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9, 97.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4, 97.1 +4.6049999999999995,4.6,a-exp-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0, 100.0 +4.36,4.36,a-exp-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0, 100.0 0.0,1,a-exp-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","" -2.915,2.92,a-exp-i1,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0,"" -3.02,3.02,a-exp-i1,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0,"" -4.04,4.04,a-exp-i1,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0,"" -4.275,4.28,a-exp-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2,"" -3.85,3.85,a-exp-i1,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3,"" -3.4899999999999998,3.49,a-exp-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1,"" -3.255,3.26,a-exp-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4,"" -3.875,3.88,a-exp-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5,"" -2.88,2.88,a-exp-i1,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5,"" -3.9299999999999997,3.93,a-exp-i1,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6,"" -3.05,3.05,a-exp-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5,"" -4.49,4.49,a-exp-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2,"" -4.8100000000000005,4.81,a-exp-i1,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5,"" -4.4,4.4,a-exp-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3,"" -4.07,4.07,a-exp-i1,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7,"" -4.415,4.42,a-exp-i1,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4,"" -3.815,3.82,a-exp-i1,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4,"" -4.46,4.46,a-exp-i1,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0,"" -3.87,3.87,a-exp-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3,"" -4.64,4.64,a-exp-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2,"" -4.285,4.29,a-exp-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3,"" -4.57,4.57,a-exp-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0,"" -4.235,4.24,a-exp-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4,"" -4.675,4.68,a-exp-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0,"" -4.36,4.36,a-exp-i1,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8,"" -5.0,5.0,a-exp-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7,"" -4.26,4.26,a-exp-i1,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3,"" -3.59,3.59,a-exp-i1,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9,"" -4.43,4.43,a-exp-i1,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0,"" -4.35,4.35,a-exp-i1,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2,"" -4.625,4.63,a-exp-i1,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7,"" -4.17,4.17,a-exp-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6,"" -4.85,4.85,a-exp-i1,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3,"" -0.0,1,a-exp-i1,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0,"" -4.535,4.54,a-exp-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0,"" -4.635,4.64,a-exp-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4,"" -4.67,4.67,a-exp-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1,"" -4.165,4.17,a-exp-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1,"" -3.22,3.22,a-exp-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7,"" -3.335,3.34,a-exp-i1,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1,"" -3.71,3.71,a-exp-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8,"" -4.33,4.33,a-exp-i1,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1,"" -5.0,5.0,a-exp-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0,"" -4.55,4.55,a-exp-i1,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0,"" -3.88,3.88,a-exp-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5,"" -4.21,4.21,a-exp-i1,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6,"" +2.915,2.92,a-exp-i1,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0, 79.3 +3.02,3.02,a-exp-i1,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0, 81.8 +4.04,4.04,a-exp-i1,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0, 88.3 +4.275,4.28,a-exp-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2, 100.0 +3.85,3.85,a-exp-i1,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9, 88.1 +3.6700000000000004,3.67,a-exp-i1,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3, 87.0 +3.4899999999999998,3.49,a-exp-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4, 89.6 +4.1049999999999995,4.1,a-exp-i1,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0, 97.9 +4.654999999999999,4.65,a-exp-i1,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0, 0.0 +3.3600000000000003,3.36,a-exp-i1,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1, 91.2 +3.255,3.26,a-exp-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4, 91.9 +3.875,3.88,a-exp-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5, 100.0 +2.88,2.88,a-exp-i1,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5, 95.5 +3.9299999999999997,3.93,a-exp-i1,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6, 85.7 +3.05,3.05,a-exp-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5, 61.1 +3.6700000000000004,3.67,a-exp-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5, 97.4 +4.49,4.49,a-exp-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5, 95.4 +4.3100000000000005,4.31,a-exp-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2, 100.0 +4.8100000000000005,4.81,a-exp-i1,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5, 94.7 +4.4,4.4,a-exp-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3, 100.0 +4.07,4.07,a-exp-i1,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7, 100.0 +4.415,4.42,a-exp-i1,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4, 100.0 +3.815,3.82,a-exp-i1,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4, 100.0 +4.46,4.46,a-exp-i1,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0, 97.7 +3.87,3.87,a-exp-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3, 86.9 +4.64,4.64,a-exp-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2, 96.9 +4.285,4.29,a-exp-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3, 97.3 +4.57,4.57,a-exp-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0, 100.0 +4.235,4.24,a-exp-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4, 96.2 +4.675,4.68,a-exp-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0, 100.0 +4.36,4.36,a-exp-i1,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8, 78.1 +5.0,5.0,a-exp-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0, 71.4 +3.7399999999999998,3.74,a-exp-i1,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7, 97.5 +4.26,4.26,a-exp-i1,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6, 89.6 +3.7700000000000005,3.77,a-exp-i1,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3, 95.7 +3.59,3.59,a-exp-i1,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9, 100.0 +4.43,4.43,a-exp-i1,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8, 83.8 +4.154999999999999,4.15,a-exp-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0, 80.6 +4.35,4.35,a-exp-i1,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2, 94.1 +4.625,4.63,a-exp-i1,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7, 95.0 +4.17,4.17,a-exp-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6, 81.5 +4.85,4.85,a-exp-i1,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3, 98.1 +0.0,1,a-exp-i1,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0, 100.0 +4.535,4.54,a-exp-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0, 85.7 +4.635,4.64,a-exp-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4, 96.2 +4.67,4.67,a-exp-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0, 95.0 +4.515,4.52,a-exp-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1, 100.0 +4.165,4.17,a-exp-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1, 88.9 +3.22,3.22,a-exp-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7, 87.5 +3.335,3.34,a-exp-i1,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1, 100.0 +3.71,3.71,a-exp-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1, 93.9 +5.0,5.0,a-exp-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0, 100.0 +4.55,4.55,a-exp-i1,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0, 100.0 +3.88,3.88,a-exp-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5, 100.0 +4.21,4.21,a-exp-i1,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1, 100.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6, 100.0 0.0,1,a-exp-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0,N/A,"","","" -4.6450000000000005,4.65,a-exp-i1,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7,"" -4.51,4.51,a-exp-i1,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5,"" -4.215,4.22,a-exp-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0,"" -4.225,4.23,a-exp-i1,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0,"" -4.375,4.38,a-exp-i1,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1,"" -4.305,4.31,a-exp-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2,"" -4.24,4.24,a-exp-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9,"" -4.17,4.17,a-exp-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4,"" -4.415,4.42,a-exp-i1,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6,"" -3.845,3.85,a-exp-i1,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1,"" -2.9850000000000003,2.99,a-exp-i1,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0,"" -1.875,1.88,a-exp-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8,"" -5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3,"" -4.75,4.75,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3,"" -5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1,"" -4.07,4.07,a-exp-i1,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6,"" -4.575,4.58,a-exp-i1,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2,"" -4.465,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0,"" -4.075,4.08,a-exp-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4,"" -4.635,4.64,a-exp-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0,"" -4.8100000000000005,4.81,a-exp-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0,"" -3.025,3.03,a-exp-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3,"" -3.075,3.08,a-exp-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0,"" -4.635,4.64,a-exp-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8,"" -4.59,4.59,a-exp-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0,"" -4.65,4.65,a-exp-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8,"" -4.54,4.54,a-exp-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0,"" -4.425,4.43,a-exp-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6,"" -4.865,4.87,a-exp-i1,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5,"" -4.365,4.37,a-exp-i1,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7,"" -4.635,4.64,a-exp-i1,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6,"" -4.525,4.53,a-exp-i1,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3,"" -4.09,4.09,a-exp-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6,"" -4.005,4.01,a-exp-i1,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1,"" -2.5,2.5,a-exp-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3,"" -3.9,3.9,a-exp-i1,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4,"" -3.575,3.58,a-exp-i1,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3,"" -3.5,3.5,a-exp-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0,"" -2.7600000000000002,2.76,a-exp-i1,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0,"" -3.69,3.69,a-exp-i1,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2,"" -3.335,3.34,a-exp-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3,"" -4.14,4.14,a-exp-i1,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7,"" -3.825,3.83,a-exp-i1,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2,"" -3.75,3.75,a-exp-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5,"" -4.12,4.12,a-exp-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9,"" -4.07,4.07,a-exp-i1,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6,"" -4.04,4.04,a-exp-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7,"" -1.4949999999999999,1.5,a-exp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1,"" -2.9050000000000002,2.91,a-exp-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9,"" -3.4,3.4,a-exp-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5,"" -4.64,4.64,a-exp-i1,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8,"" -4.585,4.59,a-exp-i1,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7,"" -3.94,3.94,a-exp-i1,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4,"" -4.71,4.71,a-exp-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0,"" -3.845,3.85,a-exp-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9,"" -4.5,4.5,a-exp-i1,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0,"" -4.415,4.42,a-exp-i1,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3,"" -4.035,4.04,a-exp-i1,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0,"" -4.14,4.14,a-exp-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4,"" -3.47,3.47,a-exp-i1,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7,"" -2.565,2.57,a-exp-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0,"" -3.17,3.17,a-exp-i1,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8,"" -1.8,1.8,a-exp-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0,"" -3.13,3.13,a-exp-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7,"" -1.8199999999999998,1.82,a-exp-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8,"" -1.85,1.85,a-exp-i1,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2,"" -2.705,2.71,a-exp-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9,"" -2.95,2.95,a-exp-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7,"" -2.8449999999999998,2.85,a-exp-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6,"" -3.16,3.16,a-exp-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7,"" -2.08,2.08,a-exp-i1,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2,"" -3.195,3.2,a-exp-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4,"" -3.34,3.34,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0,"" -3.935,3.94,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4,"" -2.8449999999999998,2.85,a-exp-i1,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8,"" -4.33,4.33,a-exp-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9,"" -4.475,4.48,a-exp-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5,"" -4.9,4.9,a-exp-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0,"" -4.555,4.56,a-exp-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8,"" -3.88,3.88,a-exp-i1,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3,"" -4.475,4.48,a-exp-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3,"" -3.84,3.84,a-exp-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7,"" -4.445,4.45,a-exp-i1,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3,"" -4.4,4.4,a-exp-i1,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0,"" -4.3,4.3,a-exp-i1,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1,"" -4.005,4.01,a-exp-i1,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1,"" -3.7,3.7,a-exp-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4,"" -4.4,4.4,a-exp-i1,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5,"" -2.035,2.04,a-exp-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5,"" -2.245,2.25,a-exp-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5,"" -4.41,4.41,a-exp-i1,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9,"" -4.7,4.7,a-exp-i1,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6,"" -4.295,4.3,a-exp-i1,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6,"" -3.185,3.19,a-exp-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7,"" -3.0149999999999997,3.01,a-exp-i1,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0,"" -2.965,2.97,a-exp-i1,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3,"" -2.5,2.5,a-exp-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1,"" -2.95,2.95,a-exp-i1,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8,"" -2.075,2.08,a-exp-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8,"" -3.665,3.67,a-exp-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5,"" -4.68,4.68,a-exp-i1,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1,"" -3.775,3.78,a-exp-i1,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9,"" -3.335,3.34,a-exp-i1,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8,"" -3.215,3.22,a-exp-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0,"" -2.895,2.9,a-exp-i1,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7,"" -2.0100000000000002,2.01,a-exp-i1,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4,"" -2.045,2.05,a-exp-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3,"" -2.415,2.42,a-exp-i1,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9,"" -2.275,2.28,a-exp-i1,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6,"" -3.335,3.34,a-exp-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0,"" -3.18,3.18,a-exp-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2,"" -3.0,3.0,a-exp-i1,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0,"" -2.075,2.08,a-exp-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1,"" -2.3600000000000003,2.36,a-exp-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0,"" -4.445,4.45,a-exp-i1,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5,"" -4.17,4.17,a-exp-i1,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0,"" -4.46,4.46,a-exp-i1,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0,"" -4.04,4.04,a-exp-i1,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8,"" -5.0,5.0,a-exp-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5,"" -4.63,4.63,a-exp-i1,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8,"" -4.385,4.39,a-exp-i1,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0,"" -3.575,3.58,a-exp-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7,"" -3.6,3.6,a-exp-i1,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3,"" -4.335,4.34,a-exp-i1,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1,"" -4.16,4.16,a-exp-i1,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1,"" -4.245,4.25,a-exp-i1,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5,"" -3.75,3.75,a-exp-i1,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0,"" -3.56,3.56,a-exp-i1,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1,"" -3.44,3.44,a-exp-i1,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4,"" -4.375,4.38,a-exp-i1,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4,"" -4.515,4.52,a-exp-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7,"" -4.035,4.04,a-exp-i1,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0,"" -4.205,4.21,a-exp-i1,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9,"" -3.91,3.91,a-exp-i1,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1,"" -4.125,4.13,a-exp-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2,"" +4.6450000000000005,4.65,a-exp-i1,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7, 88.0 +4.51,4.51,a-exp-i1,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5, 97.8 +4.215,4.22,a-exp-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0, 98.2 +4.4799999999999995,4.48,a-exp-i1,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0, 100.0 +4.225,4.23,a-exp-i1,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0, 97.9 +4.375,4.38,a-exp-i1,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0, 100.0 +4.675,4.68,a-exp-i1,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1, 97.2 +4.305,4.31,a-exp-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2, 93.8 +4.24,4.24,a-exp-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9, 91.5 +4.4399999999999995,4.44,a-exp-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9, 89.2 +4.17,4.17,a-exp-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1, 87.6 +4.1850000000000005,4.19,a-exp-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2, 95.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2, 93.4 +3.3600000000000003,3.36,a-exp-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0, 95.7 +3.995,4.0,a-exp-i1,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4, 95.2 +4.415,4.42,a-exp-i1,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6, 87.5 +3.845,3.85,a-exp-i1,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1, 97.0 +2.9850000000000003,2.99,a-exp-i1,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0, 94.7 +1.875,1.88,a-exp-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8, 100.0 +5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0, 100.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6, 95.2 +4.529999999999999,4.53,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3, 96.5 +4.75,4.75,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3, 98.4 +5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1, 92.6 +4.07,4.07,a-exp-i1,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6, 86.2 +4.575,4.58,a-exp-i1,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2, 100.0 +4.465,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0, 100.0 +4.075,4.08,a-exp-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4, 100.0 +4.635,4.64,a-exp-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5, 94.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0, 97.7 +4.8100000000000005,4.81,a-exp-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0, 100.0 +3.025,3.03,a-exp-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3, 80.0 +3.075,3.08,a-exp-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0, 68.3 +4.635,4.64,a-exp-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8, 96.8 +4.59,4.59,a-exp-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0, 100.0 +4.65,4.65,a-exp-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8, 98.7 +4.54,4.54,a-exp-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0, 100.0 +4.58,4.58,a-exp-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0, 98.1 +4.425,4.43,a-exp-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6, 98.7 +4.865,4.87,a-exp-i1,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5, 90.0 +4.365,4.37,a-exp-i1,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0, 97.3 +3.965,3.97,a-exp-i1,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7, 97.9 +4.635,4.64,a-exp-i1,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6, 98.5 +4.525,4.53,a-exp-i1,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6, 98.6 +4.7299999999999995,4.73,a-exp-i1,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6, 91.4 +4.3149999999999995,4.31,a-exp-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3, 100.0 +4.09,4.09,a-exp-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6, 95.2 +4.005,4.01,a-exp-i1,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1, 91.3 +2.5,2.5,a-exp-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3, 85.7 +3.9,3.9,a-exp-i1,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4, 98.8 +3.575,3.58,a-exp-i1,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3, 98.4 +3.5,3.5,a-exp-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0, 98.1 +2.7600000000000002,2.76,a-exp-i1,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0, 91.7 +3.69,3.69,a-exp-i1,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2, 100.0 +3.335,3.34,a-exp-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3, 33.3 +4.14,4.14,a-exp-i1,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8, 94.8 +3.7700000000000005,3.77,a-exp-i1,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7, 100.0 +3.825,3.83,a-exp-i1,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2, 100.0 +3.75,3.75,a-exp-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5, 100.0 +4.12,4.12,a-exp-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0, 100.0 +4.1,4.1,a-exp-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0, 93.9 +4.42,4.42,a-exp-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9, 95.2 +4.07,4.07,a-exp-i1,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6, 100.0 +4.04,4.04,a-exp-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7, 100.0 +1.4949999999999999,1.5,a-exp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1, 38.1 +2.9050000000000002,2.91,a-exp-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9, 45.8 +3.4,3.4,a-exp-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5, 68.0 +4.64,4.64,a-exp-i1,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0, 95.7 +4.535,4.54,a-exp-i1,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8, 98.0 +4.585,4.59,a-exp-i1,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7, 96.4 +4.0200000000000005,4.02,a-exp-i1,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7, 100.0 +3.94,3.94,a-exp-i1,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4, 100.0 +4.71,4.71,a-exp-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +3.845,3.85,a-exp-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9, 92.0 +4.5,4.5,a-exp-i1,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0, 100.0 +3.9200000000000004,3.92,a-exp-i1,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0, 94.2 +4.415,4.42,a-exp-i1,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3, 100.0 +4.035,4.04,a-exp-i1,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0, 96.4 +4.14,4.14,a-exp-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4, 94.8 +3.47,3.47,a-exp-i1,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7, 83.8 +2.565,2.57,a-exp-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0, 87.0 +3.17,3.17,a-exp-i1,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8, 77.8 +1.8,1.8,a-exp-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0, 88.0 +3.13,3.13,a-exp-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7, 77.3 +1.8199999999999998,1.82,a-exp-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8, 50.0 +1.85,1.85,a-exp-i1,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2, 78.8 +2.705,2.71,a-exp-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9, 81.1 +2.95,2.95,a-exp-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7, 87.5 +2.8449999999999998,2.85,a-exp-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6, 59.5 +3.16,3.16,a-exp-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7, 89.5 +2.08,2.08,a-exp-i1,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2, 66.7 +3.195,3.2,a-exp-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4, 51.4 +3.34,3.34,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0, 94.1 +3.935,3.94,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1, 90.9 +4.095000000000001,4.1,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3, 90.6 +4.1049999999999995,4.1,a-exp-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3, 95.7 +3.7700000000000005,3.77,a-exp-i1,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4, 94.0 +2.8449999999999998,2.85,a-exp-i1,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0, 100.0 +4.5649999999999995,4.56,a-exp-i1,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9, 92.4 +4.475,4.48,a-exp-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5, 100.0 +4.9,4.9,a-exp-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0, 100.0 +4.555,4.56,a-exp-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8, 100.0 +3.88,3.88,a-exp-i1,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3, 97.8 +4.475,4.48,a-exp-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3, 84.5 +3.84,3.84,a-exp-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7, 100.0 +4.445,4.45,a-exp-i1,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3, 90.6 +4.2299999999999995,4.23,a-exp-i1,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3, 100.0 +4.4,4.4,a-exp-i1,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0, 100.0 +4.3,4.3,a-exp-i1,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1, 100.0 +4.005,4.01,a-exp-i1,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1, 100.0 +3.7,3.7,a-exp-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4, 75.0 +4.4,4.4,a-exp-i1,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0, 91.2 +4.1899999999999995,4.19,a-exp-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9, 97.7 +3.6149999999999998,3.62,a-exp-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0, 97.4 +4.49,4.49,a-exp-i1,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5, 100.0 +2.035,2.04,a-exp-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5, 46.0 +2.245,2.25,a-exp-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4, 39.1 +3.9549999999999996,3.95,a-exp-i1,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5, 96.6 +4.41,4.41,a-exp-i1,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9, 95.5 +4.7,4.7,a-exp-i1,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6, 97.2 +4.295,4.3,a-exp-i1,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6, 100.0 +3.185,3.19,a-exp-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7, 70.4 +3.0149999999999997,3.01,a-exp-i1,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0, 100.0 +2.965,2.97,a-exp-i1,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7, 76.5 +3.6450000000000005,3.65,a-exp-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3, 94.0 +2.5,2.5,a-exp-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1, 84.4 +2.95,2.95,a-exp-i1,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3, 95.3 +3.8950000000000005,3.9,a-exp-i1,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8, 89.2 +2.075,2.08,a-exp-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8, 87.0 +3.665,3.67,a-exp-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5, 77.8 +4.68,4.68,a-exp-i1,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8, 89.5 +3.8850000000000002,3.89,a-exp-i1,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1, 91.7 +3.775,3.78,a-exp-i1,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9, 88.0 +3.335,3.34,a-exp-i1,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8, 85.7 +3.215,3.22,a-exp-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6, 92.9 +3.8899999999999997,3.89,a-exp-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0, 89.5 +2.895,2.9,a-exp-i1,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7, 74.4 +2.0100000000000002,2.01,a-exp-i1,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4, 73.1 +2.045,2.05,a-exp-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3, 68.8 +2.415,2.42,a-exp-i1,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1, 83.9 +3.8049999999999997,3.81,a-exp-i1,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9, 90.5 +2.275,2.28,a-exp-i1,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0, 71.4 +3.8299999999999996,3.83,a-exp-i1,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6, 100.0 +3.335,3.34,a-exp-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0, 100.0 +3.18,3.18,a-exp-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9, 76.3 +3.5450000000000004,3.55,a-exp-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2, 94.8 +3.0,3.0,a-exp-i1,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0, 82.9 +2.075,2.08,a-exp-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1, 86.3 +2.3600000000000003,2.36,a-exp-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0, 96.9 +4.445,4.45,a-exp-i1,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5, 100.0 +4.17,4.17,a-exp-i1,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0, 83.3 +4.46,4.46,a-exp-i1,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0, 100.0 +4.04,4.04,a-exp-i1,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8, 97.1 +5.0,5.0,a-exp-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.515,4.52,a-exp-i1,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5, 96.8 +4.63,4.63,a-exp-i1,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8, 94.2 +4.385,4.39,a-exp-i1,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0, 89.7 +4.35,4.35,a-exp-i1,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0, 100.0 +3.575,3.58,a-exp-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7, 79.1 +3.6,3.6,a-exp-i1,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3, 97.9 +4.335,4.34,a-exp-i1,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1, 97.6 +4.16,4.16,a-exp-i1,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0, 100.0 +3.9799999999999995,3.98,a-exp-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1, 60.0 +4.245,4.25,a-exp-i1,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5, 94.4 +3.75,3.75,a-exp-i1,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0, 100.0 +3.56,3.56,a-exp-i1,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1, 98.1 +3.44,3.44,a-exp-i1,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0, 90.0 +3.75,3.75,a-exp-i1,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0, 97.5 +4.095000000000001,4.1,a-exp-i1,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4, 96.7 +4.375,4.38,a-exp-i1,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5, 100.0 +4.4399999999999995,4.44,a-exp-i1,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0, 97.8 +4.41,4.41,a-exp-i1,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4, 97.8 +4.515,4.52,a-exp-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7, 98.9 +4.035,4.04,a-exp-i1,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0, 100.0 +4.445,4.45,a-exp-i1,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0, 100.0 +4.205,4.21,a-exp-i1,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9, 96.1 +3.91,3.91,a-exp-i1,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1, 98.4 +4.125,4.13,a-exp-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2, 95.0 1.2449999999999999,1.24,a-exp-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 45.2, 65.2, 9.1 to 1, 24.9, 93.4,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9,"" -4.5,4.5,a-exp-i1,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6,"" -4.675,4.68,a-exp-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1,"" -4.635,4.64,a-exp-i1,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0,"" -3.685,3.69,a-exp-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1,"" -4.285,4.29,a-exp-i1,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3,"" -4.665,4.67,a-exp-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9,"" -4.545,4.55,a-exp-i1,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8,"" -4.825,4.83,a-exp-i1,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0,"" -4.625,4.63,a-exp-i1,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0,"" -3.7,3.7,a-exp-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6,"" -3.905,3.91,a-exp-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2,"" -4.5,4.5,a-exp-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3,"" -4.615,4.62,a-exp-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6,"" -5.0,5.0,a-exp-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0,"" -3.46,3.46,a-exp-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9,"" -3.725,3.73,a-exp-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0,"" -4.08,4.08,a-exp-i1,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2,"" -3.125,3.13,a-exp-i1,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0,"" -3.845,3.85,a-exp-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7,"" -4.15,4.15,a-exp-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6,"" -4.075,4.08,a-exp-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7,"" -3.925,3.93,a-exp-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4,"" -4.76,4.76,a-exp-i1,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0,"" -4.245,4.25,a-exp-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9,"" -3.31,3.31,a-exp-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7,"" -4.785,4.79,a-exp-i1,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6,"" -4.86,4.86,a-exp-i1,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2,"" -4.75,4.75,a-exp-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1,"" -4.795,4.8,a-exp-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3,"" -4.12,4.12,a-exp-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3,"" -4.43,4.43,a-exp-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1,"" -3.6799999999999997,3.68,a-exp-i1,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0,"" -3.775,3.78,a-exp-i1,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6,"" -3.94,3.94,a-exp-i1,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8,"" -3.655,3.66,a-exp-i1,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6,"" -3.45,3.45,a-exp-i1,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3,"" -3.3200000000000003,3.32,a-exp-i1,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1,"" -4.37,4.37,a-exp-i1,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0,"" -4.805,4.81,a-exp-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9,"" -1.535,1.54,a-exp-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7,"" -2.6,2.6,a-exp-i1,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7,"" -4.165,4.17,a-exp-i1,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6,"" -4.255,4.26,a-exp-i1,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5,"" -4.515,4.52,a-exp-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0,"" -3.165,3.17,a-exp-i1,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8,"" -3.835,3.84,a-exp-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9,"" -4.41,4.41,a-exp-i1,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4,"" -3.575,3.58,a-exp-i1,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2,"" -3.59,3.59,a-exp-i1,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2,"" -3.07,3.07,a-exp-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8,"" -3.815,3.82,a-exp-i1,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1,"" -3.175,3.18,a-exp-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0,"" -3.215,3.22,a-exp-i1,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8,"" -3.715,3.72,a-exp-i1,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2,"" -1.7,1.7,a-exp-i1,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7,"" -4.165,4.17,a-exp-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7,"" -4.67,4.67,a-exp-i1,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0,"" -4.9,4.9,a-exp-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9,"" -5.0,5.0,a-exp-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0,"" -3.825,3.83,a-exp-i1,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2,"" -3.915,3.92,a-exp-i1,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0,"" -3.28,3.28,a-exp-i1,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4,"" -3.6950000000000003,3.7,a-exp-i1,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0,"" -4.045,4.05,a-exp-i1,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6,"" -4.175,4.18,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4,"" -4.6,4.6,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4,"" -4.175,4.18,a-exp-i1,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2,"" -4.625,4.63,a-exp-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8,"" -4.425,4.43,a-exp-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8,"" -5.0,5.0,a-exp-i1,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -2.6350000000000002,2.64,a-exp-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4,"" -3.835,3.84,a-exp-i1,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4,"" -4.24,4.24,a-exp-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1,"" -4.835,4.84,a-exp-i1,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0,"" -3.4549999999999996,3.45,a-exp-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3,"" -4.41,4.41,a-exp-i1,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0,"" -3.97,3.97,a-exp-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8,"" -4.615,4.62,a-exp-i1,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3,"" -4.3,4.3,a-exp-i1,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0,"" -4.13,4.13,a-exp-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8,"" -4.18,4.18,a-exp-i1,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6,"" -4.175,4.18,a-exp-i1,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3,"" -4.66,4.66,a-exp-i1,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2,"" -4.325,4.33,a-exp-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1,"" -4.175,4.18,a-exp-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4,"" -4.34,4.34,a-exp-i1,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5,"" -4.96,4.96,a-exp-i1,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2,"" -3.78,3.78,a-exp-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7,"" -2.38,2.38,a-exp-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8,"" -1.78,1.78,a-exp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3,"" -4.62,4.62,a-exp-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4,"" -4.04,4.04,a-exp-i1,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5,"" -1.765,1.77,a-exp-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9,"" -5.0,5.0,a-exp-i1,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0,"" -4.015,4.02,a-exp-i1,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9,"" -4.49,4.49,a-exp-i1,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3,"" -4.555,4.56,a-exp-i1,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0,"" -4.83,4.83,a-exp-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6,"" -4.625,4.63,a-exp-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2,"" -3.825,3.83,a-exp-i1,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0,"" -4.38,4.38,a-exp-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0,"" -4.115,4.12,a-exp-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0,"" -3.44,3.44,a-exp-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9,"" -4.17,4.17,a-exp-i1,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7,"" -4.32,4.32,a-exp-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7,"" -4.015,4.02,a-exp-i1,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4,"" -4.635,4.64,a-exp-i1,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9,"" -4.32,4.32,a-exp-i1,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6,"" -4.205,4.21,a-exp-i1,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0,"" -4.54,4.54,a-exp-i1,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1,"" -4.445,4.45,a-exp-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0,"" -3.285,3.29,a-exp-i1,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2,"" -4.485,4.49,a-exp-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9,"" -4.13,4.13,a-exp-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8,"" -4.12,4.12,a-exp-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1,"" -4.015,4.02,a-exp-i1,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2,"" -4.18,4.18,a-exp-i1,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0,"" -3.81,3.81,a-exp-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8,"" -4.42,4.42,a-exp-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0,"" -4.74,4.74,a-exp-i1,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0,"" -4.275,4.28,a-exp-i1,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0,"" -4.26,4.26,a-exp-i1,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7,"" -3.4,3.4,a-exp-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0,"" -4.045,4.05,a-exp-i1,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3,"" -4.6,4.6,a-exp-i1,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9,"" -4.26,4.26,a-exp-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0,"" -4.29,4.29,a-exp-i1,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7,"" -4.675,4.68,a-exp-i1,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7,"" -4.675,4.68,a-exp-i1,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0,"" -0.0,1,a-exp-i1,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2,"" -4.275,4.28,a-exp-i1,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6,"" -4.41,4.41,a-exp-i1,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8,"" -4.65,4.65,a-exp-i1,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2,"" -4.13,4.13,a-exp-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2,"" -3.81,3.81,a-exp-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8,"" -4.795,4.8,a-exp-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8,"" -3.4899999999999998,3.49,a-exp-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8,"" -4.525,4.53,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7,"" -4.18,4.18,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6,"" -3.37,3.37,a-exp-i1,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0,"" -4.035,4.04,a-exp-i1,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5,"" -1.775,1.78,a-exp-i1,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6,"" -4.335,4.34,a-exp-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2,"" -4.475,4.48,a-exp-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0,"" -4.015,4.02,a-exp-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4,"" -1.95,1.95,a-exp-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5,"" -1.81,1.81,a-exp-i1,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3,"" -3.675,3.68,a-exp-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4,"" -3.0100000000000002,3.01,a-exp-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6,"" -3.62,3.62,a-exp-i1,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5,"" -3.69,3.69,a-exp-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8,"" -4.4,4.4,a-exp-i1,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4,"" -4.36,4.36,a-exp-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2,"" -4.6,4.6,a-exp-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2,"" -3.655,3.66,a-exp-i1,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6,"" -4.17,4.17,a-exp-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4,"" -4.5,4.5,a-exp-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5,"" -4.15,4.15,a-exp-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6,"" -5.0,5.0,a-exp-i1,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -4.615,4.62,a-exp-i1,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4,"" -4.74,4.74,a-exp-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8,"" -4.085,4.09,a-exp-i1,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4,"" -4.14,4.14,a-exp-i1,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4,"" -4.715,4.72,a-exp-i1,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3,"" -4.25,4.25,a-exp-i1,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0,"" -4.46,4.46,a-exp-i1,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1,"" -4.305,4.31,a-exp-i1,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1,"" -4.615,4.62,a-exp-i1,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5,"" -3.54,3.54,a-exp-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8,"" -3.7649999999999997,3.76,a-exp-i1,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0,"" -2.375,2.38,a-exp-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6,"" -4.11,4.11,a-exp-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8,"" -2.94,2.94,a-exp-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2,"" -2.42,2.42,a-exp-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5,"" -3.3549999999999995,3.35,a-exp-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7,"" -3.6,3.6,a-exp-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3,"" -2.435,2.44,a-exp-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6,"" -3.775,3.78,a-exp-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1,"" -3.965,3.97,a-exp-i1,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6,"" -2.5,2.5,a-exp-i1,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7,"" -3.17,3.17,a-exp-i1,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1,"" -3.2649999999999997,3.26,a-exp-i1,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7,"" -4.225,4.23,a-exp-i1,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1,"" -4.0,4.0,a-exp-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2,"" -3.59,3.59,a-exp-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6,"" -3.66,3.66,a-exp-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0,"" -4.445,4.45,a-exp-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8,"" -3.505,3.51,a-exp-i1,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1,"" -2.85,2.85,a-exp-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0,"" -4.26,4.26,a-exp-i1,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6,"" -4.01,4.01,a-exp-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4,"" -4.33,4.33,a-exp-i1,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0,"" -4.09,4.09,a-exp-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1,"" -4.74,4.74,a-exp-i1,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9,"" -3.71,3.71,a-exp-i1,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8,"" -3.915,3.92,a-exp-i1,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5,"" -4.35,4.35,a-exp-i1,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0,"" -4.055,4.06,a-exp-i1,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4,"" -4.2,4.2,a-exp-i1,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0,"" -4.3,4.3,a-exp-i1,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0,"" -4.08,4.08,a-exp-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0,"" -4.375,4.38,a-exp-i1,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9,"" -4.545,4.55,a-exp-i1,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0,"" -3.745,3.75,a-exp-i1,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1,"" -4.445,4.45,a-exp-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8,"" -4.33,4.33,a-exp-i1,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0,"" -4.465,4.47,a-exp-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0,"" -3.475,3.48,a-exp-i1,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2,"" -4.05,4.05,a-exp-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0,"" -4.325,4.33,a-exp-i1,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0,"" -4.055,4.06,a-exp-i1,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9,"" -4.275,4.28,a-exp-i1,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0,"" -4.575,4.58,a-exp-i1,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7,"" -4.8,4.8,a-exp-i1,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7,"" -4.12,4.12,a-exp-i1,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2,"" -5.0,5.0,a-exp-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7,"" -3.965,3.97,a-exp-i1,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7,"" -4.61,4.61,a-exp-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5,"" -4.49,4.49,a-exp-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8,"" -4.415,4.42,a-exp-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5,"" -3.2950000000000004,3.3,a-exp-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1,"" -4.14,4.14,a-exp-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0,"" -3.2,3.2,a-exp-i1,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6,"" -3.975,3.98,a-exp-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2,"" -4.14,4.14,a-exp-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7,"" -4.4,4.4,a-exp-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0,"" -3.225,3.23,a-exp-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0,"" -3.975,3.98,a-exp-i1,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8,"" -4.71,4.71,a-exp-i1,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0,"" -4.505,4.51,a-exp-i1,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8,"" -4.305,4.31,a-exp-i1,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0,"" -4.925,4.93,a-exp-i1,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2,"" -4.465,4.47,a-exp-i1,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3,"" -4.175,4.18,a-exp-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7,"" -4.835,4.84,a-exp-i1,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7,"" -4.195,4.2,a-exp-i1,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0,"" -4.615,4.62,a-exp-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0,"" -3.9299999999999997,3.93,a-exp-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8,"" -4.625,4.63,a-exp-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0,"" -4.8549999999999995,4.85,a-exp-i1,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1,"" -4.795,4.8,a-exp-i1,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7,"" -4.7,4.7,a-exp-i1,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1,"" -4.5,4.5,a-exp-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0,"" -4.14,4.14,a-exp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4,"" -4.57,4.57,a-exp-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2,"" -4.16,4.16,a-exp-i1,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8,"" -4.43,4.43,a-exp-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2,"" -4.805,4.81,a-exp-i1,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0,"" -4.54,4.54,a-exp-i1,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4,"" -4.725,4.73,a-exp-i1,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2,"" -4.275,4.28,a-exp-i1,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8,"" -3.8,3.8,a-exp-i1,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0,"" -4.305,4.31,a-exp-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6,"" -4.46,4.46,a-exp-i1,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0,"" -4.16,4.16,a-exp-i1,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3,"" -4.425,4.43,a-exp-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2,"" -4.65,4.65,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0,"" -2.855,2.86,a-exp-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6,"" -4.235,4.24,a-exp-i1,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1,"" -4.45,4.45,a-exp-i1,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7,"" -4.42,4.42,a-exp-i1,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1,"" -3.6799999999999997,3.68,a-exp-i1,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2,"" -4.255,4.26,a-exp-i1,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7,"" -4.045,4.05,a-exp-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2,"" +4.6899999999999995,4.69,a-exp-i1,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9, 100.0 +4.5,4.5,a-exp-i1,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0, 94.3 +4.595000000000001,4.6,a-exp-i1,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6, 95.5 +4.675,4.68,a-exp-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1, 97.9 +4.635,4.64,a-exp-i1,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6, 91.1 +3.9200000000000004,3.92,a-exp-i1,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3, 96.6 +3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0, 91.4 +3.685,3.69,a-exp-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1, 91.9 +4.285,4.29,a-exp-i1,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3, 97.6 +4.665,4.67,a-exp-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9, 97.1 +4.545,4.55,a-exp-i1,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8, 94.2 +4.825,4.83,a-exp-i1,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0, 95.2 +4.625,4.63,a-exp-i1,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0, 97.5 +3.7,3.7,a-exp-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6, 89.7 +3.905,3.91,a-exp-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2, 88.9 +4.5,4.5,a-exp-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3, 100.0 +4.615,4.62,a-exp-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9, 92.7 +3.8549999999999995,3.85,a-exp-i1,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6, 93.5 +5.0,5.0,a-exp-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0, 100.0 +3.46,3.46,a-exp-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9, 76.9 +4.2299999999999995,4.23,a-exp-i1,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9, 97.4 +3.725,3.73,a-exp-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0, 77.4 +4.08,4.08,a-exp-i1,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0, 89.6 +4.3549999999999995,4.35,a-exp-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2, 88.9 +3.125,3.13,a-exp-i1,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0, 100.0 +3.845,3.85,a-exp-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7, 94.6 +4.15,4.15,a-exp-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6, 85.7 +4.075,4.08,a-exp-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7, 100.0 +3.925,3.93,a-exp-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2, 75.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4, 83.2 +4.76,4.76,a-exp-i1,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0, 95.5 +4.245,4.25,a-exp-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0, 92.5 +4.445,4.45,a-exp-i1,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7, 97.2 +4.1049999999999995,4.1,a-exp-i1,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9, 89.7 +3.31,3.31,a-exp-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7, 90.8 +4.7299999999999995,4.73,a-exp-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0, 94.6 +4.43,4.43,a-exp-i1,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7, 71.4 +4.785,4.79,a-exp-i1,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0, 100.0 +3.2600000000000002,3.26,a-exp-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5, 95.7 +3.6350000000000002,3.64,a-exp-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6, 60.0 +4.86,4.86,a-exp-i1,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2, 97.3 +4.75,4.75,a-exp-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0, 91.2 +4.675,4.68,a-exp-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1, 97.5 +4.795,4.8,a-exp-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0, 98.0 +5.0,5.0,a-exp-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0, 66.7 +4.265,4.27,a-exp-i1,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0, 88.4 +4.445,4.45,a-exp-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3, 88.9 +4.12,4.12,a-exp-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3, 86.7 +4.43,4.43,a-exp-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0, 83.3 +3.4299999999999997,3.43,a-exp-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1, 92.5 +3.6799999999999997,3.68,a-exp-i1,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0, 95.2 +3.775,3.78,a-exp-i1,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6, 92.2 +3.94,3.94,a-exp-i1,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0, 90.3 +3.71,3.71,a-exp-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8, 92.9 +3.655,3.66,a-exp-i1,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6, 90.8 +3.45,3.45,a-exp-i1,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3, 96.7 +3.3200000000000003,3.32,a-exp-i1,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1, 90.3 +4.37,4.37,a-exp-i1,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0, 100.0 +4.805,4.81,a-exp-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9, 90.2 +1.535,1.54,a-exp-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7, 71.4 +2.6,2.6,a-exp-i1,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7, 88.9 +4.165,4.17,a-exp-i1,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6, 98.4 +4.255,4.26,a-exp-i1,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5, 97.4 +4.515,4.52,a-exp-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0, 100.0 +3.165,3.17,a-exp-i1,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8, 88.4 +3.835,3.84,a-exp-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9, 83.9 +4.41,4.41,a-exp-i1,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4, 94.7 +3.575,3.58,a-exp-i1,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1, 85.0 +3.8649999999999998,3.87,a-exp-i1,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2, 97.6 +3.59,3.59,a-exp-i1,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2, 100.0 +3.07,3.07,a-exp-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8, 82.9 +3.815,3.82,a-exp-i1,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1, 97.1 +3.175,3.18,a-exp-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0, 100.0 +3.215,3.22,a-exp-i1,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8, 97.7 +3.715,3.72,a-exp-i1,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2, 36.4 +1.7,1.7,a-exp-i1,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7, 81.1 +4.165,4.17,a-exp-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7, 100.0 +4.67,4.67,a-exp-i1,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0, 98.3 +4.9,4.9,a-exp-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9, 96.4 +5.0,5.0,a-exp-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +4.0200000000000005,4.02,a-exp-i1,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0, 96.7 +5.0,5.0,a-exp-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3, 100.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0, 98.6 +3.825,3.83,a-exp-i1,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2, 97.2 +3.915,3.92,a-exp-i1,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0, 100.0 +3.28,3.28,a-exp-i1,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4, 92.1 +3.6950000000000003,3.7,a-exp-i1,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0, 95.7 +4.045,4.05,a-exp-i1,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4, 97.6 +3.8899999999999997,3.89,a-exp-i1,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1, 92.8 +4.6850000000000005,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9, 100.0 +4.6899999999999995,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6, 87.0 +4.175,4.18,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4, 100.0 +4.6,4.6,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4, 100.0 +4.175,4.18,a-exp-i1,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2, 100.0 +4.625,4.63,a-exp-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8, 100.0 +4.425,4.43,a-exp-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0, 100.0 +4.585,4.59,a-exp-i1,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8, 98.1 +5.0,5.0,a-exp-i1,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +2.6350000000000002,2.64,a-exp-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4, 68.0 +3.835,3.84,a-exp-i1,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0, 100.0 +3.965,3.97,a-exp-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4, 95.6 +4.24,4.24,a-exp-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1, 97.6 +4.835,4.84,a-exp-i1,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0, 100.0 +3.4549999999999996,3.45,a-exp-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3, 86.4 +4.41,4.41,a-exp-i1,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0, 99.0 +3.97,3.97,a-exp-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8, 100.0 +4.615,4.62,a-exp-i1,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3, 100.0 +4.3,4.3,a-exp-i1,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0, 100.0 +4.13,4.13,a-exp-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8, 100.0 +4.18,4.18,a-exp-i1,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8, 97.1 +4.345000000000001,4.35,a-exp-i1,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6, 100.0 +4.175,4.18,a-exp-i1,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3, 100.0 +4.66,4.66,a-exp-i1,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2, 100.0 +4.325,4.33,a-exp-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1, 96.2 +4.175,4.18,a-exp-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4, 100.0 +4.34,4.34,a-exp-i1,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1, 97.4 +4.345000000000001,4.35,a-exp-i1,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5, 100.0 +4.96,4.96,a-exp-i1,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2, 100.0 +3.78,3.78,a-exp-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7, 86.5 +2.38,2.38,a-exp-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8, 91.7 +1.78,1.78,a-exp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0, 52.8 +4.6450000000000005,4.65,a-exp-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3, 98.9 +4.62,4.62,a-exp-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7, 96.2 +4.220000000000001,4.22,a-exp-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4, 89.3 +4.04,4.04,a-exp-i1,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5, 97.4 +1.765,1.77,a-exp-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9, 48.8 +5.0,5.0,a-exp-i1,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0, 100.0 +4.3950000000000005,4.4,a-exp-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0, 100.0 +4.015,4.02,a-exp-i1,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9, 91.7 +3.6700000000000004,3.67,a-exp-i1,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9, 92.5 +4.49,4.49,a-exp-i1,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1, 89.7 +4.7299999999999995,4.73,a-exp-i1,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3, 94.6 +4.555,4.56,a-exp-i1,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0, 100.0 +4.83,4.83,a-exp-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6, 100.0 +4.625,4.63,a-exp-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2, 88.6 +3.825,3.83,a-exp-i1,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0, 97.7 +3.8899999999999997,3.89,a-exp-i1,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0, 28.6 +4.38,4.38,a-exp-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0, 92.9 +4.115,4.12,a-exp-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0, 89.8 +3.44,3.44,a-exp-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9, 94.1 +4.17,4.17,a-exp-i1,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7, 89.1 +4.32,4.32,a-exp-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7, 97.8 +4.015,4.02,a-exp-i1,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5, 100.0 +3.7600000000000002,3.76,a-exp-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0, 100.0 +4.1049999999999995,4.1,a-exp-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1, 96.3 +4.1899999999999995,4.19,a-exp-i1,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4, 90.6 +4.635,4.64,a-exp-i1,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8, 90.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1, 88.0 +4.9350000000000005,4.94,a-exp-i1,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0, 94.7 +3.2600000000000002,3.26,a-exp-i1,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0, 97.0 +4.385,4.39,a-exp-i1,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9, 94.0 +4.32,4.32,a-exp-i1,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6, 89.5 +4.205,4.21,a-exp-i1,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0, 96.6 +4.54,4.54,a-exp-i1,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1, 96.4 +4.445,4.45,a-exp-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0, 92.6 +3.285,3.29,a-exp-i1,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0, 80.0 +4.2299999999999995,4.23,a-exp-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2, 94.4 +4.485,4.49,a-exp-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9, 88.9 +4.13,4.13,a-exp-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8, 97.8 +4.12,4.12,a-exp-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1, 97.1 +4.015,4.02,a-exp-i1,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8, 96.0 +4.095000000000001,4.1,a-exp-i1,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2, 90.9 +4.18,4.18,a-exp-i1,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0, 95.1 +3.81,3.81,a-exp-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5, 97.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8, 96.4 +4.42,4.42,a-exp-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0, 100.0 +4.74,4.74,a-exp-i1,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4, 95.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0, 97.0 +4.275,4.28,a-exp-i1,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0, 97.9 +4.535,4.54,a-exp-i1,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0, 100.0 +4.26,4.26,a-exp-i1,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7, 94.8 +3.4,3.4,a-exp-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0, 100.0 +4.045,4.05,a-exp-i1,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3, 92.1 +4.6,4.6,a-exp-i1,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0, 97.7 +4.529999999999999,4.53,a-exp-i1,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9, 100.0 +4.26,4.26,a-exp-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7, 97.1 +4.4350000000000005,4.44,a-exp-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0, 100.0 +4.29,4.29,a-exp-i1,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7, 95.8 +4.675,4.68,a-exp-i1,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7, 93.9 +4.675,4.68,a-exp-i1,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0, 91.7 +0.0,1,a-exp-i1,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0, 0.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2, 93.9 +4.275,4.28,a-exp-i1,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6, 95.9 +4.41,4.41,a-exp-i1,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0, 98.2 +3.995,4.0,a-exp-i1,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8, 94.2 +4.65,4.65,a-exp-i1,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4, 95.6 +4.220000000000001,4.22,a-exp-i1,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2, 95.1 +4.13,4.13,a-exp-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2, 94.4 +3.81,3.81,a-exp-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1, 91.7 +4.4799999999999995,4.48,a-exp-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8, 87.8 +4.795,4.8,a-exp-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8, 91.7 +3.4899999999999998,3.49,a-exp-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0, 95.0 +4.535,4.54,a-exp-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8, 93.8 +4.525,4.53,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7, 95.5 +4.18,4.18,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6, 100.0 +3.37,3.37,a-exp-i1,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0, 92.7 +4.035,4.04,a-exp-i1,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5, 93.2 +1.775,1.78,a-exp-i1,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6, 92.9 +4.335,4.34,a-exp-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2, 92.5 +4.475,4.48,a-exp-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0, 86.5 +4.015,4.02,a-exp-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4, 95.6 +1.95,1.95,a-exp-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5, 35.2 +1.81,1.81,a-exp-i1,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3, 93.3 +3.675,3.68,a-exp-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4, 94.1 +3.0100000000000002,3.01,a-exp-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6, 90.7 +3.62,3.62,a-exp-i1,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5, 89.1 +3.69,3.69,a-exp-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8, 94.7 +4.4,4.4,a-exp-i1,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0, 96.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4, 92.3 +4.36,4.36,a-exp-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2, 97.7 +4.6,4.6,a-exp-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2, 96.8 +3.655,3.66,a-exp-i1,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6, 100.0 +4.17,4.17,a-exp-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4, 92.0 +4.5,4.5,a-exp-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0, 100.0 +4.485,4.49,a-exp-i1,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5, 95.9 +4.15,4.15,a-exp-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6, 92.4 +5.0,5.0,a-exp-i1,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0, 97.4 +4.615,4.62,a-exp-i1,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4, 100.0 +4.74,4.74,a-exp-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8, 97.6 +4.085,4.09,a-exp-i1,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0, 100.0 +4.25,4.25,a-exp-i1,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4, 90.8 +4.14,4.14,a-exp-i1,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4, 95.2 +4.715,4.72,a-exp-i1,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1, 97.6 +4.4799999999999995,4.48,a-exp-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3, 98.2 +4.25,4.25,a-exp-i1,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0, 100.0 +4.46,4.46,a-exp-i1,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0, 97.6 +3.8600000000000003,3.86,a-exp-i1,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1, 97.5 +4.5649999999999995,4.56,a-exp-i1,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1, 98.7 +4.305,4.31,a-exp-i1,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1, 100.0 +4.615,4.62,a-exp-i1,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5, 96.4 +3.54,3.54,a-exp-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8, 97.9 +3.7649999999999997,3.76,a-exp-i1,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0, 100.0 +2.375,2.38,a-exp-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6, 43.8 +4.11,4.11,a-exp-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8, 95.8 +2.94,2.94,a-exp-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4, 78.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2, 100.0 +2.42,2.42,a-exp-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5, 90.3 +3.3549999999999995,3.35,a-exp-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1, 100.0 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7, 100.0 +3.6,3.6,a-exp-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0, 96.3 +3.9799999999999995,3.98,a-exp-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3, 96.8 +2.435,2.44,a-exp-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6, 92.3 +3.775,3.78,a-exp-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1, 100.0 +3.965,3.97,a-exp-i1,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4, 96.4 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6, 100.0 +2.5,2.5,a-exp-i1,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7, 100.0 +3.17,3.17,a-exp-i1,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8, 100.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1, 96.8 +3.2649999999999997,3.26,a-exp-i1,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7, 90.4 +4.225,4.23,a-exp-i1,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1, 97.6 +4.0,4.0,a-exp-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7, 94.1 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8, 91.5 +2.8600000000000003,2.86,a-exp-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2, 86.2 +3.59,3.59,a-exp-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6, 100.0 +3.66,3.66,a-exp-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0, 82.4 +4.445,4.45,a-exp-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8, 90.0 +3.505,3.51,a-exp-i1,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1, 100.0 +2.85,2.85,a-exp-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0, 78.0 +4.26,4.26,a-exp-i1,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6, 97.6 +4.01,4.01,a-exp-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4, 98.4 +4.33,4.33,a-exp-i1,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0, 92.7 +4.09,4.09,a-exp-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1, 100.0 +4.74,4.74,a-exp-i1,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0, 97.6 +4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9, 100.0 +3.71,3.71,a-exp-i1,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8, 90.9 +3.915,3.92,a-exp-i1,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0, 94.4 +4.295,4.3,a-exp-i1,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5, 94.7 +4.35,4.35,a-exp-i1,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5, 96.2 +4.2700000000000005,4.27,a-exp-i1,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0, 91.7 +4.4350000000000005,4.44,a-exp-i1,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9, 96.6 +4.6899999999999995,4.69,a-exp-i1,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0, 97.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0, 85.3 +4.055,4.06,a-exp-i1,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0, 87.5 +4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4, 97.4 +4.2,4.2,a-exp-i1,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0, 93.9 +4.3,4.3,a-exp-i1,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0, 95.0 +4.08,4.08,a-exp-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0, 100.0 +4.375,4.38,a-exp-i1,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3, 95.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0, 94.4 +4.1450000000000005,4.15,a-exp-i1,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9, 94.7 +4.545,4.55,a-exp-i1,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0, 100.0 +3.745,3.75,a-exp-i1,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0, 95.7 +4.6,4.6,a-exp-i1,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0, 96.3 +4.42,4.42,a-exp-i1,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1, 97.3 +4.445,4.45,a-exp-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0, 96.6 +3.475,3.48,a-exp-i1,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2, 90.6 +4.05,4.05,a-exp-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0, 96.8 +3.8049999999999997,3.81,a-exp-i1,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0, 76.5 +4.325,4.33,a-exp-i1,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0, 96.2 +4.345000000000001,4.35,a-exp-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0, 100.0 +4.055,4.06,a-exp-i1,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9, 100.0 +4.275,4.28,a-exp-i1,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1, 100.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0, 90.5 +4.575,4.58,a-exp-i1,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7, 92.5 +4.8,4.8,a-exp-i1,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7, 100.0 +4.12,4.12,a-exp-i1,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0, 100.0 +4.51,4.51,a-exp-i1,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7, 100.0 +3.965,3.97,a-exp-i1,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7, 100.0 +4.61,4.61,a-exp-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5, 95.2 +4.49,4.49,a-exp-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8, 100.0 +4.415,4.42,a-exp-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5, 97.5 +3.2950000000000004,3.3,a-exp-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0, 95.8 +3.2,3.2,a-exp-i1,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3, 95.0 +4.5600000000000005,4.56,a-exp-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2, 93.8 +4.5200000000000005,4.52,a-exp-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6, 100.0 +3.975,3.98,a-exp-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2, 96.3 +4.14,4.14,a-exp-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7, 94.9 +4.4,4.4,a-exp-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0, 97.1 +3.225,3.23,a-exp-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0, 70.0 +3.975,3.98,a-exp-i1,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8, 98.0 +4.71,4.71,a-exp-i1,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +4.505,4.51,a-exp-i1,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8, 100.0 +4.305,4.31,a-exp-i1,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0, 100.0 +4.925,4.93,a-exp-i1,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3, 98.6 +4.5200000000000005,4.52,a-exp-i1,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2, 100.0 +4.465,4.47,a-exp-i1,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0, 100.0 +3.75,3.75,a-exp-i1,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3, 96.8 +4.175,4.18,a-exp-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7, 98.5 +4.835,4.84,a-exp-i1,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7, 100.0 +4.195,4.2,a-exp-i1,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0, 96.9 +4.615,4.62,a-exp-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0, 96.3 +3.9299999999999997,3.93,a-exp-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8, 98.3 +4.625,4.63,a-exp-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0, 97.4 +4.8549999999999995,4.85,a-exp-i1,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1, 100.0 +4.795,4.8,a-exp-i1,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0, 100.0 +4.445,4.45,a-exp-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7, 100.0 +4.7,4.7,a-exp-i1,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1, 93.2 +4.5,4.5,a-exp-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0, 98.7 +4.029999999999999,4.03,a-exp-i1,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4, 95.6 +4.4799999999999995,4.48,a-exp-i1,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0, 100.0 +4.14,4.14,a-exp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4, 88.6 +4.57,4.57,a-exp-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1, 93.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0, 97.1 +3.8649999999999998,3.87,a-exp-i1,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4, 97.6 +4.3950000000000005,4.4,a-exp-i1,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0, 96.4 +4.3549999999999995,4.35,a-exp-i1,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2, 100.0 +4.16,4.16,a-exp-i1,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8, 100.0 +4.43,4.43,a-exp-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2, 100.0 +4.805,4.81,a-exp-i1,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0, 100.0 +4.54,4.54,a-exp-i1,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4, 100.0 +4.725,4.73,a-exp-i1,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2, 97.4 +4.275,4.28,a-exp-i1,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8, 100.0 +3.8,3.8,a-exp-i1,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0, 100.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0, 100.0 +4.305,4.31,a-exp-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9, 96.1 +4.2299999999999995,4.23,a-exp-i1,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0, 100.0 +4.76,4.76,a-exp-i1,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6, 100.0 +4.46,4.46,a-exp-i1,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0, 100.0 +4.16,4.16,a-exp-i1,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4, 95.7 +4.029999999999999,4.03,a-exp-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3, 91.8 +4.425,4.43,a-exp-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2, 95.2 +4.65,4.65,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0, 96.4 +5.0,5.0,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0, 97.3 +2.855,2.86,a-exp-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6, 83.3 +4.235,4.24,a-exp-i1,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0, 95.8 +3.2600000000000002,3.26,a-exp-i1,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4, 100.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0, 96.2 +4.0200000000000005,4.02,a-exp-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1, 100.0 +4.45,4.45,a-exp-i1,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7, 79.2 +4.42,4.42,a-exp-i1,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1, 97.9 +3.6799999999999997,3.68,a-exp-i1,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2, 100.0 +4.255,4.26,a-exp-i1,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7, 98.4 +4.045,4.05,a-exp-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2, 93.6 0.0,1,a-exp-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","" -4.43,4.43,a-exp-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3,"" -3.975,3.98,a-exp-i1,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9,"" -4.465,4.47,a-exp-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3,"" -4.165,4.17,a-exp-i1,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0,"" -3.335,3.34,a-exp-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1,"" -4.335,4.34,a-exp-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6,"" -4.515,4.52,a-exp-i1,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4,"" -3.13,3.13,a-exp-i1,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4,"" -4.66,4.66,a-exp-i1,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2,"" -3.745,3.75,a-exp-i1,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7,"" -4.575,4.58,a-exp-i1,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5,"" -4.84,4.84,a-exp-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0,"" -4.555,4.56,a-exp-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0,"" -4.49,4.49,a-exp-i1,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2,"" -4.215,4.22,a-exp-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5,"" -4.215,4.22,a-exp-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4,"" -4.1,4.1,a-exp-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1,"" -4.29,4.29,a-exp-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8,"" -4.37,4.37,a-exp-i1,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0,"" -0.9199999999999999,1,a-exp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0,"" -1.25,1.25,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0,"" -1.1099999999999999,1.11,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6,"" -2.34,2.34,a-exp-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7,"" -2.995,3.0,a-exp-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2,"" -4.585,4.59,a-exp-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0,"" -3.7350000000000003,3.74,a-exp-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0,"" -3.35,3.35,a-exp-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5,"" -3.05,3.05,a-exp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2,"" -2.675,2.68,a-exp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4,"" -3.915,3.92,a-exp-i1,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7,"" -1.925,1.93,a-exp-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6,"" -2.145,2.15,a-exp-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9,"" -3.56,3.56,a-exp-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1,"" -2.69,2.69,a-exp-i1,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1,"" -4.465,4.47,a-exp-i1,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9,"" -5.0,5.0,a-exp-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0,"" -4.005,4.01,a-exp-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7,"" -3.17,3.17,a-exp-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1,"" -3.2399999999999998,3.24,a-exp-i1,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0,"" -3.525,3.53,a-exp-i1,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2,"" -3.585,3.59,a-exp-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3,"" -4.675,4.68,a-exp-i1,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0,"" -3.66,3.66,a-exp-i1,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7,"" -3.2399999999999998,3.24,a-exp-i1,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0,"" -4.92,4.92,a-exp-i1,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0,"" -4.59,4.59,a-exp-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3,"" -5.0,5.0,a-exp-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6,"" -4.13,4.13,a-exp-i1,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3,"" -4.8149999999999995,4.81,a-exp-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5,"" -3.995,4.0,a-exp-i1,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9,"" -2.35,2.35,a-exp-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0,"" -3.94,3.94,a-exp-i1,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0,"" -3.37,3.37,a-exp-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8,"" -4.6,4.6,a-exp-i1,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2,"" -5.0,5.0,a-exp-i1,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0,"" -3.475,3.48,a-exp-i1,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9,"" -4.375,4.38,a-exp-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7,"" -4.43,4.43,a-exp-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8,"" -4.3,4.3,a-exp-i1,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8,"" -3.775,3.78,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1,"" -4.665,4.67,a-exp-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2,"" -5.0,5.0,a-exp-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0,"" -4.135,4.14,a-exp-i1,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6,"" -4.41,4.41,a-exp-i1,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0,"" -4.885,4.89,a-exp-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6,"" -4.545,4.55,a-exp-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0,"" -4.66,4.66,a-exp-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0,"" -3.925,3.93,a-exp-i1,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4,"" -4.04,4.04,a-exp-i1,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8,"" -4.26,4.26,a-exp-i1,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5,"" -3.75,3.75,a-exp-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8,"" -3.4200000000000004,3.42,a-exp-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1,"" -4.035,4.04,a-exp-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7,"" -3.66,3.66,a-exp-i1,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0,"" -4.535,4.54,a-exp-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0,"" -3.275,3.28,a-exp-i1,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6,"" -3.965,3.97,a-exp-i1,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4,"" -4.255,4.26,a-exp-i1,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5,"" -4.525,4.53,a-exp-i1,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0,"" -4.635,4.64,a-exp-i1,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0,"" -4.93,4.93,a-exp-i1,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4,"" -4.41,4.41,a-exp-i1,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6,"" -4.005,4.01,a-exp-i1,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9,"" -4.325,4.33,a-exp-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1,"" -4.285,4.29,a-exp-i1,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6,"" -3.15,3.15,a-exp-i1,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4,"" -4.0,4.0,a-exp-i1,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9,"" -3.3649999999999998,3.37,a-exp-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1,"" -3.965,3.97,a-exp-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1,"" -3.175,3.18,a-exp-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1,"" -4.725,4.73,a-exp-i1,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2,"" -2.605,2.61,a-exp-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9,"" -3.975,3.98,a-exp-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9,"" -3.79,3.79,a-exp-i1,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4,"" -3.7,3.7,a-exp-i1,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0,"" -4.24,4.24,a-exp-i1,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3,"" -4.43,4.43,a-exp-i1,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0,"" -1.19,1.19,a-exp-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3,"" -3.935,3.94,a-exp-i1,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1,"" -2.1149999999999998,2.11,a-exp-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3,"" -4.0,4.0,a-exp-i1,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0,"" -3.4,3.4,a-exp-i1,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8,"" -5.0,5.0,a-exp-i1,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0,"" -3.47,3.47,a-exp-i1,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1,"" -3.505,3.51,a-exp-i1,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3,"" -4.205,4.21,a-exp-i1,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1,"" -2.225,2.23,a-exp-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1,"" -4.21,4.21,a-exp-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1,"" -4.735,4.74,a-exp-i1,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6,"" -3.09,3.09,a-exp-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1,"" -4.385,4.39,a-exp-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7,"" -4.46,4.46,a-exp-i1,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4,"" -4.83,4.83,a-exp-i1,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6,"" -4.7700000000000005,4.77,a-exp-i1,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0,"" -4.26,4.26,a-exp-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0,"" -4.89,4.89,a-exp-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1,"" -4.5,4.5,a-exp-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0,"" -4.96,4.96,a-exp-i1,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1,"" -5.0,5.0,a-exp-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4,"" -4.36,4.36,a-exp-i1,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0,"" -4.26,4.26,a-exp-i1,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2,"" -4.165,4.17,a-exp-i1,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8,"" -4.57,4.57,a-exp-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0,"" -3.915,3.92,a-exp-i1,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2,"" -4.285,4.29,a-exp-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7,"" -4.2,4.2,a-exp-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0,"" -4.18,4.18,a-exp-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2,"" -3.75,3.75,a-exp-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7,"" -4.245,4.25,a-exp-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5,"" -4.485,4.49,a-exp-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6,"" -4.615,4.62,a-exp-i1,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8,"" -4.32,4.32,a-exp-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2,"" -4.42,4.42,a-exp-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2,"" -4.465,4.47,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9,"" -4.885,4.89,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7,"" -3.53,3.53,a-exp-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0,"" -4.45,4.45,a-exp-i1,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5,"" -4.515,4.52,a-exp-i1,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3,"" -4.32,4.32,a-exp-i1,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7,"" -4.085,4.09,a-exp-i1,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2,"" -3.935,3.94,a-exp-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0,"" -3.9,3.9,a-exp-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4,"" -3.775,3.78,a-exp-i1,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6,"" -4.675,4.68,a-exp-i1,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2,"" -3.835,3.84,a-exp-i1,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0,"" -4.325,4.33,a-exp-i1,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8,"" -3.975,3.98,a-exp-i1,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9,"" -4.295,4.3,a-exp-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5,"" -4.13,4.13,a-exp-i1,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2,"" -4.32,4.32,a-exp-i1,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6,"" -4.529999999999999,4.53,a-exp-i1,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2,"" -4.36,4.36,a-exp-i1,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4,"" -3.8,3.8,a-exp-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2,"" -3.9,3.9,a-exp-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2,"" -4.17,4.17,a-exp-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4,"" -4.66,4.66,a-exp-i1,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4,"" -4.505,4.51,a-exp-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6,"" -4.36,4.36,a-exp-i1,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3,"" -1.69,1.69,a-exp-i1,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2,"" -2.69,2.69,a-exp-i1,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5,"" -2.8649999999999998,2.87,a-exp-i1,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4,"" -2.41,2.41,a-exp-i1,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3,"" -2.805,2.81,a-exp-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3,"" -2.5,2.5,a-exp-i1,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1,"" -4.875,4.88,a-exp-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0,"" -4.255,4.26,a-exp-i1,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2,"" -4.82,4.82,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2,"" -4.675,4.68,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0,"" -3.915,3.92,a-exp-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2,"" -3.97,3.97,a-exp-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8,"" -4.325,4.33,a-exp-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7,"" -3.46,3.46,a-exp-i1,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0,"" -2.9699999999999998,2.97,a-exp-i1,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9,"" -2.96,2.96,a-exp-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9,"" -3.745,3.75,a-exp-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3,"" -3.19,3.19,a-exp-i1,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5,"" -3.585,3.59,a-exp-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0,"" -3.285,3.29,a-exp-i1,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0,"" -3.975,3.98,a-exp-i1,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6,"" -1.7149999999999999,1.72,a-exp-i1,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3,"" -3.38,3.38,a-exp-i1,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3,"" -4.12,4.12,a-exp-i1,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9,"" -3.7049999999999996,3.7,a-exp-i1,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3,"" -4.16,4.16,a-exp-i1,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7,"" -3.035,3.04,a-exp-i1,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9,"" -3.055,3.06,a-exp-i1,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9,"" -1.97,1.97,a-exp-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5,"" -3.475,3.48,a-exp-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7,"" -3.755,3.76,a-exp-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3,"" -4.04,4.04,a-exp-i1,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7,"" -3.535,3.54,a-exp-i1,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2,"" -2.3649999999999998,2.36,a-exp-i1,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8,"" -3.435,3.44,a-exp-i1,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7,"" -4.075,4.08,a-exp-i1,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0,"" -3.38,3.38,a-exp-i1,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9,"" -3.44,3.44,a-exp-i1,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8,"" -4.245,4.25,a-exp-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7,"" -4.2,4.2,a-exp-i1,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8,"" -3.3850000000000002,3.39,a-exp-i1,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8,"" -3.37,3.37,a-exp-i1,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3,"" -2.375,2.38,a-exp-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6,"" -4.425,4.43,a-exp-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3,"" -3.41,3.41,a-exp-i1,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8,"" -3.0100000000000002,3.01,a-exp-i1,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4,"" -3.825,3.83,a-exp-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0,"" -4.91,4.91,a-exp-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3,"" -1.61,1.61,a-exp-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1,"" -2.575,2.58,a-exp-i1,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4,"" -4.125,4.13,a-exp-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0,"" -4.15,4.15,a-exp-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9,"" -4.36,4.36,a-exp-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4,"" -1.0050000000000001,1.01,a-exp-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0,"" -3.25,3.25,a-exp-i1,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2,"" -3.905,3.91,a-exp-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0,"" -2.7649999999999997,2.76,a-exp-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4,"" -2.6100000000000003,2.61,a-exp-i1,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3,"" -3.13,3.13,a-exp-i1,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3,"" -3.75,3.75,a-exp-i1,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9,"" -2.525,2.53,a-exp-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4,"" -2.2800000000000002,2.28,a-exp-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9,"" -4.24,4.24,a-exp-i1,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8,"" -4.235,4.24,a-exp-i1,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1,"" -2.7800000000000002,2.78,a-exp-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0,"" -4.14,4.14,a-exp-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0,"" -4.825,4.83,a-exp-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2,"" -4.285,4.29,a-exp-i1,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0,"" -4.195,4.2,a-exp-i1,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8,"" -4.39,4.39,a-exp-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9,"" -3.905,3.91,a-exp-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2,"" -4.625,4.63,a-exp-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7,"" -4.86,4.86,a-exp-i1,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0,"" -4.215,4.22,a-exp-i1,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1,"" -4.39,4.39,a-exp-i1,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0,"" -3.3549999999999995,3.35,a-exp-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8,"" -4.25,4.25,a-exp-i1,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0,"" -4.775,4.78,a-exp-i1,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5,"" -5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7,"" -5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9,"" -3.995,4.0,a-exp-i1,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8,"" -3.94,3.94,a-exp-i1,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9,"" -4.765,4.77,a-exp-i1,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4,"" -4.7,4.7,a-exp-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8,"" -5.0,5.0,a-exp-i1,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0,"" -4.555,4.56,a-exp-i1,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9,"" -4.635,4.64,a-exp-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6,"" -4.335,4.34,a-exp-i1,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9,"" -4.725,4.73,a-exp-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0,"" -4.035,4.04,a-exp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3,"" -4.385,4.39,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5,"" -4.705,4.71,a-exp-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1,"" -4.415,4.42,a-exp-i1,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7,"" -4.0,4.0,a-exp-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1,"" -4.115,4.12,a-exp-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0,"" -3.825,3.83,a-exp-i1,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1,"" -4.17,4.17,a-exp-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5,"" -4.125,4.13,a-exp-i1,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9,"" -4.07,4.07,a-exp-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0,"" -4.17,4.17,a-exp-i1,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3,"" -4.635,4.64,a-exp-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6,"" -4.115,4.12,a-exp-i1,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0,N/A, 98.7, 100.0,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0,"" -4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0,N/A, 94.3, 100.0,"" -4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0,"" -4.525,4.53,a-exp-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3,"" -4.04,4.04,a-exp-i1,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0,"" -4.335,4.34,a-exp-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5,"" -4.245,4.25,a-exp-i1,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3,"" -4.675,4.68,a-exp-i1,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7,"" -4.495,4.5,a-exp-i1,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5,"" -3.79,3.79,a-exp-i1,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6,"" -3.1100000000000003,3.11,a-exp-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2,"" -2.05,2.05,a-exp-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2,"" -4.54,4.54,a-exp-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9,"" -3.995,4.0,a-exp-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5,"" -3.595,3.6,a-exp-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1,"" +4.43,4.43,a-exp-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3, 100.0 +3.975,3.98,a-exp-i1,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9, 94.1 +4.465,4.47,a-exp-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7, 96.3 +3.9899999999999998,3.99,a-exp-i1,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3, 96.3 +4.165,4.17,a-exp-i1,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1, 90.9 +4.335,4.34,a-exp-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6, 95.1 +4.515,4.52,a-exp-i1,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4, 94.7 +3.13,3.13,a-exp-i1,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4, 97.7 +4.66,4.66,a-exp-i1,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2, 96.0 +3.745,3.75,a-exp-i1,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7, 95.8 +4.575,4.58,a-exp-i1,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5, 94.1 +4.84,4.84,a-exp-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0, 100.0 +4.555,4.56,a-exp-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0, 100.0 +4.7299999999999995,4.73,a-exp-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0, 91.4 +4.49,4.49,a-exp-i1,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2, 95.5 +4.215,4.22,a-exp-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5, 100.0 +4.215,4.22,a-exp-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4, 100.0 +4.1,4.1,a-exp-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0, 93.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1, 87.8 +4.29,4.29,a-exp-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8, 86.3 +4.37,4.37,a-exp-i1,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0, 76.9 +0.9199999999999999,1,a-exp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0, 42.9 +1.25,1.25,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0, 53.8 +1.1099999999999999,1.11,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6, 30.8 +2.34,2.34,a-exp-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7, 71.3 +2.995,3.0,a-exp-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2, 61.7 +4.585,4.59,a-exp-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0, 100.0 +3.7350000000000003,3.74,a-exp-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0, 95.0 +3.35,3.35,a-exp-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5, 88.9 +3.05,3.05,a-exp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2, 70.3 +2.675,2.68,a-exp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4, 64.0 +3.915,3.92,a-exp-i1,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3, 100.0 +3.6700000000000004,3.67,a-exp-i1,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7, 91.2 +1.925,1.93,a-exp-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6, 88.9 +2.145,2.15,a-exp-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7, 87.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9, 100.0 +3.56,3.56,a-exp-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1, 81.7 +2.69,2.69,a-exp-i1,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1, 100.0 +4.465,4.47,a-exp-i1,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9, 89.2 +5.0,5.0,a-exp-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0, 93.3 +4.005,4.01,a-exp-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7, 100.0 +3.17,3.17,a-exp-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1, 92.3 +3.2399999999999998,3.24,a-exp-i1,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0, 92.1 +3.525,3.53,a-exp-i1,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2, 81.4 +3.585,3.59,a-exp-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3, 85.7 +4.675,4.68,a-exp-i1,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0, 96.8 +4.51,4.51,a-exp-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0, 100.0 +4.285,4.29,a-exp-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0, 100.0 +3.66,3.66,a-exp-i1,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0, 100.0 +4.51,4.51,a-exp-i1,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7, 95.7 +3.2399999999999998,3.24,a-exp-i1,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0, 96.6 +4.485,4.49,a-exp-i1,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0, 98.1 +4.92,4.92,a-exp-i1,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0, 95.8 +4.59,4.59,a-exp-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0, 94.1 +4.35,4.35,a-exp-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3, 98.9 +5.0,5.0,a-exp-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6, 99.1 +4.13,4.13,a-exp-i1,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3, 97.4 +4.8149999999999995,4.81,a-exp-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5, 94.7 +3.995,4.0,a-exp-i1,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0, 98.2 +4.41,4.41,a-exp-i1,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5, 100.0 +4.154999999999999,4.15,a-exp-i1,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9, 100.0 +2.35,2.35,a-exp-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0, 68.0 +3.94,3.94,a-exp-i1,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0, 84.6 +3.37,3.37,a-exp-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8, 94.1 +4.6,4.6,a-exp-i1,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2, 94.7 +5.0,5.0,a-exp-i1,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0, 50.0 +3.475,3.48,a-exp-i1,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9, 94.1 +4.375,4.38,a-exp-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7, 90.4 +4.43,4.43,a-exp-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8, 90.5 +4.3,4.3,a-exp-i1,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0, 93.1 +5.0,5.0,a-exp-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0, 100.0 +4.4399999999999995,4.44,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8, 82.0 +3.775,3.78,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2, 86.2 +4.1049999999999995,4.1,a-exp-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1, 95.7 +4.665,4.67,a-exp-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0, 100.0 +4.135,4.14,a-exp-i1,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6, 100.0 +4.41,4.41,a-exp-i1,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0, 97.4 +4.885,4.89,a-exp-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6, 100.0 +4.545,4.55,a-exp-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0, 93.8 +4.285,4.29,a-exp-i1,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0, 96.3 +4.66,4.66,a-exp-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0, 97.6 +3.7700000000000005,3.77,a-exp-i1,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0, 100.0 +4.2,4.2,a-exp-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0, 100.0 +3.925,3.93,a-exp-i1,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0, 92.9 +3.7600000000000002,3.76,a-exp-i1,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9, 97.1 +3.9450000000000003,3.95,a-exp-i1,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4, 98.1 +4.04,4.04,a-exp-i1,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8, 97.0 +4.26,4.26,a-exp-i1,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5, 96.9 +3.75,3.75,a-exp-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8, 100.0 +3.6100000000000003,3.61,a-exp-i1,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7, 92.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0, 96.4 +3.9799999999999995,3.98,a-exp-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8, 79.0 +3.4200000000000004,3.42,a-exp-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1, 100.0 +4.035,4.04,a-exp-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7, 94.0 +3.66,3.66,a-exp-i1,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0, 97.9 +4.535,4.54,a-exp-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0, 96.7 +3.275,3.28,a-exp-i1,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6, 88.5 +3.965,3.97,a-exp-i1,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4, 89.8 +4.255,4.26,a-exp-i1,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0, 100.0 +4.49,4.49,a-exp-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5, 88.6 +4.525,4.53,a-exp-i1,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0, 100.0 +4.635,4.64,a-exp-i1,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0, 100.0 +4.175,4.18,a-exp-i1,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0, 100.0 +4.93,4.93,a-exp-i1,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0, 92.9 +4.4350000000000005,4.44,a-exp-i1,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4, 94.9 +4.41,4.41,a-exp-i1,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6, 95.8 +4.005,4.01,a-exp-i1,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4, 100.0 +3.9200000000000004,3.92,a-exp-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9, 100.0 +4.325,4.33,a-exp-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3, 97.1 +4.6049999999999995,4.6,a-exp-i1,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1, 93.8 +4.285,4.29,a-exp-i1,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6, 96.9 +3.15,3.15,a-exp-i1,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4, 96.0 +4.0,4.0,a-exp-i1,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9, 92.6 +3.3649999999999998,3.37,a-exp-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1, 93.2 +3.965,3.97,a-exp-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1, 100.0 +3.175,3.18,a-exp-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1, 93.1 +4.725,4.73,a-exp-i1,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2, 81.8 +2.605,2.61,a-exp-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9, 78.5 +3.975,3.98,a-exp-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6, 68.0 +4.3950000000000005,4.4,a-exp-i1,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7, 100.0 +4.8950000000000005,4.9,a-exp-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9, 100.0 +3.79,3.79,a-exp-i1,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4, 92.9 +3.7,3.7,a-exp-i1,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0, 100.0 +4.2,4.2,a-exp-i1,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3, 98.2 +4.43,4.43,a-exp-i1,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1, 97.2 +4.9350000000000005,4.94,a-exp-i1,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8, 83.3 +3.7950000000000004,3.8,a-exp-i1,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0, 93.3 +3.8850000000000002,3.89,a-exp-i1,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0, 88.9 +1.19,1.19,a-exp-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3, 41.3 +3.935,3.94,a-exp-i1,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1, 100.0 +2.1149999999999998,2.11,a-exp-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3, 94.1 +4.0,4.0,a-exp-i1,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0, 100.0 +3.4,3.4,a-exp-i1,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1, 84.1 +3.9450000000000003,3.95,a-exp-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5, 93.9 +5.0,5.0,a-exp-i1,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8, 87.5 +5.0,5.0,a-exp-i1,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0, 88.9 +3.47,3.47,a-exp-i1,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1, 83.1 +3.505,3.51,a-exp-i1,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0, 77.8 +3.0949999999999998,3.1,a-exp-i1,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3, 90.7 +4.205,4.21,a-exp-i1,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1, 96.0 +2.225,2.23,a-exp-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0, 52.6 +3.8299999999999996,3.83,a-exp-i1,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7, 89.3 +3.8649999999999998,3.87,a-exp-i1,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2, 96.6 +4.1450000000000005,4.15,a-exp-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1, 87.5 +4.21,4.21,a-exp-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1, 96.4 +4.735,4.74,a-exp-i1,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0, 93.0 +4.76,4.76,a-exp-i1,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6, 95.7 +3.09,3.09,a-exp-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1, 100.0 +4.385,4.39,a-exp-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7, 88.9 +4.46,4.46,a-exp-i1,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4, 100.0 +4.83,4.83,a-exp-i1,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6, 96.8 +4.7700000000000005,4.77,a-exp-i1,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0, 95.8 +4.26,4.26,a-exp-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0, 100.0 +4.89,4.89,a-exp-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0, 97.8 +4.5600000000000005,4.56,a-exp-i1,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1, 100.0 +4.5,4.5,a-exp-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0, 100.0 +4.96,4.96,a-exp-i1,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1, 91.1 +5.0,5.0,a-exp-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4, 100.0 +4.36,4.36,a-exp-i1,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0, 100.0 +4.26,4.26,a-exp-i1,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.365,4.37,a-exp-i1,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2, 97.2 +4.165,4.17,a-exp-i1,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8, 90.1 +4.57,4.57,a-exp-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0, 90.2 +3.915,3.92,a-exp-i1,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0, 100.0 +4.535,4.54,a-exp-i1,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7, 95.7 +4.2,4.2,a-exp-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0, 97.8 +4.18,4.18,a-exp-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2, 96.0 +3.75,3.75,a-exp-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7, 100.0 +4.245,4.25,a-exp-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5, 96.9 +4.485,4.49,a-exp-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6, 93.4 +4.615,4.62,a-exp-i1,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8, 100.0 +4.32,4.32,a-exp-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2, 88.5 +4.42,4.42,a-exp-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2, 94.7 +4.465,4.47,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9, 97.9 +4.885,4.89,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7, 97.7 +3.53,3.53,a-exp-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0, 65.9 +4.45,4.45,a-exp-i1,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5, 97.1 +4.515,4.52,a-exp-i1,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3, 97.8 +4.32,4.32,a-exp-i1,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7, 100.0 +4.085,4.09,a-exp-i1,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6, 96.6 +4.654999999999999,4.65,a-exp-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2, 94.3 +3.935,3.94,a-exp-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9, 92.9 +4.029999999999999,4.03,a-exp-i1,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6, 93.5 +4.220000000000001,4.22,a-exp-i1,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0, 94.4 +3.9,3.9,a-exp-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4, 96.4 +3.775,3.78,a-exp-i1,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6, 90.0 +4.675,4.68,a-exp-i1,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2, 58.3 +3.835,3.84,a-exp-i1,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0, 95.0 +4.325,4.33,a-exp-i1,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8, 27.8 +3.975,3.98,a-exp-i1,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9, 93.8 +4.295,4.3,a-exp-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5, 93.8 +4.13,4.13,a-exp-i1,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4, 94.0 +4.5200000000000005,4.52,a-exp-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2, 95.5 +4.32,4.32,a-exp-i1,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2, 100.0 +4.36,4.36,a-exp-i1,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4, 86.4 +3.8,3.8,a-exp-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2, 95.6 +3.9,3.9,a-exp-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2, 72.8 +4.17,4.17,a-exp-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4, 91.3 +4.66,4.66,a-exp-i1,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4, 95.2 +4.505,4.51,a-exp-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0, 100.0 +4.76,4.76,a-exp-i1,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0, 95.2 +4.0200000000000005,4.02,a-exp-i1,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6, 96.9 +4.36,4.36,a-exp-i1,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3, 89.1 +1.69,1.69,a-exp-i1,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2, 83.3 +2.69,2.69,a-exp-i1,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5, 96.7 +2.8649999999999998,2.87,a-exp-i1,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4, 77.8 +2.41,2.41,a-exp-i1,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3, 74.4 +2.805,2.81,a-exp-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3, 82.5 +2.5,2.5,a-exp-i1,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3, 84.4 +3.8299999999999996,3.83,a-exp-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3, 93.7 +3.7700000000000005,3.77,a-exp-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1, 95.7 +4.875,4.88,a-exp-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0, 100.0 +4.255,4.26,a-exp-i1,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0, 99.1 +4.5649999999999995,4.56,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2, 97.1 +4.82,4.82,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2, 98.2 +4.675,4.68,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0, 96.8 +3.6700000000000004,3.67,a-exp-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0, 82.4 +3.915,3.92,a-exp-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2, 100.0 +3.97,3.97,a-exp-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0, 97.1 +4.029999999999999,4.03,a-exp-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8, 100.0 +4.325,4.33,a-exp-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6, 96.0 +4.5649999999999995,4.56,a-exp-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7, 91.7 +3.46,3.46,a-exp-i1,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0, 80.0 +2.9699999999999998,2.97,a-exp-i1,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9, 84.2 +2.96,2.96,a-exp-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9, 60.0 +3.745,3.75,a-exp-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3, 76.5 +3.19,3.19,a-exp-i1,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5, 97.4 +3.585,3.59,a-exp-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0, 77.8 +3.285,3.29,a-exp-i1,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0, 86.4 +3.975,3.98,a-exp-i1,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6, 96.9 +1.7149999999999999,1.72,a-exp-i1,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3, 43.8 +3.38,3.38,a-exp-i1,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3, 79.4 +4.12,4.12,a-exp-i1,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0, 95.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5, 92.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0, 0.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0, 0.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9, 86.0 +3.7049999999999996,3.7,a-exp-i1,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3, 88.9 +4.16,4.16,a-exp-i1,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7, 93.8 +3.035,3.04,a-exp-i1,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8, 76.6 +3.6350000000000002,3.64,a-exp-i1,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9, 87.5 +3.055,3.06,a-exp-i1,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9, 87.2 +1.97,1.97,a-exp-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5, 56.5 +3.475,3.48,a-exp-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7, 93.8 +3.755,3.76,a-exp-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3, 67.3 +4.04,4.04,a-exp-i1,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7, 73.1 +3.535,3.54,a-exp-i1,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2, 83.9 +2.3649999999999998,2.36,a-exp-i1,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8, 70.8 +3.435,3.44,a-exp-i1,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7, 76.7 +4.075,4.08,a-exp-i1,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6, 92.3 +5.0,5.0,a-exp-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0, 85.7 +3.38,3.38,a-exp-i1,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9, 94.6 +3.44,3.44,a-exp-i1,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8, 95.0 +4.245,4.25,a-exp-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0, 96.3 +3.6149999999999998,3.62,a-exp-i1,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7, 92.0 +4.2,4.2,a-exp-i1,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8, 90.9 +3.3850000000000002,3.39,a-exp-i1,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8, 93.3 +3.37,3.37,a-exp-i1,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0, 86.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3, 88.1 +2.375,2.38,a-exp-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6, 60.5 +4.425,4.43,a-exp-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3, 88.5 +3.41,3.41,a-exp-i1,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9, 72.7 +4.0649999999999995,4.06,a-exp-i1,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5, 96.3 +3.6100000000000003,3.61,a-exp-i1,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3, 89.5 +4.220000000000001,4.22,a-exp-i1,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8, 85.1 +3.0100000000000002,3.01,a-exp-i1,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4, 73.9 +3.825,3.83,a-exp-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2, 87.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0, 75.0 +4.91,4.91,a-exp-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3, 90.9 +1.61,1.61,a-exp-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1, 56.4 +2.575,2.58,a-exp-i1,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4, 85.7 +4.125,4.13,a-exp-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0, 90.9 +4.15,4.15,a-exp-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9, 61.1 +4.36,4.36,a-exp-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4, 100.0 +1.0050000000000001,1.01,a-exp-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3, 40.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0, 75.0 +3.25,3.25,a-exp-i1,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2, 91.1 +3.905,3.91,a-exp-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0, 90.4 +2.7649999999999997,2.76,a-exp-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4, 85.7 +2.6100000000000003,2.61,a-exp-i1,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7, 83.3 +3.9200000000000004,3.92,a-exp-i1,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3, 92.9 +3.13,3.13,a-exp-i1,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2, 87.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5, 90.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3, 100.0 +3.75,3.75,a-exp-i1,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9, 92.9 +2.525,2.53,a-exp-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4, 58.4 +2.2800000000000002,2.28,a-exp-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9, 40.8 +4.24,4.24,a-exp-i1,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0, 96.0 +4.175,4.18,a-exp-i1,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1, 88.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2, 96.9 +3.8049999999999997,3.81,a-exp-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8, 97.1 +4.235,4.24,a-exp-i1,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1, 95.4 +2.7800000000000002,2.78,a-exp-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0, 88.9 +4.14,4.14,a-exp-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0, 96.3 +4.825,4.83,a-exp-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0, 100.0 +4.285,4.29,a-exp-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0, 96.6 +4.195,4.2,a-exp-i1,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8, 93.9 +4.39,4.39,a-exp-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9, 97.2 +3.905,3.91,a-exp-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2, 43.7 +4.5649999999999995,4.56,a-exp-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2, 95.3 +4.625,4.63,a-exp-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7, 100.0 +4.86,4.86,a-exp-i1,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0, 100.0 +4.215,4.22,a-exp-i1,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1, 100.0 +4.39,4.39,a-exp-i1,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0, 100.0 +3.3549999999999995,3.35,a-exp-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8, 92.6 +4.25,4.25,a-exp-i1,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0, 96.2 +4.775,4.78,a-exp-i1,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5, 100.0 +5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7, 97.2 +5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6, 100.0 +3.9799999999999995,3.98,a-exp-i1,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9, 92.3 +3.995,4.0,a-exp-i1,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8, 97.4 +3.94,3.94,a-exp-i1,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0, 94.7 +4.49,4.49,a-exp-i1,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9, 96.8 +4.765,4.77,a-exp-i1,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4, 94.0 +4.7,4.7,a-exp-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8, 95.7 +5.0,5.0,a-exp-i1,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0, 95.5 +4.555,4.56,a-exp-i1,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9, 95.7 +4.635,4.64,a-exp-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6, 100.0 +4.335,4.34,a-exp-i1,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9, 95.2 +4.725,4.73,a-exp-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0, 100.0 +4.035,4.04,a-exp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1, 94.2 +4.2700000000000005,4.27,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2, 93.9 +4.595000000000001,4.6,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3, 94.0 +4.385,4.39,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5, 92.9 +4.705,4.71,a-exp-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1, 100.0 +4.415,4.42,a-exp-i1,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7, 100.0 +3.8299999999999996,3.83,a-exp-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7, 100.0 +4.0,4.0,a-exp-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0, 100.0 +4.2700000000000005,4.27,a-exp-i1,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4, 98.0 +3.7299999999999995,3.73,a-exp-i1,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1, 96.7 +4.115,4.12,a-exp-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0, 100.0 +3.825,3.83,a-exp-i1,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1, 97.4 +4.17,4.17,a-exp-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5, 100.0 +4.125,4.13,a-exp-i1,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9, 98.0 +4.07,4.07,a-exp-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9, 95.7 +4.279999999999999,4.28,a-exp-i1,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0, 100.0 +4.17,4.17,a-exp-i1,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3, 97.9 +4.635,4.64,a-exp-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6, 97.8 +4.115,4.12,a-exp-i1,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6, 97.9 +4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0, 100.0 +4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0, 100.0 +4.525,4.53,a-exp-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9, 94.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3, 100.0 +4.04,4.04,a-exp-i1,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0, 96.8 +4.2,4.2,a-exp-i1,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0, 100.0 +4.335,4.34,a-exp-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5, 94.1 +4.245,4.25,a-exp-i1,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1, 97.7 +3.8899999999999997,3.89,a-exp-i1,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7, 97.5 +3.8049999999999997,3.81,a-exp-i1,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3, 97.9 +4.675,4.68,a-exp-i1,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7, 93.1 +4.495,4.5,a-exp-i1,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5, 93.9 +3.79,3.79,a-exp-i1,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0, 95.0 +4.265,4.27,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6, 98.4 +4.5200000000000005,4.52,a-exp-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7, 83.8 +4.3549999999999995,4.35,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6, 92.5 +3.1100000000000003,3.11,a-exp-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2, 76.3 +2.05,2.05,a-exp-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2, 83.3 +4.54,4.54,a-exp-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9, 92.9 +3.995,4.0,a-exp-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5, 91.4 +3.595,3.6,a-exp-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1, 85.7 0.0,1,a-exp-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0,N/A,"","","" -3.91,3.91,a-exp-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5,"" -1.7899999999999998,1.79,a-exp-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4,"" -4.805,4.81,a-exp-i1,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0,"" -4.995,5.0,a-exp-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6,"" -4.385,4.39,a-exp-i1,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0,"" -3.79,3.79,a-exp-i1,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8,"" -4.36,4.36,a-exp-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7,"" -4.75,4.75,a-exp-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0,"" -3.0,3.0,a-exp-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0,"" -4.38,4.38,a-exp-i1,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3,"" -4.63,4.63,a-exp-i1,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0,"" -4.62,4.62,a-exp-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0,"" -3.655,3.66,a-exp-i1,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4,"" -2.8899999999999997,2.89,a-exp-i1,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0,"" -4.46,4.46,a-exp-i1,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0,"" -4.34,4.34,a-exp-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4,"" -3.94,3.94,a-exp-i1,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4,"" -4.695,4.7,a-exp-i1,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1,"" -4.5,4.5,a-exp-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6,"" -4.455,4.46,a-exp-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5,"" -4.535,4.54,a-exp-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3,"" -3.78,3.78,a-exp-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0,"" -4.18,4.18,a-exp-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8,"" -4.385,4.39,a-exp-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0,"" -2.665,2.67,a-exp-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1,"" -4.045,4.05,a-exp-i1,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3,"" -4.42,4.42,a-exp-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0,"" -4.21,4.21,a-exp-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2,"" -4.735,4.74,a-exp-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1,"" -3.88,3.88,a-exp-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4,"" -4.265,4.27,a-exp-i1,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3,"" -4.14,4.14,a-exp-i1,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1,"" -3.825,3.83,a-exp-i1,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4,"" -3.85,3.85,a-exp-i1,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5,"" -4.25,4.25,a-exp-i1,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6,"" -4.035,4.04,a-exp-i1,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3,"" -4.425,4.43,a-exp-i1,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0,"" -4.82,4.82,a-exp-i1,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4,"" -2.0,2.0,a-exp-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8,"" -4.485,4.49,a-exp-i1,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4,"" -4.255,4.26,a-exp-i1,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0,"" -4.45,4.45,a-exp-i1,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9,"" -3.59,3.59,a-exp-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2,"" -4.305,4.31,a-exp-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2,"" -4.085,4.09,a-exp-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7,"" -4.785,4.79,a-exp-i1,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0,"" -4.0,4.0,a-exp-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0,"" -4.765,4.77,a-exp-i1,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8,"" -4.825,4.83,a-exp-i1,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1,"" -4.8549999999999995,4.85,a-exp-i1,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7,"" -4.275,4.28,a-exp-i1,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0,"" -4.865,4.87,a-exp-i1,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7,"" -4.6,4.6,a-exp-i1,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3,"" -5.0,5.0,a-exp-i1,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1,"" -4.25,4.25,a-exp-i1,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0,"" -4.415,4.42,a-exp-i1,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6,"" -4.475,4.48,a-exp-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6,"" -4.24,4.24,a-exp-i1,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8,"" -4.38,4.38,a-exp-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6,"" -4.235,4.24,a-exp-i1,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0,"" -4.365,4.37,a-exp-i1,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0,"" -3.935,3.94,a-exp-i1,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4,"" -4.255,4.26,a-exp-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4,"" -2.7350000000000003,2.74,a-exp-i1,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9,"" -4.635,4.64,a-exp-i1,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0,"" -4.245,4.25,a-exp-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9,"" -4.58,4.58,a-exp-i1,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8,"" -4.63,4.63,a-exp-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0,"" -4.07,4.07,a-exp-i1,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8,"" -4.505,4.51,a-exp-i1,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2,"" -4.01,4.01,a-exp-i1,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0,"" -4.11,4.11,a-exp-i1,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3,"" -5.0,5.0,a-exp-i1,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1,"" -3.675,3.68,a-exp-i1,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2,"" -5.0,5.0,a-exp-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -4.67,4.67,a-exp-i1,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0,"" -3.79,3.79,a-exp-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0,"" -3.53,3.53,a-exp-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7,"" -4.755,4.76,a-exp-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4,"" -3.88,3.88,a-exp-i1,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0,"" -4.505,4.51,a-exp-i1,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1,"" -3.505,3.51,a-exp-i1,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0,"" -4.215,4.22,a-exp-i1,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0,"" -3.31,3.31,a-exp-i1,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0,"" -3.9850000000000003,3.99,a-exp-i1,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0,"" -4.085,4.09,a-exp-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8,"" -3.97,3.97,a-exp-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0,"" -3.875,3.88,a-exp-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0,"" -4.24,4.24,a-exp-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0,"" -3.715,3.72,a-exp-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3,"" -4.04,4.04,a-exp-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7,"" -4.35,4.35,a-exp-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6,"" -4.34,4.34,a-exp-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4,"" -2.755,2.76,a-exp-i1,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6,"" -4.75,4.75,a-exp-i1,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0,"" -3.94,3.94,a-exp-i1,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5,"" -5.0,5.0,a-exp-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0,"" -3.915,3.92,a-exp-i1,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0,"" -4.525,4.53,a-exp-i1,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5,"" -3.6,3.6,a-exp-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0,"" -5.0,5.0,a-exp-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0,"" -4.8,4.8,a-exp-i1,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0,"" -4.45,4.45,a-exp-i1,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0,"" -4.0,4.0,a-exp-i1,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1,"" -4.14,4.14,a-exp-i1,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0,"" -3.96,3.96,a-exp-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2,"" -4.15,4.15,a-exp-i1,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8,"" -3.3049999999999997,3.31,a-exp-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4,"" -4.13,4.13,a-exp-i1,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6,"" -4.14,4.14,a-exp-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1,"" -3.165,3.17,a-exp-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9,"" -4.795,4.8,a-exp-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4,"" -4.4,4.4,a-exp-i1,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0,"" -4.015,4.02,a-exp-i1,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0,"" -4.46,4.46,a-exp-i1,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6,"" -4.115,4.12,a-exp-i1,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6,"" -4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7,"" -4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4,"" -3.815,3.82,a-exp-i1,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8,"" -3.46,3.46,a-exp-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2,"" -3.88,3.88,a-exp-i1,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5,"" -4.015,4.02,a-exp-i1,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3,"" -3.3899999999999997,3.39,a-exp-i1,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6,"" -4.545,4.55,a-exp-i1,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3,"" -4.36,4.36,a-exp-i1,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0,"" -4.32,4.32,a-exp-i1,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3,"" -2.7649999999999997,2.76,a-exp-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0,"" -4.125,4.13,a-exp-i1,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7,"" -3.2350000000000003,3.24,a-exp-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2,"" -4.15,4.15,a-exp-i1,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0,"" -2.825,2.83,a-exp-i1,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0,"" -4.665,4.67,a-exp-i1,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0,"" -3.685,3.69,a-exp-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5,"" -2.295,2.3,a-exp-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1,"" -4.195,4.2,a-exp-i1,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5,"" -3.9,3.9,a-exp-i1,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2,"" -3.5799999999999996,3.58,a-exp-i1,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0,"" -4.025,4.03,a-exp-i1,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2,"" -4.33,4.33,a-exp-i1,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3,"" -3.725,3.73,a-exp-i1,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0,"" -3.56,3.56,a-exp-i1,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0,"" -3.845,3.85,a-exp-i1,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7,"" -3.2950000000000004,3.3,a-exp-i1,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4,"" -4.04,4.04,a-exp-i1,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7,"" -4.165,4.17,a-exp-i1,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9,"" -3.2700000000000005,3.27,a-exp-i1,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7,"" -4.195,4.2,a-exp-i1,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3,"" -2.77,2.77,a-exp-i1,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0,"" -3.4799999999999995,3.48,a-exp-i1,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0,"" -4.075,4.08,a-exp-i1,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3,"" -NA,NA,a-exp-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9,"" -NA,NA,a-exp-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4,"" -NA,NA,a-exp-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3,"" -NA,NA,a-exp-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9,"" -NA,NA,a-exp-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2,"" -NA,NA,a-exp-i3,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3,"" -NA,NA,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6,"" -NA,NA,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8,"" -NA,NA,a-exp-i3,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9,"" -NA,NA,a-exp-i3,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2,"" -NA,NA,a-exp-i3,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3,"" -NA,NA,a-exp-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7,"" -NA,NA,a-exp-i3,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8,"" -NA,NA,a-exp-i3,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4,"" -NA,NA,a-exp-i3,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2,"" -NA,NA,a-exp-i3,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9,"" -NA,NA,a-exp-i3,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3,"" -NA,NA,a-exp-i3,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2,"" -NA,NA,a-exp-i3,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9,"" -NA,NA,a-exp-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7,"" -NA,NA,a-exp-i3,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4,"" -NA,NA,a-exp-i3,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2,"" -NA,NA,a-exp-i3,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0,"" -NA,NA,a-exp-i3,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7,"" -NA,NA,a-exp-i3,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4,"" -NA,NA,a-exp-i3,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9,"" -NA,NA,a-exp-i3,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9,"" -NA,NA,a-exp-i3,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3,"" -NA,NA,a-exp-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9,"" -NA,NA,a-exp-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0,"" -NA,NA,a-exp-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2,"" -NA,NA,a-exp-i3,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5,"" -NA,NA,a-exp-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6,"" -NA,NA,a-exp-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7,"" -NA,NA,a-exp-i3,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9,"" -NA,NA,a-exp-i3,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5,"" -NA,NA,a-exp-i3,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6,"" -NA,NA,a-exp-i3,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9,"" -NA,NA,a-exp-i3,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4,"" +3.91,3.91,a-exp-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0, 95.7 +4.25,4.25,a-exp-i1,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4, 96.4 +4.595000000000001,4.6,a-exp-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5, 97.5 +1.7899999999999998,1.79,a-exp-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4, 44.4 +4.805,4.81,a-exp-i1,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0, 100.0 +4.995,5.0,a-exp-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6, 96.8 +4.385,4.39,a-exp-i1,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8, 100.0 +4.595000000000001,4.6,a-exp-i1,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0, 92.3 +4.529999999999999,4.53,a-exp-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0, 100.0 +3.79,3.79,a-exp-i1,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8, 100.0 +4.36,4.36,a-exp-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0, 97.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7, 100.0 +4.75,4.75,a-exp-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2, 97.9 +4.404999999999999,4.4,a-exp-i1,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0, 100.0 +3.0,3.0,a-exp-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0, 100.0 +4.38,4.38,a-exp-i1,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3, 96.8 +4.63,4.63,a-exp-i1,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0, 100.0 +4.62,4.62,a-exp-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9, 98.9 +4.4399999999999995,4.44,a-exp-i1,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0, 100.0 +3.655,3.66,a-exp-i1,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4, 97.6 +2.8899999999999997,2.89,a-exp-i1,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0, 92.3 +4.46,4.46,a-exp-i1,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0, 97.4 +3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0, 100.0 +4.34,4.34,a-exp-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4, 97.5 +3.94,3.94,a-exp-i1,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0, 97.0 +4.6049999999999995,4.6,a-exp-i1,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4, 97.4 +4.695,4.7,a-exp-i1,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0, 97.0 +4.6,4.6,a-exp-i1,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1, 97.0 +4.5,4.5,a-exp-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6, 98.1 +4.455,4.46,a-exp-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5, 96.0 +4.535,4.54,a-exp-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3, 97.8 +3.78,3.78,a-exp-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0, 96.9 +4.18,4.18,a-exp-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1, 97.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8, 94.8 +4.385,4.39,a-exp-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0, 97.7 +2.665,2.67,a-exp-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1, 95.8 +4.045,4.05,a-exp-i1,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3, 91.0 +4.42,4.42,a-exp-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0, 97.8 +4.21,4.21,a-exp-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2, 100.0 +4.735,4.74,a-exp-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3, 93.5 +3.6100000000000003,3.61,a-exp-i1,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1, 100.0 +3.88,3.88,a-exp-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4, 87.5 +4.265,4.27,a-exp-i1,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3, 97.4 +4.14,4.14,a-exp-i1,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1, 100.0 +3.825,3.83,a-exp-i1,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4, 90.5 +3.85,3.85,a-exp-i1,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5, 97.7 +4.25,4.25,a-exp-i1,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6, 98.8 +4.035,4.04,a-exp-i1,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0, 95.7 +4.465,4.47,a-exp-i1,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8, 88.6 +4.345000000000001,4.35,a-exp-i1,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3, 95.2 +4.425,4.43,a-exp-i1,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0, 96.1 +4.485,4.49,a-exp-i1,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0, 100.0 +4.82,4.82,a-exp-i1,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4, 100.0 +2.0,2.0,a-exp-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0, 100.0 +4.7299999999999995,4.73,a-exp-i1,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5, 95.5 +5.0,5.0,a-exp-i1,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8, 96.9 +4.485,4.49,a-exp-i1,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4, 95.2 +4.255,4.26,a-exp-i1,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0, 100.0 +3.8950000000000005,3.9,a-exp-i1,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8, 94.2 +4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9, 95.5 +4.3549999999999995,4.35,a-exp-i1,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0, 97.1 +4.45,4.45,a-exp-i1,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0, 100.0 +4.49,4.49,a-exp-i1,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5, 96.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9, 95.1 +3.59,3.59,a-exp-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2, 100.0 +4.305,4.31,a-exp-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2, 100.0 +4.085,4.09,a-exp-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7, 96.1 +4.785,4.79,a-exp-i1,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0, 100.0 +4.0,4.0,a-exp-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6, 100.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0, 94.4 +4.765,4.77,a-exp-i1,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8, 95.5 +4.825,4.83,a-exp-i1,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1, 97.6 +4.8549999999999995,4.85,a-exp-i1,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0, 96.6 +5.0,5.0,a-exp-i1,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7, 95.8 +4.275,4.28,a-exp-i1,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5, 98.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9, 96.4 +4.3950000000000005,4.4,a-exp-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0, 100.0 +4.865,4.87,a-exp-i1,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7, 95.2 +4.6,4.6,a-exp-i1,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3, 97.4 +5.0,5.0,a-exp-i1,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1, 93.0 +4.25,4.25,a-exp-i1,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0, 97.4 +4.415,4.42,a-exp-i1,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6, 100.0 +4.475,4.48,a-exp-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5, 96.9 +4.720000000000001,4.72,a-exp-i1,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6, 95.4 +4.24,4.24,a-exp-i1,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8, 95.0 +4.38,4.38,a-exp-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0, 100.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6, 100.0 +4.235,4.24,a-exp-i1,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0, 96.8 +3.5450000000000004,3.55,a-exp-i1,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0, 92.9 +4.365,4.37,a-exp-i1,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0, 100.0 +3.935,3.94,a-exp-i1,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1, 91.7 +4.2299999999999995,4.23,a-exp-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5, 90.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4, 91.3 +4.255,4.26,a-exp-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4, 87.1 +2.7350000000000003,2.74,a-exp-i1,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9, 90.0 +4.635,4.64,a-exp-i1,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0, 92.3 +4.6450000000000005,4.65,a-exp-i1,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0, 89.8 +4.385,4.39,a-exp-i1,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0, 86.7 +4.5600000000000005,4.56,a-exp-i1,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0, 90.6 +4.245,4.25,a-exp-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0, 86.5 +4.35,4.35,a-exp-i1,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0, 90.9 +4.09,4.09,a-exp-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0, 93.5 +4.8950000000000005,4.9,a-exp-i1,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9, 96.0 +4.58,4.58,a-exp-i1,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8, 98.3 +4.63,4.63,a-exp-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6, 94.4 +4.1049999999999995,4.1,a-exp-i1,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0, 95.8 +4.1,4.1,a-exp-i1,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9, 92.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2, 93.3 +4.0649999999999995,4.06,a-exp-i1,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0, 96.7 +4.585,4.59,a-exp-i1,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0, 91.7 +4.07,4.07,a-exp-i1,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8, 100.0 +4.505,4.51,a-exp-i1,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2, 91.8 +4.01,4.01,a-exp-i1,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0, 100.0 +4.11,4.11,a-exp-i1,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3, 96.5 +5.0,5.0,a-exp-i1,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1, 100.0 +3.675,3.68,a-exp-i1,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2, 92.0 +5.0,5.0,a-exp-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.67,4.67,a-exp-i1,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0, 96.0 +4.35,4.35,a-exp-i1,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0, 96.2 +3.9200000000000004,3.92,a-exp-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0, 96.0 +3.79,3.79,a-exp-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0, 92.3 +3.53,3.53,a-exp-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7, 96.2 +4.755,4.76,a-exp-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4, 99.1 +3.88,3.88,a-exp-i1,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0, 95.5 +4.505,4.51,a-exp-i1,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1, 96.7 +3.505,3.51,a-exp-i1,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0, 100.0 +4.215,4.22,a-exp-i1,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0, 98.7 +3.31,3.31,a-exp-i1,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0, 93.3 +3.9850000000000003,3.99,a-exp-i1,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0, 94.4 +4.085,4.09,a-exp-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8, 100.0 +3.97,3.97,a-exp-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0, 100.0 +3.875,3.88,a-exp-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0, 100.0 +3.715,3.72,a-exp-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3, 97.4 +4.04,4.04,a-exp-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7, 95.0 +4.35,4.35,a-exp-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6, 96.2 +4.34,4.34,a-exp-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4, 94.4 +2.755,2.76,a-exp-i1,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0, 85.7 +4.61,4.61,a-exp-i1,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0, 95.8 +3.71,3.71,a-exp-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0, 92.5 +4.345000000000001,4.35,a-exp-i1,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0, 94.1 +4.4350000000000005,4.44,a-exp-i1,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4, 95.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6, 95.0 +4.75,4.75,a-exp-i1,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0, 95.2 +3.94,3.94,a-exp-i1,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5, 62.5 +5.0,5.0,a-exp-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0, 100.0 +3.915,3.92,a-exp-i1,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0, 96.2 +4.525,4.53,a-exp-i1,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5, 95.7 +3.6,3.6,a-exp-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0, 95.5 +5.0,5.0,a-exp-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0, 100.0 +4.8,4.8,a-exp-i1,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0, 100.0 +4.45,4.45,a-exp-i1,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0, 100.0 +4.0,4.0,a-exp-i1,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7, 100.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5, 100.0 +4.5600000000000005,4.56,a-exp-i1,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7, 94.5 +3.3600000000000003,3.36,a-exp-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0, 97.4 +3.96,3.96,a-exp-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2, 95.3 +4.15,4.15,a-exp-i1,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8, 97.7 +3.3049999999999997,3.31,a-exp-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4, 82.5 +4.13,4.13,a-exp-i1,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6, 97.4 +4.14,4.14,a-exp-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1, 96.4 +3.165,3.17,a-exp-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9, 100.0 +4.795,4.8,a-exp-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4, 91.8 +4.4,4.4,a-exp-i1,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0, 90.5 +4.015,4.02,a-exp-i1,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3, 96.9 +4.3950000000000005,4.4,a-exp-i1,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0, 86.4 +4.42,4.42,a-exp-i1,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0, 96.8 +4.46,4.46,a-exp-i1,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6, 96.5 +4.115,4.12,a-exp-i1,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6, 100.0 +4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3, 90.3 +3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7, 89.2 +4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4, 100.0 +3.815,3.82,a-exp-i1,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8, 96.8 +3.46,3.46,a-exp-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2, 91.9 +3.88,3.88,a-exp-i1,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2, 90.0 +3.4299999999999997,3.43,a-exp-i1,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5, 97.5 +4.015,4.02,a-exp-i1,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3, 86.0 +3.3899999999999997,3.39,a-exp-i1,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6, 96.3 +4.545,4.55,a-exp-i1,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3, 97.1 +4.36,4.36,a-exp-i1,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2, 90.4 +2.8600000000000003,2.86,a-exp-i1,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0, 100.0 +4.32,4.32,a-exp-i1,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3, 94.0 +2.7649999999999997,2.76,a-exp-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0, 100.0 +4.125,4.13,a-exp-i1,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7, 93.6 +3.2350000000000003,3.24,a-exp-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2, 97.4 +4.15,4.15,a-exp-i1,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0, 89.7 +2.825,2.83,a-exp-i1,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0, 21.7 +4.665,4.67,a-exp-i1,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0, 95.7 +3.685,3.69,a-exp-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5, 100.0 +2.295,2.3,a-exp-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1, 87.0 +4.195,4.2,a-exp-i1,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5, 100.0 +3.9,3.9,a-exp-i1,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2, 100.0 +3.5799999999999996,3.58,a-exp-i1,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0, 96.2 +4.025,4.03,a-exp-i1,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2, 100.0 +4.33,4.33,a-exp-i1,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3, 95.7 +3.725,3.73,a-exp-i1,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0, 91.8 +3.56,3.56,a-exp-i1,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7, 91.7 +4.345000000000001,4.35,a-exp-i1,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9, 98.3 +4.654999999999999,4.65,a-exp-i1,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0, 97.0 +3.9549999999999996,3.95,a-exp-i1,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1, 93.3 +3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0, 87.4 +3.845,3.85,a-exp-i1,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7, 95.1 +3.2950000000000004,3.3,a-exp-i1,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4, 100.0 +4.04,4.04,a-exp-i1,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0, 96.2 +3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7, 96.9 +4.165,4.17,a-exp-i1,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9, 90.9 +3.2700000000000005,3.27,a-exp-i1,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7, 95.0 +4.195,4.2,a-exp-i1,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3, 96.4 +2.77,2.77,a-exp-i1,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0, 100.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3, 96.2 +3.6700000000000004,3.67,a-exp-i1,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7, 91.8 +4.3149999999999995,4.31,a-exp-i1,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0, 92.8 +3.4799999999999995,3.48,a-exp-i1,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0, 100.0 +4.075,4.08,a-exp-i1,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0, 100.0 +0.0,1,a-exp-i1,2022-23,Tewksbury - Center Elementary School,02950030, 0.0, 0.0,N/A,"","","" +3.8105263157894735,3.81,a-exp-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3, 90.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0, 95.8 +3.8821052631578947,3.88,a-exp-i3,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3, 92.2 +4.109473684210526,4.11,a-exp-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4, 100.0 +1.991578947368421,1.99,a-exp-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6, 47.3 +4.147368421052631,4.15,a-exp-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8, 98.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0, 100.0 +4.08,4.08,a-exp-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0, 100.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3, 100.0 +3.7010526315789476,3.7,a-exp-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9, 87.9 +3.486315789473684,3.49,a-exp-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9, 82.8 +3.789473684210526,3.79,a-exp-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0, 90.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9, 96.0 +3.890526315789474,3.89,a-exp-i3,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4, 92.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0, 100.0 +1.2042105263157896,1.2,a-exp-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0, 28.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3, 96.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0, 75.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2, 97.7 +3.8947368421052633,3.89,a-exp-i3,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2, 92.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3, 97.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6, 90.8 +3.1578947368421053,3.16,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1, 75.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0, 100.0 +4.08,4.08,a-exp-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3, 100.0 +2.2357894736842105,2.24,a-exp-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7, 53.1 +3.983157894736842,3.98,a-exp-i3,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5, 94.6 +4.1010526315789475,4.1,a-exp-i3,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0, 97.4 +4.109473684210526,4.11,a-exp-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8, 100.0 +4.00421052631579,4.0,a-exp-i3,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5, 95.1 +4.105263157894737,4.11,a-exp-i3,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2, 97.7 +3.953684210526316,3.95,a-exp-i3,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9, 93.9 +4.029473684210527,4.03,a-exp-i3,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6, 96.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3, 96.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2, 96.6 +4.046315789473684,4.05,a-exp-i3,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0, 96.1 +4.122105263157895,4.12,a-exp-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8, 93.8 +4.113684210526316,4.11,a-exp-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6, 97.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0, 88.9 +3.9621052631578944,3.96,a-exp-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8, 94.1 +3.5621052631578944,3.56,a-exp-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0, 84.6 +2.6905263157894734,2.69,a-exp-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1, 63.9 +3.886315789473684,3.89,a-exp-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0, 92.3 +3.0610526315789475,3.06,a-exp-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3, 72.7 +3.83578947368421,3.84,a-exp-i3,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1, 91.1 +2.6315789473684212,2.63,a-exp-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0, 62.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7, 94.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4, 100.0 +3.776842105263158,3.78,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5, 89.7 +3.983157894736842,3.98,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0, 94.6 +4.08421052631579,4.08,a-exp-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0, 97.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9, 94.6 +4.021052631578947,4.02,a-exp-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1, 95.5 +4.151578947368421,4.15,a-exp-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2, 100.0 +3.9705263157894737,3.97,a-exp-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0, 94.3 +1.4989473684210526,1.5,a-exp-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4, 35.6 +4.071578947368421,4.07,a-exp-i3,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9, 96.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0, 100.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0, 86.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0, 92.3 +4.092631578947368,4.09,a-exp-i3,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0, 100.0 +4.0,4.0,a-exp-i3,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6, 95.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3, 100.0 +4.16421052631579,4.16,a-exp-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9, 98.9 +3.3684210526315788,3.37,a-exp-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0, 80.0 +3.5326315789473686,3.53,a-exp-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2, 83.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0, 97.4 +4.08,4.08,a-exp-i3,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5, 96.9 +1.431578947368421,1.43,a-exp-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8, 34.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7, 100.0 +4.037894736842105,4.04,a-exp-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6, 95.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8, 91.8 +3.8652631578947365,3.87,a-exp-i3,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0, 91.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3, 94.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0, 96.8 +3.9157894736842107,3.92,a-exp-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5, 93.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2, 96.3 +4.130526315789473,4.13,a-exp-i3,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6, 98.1 +4.07578947368421,4.08,a-exp-i3,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9, 96.8 +4.096842105263158,4.1,a-exp-i3,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0, 100.0 +3.818947368421053,3.82,a-exp-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8, 90.7 +4.008421052631579,4.01,a-exp-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2, 95.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2, 87.5 +4.07578947368421,4.08,a-exp-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6, 96.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7, 91.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0, 93.3 +4.16,4.16,a-exp-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3, 98.8 +4.067368421052631,4.07,a-exp-i3,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6, 96.6 +3.3684210526315788,3.37,a-exp-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0, 80.0 +2.808421052631579,2.81,a-exp-i3,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8, 66.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0, 93.3 +4.07578947368421,4.08,a-exp-i3,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0, 96.8 +4.029473684210527,4.03,a-exp-i3,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5, 95.7 +3.8821052631578947,3.88,a-exp-i3,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4, 92.2 +3.477894736842105,3.48,a-exp-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8, 82.6 +3.9747368421052633,3.97,a-exp-i3,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9, 94.4 +2.972631578947368,2.97,a-exp-i3,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7, 70.6 +3.490526315789474,3.49,a-exp-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7, 82.9 +3.313684210526316,3.31,a-exp-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7, 78.7 +4.16421052631579,4.16,a-exp-i3,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9, 98.9 +3.8694736842105266,3.87,a-exp-i3,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8, 92.9 +3.6757894736842105,3.68,a-exp-i3,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7, 87.3 +3.4694736842105267,3.47,a-exp-i3,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4, 82.4 NA,NA,a-exp-i3,2022-23,Boston - Carter School,00350036, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7,"" -NA,NA,a-exp-i3,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9,"" -NA,NA,a-exp-i3,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4,"" -NA,NA,a-exp-i3,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4,"" -NA,NA,a-exp-i3,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2,"" -NA,NA,a-exp-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2,"" -NA,NA,a-exp-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0,"" -NA,NA,a-exp-i3,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5,"" -NA,NA,a-exp-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0,"" -NA,NA,a-exp-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7,"" -NA,NA,a-exp-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9,"" -NA,NA,a-exp-i3,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6,"" -NA,NA,a-exp-i3,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1,"" -NA,NA,a-exp-i3,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2,"" -NA,NA,a-exp-i3,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3,"" -NA,NA,a-exp-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0,"" -NA,NA,a-exp-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3,"" -NA,NA,a-exp-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2,"" -NA,NA,a-exp-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4,"" -NA,NA,a-exp-i3,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9,"" -NA,NA,a-exp-i3,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5,"" -NA,NA,a-exp-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2,"" -NA,NA,a-exp-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3,"" -NA,NA,a-exp-i3,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7,"" -NA,NA,a-exp-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0,"" -NA,NA,a-exp-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2,"" -NA,NA,a-exp-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8,"" -NA,NA,a-exp-i3,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4,"" -NA,NA,a-exp-i3,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5,"" -NA,NA,a-exp-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1,"" -NA,NA,a-exp-i3,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8,"" -NA,NA,a-exp-i3,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4,"" -NA,NA,a-exp-i3,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7,"" -NA,NA,a-exp-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6,"" -NA,NA,a-exp-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3,"" -NA,NA,a-exp-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5,"" -NA,NA,a-exp-i3,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1,"" -NA,NA,a-exp-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4,"" -NA,NA,a-exp-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1,"" -NA,NA,a-exp-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5,"" -NA,NA,a-exp-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9,"" -NA,NA,a-exp-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0,"" -NA,NA,a-exp-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0,"" -NA,NA,a-exp-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2,"" -NA,NA,a-exp-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8,"" -NA,NA,a-exp-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6,"" -NA,NA,a-exp-i3,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8,"" -NA,NA,a-exp-i3,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5,"" -NA,NA,a-exp-i3,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4,"" -NA,NA,a-exp-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3,"" -NA,NA,a-exp-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1,"" -NA,NA,a-exp-i3,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7,"" -NA,NA,a-exp-i3,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1,"" -NA,NA,a-exp-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3,"" -NA,NA,a-exp-i3,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3,"" -NA,NA,a-exp-i3,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7,"" -NA,NA,a-exp-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0,"" -NA,NA,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3,"" -NA,NA,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7,"" -NA,NA,a-exp-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9,"" -NA,NA,a-exp-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3,"" -NA,NA,a-exp-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6,"" -NA,NA,a-exp-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1,"" -NA,NA,a-exp-i3,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5,"" -NA,NA,a-exp-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3,"" -NA,NA,a-exp-i3,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4,"" -NA,NA,a-exp-i3,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4,"" -NA,NA,a-exp-i3,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5,"" -NA,NA,a-exp-i3,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1,"" -NA,NA,a-exp-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5,"" -NA,NA,a-exp-i3,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9,"" -NA,NA,a-exp-i3,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1,"" -NA,NA,a-exp-i3,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7,"" -NA,NA,a-exp-i3,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9,"" -NA,NA,a-exp-i3,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1,"" -NA,NA,a-exp-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5,"" -NA,NA,a-exp-i3,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8,"" -NA,NA,a-exp-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6,"" -NA,NA,a-exp-i3,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1,"" -NA,NA,a-exp-i3,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3,"" -NA,NA,a-exp-i3,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7,"" -NA,NA,a-exp-i3,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3,"" -NA,NA,a-exp-i3,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1,"" -NA,NA,a-exp-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0,"" -NA,NA,a-exp-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5,"" -NA,NA,a-exp-i3,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9,"" -NA,NA,a-exp-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0,"" +4.0,4.0,a-exp-i3,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2, 95.0 +3.4652631578947366,3.47,a-exp-i3,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0, 82.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0, 100.0 +2.4042105263157896,2.4,a-exp-i3,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0, 57.1 +3.1031578947368423,3.1,a-exp-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0, 73.7 +3.7726315789473683,3.77,a-exp-i3,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5, 89.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7, 100.0 +3.9073684210526314,3.91,a-exp-i3,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9, 92.8 +3.5199999999999996,3.52,a-exp-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3, 83.6 +3.7305263157894735,3.73,a-exp-i3,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7, 88.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9, 87.5 +3.4947368421052634,3.49,a-exp-i3,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8, 83.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2, 91.2 +3.983157894736842,3.98,a-exp-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2, 94.6 +3.654736842105263,3.65,a-exp-i3,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4, 86.8 +3.987368421052632,3.99,a-exp-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0, 94.7 +3.1242105263157898,3.12,a-exp-i3,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6, 74.2 +4.0336842105263155,4.03,a-exp-i3,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5, 95.8 +3.2042105263157894,3.2,a-exp-i3,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5, 76.1 +2.6989473684210523,2.7,a-exp-i3,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7, 64.1 +3.5242105263157897,3.52,a-exp-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7, 83.7 +4.092631578947368,4.09,a-exp-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7, 97.2 +2.7073684210526316,2.71,a-exp-i3,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0, 64.3 +3.8400000000000003,3.84,a-exp-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2, 91.2 +3.8610526315789473,3.86,a-exp-i3,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0, 92.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0, 93.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0, 97.5 +3.7136842105263157,3.71,a-exp-i3,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9, 88.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7, 100.0 +3.595789473684211,3.6,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4, 85.4 +3.8273684210526318,3.83,a-exp-i3,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1, 90.9 +3.92,3.92,a-exp-i3,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0, 93.1 +2.8968421052631577,2.9,a-exp-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0, 68.8 +3.705263157894737,3.71,a-exp-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2, 88.0 +3.768421052631579,3.77,a-exp-i3,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1, 89.5 +3.322105263157895,3.32,a-exp-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0, 78.9 +4.050526315789474,4.05,a-exp-i3,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1, 96.2 +3.444210526315789,3.44,a-exp-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0, 81.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0, 97.8 +3.781052631578947,3.78,a-exp-i3,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9, 89.8 +3.9747368421052633,3.97,a-exp-i3,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1, 94.4 +4.008421052631579,4.01,a-exp-i3,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5, 95.2 +3.76421052631579,3.76,a-exp-i3,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3, 89.4 +2.9473684210526314,2.95,a-exp-i3,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0, 70.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0, 88.9 +3.536842105263158,3.54,a-exp-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6, 84.0 +3.7136842105263157,3.71,a-exp-i3,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8, 88.2 +2.8968421052631577,2.9,a-exp-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6, 68.8 +3.650526315789474,3.65,a-exp-i3,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6, 86.7 +3.536842105263158,3.54,a-exp-i3,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5, 84.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7, 93.3 +4.134736842105263,4.13,a-exp-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4, 98.2 +3.890526315789474,3.89,a-exp-i3,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4, 92.4 +2.648421052631579,2.65,a-exp-i3,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5, 62.9 +3.431578947368421,3.43,a-exp-i3,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3, 81.5 +3.8526315789473684,3.85,a-exp-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0, 91.5 +4.029473684210527,4.03,a-exp-i3,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0, 95.7 +3.9242105263157896,3.92,a-exp-i3,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0, 93.2 +3.6168421052631583,3.62,a-exp-i3,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2, 85.9 +3.776842105263158,3.78,a-exp-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2, 89.7 +3.7263157894736842,3.73,a-exp-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9, 88.5 +4.046315789473684,4.05,a-exp-i3,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9, 96.1 +3.6252631578947367,3.63,a-exp-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6, 86.1 +3.608421052631579,3.61,a-exp-i3,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0, 85.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3, 95.5 +3.8273684210526318,3.83,a-exp-i3,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0, 90.9 +3.221052631578947,3.22,a-exp-i3,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4, 76.5 +4.021052631578947,4.02,a-exp-i3,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9, 95.5 +3.414736842105263,3.41,a-exp-i3,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6, 81.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0, 97.4 +4.07578947368421,4.08,a-exp-i3,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0, 96.8 +3.768421052631579,3.77,a-exp-i3,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0, 89.5 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3, 87.5 +4.050526315789474,4.05,a-exp-i3,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0, 96.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0, 87.5 +3.3978947368421055,3.4,a-exp-i3,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7, 80.7 +3.9705263157894737,3.97,a-exp-i3,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4, 94.3 +3.3431578947368426,3.34,a-exp-i3,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6, 79.4 +3.886315789473684,3.89,a-exp-i3,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3, 92.3 +3.76421052631579,3.76,a-exp-i3,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8, 89.4 +4.117894736842105,4.12,a-exp-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8, 97.8 +3.0063157894736845,3.01,a-exp-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8, 71.4 +3.6294736842105264,3.63,a-exp-i3,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0, 86.2 +3.886315789473684,3.89,a-exp-i3,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0, 92.3 +3.9494736842105262,3.95,a-exp-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5, 93.8 +2.2442105263157894,2.24,a-exp-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0, 53.3 +2.7326315789473687,2.73,a-exp-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2, 64.9 +3.3684210526315788,3.37,a-exp-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0, 80.0 +2.4,2.4,a-exp-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7, 57.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3, 93.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4, 92.1 +3.9747368421052633,3.97,a-exp-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1, 94.4 +3.9494736842105262,3.95,a-exp-i3,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3, 93.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0, 95.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6, 97.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0, 96.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2, 93.8 +3.8273684210526318,3.83,a-exp-i3,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0, 90.9 +4.08,4.08,a-exp-i3,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5, 96.9 +4.071578947368421,4.07,a-exp-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0, 96.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5, 88.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0, 100.0 +3.027368421052632,3.03,a-exp-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9, 71.9 +4.134736842105263,4.13,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4, 98.2 +4.16421052631579,4.16,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2, 98.9 +4.08421052631579,4.08,a-exp-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3, 96.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2, 85.7 +4.046315789473684,4.05,a-exp-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6, 96.1 +3.9242105263157896,3.92,a-exp-i3,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8, 93.2 +3.987368421052632,3.99,a-exp-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0, 94.7 +3.76,3.76,a-exp-i3,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9, 89.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0, 92.1 +3.6842105263157894,3.68,a-exp-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5, 87.5 +4.109473684210526,4.11,a-exp-i3,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0, 100.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4, 97.0 +3.734736842105263,3.73,a-exp-i3,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8, 88.7 +4.1557894736842105,4.16,a-exp-i3,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6, 98.7 +3.650526315789474,3.65,a-exp-i3,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0, 86.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5, 100.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8, 77.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6, 100.0 +4.147368421052631,4.15,a-exp-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0, 98.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1, 90.8 +4.067368421052631,4.07,a-exp-i3,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1, 96.6 +3.9115789473684215,3.91,a-exp-i3,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6, 92.9 +4.021052631578947,4.02,a-exp-i3,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2, 95.5 +3.650526315789474,3.65,a-exp-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3, 86.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2, 96.3 +3.6168421052631583,3.62,a-exp-i3,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6, 85.9 +4.058947368421053,4.06,a-exp-i3,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7, 96.4 +1.528421052631579,1.53,a-exp-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0, 36.3 +3.886315789473684,3.89,a-exp-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0, 100.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0, 100.0 +3.995789473684211,4.0,a-exp-i3,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5, 94.9 +4.147368421052631,4.15,a-exp-i3,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2, 98.5 +4.046315789473684,4.05,a-exp-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5, 96.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8, 100.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4, 100.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2, 98.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0, 100.0 +3.92,3.92,a-exp-i3,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0, 93.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0, 100.0 +3.473684210526316,3.47,a-exp-i3,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9, 82.5 +4.00421052631579,4.0,a-exp-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2, 95.1 +3.8694736842105266,3.87,a-exp-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3, 97.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5, 100.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1, 97.3 +4.0884210526315785,4.09,a-exp-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5, 97.1 +3.928421052631579,3.93,a-exp-i3,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4, 93.3 +4.105263157894737,4.11,a-exp-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0, 97.5 +3.768421052631579,3.77,a-exp-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8, 89.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6, 97.1 +4.029473684210527,4.03,a-exp-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8, 95.7 +3.83578947368421,3.84,a-exp-i3,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0, 91.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6, 95.6 +2.4757894736842103,2.48,a-exp-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3, 58.8 +3.734736842105263,3.73,a-exp-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5, 88.7 +3.9326315789473685,3.93,a-exp-i3,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0, 93.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0, 94.8 +3.8063157894736843,3.81,a-exp-i3,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6, 90.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6, 92.3 +4.029473684210527,4.03,a-exp-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9, 97.1 +4.092631578947368,4.09,a-exp-i3,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0, 97.2 +3.957894736842105,3.96,a-exp-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3, 94.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0, 92.3 +4.021052631578947,4.02,a-exp-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0, 95.5 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0, 97.1 +3.9115789473684215,3.91,a-exp-i3,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0, 87.5 +3.8821052631578947,3.88,a-exp-i3,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2, 92.2 +4.00421052631579,4.0,a-exp-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6, 100.0 +3.8947368421052633,3.89,a-exp-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1, 92.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5, 92.5 +3.7431578947368425,3.74,a-exp-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7, 88.9 +3.92,3.92,a-exp-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4, 93.1 +4.092631578947368,4.09,a-exp-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1, 97.2 +3.789473684210526,3.79,a-exp-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8, 90.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7, 96.8 +3.789473684210526,3.79,a-exp-i3,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5, 90.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1, 98.7 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0, 97.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3, 93.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0, 96.6 +4.151578947368421,4.15,a-exp-i3,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0, 96.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7, 96.8 +4.021052631578947,4.02,a-exp-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0, 95.5 +3.9494736842105262,3.95,a-exp-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5, 93.8 +3.0526315789473686,3.05,a-exp-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9, 72.5 +2.046315789473684,2.05,a-exp-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0, 48.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4, 94.1 +4.151578947368421,4.15,a-exp-i3,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5, 98.6 +4.050526315789474,4.05,a-exp-i3,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0, 96.2 +3.957894736842105,3.96,a-exp-i3,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0, 94.0 +2.0673684210526315,2.07,a-exp-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9, 49.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0, 100.0 +1.5957894736842104,1.6,a-exp-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2, 37.9 +2.1052631578947367,2.11,a-exp-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8, 50.0 +1.8105263157894738,1.81,a-exp-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6, 43.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3, 94.2 +2.037894736842105,2.04,a-exp-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5, 48.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3, 93.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0, 92.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5, 100.0 +4.134736842105263,4.13,a-exp-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0, 100.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0, 97.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3, 94.4 +4.138947368421053,4.14,a-exp-i3,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8, 98.3 +4.054736842105263,4.05,a-exp-i3,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0, 96.3 +4.067368421052631,4.07,a-exp-i3,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0, 96.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0, 100.0 +3.8442105263157895,3.84,a-exp-i3,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7, 91.3 +3.8694736842105266,3.87,a-exp-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0, 91.9 +4.126315789473685,4.13,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8, 93.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0, 96.6 +4.025263157894736,4.03,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4, 95.6 +3.9242105263157896,3.92,a-exp-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3, 93.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1, 92.3 +4.050526315789474,4.05,a-exp-i3,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4, 96.2 +3.987368421052632,3.99,a-exp-i3,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0, 100.0 +3.9073684210526314,3.91,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3, 92.8 +4.130526315789473,4.13,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6, 95.6 +3.545263157894737,3.55,a-exp-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0, 84.2 +3.92,3.92,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0, 93.1 +4.126315789473685,4.13,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9, 98.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4, 96.6 +4.117894736842105,4.12,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6, 97.8 +3.995789473684211,4.0,a-exp-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0, 94.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2, 100.0 +3.9789473684210526,3.98,a-exp-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5, 94.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4, 96.7 +4.138947368421053,4.14,a-exp-i3,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8, 98.6 +4.130526315789473,4.13,a-exp-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0, 98.1 +3.9157894736842107,3.92,a-exp-i3,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0, 93.0 +4.08421052631579,4.08,a-exp-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3, 100.0 +4.147368421052631,4.15,a-exp-i3,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4, 98.5 +4.117894736842105,4.12,a-exp-i3,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0, 100.0 +3.92,3.92,a-exp-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8, 93.1 +3.5789473684210527,3.58,a-exp-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5, 85.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1, 95.2 +3.903157894736842,3.9,a-exp-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5, 92.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7, 95.5 +3.831578947368421,3.83,a-exp-i3,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9, 91.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3, 95.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3, 90.8 +3.8021052631578947,3.8,a-exp-i3,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1, 90.3 +3.8273684210526318,3.83,a-exp-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3, 90.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8, 92.3 +2.1642105263157894,2.16,a-exp-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1, 51.4 +4.071578947368421,4.07,a-exp-i3,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4, 96.7 +3.7010526315789476,3.7,a-exp-i3,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9, 87.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5, 100.0 +3.5789473684210527,3.58,a-exp-i3,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8, 85.0 +3.4021052631578947,3.4,a-exp-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0, 80.8 +3.6842105263157894,3.68,a-exp-i3,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0, 87.5 +3.0989473684210522,3.1,a-exp-i3,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6, 73.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1, 100.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0, 86.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2, 87.5 +3.6210526315789475,3.62,a-exp-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2, 86.0 +3.528421052631579,3.53,a-exp-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3, 83.8 +3.3557894736842107,3.36,a-exp-i3,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9, 79.7 +3.5199999999999996,3.52,a-exp-i3,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9, 83.6 +2.176842105263158,2.18,a-exp-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2, 51.7 +3.545263157894737,3.55,a-exp-i3,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9, 84.2 +3.953684210526316,3.95,a-exp-i3,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7, 93.9 +3.4694736842105267,3.47,a-exp-i3,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9, 82.4 +3.1747368421052635,3.17,a-exp-i3,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3, 75.4 +3.8821052631578947,3.88,a-exp-i3,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1, 92.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3, 86.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8, 97.9 +4.105263157894737,4.11,a-exp-i3,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7, 90.3 +4.046315789473684,4.05,a-exp-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0, 96.1 +3.877894736842105,3.88,a-exp-i3,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1, 92.1 +3.8273684210526318,3.83,a-exp-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0, 90.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9, 97.1 +3.8652631578947365,3.87,a-exp-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6, 91.8 +4.138947368421053,4.14,a-exp-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5, 100.0 +3.5621052631578944,3.56,a-exp-i3,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9, 84.6 +2.037894736842105,2.04,a-exp-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1, 48.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9, 97.2 +4.0884210526315785,4.09,a-exp-i3,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0, 100.0 NA,NA,a-exp-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","" -NA,NA,a-exp-i3,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9,"" -NA,NA,a-exp-i3,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3,"" -NA,NA,a-exp-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4,"" -NA,NA,a-exp-i3,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1,"" -NA,NA,a-exp-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4,"" -NA,NA,a-exp-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5,"" -NA,NA,a-exp-i3,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5,"" -NA,NA,a-exp-i3,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6,"" -NA,NA,a-exp-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2,"" -NA,NA,a-exp-i3,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3,"" -NA,NA,a-exp-i3,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7,"" -NA,NA,a-exp-i3,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4,"" -NA,NA,a-exp-i3,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4,"" -NA,NA,a-exp-i3,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3,"" -NA,NA,a-exp-i3,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9,"" -NA,NA,a-exp-i3,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8,"" -NA,NA,a-exp-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0,"" -NA,NA,a-exp-i3,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1,"" -NA,NA,a-exp-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6,"" +3.3389473684210524,3.34,a-exp-i3,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0, 79.3 +3.444210526315789,3.44,a-exp-i3,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0, 81.8 +3.7178947368421054,3.72,a-exp-i3,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0, 88.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2, 100.0 +3.709473684210526,3.71,a-exp-i3,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9, 88.1 +3.663157894736842,3.66,a-exp-i3,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3, 87.0 +3.7726315789473683,3.77,a-exp-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4, 89.6 +4.122105263157895,4.12,a-exp-i3,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0, 97.9 +NA,NA,a-exp-i3,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0, 0.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1, 91.2 +3.8694736842105266,3.87,a-exp-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5, 95.5 +3.608421052631579,3.61,a-exp-i3,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6, 85.7 +2.5726315789473686,2.57,a-exp-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5, 61.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0, 100.0 +4.016842105263158,4.02,a-exp-i3,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5, 95.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2, 100.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0, 97.7 +3.6589473684210527,3.66,a-exp-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3, 86.9 +4.08,4.08,a-exp-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2, 96.9 +4.096842105263158,4.1,a-exp-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0, 100.0 +3.2884210526315787,3.29,a-exp-i3,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8, 78.1 +3.0063157894736845,3.01,a-exp-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0, 71.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7, 97.5 +3.7726315789473683,3.77,a-exp-i3,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6, 89.6 +4.029473684210527,4.03,a-exp-i3,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9, 100.0 +3.528421052631579,3.53,a-exp-i3,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8, 83.8 +3.3936842105263154,3.39,a-exp-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0, 80.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2, 94.1 +4.0,4.0,a-exp-i3,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7, 95.0 +3.431578947368421,3.43,a-exp-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6, 81.5 +4.130526315789473,4.13,a-exp-i3,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0, 100.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0, 85.7 +4.050526315789474,4.05,a-exp-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4, 96.2 +4.0,4.0,a-exp-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1, 100.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1, 88.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8, 100.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1, 93.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6, 100.0 NA,NA,a-exp-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7,"" -NA,NA,a-exp-i3,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5,"" -NA,NA,a-exp-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1,"" -NA,NA,a-exp-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2,"" -NA,NA,a-exp-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9,"" -NA,NA,a-exp-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1,"" -NA,NA,a-exp-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2,"" -NA,NA,a-exp-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0,"" -NA,NA,a-exp-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6,"" -NA,NA,a-exp-i3,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3,"" -NA,NA,a-exp-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6,"" -NA,NA,a-exp-i3,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5,"" -NA,NA,a-exp-i3,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7,"" -NA,NA,a-exp-i3,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6,"" -NA,NA,a-exp-i3,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6,"" -NA,NA,a-exp-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6,"" -NA,NA,a-exp-i3,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8,"" -NA,NA,a-exp-i3,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7,"" -NA,NA,a-exp-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1,"" -NA,NA,a-exp-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9,"" -NA,NA,a-exp-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5,"" -NA,NA,a-exp-i3,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8,"" -NA,NA,a-exp-i3,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7,"" -NA,NA,a-exp-i3,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9,"" -NA,NA,a-exp-i3,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4,"" -NA,NA,a-exp-i3,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2,"" -NA,NA,a-exp-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8,"" -NA,NA,a-exp-i3,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7,"" -NA,NA,a-exp-i3,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3,"" -NA,NA,a-exp-i3,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1,"" -NA,NA,a-exp-i3,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1,"" -NA,NA,a-exp-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5,"" -NA,NA,a-exp-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5,"" -NA,NA,a-exp-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4,"" -NA,NA,a-exp-i3,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9,"" -NA,NA,a-exp-i3,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6,"" -NA,NA,a-exp-i3,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5,"" -NA,NA,a-exp-i3,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1,"" -NA,NA,a-exp-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0,"" -NA,NA,a-exp-i3,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5,"" -NA,NA,a-exp-i3,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5,"" -NA,NA,a-exp-i3,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8,"" -NA,NA,a-exp-i3,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7,"" -NA,NA,a-exp-i3,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3,"" -NA,NA,a-exp-i3,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4,"" -NA,NA,a-exp-i3,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7,"" -NA,NA,a-exp-i3,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5,"" -NA,NA,a-exp-i3,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4,"" -NA,NA,a-exp-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7,"" -NA,NA,a-exp-i3,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2,"" +3.705263157894737,3.71,a-exp-i3,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7, 88.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5, 97.8 +4.134736842105263,4.13,a-exp-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1, 97.2 +3.9494736842105262,3.95,a-exp-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2, 93.8 +3.8526315789473684,3.85,a-exp-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9, 91.5 +3.7557894736842106,3.76,a-exp-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9, 89.2 +3.6884210526315786,3.69,a-exp-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1, 87.6 +4.012631578947368,4.01,a-exp-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2, 95.3 +3.9326315789473685,3.93,a-exp-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2, 93.4 +4.029473684210527,4.03,a-exp-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0, 95.7 +4.008421052631579,4.01,a-exp-i3,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4, 95.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6, 87.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1, 97.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6, 95.2 +4.063157894736842,4.06,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3, 96.5 +4.143157894736842,4.14,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3, 98.4 +3.8989473684210525,3.9,a-exp-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1, 92.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0, 100.0 +3.6294736842105264,3.63,a-exp-i3,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6, 86.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5, 94.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0, 100.0 +3.3684210526315788,3.37,a-exp-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3, 80.0 +2.8757894736842102,2.88,a-exp-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0, 68.3 +4.07578947368421,4.08,a-exp-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0, 98.1 +4.1557894736842105,4.16,a-exp-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6, 98.7 +3.789473684210526,3.79,a-exp-i3,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5, 90.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0, 97.3 +4.122105263157895,4.12,a-exp-i3,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7, 97.9 +4.147368421052631,4.15,a-exp-i3,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6, 98.5 +4.151578947368421,4.15,a-exp-i3,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6, 98.6 +3.848421052631579,3.85,a-exp-i3,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6, 91.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6, 95.2 +3.8442105263157895,3.84,a-exp-i3,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1, 91.3 +3.608421052631579,3.61,a-exp-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6, 100.0 +4.16,4.16,a-exp-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4, 98.8 +4.143157894736842,4.14,a-exp-i3,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3, 98.4 +4.130526315789473,4.13,a-exp-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0, 98.1 +3.8610526315789473,3.86,a-exp-i3,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2, 100.0 +1.4021052631578945,1.4,a-exp-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3, 33.3 +3.991578947368421,3.99,a-exp-i3,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8, 94.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5, 100.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0, 93.9 +4.008421052631579,4.01,a-exp-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7, 100.0 +1.6042105263157895,1.6,a-exp-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1, 38.1 +1.9284210526315788,1.93,a-exp-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9, 45.8 +2.863157894736842,2.86,a-exp-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5, 68.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0, 95.7 +4.126315789473685,4.13,a-exp-i3,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8, 98.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0, 94.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0, 96.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4, 94.8 +3.528421052631579,3.53,a-exp-i3,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7, 83.8 +3.663157894736842,3.66,a-exp-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0, 87.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8, 77.8 +3.705263157894737,3.71,a-exp-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0, 88.0 +3.254736842105263,3.25,a-exp-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7, 77.3 +2.1052631578947367,2.11,a-exp-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8, 50.0 +3.317894736842105,3.32,a-exp-i3,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2, 78.8 +3.414736842105263,3.41,a-exp-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9, 81.1 +3.6842105263157894,3.68,a-exp-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7, 87.5 +2.5052631578947366,2.51,a-exp-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6, 59.5 +3.768421052631579,3.77,a-exp-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7, 89.5 +2.808421052631579,2.81,a-exp-i3,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2, 66.7 +2.1642105263157894,2.16,a-exp-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4, 51.4 +3.9621052631578944,3.96,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0, 94.1 +3.8273684210526318,3.83,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1, 90.9 +3.8147368421052628,3.81,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3, 90.6 +4.029473684210527,4.03,a-exp-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3, 95.7 +3.957894736842105,3.96,a-exp-i3,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4, 94.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0, 100.0 +3.890526315789474,3.89,a-exp-i3,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9, 92.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3, 97.8 +3.557894736842105,3.56,a-exp-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3, 84.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7, 100.0 +3.8147368421052628,3.81,a-exp-i3,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3, 90.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1, 100.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4, 75.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0, 91.2 +4.113684210526316,4.11,a-exp-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9, 97.7 +4.1010526315789475,4.1,a-exp-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5, 100.0 +1.936842105263158,1.94,a-exp-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5, 46.0 +1.6463157894736842,1.65,a-exp-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4, 39.1 +4.067368421052631,4.07,a-exp-i3,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5, 96.6 +4.021052631578947,4.02,a-exp-i3,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9, 95.5 +4.092631578947368,4.09,a-exp-i3,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6, 100.0 +2.9642105263157896,2.96,a-exp-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7, 70.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0, 100.0 +3.221052631578947,3.22,a-exp-i3,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7, 76.5 +3.957894736842105,3.96,a-exp-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3, 94.0 +3.553684210526316,3.55,a-exp-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1, 84.4 +4.012631578947368,4.01,a-exp-i3,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3, 95.3 +3.7557894736842106,3.76,a-exp-i3,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8, 89.2 +3.663157894736842,3.66,a-exp-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8, 87.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5, 77.8 +3.768421052631579,3.77,a-exp-i3,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8, 89.5 +3.8610526315789473,3.86,a-exp-i3,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1, 91.7 +3.705263157894737,3.71,a-exp-i3,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9, 88.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8, 85.7 +3.9115789473684215,3.91,a-exp-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6, 92.9 +3.768421052631579,3.77,a-exp-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0, 89.5 +3.1326315789473687,3.13,a-exp-i3,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7, 74.4 +3.0778947368421052,3.08,a-exp-i3,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4, 73.1 +2.8968421052631577,2.9,a-exp-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3, 68.8 +3.5326315789473686,3.53,a-exp-i3,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1, 83.9 +3.8105263157894735,3.81,a-exp-i3,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9, 90.5 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0, 71.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0, 100.0 +3.2126315789473683,3.21,a-exp-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9, 76.3 +3.991578947368421,3.99,a-exp-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2, 94.8 +3.490526315789474,3.49,a-exp-i3,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0, 82.9 +3.6336842105263156,3.63,a-exp-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1, 86.3 +4.08,4.08,a-exp-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5, 100.0 +3.5073684210526315,3.51,a-exp-i3,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0, 83.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5, 96.8 +3.9663157894736845,3.97,a-exp-i3,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8, 94.2 +3.776842105263158,3.78,a-exp-i3,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0, 89.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0, 100.0 +3.3305263157894736,3.33,a-exp-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7, 79.1 +4.122105263157895,4.12,a-exp-i3,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3, 97.9 +4.109473684210526,4.11,a-exp-i3,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0, 100.0 +2.526315789473684,2.53,a-exp-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1, 60.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1, 98.1 +3.789473684210526,3.79,a-exp-i3,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0, 90.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0, 97.5 +4.071578947368421,4.07,a-exp-i3,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0, 97.8 +4.117894736842105,4.12,a-exp-i3,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4, 97.8 +4.16421052631579,4.16,a-exp-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9, 96.1 +4.143157894736842,4.14,a-exp-i3,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1, 98.4 +4.0,4.0,a-exp-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2, 95.0 NA,NA,a-exp-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 45.2, 65.2, 9.1 to 1, 24.9, 93.4,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1,"" -NA,NA,a-exp-i3,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6,"" -NA,NA,a-exp-i3,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3,"" -NA,NA,a-exp-i3,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2,"" -NA,NA,a-exp-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4,"" -NA,NA,a-exp-i3,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0,"" -NA,NA,a-exp-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5,"" -NA,NA,a-exp-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6,"" -NA,NA,a-exp-i3,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7,"" -NA,NA,a-exp-i3,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4,"" -NA,NA,a-exp-i3,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4,"" -NA,NA,a-exp-i3,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4,"" -NA,NA,a-exp-i3,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3,"" -NA,NA,a-exp-i3,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5,"" -NA,NA,a-exp-i3,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2,"" -NA,NA,a-exp-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7,"" -NA,NA,a-exp-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8,"" -NA,NA,a-exp-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0,"" -NA,NA,a-exp-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5,"" -NA,NA,a-exp-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9,"" -NA,NA,a-exp-i3,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9,"" -NA,NA,a-exp-i3,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9,"" -NA,NA,a-exp-i3,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0,"" -NA,NA,a-exp-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9,"" -NA,NA,a-exp-i3,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7,"" -NA,NA,a-exp-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7,"" -NA,NA,a-exp-i3,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5,"" -NA,NA,a-exp-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1,"" -NA,NA,a-exp-i3,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4,"" -NA,NA,a-exp-i3,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8,"" -NA,NA,a-exp-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1,"" -NA,NA,a-exp-i3,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9,"" -NA,NA,a-exp-i3,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6,"" -NA,NA,a-exp-i3,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9,"" -NA,NA,a-exp-i3,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8,"" -NA,NA,a-exp-i3,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8,"" -NA,NA,a-exp-i3,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2,"" -NA,NA,a-exp-i3,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5,"" -NA,NA,a-exp-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4,"" -NA,NA,a-exp-i3,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7,"" -NA,NA,a-exp-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9,"" -NA,NA,a-exp-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7,"" -NA,NA,a-exp-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7,"" -NA,NA,a-exp-i3,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6,"" -NA,NA,a-exp-i3,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8,"" -NA,NA,a-exp-i3,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6,"" -NA,NA,a-exp-i3,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5,"" -NA,NA,a-exp-i3,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4,"" -NA,NA,a-exp-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5,"" -NA,NA,a-exp-i3,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5,"" -NA,NA,a-exp-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6,"" -NA,NA,a-exp-i3,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2,"" -NA,NA,a-exp-i3,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4,"" -NA,NA,a-exp-i3,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1,"" -NA,NA,a-exp-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3,"" -NA,NA,a-exp-i3,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0,"" -NA,NA,a-exp-i3,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5,"" -NA,NA,a-exp-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8,"" -NA,NA,a-exp-i3,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1,"" -NA,NA,a-exp-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0,"" -NA,NA,a-exp-i3,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8,"" -NA,NA,a-exp-i3,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2,"" -NA,NA,a-exp-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9,"" -NA,NA,a-exp-i3,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7,"" -NA,NA,a-exp-i3,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7,"" -NA,NA,a-exp-i3,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1,"" -NA,NA,a-exp-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8,"" -NA,NA,a-exp-i3,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3,"" -NA,NA,a-exp-i3,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2,"" -NA,NA,a-exp-i3,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3,"" -NA,NA,a-exp-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7,"" -NA,NA,a-exp-i3,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0,"" -NA,NA,a-exp-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8,"" -NA,NA,a-exp-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7,"" -NA,NA,a-exp-i3,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7,"" -NA,NA,a-exp-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4,"" -NA,NA,a-exp-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1,"" -NA,NA,a-exp-i3,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0,"" -NA,NA,a-exp-i3,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2,"" -NA,NA,a-exp-i3,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8,"" -NA,NA,a-exp-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2,"" -NA,NA,a-exp-i3,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0,"" -NA,NA,a-exp-i3,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4,"" -NA,NA,a-exp-i3,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8,"" -NA,NA,a-exp-i3,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9,"" -NA,NA,a-exp-i3,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6,"" -NA,NA,a-exp-i3,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4,"" -NA,NA,a-exp-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2,"" -NA,NA,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6,"" -NA,NA,a-exp-i3,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4,"" -NA,NA,a-exp-i3,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1,"" -NA,NA,a-exp-i3,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7,"" -NA,NA,a-exp-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2,"" +4.2105263157894735,4.21,a-exp-i3,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9, 100.0 +3.9705263157894737,3.97,a-exp-i3,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0, 94.3 +4.021052631578947,4.02,a-exp-i3,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6, 95.5 +4.122105263157895,4.12,a-exp-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1, 97.9 +3.83578947368421,3.84,a-exp-i3,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6, 91.1 +4.067368421052631,4.07,a-exp-i3,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3, 96.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2, 100.0 +3.848421052631579,3.85,a-exp-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0, 91.4 +3.8694736842105266,3.87,a-exp-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1, 91.9 +4.109473684210526,4.11,a-exp-i3,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3, 97.6 +4.0884210526315785,4.09,a-exp-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9, 97.1 +3.9663157894736845,3.97,a-exp-i3,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8, 94.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0, 95.2 +4.105263157894737,4.11,a-exp-i3,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0, 97.5 +3.776842105263158,3.78,a-exp-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6, 89.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3, 100.0 +3.903157894736842,3.9,a-exp-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9, 92.7 +3.9368421052631577,3.94,a-exp-i3,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0, 100.0 +3.2378947368421054,3.24,a-exp-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9, 76.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9, 97.4 +3.258947368421053,3.26,a-exp-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0, 77.4 +3.7726315789473683,3.77,a-exp-i3,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0, 89.6 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7, 94.6 +3.608421052631579,3.61,a-exp-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7, 100.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2, 75.0 +3.5031578947368422,3.5,a-exp-i3,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4, 83.2 +4.021052631578947,4.02,a-exp-i3,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0, 95.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0, 92.5 +4.092631578947368,4.09,a-exp-i3,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7, 97.2 +3.776842105263158,3.78,a-exp-i3,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9, 89.7 +3.823157894736842,3.82,a-exp-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7, 90.8 +3.983157894736842,3.98,a-exp-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0, 94.6 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7, 71.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5, 95.7 +2.526315789473684,2.53,a-exp-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6, 60.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2, 97.3 +3.8400000000000003,3.84,a-exp-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0, 91.2 +4.105263157894737,4.11,a-exp-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1, 97.5 +4.126315789473685,4.13,a-exp-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0, 98.0 +2.808421052631579,2.81,a-exp-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0, 66.7 +3.722105263157895,3.72,a-exp-i3,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0, 88.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3, 88.9 +3.650526315789474,3.65,a-exp-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3, 86.7 +3.5073684210526315,3.51,a-exp-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0, 83.3 +3.8947368421052633,3.89,a-exp-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1, 92.5 +4.008421052631579,4.01,a-exp-i3,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0, 95.2 +3.8821052631578947,3.88,a-exp-i3,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6, 92.2 +3.8021052631578947,3.8,a-exp-i3,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0, 90.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8, 92.9 +3.823157894736842,3.82,a-exp-i3,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6, 90.8 +4.071578947368421,4.07,a-exp-i3,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3, 96.7 +3.8021052631578947,3.8,a-exp-i3,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0, 100.0 +3.7978947368421054,3.8,a-exp-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9, 90.2 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7, 71.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7, 88.9 +4.143157894736842,4.14,a-exp-i3,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6, 98.4 +4.1010526315789475,4.1,a-exp-i3,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0, 100.0 +3.722105263157895,3.72,a-exp-i3,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8, 88.4 +3.5326315789473686,3.53,a-exp-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9, 83.9 +3.987368421052632,3.99,a-exp-i3,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4, 94.7 +3.5789473684210527,3.58,a-exp-i3,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1, 85.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2, 100.0 +3.490526315789474,3.49,a-exp-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8, 82.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8, 97.7 +1.5326315789473683,1.53,a-exp-i3,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2, 36.4 +3.414736842105263,3.41,a-exp-i3,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7, 81.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7, 100.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0, 98.3 +4.058947368421053,4.06,a-exp-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0, 98.6 +4.092631578947368,4.09,a-exp-i3,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4, 92.1 +4.029473684210527,4.03,a-exp-i3,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0, 95.7 +4.109473684210526,4.11,a-exp-i3,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4, 97.6 +3.9073684210526314,3.91,a-exp-i3,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1, 92.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9, 100.0 +3.663157894736842,3.66,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6, 87.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +2.863157894736842,2.86,a-exp-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4, 68.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4, 95.6 +4.109473684210526,4.11,a-exp-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0, 100.0 +3.6378947368421053,3.64,a-exp-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3, 86.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0, 100.0 +4.168421052631579,4.17,a-exp-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0, 99.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7, 86.5 +3.8610526315789473,3.86,a-exp-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8, 91.7 +2.223157894736842,2.22,a-exp-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0, 52.8 +4.16421052631579,4.16,a-exp-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3, 98.9 +4.050526315789474,4.05,a-exp-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0, 100.0 +3.76,3.76,a-exp-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4, 89.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5, 97.4 +2.054736842105263,2.05,a-exp-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9, 48.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0, 100.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9, 91.7 +3.8947368421052633,3.89,a-exp-i3,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9, 92.5 +3.776842105263158,3.78,a-exp-i3,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1, 89.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3, 94.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2, 88.6 +4.113684210526316,4.11,a-exp-i3,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0, 97.7 +1.2042105263157896,1.2,a-exp-i3,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0, 28.6 +3.9115789473684215,3.91,a-exp-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0, 92.9 +3.781052631578947,3.78,a-exp-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0, 89.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9, 94.1 +3.751578947368421,3.75,a-exp-i3,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7, 89.1 +4.117894736842105,4.12,a-exp-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1, 96.3 +3.8147368421052628,3.81,a-exp-i3,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4, 90.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8, 90.5 +3.705263157894737,3.71,a-exp-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1, 88.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0, 94.7 +4.08421052631579,4.08,a-exp-i3,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0, 97.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9, 94.0 +3.768421052631579,3.77,a-exp-i3,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6, 89.5 +4.067368421052631,4.07,a-exp-i3,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0, 96.6 +4.058947368421053,4.06,a-exp-i3,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1, 96.4 +3.8989473684210525,3.9,a-exp-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0, 92.6 +3.3684210526315788,3.37,a-exp-i3,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0, 80.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2, 94.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9, 88.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8, 97.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1, 97.1 +4.042105263157895,4.04,a-exp-i3,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8, 96.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2, 90.9 +4.00421052631579,4.0,a-exp-i3,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0, 95.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5, 97.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4, 95.8 +4.08421052631579,4.08,a-exp-i3,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0, 100.0 +3.991578947368421,3.99,a-exp-i3,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7, 94.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3, 92.1 +4.113684210526316,4.11,a-exp-i3,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7, 95.8 +3.953684210526316,3.95,a-exp-i3,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7, 93.9 +3.8610526315789473,3.86,a-exp-i3,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0, 91.7 +NA,NA,a-exp-i3,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0, 0.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2, 93.9 +4.037894736842105,4.04,a-exp-i3,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6, 95.9 +4.134736842105263,4.13,a-exp-i3,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0, 98.2 +3.9663157894736845,3.97,a-exp-i3,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8, 94.2 +4.025263157894736,4.03,a-exp-i3,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1, 100.0 +4.00421052631579,4.0,a-exp-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2, 95.1 +3.9747368421052633,3.97,a-exp-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2, 94.4 +3.8610526315789473,3.86,a-exp-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1, 91.7 +3.696842105263158,3.7,a-exp-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8, 87.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8, 91.7 +4.0,4.0,a-exp-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0, 95.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8, 93.8 +4.021052631578947,4.02,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6, 100.0 +3.903157894736842,3.9,a-exp-i3,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0, 92.7 +3.9242105263157896,3.92,a-exp-i3,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5, 93.2 +3.9115789473684215,3.91,a-exp-i3,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6, 92.9 +3.8947368421052633,3.89,a-exp-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2, 92.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0, 86.5 +4.025263157894736,4.03,a-exp-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4, 95.6 +1.4821052631578948,1.48,a-exp-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5, 35.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3, 93.3 +3.9621052631578944,3.96,a-exp-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4, 94.1 +3.818947368421053,3.82,a-exp-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6, 90.7 +3.751578947368421,3.75,a-exp-i3,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5, 89.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8, 94.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0, 96.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2, 97.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0, 100.0 +4.037894736842105,4.04,a-exp-i3,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5, 95.9 +3.890526315789474,3.89,a-exp-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6, 92.4 +4.1010526315789475,4.1,a-exp-i3,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0, 100.0 +3.823157894736842,3.82,a-exp-i3,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4, 90.8 +4.008421052631579,4.01,a-exp-i3,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4, 95.2 +4.109473684210526,4.11,a-exp-i3,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1, 97.6 +4.134736842105263,4.13,a-exp-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0, 97.6 +4.105263157894737,4.11,a-exp-i3,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1, 97.5 +4.1557894736842105,4.16,a-exp-i3,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5, 96.4 +4.122105263157895,4.12,a-exp-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0, 100.0 +1.8442105263157893,1.84,a-exp-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6, 43.8 +4.0336842105263155,4.03,a-exp-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8, 95.8 +3.2842105263157895,3.28,a-exp-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4, 78.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0, 96.3 +4.07578947368421,4.08,a-exp-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3, 96.8 +3.886315789473684,3.89,a-exp-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1, 96.8 +3.8063157894736843,3.81,a-exp-i3,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7, 90.4 +4.109473684210526,4.11,a-exp-i3,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1, 97.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7, 94.1 +3.8526315789473684,3.85,a-exp-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8, 91.5 +3.6294736842105264,3.63,a-exp-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2, 86.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6, 100.0 +3.4694736842105267,3.47,a-exp-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0, 82.4 +3.789473684210526,3.79,a-exp-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8, 90.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1, 100.0 +3.2842105263157895,3.28,a-exp-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0, 78.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6, 97.6 +4.143157894736842,4.14,a-exp-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4, 98.4 +3.903157894736842,3.9,a-exp-i3,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0, 92.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9, 100.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8, 90.9 +3.9747368421052633,3.97,a-exp-i3,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0, 94.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5, 94.7 +4.050526315789474,4.05,a-exp-i3,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5, 96.2 +3.8610526315789473,3.86,a-exp-i3,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0, 91.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9, 96.6 +4.092631578947368,4.09,a-exp-i3,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0, 97.2 +3.5915789473684208,3.59,a-exp-i3,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0, 85.3 +3.6842105263157894,3.68,a-exp-i3,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0, 87.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4, 97.4 +3.953684210526316,3.95,a-exp-i3,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0, 93.9 +4.0,4.0,a-exp-i3,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0, 100.0 +4.012631578947368,4.01,a-exp-i3,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3, 95.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0, 94.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0, 95.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0, 96.3 +4.096842105263158,4.1,a-exp-i3,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0, 96.6 +3.8147368421052628,3.81,a-exp-i3,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2, 90.6 +4.07578947368421,4.08,a-exp-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0, 96.8 +3.221052631578947,3.22,a-exp-i3,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0, 76.5 +4.050526315789474,4.05,a-exp-i3,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0, 90.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7, 92.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8, 100.0 +4.105263157894737,4.11,a-exp-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0, 95.8 +4.0,4.0,a-exp-i3,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3, 95.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2, 93.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2, 96.3 +3.995789473684211,4.0,a-exp-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7, 94.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0, 97.1 +2.9473684210526314,2.95,a-exp-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0, 70.0 +4.126315789473685,4.13,a-exp-i3,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3, 96.8 +4.147368421052631,4.15,a-exp-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7, 98.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7, 100.0 +4.08,4.08,a-exp-i3,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0, 96.9 +4.054736842105263,4.05,a-exp-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0, 96.3 +4.138947368421053,4.14,a-exp-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8, 98.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7, 100.0 +3.9242105263157896,3.92,a-exp-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1, 93.2 +4.1557894736842105,4.16,a-exp-i3,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0, 98.7 +4.025263157894736,4.03,a-exp-i3,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4, 88.6 +3.9494736842105262,3.95,a-exp-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1, 93.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0, 97.1 +4.109473684210526,4.11,a-exp-i3,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4, 97.6 +4.058947368421053,4.06,a-exp-i3,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4, 95.7 +3.8652631578947365,3.87,a-exp-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3, 91.8 +4.008421052631579,4.01,a-exp-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2, 95.2 +4.058947368421053,4.06,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0, 96.4 +4.096842105263158,4.1,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0, 97.3 +3.5073684210526315,3.51,a-exp-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6, 83.3 +4.0336842105263155,4.03,a-exp-i3,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0, 100.0 +3.334736842105263,3.33,a-exp-i3,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7, 79.2 +4.122105263157895,4.12,a-exp-i3,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2, 100.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7, 98.4 +3.941052631578947,3.94,a-exp-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2, 93.6 NA,NA,a-exp-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","" -NA,NA,a-exp-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3,"" -NA,NA,a-exp-i3,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9,"" -NA,NA,a-exp-i3,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7,"" -NA,NA,a-exp-i3,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3,"" -NA,NA,a-exp-i3,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1,"" -NA,NA,a-exp-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6,"" -NA,NA,a-exp-i3,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4,"" -NA,NA,a-exp-i3,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2,"" -NA,NA,a-exp-i3,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7,"" -NA,NA,a-exp-i3,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6,"" -NA,NA,a-exp-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7,"" -NA,NA,a-exp-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5,"" -NA,NA,a-exp-i3,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9,"" -NA,NA,a-exp-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0,"" -NA,NA,a-exp-i3,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2,"" -NA,NA,a-exp-i3,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2,"" -NA,NA,a-exp-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6,"" -NA,NA,a-exp-i3,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6,"" -NA,NA,a-exp-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9,"" -NA,NA,a-exp-i3,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4,"" -NA,NA,a-exp-i3,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5,"" -NA,NA,a-exp-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7,"" -NA,NA,a-exp-i3,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1,"" -NA,NA,a-exp-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7,"" -NA,NA,a-exp-i3,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0,"" -NA,NA,a-exp-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4,"" -NA,NA,a-exp-i3,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5,"" -NA,NA,a-exp-i3,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4,"" -NA,NA,a-exp-i3,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6,"" -NA,NA,a-exp-i3,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4,"" -NA,NA,a-exp-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9,"" -NA,NA,a-exp-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3,"" -NA,NA,a-exp-i3,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6,"" -NA,NA,a-exp-i3,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4,"" -NA,NA,a-exp-i3,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9,"" -NA,NA,a-exp-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1,"" -NA,NA,a-exp-i3,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9,"" -NA,NA,a-exp-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6,"" -NA,NA,a-exp-i3,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7,"" -NA,NA,a-exp-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9,"" -NA,NA,a-exp-i3,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4,"" -NA,NA,a-exp-i3,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5,"" -NA,NA,a-exp-i3,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1,"" -NA,NA,a-exp-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1,"" -NA,NA,a-exp-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6,"" -NA,NA,a-exp-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7,"" -NA,NA,a-exp-i3,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4,"" -NA,NA,a-exp-i3,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4,"" -NA,NA,a-exp-i3,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8,"" -NA,NA,a-exp-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0,"" -NA,NA,a-exp-i3,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2,"" -NA,NA,a-exp-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2,"" -NA,NA,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7,"" -NA,NA,a-exp-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0,"" -NA,NA,a-exp-i3,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7,"" -NA,NA,a-exp-i3,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9,"" -NA,NA,a-exp-i3,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6,"" -NA,NA,a-exp-i3,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2,"" -NA,NA,a-exp-i3,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8,"" -NA,NA,a-exp-i3,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9,"" -NA,NA,a-exp-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5,"" -NA,NA,a-exp-i3,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4,"" -NA,NA,a-exp-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2,"" -NA,NA,a-exp-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2,"" -NA,NA,a-exp-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4,"" -NA,NA,a-exp-i3,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4,"" -NA,NA,a-exp-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6,"" -NA,NA,a-exp-i3,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3,"" -NA,NA,a-exp-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4,"" -NA,NA,a-exp-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1,"" -NA,NA,a-exp-i3,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2,"" -NA,NA,a-exp-i3,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8,"" -NA,NA,a-exp-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2,"" -NA,NA,a-exp-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8,"" -NA,NA,a-exp-i3,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9,"" -NA,NA,a-exp-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5,"" -NA,NA,a-exp-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7,"" -NA,NA,a-exp-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7,"" -NA,NA,a-exp-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4,"" -NA,NA,a-exp-i3,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5,"" -NA,NA,a-exp-i3,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0,N/A, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0,N/A, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9,"" -NA,NA,a-exp-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5,"" -NA,NA,a-exp-i3,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1,"" -NA,NA,a-exp-i3,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7,"" -NA,NA,a-exp-i3,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5,"" -NA,NA,a-exp-i3,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6,"" -NA,NA,a-exp-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2,"" -NA,NA,a-exp-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2,"" -NA,NA,a-exp-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9,"" -NA,NA,a-exp-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5,"" -NA,NA,a-exp-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1,"" +4.2105263157894735,4.21,a-exp-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9, 94.1 +4.054736842105263,4.05,a-exp-i3,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7, 96.3 +4.054736842105263,4.05,a-exp-i3,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0, 100.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1, 90.9 +4.00421052631579,4.0,a-exp-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6, 95.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4, 94.7 +4.113684210526316,4.11,a-exp-i3,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4, 97.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2, 96.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7, 95.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0, 100.0 +3.848421052631579,3.85,a-exp-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0, 91.4 +4.021052631578947,4.02,a-exp-i3,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4, 100.0 +3.92,3.92,a-exp-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0, 93.1 +3.696842105263158,3.7,a-exp-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1, 87.8 +3.6336842105263156,3.63,a-exp-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8, 86.3 +3.2378947368421054,3.24,a-exp-i3,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0, 76.9 +1.806315789473684,1.81,a-exp-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0, 42.9 +2.265263157894737,2.27,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0, 53.8 +1.296842105263158,1.3,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6, 30.8 +3.002105263157895,3.0,a-exp-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7, 71.3 +2.5978947368421053,2.6,a-exp-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2, 61.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0, 100.0 +4.0,4.0,a-exp-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0, 95.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5, 88.9 +2.96,2.96,a-exp-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2, 70.3 +2.694736842105263,2.69,a-exp-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4, 64.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3, 100.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7, 91.2 +3.7431578947368425,3.74,a-exp-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6, 88.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9, 100.0 +3.44,3.44,a-exp-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1, 81.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1, 100.0 +3.7557894736842106,3.76,a-exp-i3,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9, 89.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0, 93.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1, 92.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0, 92.1 +3.427368421052632,3.43,a-exp-i3,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2, 81.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3, 85.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7, 95.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0, 96.6 +4.130526315789473,4.13,a-exp-i3,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0, 98.1 +4.0336842105263155,4.03,a-exp-i3,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0, 95.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0, 94.1 +4.16421052631579,4.16,a-exp-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0, 100.0 +4.172631578947368,4.17,a-exp-i3,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6, 99.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3, 97.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5, 94.7 +4.134736842105263,4.13,a-exp-i3,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9, 100.0 +2.863157894736842,2.86,a-exp-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0, 68.0 +3.5621052631578944,3.56,a-exp-i3,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0, 84.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8, 94.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2, 94.7 +2.1052631578947367,2.11,a-exp-i3,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0, 50.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9, 94.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7, 90.4 +3.8105263157894735,3.81,a-exp-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8, 90.5 +3.92,3.92,a-exp-i3,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0, 93.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0, 100.0 +3.4526315789473685,3.45,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8, 82.0 +3.6294736842105264,3.63,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2, 86.2 +4.029473684210527,4.03,a-exp-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0, 93.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0, 96.3 +4.109473684210526,4.11,a-exp-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0, 92.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9, 97.1 +4.130526315789473,4.13,a-exp-i3,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4, 98.1 +4.08421052631579,4.08,a-exp-i3,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8, 97.0 +4.08,4.08,a-exp-i3,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7, 92.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0, 96.4 +3.3263157894736843,3.33,a-exp-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8, 79.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7, 94.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0, 97.9 +4.071578947368421,4.07,a-exp-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0, 96.7 +3.7263157894736842,3.73,a-exp-i3,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6, 88.5 +3.781052631578947,3.78,a-exp-i3,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4, 89.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5, 88.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0, 92.9 +3.995789473684211,4.0,a-exp-i3,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4, 94.9 +4.0336842105263155,4.03,a-exp-i3,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3, 97.1 +3.9494736842105262,3.95,a-exp-i3,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1, 93.8 +4.08,4.08,a-exp-i3,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6, 96.9 +4.042105263157895,4.04,a-exp-i3,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0, 100.0 +3.8989473684210525,3.9,a-exp-i3,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9, 92.6 +3.9242105263157896,3.92,a-exp-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1, 93.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1, 100.0 +3.92,3.92,a-exp-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1, 93.1 +3.444210526315789,3.44,a-exp-i3,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2, 81.8 +3.305263157894737,3.31,a-exp-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9, 78.5 +2.863157894736842,2.86,a-exp-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6, 68.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0, 100.0 +4.134736842105263,4.13,a-exp-i3,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3, 98.2 +4.092631578947368,4.09,a-exp-i3,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1, 97.2 +3.5073684210526315,3.51,a-exp-i3,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8, 83.3 +3.928421052631579,3.93,a-exp-i3,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0, 93.3 +3.7431578947368425,3.74,a-exp-i3,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0, 88.9 +1.7389473684210526,1.74,a-exp-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3, 41.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0, 100.0 +3.541052631578947,3.54,a-exp-i3,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1, 84.1 +3.953684210526316,3.95,a-exp-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5, 93.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8, 87.5 +3.7431578947368425,3.74,a-exp-i3,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0, 88.9 +3.4989473684210526,3.5,a-exp-i3,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1, 83.1 +3.2757894736842106,3.28,a-exp-i3,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0, 77.8 +3.818947368421053,3.82,a-exp-i3,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3, 90.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1, 96.0 +2.214736842105263,2.21,a-exp-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0, 52.6 +3.76,3.76,a-exp-i3,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7, 89.3 +4.067368421052631,4.07,a-exp-i3,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2, 96.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1, 87.5 +4.058947368421053,4.06,a-exp-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1, 96.4 +3.9157894736842107,3.92,a-exp-i3,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0, 93.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1, 100.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0, 100.0 +3.83578947368421,3.84,a-exp-i3,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1, 91.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2, 97.2 +3.7936842105263158,3.79,a-exp-i3,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8, 90.1 +3.7978947368421054,3.8,a-exp-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0, 90.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7, 95.7 +4.117894736842105,4.12,a-exp-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0, 97.8 +4.042105263157895,4.04,a-exp-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7, 100.0 +4.08,4.08,a-exp-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5, 96.9 +3.9326315789473685,3.93,a-exp-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6, 93.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8, 100.0 +3.7263157894736842,3.73,a-exp-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2, 88.5 +3.987368421052632,3.99,a-exp-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2, 94.7 +4.122105263157895,4.12,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9, 97.9 +4.113684210526316,4.11,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7, 97.7 +2.7747368421052636,2.77,a-exp-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0, 65.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5, 97.1 +4.117894736842105,4.12,a-exp-i3,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6, 96.6 +3.9705263157894737,3.97,a-exp-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2, 94.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9, 92.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6, 93.5 +3.9747368421052633,3.97,a-exp-i3,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0, 94.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4, 96.4 +3.789473684210526,3.79,a-exp-i3,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6, 90.0 +2.454736842105263,2.45,a-exp-i3,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2, 58.3 +4.0,4.0,a-exp-i3,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0, 95.0 +1.1705263157894736,1.17,a-exp-i3,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8, 27.8 +3.9494736842105262,3.95,a-exp-i3,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9, 93.8 +3.9494736842105262,3.95,a-exp-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5, 93.8 +3.957894736842105,3.96,a-exp-i3,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4, 94.0 +4.021052631578947,4.02,a-exp-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2, 100.0 +3.6378947368421053,3.64,a-exp-i3,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4, 86.4 +4.025263157894736,4.03,a-exp-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2, 95.6 +3.0652631578947367,3.07,a-exp-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2, 72.8 +3.8442105263157895,3.84,a-exp-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4, 91.3 +4.008421052631579,4.01,a-exp-i3,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0, 95.2 +4.08,4.08,a-exp-i3,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6, 96.9 +3.751578947368421,3.75,a-exp-i3,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3, 89.1 +3.5073684210526315,3.51,a-exp-i3,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2, 83.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5, 96.7 +3.2757894736842106,3.28,a-exp-i3,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4, 77.8 +3.1326315789473687,3.13,a-exp-i3,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3, 74.4 +3.473684210526316,3.47,a-exp-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3, 82.5 +3.553684210526316,3.55,a-exp-i3,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3, 84.4 +3.945263157894737,3.95,a-exp-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3, 93.7 +4.029473684210527,4.03,a-exp-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0, 100.0 +4.172631578947368,4.17,a-exp-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0, 99.1 +4.0884210526315785,4.09,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2, 97.1 +4.134736842105263,4.13,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2, 98.2 +4.07578947368421,4.08,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0, 96.8 +3.4694736842105267,3.47,a-exp-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0, 82.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6, 96.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7, 91.7 +3.3684210526315788,3.37,a-exp-i3,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0, 80.0 +3.545263157894737,3.55,a-exp-i3,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9, 84.2 +2.526315789473684,2.53,a-exp-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9, 60.0 +3.221052631578947,3.22,a-exp-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3, 76.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5, 97.4 +3.2757894736842106,3.28,a-exp-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0, 77.8 +3.6378947368421053,3.64,a-exp-i3,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0, 86.4 +4.08,4.08,a-exp-i3,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6, 96.9 +1.8442105263157893,1.84,a-exp-i3,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3, 43.8 +3.3431578947368426,3.34,a-exp-i3,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3, 79.4 +4.008421052631579,4.01,a-exp-i3,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0, 95.2 +3.873684210526316,3.87,a-exp-i3,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5, 92.0 +NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0, 0.0 +NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0, 0.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9, 86.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3, 88.9 +3.9494736842105262,3.95,a-exp-i3,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7, 93.8 +3.2252631578947364,3.23,a-exp-i3,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8, 76.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9, 87.5 +3.6715789473684213,3.67,a-exp-i3,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9, 87.2 +2.3789473684210525,2.38,a-exp-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5, 56.5 +3.9494736842105262,3.95,a-exp-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7, 93.8 +2.833684210526316,2.83,a-exp-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3, 67.3 +3.0778947368421052,3.08,a-exp-i3,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7, 73.1 +3.5326315789473686,3.53,a-exp-i3,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2, 83.9 +2.9810526315789474,2.98,a-exp-i3,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8, 70.8 +3.2294736842105265,3.23,a-exp-i3,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7, 76.7 +3.886315789473684,3.89,a-exp-i3,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6, 92.3 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0, 85.7 +3.983157894736842,3.98,a-exp-i3,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9, 94.6 +4.0,4.0,a-exp-i3,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8, 95.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0, 96.3 +3.873684210526316,3.87,a-exp-i3,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7, 92.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8, 90.9 +3.928421052631579,3.93,a-exp-i3,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8, 93.3 +3.6378947368421053,3.64,a-exp-i3,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0, 86.4 +3.709473684210526,3.71,a-exp-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3, 88.1 +2.5473684210526315,2.55,a-exp-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6, 60.5 +3.7263157894736842,3.73,a-exp-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3, 88.5 +3.0610526315789475,3.06,a-exp-i3,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9, 72.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5, 96.3 +3.768421052631579,3.77,a-exp-i3,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3, 89.5 +3.583157894736842,3.58,a-exp-i3,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8, 85.1 +3.111578947368421,3.11,a-exp-i3,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4, 73.9 +3.663157894736842,3.66,a-exp-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2, 87.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0, 75.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3, 90.9 +2.3747368421052633,2.37,a-exp-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1, 56.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4, 85.7 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0, 90.9 +2.5726315789473686,2.57,a-exp-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9, 61.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4, 100.0 +1.6842105263157894,1.68,a-exp-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3, 40.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0, 75.0 +3.83578947368421,3.84,a-exp-i3,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2, 91.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0, 90.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4, 85.7 +3.5073684210526315,3.51,a-exp-i3,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7, 83.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3, 92.9 +3.663157894736842,3.66,a-exp-i3,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2, 87.0 +3.789473684210526,3.79,a-exp-i3,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5, 90.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9, 92.9 +2.4589473684210525,2.46,a-exp-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4, 58.4 +1.7178947368421051,1.72,a-exp-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9, 40.8 +4.042105263157895,4.04,a-exp-i3,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0, 96.0 +3.7136842105263157,3.71,a-exp-i3,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1, 88.2 +4.08,4.08,a-exp-i3,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2, 96.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8, 97.1 +4.016842105263158,4.02,a-exp-i3,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1, 95.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0, 88.9 +4.054736842105263,4.05,a-exp-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0, 96.6 +3.953684210526316,3.95,a-exp-i3,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8, 93.9 +4.092631578947368,4.09,a-exp-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9, 97.2 +1.84,1.84,a-exp-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2, 43.7 +4.012631578947368,4.01,a-exp-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2, 95.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0, 100.0 +3.8989473684210525,3.9,a-exp-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8, 92.6 +4.050526315789474,4.05,a-exp-i3,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9, 92.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8, 97.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0, 94.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9, 96.8 +3.957894736842105,3.96,a-exp-i3,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4, 94.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8, 95.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0, 95.5 +4.029473684210527,4.03,a-exp-i3,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1, 94.2 +3.953684210526316,3.95,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2, 93.9 +3.957894736842105,3.96,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3, 94.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0, 100.0 +4.126315789473685,4.13,a-exp-i3,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4, 98.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5, 100.0 +4.126315789473685,4.13,a-exp-i3,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3, 97.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6, 97.8 +4.122105263157895,4.12,a-exp-i3,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5, 94.1 +4.113684210526316,4.11,a-exp-i3,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1, 97.7 +4.105263157894737,4.11,a-exp-i3,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7, 97.5 +4.122105263157895,4.12,a-exp-i3,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3, 97.9 +3.92,3.92,a-exp-i3,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7, 93.1 +3.953684210526316,3.95,a-exp-i3,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5, 93.9 +4.0,4.0,a-exp-i3,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0, 95.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6, 98.4 +3.528421052631579,3.53,a-exp-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7, 83.8 +3.8947368421052633,3.89,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6, 92.5 +3.2126315789473683,3.21,a-exp-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2, 76.3 +3.5073684210526315,3.51,a-exp-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2, 83.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9, 92.9 +3.848421052631579,3.85,a-exp-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5, 91.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1, 85.7 NA,NA,a-exp-i3,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4,"" -NA,NA,a-exp-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5,"" -NA,NA,a-exp-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3,"" -NA,NA,a-exp-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6,"" -NA,NA,a-exp-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3,"" -NA,NA,a-exp-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0,"" -NA,NA,a-exp-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3,"" -NA,NA,a-exp-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2,"" -NA,NA,a-exp-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3,"" -NA,NA,a-exp-i3,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4,"" -NA,NA,a-exp-i3,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6,"" -NA,NA,a-exp-i3,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8,"" -NA,NA,a-exp-i3,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4,"" -NA,NA,a-exp-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5,"" -NA,NA,a-exp-i3,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8,"" -NA,NA,a-exp-i3,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4,"" -NA,NA,a-exp-i3,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0,"" -NA,NA,a-exp-i3,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2,"" -NA,NA,a-exp-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2,"" -NA,NA,a-exp-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8,"" -NA,NA,a-exp-i3,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3,"" -NA,NA,a-exp-i3,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1,"" -NA,NA,a-exp-i3,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5,"" -NA,NA,a-exp-i3,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6,"" -NA,NA,a-exp-i3,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6,"" -NA,NA,a-exp-i3,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9,"" -NA,NA,a-exp-i3,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9,"" -NA,NA,a-exp-i3,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8,"" -NA,NA,a-exp-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6,"" -NA,NA,a-exp-i3,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9,"" -NA,NA,a-exp-i3,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2,"" -NA,NA,a-exp-i3,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3,"" -NA,NA,a-exp-i3,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1,"" -NA,NA,a-exp-i3,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8,"" -NA,NA,a-exp-i3,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0,"" -NA,NA,a-exp-i3,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7,"" -NA,NA,a-exp-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6,"" -NA,NA,a-exp-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1,"" -NA,NA,a-exp-i3,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0,"" -NA,NA,a-exp-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4,"" -NA,NA,a-exp-i3,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6,"" -NA,NA,a-exp-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1,"" -NA,NA,a-exp-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9,"" -NA,NA,a-exp-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4,"" -NA,NA,a-exp-i3,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3,"" -NA,NA,a-exp-i3,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4,"" -NA,NA,a-exp-i3,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8,"" -NA,NA,a-exp-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1,"" -NA,NA,a-exp-i3,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9,"" -NA,NA,a-exp-i3,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1,"" -NA,NA,a-exp-i3,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4,"" -NA,NA,a-exp-i3,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9,"" -NA,NA,a-exp-i3,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0,"" -NA,NA,a-exp-i3,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0,"" -NA,NA,a-exp-i3,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0,"" +4.029473684210527,4.03,a-exp-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0, 95.7 +4.058947368421053,4.06,a-exp-i3,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4, 96.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5, 97.5 +1.8694736842105262,1.87,a-exp-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4, 44.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0, 100.0 +4.16421052631579,4.16,a-exp-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4, 97.6 +3.886315789473684,3.89,a-exp-i3,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0, 92.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0, 100.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4, 97.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0, 97.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4, 97.4 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0, 97.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1, 97.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6, 98.1 +4.042105263157895,4.04,a-exp-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5, 96.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3, 97.8 +4.08,4.08,a-exp-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0, 96.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1, 97.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8, 94.8 +4.113684210526316,4.11,a-exp-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0, 97.7 +4.0336842105263155,4.03,a-exp-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1, 95.8 +3.831578947368421,3.83,a-exp-i3,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3, 91.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4, 87.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4, 90.5 +4.113684210526316,4.11,a-exp-i3,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5, 97.7 +4.16,4.16,a-exp-i3,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6, 98.8 +4.029473684210527,4.03,a-exp-i3,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0, 95.7 +3.7305263157894735,3.73,a-exp-i3,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8, 88.6 +4.008421052631579,4.01,a-exp-i3,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3, 95.2 +4.046315789473684,4.05,a-exp-i3,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5, 95.5 +4.08,4.08,a-exp-i3,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8, 96.9 +4.008421052631579,4.01,a-exp-i3,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8, 94.2 +4.021052631578947,4.02,a-exp-i3,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9, 95.5 +4.0884210526315785,4.09,a-exp-i3,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5, 96.3 +4.00421052631579,4.0,a-exp-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0, 94.4 +4.021052631578947,4.02,a-exp-i3,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8, 95.5 +4.109473684210526,4.11,a-exp-i3,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1, 97.6 +4.067368421052631,4.07,a-exp-i3,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0, 96.6 +4.0336842105263155,4.03,a-exp-i3,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7, 95.8 +4.147368421052631,4.15,a-exp-i3,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5, 98.5 +4.058947368421053,4.06,a-exp-i3,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7, 95.2 +4.1010526315789475,4.1,a-exp-i3,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1, 93.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6, 100.0 +4.08,4.08,a-exp-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5, 96.9 +4.016842105263158,4.02,a-exp-i3,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6, 95.4 +4.0,4.0,a-exp-i3,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0, 96.8 +3.9115789473684215,3.91,a-exp-i3,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0, 100.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1, 91.7 +3.789473684210526,3.79,a-exp-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5, 90.0 +3.8442105263157895,3.84,a-exp-i3,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4, 91.3 +3.667368421052631,3.67,a-exp-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4, 87.1 +3.789473684210526,3.79,a-exp-i3,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9, 90.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0, 92.3 +3.781052631578947,3.78,a-exp-i3,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0, 89.8 +3.650526315789474,3.65,a-exp-i3,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0, 86.7 +3.8147368421052628,3.81,a-exp-i3,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0, 90.6 +3.642105263157895,3.64,a-exp-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0, 86.5 +3.8273684210526318,3.83,a-exp-i3,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0, 90.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0, 93.5 +4.042105263157895,4.04,a-exp-i3,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9, 96.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8, 98.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0, 95.8 +3.8821052631578947,3.88,a-exp-i3,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9, 92.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2, 93.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0, 96.7 +3.8610526315789473,3.86,a-exp-i3,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2, 91.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0, 100.0 +4.063157894736842,4.06,a-exp-i3,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3, 96.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0, 96.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0, 96.2 +4.042105263157895,4.04,a-exp-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0, 96.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0, 92.3 +4.050526315789474,4.05,a-exp-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7, 96.2 +4.172631578947368,4.17,a-exp-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4, 99.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0, 98.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0, 93.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3, 97.4 +4.0,4.0,a-exp-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7, 95.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6, 96.2 +3.9747368421052633,3.97,a-exp-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4, 94.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0, 85.7 +4.0336842105263155,4.03,a-exp-i3,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0, 95.8 +3.8947368421052633,3.89,a-exp-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0, 92.5 +3.9621052631578944,3.96,a-exp-i3,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0, 94.1 +4.0,4.0,a-exp-i3,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4, 95.0 +4.0,4.0,a-exp-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6, 95.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0, 95.2 +2.6315789473684212,2.63,a-exp-i3,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5, 62.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0, 96.2 +4.029473684210527,4.03,a-exp-i3,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5, 95.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5, 100.0 +3.9789473684210526,3.98,a-exp-i3,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7, 94.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0, 97.4 +4.012631578947368,4.01,a-exp-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2, 95.3 +4.113684210526316,4.11,a-exp-i3,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8, 97.7 +3.473684210526316,3.47,a-exp-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4, 82.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6, 97.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4, 91.8 +3.8105263157894735,3.81,a-exp-i3,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0, 90.5 +4.08,4.08,a-exp-i3,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3, 96.9 +3.6378947368421053,3.64,a-exp-i3,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0, 86.4 +4.07578947368421,4.08,a-exp-i3,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0, 96.8 +4.063157894736842,4.06,a-exp-i3,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6, 96.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3, 90.3 +3.7557894736842106,3.76,a-exp-i3,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7, 89.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8, 96.8 +3.8694736842105266,3.87,a-exp-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2, 91.9 +3.789473684210526,3.79,a-exp-i3,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2, 90.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5, 97.5 +3.6210526315789475,3.62,a-exp-i3,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3, 86.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6, 96.3 +4.0884210526315785,4.09,a-exp-i3,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3, 97.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2, 90.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3, 94.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0, 100.0 +3.941052631578947,3.94,a-exp-i3,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7, 93.6 +4.1010526315789475,4.1,a-exp-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2, 97.4 +3.776842105263158,3.78,a-exp-i3,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0, 89.7 +0.9136842105263158,1,a-exp-i3,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0, 21.7 +4.029473684210527,4.03,a-exp-i3,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5, 100.0 +3.663157894736842,3.66,a-exp-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1, 87.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3, 95.7 +3.8652631578947365,3.87,a-exp-i3,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0, 91.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7, 91.7 +4.138947368421053,4.14,a-exp-i3,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9, 98.3 +4.08421052631579,4.08,a-exp-i3,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0, 97.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1, 93.3 +3.68,3.68,a-exp-i3,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0, 87.4 +4.00421052631579,4.0,a-exp-i3,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0, 96.2 +4.08,4.08,a-exp-i3,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7, 96.9 +3.8273684210526318,3.83,a-exp-i3,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9, 90.9 +4.0,4.0,a-exp-i3,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3, 96.2 +3.8652631578947365,3.87,a-exp-i3,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7, 91.8 +3.9073684210526314,3.91,a-exp-i3,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0, 92.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0, 100.0 +NA,NA,a-exp-i3,2022-23,Tewksbury - Center Elementary School,02950030, 0.0, 0.0,N/A,"","","" diff --git a/data/dashboard/admin_data/dese/1A_3_staffing_retention.csv b/data/admin_data/dese/1A_3_staffing_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/1A_3_staffing_retention.csv rename to data/admin_data/dese/1A_3_staffing_retention.csv diff --git a/data/dashboard/admin_data/dese/1A_3_teachers_of_color.csv b/data/admin_data/dese/1A_3_teachers_of_color.csv similarity index 100% rename from data/dashboard/admin_data/dese/1A_3_teachers_of_color.csv rename to data/admin_data/dese/1A_3_teachers_of_color.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_disciplined.csv b/data/admin_data/dese/2A_1_students_disciplined.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_disciplined.csv rename to data/admin_data/dese/2A_1_students_disciplined.csv index 761dc64..e0e5f93 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_disciplined.csv +++ b/data/admin_data/dese/2A_1_students_disciplined.csv @@ -1,4 +1,1835 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Students,Students Disciplined,% 1 Day,% 2 to 3 Days,% 4 to 7 Days,% 8 to 10 Days,% > 10 Days +6.8,5,a-phys-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,451", 51, 1.0, 1.4, 0.8, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Abington - Abington Early Education Program,00010001, 104, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Abington - Abington High,00010505, 571, 34, 3.0, 2.1, 0.5, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Abington - Abington Middle School,00010405, 669, 46, 3.6, 1.9, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 537, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 344, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 487, 49, 5.1, 2.9, 1.0, 0.4, 0.6 +7.6,5,a-phys-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,702", 20, 0.2, 0.5, 0.2, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 518, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 396, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 126, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 419, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 464, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 358, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 840, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 563, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 418, 10, 0.5, 0.7, 1.2, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 973, 34, 1.4, 1.2, 0.3, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 185, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Agawam - Agawam High,00050505," 1,085", 76, 1.9, 2.0, 1.6, 0.9, 0.6 +7.2,5,a-phys-i3,2022-23,Agawam - Agawam Junior High,00050405, 547, 17, 0.2, 1.8, 0.9, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 328, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Agawam - Clifford M Granger,00050010, 345, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Agawam - James Clark School,00050030, 330, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 538, 8, 0.9, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Agawam - Robinson Park,00050025, 303, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205," 1,077", 121, 4.2, 3.3, 2.8, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 352, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury High,00070505, 467, 16, 1.9, 1.3, 0.0, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 59, 14, 11.9, 8.5, 3.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury Middle,00070013, 608, 14, 1.3, 0.7, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 409, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 376, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Fort River Elementary,00080020, 392, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Wildwood Elementary,00080050, 340, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 886, 16, 0.6, 0.1, 0.7, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 391, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Andover - Andover High,00090505," 1,731", 55, 0.4, 0.9, 0.8, 0.5, 0.6 +NA,NA,a-phys-i3,2022-23,Andover - Andover West Middle,00090310, 528, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Bancroft Elementary,00090003, 551, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Doherty Middle,00090305, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - High Plain Elementary,00090004, 552, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Shawsheen School,00090005, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - South Elementary,00090020, 457, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - West Elementary,00090025, 564, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Wood Hill Middle School,00090350, 349, 5,"","","","","" +-14.8,1,a-phys-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 577, 171, 7.6, 6.4, 8.5, 1.4, 5.7 +6.8,5,a-phys-i3,2022-23,Arlington - Arlington High,00100505," 1,558", 29, 0.2, 0.6, 0.6, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Arlington - Brackett,00100010, 430, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 424, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Gibbs School,00100305, 518, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Hardy,00100030, 413, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - John A Bishop,00100005, 411, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - M Norcross Stratton,00100055, 448, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Menotomy Preschool,00100038, 104, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Arlington - Ottoson Middle,00100410, 933, 23, 1.7, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Arlington - Peirce,00100045, 368, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Thompson,00100050, 524, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 538, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 201, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 664, 34, 0.3, 2.4, 1.7, 0.2, 0.6 +8.0,5,a-phys-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 553, 15, 1.8, 0.7, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 393, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Ashland - Ashland High,00140505, 860, 39, 1.6, 1.0, 0.8, 0.2, 0.8 +6.4,5,a-phys-i3,2022-23,Ashland - Ashland Middle,00140405, 704, 27, 1.6, 1.1, 0.6, 0.1, 0.4 +NA,NA,a-phys-i3,2022-23,Ashland - David Mindess,00140015, 672, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 668, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 91, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605," 1,135", 68, 2.6, 0.5, 2.6, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 634, 0,"","","","","" +-0.40000000000000036,1,a-phys-i3,2022-23,Athol-Royalston - Athol High,06150505, 424, 46, 1.4, 1.2, 4.0, 2.1, 2.1 +1.5999999999999996,1.6,a-phys-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 448, 65, 4.5, 3.1, 4.0, 1.3, 1.6 +NA,NA,a-phys-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 167, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550," 1,327", 155, 5.4, 2.7, 2.3, 0.5, 0.8 +NA,NA,a-phys-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 364, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 76, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Attleboro - Attleboro High,00160505," 1,906", 155, 2.3, 2.8, 1.8, 0.5, 0.8 +NA,NA,a-phys-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 52, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 650, 31, 3.1, 0.9, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Attleboro - Early Learning Center,00160008, 244, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 428, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 475, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 466, 11, 1.3, 0.9, 0.0, 0.2, 0.0 +6.8,5,a-phys-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 595, 30, 0.8, 2.7, 1.2, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 389, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 605, 32, 3.1, 1.7, 0.3, 0.2, 0.0 +5.6,5,a-phys-i3,2022-23,Auburn - Auburn Middle,00170305, 659, 22, 0.0, 1.7, 0.9, 0.2, 0.6 +2.0,2.0,a-phys-i3,2022-23,Auburn - Auburn Senior High,00170505, 874, 44, 0.3, 2.3, 0.3, 0.6, 1.5 +NA,NA,a-phys-i3,2022-23,Auburn - Bryn Mawr,00170010, 275, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Auburn - Pakachoag School,00170025, 248, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 565, 3,"","","","","" +5.6,5,a-phys-i3,2022-23,Avon - Avon Middle High School,00180510, 346, 39, 6.1, 2.3, 2.3, 0.0, 0.6 +NA,NA,a-phys-i3,2022-23,Avon - Ralph D Butler,00180010, 409, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 405, 6, 0.7, 0.7, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 382, 29, 3.7, 2.9, 1.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 360, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 566, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 298, 4,"","","","","" +0.0,1,a-phys-i3,2022-23,Barnstable - Barnstable High,00200505," 1,871", 196, 3.2, 2.9, 1.5, 0.9, 2.0 +6.4,5,a-phys-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 686, 51, 2.2, 3.1, 1.5, 0.3, 0.4 +6.8,5,a-phys-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 769, 9, 0.3, 0.1, 0.5, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Barnstable - Centerville Elementary,00200010, 266, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 203, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 377, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 280, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 408, 2,"","","","","" +-18.4,1,a-phys-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 427, 121, 2.8, 6.1, 7.0, 5.9, 6.6 +8.0,5,a-phys-i3,2022-23,Bedford - Bedford High,00230505, 862, 19, 0.1, 0.5, 0.8, 0.8, 0.0 +8.0,5,a-phys-i3,2022-23,Bedford - John Glenn Middle,00230305, 600, 21, 2.2, 0.7, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 537, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bedford - Lt Job Lane School,00230012, 593, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Belchertown - Belchertown High,00240505, 656, 7, 0.6, 0.3, 0.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 495, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Cold Spring,00240005, 206, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Jabish Middle School,00240025, 351, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Swift River Elementary,00240018, 487, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 124, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Bellingham - Bellingham High School,00250505, 760, 21, 0.0, 1.1, 1.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 606, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 309, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 34, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Stall Brook,00250025, 261, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Belmont - Belmont High,00260505," 1,380", 7, 0.2, 0.1, 0.1, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Belmont - Daniel Butler,00260015, 342, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 346, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Roger E Wellington,00260035, 580, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Winn Brook,00260005, 445, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305," 1,395", 20, 0.4, 0.7, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 335, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 880, 12, 1.1, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Berkley - Berkley Community School,00270010, 487, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Berkley - Berkley Middle School,00270305, 377, 21, 1.9, 3.2, 0.5, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 386, 27, 1.6, 1.8, 1.3, 1.6, 0.8 +8.0,5,a-phys-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 494, 26, 2.2, 2.2, 0.4, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 339, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 229, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 345, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 525, 8, 0.8, 0.4, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 397, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Beverly - Beverly High,00300505," 1,309", 75, 2.2, 2.3, 0.8, 0.2, 0.2 +7.6,5,a-phys-i3,2022-23,Beverly - Beverly Middle School,00300305," 1,401", 38, 1.0, 1.3, 0.2, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Beverly - Centerville Elementary,00300010, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - Cove Elementary,00300015, 440, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - Hannah Elementary,00300033, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - McKeown School,00300002, 165, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - North Beverly Elementary,00300040, 357, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Billerica - Billerica Memorial High School,00310505," 1,847", 57, 0.1, 0.7, 1.4, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Billerica - Frederick J Dutile,00310007, 299, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - Hajjar Elementary,00310026, 392, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - John F Kennedy,00310012, 315, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Billerica - Locke Middle,00310310, 554, 19, 1.3, 1.6, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Billerica - Marshall Middle School,00310305, 623, 16, 1.4, 0.6, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Billerica - Parker,00310015, 442, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - Thomas Ditson,00310005, 570, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605," 1,238", 39, 0.1, 0.4, 1.8, 0.6, 0.2 +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 265, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 440, 24, 2.0, 0.9, 1.4, 0.9, 0.2 +8.0,5,a-phys-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 377, 30, 2.1, 4.2, 1.1, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 116, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 397, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 924, 26, 1.1, 1.1, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Adams Elementary School,00350302, 277, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 109, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Boston - Another Course To College,00350541, 296, 52, 3.7, 6.4, 3.7, 1.7, 2.0 +NA,NA,a-phys-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 194, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Bates Elementary School,00350278, 300, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Beethoven Elementary School,00350021, 313, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Blackstone Elementary School,00350390, 658, 12, 0.9, 0.9, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 252, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Boston Arts Academy,00350546, 496, 12, 0.6, 0.6, 1.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Boston - Boston Collaborative High School,00350755, 333, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 690, 72, 1.4, 5.7, 2.8, 0.1, 0.4 +7.2,5,a-phys-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 630, 10, 0.2, 0.5, 0.5, 0.3, 0.2 +7.2,5,a-phys-i3,2022-23,Boston - Boston Latin Academy,00350545," 1,728", 43, 0.7, 1.1, 0.3, 0.1, 0.2 +7.6,5,a-phys-i3,2022-23,Boston - Boston Latin School,00350560," 2,427", 34, 0.9, 0.2, 0.0, 0.1, 0.1 +6.8,5,a-phys-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 340, 15, 1.8, 2.1, 0.3, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Boston - Bradley Elementary School,00350215, 301, 0,"","","","","" +2.0,2.0,a-phys-i3,2022-23,Boston - Brighton High School,00350505, 736, 125, 1.9, 4.8, 6.1, 2.7, 1.5 +8.0,5,a-phys-i3,2022-23,Boston - Burke High School,00350525, 500, 23, 0.2, 1.8, 2.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Carter School,00350036, 31, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Channing Elementary School,00350360, 236, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Charlestown High School,00350515, 929, 28, 0.6, 2.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Chittick Elementary School,00350154, 259, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Clap Elementary School,00350298, 124, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Community Academy,00350518, 77, 28, 6.5, 15.6, 10.4, 3.9, 0.0 +6.8,5,a-phys-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 394, 48, 0.5, 7.4, 3.6, 0.5, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Condon K-8 School,00350146, 725, 9, 0.4, 0.4, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Conley Elementary School,00350122, 173, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Curley K-8 School,00350020, 994, 21, 0.5, 1.3, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 617, 44, 1.6, 4.5, 0.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Dever Elementary School,00350268, 455, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - East Boston Early Education Center,00350009, 198, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - East Boston High School,00350530," 1,396", 52, 0.2, 2.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Edison K-8 School,00350375, 690, 13, 0.1, 1.2, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 854, 8, 0.0, 0.7, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Ellis Elementary School,00350072, 394, 11, 1.0, 1.0, 0.3, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 215, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Boston - English High School,00350535, 749, 103, 3.2, 4.8, 4.3, 1.3, 0.1 +NA,NA,a-phys-i3,2022-23,Boston - Everett Elementary School,00350088, 313, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Boston - Excel High School,00350522, 513, 69, 1.9, 6.8, 3.5, 0.6, 0.6 +6.0,5,a-phys-i3,2022-23,Boston - Fenway High School,00350540, 386, 18, 1.3, 1.3, 0.8, 0.8, 0.5 +6.8,5,a-phys-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 387, 19, 1.8, 2.1, 0.8, 0.0, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 399, 13, 1.5, 0.8, 0.8, 0.3, 0.0 +4.8,4.8,a-phys-i3,2022-23,Boston - Greater Egleston High School,00350543, 124, 7, 0.8, 3.2, 0.8, 0.0, 0.8 +8.0,5,a-phys-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 418, 14, 0.2, 2.6, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Grew Elementary School,00350135, 234, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Guild Elementary School,00350062, 277, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Hale Elementary School,00350243, 185, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Haley Pilot School,00350077, 418, 22, 2.4, 1.4, 1.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 382, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Haynes Early Education Center,00350010, 235, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 230, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 760, 60, 2.0, 3.4, 1.3, 0.7, 0.5 +8.0,5,a-phys-i3,2022-23,Boston - Hennigan K-8 School,00350153, 634, 13, 0.5, 1.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Hernandez K-8 School,00350691, 438, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 144, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 205, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Holmes Elementary School,00350138, 320, 7, 1.3, 0.3, 0.3, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 78, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Hurley K-8 School,00350182, 373, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 432, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 287, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kenny Elementary School,00350328, 371, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Kilmer K-8 School,00350190, 421, 9, 1.0, 1.0, 0.0, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - King Elementary School,00350376, 503, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Lee Academy,00350001, 225, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Lee K-8 School,00350183, 610, 26, 0.7, 2.5, 1.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Lyndon K-8 School,00350262, 614, 23, 1.1, 1.1, 0.7, 0.8, 0.0 +-0.8000000000000007,1,a-phys-i3,2022-23,Boston - Lyon High School,00350655, 139, 20, 2.9, 3.6, 2.9, 2.9, 2.2 +NA,NA,a-phys-i3,2022-23,Boston - Lyon K-8 School,00350004, 145, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537," 1,152", 102, 0.5, 5.4, 2.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Manning Elementary School,00350184, 171, 4,"","","","","" +6.8,5,a-phys-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 345, 45, 5.2, 2.3, 4.3, 0.9, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Mario Umana Academy,00350656, 654, 13, 1.1, 0.6, 0.2, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mason Elementary School,00350304, 207, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Mather Elementary School,00350227, 531, 7, 0.8, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - McKay K-8 School,00350080, 726, 42, 1.5, 3.2, 1.0, 0.1, 0.0 +4.0,4.0,a-phys-i3,2022-23,Boston - McKinley Schools,00350363, 197, 51, 10.7, 7.1, 6.1, 1.0, 1.0 +NA,NA,a-phys-i3,2022-23,Boston - Mendell Elementary School,00350100, 342, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 697, 17, 0.3, 0.9, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mozart Elementary School,00350237, 186, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Murphy K-8 School,00350240, 906, 32, 0.9, 1.8, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - New Mission High School,00350542, 654, 74, 0.8, 8.0, 2.1, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,569", 24, 0.1, 0.7, 0.6, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 337, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Ohrenberger School,00350258, 528, 10, 0.8, 0.9, 0.0, 0.2, 0.0 +7.6,5,a-phys-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 786, 43, 1.9, 2.5, 0.9, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Boston - Otis Elementary School,00350156, 450, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Perkins Elementary School,00350231, 172, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Perry Elementary School,00350255, 200, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Philbrick Elementary School,00350172, 124, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Quincy Elementary School,00350286, 777, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Quincy Upper School,00350565, 559, 26, 2.0, 0.9, 1.4, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 392, 32, 2.8, 3.3, 1.0, 1.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Russell Elementary School,00350366, 413, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Shaw Elementary School,00350014, 203, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Boston - Snowden International High School,00350690, 517, 81, 4.1, 6.6, 4.3, 0.4, 0.4 +8.0,5,a-phys-i3,2022-23,Boston - Sumner Elementary School,00350052, 590, 6, 0.5, 0.5, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Taylor Elementary School,00350054, 438, 9, 0.2, 0.7, 0.7, 0.5, 0.0 +7.6,5,a-phys-i3,2022-23,Boston - TechBoston Academy,00350657, 993, 121, 2.5, 6.2, 2.4, 0.9, 0.1 +8.0,5,a-phys-i3,2022-23,Boston - Tobin K-8 School,00350229, 471, 6, 0.0, 0.8, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Trotter Elementary School,00350370, 345, 10, 0.0, 2.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Tynan Elementary School,00350181, 242, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - UP Academy Holland,00350167, 674, 13, 1.0, 0.7, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 550, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 120, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Winship Elementary School,00350374, 362, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Winthrop Elementary School,00350180, 258, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 564, 59, 1.2, 3.5, 2.7, 1.1, 2.0 +4.0,4.0,a-phys-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 727, 56, 3.6, 2.5, 0.6, 0.1, 1.0 +8.0,5,a-phys-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 439, 15, 0.2, 1.1, 2.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 490, 67, 2.0, 8.0, 2.9, 0.8, 0.0 +2.0,2.0,a-phys-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 721, 60, 2.8, 2.1, 1.7, 0.3, 1.5 +7.6,5,a-phys-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 978, 58, 2.8, 1.7, 1.0, 0.3, 0.1 +1.5999999999999996,1.6,a-phys-i3,2022-23,Bourne - Bourne High School,00360505, 371, 25, 0.0, 1.6, 1.9, 1.6, 1.6 +NA,NA,a-phys-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 389, 3,"","","","","" +6.4,5,a-phys-i3,2022-23,Bourne - Bourne Middle School,00360325, 447, 45, 3.1, 4.3, 2.0, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 428, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boxford - Harry Lee Cole,00380005, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boxford - Spofford Pond,00380013, 391, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Archie T Morrison,00400033, 321, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Braintree - Braintree High,00400505," 1,784", 60, 0.8, 0.9, 1.2, 0.2, 0.3 +8.0,5,a-phys-i3,2022-23,Braintree - Donald Ross,00400050, 212, 8, 1.9, 1.4, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Braintree - East Middle School,00400305, 998, 12, 0.2, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Braintree - Highlands,00400015, 418, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Hollis,00400005, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Liberty,00400025, 376, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 299, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 209, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Braintree - South Middle School,00400310, 524, 18, 1.3, 1.7, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brewster - Eddy Elementary,00410010, 204, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 243, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 346, 31, 2.3, 4.9, 1.4, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 767, 19, 1.6, 0.5, 0.3, 0.1, 0.0 +5.6,5,a-phys-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505," 1,434", 27, 0.3, 0.5, 0.4, 0.1, 0.6 +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 505, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002," 1,023", 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 740, 8, 0.3, 0.4, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 19, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 818, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 294, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 556, 25, 0.0, 1.1, 0.9, 1.6, 0.9 +7.2,5,a-phys-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,314", 57, 1.2, 1.2, 1.1, 0.7, 0.2 +4.0,4.0,a-phys-i3,2022-23,Brockton - Ashfield Middle School,00440421, 492, 36, 1.4, 2.4, 2.0, 0.4, 1.0 +NA,NA,a-phys-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 369, 0,"","","","","" +-8.8,1,a-phys-i3,2022-23,Brockton - Brockton Champion High School,00440515, 212, 42, 0.0, 5.7, 6.1, 3.8, 4.2 +-4.4,1,a-phys-i3,2022-23,Brockton - Brockton High,00440505," 3,930", 599, 3.5, 3.8, 3.4, 1.4, 3.1 +NA,NA,a-phys-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 249, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Brookfield,00440010, 474, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Downey,00440110, 638, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 849, 3,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Brockton - East Middle School,00440405, 499, 37, 1.6, 2.4, 2.2, 0.2, 1.0 +8.0,5,a-phys-i3,2022-23,Brockton - Edgar B Davis,00440023, 992, 27, 0.3, 1.4, 0.9, 0.1, 0.0 +6.0,5,a-phys-i3,2022-23,Brockton - Edison Academy,00440520, 404, 6, 0.2, 0.7, 0.0, 0.0, 0.5 +NA,NA,a-phys-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 437, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Hancock,00440045, 692, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 51, 14, 7.8, 9.8, 7.8, 0.0, 2.0 +NA,NA,a-phys-i3,2022-23,Brockton - John F Kennedy,00440017, 583, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 877, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 876, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Mary E. Baker School,00440002, 734, 0,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Brockton - North Middle School,00440410, 481, 85, 6.4, 5.6, 4.0, 0.6, 1.0 +NA,NA,a-phys-i3,2022-23,Brockton - Oscar F Raymond,00440078, 858, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 39, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Brockton - Plouffe Middle School,00440422, 719, 42, 0.8, 1.9, 1.7, 0.3, 1.1 +-2.0,1,a-phys-i3,2022-23,Brockton - South Middle School,00440415, 562, 93, 1.6, 5.5, 4.1, 2.8, 2.5 +0.40000000000000036,1,a-phys-i3,2022-23,Brockton - West Middle School,00440420, 581, 79, 3.3, 4.5, 3.1, 0.9, 1.9 +1.5999999999999996,1.6,a-phys-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305," 2,287", 270, 3.6, 3.0, 2.6, 1.0, 1.6 +NA,NA,a-phys-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 297, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 62, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 77, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 58, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Brookline High,00460505," 2,124", 47, 1.0, 0.9, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - Edith C Baker,00460005, 721, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 878, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Heath,00460025, 470, 7, 0.2, 1.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - John D Runkle,00460045, 516, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Lawrence,00460030, 670, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Michael Driscoll,00460020, 482, 6, 1.2, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - Pierce,00460040, 724, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - The Lynch Center,00460060, 59, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - William H Lincoln,00460035, 501, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Burlington - Burlington High,00480505," 1,031", 35, 0.3, 1.9, 0.9, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Burlington - Fox Hill,00480007, 436, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 517, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 846, 16, 0.9, 0.7, 0.0, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Burlington - Memorial,00480015, 403, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 341, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Amigos School,00490006, 419, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,939", 55, 0.8, 1.0, 0.6, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 303, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Cambridgeport,00490007, 290, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 269, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Graham and Parks,00490080, 398, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Haggerty,00490020, 260, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - John M Tobin,00490065, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 239, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - King Open,00490035, 391, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 355, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 340, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Morse,00490045, 325, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Peabody,00490050, 332, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 262, 13, 0.4, 1.9, 1.1, 0.8, 0.8 +6.8,5,a-phys-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 289, 10, 1.0, 0.7, 1.4, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 295, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Canton - Canton High,00500505, 921, 46, 0.2, 2.1, 2.0, 0.2, 0.5 +NA,NA,a-phys-i3,2022-23,Canton - Dean S Luce,00500020, 476, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - John F Kennedy,00500017, 483, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 553, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 118, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 764, 42, 0.8, 2.5, 1.2, 0.4, 0.7 +NA,NA,a-phys-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 254, 3,"","","","","" +5.6,5,a-phys-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 679, 43, 1.8, 1.8, 1.8, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Carlisle - Carlisle School,00510025, 609, 7, 0.3, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Carver - Carver Elementary School,00520015, 817, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Carver - Carver Middle/High School,00520405, 778, 96, 3.0, 4.5, 3.1, 0.9, 0.9 +NA,NA,a-phys-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 114, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Central Berkshire - Craneville,06350025, 452, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Central Berkshire - Kittredge,06350035, 172, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 352, 52, 7.1, 4.5, 2.0, 0.3, 0.9 +6.4,5,a-phys-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 491, 52, 3.5, 5.1, 1.6, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Chelmsford - Byam School,00560030, 515, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Center Elementary School,00560005, 500, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 486, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Chelmsford - Chelmsford High,00560505," 1,398", 78, 1.1, 1.7, 2.2, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 739, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Community Education Center,00560001, 246, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 868, 25, 0.7, 1.7, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chelmsford - South Row,00560015, 482, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Chelsea - Chelsea High,00570505," 1,805", 148, 4.1, 2.4, 1.1, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 171, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 115, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Chelsea - Clark Avenue School,00570050, 722, 46, 2.9, 2.5, 0.3, 0.3, 0.4 +NA,NA,a-phys-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 526, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 480, 33, 3.8, 1.9, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 527, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 493, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 557, 11, 1.6, 0.2, 0.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 972, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 487, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 155, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Barry,00610003, 374, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Belcher,00610010, 240, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Chicopee - Bellamy Middle,00610305, 835, 125, 4.7, 5.3, 2.6, 1.6, 0.8 +7.2,5,a-phys-i3,2022-23,Chicopee - Bowe,00610015, 449, 9, 0.7, 0.9, 0.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Chicopee - Bowie,00610020, 282, 2,"","","","","" +-84.4,1,a-phys-i3,2022-23,Chicopee - Chicopee Academy,00610021, 117, 75, 5.1, 12.0, 16.2, 7.7, 23.1 +7.2,5,a-phys-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510," 1,242", 41, 1.4, 0.6, 0.9, 0.2, 0.2 +6.4,5,a-phys-i3,2022-23,Chicopee - Chicopee High,00610505, 963, 106, 2.9, 4.2, 2.7, 0.8, 0.4 +3.5999999999999996,3.6,a-phys-i3,2022-23,Chicopee - Dupont Middle,00610310, 737, 102, 3.5, 4.3, 3.8, 1.1, 1.1 +NA,NA,a-phys-i3,2022-23,Chicopee - Fairview Elementary,00610050, 406, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 421, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 254, 15, 2.8, 2.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chicopee - Litwin,00610022, 355, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 241, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 312, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 340, 42, 5.0, 3.2, 2.4, 1.2, 0.6 +6.0,5,a-phys-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 218, 23, 5.5, 1.8, 1.8, 0.9, 0.5 +NA,NA,a-phys-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 201, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Clinton - Clinton Elementary,00640050, 890, 43, 2.5, 1.1, 0.8, 0.1, 0.2 +6.8,5,a-phys-i3,2022-23,Clinton - Clinton Middle School,00640305, 580, 36, 1.7, 2.4, 1.7, 0.0, 0.3 +2.0,2.0,a-phys-i3,2022-23,Clinton - Clinton Senior High,00640505, 612, 58, 2.5, 2.9, 2.3, 0.3, 1.5 +NA,NA,a-phys-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 351, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Cohasset High School,00650505, 435, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 298, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Deer Hill,00650005, 308, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Joseph Osgood,00650010, 380, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205," 1,320", 155, 5.2, 3.3, 2.5, 0.5, 0.3 +6.4,5,a-phys-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 272, 21, 4.8, 0.7, 1.5, 0.4, 0.4 +7.6,5,a-phys-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205," 1,212", 18, 1.0, 0.2, 0.2, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Concord - Alcott,00670005, 428, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Concord - Concord Middle,00670305, 663, 11, 1.1, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Concord - Thoreau,00670020, 447, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Concord - Willard,00670030, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505," 1,323", 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 472, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Conway - Conway Grammar,00680005, 138, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Danvers - Danvers High,00710505, 794, 36, 0.8, 2.4, 0.5, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Danvers - Great Oak,00710015, 311, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Danvers - Highlands,00710010, 405, 1,"","","","","" +7.6,5,a-phys-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 787, 44, 2.8, 1.7, 0.8, 0.3, 0.1 +8.0,5,a-phys-i3,2022-23,Danvers - Ivan G Smith,00710032, 346, 10, 2.3, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Danvers - Riverside,00710030, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Danvers - Willis E Thorpe,00710045, 341, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 151, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dartmouth - Dartmouth High,00720505," 1,011", 58, 2.8, 2.0, 0.9, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 814, 68, 1.2, 4.8, 1.6, 0.6, 0.1 +NA,NA,a-phys-i3,2022-23,Dartmouth - George H Potter,00720030, 410, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 714, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - Joseph Demello,00720015, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Avery,00730010, 314, 2,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Dedham - Dedham High,00730505, 745, 38, 0.5, 1.5, 1.2, 0.8, 1.1 +6.4,5,a-phys-i3,2022-23,Dedham - Dedham Middle School,00730305, 569, 41, 3.9, 2.5, 0.5, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Dedham - Early Childhood Center,00730005, 335, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Greenlodge,00730025, 284, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Oakdale,00730030, 251, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Riverdale,00730045, 185, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 336, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 480, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 496, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 954, 13, 0.4, 0.8, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 383, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 320, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 436, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 472, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 370, 18, 4.3, 0.5, 0.0, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 703, 30, 1.0, 1.4, 1.4, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 454, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 605, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Douglas - Douglas Elementary School,00770015, 353, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Douglas - Douglas High School,00770505, 328, 11, 0.3, 1.8, 0.9, 0.3, 0.0 +4.0,4.0,a-phys-i3,2022-23,Douglas - Douglas Middle School,00770305, 306, 18, 2.6, 0.7, 1.3, 0.3, 1.0 +NA,NA,a-phys-i3,2022-23,Douglas - Douglas Primary School,00770005, 226, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dover - Chickering,00780005, 518, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 669, 12, 1.0, 0.3, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 484, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Brookside Elementary,00790035, 546, 5,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Dracut - Dracut Senior High,00790505, 881, 74, 1.4, 1.5, 2.4, 1.2, 1.9 +NA,NA,a-phys-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 560, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Greenmont Avenue,00790030, 254, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 624, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 887, 66, 1.9, 2.1, 2.1, 0.6, 0.7 +NA,NA,a-phys-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 286, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 364, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 610, 38, 1.6, 1.3, 1.0, 2.0, 0.3 +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 350, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 576, 26, 2.6, 1.4, 0.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 460, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 247, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 958, 31, 1.4, 0.3, 1.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Duxbury - Alden School,00820004, 604, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Duxbury - Chandler Elementary,00820006, 665, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Duxbury - Duxbury High,00820505, 929, 11, 0.2, 0.6, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Duxbury - Duxbury Middle,00820305, 624, 12, 1.3, 0.5, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,East Bridgewater - Central,00830005, 540, 4,"","","","","" +6.4,5,a-phys-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 926, 36, 1.1, 1.0, 0.4, 1.0, 0.4 +8.0,5,a-phys-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 646, 8, 0.8, 0.2, 0.0, 0.3, 0.0 +6.8,5,a-phys-i3,2022-23,East Longmeadow - Birchland Park,00870305, 601, 22, 0.8, 1.5, 0.8, 0.2, 0.3 +6.0,5,a-phys-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 824, 20, 0.2, 0.5, 1.1, 0.1, 0.5 +NA,NA,a-phys-i3,2022-23,East Longmeadow - Mapleshade,00870010, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 587, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,East Longmeadow - Mountain View,00870015, 272, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Eastham - Eastham Elementary,00850005, 200, 0,"","","","","" +-10.8,1,a-phys-i3,2022-23,Easthampton - Easthampton High,00860505, 382, 45, 3.4, 2.9, 0.8, 0.0, 4.7 +8.0,5,a-phys-i3,2022-23,Easthampton - Mountain View School,00860415," 1,080", 45, 2.3, 1.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 788, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Easton - Easton Middle School,00880405, 835, 47, 2.9, 1.3, 1.0, 0.2, 0.2 +6.0,5,a-phys-i3,2022-23,Easton - Oliver Ames High,00880505," 1,102", 40, 0.5, 1.0, 1.4, 0.3, 0.5 +NA,NA,a-phys-i3,2022-23,Easton - Richardson Olmsted School,00880025, 777, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 442, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 395, 23, 1.0, 2.8, 1.0, 0.8, 0.3 +NA,NA,a-phys-i3,2022-23,Erving - Erving Elementary,00910030, 131, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,707", 29, 0.1, 0.5, 0.6, 0.5, 0.1 +NA,NA,a-phys-i3,2022-23,Everett - Adams School,00930003, 261, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Everett - Devens School,00930030, 68, 10, 1.5, 7.4, 4.4, 1.5, 0.0 +7.2,5,a-phys-i3,2022-23,Everett - Everett High,00930505," 2,426", 180, 3.2, 2.8, 0.9, 0.3, 0.2 +8.0,5,a-phys-i3,2022-23,Everett - George Keverian School,00930028, 994, 15, 0.3, 0.3, 0.4, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Lafayette School,00930038," 1,134", 29, 0.5, 1.6, 0.4, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Madeline English School,00930018, 845, 76, 4.3, 2.8, 1.3, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Parlin School,00930058," 1,142", 57, 2.4, 1.7, 0.8, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 719, 37, 1.1, 2.4, 1.4, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Everett - Webster Extension,00930001, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Everett - Webster School,00930015, 365, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205," 1,402", 179, 5.0, 3.6, 2.5, 1.3, 0.4 +NA,NA,a-phys-i3,2022-23,Fairhaven - East Fairhaven,00940010, 327, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Fairhaven High,00940505, 650, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Hastings Middle,00940305, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Leroy Wood,00940030, 450, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Fall River - B M C Durfee High,00950505," 2,562", 58, 0.1, 0.4, 1.0, 0.7, 0.1 +8.0,5,a-phys-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 742, 20, 0.5, 1.2, 0.7, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Early Learning Center,00950001, 119, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Fall River - Henry Lord Community School,00950017, 876, 20, 0.8, 0.8, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Fall River - James Tansey,00950140, 289, 6, 0.7, 1.0, 0.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,Fall River - John J Doran,00950045, 550, 42, 2.7, 2.7, 1.3, 0.5, 0.4 +NA,NA,a-phys-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 686, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 724, 9, 0.7, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 731, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,Fall River - Morton Middle,00950315, 737, 106, 2.4, 6.0, 3.7, 1.6, 0.7 +NA,NA,a-phys-i3,2022-23,Fall River - North End Elementary,00950005, 737, 0,"","","","","" +-4.0,1,a-phys-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 333, 73, 0.6, 7.5, 8.7, 2.1, 3.0 +8.0,5,a-phys-i3,2022-23,Fall River - Samuel Watson,00950145, 269, 6, 1.1, 0.4, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Spencer Borden,00950130, 617, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Fall River - Stone PK-12 School,00950340, 89, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Fall River - Talbot Innovation School,00950305, 593, 17, 0.8, 0.8, 0.7, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Fall River - William S Greene,00950065, 793, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 311, 2,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Falmouth - Falmouth High,00960505, 798, 58, 1.4, 3.1, 1.1, 0.9, 0.8 +3.2,3.2,a-phys-i3,2022-23,Falmouth - Lawrence,00960405, 499, 49, 2.2, 3.8, 1.8, 0.8, 1.2 +7.2,5,a-phys-i3,2022-23,Falmouth - Morse Pond School,00960305, 506, 16, 1.8, 0.4, 0.8, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Falmouth - Mullen-Hall,00960020, 390, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 323, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - Teaticket,00960015, 282, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 126, 2,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 626, 67, 1.3, 4.5, 1.9, 1.4, 1.6 +8.0,5,a-phys-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 655, 16, 1.2, 1.2, 0.0, 0.0, 0.0 +-11.600000000000001,1,a-phys-i3,2022-23,Fitchburg - Fitchburg High,00970505," 1,353", 291, 3.1, 7.7, 4.0, 1.8, 4.9 +NA,NA,a-phys-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 297, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 775, 14, 1.0, 0.6, 0.1, 0.0, 0.0 +-1.1999999999999993,1,a-phys-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 621, 102, 3.9, 6.3, 3.1, 1.0, 2.3 +8.0,5,a-phys-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 706, 17, 0.6, 1.6, 0.0, 0.3, 0.0 +7.2,5,a-phys-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 658, 12, 0.8, 0.8, 0.0, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Florida - Abbott Memorial,00980005, 92, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 223, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 266, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Foxborough - Foxborough High,00990505, 792, 40, 0.1, 0.9, 2.4, 0.5, 1.1 +7.6,5,a-phys-i3,2022-23,Foxborough - John J Ahern,00990405, 755, 27, 1.3, 1.2, 0.7, 0.3, 0.1 +NA,NA,a-phys-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 358, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 372, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550," 1,626", 58, 0.9, 1.7, 0.6, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Framingham - Barbieri Elementary,01000035, 713, 9, 0.8, 0.0, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Framingham - Brophy,01000006, 511, 5,"","","","","" +6.0,5,a-phys-i3,2022-23,Framingham - Cameron Middle School,01000302, 578, 70, 2.4, 4.3, 3.6, 1.2, 0.5 +NA,NA,a-phys-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 446, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Framingham - Framingham High School,01000515," 2,765", 192, 2.0, 2.5, 1.3, 0.5, 0.6 +5.2,5,a-phys-i3,2022-23,Framingham - Fuller Middle,01000305, 686, 68, 2.6, 3.6, 2.2, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 524, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Hemenway,01000015, 588, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Juniper Hill School,01000001, 336, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - King Elementary School,01000005, 419, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 388, 9, 0.8, 1.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 591, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Potter Road,01000039, 574, 5,"","","","","" +7.6,5,a-phys-i3,2022-23,Framingham - Walsh Middle,01000310, 825, 25, 1.1, 1.3, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 406, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 328, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 180, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Franklin - Franklin High,01010505," 1,651", 119, 3.0, 2.1, 1.5, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 554, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Franklin - Horace Mann,01010405, 380, 12, 2.6, 0.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Jefferson Elementary,01010010, 363, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Oak Street Elementary,01010030, 371, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Parmenter,01010032, 300, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Franklin - Remington Middle,01010310, 378, 16, 1.1, 2.4, 0.8, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 606, 81, 6.1, 4.5, 1.5, 0.7, 0.7 +6.4,5,a-phys-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 734, 32, 1.1, 1.0, 1.6, 0.3, 0.4 +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 503, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 440, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 681, 17, 1.0, 1.3, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 457, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Frontier - Frontier Regional,06700505, 612, 7, 0.8, 0.3, 0.0, 0.0, 0.0 +-5.199999999999999,1,a-phys-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 151, 10, 0.0, 0.7, 2.0, 0.7, 3.3 +8.0,5,a-phys-i3,2022-23,Gardner - Gardner Elementary School,01030001," 1,054", 6, 0.2, 0.1, 0.3, 0.0, 0.0 +2.4000000000000004,2.4,a-phys-i3,2022-23,Gardner - Gardner High,01030505, 853, 88, 0.5, 2.3, 3.9, 2.2, 1.4 +1.5999999999999996,1.6,a-phys-i3,2022-23,Gardner - Gardner Middle School,01030405, 499, 54, 2.6, 3.6, 2.4, 0.6, 1.6 +NA,NA,a-phys-i3,2022-23,Gateway - Chester Elementary,06720059, 131, 1,"","","","","" +-1.5999999999999996,1,a-phys-i3,2022-23,Gateway - Gateway Regional High,06720505, 170, 24, 3.5, 4.1, 3.5, 0.6, 2.4 +6.0,5,a-phys-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 200, 24, 5.5, 2.0, 3.0, 1.0, 0.5 +NA,NA,a-phys-i3,2022-23,Gateway - Littleville Elementary School,06720143, 312, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Georgetown High School,01050505, 304, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 189, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Penn Brook,01050010, 708, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Perley Elementary,01050005, 84, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 108, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 213, 23, 1.9, 5.6, 1.9, 1.4, 0.0 +NA,NA,a-phys-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 160, 1,"","","","","" +6.0,5,a-phys-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 220, 6, 1.8, 0.5, 0.0, 0.0, 0.5 +8.0,5,a-phys-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 200, 12, 2.0, 2.5, 1.0, 0.5, 0.0 +3.2,3.2,a-phys-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 516, 66, 3.9, 4.5, 2.9, 0.4, 1.2 +NA,NA,a-phys-i3,2022-23,Gloucester - Beeman Memorial,01070010, 317, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 192, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Gloucester - Gloucester High,01070505, 834, 25, 0.5, 2.3, 0.0, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 148, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Plum Cove School,01070042, 204, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 636, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Veterans Memorial,01070045, 221, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - West Parish,01070050, 377, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Grafton - Grafton High School,01100505, 891, 53, 1.1, 2.8, 1.5, 0.3, 0.2 +7.2,5,a-phys-i3,2022-23,Grafton - Grafton Middle,01100305, 530, 12, 1.7, 0.0, 0.2, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 602, 6, 0.2, 0.7, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Grafton - North Grafton Elementary,01100025, 261, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Grafton - North Street Elementary School,01100030, 557, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Grafton - South Grafton Elementary,01100005, 313, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Granby - East Meadow,01110004, 416, 6, 0.2, 1.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 315, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900," 1,408", 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,418", 80, 1.2, 1.2, 1.4, 1.3, 0.5 +7.2,5,a-phys-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,697", 77, 0.7, 1.3, 1.6, 0.7, 0.2 +5.2,5,a-phys-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 2,330", 138, 1.1, 1.4, 2.2, 0.5, 0.7 +4.4,4.4,a-phys-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 2,115", 177, 3.5, 1.2, 0.9, 1.7, 0.9 +NA,NA,a-phys-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 220, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Greenfield - Federal Street School,01140010, 215, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Greenfield - Greenfield High,01140505, 480, 55, 3.1, 4.8, 1.7, 1.0, 0.8 +6.8,5,a-phys-i3,2022-23,Greenfield - Greenfield Middle,01140305, 320, 32, 4.1, 2.8, 2.5, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Greenfield - Newton School,01140035, 222, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 103, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 103, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 532, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 688, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 746, 6, 0.8, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 331, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hadley - Hadley Elementary,01170015, 284, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Hadley - Hopkins Academy,01170505, 231, 9, 0.9, 1.7, 0.4, 0.0, 0.9 +NA,NA,a-phys-i3,2022-23,Halifax - Halifax Elementary,01180005, 570, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 454, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 376, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 326, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 558, 14, 0.0, 0.0, 1.8, 0.7, 0.0 +6.0,5,a-phys-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 386, 16, 0.0, 1.3, 1.8, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 329, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 374, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 998, 37, 0.4, 1.5, 0.5, 1.0, 0.3 +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 315, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 310, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 610, 52, 2.0, 3.9, 1.5, 0.7, 0.5 +8.0,5,a-phys-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 679, 21, 0.7, 1.8, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hancock - Hancock Elementary,01210005, 63, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hanover - Cedar Elementary,01220004, 509, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hanover - Center Elementary,01220005, 645, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hanover - Hanover High,01220505, 671, 14, 0.6, 0.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Hanover - Hanover Middle,01220305, 810, 7, 0.0, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Harvard - Bromfield,01250505, 568, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 478, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 223, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hatfield - Smith Academy,01270505, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 42, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Bradford Elementary,01280008, 556, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030," 1,109", 39, 1.3, 1.2, 0.7, 0.4, 0.0 +-1.5999999999999996,1,a-phys-i3,2022-23,Haverhill - Consentino Middle School,01280100, 763, 89, 2.2, 2.9, 3.1, 1.0, 2.4 +6.8,5,a-phys-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 603, 63, 2.7, 4.1, 2.5, 0.8, 0.3 +-8.0,1,a-phys-i3,2022-23,Haverhill - Gateway Academy,01280515, 100, 42, 8.0, 11.0, 12.0, 7.0, 4.0 +NA,NA,a-phys-i3,2022-23,Haverhill - Golden Hill,01280026, 495, 0,"","","","","" +-10.0,1,a-phys-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 44, 19, 13.6, 9.1, 13.6, 2.3, 4.5 +-0.40000000000000036,1,a-phys-i3,2022-23,Haverhill - Haverhill High,01280505," 2,092", 353, 4.4, 4.7, 4.7, 0.9, 2.1 +7.2,5,a-phys-i3,2022-23,Haverhill - John G Whittier,01280085, 503, 28, 2.0, 1.4, 1.2, 0.8, 0.2 +NA,NA,a-phys-i3,2022-23,Haverhill - Moody,01280045, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 142, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 557, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 508, 16, 2.6, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Haverhill - Tilton,01280075, 338, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 185, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Walnut Square,01280080, 146, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 98, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 131, 14, 3.8, 3.1, 1.5, 1.5, 0.8 +NA,NA,a-phys-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 314, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 221, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hingham - East Elementary School,01310005, 529, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Hingham - Hingham High,01310505," 1,173", 9, 0.3, 0.3, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Hingham - Hingham Middle School,01310410, 852, 10, 0.4, 0.7, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hingham - Plymouth River,01310019, 388, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hingham - South Elementary,01310020, 508, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 409, 6, 1.0, 0.5, 0.0, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 668, 59, 2.1, 3.6, 2.4, 0.6, 0.1 +8.0,5,a-phys-i3,2022-23,Holbrook - John F Kennedy,01330018, 722, 7, 0.6, 0.1, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Holland - Holland Elementary,01350005, 239, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Holliston High,01360505, 814, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Miller School,01360007, 614, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Placentino Elementary,01360010, 733, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 665, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Holyoke - E N White Elementary,01370045, 456, 10, 0.9, 0.7, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 210, 6, 1.0, 1.9, 0.0, 0.0, 0.0 +1.2000000000000002,1.2,a-phys-i3,2022-23,Holyoke - Holyoke High,01370505," 1,609", 224, 3.2, 3.9, 3.8, 1.3, 1.7 +5.2,5,a-phys-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 298, 85, 7.7, 9.7, 9.1, 1.3, 0.7 +2.8,2.8,a-phys-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 314, 73, 7.6, 6.1, 5.7, 2.5, 1.3 +8.0,5,a-phys-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 401, 26, 4.5, 1.2, 0.7, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Holyoke - Kelly Elementary,01370040, 379, 44, 6.1, 2.9, 2.1, 0.3, 0.3 +8.0,5,a-phys-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 442, 23, 1.6, 2.3, 0.5, 0.9, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 369, 22, 4.1, 1.4, 0.3, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 387, 12, 0.5, 1.3, 0.8, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 361, 0,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Holyoke - William R. Peck School,01370030, 215, 48, 4.7, 6.0, 7.0, 3.3, 1.4 +6.8,5,a-phys-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 731, 32, 0.7, 0.8, 1.9, 0.7, 0.3 +NA,NA,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 406, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 340, 25, 0.9, 4.7, 1.2, 0.3, 0.3 +6.8,5,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 300, 19, 3.3, 2.3, 0.0, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 444, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopedale - Memorial,01380010, 568, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopedale - Park Street School,01380003, 117, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Elmwood,01390010, 645, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 648, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hopkinton - Hopkinton High,01390505," 1,251", 21, 0.3, 0.6, 0.6, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 988, 6, 0.3, 0.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 115, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 617, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hudson - C A Farley,01410030, 458, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 583, 9, 0.3, 0.5, 0.0, 0.2, 0.5 +NA,NA,a-phys-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 299, 1,"","","","","" +6.0,5,a-phys-i3,2022-23,Hudson - Hudson High,01410505, 849, 40, 0.7, 1.8, 1.3, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Hudson - Mulready Elementary,01410007, 257, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hull - Hull High,01420505, 243, 21, 2.5, 4.1, 1.2, 0.8, 0.0 +6.8,5,a-phys-i3,2022-23,Hull - Lillian M Jacobs,01420015, 371, 7, 0.3, 1.3, 0.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Hull - Memorial Middle,01420305, 174, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 817, 48, 2.4, 2.3, 0.5, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Ipswich - Ipswich High,01440505, 507, 8, 0.6, 0.8, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 367, 7, 1.6, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 372, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ipswich - Winthrop,01440015, 392, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 606, 20, 0.3, 1.0, 1.2, 0.2, 0.7 +7.2,5,a-phys-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010," 1,626", 82, 2.4, 1.8, 0.4, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,King Philip - King Philip Middle School,06900510, 685, 13, 0.1, 0.9, 0.9, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,King Philip - King Philip Regional High,06900505," 1,157", 28, 1.0, 0.9, 0.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Kingston - Kingston Elementary,01450005, 687, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Kingston - Kingston Intermediate,01450020, 618, 25, 1.3, 1.1, 1.1, 0.3, 0.2 +8.0,5,a-phys-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 453, 14, 1.5, 0.9, 0.4, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - Arlington Elementary,01490009, 664, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Lawrence - Arlington Middle School,01490017, 642, 67, 5.8, 3.4, 0.8, 0.0, 0.5 +NA,NA,a-phys-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 744, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 544, 36, 2.9, 2.9, 0.7, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Lawrence - Francis M Leahy,01490040, 433, 19, 2.8, 0.5, 0.7, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Lawrence - Frost Middle School,01490525, 552, 27, 2.9, 1.4, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 518, 8, 1.4, 0.2, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 508, 15, 1.4, 1.2, 0.4, 0.0, 0.0 +4.0,4.0,a-phys-i3,2022-23,Lawrence - High School Learning Center,01490536, 382, 18, 1.3, 1.6, 0.3, 0.5, 1.0 +NA,NA,a-phys-i3,2022-23,Lawrence - James F Hennessey,01490020, 364, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - John Breen School,01490003, 368, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - John K Tarbox,01490075, 324, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 212, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 259, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Lawrence - Lawrence High School,01490515," 3,402", 203, 1.5, 2.5, 1.1, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Lawrence - Leonard Middle School,01490090, 369, 8, 0.5, 0.8, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 512, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Oliver Middle School,01490049, 375, 21, 1.1, 2.7, 1.3, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Parthum Middle School,01490027, 619, 12, 0.8, 1.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - RISE Academy,01490615, 93, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Robert Frost,01490018, 611, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 258, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 121, 6, 2.5, 1.7, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 727, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Spark Academy,01490085, 479, 29, 4.6, 1.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 868, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 679, 20, 1.5, 0.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lee - Lee Elementary,01500025, 353, 8, 1.7, 0.6, 0.0, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Lee - Lee Middle/High School,01500505, 334, 19, 1.5, 2.1, 0.9, 0.9, 0.3 +NA,NA,a-phys-i3,2022-23,Leicester - Leicester Elementary,01510005, 513, 5,"","","","","" +5.2,5,a-phys-i3,2022-23,Leicester - Leicester High,01510505, 428, 28, 1.9, 2.6, 0.7, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 59, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Leicester - Leicester Middle,01510015, 425, 32, 2.8, 2.1, 0.9, 0.9, 0.7 +8.0,5,a-phys-i3,2022-23,Lenox - Lenox Memorial High,01520505, 449, 20, 2.2, 1.8, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lenox - Morris,01520015, 351, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Bennett,01530003, 123, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 807, 79, 1.9, 3.7, 2.5, 0.9, 0.9 +NA,NA,a-phys-i3,2022-23,Leominster - Fall Brook,01530007, 641, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Frances Drake School,01530010, 496, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Johnny Appleseed,01530025, 684, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 56, 4,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Leominster - Leominster High School,01530505," 1,153", 131, 3.2, 2.9, 2.9, 1.0, 1.3 +NA,NA,a-phys-i3,2022-23,Leominster - Lincoln School,01530005, 44, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Leominster - Northwest,01530030, 777, 8, 0.6, 0.1, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Leominster - Priest Street,01530040, 137, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Leominster - Samoset School,01530045, 522, 37, 1.5, 2.5, 1.7, 1.0, 0.4 +7.2,5,a-phys-i3,2022-23,Leominster - Sky View Middle School,01530320, 935, 94, 3.0, 4.6, 1.7, 0.5, 0.2 +NA,NA,a-phys-i3,2022-23,Leverett - Leverett Elementary,01540005, 143, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Bowman,01550008, 463, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Bridge,01550006, 402, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Fiske,01550015, 351, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Harrington,01550030, 405, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 839, 11, 0.6, 0.5, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Lexington - Joseph Estabrook,01550010, 564, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Lexington Children's Place,01550001, 92, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lexington - Lexington High,01550505," 2,349", 8, 0.1, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lexington - Maria Hastings,01550035, 627, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 975, 3,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 459, 11, 0.0, 0.0, 0.2, 1.1, 1.1 +NA,NA,a-phys-i3,2022-23,Lincoln - Hanscom Middle,01570305, 245, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lincoln - Hanscom Primary,01570006, 283, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Lincoln - Lincoln School,01570025, 555, 10, 1.6, 0.2, 0.0, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,496", 23, 0.7, 0.5, 0.3, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Littleton - Littleton High School,01580505, 485, 9, 0.0, 1.4, 0.0, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Littleton - Littleton Middle School,01580305, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Littleton - Russell St Elementary,01580015, 393, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 458, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 400, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Longmeadow - Center,01590010, 436, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 335, 11, 1.8, 0.3, 1.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Longmeadow - Longmeadow High,01590505, 915, 38, 1.9, 1.3, 0.8, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Longmeadow - Williams Middle,01590305, 288, 6, 2.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 461, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Abraham Lincoln,01600020, 532, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 545, 51, 3.7, 3.5, 1.7, 0.4, 0.2 +6.4,5,a-phys-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 542, 45, 2.6, 3.5, 1.5, 0.4, 0.4 +NA,NA,a-phys-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Charles W Morey,01600030, 517, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 504, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Lowell - Dr An Wang School,01600345, 700, 33, 2.1, 0.9, 1.6, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 500, 8, 1.4, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 63, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Greenhalge,01600015, 527, 11, 1.5, 0.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 658, 53, 4.9, 1.7, 1.1, 0.5, 0.0 +7.6,5,a-phys-i3,2022-23,Lowell - James S Daley Middle School,01600315, 705, 9, 0.6, 0.1, 0.4, 0.0, 0.1 +5.6,5,a-phys-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 649, 75, 5.9, 3.2, 1.5, 0.3, 0.6 +8.0,5,a-phys-i3,2022-23,Lowell - John J Shaughnessy,01600050, 524, 26, 2.5, 1.9, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 498, 0,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 683, 73, 2.9, 3.8, 1.8, 0.6, 1.6 +NA,NA,a-phys-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 22, 1,"","","","","" +-10.8,1,a-phys-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 43, 27, 25.6, 18.6, 9.3, 4.7, 4.7 +6.8,5,a-phys-i3,2022-23,Lowell - Lowell High,01600505," 3,423", 236, 0.9, 3.1, 2.0, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Lowell - Moody Elementary,01600027, 270, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 501, 8, 0.6, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Peter W Reilly,01600040, 512, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Pyne Arts,01600018, 523, 17, 0.8, 1.7, 0.4, 0.4, 0.0 +7.2,5,a-phys-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 935, 29, 0.6, 1.4, 0.7, 0.1, 0.2 +NA,NA,a-phys-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 520, 1,"","","","","" +-10.399999999999999,1,a-phys-i3,2022-23,Lowell - The Career Academy,01600515, 152, 55, 5.9, 13.8, 10.5, 1.3, 4.6 +NA,NA,a-phys-i3,2022-23,Lowell - Washington,01600055, 265, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 826, 11, 0.4, 0.7, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 133, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Ludlow - East Street Elementary School,01610010, 380, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 668, 12, 0.7, 0.6, 0.3, 0.1, 0.0 +5.6,5,a-phys-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 815, 55, 1.0, 1.0, 2.6, 1.6, 0.6 +5.6,5,a-phys-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 526, 44, 3.0, 2.7, 1.9, 0.2, 0.6 +NA,NA,a-phys-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 6, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Lunenburg - Lunenburg High,01620505, 450, 15, 0.4, 1.3, 0.2, 0.2, 1.1 +8.0,5,a-phys-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 388, 26, 4.4, 1.5, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 397, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 364, 6, 1.1, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 549, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Aborn,01630011, 231, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Lynn - Breed Middle School,01630405," 1,340", 106, 2.6, 3.2, 1.6, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Lynn - Brickett Elementary,01630020, 345, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 332, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Lynn - Classical High,01630505," 2,088", 123, 1.8, 2.7, 0.9, 0.1, 0.3 +8.0,5,a-phys-i3,2022-23,Lynn - Cobbet Elementary,01630035, 670, 15, 0.9, 0.6, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - E J Harrington,01630045, 677, 12, 0.3, 1.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - Edward A Sisson,01630095, 462, 4,"","","","","" +-10.0,1,a-phys-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 133, 27, 3.0, 6.8, 3.0, 3.0, 4.5 +NA,NA,a-phys-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 83, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lynn - Hood,01630055, 525, 20, 2.5, 1.0, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - Ingalls,01630060, 769, 16, 0.4, 1.4, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - Julia F Callahan,01630030, 439, 12, 0.9, 1.1, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 208, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Lynn - Lynn English High,01630510," 2,498", 111, 0.4, 1.2, 1.1, 0.8, 0.8 +7.6,5,a-phys-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605," 1,575", 87, 2.1, 2.5, 0.7, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Lynn - Lynn Woods,01630075, 165, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Lynn - Pickering Middle,01630420, 589, 45, 3.2, 2.7, 0.5, 0.7, 0.5 +NA,NA,a-phys-i3,2022-23,Lynn - Robert L Ford,01630050, 441, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Sewell-Anderson,01630085, 309, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305," 1,330", 144, 4.4, 3.6, 1.4, 0.5, 0.9 +NA,NA,a-phys-i3,2022-23,Lynn - Tracy,01630100, 399, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 83, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Washington Elementary School,01630005, 469, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - William R Fallon,01630080, 34, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lynn - Wm P Connery,01630040, 605, 13, 0.3, 1.0, 0.3, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 462, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield High,01640505, 570, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 720, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 48, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Summer Street,01640020, 424, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 100, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Malden - Beebe,01650003, 936, 11, 0.2, 0.6, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Malden - Ferryway,01650013, 955, 36, 1.4, 1.8, 0.4, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Malden - Forestdale,01650027, 632, 33, 1.9, 1.7, 0.9, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Malden - Linden,01650047, 904, 38, 1.8, 1.8, 0.4, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Malden - Malden Early Learning Center,01650049, 347, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Malden - Malden High,01650505," 1,983", 86, 1.9, 1.6, 0.5, 0.3, 0.1 +8.0,5,a-phys-i3,2022-23,Malden - Salemwood,01650057," 1,143", 28, 1.2, 1.0, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 421, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 285, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 297, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mansfield - Everett W Robinson,01670007, 778, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 812, 12, 0.5, 0.9, 0.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 724, 8, 0.7, 0.3, 0.1, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Mansfield - Mansfield High,01670505," 1,112", 30, 0.1, 0.6, 1.5, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Mansfield - Roland Green School,01670003, 115, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 301, 9, 0.0, 2.3, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marblehead - Glover,01680020, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 459, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Marblehead - Marblehead High,01680505, 893, 9, 0.4, 0.2, 0.1, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 422, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Marblehead - Village School,01680016, 567, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 234, 12, 4.3, 0.9, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marion - Sippican,01690005, 415, 0,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045," 1,125", 133, 3.9, 3.2, 2.5, 0.8, 1.4 +8.0,5,a-phys-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 740, 19, 1.5, 0.5, 0.4, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Marlborough - Early Childhood Center,01700006, 251, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marlborough - Francis J Kane,01700008, 529, 8, 1.1, 0.2, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 870, 16, 1.0, 0.6, 0.1, 0.1, 0.0 +1.5999999999999996,1.6,a-phys-i3,2022-23,Marlborough - Marlborough High,01700505," 1,173", 94, 0.6, 2.8, 1.6, 1.4, 1.6 +8.0,5,a-phys-i3,2022-23,Marlborough - Richer,01700025, 599, 10, 0.7, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Daniel Webster,01710015, 390, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marshfield - Eames Way School,01710005, 271, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 879, 21, 1.0, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 356, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marshfield - Marshfield High,01710505," 1,200", 25, 0.6, 0.3, 0.5, 0.8, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Martinson Elementary,01710025, 468, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marshfield - South River,01710010, 261, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 779, 33, 0.8, 1.5, 1.7, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 189, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 372, 9, 1.1, 1.1, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Masconomet - Masconomet Regional High School,07050505," 1,002", 20, 0.8, 0.6, 0.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 562, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 425, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 679, 42, 2.4, 2.4, 1.0, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Mashpee - Quashnet School,01720035, 419, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505," 1,222", 92, 2.5, 3.1, 1.5, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Mattapoisett - Center,01730005, 241, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 192, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Maynard - Fowler School,01740305, 475, 8, 0.8, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Maynard - Green Meadow,01740010, 441, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Maynard - Maynard High,01740505, 325, 14, 1.8, 1.2, 0.6, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Medfield - Dale Street,01750005, 394, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Medfield Senior High,01750505, 742, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Memorial School,01750003, 436, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 384, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 587, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - Brooks School,01760130, 580, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - Curtis-Tufts,01760510, 22, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 529, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 492, 13, 1.8, 0.4, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 470, 32, 3.0, 2.8, 1.1, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Medford - Medford High,01760505," 1,303", 38, 0.8, 1.1, 0.7, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 571, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Medford - Missituk Elementary School,01760140, 437, 6, 1.1, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 498, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 382, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Medway - Medway High,01770505, 626, 17, 0.6, 1.0, 0.8, 0.0, 0.3 +7.2,5,a-phys-i3,2022-23,Medway - Medway Middle,01770305, 661, 13, 0.6, 0.6, 0.5, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Melrose - Early Childhood Center,01780003, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 305, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Horace Mann,01780025, 248, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Lincoln,01780020, 418, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Melrose High,01780505, 937, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Melrose - Melrose Middle,01780305, 885, 12, 0.2, 0.6, 0.5, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Melrose - Roosevelt,01780035, 416, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Winthrop,01780050, 384, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 369, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mendon-Upton - Memorial School,07100001, 536, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 647, 29, 2.8, 0.9, 0.8, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 614, 28, 0.5, 1.0, 0.8, 1.6, 0.7 +8.0,5,a-phys-i3,2022-23,Methuen - Comprehensive Grammar School,01810050," 1,113", 52, 1.9, 1.7, 1.0, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Methuen - Donald P Timony Grammar,01810060," 1,341", 28, 0.4, 1.0, 0.6, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Methuen - Marsh Grammar School,01810030," 1,128", 35, 1.0, 1.7, 0.2, 0.2, 0.1 +3.2,3.2,a-phys-i3,2022-23,Methuen - Methuen High,01810505," 2,045", 195, 1.8, 2.5, 3.3, 0.8, 1.2 +8.0,5,a-phys-i3,2022-23,Methuen - Tenney Grammar School,01810055," 1,333", 98, 3.0, 3.0, 1.0, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 593, 6, 0.8, 0.0, 0.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 732, 40, 1.9, 2.9, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 638, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 317, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Middleborough - Middleborough High,01820505, 888, 43, 1.8, 1.8, 0.9, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Middleton - Fuller Meadow,01840003, 298, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Middleton - Howe-Manning,01840005, 438, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Milford - Brookside,01850065, 588, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Milford - Memorial,01850010, 513, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Milford - Milford High,01850505," 1,407", 72, 0.4, 1.4, 1.4, 0.7, 1.3 +NA,NA,a-phys-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 198, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Milford - Stacy Middle,01850305," 1,086", 128, 2.1, 5.2, 2.6, 0.6, 1.3 +7.6,5,a-phys-i3,2022-23,Milford - Woodland,01850090," 1,015", 21, 1.4, 0.1, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Millbury - Elmwood Street,01860017, 464, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 760, 60, 1.8, 2.2, 2.5, 0.5, 0.8 +8.0,5,a-phys-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 477, 15, 1.0, 1.9, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Millis - Clyde F Brown,01870005, 634, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Millis - Millis High School,01870505, 321, 7, 1.6, 0.3, 0.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Millis - Millis Middle,01870020, 276, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Millis - TIES,01870515, 6, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 964, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Collicot,01890005, 589, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Cunningham School,01890007, 646, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Glover,01890010, 637, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Milton - Milton High,01890505," 1,082", 9, 0.3, 0.5, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Milton - Tucker,01890020, 473, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 697, 10, 0.1, 0.9, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 279, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 107, 3,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 294, 23, 1.4, 3.1, 1.7, 0.3, 1.4 +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 146, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 152, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 518, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 723, 49, 2.1, 1.4, 2.4, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 455, 28, 4.4, 1.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Monson - Granite Valley School,01910030, 413, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Monson - Monson High School,01910505, 310, 10, 1.3, 0.6, 0.6, 0.6, 0.0 +NA,NA,a-phys-i3,2022-23,Monson - Quarry Hill Community School,01910010, 139, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605," 1,431", 116, 2.4, 2.2, 1.7, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 239, 2,"","","","","" +5.2,5,a-phys-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 551, 34, 3.3, 1.3, 0.7, 0.2, 0.7 +8.0,5,a-phys-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 444, 7, 0.7, 0.2, 0.2, 0.5, 0.0 +7.2,5,a-phys-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105," 1,650", 141, 3.3, 2.8, 1.4, 0.8, 0.2 +NA,NA,a-phys-i3,2022-23,Nahant - Johnson,01960010, 160, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 395, 31, 3.0, 3.3, 1.0, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 429, 2,"","","","","" +6.8,5,a-phys-i3,2022-23,Nantucket - Nantucket High,01970505, 612, 50, 2.9, 2.8, 1.8, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 354, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Narragansett - Narragansett Middle,07200305, 372, 12, 1.1, 1.1, 0.5, 0.5, 0.0 +7.2,5,a-phys-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 484, 22, 2.1, 1.4, 0.6, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 675, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Center School,07250020, 508, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 749, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Hale,07250310, 273, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 245, 8, 1.2, 0.4, 0.8, 0.8, 0.0 +NA,NA,a-phys-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 486, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nashoba - Nashoba Regional,07250505, 844, 16, 0.4, 0.8, 0.6, 0.1, 0.0 +4.4,4.4,a-phys-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 751, 62, 1.1, 3.5, 2.4, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Natick - Bennett-Hemenway,01980005, 493, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Brown,01980010, 525, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 903, 21, 1.1, 0.8, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Natick - Johnson,01980031, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Lilja Elementary,01980035, 430, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Memorial,01980043, 440, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Natick - Natick High,01980505," 1,773", 17, 0.1, 0.6, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Natick - Wilson Middle,01980310, 785, 19, 1.7, 0.5, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Nauset - Nauset Regional High,06600505, 796, 30, 0.4, 0.9, 0.4, 2.0, 0.1 +8.0,5,a-phys-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 541, 36, 2.6, 1.8, 1.5, 0.7, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Broadmeadow,01990005, 513, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - High Rock School,01990410, 449, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - John Eliot,01990020, 430, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Needham - Needham High,01990505," 1,652", 9, 0.2, 0.1, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Newman Elementary,01990050, 723, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Needham - Pollard Middle,01990405, 826, 17, 1.5, 0.4, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 538, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - William Mitchell,01990040, 453, 5,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 822, 142, 5.8, 3.9, 3.9, 1.7, 1.9 +NA,NA,a-phys-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 681, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 542, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 239, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 368, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 603, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Charles S Ashley,02010010, 292, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 285, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 267, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 335, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 735, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 445, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - James B Congdon,02010040, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Jireh Swift,02010130, 264, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - John Avery Parker,02010115, 283, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - John B Devalles,02010050, 317, 2,"","","","","" +6.8,5,a-phys-i3,2022-23,New Bedford - Keith Middle School,02010405, 912, 42, 1.0, 1.8, 1.1, 0.4, 0.3 +7.2,5,a-phys-i3,2022-23,New Bedford - New Bedford High,02010505," 3,115", 138, 1.0, 2.3, 0.9, 0.1, 0.2 +7.2,5,a-phys-i3,2022-23,New Bedford - Normandin Middle School,02010410," 1,120", 86, 1.8, 4.4, 1.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 145, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 845, 52, 1.1, 3.0, 1.4, 0.6, 0.1 +NA,NA,a-phys-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 659, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 221, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 114, 17, 1.8, 7.9, 5.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 257, 40, 1.2, 4.7, 7.4, 1.9, 0.4 +NA,NA,a-phys-i3,2022-23,New Bedford - William H Taylor,02010135, 261, 1,"","","","","" +-2.0,1,a-phys-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 746, 94, 4.4, 2.7, 1.5, 1.5, 2.5 +NA,NA,a-phys-i3,2022-23,New Salem-Wendell - Swift River,07280015, 140, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 288, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 593, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newburyport - Newburyport High,02040505, 829, 7, 0.1, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 490, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - A E Angier,02070005, 384, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Bigelow Middle,02070305, 453, 15, 2.2, 0.9, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Bowen,02070015, 369, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - C C Burr,02070020, 373, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Cabot,02070025, 458, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Charles E Brown Middle,02070310, 776, 17, 1.5, 0.5, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Countryside,02070040, 395, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - F A Day Middle,02070315, 939, 18, 1.4, 0.2, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Franklin,02070055, 374, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Horace Mann,02070075, 367, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - John Ward,02070120, 199, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Lincoln-Eliot,02070070, 354, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Mason-Rice,02070080, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Memorial Spaulding,02070105, 406, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 240, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Newton North High,02070505," 2,145", 61, 1.4, 1.1, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Newton - Newton South High,02070510," 1,880", 16, 0.2, 0.3, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Newton - Oak Hill Middle,02070320, 676, 16, 1.6, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Peirce,02070100, 253, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Underwood,02070115, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Williams,02070125, 240, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Zervas,02070130, 419, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 528, 10, 1.5, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Norfolk - H Olive Day,02080015, 497, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 585, 26, 1.4, 1.2, 1.2, 0.5, 0.2 +1.5999999999999996,1.6,a-phys-i3,2022-23,North Adams - Brayton,02090035, 247, 20, 1.6, 3.6, 0.8, 0.4, 1.6 +4.8,4.8,a-phys-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 265, 9, 1.5, 1.1, 0.0, 0.0, 0.8 +-1.1999999999999993,1,a-phys-i3,2022-23,North Adams - Drury High,02090505, 515, 67, 1.6, 4.9, 2.3, 1.9, 2.3 +NA,NA,a-phys-i3,2022-23,North Adams - Greylock,02090015, 284, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 459, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Annie L Sargent School,02110018, 472, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Atkinson,02110001, 287, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Franklin,02110010, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Kittredge,02110015, 230, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,North Andover - North Andover High,02110505," 1,355", 25, 0.4, 1.1, 0.2, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,North Andover - North Andover Middle,02110305," 1,070", 33, 1.1, 1.1, 0.6, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,North Andover - Thomson,02110020, 318, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 422, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Community,02120030, 311, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Falls,02120010, 235, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 541, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,North Attleborough - North Attleboro High,02120505," 1,140", 28, 0.0, 0.7, 0.7, 0.4, 0.7 +NA,NA,a-phys-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 206, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 971, 18, 0.2, 0.7, 0.6, 0.1, 0.2 +NA,NA,a-phys-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 261, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 324, 14, 2.2, 0.9, 1.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,North Brookfield - North Brookfield High,02150505, 153, 15, 5.9, 2.6, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 147, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 474, 6, 0.4, 0.4, 0.2, 0.0, 0.2 +8.0,5,a-phys-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 495, 29, 2.0, 2.2, 1.4, 0.2, 0.0 +-2.0,1,a-phys-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 791, 71, 0.5, 2.1, 1.6, 2.1, 2.5 +NA,NA,a-phys-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 432, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 134, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Middlesex - Varnum Brook,07350035, 653, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - E Ethel Little School,02170003, 333, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - J Turner Hood,02170010, 393, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - L D Batchelder,02170005, 469, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - North Reading High,02170505, 649, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,North Reading - North Reading Middle,02170305, 547, 13, 1.6, 0.5, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Northampton - Bridge Street,02100005, 292, 6, 0.7, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Northampton - Jackson Street,02100020, 298, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 608, 35, 1.8, 2.1, 1.2, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Northampton - Leeds,02100025, 308, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Northampton - Northampton High,02100505, 921, 30, 1.1, 1.1, 0.4, 0.5, 0.1 +NA,NA,a-phys-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 240, 0,"","","","","" +0.7999999999999998,1,a-phys-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 570, 59, 2.5, 3.0, 2.1, 1.1, 1.8 +7.2,5,a-phys-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505," 1,232", 9, 0.2, 0.1, 0.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Northborough - Fannie E Proctor,02130015, 264, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Lincoln Street,02130003, 295, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Marion E Zeh,02130020, 256, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 560, 8, 0.0, 0.2, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Northbridge - Northbridge Elementary School,02140001," 1,007", 3,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Northbridge - Northbridge High,02140505, 520, 21, 0.4, 1.2, 0.2, 1.5, 0.8 +4.8,4.8,a-phys-i3,2022-23,Northbridge - Northbridge Middle,02140305, 487, 30, 0.6, 1.6, 1.8, 1.2, 0.8 +2.8,2.8,a-phys-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605," 1,305", 100, 1.7, 2.1, 1.8, 0.8, 1.3 +5.6,5,a-phys-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 540, 47, 1.3, 4.1, 2.4, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Norton - Henri A. Yelle,02180060, 339, 9, 1.5, 1.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Norton - J C Solmonese,02180015, 532, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norton - L G Nourse Elementary,02180010, 304, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norton - Norton High,02180505, 696, 13, 0.7, 0.4, 0.6, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Norton - Norton Middle,02180305, 563, 20, 1.6, 0.9, 0.7, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 527, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norwell - Norwell High,02190505, 603, 7, 0.0, 0.0, 0.8, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Norwell - Norwell Middle School,02190405, 499, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwell - William G Vinal,02190020, 539, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Balch,02200005, 337, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Charles J Prescott,02200025, 267, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 241, 1,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 826, 81, 3.6, 2.4, 2.3, 0.4, 1.1 +NA,NA,a-phys-i3,2022-23,Norwood - F A Cleveland,02200015, 327, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - George F. Willett,02200075, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - John P Oldham,02200020, 292, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Norwood - Norwood High,02200505, 993, 40, 0.7, 0.7, 0.8, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 471, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 565, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 638, 17, 0.3, 1.4, 0.8, 0.2, 0.0 +7.2,5,a-phys-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 428, 23, 0.5, 1.6, 2.1, 0.9, 0.2 +6.8,5,a-phys-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 365, 25, 4.1, 1.1, 1.4, 0.0, 0.3 +6.8,5,a-phys-i3,2022-23,Orange - Dexter Park,02230010, 301, 8, 0.3, 1.0, 1.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Orange - Fisher Hill,02230015, 242, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Orleans - Orleans Elementary,02240005, 153, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 309, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Oxford - Clara Barton,02260005, 284, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Oxford - Oxford High,02260505, 405, 40, 1.0, 3.2, 4.2, 1.2, 0.2 +6.4,5,a-phys-i3,2022-23,Oxford - Oxford Middle,02260405, 526, 44, 1.0, 4.2, 2.7, 0.2, 0.4 +6.8,5,a-phys-i3,2022-23,Palmer - Old Mill Pond,02270008, 639, 28, 1.6, 1.6, 0.9, 0.0, 0.3 +5.2,5,a-phys-i3,2022-23,Palmer - Palmer High,02270505, 553, 53, 0.9, 4.0, 3.6, 0.4, 0.7 +5.6,5,a-phys-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 651, 30, 0.9, 1.2, 1.2, 0.6, 0.6 +NA,NA,a-phys-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 282, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 390, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Center,02290015, 459, 5,"","","","","" +6.4,5,a-phys-i3,2022-23,Peabody - J Henry Higgins Middle,02290305," 1,387", 37, 0.9, 0.7, 0.6, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Peabody - John E Burke,02290007, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - John E. McCarthy,02290016, 388, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 139, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510," 1,534", 100, 1.4, 2.1, 2.1, 0.7, 0.3 +NA,NA,a-phys-i3,2022-23,Peabody - South Memorial,02290035, 496, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Thomas Carroll,02290010, 616, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - West Memorial,02290045, 273, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - William A Welch Sr,02290027, 242, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pelham - Pelham Elementary,02300005, 137, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 446, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 415, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 532, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 411, 6, 0.2, 0.7, 0.2, 0.0, 0.2 +6.0,5,a-phys-i3,2022-23,Pembroke - Pembroke High School,02310505, 747, 39, 0.7, 1.9, 1.2, 0.9, 0.5 +NA,NA,a-phys-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 234, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Pentucket - Dr John C Page School,07450015, 331, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 497, 10, 1.2, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 253, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 362, 18, 1.9, 2.5, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 598, 18, 0.8, 1.2, 0.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Petersham - Petersham Center,02340005, 127, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 255, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 155, 13, 4.5, 2.6, 1.3, 0.0, 0.0 +-6.0,1,a-phys-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 230, 27, 0.9, 1.3, 5.2, 0.9, 3.5 +NA,NA,a-phys-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 796, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 484, 11, 1.7, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 214, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 265, 11, 1.9, 1.5, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 555, 15, 1.8, 0.9, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 418, 19, 0.7, 1.9, 1.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Allendale,02360010, 285, 2,"","","","","" +0.0,1,a-phys-i3,2022-23,Pittsfield - Crosby,02360065, 299, 32, 3.3, 3.7, 1.0, 0.7, 2.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 29, 2,"","","","","" +-17.2,1,a-phys-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 32, 16, 6.3, 15.6, 15.6, 6.3, 6.3 +6.0,5,a-phys-i3,2022-23,Pittsfield - Egremont,02360035, 399, 17, 2.5, 1.0, 0.3, 0.0, 0.5 +-15.2,1,a-phys-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 498, 114, 2.0, 6.0, 6.6, 2.4, 5.8 +NA,NA,a-phys-i3,2022-23,Pittsfield - Morningside Community School,02360055, 386, 1,"","","","","" +0.0,1,a-phys-i3,2022-23,Pittsfield - Pittsfield High,02360505, 706, 109, 5.7, 3.7, 3.3, 0.8, 2.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 187, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 400, 23, 2.3, 1.3, 1.8, 0.0, 0.5 +8.0,5,a-phys-i3,2022-23,Pittsfield - Stearns,02360090, 238, 11, 1.3, 2.5, 0.8, 0.0, 0.0 +1.5999999999999996,1.6,a-phys-i3,2022-23,Pittsfield - Taconic High,02360510, 885, 204, 6.8, 8.7, 4.6, 1.4, 1.6 +4.8,4.8,a-phys-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 522, 38, 1.0, 3.1, 1.9, 0.6, 0.8 +NA,NA,a-phys-i3,2022-23,Pittsfield - Williams,02360100, 263, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 310, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 366, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Cold Spring,02390005, 232, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Federal Furnace School,02390011, 423, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Hedge,02390010, 236, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Indian Brook,02390012, 587, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Manomet Elementary,02390015, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 527, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 913, 84, 4.8, 1.8, 1.2, 0.7, 0.8 +NA,NA,a-phys-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 265, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Plymouth - Plymouth North High,02390505," 1,331", 131, 3.4, 2.2, 1.6, 1.4, 1.3 +-1.5999999999999996,1,a-phys-i3,2022-23,Plymouth - Plymouth South High,02390515," 1,042", 144, 4.6, 3.0, 2.4, 1.4, 2.4 +5.6,5,a-phys-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 633, 58, 2.7, 3.3, 2.2, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Plymouth - South Elementary,02390046, 630, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - West Elementary,02390047, 325, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Plympton - Dennett Elementary,02400010, 241, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550," 1,034", 58, 2.6, 1.8, 0.8, 0.3, 0.1 +NA,NA,a-phys-i3,2022-23,Provincetown - Provincetown Schools,02420020, 151, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 208, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Hubbardston Center,07530010, 323, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - New Braintree Grade,07530020, 41, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Oakham Center,07530025, 181, 0,"","","","","" +-3.5999999999999996,1,a-phys-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 581, 54, 1.2, 1.5, 2.1, 1.5, 2.9 +4.4,4.4,a-phys-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 540, 34, 1.7, 2.0, 1.3, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Quabbin - Ruggles Lane,07530030, 407, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 57, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 364, 26, 1.1, 1.9, 1.6, 1.6, 0.8 +8.0,5,a-phys-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 205, 13, 2.0, 1.5, 2.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 332, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 263, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 231, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Atherton Hough,02430040, 272, 2,"","","","","" +7.2,5,a-phys-i3,2022-23,Quincy - Atlantic Middle,02430305, 583, 28, 0.9, 2.7, 1.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 345, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 336, 6, 0.3, 0.6, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Quincy - Central Middle,02430315, 659, 6, 0.3, 0.5, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 573, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Francis W Parker,02430075, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 601, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Merrymount,02430060, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Montclair,02430065, 452, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Quincy - North Quincy High,02430510," 1,524", 43, 0.6, 0.7, 0.9, 0.2, 0.5 +7.2,5,a-phys-i3,2022-23,Quincy - Point Webster Middle,02430325, 468, 27, 2.1, 2.6, 0.6, 0.2, 0.2 +5.2,5,a-phys-i3,2022-23,Quincy - Quincy High,02430505," 1,577", 102, 1.3, 1.6, 2.2, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 473, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Quincy - South West Middle School,02430320, 470, 58, 3.0, 5.3, 2.6, 0.9, 0.6 +NA,NA,a-phys-i3,2022-23,Quincy - Squantum,02430095, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Wollaston School,02430110, 344, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 545, 59, 2.6, 6.1, 1.1, 0.4, 0.7 +8.0,5,a-phys-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 320, 7, 0.3, 1.9, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 542, 9, 1.1, 0.4, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Randolph - Margaret L Donovan,02440015, 463, 6, 0.0, 0.4, 0.4, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 267, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Randolph - Randolph Community Middle,02440410, 616, 67, 3.6, 5.2, 1.8, 0.2, 0.2 +6.8,5,a-phys-i3,2022-23,Randolph - Randolph High,02440505, 678, 35, 1.6, 1.5, 1.5, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Reading - Alice M Barrows,02460002, 366, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 431, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Birch Meadow,02460005, 361, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - J Warren Killam,02460017, 417, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Joshua Eaton,02460010, 395, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - RISE PreSchool,02460001, 128, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Reading - Reading Memorial High,02460505," 1,116", 31, 1.8, 0.4, 0.3, 0.1, 0.2 +8.0,5,a-phys-i3,2022-23,Reading - Walter S Parker Middle,02460310, 471, 14, 1.5, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Reading - Wood End Elementary School,02460020, 249, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 783, 9, 0.1, 0.8, 0.1, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Revere - Abraham Lincoln,02480025, 694, 6, 0.0, 0.4, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 389, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Revere - CityLab Innovation High School,02480520, 107, 21, 4.7, 9.3, 4.7, 0.9, 0.0 +NA,NA,a-phys-i3,2022-23,Revere - Garfield Elementary School,02480056, 765, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,Revere - Garfield Middle School,02480057, 607, 17, 0.7, 0.3, 0.5, 0.2, 1.2 +NA,NA,a-phys-i3,2022-23,Revere - Paul Revere,02480050, 499, 5,"","","","","" +5.6,5,a-phys-i3,2022-23,Revere - Revere High,02480505," 2,257", 95, 0.5, 1.3, 1.5, 0.3, 0.6 +6.0,5,a-phys-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 602, 47, 1.8, 2.8, 2.3, 0.3, 0.5 +NA,NA,a-phys-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 706, 2,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 610, 29, 0.3, 1.3, 1.5, 0.5, 1.1 +NA,NA,a-phys-i3,2022-23,Richmond - Richmond Consolidated,02490005, 155, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 660, 50, 2.9, 2.0, 1.2, 0.6, 0.9 +NA,NA,a-phys-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rochester - Rochester Memorial,02500005, 505, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 253, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Rockland - John W Rogers Middle,02510305, 734, 80, 3.7, 2.7, 2.6, 1.1, 0.8 +NA,NA,a-phys-i3,2022-23,Rockland - Memorial Park,02510020, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rockland - R Stewart Esten,02510025, 326, 2,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Rockland - Rockland Senior High,02510505, 674, 61, 1.3, 2.1, 2.2, 1.5, 1.9 +8.0,5,a-phys-i3,2022-23,Rockport - Rockport Elementary,02520005, 316, 6, 1.6, 0.0, 0.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,Rockport - Rockport High,02520510, 235, 11, 0.9, 3.4, 0.0, 0.0, 0.4 +8.0,5,a-phys-i3,2022-23,Rockport - Rockport Middle,02520305, 195, 10, 1.0, 2.1, 1.0, 1.0, 0.0 +NA,NA,a-phys-i3,2022-23,Rowe - Rowe Elementary,02530005, 70, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505," 1,385", 92, 0.4, 2.1, 2.0, 1.4, 0.7 +NA,NA,a-phys-i3,2022-23,Salem - Bates,02580003, 419, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 299, 17, 3.7, 1.7, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Salem - Carlton,02580015, 265, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Salem - Collins Middle,02580305, 670, 58, 2.8, 3.3, 1.8, 0.1, 0.6 +8.0,5,a-phys-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 326, 18, 2.5, 2.1, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Salem - New Liberty Innovation School,02580510, 70, 8, 4.3, 7.1, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Salem - Salem Early Childhood,02580001, 131, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Salem - Salem High,02580505, 985, 27, 1.0, 0.9, 0.3, 0.4, 0.1 +NA,NA,a-phys-i3,2022-23,Salem - Salem Prep High School,02580515, 21, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Salem - Saltonstall School,02580050, 417, 33, 4.6, 1.4, 1.2, 0.0, 0.7 +NA,NA,a-phys-i3,2022-23,Salem - Witchcraft Heights,02580070, 475, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 489, 24, 1.6, 1.8, 1.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Sandwich - Forestdale School,02610002, 574, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Sandwich - Oak Ridge,02610025, 690, 27, 2.2, 1.6, 0.0, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 955, 50, 2.4, 1.3, 1.4, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 852, 12, 0.8, 0.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Saugus - Saugus High,02620505, 762, 25, 0.9, 1.4, 0.9, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Saugus - Saugus Middle School,02620305, 638, 37, 2.8, 1.3, 0.6, 0.8, 0.3 +NA,NA,a-phys-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 469, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 40, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Cushing Elementary,02640007, 355, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Scituate - Gates Middle School,02640305, 610, 10, 0.5, 1.1, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Scituate - Hatherly Elementary,02640010, 259, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Scituate High School,02640505, 770, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 469, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 497, 32, 3.0, 2.2, 0.8, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Seekonk - George R Martin,02650007, 465, 7, 1.3, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 597, 3,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Seekonk - Seekonk High,02650505, 547, 51, 2.0, 3.1, 2.9, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4,"","","","","","" +NA,NA,a-phys-i3,2022-23,Sharon - Cottage Street,02660005, 456, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sharon - East Elementary,02660010, 501, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Sharon - Heights Elementary,02660015, 581, 7, 0.5, 0.3, 0.0, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 67, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Sharon - Sharon High,02660505," 1,153", 35, 1.0, 1.2, 0.7, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Sharon - Sharon Middle,02660305, 861, 5,"","","","","" +6.8,5,a-phys-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605," 1,313", 63, 1.3, 1.4, 1.3, 0.5, 0.3 +NA,NA,a-phys-i3,2022-23,Sherborn - Pine Hill,02690010, 412, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 266, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Floral Street School,02710020, 571, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 633, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 969, 10, 0.3, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 231, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 980, 11, 0.3, 0.6, 0.1, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505," 1,863", 43, 0.0, 1.0, 0.4, 0.8, 0.1 +NA,NA,a-phys-i3,2022-23,Shrewsbury - Spring Street School,02710035, 313, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 301, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 126, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505," 1,071", 49, 1.1, 1.8, 0.9, 0.4, 0.4 +5.6,5,a-phys-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 540, 26, 2.2, 1.3, 0.6, 0.2, 0.6 +6.0,5,a-phys-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 377, 46, 5.0, 4.2, 1.9, 0.5, 0.5 +8.0,5,a-phys-i3,2022-23,Somerset - Chace Street,02730005, 330, 6, 1.5, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Somerset - North Elementary,02730008, 476, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Somerset - Somerset Middle School,02730305, 588, 31, 1.4, 1.9, 0.9, 0.5, 0.7 +NA,NA,a-phys-i3,2022-23,Somerset - South,02730015, 268, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505," 1,020", 122, 3.2, 2.4, 3.7, 1.4, 1.3 +8.0,5,a-phys-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 592, 16, 1.4, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Somerville - Arthur D Healey,02740075, 553, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Somerville - Benjamin G Brown,02740015, 220, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 263, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Somerville - E Somerville Community,02740111, 756, 15, 0.5, 0.9, 0.5, 0.0, 0.0 +-19.2,1,a-phys-i3,2022-23,Somerville - Full Circle High School,02740510, 74, 32, 12.2, 16.2, 4.1, 4.1, 6.8 +7.2,5,a-phys-i3,2022-23,Somerville - John F Kennedy,02740083, 449, 9, 0.9, 0.7, 0.2, 0.0, 0.2 +-46.4,1,a-phys-i3,2022-23,Somerville - Next Wave Junior High,02740410, 22, 11, 0.0, 4.5, 13.6, 18.2, 13.6 +3.2,3.2,a-phys-i3,2022-23,Somerville - Somerville High,02740505," 1,373", 93, 1.0, 3.1, 1.3, 0.1, 1.2 +NA,NA,a-phys-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 380, 4,"","","","","" +7.2,5,a-phys-i3,2022-23,Somerville - Winter Hill Community,02740120, 454, 25, 2.2, 1.5, 0.9, 0.7, 0.2 +4.4,4.4,a-phys-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 536, 33, 1.7, 1.5, 1.1, 0.9, 0.9 +8.0,5,a-phys-i3,2022-23,South Hadley - Mosier,02780020, 356, 9, 1.4, 0.8, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,South Hadley - Plains Elementary,02780015, 341, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,South Hadley - South Hadley High,02780505, 518, 57, 2.5, 3.1, 2.9, 1.4, 1.2 +7.6,5,a-phys-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 856, 24, 0.5, 0.5, 0.5, 1.3, 0.1 +8.0,5,a-phys-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550," 1,085", 6, 0.2, 0.1, 0.3, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 658, 34, 0.9, 1.5, 2.3, 0.2, 0.3 +8.0,5,a-phys-i3,2022-23,Southampton - William E Norris,02750005, 492, 7, 0.6, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - Margaret A Neary,02760020, 271, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - Mary E Finn School,02760008, 379, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - P Brent Trottier,02760305, 390, 2,"","","","","" +5.2,5,a-phys-i3,2022-23,Southbridge - Charlton Street,02770005, 280, 27, 3.9, 2.5, 2.1, 0.4, 0.7 +8.0,5,a-phys-i3,2022-23,Southbridge - Eastford Road,02770010, 396, 9, 1.0, 1.0, 0.3, 0.0, 0.0 +-39.6,1,a-phys-i3,2022-23,Southbridge - Southbridge Academy,02770525, 42, 22, 4.8, 19.0, 11.9, 4.8, 11.9 +-8.8,1,a-phys-i3,2022-23,Southbridge - Southbridge High School,02770515, 501, 61, 1.2, 3.0, 2.0, 1.8, 4.2 +8.0,5,a-phys-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 435, 44, 5.3, 2.5, 1.8, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Southbridge - West Street,02770020, 365, 42, 2.5, 5.8, 2.5, 0.8, 0.0 +6.8,5,a-phys-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605," 1,583", 50, 0.6, 0.9, 1.0, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 301, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 69, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - South Egremont,07650030, 13, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - Undermountain,07650035, 249, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,196", 71, 1.3, 1.4, 2.0, 0.9, 0.3 +8.0,5,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 397, 7, 0.8, 1.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 648, 37, 0.8, 3.2, 1.4, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 339, 2,"","","","","" +-3.5999999999999996,1,a-phys-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 379, 23, 0.3, 0.3, 1.3, 1.3, 2.9 +NA,NA,a-phys-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 266, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 394, 44, 2.8, 3.3, 2.8, 1.0, 1.3 +8.0,5,a-phys-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 451, 9, 0.9, 0.9, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 438, 15, 1.1, 2.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 328, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 243, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Balliet Preschool,02810003, 184, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Brightwood,02810025, 517, 3,"","","","","" +6.4,5,a-phys-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 280, 11, 1.1, 1.8, 0.7, 0.0, 0.4 +8.0,5,a-phys-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 325, 16, 0.6, 2.2, 1.8, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Daniel B Brunton,02810035, 406, 12, 0.0, 2.2, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 231, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Edward P. Boland School,02810010, 617, 9, 0.2, 0.6, 0.3, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Elias Brookings,02810030, 292, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Emergence Academy,02810318, 196, 15, 1.0, 5.6, 1.0, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield - Forest Park Middle,02810325, 412, 72, 1.9, 6.1, 6.6, 2.4, 0.5 +NA,NA,a-phys-i3,2022-23,Springfield - Frank H Freedman,02810075, 295, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Frederick Harris,02810080, 623, 10, 0.0, 1.1, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 40, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 38, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - German Gerena Community School,02810195, 644, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Glenwood,02810065, 312, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Glickman Elementary,02810068, 344, 6, 1.2, 0.6, 0.0, 0.0, 0.0 +3.2,3.2,a-phys-i3,2022-23,Springfield - High School Of Commerce,02810510," 1,219", 130, 1.6, 5.1, 2.0, 0.7, 1.2 +NA,NA,a-phys-i3,2022-23,Springfield - Hiram L Dorman,02810050, 308, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Homer Street,02810085, 453, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 231, 50, 1.7, 11.3, 6.1, 1.7, 0.9 +NA,NA,a-phys-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 618, 4,"","","","","" +-8.399999999999999,1,a-phys-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 443, 96, 3.6, 6.1, 6.1, 1.8, 4.1 +-7.6,1,a-phys-i3,2022-23,Springfield - John J Duggan Academy,02810320, 863, 162, 2.7, 5.9, 5.0, 1.3, 3.9 +NA,NA,a-phys-i3,2022-23,Springfield - Kensington International School,02810110, 277, 2,"","","","","" +-10.0,1,a-phys-i3,2022-23,Springfield - Kiley Academy,02810316, 356, 81, 3.4, 7.6, 5.1, 2.2, 4.5 +4.0,4.0,a-phys-i3,2022-23,Springfield - Kiley Prep,02810315, 309, 77, 5.2, 10.4, 6.1, 2.3, 1.0 +NA,NA,a-phys-i3,2022-23,Springfield - Liberty,02810115, 275, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 23, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Lincoln,02810120, 487, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Margaret C Ells,02810060, 211, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 315, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary M Lynch,02810140, 239, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary M Walsh,02810155, 281, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Mary O Pottenger,02810145, 436, 7, 0.0, 0.7, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Milton Bradley School,02810023, 575, 9, 0.0, 1.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 654, 9, 0.2, 0.6, 0.6, 0.0, 0.0 +-2.8000000000000007,1,a-phys-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 263, 62, 6.5, 4.9, 7.6, 1.9, 2.7 +8.0,5,a-phys-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620," 1,396", 92, 1.6, 2.9, 1.8, 0.2, 0.0 +6.8,5,a-phys-i3,2022-23,Springfield - STEM Middle Academy,02810350, 307, 12, 0.3, 1.6, 1.3, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Springfield - Samuel Bowles,02810020, 234, 2,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Springfield - South End Middle School,02810355, 204, 36, 1.0, 8.8, 5.4, 1.5, 1.0 +3.5999999999999996,3.6,a-phys-i3,2022-23,Springfield - Springfield Central High,02810500," 2,219", 163, 0.4, 1.9, 1.6, 2.3, 1.1 +0.0,1,a-phys-i3,2022-23,Springfield - Springfield High School,02810570, 346, 27, 0.9, 2.3, 1.7, 0.9, 2.0 +6.4,5,a-phys-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530," 1,175", 94, 0.3, 2.8, 3.2, 1.3, 0.4 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 104, 1,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 352, 59, 3.7, 6.3, 4.3, 1.7, 0.9 +-1.5999999999999996,1,a-phys-i3,2022-23,Springfield - Springfield Middle School,02810360, 42, 9, 2.4, 9.5, 4.8, 2.4, 2.4 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 48, 1,"","","","","" +-2.4000000000000004,1,a-phys-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 78, 15, 0.0, 15.4, 0.0, 1.3, 2.6 +8.0,5,a-phys-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 77, 8, 0.0, 9.1, 1.3, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 145, 32, 6.2, 11.7, 2.8, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 151, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Sumner Avenue,02810160, 531, 6, 0.4, 0.6, 0.2, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 648, 68, 3.2, 3.4, 2.3, 1.1, 0.5 +NA,NA,a-phys-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 453, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Thomas M Balliet,02810015, 298, 11, 2.0, 0.7, 1.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Van Sickle Academy,02810485, 288, 26, 0.7, 4.2, 3.8, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Warner,02810180, 280, 18, 0.0, 5.0, 1.1, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Washington,02810185, 454, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - White Street,02810190, 468, 16, 1.3, 0.6, 1.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - William N. DeBerry,02810045, 290, 20, 3.4, 2.1, 1.4, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505," 1,556", 87, 0.9, 2.1, 2.0, 0.1, 0.5 +7.2,5,a-phys-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 503, 35, 3.2, 2.4, 1.0, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Stoneham - Colonial Park,02840005, 260, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoneham - Robin Hood,02840025, 401, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoneham - South,02840030, 375, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 691, 10, 1.0, 0.3, 0.0, 0.1, 0.0 +6.8,5,a-phys-i3,2022-23,Stoneham - Stoneham High,02840505, 635, 62, 4.4, 3.3, 1.7, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 275, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 361, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 398, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 849, 68, 1.9, 2.5, 2.1, 0.7, 0.8 +NA,NA,a-phys-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 342, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - South Elementary,02850015, 292, 0,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Stoughton - Stoughton High,02850505," 1,118", 91, 2.8, 2.3, 0.9, 1.2, 1.0 +NA,NA,a-phys-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 905, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 852, 14, 0.2, 0.4, 0.4, 0.4, 0.4 +8.0,5,a-phys-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 861, 31, 2.4, 0.8, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 331, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Israel Loring School,02880015, 436, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Josiah Haynes,02880010, 382, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Peter Noyes,02880030, 590, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 189, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Early Learning,02900003, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Elementary,02900005, 311, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton High School,02900510, 379, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Middle School,02900305, 302, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Clarke,02910005, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Hadley,02910010, 362, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Stanley,02910020, 164, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Swampscott - Swampscott High,02910505, 660, 20, 0.6, 2.3, 0.0, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Swampscott - Swampscott Middle,02910305, 705, 10, 0.9, 0.4, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 293, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Swansea - Gardner,02920015, 260, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Swansea - Joseph Case High,02920505, 552, 42, 3.1, 2.9, 0.9, 0.7, 0.0 +5.6,5,a-phys-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 501, 18, 0.0, 2.4, 0.6, 0.0, 0.6 +NA,NA,a-phys-i3,2022-23,Swansea - Joseph G Luther,02920020, 184, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 254, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900," 3,551", 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 560, 36, 2.5, 0.7, 1.8, 0.9, 0.5 +7.6,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 694, 20, 0.0, 1.0, 1.0, 0.7, 0.1 +6.4,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 534, 38, 0.2, 1.7, 3.9, 0.9, 0.4 +8.0,5,a-phys-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 752, 31, 2.0, 0.9, 0.9, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - East Taunton Elementary,02930010, 548, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 301, 6, 0.3, 1.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 355, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Taunton - Elizabeth Pole,02930027, 669, 7, 0.4, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - H H Galligan,02930057, 279, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 900, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Taunton - John F Parker Middle,02930305, 551, 36, 4.0, 1.6, 0.7, 0.0, 0.2 +7.2,5,a-phys-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 476, 6, 0.4, 0.4, 0.0, 0.2, 0.2 +6.8,5,a-phys-i3,2022-23,Taunton - Joseph H Martin,02930042, 657, 70, 5.2, 3.3, 1.5, 0.3, 0.3 +8.0,5,a-phys-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 116, 15, 0.0, 3.4, 7.8, 1.7, 0.0 +-3.1999999999999993,1,a-phys-i3,2022-23,Taunton - Taunton High,02930505," 2,905", 341, 0.8, 2.3, 3.4, 2.4, 2.8 +NA,NA,a-phys-i3,2022-23,Tewksbury - Heath-Brook,02950010, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - John F. Ryan,02950023, 526, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 512, 6, 0.6, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Tewksbury - L F Dewing,02950001, 653, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 217, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - North Street,02950020, 284, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 777, 23, 0.3, 1.0, 1.3, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 303, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Topsfield - Proctor Elementary,02980005, 262, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Topsfield - Steward Elementary,02980010, 379, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 967, 62, 0.9, 2.3, 2.6, 0.4, 0.2 +NA,NA,a-phys-i3,2022-23,Triton - Newbury Elementary,07730020, 419, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Triton - Pine Grove,07730025, 441, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Triton - Salisbury Elementary,07730015, 436, 4,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Triton - Triton Regional High School,07730505, 665, 40, 1.5, 1.5, 1.7, 0.6, 0.8 +8.0,5,a-phys-i3,2022-23,Triton - Triton Regional Middle School,07730405, 325, 11, 1.2, 1.2, 0.6, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Truro - Truro Central,03000005, 106, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 772, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 422, 8, 0.0, 0.9, 0.7, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 409, 8, 0.0, 1.7, 0.2, 0.0, 0.0 +2.8,2.8,a-phys-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 225, 26, 2.2, 3.1, 3.1, 1.8, 1.3 +6.8,5,a-phys-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 643, 39, 2.5, 1.7, 0.2, 1.4, 0.3 +NA,NA,a-phys-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 70, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 360, 8, 0.8, 0.8, 0.3, 0.0, 0.3 +2.4000000000000004,2.4,a-phys-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 775, 94, 3.1, 1.7, 2.6, 3.4, 1.4 +NA,NA,a-phys-i3,2022-23,Uxbridge - Gateway to College,03040515, 49, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 560, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,Uxbridge - Uxbridge High,03040505, 605, 39, 2.3, 1.3, 0.7, 1.0, 1.2 +8.0,5,a-phys-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 499, 25, 2.4, 1.6, 1.0, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 508, 48, 0.4, 5.1, 2.8, 0.4, 0.8 +8.0,5,a-phys-i3,2022-23,Wachusett - Central Tree Middle,07750310, 377, 8, 1.3, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 287, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 454, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Dawson,07750020, 512, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Early Childhood Center,07750001, 164, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 340, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Houghton Elementary,07750027, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 494, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wachusett - Mountview Middle,07750305, 780, 7, 0.1, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 373, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Paxton Center,07750040, 456, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Thomas Prince,07750045, 346, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Wachusett - Wachusett Regional High,07750505," 1,965", 78, 1.2, 1.1, 1.1, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Wakefield - Dolbeare,03050005, 442, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 140, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wakefield - Galvin Middle School,03050310," 1,077", 25, 1.3, 1.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wakefield - Greenwood,03050020, 220, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 840, 7, 0.1, 0.2, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wakefield - Walton,03050040, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wakefield - Woodville School,03050015, 435, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wales - Wales Elementary,03060005, 99, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Walpole - Bird Middle,03070305, 383, 7, 1.0, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Walpole - Boyden,03070010, 425, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 115, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 423, 16, 1.7, 1.4, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Walpole - Elm Street School,03070005, 454, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Fisher,03070015, 479, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Old Post Road,03070018, 466, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Walpole - Walpole High,03070505," 1,014", 44, 1.5, 1.2, 0.7, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 517, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 413, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 397, 3,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 636, 48, 2.2, 3.0, 1.1, 0.5, 0.8 +4.4,4.4,a-phys-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 633, 82, 4.1, 4.3, 3.3, 0.3, 0.9 +8.0,5,a-phys-i3,2022-23,Waltham - Northeast Elementary School,03080040, 582, 9, 0.9, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 390, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 214, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Waltham - Waltham Sr High,03080505," 1,921", 149, 1.5, 2.8, 2.3, 0.7, 0.4 +8.0,5,a-phys-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 424, 7, 0.5, 1.2, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 414, 7, 1.0, 0.5, 0.2, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 525, 33, 0.6, 2.3, 1.7, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Ware - Ware Middle School,03090305, 259, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 39, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wareham - Wareham Elementary School,03100017, 974, 5,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Wareham - Wareham Middle,03100305, 445, 69, 2.2, 8.5, 2.0, 1.1, 1.6 +-1.1999999999999993,1,a-phys-i3,2022-23,Wareham - Wareham Senior High,03100505, 649, 160, 7.2, 6.8, 6.8, 1.5, 2.3 +NA,NA,a-phys-i3,2022-23,Watertown - Cunniff,03140015, 335, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Watertown - Hosmer,03140020, 789, 8, 0.5, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Watertown - James Russell Lowell,03140025, 379, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Watertown - Watertown High,03140505, 777, 14, 0.4, 0.9, 0.3, 0.1, 0.1 +6.4,5,a-phys-i3,2022-23,Watertown - Watertown Middle,03140305, 552, 15, 1.3, 0.7, 0.2, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Wayland - Claypit Hill School,03150005, 511, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - Happy Hollow School,03150015, 367, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - Loker School,03150020, 388, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 71, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wayland - Wayland High School,03150505, 830, 7, 0.2, 0.4, 0.1, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Wayland - Wayland Middle School,03150305, 628, 27, 2.7, 1.6, 0.0, 0.0, 0.0 +-8.399999999999999,1,a-phys-i3,2022-23,Webster - Bartlett High School,03160505, 393, 64, 3.6, 4.6, 2.3, 1.8, 4.1 +8.0,5,a-phys-i3,2022-23,Webster - Park Avenue Elementary,03160015, 836, 16, 0.7, 0.7, 0.5, 0.0, 0.0 +0.0,1,a-phys-i3,2022-23,Webster - Webster Middle School,03160315, 636, 66, 2.4, 1.6, 1.6, 2.8, 2.0 +NA,NA,a-phys-i3,2022-23,Wellesley - Ernest F Upham,03170050, 161, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Hunnewell,03170025, 202, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - John D Hardy,03170020, 212, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 273, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 120, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Schofield,03170045, 338, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 296, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wellesley - Wellesley Middle,03170305, 940, 42, 2.6, 1.3, 0.5, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Wellesley - Wellesley Sr High,03170505," 1,424", 14, 0.6, 0.3, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 98, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 445, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 442, 15, 1.1, 1.6, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,West Bridgewater - Howard School,03230305, 319, 8, 1.3, 0.9, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 320, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,West Bridgewater - Spring Street School,03230005, 171, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 655, 42, 1.7, 2.3, 1.1, 0.5, 0.9 +NA,NA,a-phys-i3,2022-23,West Springfield - John Ashley,03320005, 187, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,West Springfield - John R Fausey,03320010, 435, 6, 1.1, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,West Springfield - Memorial,03320025, 211, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,West Springfield - Mittineague,03320030, 154, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,West Springfield - Philip G Coburn,03320007, 639, 9, 0.6, 0.2, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,West Springfield - Tatham,03320040, 233, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 151, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,West Springfield - West Springfield High,03320505," 1,256", 67, 1.1, 1.4, 1.9, 0.6, 0.2 +7.6,5,a-phys-i3,2022-23,West Springfield - West Springfield Middle,03320305, 965, 50, 1.1, 2.1, 1.5, 0.4, 0.1 +NA,NA,a-phys-i3,2022-23,Westborough - Annie E Fales,03210010, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 544, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - J Harding Armstrong,03210005, 431, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Mill Pond School,03210045, 910, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 610, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westborough - Westborough High,03210505," 1,212", 12, 0.2, 0.7, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westfield - Abner Gibbs,03250020, 188, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 178, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Franklin Ave,03250015, 180, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Highland,03250025, 385, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Munger Hill,03250033, 365, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Westfield - Paper Mill,03250036, 354, 9, 1.1, 0.8, 0.6, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Westfield - Southampton Road,03250040, 337, 10, 1.2, 1.2, 0.3, 0.0, 0.3 +-4.800000000000001,1,a-phys-i3,2022-23,Westfield - Westfield High,03250505," 1,081", 152, 3.2, 1.9, 4.7, 0.9, 3.2 +8.0,5,a-phys-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 693, 34, 1.2, 2.2, 1.3, 0.3, 0.0 +7.6,5,a-phys-i3,2022-23,Westfield - Westfield Middle School,03250310, 715, 73, 2.7, 3.9, 2.8, 0.7, 0.1 +6.0,5,a-phys-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 557, 27, 0.5, 1.6, 0.9, 1.3, 0.5 +NA,NA,a-phys-i3,2022-23,Westfield - Westfield Virtual School,03250705, 130, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Abbot Elementary,03260004, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Blanchard Middle,03260310, 552, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Col John Robinson,03260025, 363, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Day Elementary,03260007, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 352, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Nabnasset,03260015, 387, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 315, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Stony Brook School,03260330, 620, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westford - Westford Academy,03260505," 1,537", 14, 0.6, 0.2, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 105, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Country,03300010, 341, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Field Elementary School,03300012, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Weston High,03300505, 649, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Weston Middle,03300305, 449, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Woodland,03300015, 326, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westport - Alice A Macomber,03310015, 184, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westport - Westport Elementary,03310030, 453, 7, 0.9, 0.7, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Westport - Westport Middle-High School,03310515, 849, 59, 4.1, 1.5, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westwood - Deerfield School,03350010, 201, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - Downey,03350012, 317, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westwood - E W Thurston Middle,03350305, 667, 9, 1.0, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westwood - Martha Jones,03350017, 267, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - Paul Hanlon,03350015, 231, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Westwood - Westwood High,03350505, 915, 20, 0.9, 0.8, 0.2, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 51, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - William E Sheehan,03350025, 291, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Academy Avenue,03360005, 354, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 289, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 219, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 267, 8, 1.9, 1.1, 0.0, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,240", 166, 5.1, 3.2, 3.4, 0.9, 0.8 +NA,NA,a-phys-i3,2022-23,Weymouth - Ralph Talbot,03360085, 272, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Thomas V Nash,03360060, 250, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 366, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Wessagusset,03360110, 353, 3,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Weymouth - Weymouth High School,03360505," 1,862", 258, 4.7, 3.7, 3.2, 0.7, 1.6 +NA,NA,a-phys-i3,2022-23,Weymouth - William Seach,03360080, 392, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Whately - Whately Elementary,03370005, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 450, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 490, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 493, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 115, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505," 1,113", 52, 0.3, 1.3, 2.1, 0.2, 0.8 +8.0,5,a-phys-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 521, 18, 1.2, 1.9, 0.2, 0.2, 0.0 +6.0,5,a-phys-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,295", 84, 0.6, 2.2, 1.9, 1.3, 0.5 +NA,NA,a-phys-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 133, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - Boutwell,03420005, 150, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - North Intermediate,03420060, 253, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 399, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - West Intermediate,03420080, 305, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Wilmington - Wilmington High,03420505, 677, 15, 0.1, 1.2, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 640, 13, 0.5, 1.1, 0.3, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Wilmington - Woburn Street,03420020, 432, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Memorial,03430040, 333, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 27, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Winchendon - Murdock High School,03430515, 281, 35, 0.4, 5.0, 5.7, 0.4, 1.1 +5.2,5,a-phys-i3,2022-23,Winchendon - Murdock Middle School,03430315, 280, 36, 3.6, 6.4, 0.4, 1.8, 0.7 +NA,NA,a-phys-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 299, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 85, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Ambrose Elementary,03440045, 345, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Lincoln Elementary,03440005, 334, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Lynch Elementary,03440020, 495, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - McCall Middle,03440305," 1,045", 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Muraco Elementary,03440040, 334, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 444, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Winchester - Winchester High School,03440505," 1,411", 9, 0.1, 0.4, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 449, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 534, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Winthrop - Winthrop High School,03460505, 629, 24, 0.3, 2.4, 0.8, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 443, 9, 0.0, 1.4, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Woburn - Clyde Reeves,03470040, 460, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 469, 13, 1.1, 0.4, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 352, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 404, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 538, 17, 0.7, 1.1, 0.7, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Woburn - Linscott-Rumford,03470025, 204, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Malcolm White,03470055, 338, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Mary D Altavesta,03470065, 218, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Shamrock,03470043, 303, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Woburn High,03470505," 1,228", 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Belmont Street Community,03480020, 672, 7, 0.4, 0.4, 0.1, 0.0, 0.0 +-1.5999999999999996,1,a-phys-i3,2022-23,Worcester - Burncoat Middle School,03480405, 755, 95, 0.8, 5.2, 2.6, 1.6, 2.4 +4.4,4.4,a-phys-i3,2022-23,Worcester - Burncoat Senior High,03480503," 1,267", 70, 1.7, 2.0, 0.6, 0.2, 0.9 +8.0,5,a-phys-i3,2022-23,Worcester - Burncoat Street,03480035, 255, 7, 0.4, 2.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Canterbury,03480045, 373, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 492, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Chandler Magnet,03480052, 422, 15, 0.9, 2.1, 0.5, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Worcester - City View,03480053, 512, 15, 1.4, 1.4, 0.0, 0.0, 0.2 +4.4,4.4,a-phys-i3,2022-23,Worcester - Claremont Academy,03480350, 531, 52, 4.7, 2.4, 1.5, 0.2, 0.9 +NA,NA,a-phys-i3,2022-23,Worcester - Clark St Community,03480055, 309, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Columbus Park,03480060, 434, 16, 2.3, 1.2, 0.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Worcester - Doherty Memorial High,03480512," 1,431", 112, 3.6, 2.2, 1.4, 0.4, 0.1 +7.2,5,a-phys-i3,2022-23,Worcester - Elm Park Community,03480095, 463, 16, 1.9, 0.9, 0.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Worcester - Flagg Street,03480090, 376, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Worcester - Forest Grove Middle,03480415, 945, 73, 2.2, 2.8, 1.5, 0.7, 0.5 +NA,NA,a-phys-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 245, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Gates Lane,03480110, 595, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 445, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Grafton Street,03480115, 498, 10, 1.6, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Head Start,03480002, 406, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Heard Street,03480136, 266, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 397, 9, 0.8, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 202, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Lake View,03480145, 336, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Lincoln Street,03480160, 275, 9, 1.8, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - May Street,03480175, 316, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Midland Street,03480185, 229, 8, 3.1, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Nelson Place,03480200, 613, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Norrback Avenue,03480202, 559, 3,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Worcester - North High,03480515," 1,520", 124, 2.4, 2.5, 1.1, 0.9, 1.3 +NA,NA,a-phys-i3,2022-23,Worcester - Quinsigamond,03480210, 772, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Rice Square,03480215, 536, 7, 0.6, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Roosevelt,03480220, 620, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Worcester - South High Community,03480520," 1,809", 143, 1.9, 2.6, 2.5, 0.3, 0.6 +3.5999999999999996,3.6,a-phys-i3,2022-23,Worcester - Sullivan Middle,03480423, 898, 60, 1.8, 1.6, 1.3, 0.9, 1.1 +NA,NA,a-phys-i3,2022-23,Worcester - Tatnuck,03480230, 410, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Thorndyke Road,03480235, 385, 8, 0.5, 1.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Union Hill School,03480240, 428, 4,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Worcester - University Pk Campus School,03480285, 231, 19, 3.5, 2.6, 1.3, 0.0, 0.9 +8.0,5,a-phys-i3,2022-23,Worcester - Vernon Hill School,03480280, 572, 7, 0.3, 0.3, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Wawecus Road School,03480026, 149, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - West Tatnuck,03480260, 385, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Woodland Academy,03480030, 543, 23, 2.6, 1.7, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 390, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Worcester - Worcester East Middle,03480420, 823, 117, 7.3, 4.3, 1.2, 0.9, 0.6 +5.6,5,a-phys-i3,2022-23,Worcester - Worcester Technical High,03480605," 1,482", 61, 1.1, 1.1, 0.9, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Worthington - R. H. Conwell,03490010, 77, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wrentham - Charles E Roderick,03500010, 377, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wrentham - Delaney,03500003, 603, 0,"","","","","" 7.2,5,a-phys-i3,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,447", 43, 1.0, 0.6, 0.9, 0.3, 0.2 NA,NA,a-phys-i3,2021-22,Abington - Abington Early Education Program,00010001, 100, 0,"","","","","" 6.0,5,a-phys-i3,2021-22,Abington - Abington High,00010505, 603, 38, 0.8, 3.6, 1.2, 0.2, 0.5 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_suspended.csv b/data/admin_data/dese/2A_1_students_suspended.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_suspended.csv rename to data/admin_data/dese/2A_1_students_suspended.csv index 421084d..b233b03 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/2A_1_students_suspended.csv +++ b/data/admin_data/dese/2A_1_students_suspended.csv @@ -1,4 +1,1836 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Students,Students Disciplined,% In-School Suspension,% Out-of-School Suspension,% Expulsion,% Removed to Alternate Setting,% Emergency Removal,% Students with a School-Based Arrest,% Students with a Law Enforcement Referral +5.722960151802656,5,a-phys-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,451", 51, 0.9, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Abington - Abington Early Education Program,00010001, 104, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Abington - Abington High,00010505, 571, 34, 4.0, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Abington - Abington Middle School,00010405, 669, 46, 6.4, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 537, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 344, 0,"","","","","","","" +3.294117647058823,3.29,a-phys-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 487, 49, 6.0, 6.2, 0.0, 0.0, 1.2, 0.2, 0.2 +7.544592030360532,5,a-phys-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,702", 20, 0.5, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 518, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 396, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 126, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 419, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 464, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 358, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 840, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 563, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 418, 10, 1.7, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 973, 34, 2.2, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 185, 0,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Agawam - Agawam High,00050505," 1,085", 76, 5.0, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Agawam - Agawam Junior High,00050405, 547, 17, 0.9, 2.2, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 328, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Agawam - Clifford M Granger,00050010, 345, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Agawam - James Clark School,00050030, 330, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 538, 8, 0.6, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Robinson Park,00050025, 303, 1,"","","","","","","" +3.521821631878557,3.52,a-phys-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205," 1,077", 121, 8.7, 5.9, 0.0, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 352, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Amesbury - Amesbury High,00070505, 467, 16, 2.6, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 59, 14, 20.3, 6.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Amesbury - Amesbury Middle,00070013, 608, 14, 1.6, 0.7, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 409, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 376, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Fort River Elementary,00080020, 392, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Wildwood Elementary,00080050, 340, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 886, 16, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 391, 1,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Andover - Andover High,00090505," 1,731", 55, 0.8, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Andover - Andover West Middle,00090310, 528, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Bancroft Elementary,00090003, 551, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Doherty Middle,00090305, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - High Plain Elementary,00090004, 552, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Shawsheen School,00090005, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - South Elementary,00090020, 457, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - West Elementary,00090025, 564, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Wood Hill Middle School,00090350, 349, 5,"","","","","","","" +-3.6129032258064533,1,a-phys-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 577, 171, 23.4, 15.3, 0.9, 0.0, 12.3, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Arlington - Arlington High,00100505," 1,558", 29, 0.3, 1.5, 0.1, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Arlington - Brackett,00100010, 430, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 424, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Gibbs School,00100305, 518, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Hardy,00100030, 413, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - John A Bishop,00100005, 411, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - M Norcross Stratton,00100055, 448, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Menotomy Preschool,00100038, 104, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Arlington - Ottoson Middle,00100410, 933, 23, 1.7, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Arlington - Peirce,00100045, 368, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Thompson,00100050, 524, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 538, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 201, 0,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 664, 34, 4.7, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 553, 15, 2.4, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 393, 1,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,Ashland - Ashland High,00140505, 860, 39, 1.5, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Ashland - Ashland Middle,00140405, 704, 27, 1.7, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ashland - David Mindess,00140015, 672, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 668, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 91, 0,"","","","","","","" +3.4459203036053125,3.45,a-phys-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605," 1,135", 68, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 634, 0,"","","","","","","" +1.700189753320682,1.7,a-phys-i1,2022-23,Athol-Royalston - Athol High,06150505, 424, 46, 9.7, 8.3, 0.5, 0.0, 0.0, 0.0, 0.0 +-0.6527514231499061,1,a-phys-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 448, 65, 9.4, 11.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 167, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550," 1,327", 155, 10.6, 3.6, 0.1, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 364, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 76, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Attleboro - Attleboro High,00160505," 1,906", 155, 5.5, 4.2, 0.0, 0.0, 3.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 52, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 650, 31, 1.5, 3.4, 0.0, 0.0, 0.6, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Attleboro - Early Learning Center,00160008, 244, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 428, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 475, 3,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 466, 11, 1.3, 1.1, 0.0, 0.0, 0.6, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 595, 30, 3.0, 3.4, 0.0, 0.0, 1.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 389, 3,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 605, 32, 4.5, 1.2, 0.0, 0.0, 0.5, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Auburn - Auburn Middle,00170305, 659, 22, 1.1, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Auburn - Auburn Senior High,00170505, 874, 44, 2.7, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Auburn - Bryn Mawr,00170010, 275, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Auburn - Pakachoag School,00170025, 248, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 565, 3,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Avon - Avon Middle High School,00180510, 346, 39, 4.6, 7.8, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Avon - Ralph D Butler,00180010, 409, 2,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 405, 6, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 382, 29, 7.6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 360, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 566, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 298, 4,"","","","","","","" +3.6736242884250467,3.67,a-phys-i1,2022-23,Barnstable - Barnstable High,00200505," 1,871", 196, 7.6, 5.7, 0.0, 0.0, 1.2, 0.0, 0.0 +3.2182163187855783,3.22,a-phys-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 686, 51, 2.6, 6.3, 0.0, 0.0, 0.9, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 769, 9, 0.1, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Barnstable - Centerville Elementary,00200010, 266, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 203, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 377, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 280, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 408, 2,"","","","","","","" +-13.176470588235295,1,a-phys-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 427, 121, 1.6, 27.9, 0.2, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Bedford - Bedford High,00230505, 862, 19, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Bedford - John Glenn Middle,00230305, 600, 21, 2.5, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 537, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bedford - Lt Job Lane School,00230012, 593, 1,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Belchertown - Belchertown High,00240505, 656, 7, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 495, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Cold Spring,00240005, 206, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Jabish Middle School,00240025, 351, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Swift River Elementary,00240018, 487, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 124, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Bellingham - Bellingham High School,00250505, 760, 21, 0.4, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 606, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 309, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 34, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Stall Brook,00250025, 261, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Belmont - Belmont High,00260505," 1,380", 7, 0.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Belmont - Daniel Butler,00260015, 342, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 346, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Roger E Wellington,00260035, 580, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Winn Brook,00260005, 445, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305," 1,395", 20, 0.6, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 335, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 880, 12, 0.8, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Berkley - Berkley Community School,00270010, 487, 4,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Berkley - Berkley Middle School,00270305, 377, 21, 2.7, 4.2, 0.0, 0.3, 0.0, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 386, 27, 3.9, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 494, 26, 4.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 339, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 229, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 345, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 525, 8, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 397, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Beverly - Beverly High,00300505," 1,309", 75, 4.6, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Beverly - Beverly Middle School,00300305," 1,401", 38, 0.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Beverly - Centerville Elementary,00300010, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - Cove Elementary,00300015, 440, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - Hannah Elementary,00300033, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - McKeown School,00300002, 165, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - North Beverly Elementary,00300040, 357, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Billerica - Billerica Memorial High School,00310505," 1,847", 57, 0.0, 3.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Billerica - Frederick J Dutile,00310007, 299, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - Hajjar Elementary,00310026, 392, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - John F Kennedy,00310012, 315, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Billerica - Locke Middle,00310310, 554, 19, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Billerica - Marshall Middle School,00310305, 623, 16, 0.6, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Billerica - Parker,00310015, 442, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - Thomas Ditson,00310005, 570, 3,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605," 1,238", 39, 1.1, 2.3, 0.2, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 265, 1,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 440, 24, 3.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.2 +7.013282732447817,5,a-phys-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 377, 30, 6.4, 1.3, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 116, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 397, 2,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 924, 26, 0.0, 2.3, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Adams Elementary School,00350302, 277, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 109, 0,"","","","","","","" +-0.42504743833017117,1,a-phys-i1,2022-23,Boston - Another Course To College,00350541, 296, 52, 0.0, 11.1, 0.0, 0.0, 14.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 194, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Bates Elementary School,00350278, 300, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Beethoven Elementary School,00350021, 313, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Boston - Blackstone Elementary School,00350390, 658, 12, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 252, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Boston - Boston Arts Academy,00350546, 496, 12, 0.0, 2.2, 0.0, 0.0, 1.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Boston Collaborative High School,00350755, 333, 0,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 690, 72, 0.7, 10.1, 0.0, 0.0, 1.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 630, 10, 0.2, 1.6, 0.0, 0.0, 0.0, 0.2, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Boston - Boston Latin Academy,00350545," 1,728", 43, 0.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - Boston Latin School,00350560," 2,427", 34, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 340, 15, 0.0, 4.1, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Bradley Elementary School,00350215, 301, 0,"","","","","","","" +-4.675521821631879,1,a-phys-i1,2022-23,Boston - Brighton High School,00350505, 736, 125, 0.7, 16.7, 0.0, 0.0, 2.3, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Boston - Burke High School,00350525, 500, 23, 0.0, 4.6, 0.0, 0.0, 0.2, 0.4, 0.2 +NA,NA,a-phys-i1,2022-23,Boston - Carter School,00350036, 31, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Channing Elementary School,00350360, 236, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Boston - Charlestown High School,00350515, 929, 28, 0.3, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Chittick Elementary School,00350154, 259, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Clap Elementary School,00350298, 124, 0,"","","","","","","" +-18.64136622390892,1,a-phys-i1,2022-23,Boston - Community Academy,00350518, 77, 28, 2.6, 35.1, 0.0, 0.0, 2.6, 0.0, 0.0 +-1.2599620493358636,1,a-phys-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 394, 48, 0.3, 12.2, 0.0, 0.0, 0.0, 0.3, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Boston - Condon K-8 School,00350146, 725, 9, 0.8, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Conley Elementary School,00350122, 173, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Boston - Curley K-8 School,00350020, 994, 21, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 617, 44, 0.2, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Dever Elementary School,00350268, 455, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - East Boston Early Education Center,00350009, 198, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Boston - East Boston High School,00350530," 1,396", 52, 0.1, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Boston - Edison K-8 School,00350375, 690, 13, 0.0, 1.9, 0.0, 0.0, 0.1, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 854, 8, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Boston - Ellis Elementary School,00350072, 394, 11, 0.3, 2.5, 0.0, 0.0, 0.3, 0.0, 0.3 +NA,NA,a-phys-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 215, 0,"","","","","","","" +-2.4743833017077814,1,a-phys-i1,2022-23,Boston - English High School,00350535, 749, 103, 0.7, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Everett Elementary School,00350088, 313, 2,"","","","","","","" +-1.943074003795067,1,a-phys-i1,2022-23,Boston - Excel High School,00350522, 513, 69, 0.0, 13.1, 0.0, 0.0, 2.1, 0.2, 0.0 +4.432637571157495,4.43,a-phys-i1,2022-23,Boston - Fenway High School,00350540, 386, 18, 0.0, 4.7, 0.0, 0.0, 0.0, 0.0, 0.3 +4.888045540796964,4.89,a-phys-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 387, 19, 0.8, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 399, 13, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Boston - Greater Egleston High School,00350543, 124, 7, 0.0, 4.8, 0.8, 0.0, 0.0, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 418, 14, 0.5, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Grew Elementary School,00350135, 234, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Guild Elementary School,00350062, 277, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Hale Elementary School,00350243, 185, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Boston - Haley Pilot School,00350077, 418, 22, 4.1, 2.9, 0.0, 0.0, 0.0, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 382, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Haynes Early Education Center,00350010, 235, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 230, 0,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 760, 60, 0.4, 7.8, 0.0, 0.0, 0.4, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - Hennigan K-8 School,00350153, 634, 13, 0.9, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Hernandez K-8 School,00350691, 438, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 144, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 205, 3,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Boston - Holmes Elementary School,00350138, 320, 7, 0.6, 1.6, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 78, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Hurley K-8 School,00350182, 373, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 432, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 287, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kenny Elementary School,00350328, 371, 2,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Boston - Kilmer K-8 School,00350190, 421, 9, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - King Elementary School,00350376, 503, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Lee Academy,00350001, 225, 0,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Boston - Lee K-8 School,00350183, 610, 26, 0.0, 4.3, 0.0, 0.0, 0.0, 0.0, 0.0 +5.191650853889943,5,a-phys-i1,2022-23,Boston - Lyndon K-8 School,00350262, 614, 23, 0.2, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-2.3984819734345355,1,a-phys-i1,2022-23,Boston - Lyon High School,00350655, 139, 20, 0.0, 13.7, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Lyon K-8 School,00350004, 145, 5,"","","","","","","" +1.396584440227704,1.4,a-phys-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537," 1,152", 102, 0.2, 8.7, 0.0, 0.0, 0.3, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Manning Elementary School,00350184, 171, 4,"","","","","","","" +-1.4876660341555985,1,a-phys-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 345, 45, 0.9, 12.5, 0.3, 0.0, 0.3, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Boston - Mario Umana Academy,00350656, 654, 13, 1.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mason Elementary School,00350304, 207, 1,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Boston - Mather Elementary School,00350227, 531, 7, 0.2, 0.9, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Boston - McKay K-8 School,00350080, 726, 42, 4.4, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +-9.305502846299813,1,a-phys-i1,2022-23,Boston - McKinley Schools,00350363, 197, 51, 1.5, 22.8, 0.0, 0.0, 8.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mendell Elementary School,00350100, 342, 2,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 697, 17, 0.4, 2.2, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mozart Elementary School,00350237, 186, 2,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Boston - Murphy K-8 School,00350240, 906, 32, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,Boston - New Mission High School,00350542, 654, 74, 1.1, 10.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,569", 24, 0.2, 1.4, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 337, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Boston - Ohrenberger School,00350258, 528, 10, 0.8, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 786, 43, 0.9, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Otis Elementary School,00350156, 450, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Perkins Elementary School,00350231, 172, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Perry Elementary School,00350255, 200, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Philbrick Elementary School,00350172, 124, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Quincy Elementary School,00350286, 777, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Boston - Quincy Upper School,00350565, 559, 26, 1.3, 3.6, 0.0, 0.0, 1.6, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 392, 32, 1.5, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Russell Elementary School,00350366, 413, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Shaw Elementary School,00350014, 203, 0,"","","","","","","" +-2.3984819734345355,1,a-phys-i1,2022-23,Boston - Snowden International High School,00350690, 517, 81, 0.2, 13.7, 0.0, 0.0, 4.4, 0.0, 0.2 +7.3927893738140416,5,a-phys-i1,2022-23,Boston - Sumner Elementary School,00350052, 590, 6, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Boston - Taylor Elementary School,00350054, 438, 9, 0.2, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +0.030360531309297268,1,a-phys-i1,2022-23,Boston - TechBoston Academy,00350657, 993, 121, 1.8, 10.5, 0.0, 0.0, 1.0, 0.1, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Boston - Tobin K-8 School,00350229, 471, 6, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Boston - Trotter Elementary School,00350370, 345, 10, 0.0, 2.9, 0.0, 0.0, 0.3, 0.0, 0.3 +NA,NA,a-phys-i1,2022-23,Boston - Tynan Elementary School,00350181, 242, 3,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Boston - UP Academy Holland,00350167, 674, 13, 1.0, 1.0, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 550, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 120, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Winship Elementary School,00350374, 362, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Winthrop Elementary School,00350180, 258, 0,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 564, 59, 0.5, 10.1, 0.2, 0.0, 2.5, 0.2, 0.0 +3.0664136622390887,3.07,a-phys-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 727, 56, 0.4, 6.5, 0.1, 0.0, 1.9, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 439, 15, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 490, 67, 0.4, 12.9, 0.0, 0.0, 1.8, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 721, 60, 1.7, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 978, 58, 3.4, 4.4, 0.0, 0.0, 0.0, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Bourne - Bourne High School,00360505, 371, 25, 0.0, 6.7, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 389, 3,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Bourne - Bourne Middle School,00360325, 447, 45, 9.6, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 428, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boxford - Harry Lee Cole,00380005, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boxford - Spofford Pond,00380013, 391, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Archie T Morrison,00400033, 321, 0,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Braintree - Braintree High,00400505," 1,784", 60, 0.0, 3.3, 0.1, 0.0, 0.1, 0.1, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Braintree - Donald Ross,00400050, 212, 8, 0.9, 0.5, 0.0, 0.0, 2.8, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Braintree - East Middle School,00400305, 998, 12, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Braintree - Highlands,00400015, 418, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Hollis,00400005, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Liberty,00400025, 376, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 299, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 209, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Braintree - South Middle School,00400310, 524, 18, 3.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brewster - Eddy Elementary,00410010, 204, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 243, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 346, 31, 0.3, 2.9, 0.0, 0.0, 7.8, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 767, 19, 2.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.1 +6.861480075901328,5,a-phys-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505," 1,434", 27, 0.3, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 505, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002," 1,023", 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 740, 8, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 19, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 818, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 294, 0,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 556, 25, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,314", 57, 2.2, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +2.4592030360531307,2.46,a-phys-i1,2022-23,Brockton - Ashfield Middle School,00440421, 492, 36, 0.4, 7.3, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 369, 0,"","","","","","","" +-5.282732447817838,1,a-phys-i1,2022-23,Brockton - Brockton Champion High School,00440515, 212, 42, 0.5, 17.5, 0.0, 0.0, 5.2, 0.0, 0.0 +-2.2466793168880463,1,a-phys-i1,2022-23,Brockton - Brockton High,00440505," 3,930", 599, 5.5, 13.5, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 249, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Brookfield,00440010, 474, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Downey,00440110, 638, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 849, 3,"","","","","","","" +2.8387096774193545,2.84,a-phys-i1,2022-23,Brockton - East Middle School,00440405, 499, 37, 0.8, 6.8, 0.0, 0.0, 0.8, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Brockton - Edgar B Davis,00440023, 992, 27, 0.1, 2.5, 0.0, 0.0, 0.5, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Brockton - Edison Academy,00440520, 404, 6, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 437, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Hancock,00440045, 692, 0,"","","","","","","" +-2.3984819734345355,1,a-phys-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 51, 14, 0.0, 13.7, 0.0, 15.7, 5.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - John F Kennedy,00440017, 583, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 877, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 876, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Mary E. Baker School,00440002, 734, 0,"","","","","","","" +0.10626185958254179,1,a-phys-i1,2022-23,Brockton - North Middle School,00440410, 481, 85, 11.0, 10.4, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Oscar F Raymond,00440078, 858, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 39, 0,"","","","","","","" +4.280834914611005,4.28,a-phys-i1,2022-23,Brockton - Plouffe Middle School,00440422, 719, 42, 1.9, 4.9, 0.0, 0.0, 0.8, 0.0, 0.0 +-4.52371916508539,1,a-phys-i1,2022-23,Brockton - South Middle School,00440415, 562, 93, 0.0, 16.5, 0.0, 0.0, 2.0, 0.2, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Brockton - West Middle School,00440420, 581, 79, 1.5, 12.9, 0.0, 0.0, 1.2, 0.0, 0.0 +1.700189753320682,1.7,a-phys-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305," 2,287", 270, 6.0, 8.3, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 297, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 62, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 77, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 58, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Brookline - Brookline High,00460505," 2,124", 47, 1.3, 1.5, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - Edith C Baker,00460005, 721, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 878, 4,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Brookline - Heath,00460025, 470, 7, 1.1, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - John D Runkle,00460045, 516, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Lawrence,00460030, 670, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Brookline - Michael Driscoll,00460020, 482, 6, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - Pierce,00460040, 724, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - The Lynch Center,00460060, 59, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - William H Lincoln,00460035, 501, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Burlington - Burlington High,00480505," 1,031", 35, 0.8, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Burlington - Fox Hill,00480007, 436, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 517, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 846, 16, 1.5, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Burlington - Memorial,00480015, 403, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 341, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Amigos School,00490006, 419, 1,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,939", 55, 0.3, 2.3, 0.0, 0.0, 1.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 303, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Cambridgeport,00490007, 290, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 269, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Graham and Parks,00490080, 398, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Haggerty,00490020, 260, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - John M Tobin,00490065, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 239, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - King Open,00490035, 391, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 355, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 340, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Morse,00490045, 325, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Peabody,00490050, 332, 1,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 262, 13, 1.1, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 289, 10, 1.0, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 295, 0,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Canton - Canton High,00500505, 921, 46, 0.4, 4.7, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Canton - Dean S Luce,00500020, 476, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - John F Kennedy,00500017, 483, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 553, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 118, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 764, 42, 4.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 254, 3,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 679, 43, 4.0, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Carlisle - Carlisle School,00510025, 609, 7, 0.7, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Carver - Carver Elementary School,00520015, 817, 2,"","","","","","","" +0.2580645161290322,1,a-phys-i1,2022-23,Carver - Carver Middle/High School,00520405, 778, 96, 5.8, 10.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 114, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Central Berkshire - Craneville,06350025, 452, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Central Berkshire - Kittredge,06350035, 172, 0,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 352, 52, 11.4, 6.3, 0.0, 0.0, 0.3, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 491, 52, 5.3, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - Byam School,00560030, 515, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Center Elementary School,00560005, 500, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 486, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Chelmsford - Chelmsford High,00560505," 1,398", 78, 2.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 739, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Community Education Center,00560001, 246, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 868, 25, 1.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - South Row,00560015, 482, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Chelsea - Chelsea High,00570505," 1,805", 148, 3.4, 2.4, 0.0, 0.0, 5.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 171, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 115, 1,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Chelsea - Clark Avenue School,00570050, 722, 46, 1.5, 5.8, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 526, 1,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 480, 33, 0.6, 6.5, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 527, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 493, 3,"","","","","","","" +6.481973434535104,5,a-phys-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 557, 11, 0.2, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 972, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 487, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 155, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Barry,00610003, 374, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Belcher,00610010, 240, 0,"","","","","","","" +-0.27324478178368217,1,a-phys-i1,2022-23,Chicopee - Bellamy Middle,00610305, 835, 125, 5.5, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Chicopee - Bowe,00610015, 449, 9, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Bowie,00610020, 282, 2,"","","","","","","" +-40.65275142314991,1,a-phys-i1,2022-23,Chicopee - Chicopee Academy,00610021, 117, 75, 0.0, 64.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510," 1,242", 41, 2.0, 1.7, 0.0, 0.0, 0.0, 0.1, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Chicopee - Chicopee High,00610505, 963, 106, 6.3, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0 +0.5616698292220103,1,a-phys-i1,2022-23,Chicopee - Dupont Middle,00610310, 737, 102, 7.9, 9.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Fairview Elementary,00610050, 406, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 421, 4,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 254, 15, 1.6, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Litwin,00610022, 355, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 241, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 312, 0,"","","","","","","" +1.548387096774193,1.55,a-phys-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 340, 42, 5.3, 8.5, 0.0, 0.0, 0.0, 0.0, 0.0 +0.33396584440227667,1,a-phys-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 218, 23, 0.0, 10.1, 0.5, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 201, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Clinton - Clinton Elementary,00640050, 890, 43, 1.5, 1.9, 0.0, 2.1, 1.1, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Clinton - Clinton Middle School,00640305, 580, 36, 4.3, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +3.294117647058823,3.29,a-phys-i1,2022-23,Clinton - Clinton Senior High,00640505, 612, 58, 6.9, 6.2, 0.0, 0.0, 0.0, 0.7, 0.0 +NA,NA,a-phys-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 351, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Cohasset High School,00650505, 435, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 298, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Deer Hill,00650005, 308, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Joseph Osgood,00650010, 380, 0,"","","","","","","" +-0.8804554079696396,1,a-phys-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205," 1,320", 155, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 272, 21, 3.3, 4.4, 0.0, 0.0, 3.3, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205," 1,212", 18, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Concord - Alcott,00670005, 428, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Concord - Concord Middle,00670305, 663, 11, 0.8, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Concord - Thoreau,00670020, 447, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Concord - Willard,00670030, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505," 1,323", 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 472, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Conway - Conway Grammar,00680005, 138, 0,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Danvers - Danvers High,00710505, 794, 36, 1.0, 3.9, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Danvers - Great Oak,00710015, 311, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Danvers - Highlands,00710010, 405, 1,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 787, 44, 2.5, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Danvers - Ivan G Smith,00710032, 346, 10, 0.6, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Danvers - Riverside,00710030, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Danvers - Willis E Thorpe,00710045, 341, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 151, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Dartmouth - Dartmouth High,00720505," 1,011", 58, 1.7, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.5351043643263753,2.54,a-phys-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 814, 68, 2.6, 7.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dartmouth - George H Potter,00720030, 410, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 714, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - Joseph Demello,00720015, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Avery,00730010, 314, 2,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Dedham - Dedham High,00730505, 745, 38, 0.0, 5.1, 0.0, 0.0, 0.8, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Dedham - Dedham Middle School,00730305, 569, 41, 6.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dedham - Early Childhood Center,00730005, 335, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Greenlodge,00730025, 284, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Oakdale,00730030, 251, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Riverdale,00730045, 185, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 336, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 480, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 496, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 954, 13, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 383, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 320, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 436, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 472, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 370, 18, 2.4, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 703, 30, 2.7, 2.0, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 454, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 605, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Douglas - Douglas Elementary School,00770015, 353, 1,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Douglas - Douglas High School,00770505, 328, 11, 2.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,Douglas - Douglas Middle School,00770305, 306, 18, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Douglas - Douglas Primary School,00770005, 226, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dover - Chickering,00780005, 518, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 669, 12, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 484, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Brookside Elementary,00790035, 546, 5,"","","","","","","" +3.4459203036053125,3.45,a-phys-i1,2022-23,Dracut - Dracut Senior High,00790505, 881, 74, 4.4, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 560, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Greenmont Avenue,00790030, 254, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 624, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 887, 66, 3.8, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 286, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 364, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 610, 38, 5.7, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 350, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 576, 26, 4.5, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 460, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 247, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 958, 31, 1.7, 1.8, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Duxbury - Alden School,00820004, 604, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Duxbury - Chandler Elementary,00820006, 665, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Duxbury - Duxbury High,00820505, 929, 11, 1.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Duxbury - Duxbury Middle,00820305, 624, 12, 1.9, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,East Bridgewater - Central,00830005, 540, 4,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 926, 36, 1.7, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 646, 8, 1.2, 0.3, 0.0, 0.0, 0.2, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,East Longmeadow - Birchland Park,00870305, 601, 22, 1.7, 2.3, 0.0, 0.0, 0.0, 0.2, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 824, 20, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,East Longmeadow - Mapleshade,00870010, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 587, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,East Longmeadow - Mountain View,00870015, 272, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Eastham - Eastham Elementary,00850005, 200, 0,"","","","","","","" +0.4857685009487657,1,a-phys-i1,2022-23,Easthampton - Easthampton High,00860505, 382, 45, 2.9, 9.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.343453510436432,5,a-phys-i1,2022-23,Easthampton - Mountain View School,00860415," 1,080", 45, 1.3, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 788, 0,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Easton - Easton Middle School,00880405, 835, 47, 3.7, 2.5, 0.0, 0.0, 0.6, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Easton - Oliver Ames High,00880505," 1,102", 40, 2.9, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Easton - Richardson Olmsted School,00880025, 777, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 442, 0,"","","","","","","" +3.749525616698292,3.75,a-phys-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 395, 23, 0.3, 5.6, 0.3, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Erving - Erving Elementary,00910030, 131, 0,"","","","","","","" +6.709677419354839,5,a-phys-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,707", 29, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Everett - Adams School,00930003, 261, 0,"","","","","","","" +-0.9563567362428855,1,a-phys-i1,2022-23,Everett - Devens School,00930030, 68, 10, 7.4, 11.8, 0.0, 0.0, 7.4, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Everett - Everett High,00930505," 2,426", 180, 6.1, 2.4, 0.0, 0.0, 0.3, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Everett - George Keverian School,00930028, 994, 15, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Everett - Lafayette School,00930038," 1,134", 29, 0.1, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Everett - Madeline English School,00930018, 845, 76, 3.2, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Everett - Parlin School,00930058," 1,142", 57, 1.9, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 719, 37, 2.4, 3.6, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Everett - Webster Extension,00930001, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Everett - Webster School,00930015, 365, 0,"","","","","","","" +-1.184060721062619,1,a-phys-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205," 1,402", 179, 1.2, 12.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fairhaven - East Fairhaven,00940010, 327, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Fairhaven High,00940505, 650, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Hastings Middle,00940305, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Leroy Wood,00940030, 450, 2,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Fall River - B M C Durfee High,00950505," 2,562", 58, 0.1, 2.2, 0.0, 0.0, 0.1, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 742, 20, 0.0, 1.9, 0.0, 0.0, 1.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Early Learning Center,00950001, 119, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Fall River - Henry Lord Community School,00950017, 876, 20, 0.0, 1.9, 0.0, 0.0, 0.7, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Fall River - James Tansey,00950140, 289, 6, 0.7, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Fall River - John J Doran,00950045, 550, 42, 3.8, 5.1, 0.0, 0.0, 2.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 686, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 724, 9, 0.7, 0.7, 0.0, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 731, 1,"","","","","","","" +-0.42504743833017117,1,a-phys-i1,2022-23,Fall River - Morton Middle,00950315, 737, 106, 1.4, 11.1, 0.0, 0.0, 5.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - North End Elementary,00950005, 737, 0,"","","","","","","" +-4.751423149905125,1,a-phys-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 333, 73, 0.0, 16.8, 0.0, 0.0, 10.5, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Fall River - Samuel Watson,00950145, 269, 6, 0.4, 1.5, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Spencer Borden,00950130, 617, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fall River - Stone PK-12 School,00950340, 89, 0,"","","","","","","" +6.709677419354839,5,a-phys-i1,2022-23,Fall River - Talbot Innovation School,00950305, 593, 17, 0.5, 1.7, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - William S Greene,00950065, 793, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 311, 2,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Falmouth - Falmouth High,00960505, 798, 58, 3.4, 4.6, 0.0, 0.4, 4.6, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Falmouth - Lawrence,00960405, 499, 49, 5.6, 7.0, 0.0, 0.0, 2.6, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Falmouth - Morse Pond School,00960305, 506, 16, 2.0, 1.6, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Falmouth - Mullen-Hall,00960020, 390, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 323, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - Teaticket,00960015, 282, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 126, 2,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 626, 67, 1.9, 10.1, 0.0, 0.0, 0.5, 0.2, 0.0 +8.0,5,a-phys-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 655, 16, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0 +-0.9563567362428855,1,a-phys-i1,2022-23,Fitchburg - Fitchburg High,00970505," 1,353", 291, 15.3, 11.8, 0.0, 0.0, 7.7, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 297, 3,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 775, 14, 0.0, 0.1, 0.0, 0.0, 1.7, 0.0, 0.0 +0.33396584440227667,1,a-phys-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 621, 102, 9.7, 10.1, 0.0, 0.0, 1.1, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 706, 17, 0.0, 1.4, 0.0, 0.0, 1.4, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 658, 12, 0.0, 0.6, 0.0, 0.0, 1.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Florida - Abbott Memorial,00980005, 92, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 223, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 266, 0,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Foxborough - Foxborough High,00990505, 792, 40, 1.8, 4.3, 0.0, 0.0, 0.3, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Foxborough - John J Ahern,00990405, 755, 27, 2.3, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 358, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 372, 5,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550," 1,626", 58, 0.5, 3.0, 0.0, 0.0, 0.6, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Framingham - Barbieri Elementary,01000035, 713, 9, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Brophy,01000006, 511, 5,"","","","","","","" +1.3206831119544582,1.32,a-phys-i1,2022-23,Framingham - Cameron Middle School,01000302, 578, 70, 10.2, 8.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 446, 2,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Framingham - Framingham High School,01000515," 2,765", 192, 4.8, 4.2, 0.0, 0.0, 1.2, 0.0, 0.0 +3.3700189753320684,3.37,a-phys-i1,2022-23,Framingham - Fuller Middle,01000305, 686, 68, 9.3, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 524, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Hemenway,01000015, 588, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Juniper Hill School,01000001, 336, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - King Elementary School,01000005, 419, 4,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 388, 9, 0.5, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 591, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Potter Road,01000039, 574, 5,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Framingham - Walsh Middle,01000310, 825, 25, 1.6, 2.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 406, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 328, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 180, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Franklin - Franklin High,01010505," 1,651", 119, 6.7, 3.1, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 554, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Franklin - Horace Mann,01010405, 380, 12, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Jefferson Elementary,01010010, 363, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Oak Street Elementary,01010030, 371, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Parmenter,01010032, 300, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Franklin - Remington Middle,01010310, 378, 16, 3.2, 2.1, 0.0, 0.0, 0.8, 0.0, 0.0 +1.01707779886148,1.02,a-phys-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 606, 81, 6.3, 9.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 734, 32, 1.9, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 503, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 440, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 681, 17, 1.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 457, 2,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Frontier - Frontier Regional,06700505, 612, 7, 0.8, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.990512333965844,2.99,a-phys-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 151, 10, 0.0, 6.6, 0.7, 0.0, 2.6, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Gardner - Gardner Elementary School,01030001," 1,054", 6, 0.3, 0.5, 0.0, 0.0, 0.3, 0.0, 0.0 +0.7134724857685006,1,a-phys-i1,2022-23,Gardner - Gardner High,01030505, 853, 88, 0.7, 9.6, 0.0, 0.0, 0.6, 0.0, 0.0 +1.01707779886148,1.02,a-phys-i1,2022-23,Gardner - Gardner Middle School,01030405, 499, 54, 3.8, 9.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gateway - Chester Elementary,06720059, 131, 1,"","","","","","","" +1.3206831119544582,1.32,a-phys-i1,2022-23,Gateway - Gateway Regional High,06720505, 170, 24, 8.2, 8.8, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 200, 24, 10.5, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gateway - Littleville Elementary School,06720143, 312, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Georgetown High School,01050505, 304, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 189, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Penn Brook,01050010, 708, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Perley Elementary,01050005, 84, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 108, 0,"","","","","","","" +1.2447817836812136,1.24,a-phys-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 213, 23, 2.3, 8.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 160, 1,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 220, 6, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 200, 12, 2.5, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.6375711574952561,1,a-phys-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 516, 66, 7.0, 9.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gloucester - Beeman Memorial,01070010, 317, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 192, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Gloucester - Gloucester High,01070505, 834, 25, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 148, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Plum Cove School,01070042, 204, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 636, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Veterans Memorial,01070045, 221, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - West Parish,01070050, 377, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0,"","","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Grafton - Grafton High School,01100505, 891, 53, 4.0, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Grafton - Grafton Middle,01100305, 530, 12, 1.9, 0.8, 0.0, 0.2, 0.0, 0.0, 0.2 +7.772296015180265,5,a-phys-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 602, 6, 1.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Grafton - North Grafton Elementary,01100025, 261, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Grafton - North Street Elementary School,01100030, 557, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Grafton - South Grafton Elementary,01100005, 313, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Granby - East Meadow,01110004, 416, 6, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 315, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900," 1,408", 0,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,418", 80, 1.6, 5.1, 0.0, 0.0, 0.0, 0.1, 0.0 +4.584440227703984,4.58,a-phys-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,697", 77, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 2,330", 138, 1.7, 4.1, 0.0, 0.0, 1.3, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 2,115", 177, 7.0, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 220, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greenfield - Federal Street School,01140010, 215, 0,"","","","","","","" +-0.04554079696394725,1,a-phys-i1,2022-23,Greenfield - Greenfield High,01140505, 480, 55, 1.5, 10.6, 0.0, 0.0, 0.8, 0.0, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Greenfield - Greenfield Middle,01140305, 320, 32, 3.8, 7.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Greenfield - Newton School,01140035, 222, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 103, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 103, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 532, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 688, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 746, 6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 331, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hadley - Hadley Elementary,01170015, 284, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Hadley - Hopkins Academy,01170505, 231, 9, 2.2, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Halifax - Halifax Elementary,01180005, 570, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 454, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 376, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 326, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 558, 14, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 386, 16, 1.3, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 329, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 374, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 998, 37, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 315, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 310, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 610, 52, 8.2, 1.8, 0.0, 0.0, 0.0, 0.2, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 679, 21, 0.1, 2.8, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hancock - Hancock Elementary,01210005, 63, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hanover - Cedar Elementary,01220004, 509, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hanover - Center Elementary,01220005, 645, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Hanover - Hanover High,01220505, 671, 14, 0.1, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Hanover - Hanover Middle,01220305, 810, 7, 0.1, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Harvard - Bromfield,01250505, 568, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 478, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 223, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hatfield - Smith Academy,01270505, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 42, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Bradford Elementary,01280008, 556, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030," 1,109", 39, 1.4, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.42504743833017117,1,a-phys-i1,2022-23,Haverhill - Consentino Middle School,01280100, 763, 89, 1.3, 11.1, 0.0, 0.0, 0.0, 0.0, 0.0 +0.10626185958254179,1,a-phys-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 603, 63, 0.0, 10.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-23.878557874762812,1,a-phys-i1,2022-23,Haverhill - Gateway Academy,01280515, 100, 42, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Golden Hill,01280026, 495, 0,"","","","","","","" +-24.789373814041756,1,a-phys-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 44, 19, 0.0, 43.2, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.7286527514231506,1,a-phys-i1,2022-23,Haverhill - Haverhill High,01280505," 2,092", 353, 10.6, 11.5, 0.0, 0.0, 0.2, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Haverhill - John G Whittier,01280085, 503, 28, 3.6, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Moody,01280045, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 142, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 557, 3,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 508, 16, 0.4, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Tilton,01280075, 338, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 185, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Walnut Square,01280080, 146, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 98, 0,"","","","","","","" +3.9772296015180264,3.98,a-phys-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 131, 14, 6.1, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 314, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 221, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hingham - East Elementary School,01310005, 529, 2,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Hingham - Hingham High,01310505," 1,173", 9, 0.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Hingham - Hingham Middle School,01310410, 852, 10, 0.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hingham - Plymouth River,01310019, 388, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hingham - South Elementary,01310020, 508, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 409, 6, 1.2, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0 +1.3206831119544582,1.32,a-phys-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 668, 59, 0.0, 8.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Holbrook - John F Kennedy,01330018, 722, 7, 0.0, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Holland - Holland Elementary,01350005, 239, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Holliston High,01360505, 814, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Miller School,01360007, 614, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Placentino Elementary,01360010, 733, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 665, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Holyoke - E N White Elementary,01370045, 456, 10, 0.2, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 210, 6, 0.0, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.943074003795067,1,a-phys-i1,2022-23,Holyoke - Holyoke High,01370505," 1,609", 224, 1.1, 13.1, 0.0, 0.0, 2.1, 0.0, 0.0 +-9.836812144212525,1,a-phys-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 298, 85, 5.4, 23.5, 0.0, 0.0, 7.4, 0.0, 0.0 +-9.381404174573055,1,a-phys-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 314, 73, 2.2, 22.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 401, 26, 5.7, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Holyoke - Kelly Elementary,01370040, 379, 44, 8.4, 5.3, 0.0, 0.3, 0.3, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 442, 23, 0.0, 2.9, 0.0, 0.0, 3.2, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 369, 22, 0.3, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 387, 12, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 361, 0,"","","","","","","" +-8.242884250474383,1,a-phys-i1,2022-23,Holyoke - William R. Peck School,01370030, 215, 48, 0.0, 21.4, 0.0, 0.0, 8.8, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 731, 32, 0.3, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 406, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 340, 25, 2.4, 0.9, 0.3, 0.0, 5.3, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 300, 19, 3.0, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 444, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopedale - Memorial,01380010, 568, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopedale - Park Street School,01380003, 117, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Elmwood,01390010, 645, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 648, 0,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Hopkinton - Hopkinton High,01390505," 1,251", 21, 0.8, 1.6, 0.0, 0.0, 0.3, 0.0, 0.0 +7.848197343453511,5,a-phys-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 988, 6, 0.5, 0.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 115, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 617, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hudson - C A Farley,01410030, 458, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 583, 9, 0.0, 0.7, 0.0, 0.0, 1.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 299, 1,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Hudson - Hudson High,01410505, 849, 40, 0.0, 4.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hudson - Mulready Elementary,01410007, 257, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Hull - Hull High,01420505, 243, 21, 3.7, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Hull - Lillian M Jacobs,01420015, 371, 7, 1.9, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hull - Memorial Middle,01420305, 174, 5,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 817, 48, 1.1, 5.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Ipswich - Ipswich High,01440505, 507, 8, 0.8, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 367, 7, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 372, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ipswich - Winthrop,01440015, 392, 1,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 606, 20, 0.0, 3.1, 0.0, 0.0, 1.8, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010," 1,626", 82, 3.8, 1.8, 0.0, 0.0, 0.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,King Philip - King Philip Middle School,06900510, 685, 13, 0.7, 1.6, 0.0, 0.0, 0.1, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,King Philip - King Philip Regional High,06900505," 1,157", 28, 1.8, 0.7, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Kingston - Kingston Elementary,01450005, 687, 1,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Kingston - Kingston Intermediate,01450020, 618, 25, 1.3, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 453, 14, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.4 +NA,NA,a-phys-i1,2022-23,Lawrence - Arlington Elementary,01490009, 664, 0,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Lawrence - Arlington Middle School,01490017, 642, 67, 6.9, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 744, 0,"","","","","","","" +3.521821631878557,3.52,a-phys-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 544, 36, 1.3, 5.9, 0.0, 0.0, 0.0, 0.0, 0.4 +5.039848197343453,5,a-phys-i1,2022-23,Lawrence - Francis M Leahy,01490040, 433, 19, 1.8, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Lawrence - Frost Middle School,01490525, 552, 27, 2.9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 518, 8, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 508, 15, 2.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +4.432637571157495,4.43,a-phys-i1,2022-23,Lawrence - High School Learning Center,01490536, 382, 18, 0.3, 4.7, 0.0, 0.0, 0.0, 0.5, 0.5 +NA,NA,a-phys-i1,2022-23,Lawrence - James F Hennessey,01490020, 364, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - John Breen School,01490003, 368, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - John K Tarbox,01490075, 324, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 212, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 259, 0,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Lawrence - Lawrence High School,01490515," 3,402", 203, 2.0, 4.5, 0.0, 0.0, 0.1, 0.1, 1.0 +6.330170777988616,5,a-phys-i1,2022-23,Lawrence - Leonard Middle School,01490090, 369, 8, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 512, 2,"","","","","","","" +4.35673624288425,4.36,a-phys-i1,2022-23,Lawrence - Oliver Middle School,01490049, 375, 21, 1.3, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Lawrence - Parthum Middle School,01490027, 619, 12, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - RISE Academy,01490615, 93, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Robert Frost,01490018, 611, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 258, 0,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 121, 6, 1.7, 4.1, 0.0, 0.0, 0.0, 0.0, 1.7 +NA,NA,a-phys-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 727, 3,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Lawrence - Spark Academy,01490085, 479, 29, 4.4, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 868, 3,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 679, 20, 1.5, 2.1, 0.1, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Lee - Lee Elementary,01500025, 353, 8, 2.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Lee - Lee Middle/High School,01500505, 334, 19, 4.2, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leicester - Leicester Elementary,01510005, 513, 5,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Leicester - Leicester High,01510505, 428, 28, 3.0, 4.4, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 59, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Leicester - Leicester Middle,01510015, 425, 32, 6.1, 3.1, 0.0, 0.0, 0.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Lenox - Lenox Memorial High,01520505, 449, 20, 3.1, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lenox - Morris,01520015, 351, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Bennett,01530003, 123, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 807, 79, 7.1, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Fall Brook,01530007, 641, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Frances Drake School,01530010, 496, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Johnny Appleseed,01530025, 684, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 56, 4,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Leominster - Leominster High School,01530505," 1,153", 131, 8.3, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Lincoln School,01530005, 44, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Leominster - Northwest,01530030, 777, 8, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Priest Street,01530040, 137, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,Leominster - Samoset School,01530045, 522, 37, 2.9, 5.2, 0.0, 0.0, 0.2, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Leominster - Sky View Middle School,01530320, 935, 94, 8.2, 6.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leverett - Leverett Elementary,01540005, 143, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Bowman,01550008, 463, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Bridge,01550006, 402, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Fiske,01550015, 351, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Harrington,01550030, 405, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 839, 11, 0.8, 0.7, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lexington - Joseph Estabrook,01550010, 564, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Lexington Children's Place,01550001, 92, 0,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Lexington - Lexington High,01550505," 2,349", 8, 0.2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lexington - Maria Hastings,01550035, 627, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 975, 3,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 459, 11, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lincoln - Hanscom Middle,01570305, 245, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lincoln - Hanscom Primary,01570006, 283, 2,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Lincoln - Lincoln School,01570025, 555, 10, 1.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,496", 23, 0.5, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Littleton - Littleton High School,01580505, 485, 9, 0.8, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Littleton - Littleton Middle School,01580305, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Littleton - Russell St Elementary,01580015, 393, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 458, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 400, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Longmeadow - Center,01590010, 436, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 335, 11, 3.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Longmeadow - Longmeadow High,01590505, 915, 38, 3.0, 2.0, 0.0, 0.0, 0.2, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Longmeadow - Williams Middle,01590305, 288, 6, 1.4, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 461, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Abraham Lincoln,01600020, 532, 1,"","","","","","","" +2.4592030360531307,2.46,a-phys-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 545, 51, 2.4, 7.3, 0.0, 0.0, 0.9, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 542, 45, 3.3, 7.0, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Charles W Morey,01600030, 517, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 504, 2,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Lowell - Dr An Wang School,01600345, 700, 33, 1.1, 4.0, 0.0, 0.0, 0.4, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 500, 8, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 63, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Lowell - Greenhalge,01600015, 527, 11, 0.0, 1.5, 0.0, 0.0, 0.6, 0.0, 0.4 +3.749525616698292,3.75,a-phys-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 658, 53, 3.3, 5.6, 0.0, 0.0, 0.0, 0.0, 0.3 +7.165085388994307,5,a-phys-i1,2022-23,Lowell - James S Daley Middle School,01600315, 705, 9, 0.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8045540796963951,1,a-phys-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 649, 75, 0.2, 11.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Lowell - John J Shaughnessy,01600050, 524, 26, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 498, 0,"","","","","","","" +-0.12144212523719176,1,a-phys-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 683, 73, 0.0, 10.7, 0.0, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 22, 1,"","","","","","","" +-29.03984819734346,1,a-phys-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 43, 27, 44.2, 48.8, 0.0, 0.0, 0.0, 0.0, 0.0 +3.0664136622390887,3.07,a-phys-i1,2022-23,Lowell - Lowell High,01600505," 3,423", 236, 0.1, 6.5, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Moody Elementary,01600027, 270, 0,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 501, 8, 0.2, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Peter W Reilly,01600040, 512, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Lowell - Pyne Arts,01600018, 523, 17, 2.5, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 935, 29, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 520, 1,"","","","","","","" +-13.480075901328275,1,a-phys-i1,2022-23,Lowell - The Career Academy,01600515, 152, 55, 17.1, 28.3, 0.0, 0.0, 3.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Washington,01600055, 265, 3,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 826, 11, 0.0, 1.1, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 133, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ludlow - East Street Elementary School,01610010, 380, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 668, 12, 1.5, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 815, 55, 0.0, 6.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 526, 44, 5.1, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 6, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Lunenburg - Lunenburg High,01620505, 450, 15, 0.7, 3.1, 0.2, 0.0, 0.0, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 388, 26, 3.9, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 397, 4,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 364, 6, 0.8, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 549, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Aborn,01630011, 231, 1,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Lynn - Breed Middle School,01630405," 1,340", 106, 0.1, 7.8, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Brickett Elementary,01630020, 345, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 332, 0,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Lynn - Classical High,01630505," 2,088", 123, 0.2, 5.8, 0.0, 0.0, 0.0, 0.1, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Lynn - Cobbet Elementary,01630035, 670, 15, 1.0, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Lynn - E J Harrington,01630045, 677, 12, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Edward A Sisson,01630095, 462, 4,"","","","","","","" +-6.800759013282733,1,a-phys-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 133, 27, 2.3, 19.5, 1.5, 0.0, 0.0, 0.8, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 83, 3,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Lynn - Hood,01630055, 525, 20, 3.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Lynn - Ingalls,01630060, 769, 16, 0.0, 2.0, 0.0, 0.0, 0.5, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Lynn - Julia F Callahan,01630030, 439, 12, 0.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 208, 1,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Lynn - Lynn English High,01630510," 2,498", 111, 0.2, 4.4, 0.0, 0.0, 0.2, 0.0, 0.0 +5.571157495256166,5,a-phys-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605," 1,575", 87, 2.9, 3.2, 0.0, 0.1, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Lynn Woods,01630075, 165, 0,"","","","","","","" +3.9013282732447814,3.9,a-phys-i1,2022-23,Lynn - Pickering Middle,01630420, 589, 45, 4.1, 5.4, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Robert L Ford,01630050, 441, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Sewell-Anderson,01630085, 309, 2,"","","","","","","" +1.396584440227704,1.4,a-phys-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305," 1,330", 144, 3.3, 8.7, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Tracy,01630100, 399, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 83, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Washington Elementary School,01630005, 469, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - William R Fallon,01630080, 34, 3,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Lynn - Wm P Connery,01630040, 605, 13, 0.8, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 462, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield High,01640505, 570, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 720, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 48, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Summer Street,01640020, 424, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 100, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Malden - Beebe,01650003, 936, 11, 0.7, 0.4, 0.0, 0.0, 0.6, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Malden - Ferryway,01650013, 955, 36, 0.9, 3.0, 0.0, 0.0, 0.6, 0.0, 0.0 +4.7362428842504745,4.74,a-phys-i1,2022-23,Malden - Forestdale,01650027, 632, 33, 1.9, 4.3, 0.0, 0.0, 0.0, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Malden - Linden,01650047, 904, 38, 0.0, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Malden - Malden Early Learning Center,01650049, 347, 0,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Malden - Malden High,01650505," 1,983", 86, 0.7, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Malden - Salemwood,01650057," 1,143", 28, 0.6, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 421, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 285, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 297, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mansfield - Everett W Robinson,01670007, 778, 2,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 812, 12, 0.7, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 724, 8, 0.8, 0.3, 0.0, 0.0, 0.1, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Mansfield - Mansfield High,01670505," 1,112", 30, 1.3, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mansfield - Roland Green School,01670003, 115, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 301, 9, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marblehead - Glover,01680020, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 459, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Marblehead - Marblehead High,01680505, 893, 9, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 422, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marblehead - Village School,01680016, 567, 2,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 234, 12, 0.4, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marion - Sippican,01690005, 415, 0,"","","","","","","" +2.5351043643263753,2.54,a-phys-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045," 1,125", 133, 8.3, 7.2, 0.2, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 740, 19, 1.2, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marlborough - Early Childhood Center,01700006, 251, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Marlborough - Francis J Kane,01700008, 529, 8, 0.4, 0.9, 0.0, 0.0, 0.4, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 870, 16, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Marlborough - Marlborough High,01700505," 1,173", 94, 0.2, 7.8, 0.5, 0.0, 0.1, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Marlborough - Richer,01700025, 599, 10, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marshfield - Daniel Webster,01710015, 390, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marshfield - Eames Way School,01710005, 271, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 879, 21, 1.6, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 356, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Marshfield - Marshfield High,01710505," 1,200", 25, 0.0, 2.1, 0.0, 0.0, 0.1, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Marshfield - Martinson Elementary,01710025, 468, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marshfield - South River,01710010, 261, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 779, 33, 1.7, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 189, 3,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 372, 9, 0.8, 2.2, 0.0, 0.0, 0.3, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Masconomet - Masconomet Regional High School,07050505," 1,002", 20, 1.9, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 562, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 425, 0,"","","","","","","" +3.749525616698292,3.75,a-phys-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 679, 42, 0.9, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mashpee - Quashnet School,01720035, 419, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505," 1,222", 92, 3.4, 5.2, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mattapoisett - Center,01730005, 241, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 192, 1,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Maynard - Fowler School,01740305, 475, 8, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Maynard - Green Meadow,01740010, 441, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Maynard - Maynard High,01740505, 325, 14, 2.5, 3.1, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Medfield - Dale Street,01750005, 394, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Medfield Senior High,01750505, 742, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Memorial School,01750003, 436, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 384, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 587, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - Brooks School,01760130, 580, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - Curtis-Tufts,01760510, 22, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 529, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 492, 13, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 470, 32, 0.6, 6.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Medford - Medford High,01760505," 1,303", 38, 0.0, 2.8, 0.1, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 571, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Medford - Missituk Elementary School,01760140, 437, 6, 0.0, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 498, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 382, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Medway - Medway High,01770505, 626, 17, 0.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Medway - Medway Middle,01770305, 661, 13, 0.2, 1.5, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Melrose - Early Childhood Center,01780003, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 305, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Horace Mann,01780025, 248, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Lincoln,01780020, 418, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Melrose High,01780505, 937, 4,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Melrose - Melrose Middle,01780305, 885, 12, 1.2, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Melrose - Roosevelt,01780035, 416, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Winthrop,01780050, 384, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 369, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mendon-Upton - Memorial School,07100001, 536, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 647, 29, 4.3, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 614, 28, 0.3, 4.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Methuen - Comprehensive Grammar School,01810050," 1,113", 52, 0.1, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Methuen - Donald P Timony Grammar,01810060," 1,341", 28, 0.1, 2.0, 0.0, 0.0, 0.1, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Methuen - Marsh Grammar School,01810030," 1,128", 35, 0.0, 3.1, 0.0, 0.0, 0.1, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Methuen - Methuen High,01810505," 2,045", 195, 6.2, 7.4, 0.1, 0.0, 0.0, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Methuen - Tenney Grammar School,01810055," 1,333", 98, 0.0, 7.4, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 593, 6, 0.8, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 732, 40, 4.5, 0.5, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 638, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 317, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Middleborough - Middleborough High,01820505, 888, 43, 4.4, 0.1, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Middleton - Fuller Meadow,01840003, 298, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Middleton - Howe-Manning,01840005, 438, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milford - Brookside,01850065, 588, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milford - Memorial,01850010, 513, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Milford - Milford High,01850505," 1,407", 72, 0.1, 5.0, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 198, 0,"","","","","","","" +0.4857685009487657,1,a-phys-i1,2022-23,Milford - Stacy Middle,01850305," 1,086", 128, 3.9, 9.9, 0.0, 0.0, 0.3, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Milford - Woodland,01850090," 1,015", 21, 1.0, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millbury - Elmwood Street,01860017, 464, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 760, 60, 5.3, 4.6, 0.0, 0.0, 0.0, 0.0, 0.1 +7.240986717267552,5,a-phys-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 477, 15, 2.5, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millis - Clyde F Brown,01870005, 634, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Millis - Millis High School,01870505, 321, 7, 1.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millis - Millis Middle,01870020, 276, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Millis - TIES,01870515, 6, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 964, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Collicot,01890005, 589, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Cunningham School,01890007, 646, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Glover,01890010, 637, 1,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Milton - Milton High,01890505," 1,082", 9, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Milton - Tucker,01890020, 473, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 697, 10, 1.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 279, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 107, 3,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 294, 23, 3.4, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 146, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 152, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 518, 0,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 723, 49, 3.7, 4.0, 0.0, 0.0, 0.1, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 455, 28, 4.8, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Monson - Granite Valley School,01910030, 413, 3,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Monson - Monson High School,01910505, 310, 10, 0.3, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Monson - Quarry Hill Community School,01910010, 139, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605," 1,431", 116, 4.3, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 239, 2,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 551, 34, 4.2, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 444, 7, 0.0, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105," 1,650", 141, 8.5, 2.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nahant - Johnson,01960010, 160, 0,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 395, 31, 2.8, 5.8, 0.0, 0.3, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 429, 2,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Nantucket - Nantucket High,01970505, 612, 50, 6.5, 2.8, 0.0, 0.2, 0.0, 0.2, 0.0 +NA,NA,a-phys-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 354, 2,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Narragansett - Narragansett Middle,07200305, 372, 12, 2.7, 1.6, 0.0, 0.0, 0.8, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 484, 22, 4.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 675, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Center School,07250020, 508, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 749, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Hale,07250310, 273, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 245, 8, 3.3, 1.2, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 486, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Nashoba - Nashoba Regional,07250505, 844, 16, 0.5, 1.8, 0.0, 0.0, 0.2, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 751, 62, 2.8, 7.1, 0.0, 0.0, 1.1, 0.1, 0.1 +NA,NA,a-phys-i1,2022-23,Natick - Bennett-Hemenway,01980005, 493, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Brown,01980010, 525, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 903, 21, 2.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Natick - Johnson,01980031, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Lilja Elementary,01980035, 430, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Memorial,01980043, 440, 1,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Natick - Natick High,01980505," 1,773", 17, 0.1, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Natick - Wilson Middle,01980310, 785, 19, 2.4, 0.4, 0.0, 0.0, 0.1, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Nauset - Nauset Regional High,06600505, 796, 30, 0.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 541, 36, 2.8, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Broadmeadow,01990005, 513, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - High Rock School,01990410, 449, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - John Eliot,01990020, 430, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Needham - Needham High,01990505," 1,652", 9, 0.5, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Newman Elementary,01990050, 723, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Needham - Pollard Middle,01990405, 826, 17, 1.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 538, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - William Mitchell,01990040, 453, 5,"","","","","","","" +2.4592030360531307,2.46,a-phys-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 822, 142, 11.9, 7.3, 0.1, 0.0, 6.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 681, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 542, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 239, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 368, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 603, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Charles S Ashley,02010010, 292, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 285, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 267, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 335, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 735, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 445, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - James B Congdon,02010040, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Jireh Swift,02010130, 264, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - John Avery Parker,02010115, 283, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - John B Devalles,02010050, 317, 2,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,New Bedford - Keith Middle School,02010405, 912, 42, 1.8, 3.5, 0.0, 0.0, 0.2, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,New Bedford - New Bedford High,02010505," 3,115", 138, 0.0, 4.2, 0.0, 0.0, 0.2, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,New Bedford - Normandin Middle School,02010410," 1,120", 86, 1.6, 6.0, 0.0, 0.0, 1.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 145, 2,"","","","","","","" +3.6736242884250467,3.67,a-phys-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 845, 52, 0.0, 5.7, 0.0, 0.2, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 659, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 221, 5,"","","","","","","" +-3.3092979127134736,1,a-phys-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 114, 17, 0.0, 14.9, 0.0, 0.0, 0.9, 0.0, 0.0 +-3.8406072106261866,1,a-phys-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 257, 40, 0.0, 15.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - William H Taylor,02010135, 261, 1,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 746, 94, 9.4, 6.3, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,New Salem-Wendell - Swift River,07280015, 140, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 288, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 593, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Newburyport - Newburyport High,02040505, 829, 7, 0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 490, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - A E Angier,02070005, 384, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Newton - Bigelow Middle,02070305, 453, 15, 2.6, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Bowen,02070015, 369, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - C C Burr,02070020, 373, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Cabot,02070025, 458, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Newton - Charles E Brown Middle,02070310, 776, 17, 1.5, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Countryside,02070040, 395, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Newton - F A Day Middle,02070315, 939, 18, 1.6, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Franklin,02070055, 374, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Horace Mann,02070075, 367, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - John Ward,02070120, 199, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Lincoln-Eliot,02070070, 354, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Mason-Rice,02070080, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Memorial Spaulding,02070105, 406, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 240, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Newton - Newton North High,02070505," 2,145", 61, 1.7, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Newton - Newton South High,02070510," 1,880", 16, 0.6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Newton - Oak Hill Middle,02070320, 676, 16, 2.4, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Peirce,02070100, 253, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Underwood,02070115, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Williams,02070125, 240, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Zervas,02070130, 419, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 528, 10, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norfolk - H Olive Day,02080015, 497, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 585, 26, 3.4, 1.0, 0.0, 0.0, 0.3, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,North Adams - Brayton,02090035, 247, 20, 0.0, 7.7, 0.0, 0.0, 0.4, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 265, 9, 0.0, 0.4, 0.0, 0.0, 3.4, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,North Adams - Drury High,02090505, 515, 67, 0.0, 11.7, 0.0, 0.0, 2.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Adams - Greylock,02090015, 284, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 459, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Annie L Sargent School,02110018, 472, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Atkinson,02110001, 287, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Franklin,02110010, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Kittredge,02110015, 230, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,North Andover - North Andover High,02110505," 1,355", 25, 0.1, 1.8, 0.0, 0.0, 0.0, 0.2, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,North Andover - North Andover Middle,02110305," 1,070", 33, 1.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Andover - Thomson,02110020, 318, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 422, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Community,02120030, 311, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Falls,02120010, 235, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 541, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,North Attleborough - North Attleboro High,02120505," 1,140", 28, 0.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 206, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 971, 18, 1.2, 1.0, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 261, 0,"","","","","","","" +5.191650853889943,5,a-phys-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 324, 14, 0.9, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,North Brookfield - North Brookfield High,02150505, 153, 15, 7.2, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 147, 1,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 474, 6, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 495, 29, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 791, 71, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 432, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 134, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Middlesex - Varnum Brook,07350035, 653, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - E Ethel Little School,02170003, 333, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - J Turner Hood,02170010, 393, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - L D Batchelder,02170005, 469, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - North Reading High,02170505, 649, 4,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,North Reading - North Reading Middle,02170305, 547, 13, 2.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Northampton - Bridge Street,02100005, 292, 6, 1.4, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - Jackson Street,02100020, 298, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 608, 35, 1.6, 2.6, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - Leeds,02100025, 308, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Northampton - Northampton High,02100505, 921, 30, 2.2, 2.2, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 240, 0,"","","","","","","" +2.686907020872865,2.69,a-phys-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 570, 59, 8.2, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505," 1,232", 9, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northborough - Fannie E Proctor,02130015, 264, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Lincoln Street,02130003, 295, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Marion E Zeh,02130020, 256, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 560, 8, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northbridge - Northbridge Elementary School,02140001," 1,007", 3,"","","","","","","" +5.115749525616698,5,a-phys-i1,2022-23,Northbridge - Northbridge High,02140505, 520, 21, 0.0, 3.8, 0.0, 0.0, 0.4, 0.0, 0.0 +3.294117647058823,3.29,a-phys-i1,2022-23,Northbridge - Northbridge Middle,02140305, 487, 30, 0.2, 6.2, 0.0, 0.0, 0.2, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605," 1,305", 100, 5.6, 3.9, 0.0, 0.1, 0.2, 0.0, 0.0 +1.396584440227704,1.4,a-phys-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 540, 47, 0.0, 8.7, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Norton - Henri A. Yelle,02180060, 339, 9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norton - J C Solmonese,02180015, 532, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norton - L G Nourse Elementary,02180010, 304, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Norton - Norton High,02180505, 696, 13, 1.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Norton - Norton Middle,02180305, 563, 20, 1.1, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 527, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Norwell - Norwell High,02190505, 603, 7, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwell - Norwell Middle School,02190405, 499, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwell - William G Vinal,02190020, 539, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Balch,02200005, 337, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Charles J Prescott,02200025, 267, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 241, 1,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 826, 81, 6.9, 6.9, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwood - F A Cleveland,02200015, 327, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - George F. Willett,02200075, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - John P Oldham,02200020, 292, 1,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Norwood - Norwood High,02200505, 993, 40, 0.6, 3.3, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 471, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 565, 5,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 638, 17, 2.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 428, 23, 1.2, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 365, 25, 2.7, 4.9, 0.0, 0.0, 0.5, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Orange - Dexter Park,02230010, 301, 8, 0.0, 2.7, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Orange - Fisher Hill,02230015, 242, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Orleans - Orleans Elementary,02240005, 153, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 309, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Oxford - Clara Barton,02260005, 284, 1,"","","","","","","" +0.8652751423149897,1,a-phys-i1,2022-23,Oxford - Oxford High,02260505, 405, 40, 0.5, 9.4, 0.0, 0.0, 1.2, 0.0, 0.0 +1.9278937381404169,1.93,a-phys-i1,2022-23,Oxford - Oxford Middle,02260405, 526, 44, 0.6, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Palmer - Old Mill Pond,02270008, 639, 28, 0.0, 3.9, 0.0, 0.0, 2.7, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Palmer - Palmer High,02270505, 553, 53, 0.2, 7.1, 0.0, 0.0, 5.1, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 651, 30, 0.0, 4.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 282, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 390, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Center,02290015, 459, 5,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Peabody - J Henry Higgins Middle,02290305," 1,387", 37, 0.7, 2.2, 0.0, 0.1, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Peabody - John E Burke,02290007, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - John E. McCarthy,02290016, 388, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 139, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510," 1,534", 100, 4.4, 4.6, 0.0, 0.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Peabody - South Memorial,02290035, 496, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Thomas Carroll,02290010, 616, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - West Memorial,02290045, 273, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - William A Welch Sr,02290027, 242, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pelham - Pelham Elementary,02300005, 137, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 446, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 415, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 532, 5,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 411, 6, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Pembroke - Pembroke High School,02310505, 747, 39, 3.5, 2.9, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 234, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pentucket - Dr John C Page School,07450015, 331, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 497, 10, 0.4, 0.8, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 253, 0,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 362, 18, 2.5, 3.3, 0.0, 0.0, 0.0, 0.0, 0.3 +6.330170777988616,5,a-phys-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 598, 18, 1.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Petersham - Petersham Center,02340005, 127, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 255, 5,"","","","","","","" +1.6242884250474376,1.62,a-phys-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 155, 13, 0.0, 8.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 230, 27, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 796, 0,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 484, 11, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 214, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 265, 11, 3.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 555, 15, 0.0, 0.7, 0.0, 0.0, 2.2, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 418, 19, 1.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Allendale,02360010, 285, 2,"","","","","","","" +3.9013282732447814,3.9,a-phys-i1,2022-23,Pittsfield - Crosby,02360065, 299, 32, 10.0, 5.4, 0.0, 0.0, 3.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 29, 2,"","","","","","","" +-29.9506641366224,1,a-phys-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 32, 16, 3.1, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Pittsfield - Egremont,02360035, 399, 17, 0.8, 2.0, 0.0, 0.0, 2.5, 0.0, 0.0 +-5.282732447817838,1,a-phys-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 498, 114, 11.2, 17.5, 0.0, 0.0, 9.4, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Pittsfield - Morningside Community School,02360055, 386, 1,"","","","","","","" +2.8387096774193545,2.84,a-phys-i1,2022-23,Pittsfield - Pittsfield High,02360505, 706, 109, 12.9, 6.8, 0.0, 0.0, 5.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 187, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 400, 23, 4.3, 2.8, 0.0, 0.0, 0.8, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Pittsfield - Stearns,02360090, 238, 11, 2.9, 2.5, 0.0, 0.0, 0.4, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Pittsfield - Taconic High,02360510, 885, 204, 19.7, 7.1, 0.0, 0.0, 3.3, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 522, 38, 3.1, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Williams,02360100, 263, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 310, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 366, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Cold Spring,02390005, 232, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Federal Furnace School,02390011, 423, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Hedge,02390010, 236, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Indian Brook,02390012, 587, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Manomet Elementary,02390015, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 527, 0,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 913, 84, 6.7, 4.4, 0.0, 0.0, 0.8, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 265, 0,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Plymouth - Plymouth North High,02390505," 1,331", 131, 6.9, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.307400379506641,2.31,a-phys-i1,2022-23,Plymouth - Plymouth South High,02390515," 1,042", 144, 10.7, 7.5, 0.0, 0.0, 0.1, 0.0, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 633, 58, 6.0, 5.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Plymouth - South Elementary,02390046, 630, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - West Elementary,02390047, 325, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plympton - Dennett Elementary,02400010, 241, 2,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550," 1,034", 58, 2.2, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Provincetown - Provincetown Schools,02420020, 151, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 208, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Hubbardston Center,07530010, 323, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - New Braintree Grade,07530020, 41, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Oakham Center,07530025, 181, 0,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 581, 54, 2.1, 7.7, 0.0, 0.0, 0.3, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 540, 34, 3.7, 4.1, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quabbin - Ruggles Lane,07530030, 407, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 57, 0,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 364, 26, 1.4, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 205, 13, 1.5, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 332, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 263, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 231, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Atherton Hough,02430040, 272, 2,"","","","","","","" +4.35673624288425,4.36,a-phys-i1,2022-23,Quincy - Atlantic Middle,02430305, 583, 28, 0.0, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 345, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 336, 6, 1.2, 1.8, 0.0, 0.0, 0.3, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Quincy - Central Middle,02430315, 659, 6, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 573, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Francis W Parker,02430075, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 601, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Merrymount,02430060, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Montclair,02430065, 452, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Quincy - North Quincy High,02430510," 1,524", 43, 0.8, 2.6, 0.0, 0.2, 0.3, 0.1, 0.0 +3.749525616698292,3.75,a-phys-i1,2022-23,Quincy - Point Webster Middle,02430325, 468, 27, 0.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Quincy - Quincy High,02430505," 1,577", 102, 4.1, 4.9, 0.0, 0.0, 0.6, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 473, 2,"","","","","","","" +0.8652751423149897,1,a-phys-i1,2022-23,Quincy - South West Middle School,02430320, 470, 58, 7.4, 9.4, 0.0, 0.2, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Squantum,02430095, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Wollaston School,02430110, 344, 0,"","","","","","","" +0.6375711574952561,1,a-phys-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 545, 59, 1.8, 9.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 320, 7, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 542, 9, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Randolph - Margaret L Donovan,02440015, 463, 6, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 267, 3,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Randolph - Randolph Community Middle,02440410, 616, 67, 7.8, 3.9, 0.0, 0.0, 1.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Randolph - Randolph High,02440505, 678, 35, 0.7, 4.9, 0.0, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Reading - Alice M Barrows,02460002, 366, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 431, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Birch Meadow,02460005, 361, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - J Warren Killam,02460017, 417, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Joshua Eaton,02460010, 395, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - RISE PreSchool,02460001, 128, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Reading - Reading Memorial High,02460505," 1,116", 31, 2.3, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Reading - Walter S Parker Middle,02460310, 471, 14, 2.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Reading - Wood End Elementary School,02460020, 249, 0,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 783, 9, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0 +7.924098671726756,5,a-phys-i1,2022-23,Revere - Abraham Lincoln,02480025, 694, 6, 0.0, 0.1, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 389, 0,"","","","","","","" +-3.385199240986718,1,a-phys-i1,2022-23,Revere - CityLab Innovation High School,02480520, 107, 21, 0.9, 15.0, 0.0, 0.0, 8.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Garfield Elementary School,02480056, 765, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Revere - Garfield Middle School,02480057, 607, 17, 1.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Paul Revere,02480050, 499, 5,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Revere - Revere High,02480505," 2,257", 95, 0.0, 3.4, 0.0, 0.0, 3.5, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 602, 47, 0.0, 6.8, 0.0, 0.0, 2.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 706, 2,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 610, 29, 0.0, 3.9, 0.0, 0.0, 3.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Richmond - Richmond Consolidated,02490005, 155, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 660, 50, 6.7, 3.2, 0.0, 0.0, 1.1, 0.2, 0.0 +NA,NA,a-phys-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rochester - Rochester Memorial,02500005, 505, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 253, 0,"","","","","","","" +1.6242884250474376,1.62,a-phys-i1,2022-23,Rockland - John W Rogers Middle,02510305, 734, 80, 5.6, 8.4, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Rockland - Memorial Park,02510020, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rockland - R Stewart Esten,02510025, 326, 2,"","","","","","","" +1.2447817836812136,1.24,a-phys-i1,2022-23,Rockland - Rockland Senior High,02510505, 674, 61, 0.0, 8.9, 0.1, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Rockport - Rockport Elementary,02520005, 316, 6, 1.9, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Rockport - Rockport High,02520510, 235, 11, 3.8, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Rockport - Rockport Middle,02520305, 195, 10, 2.6, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Rowe - Rowe Elementary,02530005, 70, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505," 1,385", 92, 0.1, 6.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Bates,02580003, 419, 2,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 299, 17, 3.7, 3.0, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Carlton,02580015, 265, 1,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Salem - Collins Middle,02580305, 670, 58, 5.8, 4.5, 0.0, 0.0, 2.1, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 326, 18, 1.8, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.6527514231499061,1,a-phys-i1,2022-23,Salem - New Liberty Innovation School,02580510, 70, 8, 0.0, 11.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Salem Early Childhood,02580001, 131, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Salem - Salem High,02580505, 985, 27, 0.3, 1.2, 0.0, 0.0, 1.4, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Salem - Salem Prep High School,02580515, 21, 0,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Salem - Saltonstall School,02580050, 417, 33, 3.8, 5.5, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Witchcraft Heights,02580070, 475, 3,"","","","","","","" +4.280834914611005,4.28,a-phys-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 489, 24, 0.0, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sandwich - Forestdale School,02610002, 574, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Sandwich - Oak Ridge,02610025, 690, 27, 2.2, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 955, 50, 4.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 852, 12, 1.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Saugus - Saugus High,02620505, 762, 25, 2.1, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +3.5977229601518026,3.6,a-phys-i1,2022-23,Saugus - Saugus Middle School,02620305, 638, 37, 0.5, 5.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 469, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 40, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Cushing Elementary,02640007, 355, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Scituate - Gates Middle School,02640305, 610, 10, 1.6, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Scituate - Hatherly Elementary,02640010, 259, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Scituate High School,02640505, 770, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 469, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 497, 32, 5.4, 1.4, 0.0, 0.0, 0.2, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Seekonk - George R Martin,02650007, 465, 7, 0.6, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 597, 3,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Seekonk - Seekonk High,02650505, 547, 51, 3.5, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4,"","","","","","","","" +NA,NA,a-phys-i1,2022-23,Sharon - Cottage Street,02660005, 456, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sharon - East Elementary,02660010, 501, 1,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Sharon - Heights Elementary,02660015, 581, 7, 0.0, 0.2, 0.0, 1.2, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 67, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Sharon - Sharon High,02660505," 1,153", 35, 1.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sharon - Sharon Middle,02660305, 861, 5,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605," 1,313", 63, 4.8, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sherborn - Pine Hill,02690010, 412, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 266, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Floral Street School,02710020, 571, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 633, 2,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 969, 10, 0.7, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 231, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 980, 11, 1.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505," 1,863", 43, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Shrewsbury - Spring Street School,02710035, 313, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 301, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 126, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505," 1,071", 49, 3.5, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 540, 26, 3.1, 3.0, 0.0, 0.2, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 377, 46, 10.6, 2.7, 0.3, 0.0, 1.1, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Somerset - Chace Street,02730005, 330, 6, 0.6, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerset - North Elementary,02730008, 476, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Somerset - Somerset Middle School,02730305, 588, 31, 2.9, 3.4, 0.0, 0.0, 2.4, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Somerset - South,02730015, 268, 0,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505," 1,020", 122, 10.5, 5.1, 0.0, 0.0, 3.9, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 592, 16, 2.2, 0.3, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerville - Arthur D Healey,02740075, 553, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Somerville - Benjamin G Brown,02740015, 220, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 263, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Somerville - E Somerville Community,02740111, 756, 15, 0.9, 1.1, 0.0, 0.0, 0.9, 0.0, 0.0 +-22.740037950664142,1,a-phys-i1,2022-23,Somerville - Full Circle High School,02740510, 74, 32, 0.0, 40.5, 0.0, 0.0, 2.7, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Somerville - John F Kennedy,02740083, 449, 9, 1.1, 0.7, 0.0, 0.0, 1.1, 0.0, 0.0 +-29.9506641366224,1,a-phys-i1,2022-23,Somerville - Next Wave Junior High,02740410, 22, 11, 0.0, 50.0, 0.0, 0.0, 9.1, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Somerville - Somerville High,02740505," 1,373", 93, 2.5, 3.9, 0.0, 0.0, 5.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 380, 4,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Somerville - Winter Hill Community,02740120, 454, 25, 3.5, 1.5, 0.0, 0.0, 2.0, 0.0, 0.0 +4.584440227703984,4.58,a-phys-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 536, 33, 3.5, 4.5, 0.0, 0.0, 1.1, 0.0, 0.2 +6.330170777988616,5,a-phys-i1,2022-23,South Hadley - Mosier,02780020, 356, 9, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,South Hadley - Plains Elementary,02780015, 341, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,South Hadley - South Hadley High,02780505, 518, 57, 8.3, 5.2, 0.0, 0.0, 0.2, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 856, 24, 0.0, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550," 1,085", 6, 0.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 658, 34, 3.3, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.848197343453511,5,a-phys-i1,2022-23,Southampton - William E Norris,02750005, 492, 7, 1.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - Margaret A Neary,02760020, 271, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - Mary E Finn School,02760008, 379, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - P Brent Trottier,02760305, 390, 2,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Southbridge - Charlton Street,02770005, 280, 27, 8.9, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Southbridge - Eastford Road,02770010, 396, 9, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +-28.12903225806452,1,a-phys-i1,2022-23,Southbridge - Southbridge Academy,02770525, 42, 22, 9.5, 47.6, 2.4, 0.0, 0.0, 0.0, 0.0 +-0.04554079696394725,1,a-phys-i1,2022-23,Southbridge - Southbridge High School,02770515, 501, 61, 1.8, 10.6, 0.2, 0.0, 0.0, 1.0, 0.0 +3.825426944971537,3.83,a-phys-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 435, 44, 7.6, 5.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Southbridge - West Street,02770020, 365, 42, 9.6, 3.8, 0.0, 0.0, 0.0, 0.5, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605," 1,583", 50, 0.4, 2.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 301, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 69, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - South Egremont,07650030, 13, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - Undermountain,07650035, 249, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,196", 71, 3.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 397, 7, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 648, 37, 4.9, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 339, 2,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 379, 23, 0.5, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 266, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 394, 44, 6.9, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 451, 9, 0.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 438, 15, 2.1, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 328, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 243, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Balliet Preschool,02810003, 184, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Brightwood,02810025, 517, 3,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 280, 11, 0.0, 3.6, 0.0, 0.0, 1.1, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 325, 16, 0.0, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Springfield - Daniel B Brunton,02810035, 406, 12, 0.0, 3.0, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 231, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Springfield - Edward P. Boland School,02810010, 617, 9, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Elias Brookings,02810030, 292, 1,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Springfield - Emergence Academy,02810318, 196, 15, 0.0, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-2.8538899430740052,1,a-phys-i1,2022-23,Springfield - Forest Park Middle,02810325, 412, 72, 0.5, 14.3, 0.0, 0.0, 4.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Frank H Freedman,02810075, 295, 5,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Springfield - Frederick Harris,02810080, 623, 10, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 40, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 38, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - German Gerena Community School,02810195, 644, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Glenwood,02810065, 312, 4,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Springfield - Glickman Elementary,02810068, 344, 6, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +2.5351043643263753,2.54,a-phys-i1,2022-23,Springfield - High School Of Commerce,02810510," 1,219", 130, 1.2, 7.2, 0.0, 0.0, 2.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Hiram L Dorman,02810050, 308, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Homer Street,02810085, 453, 2,"","","","","","","" +-0.5768500948766616,1,a-phys-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 231, 50, 10.8, 11.3, 0.0, 0.0, 6.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 618, 4,"","","","","","","" +-6.876660341555979,1,a-phys-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 443, 96, 2.0, 19.6, 0.0, 0.2, 1.1, 0.5, 0.0 +-4.827324478178368,1,a-phys-i1,2022-23,Springfield - John J Duggan Academy,02810320, 863, 162, 4.2, 16.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Kensington International School,02810110, 277, 2,"","","","","","","" +-6.724857685009487,1,a-phys-i1,2022-23,Springfield - Kiley Academy,02810316, 356, 81, 7.0, 19.4, 0.0, 0.3, 1.1, 0.0, 0.0 +-8.698292220113853,1,a-phys-i1,2022-23,Springfield - Kiley Prep,02810315, 309, 77, 0.0, 22.0, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Liberty,02810115, 275, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 23, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Lincoln,02810120, 487, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Margaret C Ells,02810060, 211, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 315, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary M Lynch,02810140, 239, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary M Walsh,02810155, 281, 1,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Springfield - Mary O Pottenger,02810145, 436, 7, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Springfield - Milton Bradley School,02810023, 575, 9, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 654, 9, 0.0, 1.2, 0.0, 0.0, 0.2, 0.0, 0.0 +-9.912713472485772,1,a-phys-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 263, 62, 0.0, 23.6, 0.0, 0.0, 0.8, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620," 1,396", 92, 2.1, 5.4, 0.0, 0.0, 0.0, 0.1, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Springfield - STEM Middle Academy,02810350, 307, 12, 0.7, 3.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Samuel Bowles,02810020, 234, 2,"","","","","","","" +-5.358633776091084,1,a-phys-i1,2022-23,Springfield - South End Middle School,02810355, 204, 36, 0.5, 17.6, 0.0, 0.0, 1.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Springfield - Springfield Central High,02810500," 2,219", 163, 3.3, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +3.1423149905123333,3.14,a-phys-i1,2022-23,Springfield - Springfield High School,02810570, 346, 27, 1.2, 6.4, 0.0, 0.0, 2.9, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530," 1,175", 94, 1.2, 7.7, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 104, 1,"","","","","","","" +-3.461100569259963,1,a-phys-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 352, 59, 2.8, 15.1, 0.0, 0.0, 0.6, 0.3, 0.0 +-1.0322580645161301,1,a-phys-i1,2022-23,Springfield - Springfield Middle School,02810360, 42, 9, 9.5, 11.9, 0.0, 0.0, 4.8, 2.4, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 48, 1,"","","","","","","" +-1.7153700189753334,1,a-phys-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 78, 15, 1.3, 12.8, 0.0, 0.0, 9.0, 6.4, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 77, 8, 1.3, 7.8, 0.0, 0.0, 1.3, 0.0, 0.0 +-6.117647058823532,1,a-phys-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 145, 32, 4.8, 18.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 151, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Springfield - Sumner Avenue,02810160, 531, 6, 0.4, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +1.3206831119544582,1.32,a-phys-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 648, 68, 2.0, 8.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 453, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Springfield - Thomas M Balliet,02810015, 298, 11, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,Springfield - Van Sickle Academy,02810485, 288, 26, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Springfield - Warner,02810180, 280, 18, 3.2, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Washington,02810185, 454, 4,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Springfield - White Street,02810190, 468, 16, 0.9, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Springfield - William N. DeBerry,02810045, 290, 20, 4.1, 2.8, 0.0, 0.0, 1.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505," 1,556", 87, 1.0, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +3.749525616698292,3.75,a-phys-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 503, 35, 3.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoneham - Colonial Park,02840005, 260, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoneham - Robin Hood,02840025, 401, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoneham - South,02840030, 375, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 691, 10, 1.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Stoneham - Stoneham High,02840505, 635, 62, 9.6, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 275, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 361, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 398, 0,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 849, 68, 1.9, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 342, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - South Elementary,02850015, 292, 0,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Stoughton - Stoughton High,02850505," 1,118", 91, 2.9, 6.5, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 905, 1,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 852, 14, 1.3, 0.7, 0.0, 0.0, 0.0, 0.1, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 861, 31, 3.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 331, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Israel Loring School,02880015, 436, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Josiah Haynes,02880010, 382, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Peter Noyes,02880030, 590, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 189, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Early Learning,02900003, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Elementary,02900005, 311, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton High School,02900510, 379, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Middle School,02900305, 302, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Clarke,02910005, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Hadley,02910010, 362, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Stanley,02910020, 164, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Swampscott - Swampscott High,02910505, 660, 20, 0.9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Swampscott - Swampscott Middle,02910305, 705, 10, 0.6, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 293, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swansea - Gardner,02920015, 260, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Swansea - Joseph Case High,02920505, 552, 42, 4.3, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 501, 18, 3.2, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Swansea - Joseph G Luther,02920020, 184, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 254, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900," 3,551", 0,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 560, 36, 5.7, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 694, 20, 0.1, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 534, 38, 0.2, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.343453510436432,5,a-phys-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 752, 31, 1.2, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - East Taunton Elementary,02930010, 548, 4,"","","","","","","" +6.481973434535104,5,a-phys-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 301, 6, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 355, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Taunton - Elizabeth Pole,02930027, 669, 7, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - H H Galligan,02930057, 279, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 900, 5,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Taunton - John F Parker Middle,02930305, 551, 36, 0.2, 6.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 476, 6, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,Taunton - Joseph H Martin,02930042, 657, 70, 0.0, 10.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 116, 15, 0.0, 12.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,Taunton - Taunton High,02930505," 2,905", 341, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tewksbury - Heath-Brook,02950010, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - John F. Ryan,02950023, 526, 1,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 512, 6, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tewksbury - L F Dewing,02950001, 653, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 217, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - North Street,02950020, 284, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 777, 23, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 303, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Topsfield - Proctor Elementary,02980005, 262, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Topsfield - Steward Elementary,02980010, 379, 0,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 967, 62, 0.3, 6.1, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Triton - Newbury Elementary,07730020, 419, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Triton - Pine Grove,07730025, 441, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Triton - Salisbury Elementary,07730015, 436, 4,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Triton - Triton Regional High School,07730505, 665, 40, 2.9, 4.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,Triton - Triton Regional Middle School,07730405, 325, 11, 3.1, 1.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Truro - Truro Central,03000005, 106, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 772, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 422, 8, 0.0, 1.4, 0.0, 0.0, 0.5, 0.0, 0.2 +6.481973434535104,5,a-phys-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 409, 8, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 225, 26, 2.7, 10.7, 0.0, 0.0, 3.1, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 643, 39, 1.2, 5.0, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 70, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 360, 8, 2.2, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 775, 94, 5.9, 7.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Uxbridge - Gateway to College,03040515, 49, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 560, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Uxbridge - Uxbridge High,03040505, 605, 39, 2.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 499, 25, 5.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 508, 48, 4.7, 5.3, 0.0, 0.0, 0.4, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Wachusett - Central Tree Middle,07750310, 377, 8, 1.9, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 287, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 454, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Dawson,07750020, 512, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Early Childhood Center,07750001, 164, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 340, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Houghton Elementary,07750027, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 494, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wachusett - Mountview Middle,07750305, 780, 7, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 373, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Paxton Center,07750040, 456, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Thomas Prince,07750045, 346, 1,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Wachusett - Wachusett Regional High,07750505," 1,965", 78, 1.6, 2.7, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Dolbeare,03050005, 442, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 140, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Wakefield - Galvin Middle School,03050310," 1,077", 25, 1.4, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Greenwood,03050020, 220, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 840, 7, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Walton,03050040, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wakefield - Woodville School,03050015, 435, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wales - Wales Elementary,03060005, 99, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Walpole - Bird Middle,03070305, 383, 7, 1.6, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Walpole - Boyden,03070010, 425, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 115, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 423, 16, 3.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Walpole - Elm Street School,03070005, 454, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Fisher,03070015, 479, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Old Post Road,03070018, 466, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Walpole - Walpole High,03070505," 1,014", 44, 3.0, 2.7, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 517, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 413, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 397, 3,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 636, 48, 2.4, 5.8, 0.0, 0.0, 2.7, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 633, 82, 9.8, 6.0, 0.0, 0.0, 3.5, 0.0, 0.2 +7.772296015180265,5,a-phys-i1,2022-23,Waltham - Northeast Elementary School,03080040, 582, 9, 1.4, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 390, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 214, 1,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Waltham - Waltham Sr High,03080505," 1,921", 149, 1.0, 6.5, 0.0, 0.0, 1.2, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 424, 7, 1.4, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 414, 7, 1.2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 525, 33, 0.6, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ware - Ware Middle School,03090305, 259, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 39, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wareham - Wareham Elementary School,03100017, 974, 5,"","","","","","","" +-2.550284629981026,1,a-phys-i1,2022-23,Wareham - Wareham Middle,03100305, 445, 69, 4.7, 13.9, 0.0, 0.0, 0.0, 0.0, 0.2 +-5.586337760910816,1,a-phys-i1,2022-23,Wareham - Wareham Senior High,03100505, 649, 160, 13.1, 17.9, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Watertown - Cunniff,03140015, 335, 1,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Watertown - Hosmer,03140020, 789, 8, 0.3, 0.6, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Watertown - James Russell Lowell,03140025, 379, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Watertown - Watertown High,03140505, 777, 14, 0.6, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Watertown - Watertown Middle,03140305, 552, 15, 1.6, 1.3, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wayland - Claypit Hill School,03150005, 511, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - Happy Hollow School,03150015, 367, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - Loker School,03150020, 388, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 71, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wayland - Wayland High School,03150505, 830, 7, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Wayland - Wayland Middle School,03150305, 628, 27, 3.7, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +-3.0056925996204944,1,a-phys-i1,2022-23,Webster - Bartlett High School,03160505, 393, 64, 5.1, 14.5, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Webster - Park Avenue Elementary,03160015, 836, 16, 0.5, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +3.1423149905123333,3.14,a-phys-i1,2022-23,Webster - Webster Middle School,03160315, 636, 66, 4.9, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wellesley - Ernest F Upham,03170050, 161, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Hunnewell,03170025, 202, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - John D Hardy,03170020, 212, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 273, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 120, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Schofield,03170045, 338, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 296, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Wellesley - Wellesley Middle,03170305, 940, 42, 4.1, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Wellesley - Wellesley Sr High,03170505," 1,424", 14, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 98, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 445, 3,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 442, 15, 0.2, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,West Bridgewater - Howard School,03230305, 319, 8, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 320, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Bridgewater - Spring Street School,03230005, 171, 0,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 655, 42, 4.4, 3.5, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - John Ashley,03320005, 187, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,West Springfield - John R Fausey,03320010, 435, 6, 1.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - Memorial,03320025, 211, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Springfield - Mittineague,03320030, 154, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,West Springfield - Philip G Coburn,03320007, 639, 9, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - Tatham,03320040, 233, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 151, 0,"","","","","","","" +3.9772296015180264,3.98,a-phys-i1,2022-23,West Springfield - West Springfield High,03320505," 1,256", 67, 0.1, 5.3, 0.0, 0.0, 0.0, 0.1, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,West Springfield - West Springfield Middle,03320305, 965, 50, 0.0, 5.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westborough - Annie E Fales,03210010, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 544, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - J Harding Armstrong,03210005, 431, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Mill Pond School,03210045, 910, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 610, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Westborough - Westborough High,03210505," 1,212", 12, 0.5, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westfield - Abner Gibbs,03250020, 188, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 178, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Franklin Ave,03250015, 180, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Highland,03250025, 385, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Munger Hill,03250033, 365, 2,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Westfield - Paper Mill,03250036, 354, 9, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Westfield - Southampton Road,03250040, 337, 10, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,Westfield - Westfield High,03250505," 1,081", 152, 9.3, 9.0, 0.1, 0.0, 0.2, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 693, 34, 2.9, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.4592030360531307,2.46,a-phys-i1,2022-23,Westfield - Westfield Middle School,03250310, 715, 73, 5.5, 7.3, 0.0, 0.0, 0.1, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 557, 27, 0.2, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westfield - Westfield Virtual School,03250705, 130, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Abbot Elementary,03260004, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Blanchard Middle,03260310, 552, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Col John Robinson,03260025, 363, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Day Elementary,03260007, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 352, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Nabnasset,03260015, 387, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 315, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Stony Brook School,03260330, 620, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Westford - Westford Academy,03260505," 1,537", 14, 0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 105, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Country,03300010, 341, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Field Elementary School,03300012, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Weston High,03300505, 649, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Weston Middle,03300305, 449, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Woodland,03300015, 326, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westport - Alice A Macomber,03310015, 184, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Westport - Westport Elementary,03310030, 453, 7, 0.7, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Westport - Westport Middle-High School,03310515, 849, 59, 4.4, 3.3, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Deerfield School,03350010, 201, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - Downey,03350012, 317, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Westwood - E W Thurston Middle,03350305, 667, 9, 1.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Martha Jones,03350017, 267, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - Paul Hanlon,03350015, 231, 2,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Westwood - Westwood High,03350505, 915, 20, 2.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 51, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - William E Sheehan,03350025, 291, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Academy Avenue,03360005, 354, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 289, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 219, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 267, 8, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.307400379506641,2.31,a-phys-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,240", 166, 10.4, 7.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Weymouth - Ralph Talbot,03360085, 272, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Thomas V Nash,03360060, 250, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 366, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Wessagusset,03360110, 353, 3,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Weymouth - Weymouth High School,03360505," 1,862", 258, 11.7, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Weymouth - William Seach,03360080, 392, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whately - Whately Elementary,03370005, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 450, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 490, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 493, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 115, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505," 1,113", 52, 0.9, 4.2, 0.0, 0.0, 0.0, 0.1, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 521, 18, 2.3, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +4.963946869070209,4.96,a-phys-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,295", 84, 3.6, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 133, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - Boutwell,03420005, 150, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - North Intermediate,03420060, 253, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 399, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - West Intermediate,03420080, 305, 3,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Wilmington - Wilmington High,03420505, 677, 15, 0.7, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 640, 13, 0.8, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wilmington - Woburn Street,03420020, 432, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Memorial,03430040, 333, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 27, 0,"","","","","","","" +-1.184060721062619,1,a-phys-i1,2022-23,Winchendon - Murdock High School,03430515, 281, 35, 0.4, 12.1, 0.0, 0.0, 1.4, 0.0, 0.0 +0.10626185958254179,1,a-phys-i1,2022-23,Winchendon - Murdock Middle School,03430315, 280, 36, 4.6, 10.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 299, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 85, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Ambrose Elementary,03440045, 345, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Lincoln Elementary,03440005, 334, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Lynch Elementary,03440020, 495, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - McCall Middle,03440305," 1,045", 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Muraco Elementary,03440040, 334, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 444, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Winchester - Winchester High School,03440505," 1,411", 9, 0.6, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 449, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 534, 0,"","","","","","","" +5.115749525616698,5,a-phys-i1,2022-23,Winthrop - Winthrop High School,03460505, 629, 24, 0.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 443, 9, 0.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Clyde Reeves,03470040, 460, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 469, 13, 1.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 352, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 404, 0,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 538, 17, 1.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Linscott-Rumford,03470025, 204, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Malcolm White,03470055, 338, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Mary D Altavesta,03470065, 218, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Shamrock,03470043, 303, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Woburn High,03470505," 1,228", 5,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Worcester - Belmont Street Community,03480020, 672, 7, 0.4, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0 +-0.9563567362428855,1,a-phys-i1,2022-23,Worcester - Burncoat Middle School,03480405, 755, 95, 1.1, 11.8, 0.0, 0.0, 2.3, 0.0, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,Worcester - Burncoat Senior High,03480503," 1,267", 70, 0.1, 5.2, 0.0, 0.0, 1.3, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Worcester - Burncoat Street,03480035, 255, 7, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Canterbury,03480045, 373, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 492, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Worcester - Chandler Magnet,03480052, 422, 15, 0.2, 2.4, 0.0, 0.0, 1.9, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Worcester - City View,03480053, 512, 15, 0.6, 2.3, 0.0, 0.0, 0.4, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Worcester - Claremont Academy,03480350, 531, 52, 2.1, 7.0, 0.0, 0.0, 3.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Clark St Community,03480055, 309, 3,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Worcester - Columbus Park,03480060, 434, 16, 3.5, 0.5, 0.0, 0.0, 0.2, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Worcester - Doherty Memorial High,03480512," 1,431", 112, 4.8, 3.8, 0.0, 0.0, 0.1, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Worcester - Elm Park Community,03480095, 463, 16, 0.9, 2.4, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Flagg Street,03480090, 376, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Worcester - Forest Grove Middle,03480415, 945, 73, 0.7, 6.6, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 245, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Gates Lane,03480110, 595, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 445, 4,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Worcester - Grafton Street,03480115, 498, 10, 1.4, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Head Start,03480002, 406, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Heard Street,03480136, 266, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 397, 9, 2.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 202, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Lake View,03480145, 336, 2,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Worcester - Lincoln Street,03480160, 275, 9, 1.1, 1.8, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - May Street,03480175, 316, 1,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Worcester - Midland Street,03480185, 229, 8, 0.9, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Nelson Place,03480200, 613, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Norrback Avenue,03480202, 559, 3,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Worcester - North High,03480515," 1,520", 124, 2.4, 6.3, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Quinsigamond,03480210, 772, 5,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Worcester - Rice Square,03480215, 536, 7, 0.4, 0.4, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Roosevelt,03480220, 620, 0,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Worcester - South High Community,03480520," 1,809", 143, 2.9, 5.5, 0.0, 0.0, 1.6, 0.0, 0.0 +2.990512333965844,2.99,a-phys-i1,2022-23,Worcester - Sullivan Middle,03480423, 898, 60, 0.2, 6.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Tatnuck,03480230, 410, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Worcester - Thorndyke Road,03480235, 385, 8, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Union Hill School,03480240, 428, 4,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Worcester - University Pk Campus School,03480285, 231, 19, 5.2, 4.3, 0.0, 0.0, 0.4, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Worcester - Vernon Hill School,03480280, 572, 7, 0.3, 0.9, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Wawecus Road School,03480026, 149, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - West Tatnuck,03480260, 385, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Worcester - Woodland Academy,03480030, 543, 23, 2.4, 2.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 390, 0,"","","","","","","" +1.8519924098671725,1.85,a-phys-i1,2022-23,Worcester - Worcester East Middle,03480420, 823, 117, 7.5, 8.1, 0.0, 0.0, 2.2, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Worcester - Worcester Technical High,03480605," 1,482", 61, 1.1, 3.0, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worthington - R. H. Conwell,03490010, 77, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wrentham - Charles E Roderick,03500010, 377, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wrentham - Delaney,03500003, 603, 0,"","","","","","","" 5.874762808349146,5,a-phys-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,447", 43, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 NA,NA,a-phys-i1,2021-22,Abington - Abington Early Education Program,00010001, 100, 0,"","","","","","","" 3.749525616698292,3.75,a-phys-i1,2021-22,Abington - Abington High,00010505, 603, 38, 2.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/2C_1_attendance.csv b/data/admin_data/dese/2C_1_attendance.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/2C_1_attendance.csv rename to data/admin_data/dese/2C_1_attendance.csv index 562654b..de9b29e 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/2C_1_attendance.csv +++ b/data/admin_data/dese/2C_1_attendance.csv @@ -1,92 +1,92 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Attendance Rate,Average # of Absences,Absent 10 or more days,Chronically Absent (10% or more),Chronically Absent (20% or more),Unexcused > 9 days 1.8799999999999997,1.88,a-vale-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 94.5, 9.8, 41.3, 15.3, 2.4, 40.5 --3.4,1,a-vale-i1,2021-22,Abington-Abington Middle School,00010405, 91.5, 14.7, 58.6, 28.5, 7.2, 25.0 --2.4,1,a-vale-i1,2021-22,Abington-Beaver Brook Elementary,00010020, 92.5, 13.0, 60.1, 26.0, 3.8, 19.1 0.6400000000000006,1,a-vale-i1,2021-22,Abington-Woodsdale Elementary School,00010015, 93.1, 12.3, 56.9, 18.4, 2.2, 14.7 -4.24,1,a-vale-i1,2021-22,Abington-Abington Early Education Program,00010001, 89.9, 16.0, 57.1, 30.6, 11.2, 27.6 +-2.4,1,a-vale-i1,2021-22,Abington-Beaver Brook Elementary,00010020, 92.5, 13.0, 60.1, 26.0, 3.8, 19.1 +-3.4,1,a-vale-i1,2021-22,Abington-Abington Middle School,00010405, 91.5, 14.7, 58.6, 28.5, 7.2, 25.0 -8.6,1,a-vale-i1,2021-22,Abington-Abington High,00010505, 88.4, 19.7, 71.4, 41.5, 15.5, 49.4 -10.4,1,a-vale-i1,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 88.1, 20.6, 73.5, 46.0, 14.5, 0.2 -3.16,3.16,a-vale-i1,2021-22,Acton-Boxborough-Blanchard Memorial School,06000005, 94.9, 8.9, 38.5, 12.1, 0.6, 0.0 -3.84,3.84,a-vale-i1,2021-22,Acton-Boxborough-Merriam School,06000010, 94.8, 9.2, 36.9, 10.4, 0.6, 0.0 --2.8400000000000007,1,a-vale-i1,2021-22,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 92.0, 13.4, 57.4, 27.1, 6.2, 0.0 4.6,4.6,a-vale-i1,2021-22,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 95.5, 8.1, 28.7, 8.5, 2.6, 1.8 -3.6399999999999997,3.64,a-vale-i1,2021-22,Acton-Boxborough-McCarthy-Towne School,06000015, 94.6, 9.4, 40.7, 10.9, 1.3, 0.0 4.84,4.84,a-vale-i1,2021-22,Acton-Boxborough-Raymond J Grey Junior High,06000405, 95.9, 7.3, 25.4, 7.9, 1.2, 0.9 2.6799999999999997,2.68,a-vale-i1,2021-22,Acton-Boxborough-Luther Conant School,06000030, 94.2, 10.1, 43.5, 13.3, 2.7, 0.0 2.84,2.84,a-vale-i1,2021-22,Acton-Boxborough-Paul P Gates Elementary School,06000025, 94.5, 9.6, 40.4, 12.9, 2.6, 0.0 3.0799999999999996,3.08,a-vale-i1,2021-22,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 94.9, 8.8, 33.1, 12.3, 1.0, 0.0 +3.6399999999999997,3.64,a-vale-i1,2021-22,Acton-Boxborough-McCarthy-Towne School,06000015, 94.6, 9.4, 40.7, 10.9, 1.3, 0.0 +3.84,3.84,a-vale-i1,2021-22,Acton-Boxborough-Merriam School,06000010, 94.8, 9.2, 36.9, 10.4, 0.6, 0.0 +-2.8400000000000007,1,a-vale-i1,2021-22,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 92.0, 13.4, 57.4, 27.1, 6.2, 0.0 +3.16,3.16,a-vale-i1,2021-22,Acton-Boxborough-Blanchard Memorial School,06000005, 94.9, 8.9, 38.5, 12.1, 0.6, 0.0 0.6400000000000006,1,a-vale-i1,2021-22,Acushnet-Albert F Ford Middle School,00030305, 93.5, 11.6, 49.6, 18.4, 2.5, 25.2 2.56,2.56,a-vale-i1,2021-22,Acushnet-Acushnet Elementary School,00030025, 94.0, 10.6, 52.3, 13.6, 0.7, 25.0 3.96,3.96,a-vale-i1,2021-22,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 95.2, 8.4, 31.7, 10.1, 1.5, 17.3 --6.0,1,a-vale-i1,2021-22,Agawam-Agawam High,00050505, 90.4, 16.6, 63.3, 35.0, 9.8, 35.6 -5.6800000000000015,1,a-vale-i1,2021-22,Agawam-Agawam Early Childhood Center,00050003, 90.6, 14.9, 62.4, 34.2, 8.4, 59.4 --9.080000000000002,1,a-vale-i1,2021-22,Agawam-Agawam Junior High,00050405, 87.9, 21.2, 74.2, 42.7, 14.4, 30.5 --3.9599999999999995,1,a-vale-i1,2021-22,Agawam-Roberta G. Doering School,00050303, 91.7, 16.7, 72.8, 29.9, 4.1, 44.0 --4.24,1,a-vale-i1,2021-22,Agawam-James Clark School,00050030, 91.4, 15.2, 69.1, 30.6, 3.6, 0.0 --7.159999999999999,1,a-vale-i1,2021-22,Agawam-Robinson Park,00050025, 90.5, 17.0, 78.2, 37.9, 6.1, 8.2 +-6.0,1,a-vale-i1,2021-22,Agawam-Agawam High,00050505, 90.4, 16.6, 63.3, 35.0, 9.8, 35.6 -7.480000000000001,1,a-vale-i1,2021-22,Agawam-Clifford M Granger,00050010, 90.7, 16.3, 78.0, 38.7, 4.0, 12.5 -3.5200000000000005,1,a-vale-i1,2021-22,Agawam-Benjamin J Phelps,00050020, 91.8, 14.5, 66.5, 28.8, 3.5, 11.8 +-7.159999999999999,1,a-vale-i1,2021-22,Agawam-Robinson Park,00050025, 90.5, 17.0, 78.2, 37.9, 6.1, 8.2 +-4.24,1,a-vale-i1,2021-22,Agawam-James Clark School,00050030, 91.4, 15.2, 69.1, 30.6, 3.6, 0.0 +-3.9599999999999995,1,a-vale-i1,2021-22,Agawam-Roberta G. Doering School,00050303, 91.7, 16.7, 72.8, 29.9, 4.1, 44.0 +-9.080000000000002,1,a-vale-i1,2021-22,Agawam-Agawam Junior High,00050405, 87.9, 21.2, 74.2, 42.7, 14.4, 30.5 -1.1200000000000003,1,a-vale-i1,2021-22,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 93.0, 12.5, 53.0, 22.8, 4.4, 33.1 -0.2799999999999997,1,a-vale-i1,2021-22,Amesbury-Amesbury Elementary,00070005, 92.9, 12.3, 59.9, 20.7, 0.6, 35.6 1.6,1.6,a-vale-i1,2021-22,Amesbury-Charles C Cashman Elementary,00070010, 93.1, 12.3, 55.3, 16.0, 2.9, 3.5 -1.4799999999999998,1,a-vale-i1,2021-22,Amesbury-Amesbury Middle,00070013, 92.1, 14.1, 58.5, 23.7, 6.3, 8.7 -2.6,1,a-vale-i1,2021-22,Amesbury-Amesbury High,00070505, 91.9, 14.2, 55.0, 26.5, 6.2, 7.3 -12.0,1,a-vale-i1,2021-22,Amesbury-Amesbury Innovation High School,00070515, 87.2, 21.1, 79.5, 50.0, 25.0, 27.3 +-2.4799999999999995,1,a-vale-i1,2021-22,Amherst-Crocker Farm Elementary,00080009, 92.7, 12.5, 48.9, 26.2, 5.8, 7.4 -1.5599999999999994,1,a-vale-i1,2021-22,Amherst-Fort River Elementary,00080020, 93.4, 11.4, 44.2, 23.9, 3.1, 6.5 0.3200000000000003,1,a-vale-i1,2021-22,Amherst-Wildwood Elementary,00080050, 93.7, 10.9, 45.1, 19.2, 2.0, 7.0 --2.4799999999999995,1,a-vale-i1,2021-22,Amherst-Crocker Farm Elementary,00080009, 92.7, 12.5, 48.9, 26.2, 5.8, 7.4 -1.0,1,a-vale-i1,2021-22,Amherst-Pelham-Amherst Regional Middle School,06050405, 93.1, 12.1, 47.1, 22.5, 5.0, 8.9 -2.0,1,a-vale-i1,2021-22,Amherst-Pelham-Amherst Regional High,06050505, 92.2, 13.7, 47.0, 25.0, 8.5, 9.2 +4.36,4.36,a-vale-i1,2021-22,Andover-Bancroft Elementary,00090003, 94.7, 9.3, 42.2, 9.1, 0.9, 6.8 +2.72,2.72,a-vale-i1,2021-22,Andover-High Plain Elementary,00090004, 94.6, 9.4, 43.2, 13.2, 1.6, 6.4 -10.559999999999999,1,a-vale-i1,2021-22,Andover-Shawsheen School,00090005, 89.7, 15.2, 71.4, 46.4, 8.0, 9.8 +3.12,3.12,a-vale-i1,2021-22,Andover-Henry C Sanborn Elementary,00090010, 94.7, 9.4, 40.9, 12.2, 0.3, 2.4 +2.16,2.16,a-vale-i1,2021-22,Andover-Andover High,00090505, 93.9, 10.9, 38.9, 14.6, 4.6, 4.5 1.6799999999999997,1.68,a-vale-i1,2021-22,Andover-West Elementary,00090025, 94.0, 10.5, 45.8, 15.8, 2.0, 7.2 3.96,3.96,a-vale-i1,2021-22,Andover-Doherty Middle,00090305, 95.5, 8.0, 28.4, 10.1, 0.9, 3.1 4.12,4.12,a-vale-i1,2021-22,Andover-Andover West Middle,00090310, 95.4, 8.3, 31.3, 9.7, 1.3, 5.2 -2.16,2.16,a-vale-i1,2021-22,Andover-Andover High,00090505, 93.9, 10.9, 38.9, 14.6, 4.6, 4.5 -2.72,2.72,a-vale-i1,2021-22,Andover-High Plain Elementary,00090004, 94.6, 9.4, 43.2, 13.2, 1.6, 6.4 -4.36,4.36,a-vale-i1,2021-22,Andover-Bancroft Elementary,00090003, 94.7, 9.3, 42.2, 9.1, 0.9, 6.8 -3.12,3.12,a-vale-i1,2021-22,Andover-Henry C Sanborn Elementary,00090010, 94.7, 9.4, 40.9, 12.2, 0.3, 2.4 -4.4799999999999995,4.48,a-vale-i1,2021-22,Andover-South Elementary,00090020, 94.7, 9.3, 43.7, 8.8, 0.7, 5.6 3.9200000000000004,3.92,a-vale-i1,2021-22,Andover-Wood Hill Middle School,00090350, 95.6, 7.8, 30.1, 10.2, 1.1, 4.0 +4.4799999999999995,4.48,a-vale-i1,2021-22,Andover-South Elementary,00090020, 94.7, 9.3, 43.7, 8.8, 0.7, 5.6 -8.959999999999999,1,a-vale-i1,2021-22,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 88.7, 19.0, 66.8, 42.4, 15.5, 48.3 +4.36,4.36,a-vale-i1,2021-22,Arlington-Brackett,00100010, 95.0, 9.0, 39.0, 9.1, 0.4, 0.0 +3.6,3.6,a-vale-i1,2021-22,Arlington-Cyrus E Dallin,00100025, 94.9, 9.0, 39.7, 11.0, 0.5, 0.0 +2.72,2.72,a-vale-i1,2021-22,Arlington-Hardy,00100030, 94.3, 9.9, 44.2, 13.2, 1.2, 0.0 +0.0,1,a-vale-i1,2021-22,Arlington-Menotomy Preschool,00100038, 92.1, 12.3, 56.8, 20.0, 7.4, 2.1 2.8,2.8,a-vale-i1,2021-22,Arlington-Thompson,00100050, 94.2, 10.2, 45.6, 13.0, 1.3, 0.0 3.7600000000000002,3.76,a-vale-i1,2021-22,Arlington-M Norcross Stratton,00100055, 94.9, 8.9, 35.8, 10.6, 2.2, 0.0 4.76,4.76,a-vale-i1,2021-22,Arlington-Gibbs School,00100305, 95.2, 8.6, 34.9, 8.1, 1.3, 4.6 3.6,3.6,a-vale-i1,2021-22,Arlington-Ottoson Middle,00100410, 94.8, 9.3, 35.1, 11.0, 2.4, 2.2 0.6400000000000006,1,a-vale-i1,2021-22,Arlington-Arlington High,00100505, 92.7, 12.6, 44.0, 18.4, 6.2, 0.8 1.9600000000000002,1.96,a-vale-i1,2021-22,Arlington-John A Bishop,00100005, 94.3, 10.0, 45.2, 15.1, 0.7, 0.0 -4.36,4.36,a-vale-i1,2021-22,Arlington-Brackett,00100010, 95.0, 9.0, 39.0, 9.1, 0.4, 0.0 -3.6,3.6,a-vale-i1,2021-22,Arlington-Cyrus E Dallin,00100025, 94.9, 9.0, 39.7, 11.0, 0.5, 0.0 -2.72,2.72,a-vale-i1,2021-22,Arlington-Hardy,00100030, 94.3, 9.9, 44.2, 13.2, 1.2, 0.0 -0.0,1,a-vale-i1,2021-22,Arlington-Menotomy Preschool,00100038, 92.1, 12.3, 56.8, 20.0, 7.4, 2.1 3.28,3.28,a-vale-i1,2021-22,Arlington-Peirce,00100045, 94.7, 9.2, 37.3, 11.8, 1.8, 0.0 2.72,2.72,a-vale-i1,2021-22,Ashburnham-Westminster-Westminster Elementary,06100005, 93.9, 10.7, 48.6, 13.2, 0.3, 23.3 -3.56,3.56,a-vale-i1,2021-22,Ashburnham-Westminster-Meetinghouse School,06100010, 94.2, 10.2, 45.0, 11.1, 0.6, 32.2 --0.12000000000000029,1,a-vale-i1,2021-22,Ashburnham-Westminster-Briggs Elementary,06100025, 93.2, 11.2, 52.3, 20.3, 1.4, 30.9 -3.88,3.88,a-vale-i1,2021-22,Ashburnham-Westminster-Overlook Middle School,06100305, 95.2, 8.5, 33.3, 10.3, 0.7, 28.4 0.44000000000000056,1,a-vale-i1,2021-22,Ashburnham-Westminster-Oakmont Regional High School,06100505, 92.9, 12.5, 53.8, 18.9, 3.8, 40.9 +3.88,3.88,a-vale-i1,2021-22,Ashburnham-Westminster-Overlook Middle School,06100305, 95.2, 8.5, 33.3, 10.3, 0.7, 28.4 +-0.12000000000000029,1,a-vale-i1,2021-22,Ashburnham-Westminster-Briggs Elementary,06100025, 93.2, 11.2, 52.3, 20.3, 1.4, 30.9 +3.56,3.56,a-vale-i1,2021-22,Ashburnham-Westminster-Meetinghouse School,06100010, 94.2, 10.2, 45.0, 11.1, 0.6, 32.2 1.4400000000000006,1.44,a-vale-i1,2021-22,Ashland-Ashland High,00140505, 93.8, 10.6, 38.3, 16.4, 3.9, 24.1 0.6799999999999997,1,a-vale-i1,2021-22,Ashland-Ashland Middle,00140405, 93.6, 11.2, 44.2, 18.3, 2.8, 0.0 0.8799999999999997,1,a-vale-i1,2021-22,Ashland-David Mindess,00140015, 93.6, 11.0, 51.6, 17.8, 1.3, 0.0 --14.52,1,a-vale-i1,2021-22,Ashland-William Pittaway Elementary,00140005, 87.9, 20.0, 80.5, 56.3, 12.6, 0.0 -2.4400000000000004,1,a-vale-i1,2021-22,Ashland-Henry E Warren Elementary,00140010, 92.3, 13.3, 57.2, 26.1, 4.1, 3.7 +-14.52,1,a-vale-i1,2021-22,Ashland-William Pittaway Elementary,00140005, 87.9, 20.0, 80.5, 56.3, 12.6, 0.0 -2.88,1,a-vale-i1,2021-22,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 91.3, 15.4, 55.8, 27.2, 8.1, 40.8 -9.559999999999999,1,a-vale-i1,2021-22,Athol-Royalston-Athol High,06150505, 88.0, 20.1, 68.5, 43.9, 19.0, 53.6 -10.559999999999999,1,a-vale-i1,2021-22,Athol-Royalston-Athol-Royalston Middle School,06150305, 88.7, 19.2, 75.8, 46.4, 14.4, 51.9 -6.719999999999999,1,a-vale-i1,2021-22,Athol-Royalston-Royalston Community School,06150050, 90.8, 15.8, 76.4, 36.8, 6.9, 41.7 -8.0,1,a-vale-i1,2021-22,Athol-Royalston-Athol Community Elementary School,06150020, 90.0, 17.1, 72.5, 40.0, 8.5, 39.3 -6.519999999999999,1,a-vale-i1,2021-22,Atlantis Charter (District)-Atlantis Charter School,04910550, 90.6, 16.6, 69.2, 36.3, 8.7, 37.4 +-3.6400000000000006,1,a-vale-i1,2021-22,Attleboro-Peter Thacher Elementary School,00160050, 91.3, 14.7, 58.9, 29.1, 6.9, 31.2 +-1.4799999999999998,1,a-vale-i1,2021-22,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 12.7, 52.7, 23.7, 4.2, 30.7 +-5.359999999999999,1,a-vale-i1,2021-22,Attleboro-Cyril K. Brennan Middle School,00160315, 91.7, 14.3, 58.6, 33.4, 7.0, 46.7 +-2.2400000000000007,1,a-vale-i1,2021-22,Attleboro-Wamsutta Middle School,00160320, 92.5, 13.1, 51.9, 25.6, 4.7, 19.0 +-4.56,1,a-vale-i1,2021-22,Attleboro-Attleboro High,00160505, 90.8, 15.9, 58.2, 31.4, 10.1, 36.8 +-11.64,1,a-vale-i1,2021-22,Attleboro-Attleboro Community Academy,00160515, 88.3, 12.9, 52.6, 49.1, 14.0, 52.6 +-0.9200000000000003,1,a-vale-i1,2021-22,Attleboro-Hill-Roberts Elementary School,00160045, 92.6, 12.6, 58.5, 22.3, 3.9, 13.1 +-3.5599999999999996,1,a-vale-i1,2021-22,Attleboro-Attleboro Virtual Academy,00160705, 89.8, 16.3, 42.2, 28.9, 17.8, 2.2 -4.2,1,a-vale-i1,2021-22,Attleboro-Thomas Willett Elementary School,00160035, 92.2, 13.0, 59.5, 30.5, 4.7, 56.1 -14.76,1,a-vale-i1,2021-22,Attleboro-Early Learning Center,00160008, 86.8, 17.3, 71.6, 56.9, 13.3, 30.3 --3.5599999999999996,1,a-vale-i1,2021-22,Attleboro-Attleboro Virtual Academy,00160705, 89.8, 16.3, 42.2, 28.9, 17.8, 2.2 --11.64,1,a-vale-i1,2021-22,Attleboro-Attleboro Community Academy,00160515, 88.3, 12.9, 52.6, 49.1, 14.0, 52.6 --4.56,1,a-vale-i1,2021-22,Attleboro-Attleboro High,00160505, 90.8, 15.9, 58.2, 31.4, 10.1, 36.8 --2.2400000000000007,1,a-vale-i1,2021-22,Attleboro-Wamsutta Middle School,00160320, 92.5, 13.1, 51.9, 25.6, 4.7, 19.0 --5.359999999999999,1,a-vale-i1,2021-22,Attleboro-Cyril K. Brennan Middle School,00160315, 91.7, 14.3, 58.6, 33.4, 7.0, 46.7 --1.4799999999999998,1,a-vale-i1,2021-22,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 12.7, 52.7, 23.7, 4.2, 30.7 --3.6400000000000006,1,a-vale-i1,2021-22,Attleboro-Peter Thacher Elementary School,00160050, 91.3, 14.7, 58.9, 29.1, 6.9, 31.2 --0.9200000000000003,1,a-vale-i1,2021-22,Attleboro-Hill-Roberts Elementary School,00160045, 92.6, 12.6, 58.5, 22.3, 3.9, 13.1 --2.6400000000000006,1,a-vale-i1,2021-22,Attleboro-Hyman Fine Elementary School,00160040, 92.4, 13.0, 61.9, 26.6, 4.2, 38.1 -1.9599999999999995,1,a-vale-i1,2021-22,Attleboro-A. Irvin Studley Elementary School,00160001, 92.8, 12.0, 57.5, 24.9, 1.4, 5.8 +-2.6400000000000006,1,a-vale-i1,2021-22,Attleboro-Hyman Fine Elementary School,00160040, 92.4, 13.0, 61.9, 26.6, 4.2, 38.1 -3.5200000000000005,1,a-vale-i1,2021-22,Auburn-Bryn Mawr,00170010, 92.2, 13.8, 63.5, 28.8, 2.6, 44.6 -1.3200000000000003,1,a-vale-i1,2021-22,Auburn-Pakachoag School,00170025, 92.6, 12.9, 62.0, 23.3, 1.9, 15.4 -5.119999999999999,1,a-vale-i1,2021-22,Auburn-Auburn Senior High,00170505, 90.9, 15.9, 61.6, 32.8, 9.5, 17.1 @@ -94,60 +94,60 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 0.8,1,a-vale-i1,2021-22,Auburn-Swanson Road Intermediate School,00170030, 93.3, 11.9, 58.2, 18.0, 1.4, 17.5 -3.2,1,a-vale-i1,2021-22,Avon-Avon Middle High School,00180510, 91.6, 14.4, 52.6, 28.0, 8.0, 33.5 -0.04000000000000057,1,a-vale-i1,2021-22,Avon-Ralph D Butler,00180010, 93.6, 10.8, 47.1, 20.1, 2.2, 22.6 --0.8400000000000005,1,a-vale-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 92.9, 12.6, 51.5, 22.1, 3.6, 33.2 --4.6,1,a-vale-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 90.8, 15.8, 58.8, 31.5, 10.5, 48.8 0.5599999999999994,1,a-vale-i1,2021-22,Ayer Shirley School District-Lura A. White Elementary School,06160001, 93.1, 12.2, 57.3, 18.6, 1.8, 17.4 +-4.6,1,a-vale-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 90.8, 15.8, 58.8, 31.5, 10.5, 48.8 +-0.8400000000000005,1,a-vale-i1,2021-22,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 92.9, 12.6, 51.5, 22.1, 3.6, 33.2 0.4799999999999997,1,a-vale-i1,2021-22,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 93.3, 11.5, 50.5, 18.8, 2.5, 50.0 --5.2,1,a-vale-i1,2021-22,Barnstable-Barnstable United Elementary School,00200050, 91.7, 14.3, 63.5, 33.0, 5.6, 24.8 --7.080000000000001,1,a-vale-i1,2021-22,Barnstable-Barnstable Intermediate School,00200315, 90.7, 15.7, 67.0, 37.7, 7.8, 52.5 -11.319999999999999,1,a-vale-i1,2021-22,Barnstable-Barnstable High,00200505, 86.8, 22.2, 72.6, 48.3, 20.9, 61.1 --3.9200000000000004,1,a-vale-i1,2021-22,Barnstable-Hyannis West Elementary,00200025, 91.6, 13.3, 61.3, 29.8, 4.6, 27.5 --1.6799999999999997,1,a-vale-i1,2021-22,Barnstable-West Villages Elementary School,00200045, 92.6, 13.0, 58.7, 24.2, 2.6, 22.6 +-5.919999999999999,1,a-vale-i1,2021-22,Barnstable-Centerville Elementary,00200010, 91.6, 14.5, 66.8, 34.8, 4.7, 49.2 -18.72,1,a-vale-i1,2021-22,Barnstable-Enoch Cobb Early Learning Center,00200001, 84.8, 20.1, 80.2, 66.8, 28.9, 80.2 -4.0,1,a-vale-i1,2021-22,Barnstable-West Barnstable Elementary,00200005, 91.7, 14.2, 64.6, 30.0, 6.2, 26.1 --5.919999999999999,1,a-vale-i1,2021-22,Barnstable-Centerville Elementary,00200010, 91.6, 14.5, 66.8, 34.8, 4.7, 49.2 +-7.080000000000001,1,a-vale-i1,2021-22,Barnstable-Barnstable Intermediate School,00200315, 90.7, 15.7, 67.0, 37.7, 7.8, 52.5 -5.040000000000001,1,a-vale-i1,2021-22,Barnstable-Barnstable Community Innovation School,00200012, 92.1, 13.6, 68.8, 32.6, 1.0, 47.0 +-3.9200000000000004,1,a-vale-i1,2021-22,Barnstable-Hyannis West Elementary,00200025, 91.6, 13.3, 61.3, 29.8, 4.6, 27.5 +-1.6799999999999997,1,a-vale-i1,2021-22,Barnstable-West Villages Elementary School,00200045, 92.6, 13.0, 58.7, 24.2, 2.6, 22.6 +-5.2,1,a-vale-i1,2021-22,Barnstable-Barnstable United Elementary School,00200050, 91.7, 14.3, 63.5, 33.0, 5.6, 24.8 -0.9200000000000003,1,a-vale-i1,2021-22,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 92.6, 13.1, 47.6, 22.3, 9.2, 0.0 -1.8799999999999997,1.88,a-vale-i1,2021-22,Bedford-Lt Elezer Davis,00230010, 94.2, 10.1, 42.1, 15.3, 1.4, 0.5 2.88,2.88,a-vale-i1,2021-22,Bedford-Bedford High,00230505, 94.5, 9.7, 38.0, 12.8, 2.8, 6.0 3.4,3.4,a-vale-i1,2021-22,Bedford-John Glenn Middle,00230305, 94.9, 9.0, 34.4, 11.5, 1.9, 2.7 4.4,4.4,a-vale-i1,2021-22,Bedford-Lt Job Lane School,00230012, 94.9, 9.1, 38.8, 9.0, 0.7, 0.5 +1.8799999999999997,1.88,a-vale-i1,2021-22,Bedford-Lt Elezer Davis,00230010, 94.2, 10.1, 42.1, 15.3, 1.4, 0.5 +-2.8,1,a-vale-i1,2021-22,Belchertown-Cold Spring,00240005, 91.5, 13.8, 65.5, 27.0, 4.9, 21.7 -0.6799999999999997,1,a-vale-i1,2021-22,Belchertown-Chestnut Hill Community School,00240006, 93.3, 11.9, 55.9, 21.7, 1.4, 26.4 -1.0400000000000005,1,a-vale-i1,2021-22,Belchertown-Swift River Elementary,00240018, 93.0, 12.3, 59.9, 22.6, 2.6, 10.0 -0.04000000000000057,1,a-vale-i1,2021-22,Belchertown-Jabish Middle School,00240025, 92.6, 13.2, 51.3, 20.1, 4.7, 29.7 --2.8,1,a-vale-i1,2021-22,Belchertown-Cold Spring,00240005, 91.5, 13.8, 65.5, 27.0, 4.9, 21.7 -4.8,1,a-vale-i1,2021-22,Belchertown-Belchertown High,00240505, 90.8, 16.0, 58.9, 32.0, 9.7, 32.5 -17.6,1,a-vale-i1,2021-22,Bellingham-Keough Memorial Academy,00250510, 76.6, 34.5, 76.0, 64.0, 64.0, 56.0 --1.3599999999999994,1,a-vale-i1,2021-22,Bellingham-Bellingham High School,00250505, 92.3, 13.4, 56.1, 23.4, 6.3, 27.6 +1.6,1.6,a-vale-i1,2021-22,Bellingham-Bellingham Early Childhood Center,00250003, 93.8, 10.6, 37.0, 16.0, 2.0, 37.0 +-0.7200000000000003,1,a-vale-i1,2021-22,Bellingham-Joseph F DiPietro Elementary School,00250020, 93.2, 11.4, 50.2, 21.8, 2.2, 25.2 -0.35999999999999943,1,a-vale-i1,2021-22,Bellingham-Stall Brook,00250025, 93.0, 11.9, 55.8, 20.9, 4.0, 29.7 -1.5200000000000002,1,a-vale-i1,2021-22,Bellingham-Bellingham Memorial School,00250315, 92.8, 12.6, 54.4, 23.8, 4.6, 47.1 --0.7200000000000003,1,a-vale-i1,2021-22,Bellingham-Joseph F DiPietro Elementary School,00250020, 93.2, 11.4, 50.2, 21.8, 2.2, 25.2 -1.6,1.6,a-vale-i1,2021-22,Bellingham-Bellingham Early Childhood Center,00250003, 93.8, 10.6, 37.0, 16.0, 2.0, 37.0 -4.64,4.64,a-vale-i1,2021-22,Belmont-Mary Lee Burbank,00260010, 95.2, 8.4, 34.3, 8.4, 0.5, 3.5 -4.88,4.88,a-vale-i1,2021-22,Belmont-Winthrop L Chenery Middle,00260305, 95.7, 7.5, 27.2, 7.8, 1.3, 5.4 -3.44,3.44,a-vale-i1,2021-22,Belmont-Roger E Wellington,00260035, 95.1, 8.3, 34.3, 11.4, 1.0, 5.5 +-1.3599999999999994,1,a-vale-i1,2021-22,Bellingham-Bellingham High School,00250505, 92.3, 13.4, 56.1, 23.4, 6.3, 27.6 1.4400000000000006,1.44,a-vale-i1,2021-22,Belmont-Belmont High,00260505, 94.3, 9.8, 35.5, 16.4, 4.4, 7.8 -4.4799999999999995,4.48,a-vale-i1,2021-22,Belmont-Winn Brook,00260005, 95.3, 8.2, 30.2, 8.8, 1.6, 7.8 +4.88,4.88,a-vale-i1,2021-22,Belmont-Winthrop L Chenery Middle,00260305, 95.7, 7.5, 27.2, 7.8, 1.3, 5.4 4.0,4.0,a-vale-i1,2021-22,Belmont-Daniel Butler,00260015, 95.3, 8.3, 34.6, 10.0, 0.3, 6.7 +3.44,3.44,a-vale-i1,2021-22,Belmont-Roger E Wellington,00260035, 95.1, 8.3, 34.3, 11.4, 1.0, 5.5 +4.64,4.64,a-vale-i1,2021-22,Belmont-Mary Lee Burbank,00260010, 95.2, 8.4, 34.3, 8.4, 0.5, 3.5 +4.4799999999999995,4.48,a-vale-i1,2021-22,Belmont-Winn Brook,00260005, 95.3, 8.2, 30.2, 8.8, 1.6, 7.8 -1.0400000000000005,1,a-vale-i1,2021-22,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 93.2, 12.5, 53.3, 22.6, 1.8, 11.1 1.7200000000000002,1.72,a-vale-i1,2021-22,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 93.7, 11.1, 52.2, 15.7, 1.3, 52.1 1.4400000000000006,1.44,a-vale-i1,2021-22,Berkley-Berkley Community School,00270010, 93.5, 11.5, 54.6, 16.4, 1.9, 34.7 0.6799999999999997,1,a-vale-i1,2021-22,Berkley-Berkley Middle School,00270305, 93.6, 11.3, 54.3, 18.3, 2.9, 47.9 -6.56,1,a-vale-i1,2021-22,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 89.6, 18.2, 65.2, 36.4, 12.1, 44.3 --10.559999999999999,1,a-vale-i1,2021-22,Berkshire Hills-Monument Mt Regional High,06180505, 86.6, 22.6, 69.8, 46.4, 19.1, 48.7 --1.3599999999999994,1,a-vale-i1,2021-22,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.8, 12.5, 54.4, 23.4, 4.1, 7.7 -3.28,1,a-vale-i1,2021-22,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 92.3, 13.5, 62.1, 28.2, 3.8, 0.0 --2.4400000000000004,1,a-vale-i1,2021-22,Berlin-Boylston-Berlin Memorial School,06200005, 92.8, 11.7, 58.0, 26.1, 3.5, 46.0 --5.280000000000001,1,a-vale-i1,2021-22,Berlin-Boylston-Tahanto Regional High,06200505, 90.6, 16.6, 65.1, 33.2, 8.3, 11.9 +-1.3599999999999994,1,a-vale-i1,2021-22,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.8, 12.5, 54.4, 23.4, 4.1, 7.7 +-10.559999999999999,1,a-vale-i1,2021-22,Berkshire Hills-Monument Mt Regional High,06180505, 86.6, 22.6, 69.8, 46.4, 19.1, 48.7 0.6,1,a-vale-i1,2021-22,Berlin-Boylston-Boylston Elementary School,06200010, 93.6, 10.6, 49.7, 18.5, 0.3, 43.9 +-5.280000000000001,1,a-vale-i1,2021-22,Berlin-Boylston-Tahanto Regional High,06200505, 90.6, 16.6, 65.1, 33.2, 8.3, 11.9 +-2.4400000000000004,1,a-vale-i1,2021-22,Berlin-Boylston-Berlin Memorial School,06200005, 92.8, 11.7, 58.0, 26.1, 3.5, 46.0 +-0.9200000000000003,1,a-vale-i1,2021-22,Beverly-Beverly Middle School,00300305, 92.9, 12.5, 49.5, 22.3, 5.3, 36.9 +3.4,3.4,a-vale-i1,2021-22,Beverly-Ayers/Ryal Side School,00300055, 94.5, 9.6, 41.9, 11.5, 1.8, 7.0 -14.040000000000001,1,a-vale-i1,2021-22,Beverly-McKeown School,00300002, 86.7, 21.2, 75.6, 55.1, 18.6, 75.0 -2.2400000000000007,1,a-vale-i1,2021-22,Beverly-Centerville Elementary,00300010, 92.9, 12.4, 57.8, 25.6, 2.7, 9.0 0.04000000000000057,1,a-vale-i1,2021-22,Beverly-Cove Elementary,00300015, 93.1, 12.0, 55.0, 19.9, 2.8, 10.8 +-3.4,1,a-vale-i1,2021-22,Beverly-Beverly High,00300505, 90.9, 15.6, 50.4, 28.5, 11.4, 36.1 0.2,1,a-vale-i1,2021-22,Beverly-North Beverly Elementary,00300040, 93.3, 11.9, 52.8, 19.5, 3.4, 11.9 1.2,1.2,a-vale-i1,2021-22,Beverly-Hannah Elementary,00300033, 93.6, 11.5, 56.4, 17.0, 1.5, 19.3 --3.4,1,a-vale-i1,2021-22,Beverly-Beverly High,00300505, 90.9, 15.6, 50.4, 28.5, 11.4, 36.1 --0.9200000000000003,1,a-vale-i1,2021-22,Beverly-Beverly Middle School,00300305, 92.9, 12.5, 49.5, 22.3, 5.3, 36.9 -3.4,3.4,a-vale-i1,2021-22,Beverly-Ayers/Ryal Side School,00300055, 94.5, 9.6, 41.9, 11.5, 1.8, 7.0 1.0,1.0,a-vale-i1,2021-22,Billerica-Thomas Ditson,00310005, 93.6, 11.3, 53.4, 17.5, 1.7, 34.8 3.2399999999999998,3.24,a-vale-i1,2021-22,Billerica-Frederick J Dutile,00310007, 94.5, 9.6, 41.1, 11.9, 3.0, 20.0 2.3600000000000003,2.36,a-vale-i1,2021-22,Billerica-John F Kennedy,00310012, 93.6, 11.4, 58.1, 14.1, 1.3, 34.4 @@ -158,272 +158,272 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -0.15999999999999942,1,a-vale-i1,2021-22,Billerica-Parker,00310015, 93.6, 11.0, 48.8, 20.4, 1.4, 6.3 3.12,3.12,a-vale-i1,2021-22,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 94.5, 10.3, 43.7, 12.2, 2.3, 9.1 -7.919999999999999,1,a-vale-i1,2021-22,Blackstone-Millville-Millville Elementary,06220010, 90.6, 14.4, 64.7, 39.8, 7.4, 35.3 -1.1599999999999995,1.16,a-vale-i1,2021-22,Blackstone-Millville-John F Kennedy Elementary,06220008, 92.2, 13.6, 61.0, 17.1, 1.9, 19.0 1.3599999999999994,1.36,a-vale-i1,2021-22,Blackstone-Millville-A F Maloney,06220015, 93.5, 11.5, 54.6, 16.6, 1.4, 22.0 --2.3200000000000003,1,a-vale-i1,2021-22,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 91.8, 14.6, 59.0, 25.8, 6.6, 25.6 -3.12,1,a-vale-i1,2021-22,Blackstone-Millville-Blackstone Millville RHS,06220505, 91.3, 15.0, 55.3, 27.8, 9.2, 22.5 +1.1599999999999995,1.16,a-vale-i1,2021-22,Blackstone-Millville-John F Kennedy Elementary,06220008, 92.2, 13.6, 61.0, 17.1, 1.9, 19.0 +-2.3200000000000003,1,a-vale-i1,2021-22,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 91.8, 14.6, 59.0, 25.8, 6.6, 25.6 1.3599999999999994,1.36,a-vale-i1,2021-22,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 93.1, 12.3, 57.5, 16.6, 2.8, 47.4 --14.2,1,a-vale-i1,2021-22,Boston-Clap Elementary School,00350298, 88.3, 19.0, 74.2, 55.5, 15.6, 46.1 +-11.76,1,a-vale-i1,2021-22,Boston-Boston Arts Academy,00350546, 85.5, 25.2, 72.8, 49.4, 23.4, 56.6 +-24.28,1,a-vale-i1,2021-22,Boston-Boston Adult Tech Academy,00350548, 64.1, 46.4, 82.4, 80.7, 61.9, 81.3 +-15.680000000000001,1,a-vale-i1,2021-22,Boston-King K-8 School,00350376, 84.8, 26.0, 80.0, 59.2, 28.2, 73.2 +-12.52,1,a-vale-i1,2021-22,Boston-Higginson-Lewis K-8 School,00350377, 86.9, 22.2, 79.0, 51.3, 22.6, 65.6 +-2.3200000000000003,1,a-vale-i1,2021-22,Boston-Mildred Avenue K-8 School,00350378, 92.5, 12.6, 44.1, 25.8, 7.9, 40.8 +-18.560000000000002,1,a-vale-i1,2021-22,Boston-Young Achievers K-8 School,00350380, 83.9, 27.0, 86.0, 66.4, 30.0, 77.2 +-7.519999999999999,1,a-vale-i1,2021-22,Boston-Mission Hill K-8 School,00350382, 90.4, 16.8, 64.5, 38.8, 13.1, 43.5 -8.040000000000001,1,a-vale-i1,2021-22,Boston-Frederick Pilot Middle School,00350383, 89.0, 17.9, 60.9, 40.1, 14.1, 50.1 -15.4,1,a-vale-i1,2021-22,Boston-Blackstone Elementary School,00350390, 86.0, 23.2, 79.6, 58.5, 21.8, 61.9 --8.8,1,a-vale-i1,2021-22,Boston-Adams Elementary School,00350302, 89.8, 17.0, 72.3, 42.0, 10.2, 40.2 --5.3199999999999985,1,a-vale-i1,2021-22,Boston-Mason Elementary School,00350304, 91.8, 14.3, 60.1, 33.3, 3.5, 11.1 +-15.4,1,a-vale-i1,2021-22,Boston-West Zone Early Learning Center,00350006, 86.5, 22.7, 81.9, 58.5, 18.1, 68.1 +-7.56,1,a-vale-i1,2021-22,Boston-Ellison-Parks Early Education School,00350008, 90.9, 15.5, 61.1, 38.9, 5.4, 53.5 +-6.959999999999999,1,a-vale-i1,2021-22,Boston-East Boston Early Education Center,00350009, 89.9, 17.4, 74.7, 37.4, 8.9, 32.6 +-9.8,1,a-vale-i1,2021-22,Boston-Haynes Early Education Center,00350010, 88.5, 19.2, 73.5, 44.5, 14.5, 47.0 +-1.0,1,a-vale-i1,2021-22,Boston-Boston Teachers Union K-8 Pilot,00350012, 92.2, 13.6, 53.7, 22.5, 5.4, 28.9 +-8.36,1,a-vale-i1,2021-22,Boston-Jackson-Mann K-8 School,00350013, 89.1, 18.9, 67.4, 40.9, 11.4, 42.6 +-14.12,1,a-vale-i1,2021-22,Boston-Shaw Elementary School,00350014, 87.3, 21.2, 77.6, 55.3, 18.6, 64.6 +-13.280000000000001,1,a-vale-i1,2021-22,Boston-Higginson Inclusion K0-2 School,00350015, 87.2, 21.9, 75.4, 53.2, 18.3, 69.8 +-10.959999999999999,1,a-vale-i1,2021-22,Boston-Mattahunt Elementary School,00350016, 87.8, 20.6, 71.3, 47.4, 18.7, 60.4 -8.16,1,a-vale-i1,2021-22,Boston-Curley K-8 School,00350020, 89.2, 19.1, 75.1, 40.4, 11.7, 49.7 +-7.280000000000001,1,a-vale-i1,2021-22,Boston-Beethoven Elementary School,00350021, 90.0, 16.7, 68.2, 38.2, 12.1, 40.0 +-19.52,1,a-vale-i1,2021-22,Boston-Carter School,00350036, 72.2, 48.1, 81.3, 68.8, 50.0, 0.0 +-6.159999999999999,1,a-vale-i1,2021-22,Boston-Sumner Elementary School,00350052, 90.4, 16.5, 66.0, 35.4, 9.3, 52.7 +-3.88,1,a-vale-i1,2021-22,Boston-Taylor Elementary School,00350054, 92.1, 12.9, 49.0, 29.7, 10.1, 38.9 +-2.0,1,a-vale-i1,2021-22,Boston-Guild Elementary School,00350062, 93.1, 11.6, 44.8, 25.0, 6.3, 32.8 +-4.32,1,a-vale-i1,2021-22,Boston-Alighieri Dante Montessori School,00350066, 92.2, 14.0, 66.3, 30.8, 1.0, 21.2 +-13.52,1,a-vale-i1,2021-22,Boston-Ellis Elementary School,00350072, 87.7, 20.5, 78.4, 53.8, 17.3, 60.2 +-11.4,1,a-vale-i1,2021-22,Boston-Dearborn 6-12 STEM Academy,00350074, 86.1, 24.0, 71.6, 48.5, 21.9, 60.9 +-3.6,1,a-vale-i1,2021-22,Boston-Haley Pilot School,00350077, 92.0, 13.7, 53.6, 29.0, 8.5, 45.6 +-4.44,1,a-vale-i1,2021-22,Boston-McKay K-8 School,00350080, 91.7, 14.2, 60.6, 31.1, 6.0, 33.9 -12.559999999999999,1,a-vale-i1,2021-22,Boston-Henderson K-12 Inclusion School Upper,00350426, 87.1, 21.2, 72.2, 51.4, 18.6, 50.2 -13.52,1,a-vale-i1,2021-22,Boston-Irving Middle School,00350445, 87.0, 22.2, 73.8, 53.8, 22.3, 62.3 -16.64,1,a-vale-i1,2021-22,Boston-Timilty Middle School,00350485, 85.6, 24.5, 86.3, 61.6, 23.2, 70.5 -19.639999999999997,1,a-vale-i1,2021-22,Boston-Brighton High School,00350505, 77.9, 33.9, 77.1, 69.1, 40.3, 74.3 +-11.040000000000001,1,a-vale-i1,2021-22,Boston-Boston International High School & Newcomers Academy,00350507, 86.1, 20.8, 58.9, 47.6, 25.0, 51.3 +-20.360000000000003,1,a-vale-i1,2021-22,Boston-Charlestown High School,00350515, 76.3, 39.2, 82.9, 70.9, 48.7, 78.4 +-28.439999999999998,1,a-vale-i1,2021-22,Boston-Community Academy,00350518, 55.6, 69.5, 93.3, 91.1, 77.8, 91.1 +-21.24,1,a-vale-i1,2021-22,Boston-Excel High School,00350522, 73.9, 42.6, 83.0, 73.1, 53.4, 76.2 +-9.64,1,a-vale-i1,2021-22,Boston-Burke High School,00350525, 87.0, 20.9, 64.9, 44.1, 21.3, 61.5 +-7.080000000000001,1,a-vale-i1,2021-22,Boston-East Boston High School,00350530, 89.7, 17.1, 56.6, 37.7, 14.1, 47.3 +-19.0,1,a-vale-i1,2021-22,Boston-English High School,00350535, 78.5, 34.2, 82.2, 67.5, 40.4, 75.3 +-17.36,1,a-vale-i1,2021-22,Boston-Madison Park Technical Vocational High School,00350537, 79.9, 34.6, 80.2, 63.4, 38.4, 75.4 +-11.8,1,a-vale-i1,2021-22,Boston-Fenway High School,00350540, 86.3, 23.7, 74.3, 49.5, 22.3, 63.9 +-20.360000000000003,1,a-vale-i1,2021-22,Boston-Another Course To College,00350541, 74.6, 40.8, 83.9, 70.9, 51.2, 76.4 +-10.8,1,a-vale-i1,2021-22,Boston-New Mission High School,00350542, 88.1, 20.3, 73.9, 47.0, 16.3, 61.5 +-31.6,1,a-vale-i1,2021-22,Boston-Greater Egleston High School,00350543, 44.1, 82.3, 100.0, 99.0, 93.8, 97.9 +-4.359999999999999,1,a-vale-i1,2021-22,Boston-Boston Latin Academy,00350545, 91.2, 15.5, 58.9, 30.9, 8.6, 33.2 +-6.519999999999999,1,a-vale-i1,2021-22,Boston-Hale Elementary School,00350243, 89.2, 18.5, 69.2, 36.3, 16.5, 60.4 +-7.919999999999999,1,a-vale-i1,2021-22,Boston-Perry K-8 School,00350255, 90.8, 15.8, 61.8, 39.8, 9.1, 54.8 +-7.159999999999999,1,a-vale-i1,2021-22,Boston-Orchard Gardens K-8 School,00350257, 90.3, 16.6, 63.6, 37.9, 9.3, 51.2 +-7.159999999999999,1,a-vale-i1,2021-22,Boston-Ohrenberger School,00350258, 90.1, 16.9, 61.7, 37.9, 10.7, 44.7 +2.0799999999999996,2.08,a-vale-i1,2021-22,Boston-Lyndon K-8 School,00350262, 94.1, 10.4, 41.2, 14.8, 3.2, 21.4 +-3.4,1,a-vale-i1,2021-22,Boston-Kennedy Patrick J Elementary School,00350264, 92.3, 13.0, 63.0, 28.5, 4.9, 42.6 +-12.080000000000002,1,a-vale-i1,2021-22,Boston-Henderson K-12 Inclusion School Lower,00350266, 88.2, 20.1, 78.6, 50.2, 16.3, 22.3 +-10.680000000000001,1,a-vale-i1,2021-22,Boston-Dever Elementary School,00350268, 88.4, 19.8, 73.1, 46.7, 17.2, 58.2 +-9.0,1,a-vale-i1,2021-22,Boston-Bates Elementary School,00350278, 90.1, 16.9, 68.9, 42.5, 9.2, 32.9 +3.6,3.6,a-vale-i1,2021-22,Boston-Quincy Elementary School,00350286, 95.4, 8.1, 28.7, 11.0, 3.0, 7.4 +-14.2,1,a-vale-i1,2021-22,Boston-Clap Elementary School,00350298, 88.3, 19.0, 74.2, 55.5, 15.6, 46.1 +-7.24,1,a-vale-i1,2021-22,Boston-Lee Academy,00350001, 90.9, 15.6, 61.3, 38.1, 9.4, 48.1 +-7.4,1,a-vale-i1,2021-22,Boston-Baldwin Early Learning Pilot Academy,00350003, 89.5, 17.6, 69.2, 38.5, 15.4, 26.9 +-4.5200000000000005,1,a-vale-i1,2021-22,Boston-Lyon K-8 School,00350004, 89.8, 17.3, 68.7, 31.3, 14.9, 33.6 +-8.8,1,a-vale-i1,2021-22,Boston-Adams Elementary School,00350302, 89.8, 17.0, 72.3, 42.0, 10.2, 40.2 +-5.3199999999999985,1,a-vale-i1,2021-22,Boston-Mason Elementary School,00350304, 91.8, 14.3, 60.1, 33.3, 3.5, 11.1 -9.2,1,a-vale-i1,2021-22,Boston-Greenwood Sarah K-8 School,00350308, 89.2, 18.3, 68.8, 43.0, 13.4, 60.5 -3.4799999999999995,1,a-vale-i1,2021-22,Boston-Gardner Pilot Academy,00350326, 92.1, 13.8, 57.4, 28.7, 6.5, 21.9 -4.0,1,a-vale-i1,2021-22,Boston-Kenny Elementary School,00350328, 91.7, 14.1, 57.1, 30.0, 10.4, 45.0 1.7600000000000002,1.76,a-vale-i1,2021-22,Boston-Warren-Prescott K-8 School,00350346, 94.4, 9.9, 38.1, 15.6, 3.2, 25.0 -13.64,1,a-vale-i1,2021-22,Boston-Channing Elementary School,00350360, 86.7, 22.2, 79.7, 54.1, 17.9, 76.8 -22.8,1,a-vale-i1,2021-22,Boston-McKinley Schools,00350363, 68.0, 53.0, 87.3, 77.0, 54.4, 70.6 --13.52,1,a-vale-i1,2021-22,Boston-Ellis Elementary School,00350072, 87.7, 20.5, 78.4, 53.8, 17.3, 60.2 --11.4,1,a-vale-i1,2021-22,Boston-Dearborn 6-12 STEM Academy,00350074, 86.1, 24.0, 71.6, 48.5, 21.9, 60.9 --3.6,1,a-vale-i1,2021-22,Boston-Haley Pilot School,00350077, 92.0, 13.7, 53.6, 29.0, 8.5, 45.6 --4.44,1,a-vale-i1,2021-22,Boston-McKay K-8 School,00350080, 91.7, 14.2, 60.6, 31.1, 6.0, 33.9 --3.6799999999999997,1,a-vale-i1,2021-22,Boston-Manning Elementary School,00350184, 92.8, 12.8, 60.9, 29.2, 1.9, 14.3 --2.4400000000000004,1,a-vale-i1,2021-22,Boston-Kilmer K-8 School,00350190, 92.3, 13.1, 50.8, 26.1, 7.6, 32.1 --3.4799999999999995,1,a-vale-i1,2021-22,Boston-Harvard-Kent Elementary School,00350200, 92.0, 14.0, 57.2, 28.7, 4.5, 29.3 --1.7200000000000002,1,a-vale-i1,2021-22,Boston-Everett Elementary School,00350088, 93.1, 11.2, 49.8, 24.3, 5.3, 26.6 -3.84,3.84,a-vale-i1,2021-22,Boston-Eliot K-8 Innovation School,00350096, 95.1, 8.7, 34.0, 10.4, 1.6, 26.8 --17.36,1,a-vale-i1,2021-22,Boston-Madison Park Technical Vocational High School,00350537, 79.9, 34.6, 80.2, 63.4, 38.4, 75.4 --11.8,1,a-vale-i1,2021-22,Boston-Fenway High School,00350540, 86.3, 23.7, 74.3, 49.5, 22.3, 63.9 --20.360000000000003,1,a-vale-i1,2021-22,Boston-Another Course To College,00350541, 74.6, 40.8, 83.9, 70.9, 51.2, 76.4 --10.8,1,a-vale-i1,2021-22,Boston-New Mission High School,00350542, 88.1, 20.3, 73.9, 47.0, 16.3, 61.5 --5.6,1,a-vale-i1,2021-22,Boston-Bradley Elementary School,00350215, 91.7, 14.4, 65.0, 34.0, 4.7, 33.0 --7.6,1,a-vale-i1,2021-22,Boston-Mather Elementary School,00350227, 90.3, 17.0, 62.0, 39.0, 12.3, 51.3 --7.24,1,a-vale-i1,2021-22,Boston-Lee Academy,00350001, 90.9, 15.6, 61.3, 38.1, 9.4, 48.1 --7.4,1,a-vale-i1,2021-22,Boston-Baldwin Early Learning Pilot Academy,00350003, 89.5, 17.6, 69.2, 38.5, 15.4, 26.9 -10.719999999999999,1,a-vale-i1,2021-22,Boston-Russell Elementary School,00350366, 87.8, 20.8, 72.9, 46.8, 17.9, 60.4 -16.28,1,a-vale-i1,2021-22,Boston-Trotter K-8 School,00350370, 84.7, 26.2, 81.8, 60.7, 25.3, 78.6 -2.5599999999999996,1,a-vale-i1,2021-22,Boston-Winship Elementary School,00350374, 92.0, 13.7, 58.3, 26.4, 6.9, 34.4 -10.24,1,a-vale-i1,2021-22,Boston-Edison K-8 School,00350375, 89.4, 17.2, 63.7, 45.6, 13.9, 56.2 --15.680000000000001,1,a-vale-i1,2021-22,Boston-King K-8 School,00350376, 84.8, 26.0, 80.0, 59.2, 28.2, 73.2 --4.5200000000000005,1,a-vale-i1,2021-22,Boston-Lyon K-8 School,00350004, 89.8, 17.3, 68.7, 31.3, 14.9, 33.6 --15.4,1,a-vale-i1,2021-22,Boston-West Zone Early Learning Center,00350006, 86.5, 22.7, 81.9, 58.5, 18.1, 68.1 --7.56,1,a-vale-i1,2021-22,Boston-Ellison-Parks Early Education School,00350008, 90.9, 15.5, 61.1, 38.9, 5.4, 53.5 --6.959999999999999,1,a-vale-i1,2021-22,Boston-East Boston Early Education Center,00350009, 89.9, 17.4, 74.7, 37.4, 8.9, 32.6 --11.040000000000001,1,a-vale-i1,2021-22,Boston-Boston International High School & Newcomers Academy,00350507, 86.1, 20.8, 58.9, 47.6, 25.0, 51.3 --9.8,1,a-vale-i1,2021-22,Boston-Haynes Early Education Center,00350010, 88.5, 19.2, 73.5, 44.5, 14.5, 47.0 --1.0,1,a-vale-i1,2021-22,Boston-Boston Teachers Union K-8 Pilot,00350012, 92.2, 13.6, 53.7, 22.5, 5.4, 28.9 --12.52,1,a-vale-i1,2021-22,Boston-Higginson-Lewis K-8 School,00350377, 86.9, 22.2, 79.0, 51.3, 22.6, 65.6 --2.3200000000000003,1,a-vale-i1,2021-22,Boston-Mildred Avenue K-8 School,00350378, 92.5, 12.6, 44.1, 25.8, 7.9, 40.8 --18.560000000000002,1,a-vale-i1,2021-22,Boston-Young Achievers K-8 School,00350380, 83.9, 27.0, 86.0, 66.4, 30.0, 77.2 --7.519999999999999,1,a-vale-i1,2021-22,Boston-Mission Hill K-8 School,00350382, 90.4, 16.8, 64.5, 38.8, 13.1, 43.5 --8.36,1,a-vale-i1,2021-22,Boston-Jackson-Mann K-8 School,00350013, 89.1, 18.9, 67.4, 40.9, 11.4, 42.6 --14.12,1,a-vale-i1,2021-22,Boston-Shaw Elementary School,00350014, 87.3, 21.2, 77.6, 55.3, 18.6, 64.6 --13.280000000000001,1,a-vale-i1,2021-22,Boston-Higginson Inclusion K0-2 School,00350015, 87.2, 21.9, 75.4, 53.2, 18.3, 69.8 +-14.48,1,a-vale-i1,2021-22,Boston-Holmes Elementary School,00350138, 85.8, 24.3, 83.4, 56.2, 23.4, 68.7 +-12.8,1,a-vale-i1,2021-22,Boston-O'Donnell Elementary School,00350141, 88.5, 18.8, 75.8, 52.0, 14.2, 28.8 +-11.959999999999999,1,a-vale-i1,2021-22,Boston-Condon K-8 School,00350146, 86.8, 22.3, 74.1, 49.9, 18.1, 50.4 +-11.2,1,a-vale-i1,2021-22,Boston-Hennigan K-8 School,00350153, 88.4, 19.2, 68.6, 48.0, 16.1, 51.3 +-5.56,1,a-vale-i1,2021-22,Boston-Chittick Elementary School,00350154, 90.1, 16.8, 62.1, 33.9, 11.0, 37.9 +-0.8400000000000005,1,a-vale-i1,2021-22,Boston-Otis Elementary School,00350156, 92.8, 12.5, 52.8, 22.1, 5.4, 24.1 +-5.840000000000001,1,a-vale-i1,2021-22,Boston-Kennedy John F Elementary School,00350166, 91.4, 14.4, 59.9, 34.6, 6.9, 50.7 -11.88,1,a-vale-i1,2021-22,Boston-UP Academy Holland,00350167, 87.6, 21.2, 70.9, 49.7, 23.0, 65.7 -2.4,1,a-vale-i1,2021-22,Boston-Philbrick Elementary School,00350172, 92.5, 12.8, 52.9, 26.0, 7.7, 28.8 -11.440000000000001,1,a-vale-i1,2021-22,Boston-Winthrop Elementary School,00350180, 89.2, 18.8, 72.0, 48.6, 11.7, 64.5 -15.440000000000001,1,a-vale-i1,2021-22,Boston-Tynan Elementary School,00350181, 87.0, 21.9, 78.8, 58.6, 14.9, 60.8 --2.0,1,a-vale-i1,2021-22,Boston-Guild Elementary School,00350062, 93.1, 11.6, 44.8, 25.0, 6.3, 32.8 --4.32,1,a-vale-i1,2021-22,Boston-Alighieri Dante Montessori School,00350066, 92.2, 14.0, 66.3, 30.8, 1.0, 21.2 --20.360000000000003,1,a-vale-i1,2021-22,Boston-Charlestown High School,00350515, 76.3, 39.2, 82.9, 70.9, 48.7, 78.4 --28.439999999999998,1,a-vale-i1,2021-22,Boston-Community Academy,00350518, 55.6, 69.5, 93.3, 91.1, 77.8, 91.1 --21.24,1,a-vale-i1,2021-22,Boston-Excel High School,00350522, 73.9, 42.6, 83.0, 73.1, 53.4, 76.2 --9.64,1,a-vale-i1,2021-22,Boston-Burke High School,00350525, 87.0, 20.9, 64.9, 44.1, 21.3, 61.5 -10.4,1,a-vale-i1,2021-22,Boston-Hurley K-8 School,00350182, 88.4, 20.6, 77.7, 46.0, 14.7, 69.8 -12.84,1,a-vale-i1,2021-22,Boston-Lee K-8 School,00350183, 86.9, 22.5, 74.3, 52.1, 20.6, 62.2 --22.560000000000002,1,a-vale-i1,2021-22,Boston-Snowden International High School,00350690, 76.2, 41.5, 91.2, 76.4, 49.9, 78.7 --2.6400000000000006,1,a-vale-i1,2021-22,Boston-Hernandez K-8 School,00350691, 92.6, 13.1, 60.2, 26.6, 3.5, 37.9 --11.719999999999999,1,a-vale-i1,2021-22,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 87.3, 21.9, 75.4, 49.3, 15.9, 39.1 --7.080000000000001,1,a-vale-i1,2021-22,Boston-East Boston High School,00350530, 89.7, 17.1, 56.6, 37.7, 14.1, 47.3 --19.0,1,a-vale-i1,2021-22,Boston-English High School,00350535, 78.5, 34.2, 82.2, 67.5, 40.4, 75.3 --10.719999999999999,1,a-vale-i1,2021-22,Boston-Boston Collaborative High School,00350755, 82.5, 25.5, 50.8, 46.8, 33.3, 50.8 --7.280000000000001,1,a-vale-i1,2021-22,Boston-Beethoven Elementary School,00350021, 90.0, 16.7, 68.2, 38.2, 12.1, 40.0 --19.52,1,a-vale-i1,2021-22,Boston-Carter School,00350036, 72.2, 48.1, 81.3, 68.8, 50.0, 0.0 --6.159999999999999,1,a-vale-i1,2021-22,Boston-Sumner Elementary School,00350052, 90.4, 16.5, 66.0, 35.4, 9.3, 52.7 --3.88,1,a-vale-i1,2021-22,Boston-Taylor Elementary School,00350054, 92.1, 12.9, 49.0, 29.7, 10.1, 38.9 --31.6,1,a-vale-i1,2021-22,Boston-Greater Egleston High School,00350543, 44.1, 82.3, 100.0, 99.0, 93.8, 97.9 --4.359999999999999,1,a-vale-i1,2021-22,Boston-Boston Latin Academy,00350545, 91.2, 15.5, 58.9, 30.9, 8.6, 33.2 --4.44,1,a-vale-i1,2021-22,Boston-Mendell Elementary School,00350100, 91.3, 14.6, 65.4, 31.1, 9.2, 29.3 --2.5599999999999996,1,a-vale-i1,2021-22,Boston-Roosevelt K-8 School,00350116, 92.7, 12.8, 53.9, 26.4, 5.2, 31.0 --5.919999999999999,1,a-vale-i1,2021-22,Boston-Conley Elementary School,00350122, 89.8, 17.6, 61.5, 34.8, 9.1, 49.2 --7.519999999999999,1,a-vale-i1,2021-22,Boston-Grew Elementary School,00350135, 91.4, 14.6, 62.6, 38.8, 6.8, 36.9 --15.559999999999999,1,a-vale-i1,2021-22,Boston-Tobin K-8 School,00350229, 86.9, 22.1, 81.6, 58.9, 19.1, 64.3 --13.16,1,a-vale-i1,2021-22,Boston-Perkins Elementary School,00350231, 86.9, 21.8, 76.4, 52.9, 21.8, 58.6 --1.2,1,a-vale-i1,2021-22,Boston-Mozart Elementary School,00350237, 93.0, 12.1, 54.5, 23.0, 4.2, 34.5 --4.12,1,a-vale-i1,2021-22,Boston-Murphy K-8 School,00350240, 91.3, 15.3, 57.1, 30.3, 9.5, 35.7 --14.48,1,a-vale-i1,2021-22,Boston-Holmes Elementary School,00350138, 85.8, 24.3, 83.4, 56.2, 23.4, 68.7 --12.8,1,a-vale-i1,2021-22,Boston-O'Donnell Elementary School,00350141, 88.5, 18.8, 75.8, 52.0, 14.2, 28.8 --11.76,1,a-vale-i1,2021-22,Boston-Boston Arts Academy,00350546, 85.5, 25.2, 72.8, 49.4, 23.4, 56.6 --24.28,1,a-vale-i1,2021-22,Boston-Boston Adult Tech Academy,00350548, 64.1, 46.4, 82.4, 80.7, 61.9, 81.3 --11.319999999999999,1,a-vale-i1,2021-22,Boston-Margarita Muniz Academy,00350549, 86.4, 22.8, 70.5, 48.3, 21.8, 55.7 --6.519999999999999,1,a-vale-i1,2021-22,Boston-Hale Elementary School,00350243, 89.2, 18.5, 69.2, 36.3, 16.5, 60.4 --7.919999999999999,1,a-vale-i1,2021-22,Boston-Perry K-8 School,00350255, 90.8, 15.8, 61.8, 39.8, 9.1, 54.8 -19.080000000000002,1,a-vale-i1,2021-22,Boston-Boston Community Leadership Academy,00350558, 80.9, 31.6, 83.1, 67.7, 35.5, 74.3 1.2799999999999998,1.28,a-vale-i1,2021-22,Boston-Boston Latin School,00350560, 93.7, 11.1, 45.9, 16.8, 3.1, 5.8 --11.959999999999999,1,a-vale-i1,2021-22,Boston-Condon K-8 School,00350146, 86.8, 22.3, 74.1, 49.9, 18.1, 50.4 --11.2,1,a-vale-i1,2021-22,Boston-Hennigan K-8 School,00350153, 88.4, 19.2, 68.6, 48.0, 16.1, 51.3 --5.56,1,a-vale-i1,2021-22,Boston-Chittick Elementary School,00350154, 90.1, 16.8, 62.1, 33.9, 11.0, 37.9 --7.159999999999999,1,a-vale-i1,2021-22,Boston-Orchard Gardens K-8 School,00350257, 90.3, 16.6, 63.6, 37.9, 9.3, 51.2 --7.159999999999999,1,a-vale-i1,2021-22,Boston-Ohrenberger School,00350258, 90.1, 16.9, 61.7, 37.9, 10.7, 44.7 -2.0799999999999996,2.08,a-vale-i1,2021-22,Boston-Lyndon K-8 School,00350262, 94.1, 10.4, 41.2, 14.8, 3.2, 21.4 --0.8400000000000005,1,a-vale-i1,2021-22,Boston-Otis Elementary School,00350156, 92.8, 12.5, 52.8, 22.1, 5.4, 24.1 --5.840000000000001,1,a-vale-i1,2021-22,Boston-Kennedy John F Elementary School,00350166, 91.4, 14.4, 59.9, 34.6, 6.9, 50.7 -4.4,1,a-vale-i1,2021-22,Boston-Quincy Upper School,00350565, 90.4, 16.9, 49.4, 31.0, 11.8, 33.8 -1.5599999999999994,1,a-vale-i1,2021-22,Boston-O'Bryant School of Math & Science,00350575, 92.7, 12.8, 49.9, 23.9, 6.0, 38.3 -16.44,1,a-vale-i1,2021-22,Boston-Community Academy of Science and Health,00350581, 78.4, 35.2, 73.2, 61.1, 36.7, 65.1 -15.680000000000001,1,a-vale-i1,2021-22,Boston-Lyon High School,00350655, 84.3, 26.3, 73.1, 59.2, 30.0, 69.2 --3.4,1,a-vale-i1,2021-22,Boston-Kennedy Patrick J Elementary School,00350264, 92.3, 13.0, 63.0, 28.5, 4.9, 42.6 --12.080000000000002,1,a-vale-i1,2021-22,Boston-Henderson K-12 Inclusion School Lower,00350266, 88.2, 20.1, 78.6, 50.2, 16.3, 22.3 -4.4,1,a-vale-i1,2021-22,Boston-Mario Umana Academy,00350656, 91.7, 13.9, 59.4, 31.0, 6.0, 26.7 -17.0,1,a-vale-i1,2021-22,Boston-TechBoston Academy,00350657, 82.1, 30.3, 81.2, 62.5, 34.3, 72.7 --10.959999999999999,1,a-vale-i1,2021-22,Boston-Mattahunt Elementary School,00350016, 87.8, 20.6, 71.3, 47.4, 18.7, 60.4 --10.680000000000001,1,a-vale-i1,2021-22,Boston-Dever Elementary School,00350268, 88.4, 19.8, 73.1, 46.7, 17.2, 58.2 --9.0,1,a-vale-i1,2021-22,Boston-Bates Elementary School,00350278, 90.1, 16.9, 68.9, 42.5, 9.2, 32.9 -3.6,3.6,a-vale-i1,2021-22,Boston-Quincy Elementary School,00350286, 95.4, 8.1, 28.7, 11.0, 3.0, 7.4 +-22.560000000000002,1,a-vale-i1,2021-22,Boston-Snowden International High School,00350690, 76.2, 41.5, 91.2, 76.4, 49.9, 78.7 +-2.6400000000000006,1,a-vale-i1,2021-22,Boston-Hernandez K-8 School,00350691, 92.6, 13.1, 60.2, 26.6, 3.5, 37.9 +-11.719999999999999,1,a-vale-i1,2021-22,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 87.3, 21.9, 75.4, 49.3, 15.9, 39.1 +-10.719999999999999,1,a-vale-i1,2021-22,Boston-Boston Collaborative High School,00350755, 82.5, 25.5, 50.8, 46.8, 33.3, 50.8 +-3.6799999999999997,1,a-vale-i1,2021-22,Boston-Manning Elementary School,00350184, 92.8, 12.8, 60.9, 29.2, 1.9, 14.3 +-2.4400000000000004,1,a-vale-i1,2021-22,Boston-Kilmer K-8 School,00350190, 92.3, 13.1, 50.8, 26.1, 7.6, 32.1 +-3.4799999999999995,1,a-vale-i1,2021-22,Boston-Harvard-Kent Elementary School,00350200, 92.0, 14.0, 57.2, 28.7, 4.5, 29.3 +-5.6,1,a-vale-i1,2021-22,Boston-Bradley Elementary School,00350215, 91.7, 14.4, 65.0, 34.0, 4.7, 33.0 +-7.6,1,a-vale-i1,2021-22,Boston-Mather Elementary School,00350227, 90.3, 17.0, 62.0, 39.0, 12.3, 51.3 +-15.559999999999999,1,a-vale-i1,2021-22,Boston-Tobin K-8 School,00350229, 86.9, 22.1, 81.6, 58.9, 19.1, 64.3 +-13.16,1,a-vale-i1,2021-22,Boston-Perkins Elementary School,00350231, 86.9, 21.8, 76.4, 52.9, 21.8, 58.6 +-1.2,1,a-vale-i1,2021-22,Boston-Mozart Elementary School,00350237, 93.0, 12.1, 54.5, 23.0, 4.2, 34.5 +-4.12,1,a-vale-i1,2021-22,Boston-Murphy K-8 School,00350240, 91.3, 15.3, 57.1, 30.3, 9.5, 35.7 +-11.319999999999999,1,a-vale-i1,2021-22,Boston-Margarita Muniz Academy,00350549, 86.4, 22.8, 70.5, 48.3, 21.8, 55.7 +-1.7200000000000002,1,a-vale-i1,2021-22,Boston-Everett Elementary School,00350088, 93.1, 11.2, 49.8, 24.3, 5.3, 26.6 +3.84,3.84,a-vale-i1,2021-22,Boston-Eliot K-8 Innovation School,00350096, 95.1, 8.7, 34.0, 10.4, 1.6, 26.8 +-4.44,1,a-vale-i1,2021-22,Boston-Mendell Elementary School,00350100, 91.3, 14.6, 65.4, 31.1, 9.2, 29.3 +-2.5599999999999996,1,a-vale-i1,2021-22,Boston-Roosevelt K-8 School,00350116, 92.7, 12.8, 53.9, 26.4, 5.2, 31.0 +-5.919999999999999,1,a-vale-i1,2021-22,Boston-Conley Elementary School,00350122, 89.8, 17.6, 61.5, 34.8, 9.1, 49.2 +-7.519999999999999,1,a-vale-i1,2021-22,Boston-Grew Elementary School,00350135, 91.4, 14.6, 62.6, 38.8, 6.8, 36.9 -2.88,1,a-vale-i1,2021-22,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 91.4, 15.3, 57.9, 27.2, 7.8, 27.9 -31.160000000000004,1,a-vale-i1,2021-22,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 42.1, 81.7, 97.4, 97.9, 93.1, 0.0 -16.4,1,a-vale-i1,2021-22,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 83.0, 28.9, 80.6, 61.0, 34.9, 73.3 -6.880000000000001,1,a-vale-i1,2021-22,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 89.3, 19.1, 65.4, 37.2, 12.7, 42.0 -9.12,1,a-vale-i1,2021-22,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 89.8, 17.6, 65.4, 42.8, 12.2, 61.3 -0.4,1,a-vale-i1,2021-22,Bourne-Bourne Middle School,00360325, 93.9, 10.7, 42.3, 19.0, 2.2, 0.2 --4.5200000000000005,1,a-vale-i1,2021-22,Bourne-Bournedale Elementary School,00360005, 92.2, 13.1, 55.5, 31.3, 4.2, 46.7 --2.28,1,a-vale-i1,2021-22,Bourne-Bourne Intermediate School,00360030, 92.7, 12.8, 62.4, 25.7, 0.5, 6.6 -6.919999999999999,1,a-vale-i1,2021-22,Bourne-Bourne High School,00360505, 88.1, 20.3, 63.5, 37.3, 14.2, 45.9 -3.04,3.04,a-vale-i1,2021-22,Boxford-Spofford Pond,00380013, 94.1, 10.0, 44.1, 12.4, 0.5, 9.4 +0.4,1,a-vale-i1,2021-22,Bourne-Bourne Middle School,00360325, 93.9, 10.7, 42.3, 19.0, 2.2, 0.2 +-2.28,1,a-vale-i1,2021-22,Bourne-Bourne Intermediate School,00360030, 92.7, 12.8, 62.4, 25.7, 0.5, 6.6 +-4.5200000000000005,1,a-vale-i1,2021-22,Bourne-Bournedale Elementary School,00360005, 92.2, 13.1, 55.5, 31.3, 4.2, 46.7 3.2399999999999998,3.24,a-vale-i1,2021-22,Boxford-Harry Lee Cole,00380005, 94.3, 9.6, 42.1, 11.9, 0.3, 42.1 -3.4799999999999995,3.48,a-vale-i1,2021-22,Braintree-South Middle School,00400310, 94.7, 9.4, 35.1, 11.3, 2.7, 0.0 -1.6799999999999997,1.68,a-vale-i1,2021-22,Braintree-Archie T Morrison,00400033, 94.4, 9.9, 40.2, 15.8, 2.3, 0.0 -2.96,2.96,a-vale-i1,2021-22,Braintree-Liberty,00400025, 94.5, 9.6, 47.3, 12.6, 0.5, 0.0 -2.84,2.84,a-vale-i1,2021-22,Braintree-Mary E Flaherty School,00400020, 94.7, 9.2, 35.1, 12.9, 3.6, 0.0 -4.64,4.64,a-vale-i1,2021-22,Braintree-Highlands,00400015, 94.9, 9.1, 39.7, 8.4, 0.7, 0.0 --4.4799999999999995,1,a-vale-i1,2021-22,Braintree-Monatiquot Kindergarten Center,00400009, 92.0, 13.9, 61.6, 31.2, 6.1, 0.0 +3.04,3.04,a-vale-i1,2021-22,Boxford-Spofford Pond,00380013, 94.1, 10.0, 44.1, 12.4, 0.5, 9.4 2.7600000000000002,2.76,a-vale-i1,2021-22,Braintree-Hollis,00400005, 94.7, 9.3, 42.2, 13.1, 1.0, 0.0 -1.4400000000000006,1.44,a-vale-i1,2021-22,Braintree-East Middle School,00400305, 94.3, 10.1, 41.9, 16.4, 3.2, 0.0 --0.6799999999999997,1,a-vale-i1,2021-22,Braintree-Braintree High,00400505, 93.0, 12.3, 47.3, 21.7, 6.3, 0.0 +4.64,4.64,a-vale-i1,2021-22,Braintree-Highlands,00400015, 94.9, 9.1, 39.7, 8.4, 0.7, 0.0 +2.96,2.96,a-vale-i1,2021-22,Braintree-Liberty,00400025, 94.5, 9.6, 47.3, 12.6, 0.5, 0.0 +1.6799999999999997,1.68,a-vale-i1,2021-22,Braintree-Archie T Morrison,00400033, 94.4, 9.9, 40.2, 15.8, 2.3, 0.0 2.12,2.12,a-vale-i1,2021-22,Braintree-Donald Ross,00400050, 93.8, 10.7, 46.6, 14.7, 3.9, 0.0 --0.7200000000000003,1,a-vale-i1,2021-22,Brewster-Eddy Elementary,00410010, 92.7, 13.2, 61.6, 21.8, 1.9, 14.4 +1.4400000000000006,1.44,a-vale-i1,2021-22,Braintree-East Middle School,00400305, 94.3, 10.1, 41.9, 16.4, 3.2, 0.0 +3.4799999999999995,3.48,a-vale-i1,2021-22,Braintree-South Middle School,00400310, 94.7, 9.4, 35.1, 11.3, 2.7, 0.0 +-0.6799999999999997,1,a-vale-i1,2021-22,Braintree-Braintree High,00400505, 93.0, 12.3, 47.3, 21.7, 6.3, 0.0 +2.84,2.84,a-vale-i1,2021-22,Braintree-Mary E Flaherty School,00400020, 94.7, 9.2, 35.1, 12.9, 3.6, 0.0 +-4.4799999999999995,1,a-vale-i1,2021-22,Braintree-Monatiquot Kindergarten Center,00400009, 92.0, 13.9, 61.6, 31.2, 6.1, 0.0 -3.6400000000000006,1,a-vale-i1,2021-22,Brewster-Stony Brook Elementary,00410005, 92.1, 13.5, 60.7, 29.1, 3.4, 14.5 +-0.7200000000000003,1,a-vale-i1,2021-22,Brewster-Eddy Elementary,00410010, 92.7, 13.2, 61.6, 21.8, 1.9, 14.4 -5.719999999999999,1,a-vale-i1,2021-22,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 91.4, 15.2, 65.7, 34.3, 5.6, 45.7 --1.8400000000000005,1,a-vale-i1,2021-22,Bridgewater-Raynham-Merrill Elementary School,06250020, 92.4, 13.4, 67.0, 24.6, 3.3, 0.0 --0.12000000000000029,1,a-vale-i1,2021-22,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.0, 12.4, 57.1, 20.3, 1.9, 0.0 -1.0799999999999996,1,a-vale-i1,2021-22,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 92.0, 14.1, 54.1, 22.7, 6.3, 0.6 -1.3200000000000003,1.32,a-vale-i1,2021-22,Bridgewater-Raynham-Laliberte Elementary School,06250050, 93.8, 10.9, 52.2, 16.7, 0.9, 0.0 --2.4799999999999995,1,a-vale-i1,2021-22,Bridgewater-Raynham-Williams Intermediate School,06250300, 92.5, 13.1, 63.3, 26.2, 2.4, 0.0 -1.2,1.2,a-vale-i1,2021-22,Bridgewater-Raynham-Raynham Middle School,06250315, 93.6, 11.6, 53.4, 17.0, 1.5, 0.0 -4.32,1,a-vale-i1,2021-22,Bridgewater-Raynham-Therapeutic Day School,06250415, 82.6, 30.5, 46.2, 30.8, 23.1, 0.0 +-2.4799999999999995,1,a-vale-i1,2021-22,Bridgewater-Raynham-Williams Intermediate School,06250300, 92.5, 13.1, 63.3, 26.2, 2.4, 0.0 +-0.12000000000000029,1,a-vale-i1,2021-22,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.0, 12.4, 57.1, 20.3, 1.9, 0.0 -2.3200000000000003,1,a-vale-i1,2021-22,Bridgewater-Raynham-Mitchell Elementary School,06250002, 92.7, 12.7, 58.7, 25.8, 2.9, 0.0 +-1.8400000000000005,1,a-vale-i1,2021-22,Bridgewater-Raynham-Merrill Elementary School,06250020, 92.4, 13.4, 67.0, 24.6, 3.3, 0.0 +1.2,1.2,a-vale-i1,2021-22,Bridgewater-Raynham-Raynham Middle School,06250315, 93.6, 11.6, 53.4, 17.0, 1.5, 0.0 +1.3200000000000003,1.32,a-vale-i1,2021-22,Bridgewater-Raynham-Laliberte Elementary School,06250050, 93.8, 10.9, 52.2, 16.7, 0.9, 0.0 0.4799999999999997,1,a-vale-i1,2021-22,Brimfield-Brimfield Elementary,00430005, 94.0, 10.3, 46.0, 18.8, 1.7, 4.9 -0.4799999999999997,1,a-vale-i1,2021-22,Bristol County Agricultural-Bristol County Agricultural High,09100705, 92.8, 12.8, 51.7, 21.2, 5.2, 31.1 -2.3599999999999994,1,a-vale-i1,2021-22,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 92.2, 13.6, 61.0, 25.9, 4.6, 35.7 +-2.3200000000000003,1,a-vale-i1,2021-22,Brockton-Manthala George Jr. School,00440003, 92.8, 12.5, 56.2, 25.8, 2.3, 12.7 +-6.040000000000001,1,a-vale-i1,2021-22,Brockton-Mary E. Baker School,00440002, 90.9, 15.2, 61.4, 35.1, 9.3, 36.7 +-9.36,1,a-vale-i1,2021-22,Brockton-Dr W Arnone Community School,00440001, 89.4, 18.2, 68.6, 43.4, 13.0, 37.7 +-24.160000000000004,1,a-vale-i1,2021-22,Brockton-Edison Academy,00440520, 71.7, 23.5, 74.7, 80.4, 60.8, 3.0 +-27.72,1,a-vale-i1,2021-22,Brockton-Brockton Champion High School,00440515, 64.9, 49.4, 96.4, 89.3, 79.8, 56.0 +-13.84,1,a-vale-i1,2021-22,Brockton-Brockton High,00440505, 84.8, 25.2, 74.6, 54.6, 26.2, 64.8 +-4.44,1,a-vale-i1,2021-22,Brockton-Joseph F. Plouffe Academy,00440422, 91.3, 15.2, 58.0, 31.1, 8.7, 25.6 +-3.2400000000000007,1,a-vale-i1,2021-22,Brockton-Ashfield Middle School,00440421, 92.6, 12.7, 53.4, 28.1, 5.1, 18.3 -3.4799999999999995,1,a-vale-i1,2021-22,Brockton-West Middle School,00440420, 91.6, 14.6, 57.4, 28.7, 8.8, 27.2 +-4.5200000000000005,1,a-vale-i1,2021-22,Brockton-South Middle School,00440415, 91.4, 14.7, 60.9, 31.3, 9.8, 28.2 +-4.919999999999999,1,a-vale-i1,2021-22,Brockton-North Middle School,00440410, 91.1, 15.2, 61.3, 32.3, 8.7, 30.3 +-4.880000000000001,1,a-vale-i1,2021-22,Brockton-East Middle School,00440405, 91.5, 14.4, 54.9, 32.2, 8.3, 30.3 +-19.76,1,a-vale-i1,2021-22,Brockton-Huntington Therapeutic Day School,00440400, 79.6, 31.8, 85.5, 69.4, 45.2, 51.6 +-15.319999999999999,1,a-vale-i1,2021-22,Brockton-Downey,00440110, 86.7, 22.0, 79.8, 58.3, 19.5, 59.0 +-25.32,1,a-vale-i1,2021-22,Brockton-Frederick Douglass Academy,00440080, 73.8, 28.3, 83.3, 83.3, 66.7, 50.0 +-6.519999999999999,1,a-vale-i1,2021-22,Brockton-Oscar F Raymond,00440078, 90.8, 15.6, 61.1, 36.3, 9.5, 28.8 -7.3199999999999985,1,a-vale-i1,2021-22,Brockton-Louis F Angelo Elementary,00440065, 90.5, 15.9, 64.8, 38.3, 9.5, 35.5 -6.159999999999999,1,a-vale-i1,2021-22,Brockton-Gilmore Elementary School,00440055, 91.4, 14.6, 60.0, 35.4, 6.8, 43.2 -5.719999999999999,1,a-vale-i1,2021-22,Brockton-Hancock,00440045, 90.8, 15.7, 64.7, 34.3, 7.0, 31.7 -6.24,1,a-vale-i1,2021-22,Brockton-Edgar B Davis,00440023, 90.6, 16.2, 63.8, 35.6, 11.4, 35.0 -3.6400000000000006,1,a-vale-i1,2021-22,Brockton-John F Kennedy,00440017, 92.3, 13.0, 52.9, 29.1, 6.3, 17.6 --5.4,1,a-vale-i1,2021-22,Brockton-Brookfield,00440010, 91.2, 14.7, 60.1, 33.5, 7.0, 46.4 -19.8,1,a-vale-i1,2021-22,Brockton-Barrett Russell Early Childhood Center,00440008, 82.5, 25.9, 84.5, 69.5, 32.6, 84.5 --2.3200000000000003,1,a-vale-i1,2021-22,Brockton-Manthala George Jr. School,00440003, 92.8, 12.5, 56.2, 25.8, 2.3, 12.7 --6.040000000000001,1,a-vale-i1,2021-22,Brockton-Mary E. Baker School,00440002, 90.9, 15.2, 61.4, 35.1, 9.3, 36.7 --9.36,1,a-vale-i1,2021-22,Brockton-Dr W Arnone Community School,00440001, 89.4, 18.2, 68.6, 43.4, 13.0, 37.7 +-5.4,1,a-vale-i1,2021-22,Brockton-Brookfield,00440010, 91.2, 14.7, 60.1, 33.5, 7.0, 46.4 -10.52,1,a-vale-i1,2021-22,Brockton-Brockton Virtual Learning Academy,00440705, 86.4, 22.6, 59.9, 46.3, 24.7, 1.9 --24.160000000000004,1,a-vale-i1,2021-22,Brockton-Edison Academy,00440520, 71.7, 23.5, 74.7, 80.4, 60.8, 3.0 --27.72,1,a-vale-i1,2021-22,Brockton-Brockton Champion High School,00440515, 64.9, 49.4, 96.4, 89.3, 79.8, 56.0 --13.84,1,a-vale-i1,2021-22,Brockton-Brockton High,00440505, 84.8, 25.2, 74.6, 54.6, 26.2, 64.8 --25.32,1,a-vale-i1,2021-22,Brockton-Frederick Douglass Academy,00440080, 73.8, 28.3, 83.3, 83.3, 66.7, 50.0 --15.319999999999999,1,a-vale-i1,2021-22,Brockton-Downey,00440110, 86.7, 22.0, 79.8, 58.3, 19.5, 59.0 --19.76,1,a-vale-i1,2021-22,Brockton-Huntington Therapeutic Day School,00440400, 79.6, 31.8, 85.5, 69.4, 45.2, 51.6 --4.880000000000001,1,a-vale-i1,2021-22,Brockton-East Middle School,00440405, 91.5, 14.4, 54.9, 32.2, 8.3, 30.3 --4.919999999999999,1,a-vale-i1,2021-22,Brockton-North Middle School,00440410, 91.1, 15.2, 61.3, 32.3, 8.7, 30.3 --4.5200000000000005,1,a-vale-i1,2021-22,Brockton-South Middle School,00440415, 91.4, 14.7, 60.9, 31.3, 9.8, 28.2 --6.519999999999999,1,a-vale-i1,2021-22,Brockton-Oscar F Raymond,00440078, 90.8, 15.6, 61.1, 36.3, 9.5, 28.8 --3.2400000000000007,1,a-vale-i1,2021-22,Brockton-Ashfield Middle School,00440421, 92.6, 12.7, 53.4, 28.1, 5.1, 18.3 --4.44,1,a-vale-i1,2021-22,Brockton-Joseph F. Plouffe Academy,00440422, 91.3, 15.2, 58.0, 31.1, 8.7, 25.6 -2.9599999999999995,1,a-vale-i1,2021-22,Brooke Charter School (District)-Brooke Charter School,04280305, 92.1, 14.3, 58.2, 27.4, 5.4, 35.6 -3.28,1,a-vale-i1,2021-22,Brookfield-Brookfield Elementary,00450005, 92.4, 12.9, 58.2, 28.2, 4.1, 20.4 -2.4799999999999995,2.48,a-vale-i1,2021-22,Brookline-Michael Driscoll,00460020, 94.2, 9.9, 43.3, 13.8, 1.6, 29.5 --1.1200000000000003,1,a-vale-i1,2021-22,Brookline-Brookline Early Education Program at Beacon,00460001, 93.6, 10.8, 45.6, 22.8, 7.0, 38.6 -3.3200000000000003,3.32,a-vale-i1,2021-22,Brookline-Lawrence,00460030, 94.7, 9.0, 36.7, 11.7, 1.3, 9.4 -1.8799999999999997,1.88,a-vale-i1,2021-22,Brookline-William H Lincoln,00460035, 94.2, 10.0, 38.9, 15.3, 2.7, 13.7 -3.2399999999999998,3.24,a-vale-i1,2021-22,Brookline-Pierce,00460040, 94.7, 9.3, 36.5, 11.9, 1.9, 9.6 -0.8799999999999997,1,a-vale-i1,2021-22,Brookline-John D Runkle,00460045, 93.5, 11.4, 44.4, 17.8, 4.2, 14.1 -1.2,1,a-vale-i1,2021-22,Brookline-Brookline Early Education Program at Putterham,00460002, 93.4, 10.7, 54.1, 23.0, 0.0, 54.1 -7.3199999999999985,1,a-vale-i1,2021-22,Brookline-Brookline Early Education Program at Clark Road,00460003, 90.4, 15.9, 65.4, 38.3, 9.9, 65.4 1.9200000000000004,1.92,a-vale-i1,2021-22,Brookline-Edith C Baker,00460005, 94.2, 9.9, 39.1, 15.2, 3.6, 21.0 -0.04000000000000057,1,a-vale-i1,2021-22,Brookline-Florida Ruffin Ridley School,00460015, 93.2, 11.8, 50.1, 20.1, 3.2, 32.0 1.8399999999999999,1.84,a-vale-i1,2021-22,Brookline-Heath,00460025, 93.9, 10.8, 42.3, 15.4, 1.5, 21.2 --8.52,1,a-vale-i1,2021-22,Brookline-The Lynch Center,00460060, 86.4, 24.3, 61.9, 41.3, 19.0, 61.9 +3.3200000000000003,3.32,a-vale-i1,2021-22,Brookline-Lawrence,00460030, 94.7, 9.0, 36.7, 11.7, 1.3, 9.4 +1.8799999999999997,1.88,a-vale-i1,2021-22,Brookline-William H Lincoln,00460035, 94.2, 10.0, 38.9, 15.3, 2.7, 13.7 +3.2399999999999998,3.24,a-vale-i1,2021-22,Brookline-Pierce,00460040, 94.7, 9.3, 36.5, 11.9, 1.9, 9.6 +0.8799999999999997,1,a-vale-i1,2021-22,Brookline-John D Runkle,00460045, 93.5, 11.4, 44.4, 17.8, 4.2, 14.1 3.28,3.28,a-vale-i1,2021-22,Brookline-Brookline High,00460505, 94.3, 9.8, 34.6, 11.8, 3.6, 3.2 +-1.1200000000000003,1,a-vale-i1,2021-22,Brookline-Brookline Early Education Program at Beacon,00460001, 93.6, 10.8, 45.6, 22.8, 7.0, 38.6 +-8.52,1,a-vale-i1,2021-22,Brookline-The Lynch Center,00460060, 86.4, 24.3, 61.9, 41.3, 19.0, 61.9 +2.4799999999999995,2.48,a-vale-i1,2021-22,Brookline-Michael Driscoll,00460020, 94.2, 9.9, 43.3, 13.8, 1.6, 29.5 1.4400000000000006,1.44,a-vale-i1,2021-22,Burlington-Fox Hill,00480007, 93.8, 10.7, 47.1, 16.4, 1.2, 7.1 0.4,1,a-vale-i1,2021-22,Burlington-Memorial,00480015, 93.3, 11.4, 49.8, 19.0, 2.8, 17.5 -0.2799999999999997,1,a-vale-i1,2021-22,Burlington-Burlington High,00480505, 93.3, 11.4, 44.5, 20.7, 5.7, 16.2 -1.9200000000000004,1,a-vale-i1,2021-22,Burlington-Francis Wyman Elementary,00480035, 92.6, 12.8, 55.3, 24.8, 3.8, 9.6 0.44000000000000056,1,a-vale-i1,2021-22,Burlington-Marshall Simonds Middle,00480303, 93.5, 11.5, 46.4, 18.9, 3.4, 9.2 1.0799999999999996,1.08,a-vale-i1,2021-22,Burlington-Pine Glen Elementary,00480020, 93.8, 10.7, 43.5, 17.3, 2.1, 7.8 --0.35999999999999943,1,a-vale-i1,2021-22,Cambridge-Maria L. Baldwin,00490005, 93.5, 11.3, 48.3, 20.9, 3.1, 2.8 +-1.9200000000000004,1,a-vale-i1,2021-22,Cambridge-Peabody,00490050, 92.7, 12.7, 52.6, 24.8, 5.5, 15.9 +-5.359999999999999,1,a-vale-i1,2021-22,Cambridge-John M Tobin,00490065, 90.5, 16.5, 65.3, 33.4, 8.2, 5.2 +2.0799999999999996,2.08,a-vale-i1,2021-22,Cambridge-Graham and Parks,00490080, 94.1, 9.8, 41.2, 14.8, 3.2, 6.3 +-3.12,1,a-vale-i1,2021-22,Cambridge-Fletcher/Maynard Academy,00490090, 92.0, 13.7, 60.6, 27.8, 6.6, 9.7 +-3.88,1,a-vale-i1,2021-22,Cambridge-Cambridge Street Upper School,00490305, 91.5, 15.2, 53.0, 29.7, 8.2, 17.6 +-2.88,1,a-vale-i1,2021-22,Cambridge-Putnam Avenue Upper School,00490310, 92.3, 13.6, 56.3, 27.2, 6.1, 14.6 -0.9200000000000003,1,a-vale-i1,2021-22,Cambridge-Rindge Avenue Upper School,00490315, 92.7, 12.5, 43.1, 22.3, 8.4, 12.0 +-2.0799999999999996,1,a-vale-i1,2021-22,Cambridge-Vassal Lane Upper School,00490320, 92.3, 13.5, 51.7, 25.2, 6.5, 21.8 +-5.840000000000001,1,a-vale-i1,2021-22,Cambridge-Cambridge Rindge and Latin,00490506, 89.8, 17.4, 59.3, 34.6, 12.9, 16.7 +-0.35999999999999943,1,a-vale-i1,2021-22,Cambridge-Maria L. Baldwin,00490005, 93.5, 11.3, 48.3, 20.9, 3.1, 2.8 +-1.8,1,a-vale-i1,2021-22,Cambridge-Amigos School,00490006, 93.1, 12.2, 50.7, 24.5, 2.2, 5.9 0.2799999999999997,1,a-vale-i1,2021-22,Cambridge-Cambridgeport,00490007, 93.7, 10.8, 45.0, 19.3, 3.7, 10.8 -0.4,1,a-vale-i1,2021-22,Cambridge-Haggerty,00490020, 93.6, 10.9, 42.8, 21.0, 4.1, 6.2 --1.8,1,a-vale-i1,2021-22,Cambridge-Amigos School,00490006, 93.1, 12.2, 50.7, 24.5, 2.2, 5.9 --2.88,1,a-vale-i1,2021-22,Cambridge-Putnam Avenue Upper School,00490310, 92.3, 13.6, 56.3, 27.2, 6.1, 14.6 --3.88,1,a-vale-i1,2021-22,Cambridge-Cambridge Street Upper School,00490305, 91.5, 15.2, 53.0, 29.7, 8.2, 17.6 --3.12,1,a-vale-i1,2021-22,Cambridge-Fletcher/Maynard Academy,00490090, 92.0, 13.7, 60.6, 27.8, 6.6, 9.7 -2.0799999999999996,2.08,a-vale-i1,2021-22,Cambridge-Graham and Parks,00490080, 94.1, 9.8, 41.2, 14.8, 3.2, 6.3 --5.359999999999999,1,a-vale-i1,2021-22,Cambridge-John M Tobin,00490065, 90.5, 16.5, 65.3, 33.4, 8.2, 5.2 --1.8,1,a-vale-i1,2021-22,Cambridge-Morse,00490045, 92.3, 13.0, 57.2, 24.5, 5.9, 7.2 --6.280000000000001,1,a-vale-i1,2021-22,Cambridge-Kennedy-Longfellow,00490040, 90.8, 14.1, 53.8, 35.7, 6.4, 23.3 --3.6799999999999997,1,a-vale-i1,2021-22,Cambridge-King Open,00490035, 92.1, 13.7, 58.7, 29.2, 7.4, 14.6 1.0799999999999996,1.08,a-vale-i1,2021-22,Cambridge-Martin Luther King Jr.,00490030, 93.7, 11.1, 40.9, 17.3, 3.7, 9.3 --1.9200000000000004,1,a-vale-i1,2021-22,Cambridge-Peabody,00490050, 92.7, 12.7, 52.6, 24.8, 5.5, 15.9 --5.840000000000001,1,a-vale-i1,2021-22,Cambridge-Cambridge Rindge and Latin,00490506, 89.8, 17.4, 59.3, 34.6, 12.9, 16.7 --2.0799999999999996,1,a-vale-i1,2021-22,Cambridge-Vassal Lane Upper School,00490320, 92.3, 13.5, 51.7, 25.2, 6.5, 21.8 -3.5200000000000005,3.52,a-vale-i1,2021-22,Canton-John F Kennedy,00500017, 94.8, 9.3, 39.9, 11.2, 1.1, 0.0 -1.0799999999999996,1.08,a-vale-i1,2021-22,Canton-Wm H Galvin Middle,00500305, 93.7, 11.2, 45.1, 17.3, 3.9, 6.7 --0.5599999999999994,1,a-vale-i1,2021-22,Canton-Canton High,00500505, 92.9, 12.4, 44.6, 21.4, 5.2, 8.4 +-3.6799999999999997,1,a-vale-i1,2021-22,Cambridge-King Open,00490035, 92.1, 13.7, 58.7, 29.2, 7.4, 14.6 +-6.280000000000001,1,a-vale-i1,2021-22,Cambridge-Kennedy-Longfellow,00490040, 90.8, 14.1, 53.8, 35.7, 6.4, 23.3 +-1.8,1,a-vale-i1,2021-22,Cambridge-Morse,00490045, 92.3, 13.0, 57.2, 24.5, 5.9, 7.2 -13.0,1,a-vale-i1,2021-22,Canton-Rodman Early Childhood Center,00500010, 88.0, 14.5, 60.6, 52.5, 12.1, 0.0 0.8,1,a-vale-i1,2021-22,Canton-Lt Peter M Hansen,00500012, 93.6, 11.1, 48.3, 18.0, 2.7, 48.1 +3.5200000000000005,3.52,a-vale-i1,2021-22,Canton-John F Kennedy,00500017, 94.8, 9.3, 39.9, 11.2, 1.1, 0.0 3.96,3.96,a-vale-i1,2021-22,Canton-Dean S Luce,00500020, 95.1, 8.6, 33.1, 10.1, 1.7, 0.0 +1.0799999999999996,1.08,a-vale-i1,2021-22,Canton-Wm H Galvin Middle,00500305, 93.7, 11.2, 45.1, 17.3, 3.9, 6.7 +-0.5599999999999994,1,a-vale-i1,2021-22,Canton-Canton High,00500505, 92.9, 12.4, 44.6, 21.4, 5.2, 8.4 -1.4799999999999998,1,a-vale-i1,2021-22,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 92.4, 13.5, 64.0, 23.7, 2.8, 0.0 -3.4400000000000004,1,a-vale-i1,2021-22,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 91.2, 15.0, 59.5, 28.6, 8.0, 10.7 3.96,3.96,a-vale-i1,2021-22,Carlisle-Carlisle School,00510025, 94.9, 9.1, 38.5, 10.1, 1.1, 0.5 --3.4799999999999995,1,a-vale-i1,2021-22,Carver-Carver Middle/High School,00520405, 91.1, 15.6, 61.8, 28.7, 7.8, 37.5 -2.8400000000000007,1,a-vale-i1,2021-22,Carver-Carver Elementary School,00520015, 92.3, 13.5, 61.9, 27.1, 2.7, 37.8 -0.0,1,a-vale-i1,2021-22,Central Berkshire-Kittredge,06350035, 93.4, 11.4, 49.1, 20.0, 1.8, 0.0 --1.4,1,a-vale-i1,2021-22,Central Berkshire-Nessacus Regional Middle School,06350305, 92.3, 13.3, 53.9, 23.5, 6.8, 0.0 +-3.4799999999999995,1,a-vale-i1,2021-22,Carver-Carver Middle/High School,00520405, 91.1, 15.6, 61.8, 28.7, 7.8, 37.5 -2.88,1,a-vale-i1,2021-22,Central Berkshire-Becket Washington School,06350005, 92.0, 13.6, 63.2, 27.2, 4.4, 0.0 -0.2799999999999997,1,a-vale-i1,2021-22,Central Berkshire-Craneville,06350025, 93.1, 12.1, 56.5, 20.7, 2.3, 0.0 -4.8,1,a-vale-i1,2021-22,Central Berkshire-Wahconah Regional High,06350505, 90.6, 16.5, 59.3, 32.0, 10.2, 0.6 +-1.4,1,a-vale-i1,2021-22,Central Berkshire-Nessacus Regional Middle School,06350305, 92.3, 13.3, 53.9, 23.5, 6.8, 0.0 +0.0,1,a-vale-i1,2021-22,Central Berkshire-Kittredge,06350035, 93.4, 11.4, 49.1, 20.0, 1.8, 0.0 +-1.2400000000000007,1,a-vale-i1,2021-22,Chelmsford-Community Education Center,00560001, 91.8, 12.0, 45.2, 23.1, 6.5, 41.4 +3.88,3.88,a-vale-i1,2021-22,Chelmsford-Center Elementary School,00560005, 94.5, 9.8, 44.0, 10.3, 0.4, 9.3 +3.96,3.96,a-vale-i1,2021-22,Chelmsford-South Row,00560015, 94.7, 9.5, 40.9, 10.1, 0.2, 3.5 1.7200000000000002,1.72,a-vale-i1,2021-22,Chelmsford-Charles D Harrington,00560025, 93.7, 11.0, 50.5, 15.7, 2.3, 16.1 0.3200000000000003,1,a-vale-i1,2021-22,Chelmsford-Byam School,00560030, 93.2, 11.9, 53.5, 19.2, 2.5, 31.7 1.0799999999999996,1.08,a-vale-i1,2021-22,Chelmsford-Col Moses Parker School,00560305, 93.8, 11.0, 44.3, 17.3, 3.7, 9.6 2.7600000000000002,2.76,a-vale-i1,2021-22,Chelmsford-McCarthy Middle School,00560310, 94.2, 10.3, 43.1, 13.1, 2.4, 35.7 0.2799999999999997,1,a-vale-i1,2021-22,Chelmsford-Chelmsford High,00560505, 92.9, 12.4, 44.2, 19.3, 5.9, 11.5 --1.2400000000000007,1,a-vale-i1,2021-22,Chelmsford-Community Education Center,00560001, 91.8, 12.0, 45.2, 23.1, 6.5, 41.4 -3.88,3.88,a-vale-i1,2021-22,Chelmsford-Center Elementary School,00560005, 94.5, 9.8, 44.0, 10.3, 0.4, 9.3 -3.96,3.96,a-vale-i1,2021-22,Chelmsford-South Row,00560015, 94.7, 9.5, 40.9, 10.1, 0.2, 3.5 -0.5200000000000002,1,a-vale-i1,2021-22,Chelsea-George F. Kelly Elementary,00570035, 93.6, 11.3, 50.1, 18.7, 2.0, 49.7 --4.0,1,a-vale-i1,2021-22,Chelsea-William A Berkowitz Elementary,00570025, 91.8, 14.0, 56.4, 30.0, 5.7, 56.4 -10.24,1,a-vale-i1,2021-22,Chelsea-Shurtleff Early Childhood,00570003, 89.6, 16.1, 69.4, 45.6, 10.9, 69.4 +-10.080000000000002,1,a-vale-i1,2021-22,Chelsea-Chelsea High,00570505, 85.6, 23.6, 62.5, 45.2, 25.6, 46.4 -13.319999999999999,1,a-vale-i1,2021-22,Chelsea-Chelsea Virtual Learning Academy,00570705, 83.5, 25.5, 60.0, 53.3, 40.0, 20.0 -32.0,1,a-vale-i1,2021-22,Chelsea-Chelsea Opportunity Academy,00570515, 29.8, 93.9, 99.3, 100.0, 99.3, 99.3 --4.720000000000001,1,a-vale-i1,2021-22,Chelsea-Edgar A Hooks Elementary,00570030, 91.6, 14.3, 60.7, 31.8, 4.7, 60.5 -4.279999999999999,1,a-vale-i1,2021-22,Chelsea-Joseph A. Browne School,00570055, 91.8, 13.6, 54.7, 30.7, 7.5, 54.7 -5.040000000000001,1,a-vale-i1,2021-22,Chelsea-Clark Avenue School,00570050, 91.1, 15.4, 59.7, 32.6, 8.6, 59.7 -6.280000000000001,1,a-vale-i1,2021-22,Chelsea-Eugene Wright Science and Technology Academy,00570045, 90.6, 16.1, 59.0, 35.7, 12.0, 56.3 -6.119999999999999,1,a-vale-i1,2021-22,Chelsea-Frank M Sokolowski Elementary,00570040, 91.2, 14.9, 66.7, 35.3, 6.4, 66.7 --10.080000000000002,1,a-vale-i1,2021-22,Chelsea-Chelsea High,00570505, 85.6, 23.6, 62.5, 45.2, 25.6, 46.4 +0.5200000000000002,1,a-vale-i1,2021-22,Chelsea-George F. Kelly Elementary,00570035, 93.6, 11.3, 50.1, 18.7, 2.0, 49.7 +-4.720000000000001,1,a-vale-i1,2021-22,Chelsea-Edgar A Hooks Elementary,00570030, 91.6, 14.3, 60.7, 31.8, 4.7, 60.5 +-4.0,1,a-vale-i1,2021-22,Chelsea-William A Berkowitz Elementary,00570025, 91.8, 14.0, 56.4, 30.0, 5.7, 56.4 -3.7599999999999993,1,a-vale-i1,2021-22,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 92.2, 13.6, 64.1, 29.4, 3.3, 1.3 --3.0,1,a-vale-i1,2021-22,Chicopee-Chicopee Comprehensive High School,00610510, 91.8, 14.2, 55.2, 27.5, 8.9, 34.2 --3.9599999999999995,1,a-vale-i1,2021-22,Chicopee-Bowie,00610020, 91.9, 14.1, 62.3, 29.9, 2.8, 40.9 --13.48,1,a-vale-i1,2021-22,Chicopee-Bowe,00610015, 88.1, 19.6, 77.2, 53.7, 12.7, 65.6 --12.52,1,a-vale-i1,2021-22,Chicopee-Belcher,00610010, 88.4, 19.5, 72.1, 51.3, 16.7, 57.1 -6.2,1,a-vale-i1,2021-22,Chicopee-Barry,00610003, 91.2, 15.1, 63.2, 35.5, 7.8, 48.6 +-12.52,1,a-vale-i1,2021-22,Chicopee-Belcher,00610010, 88.4, 19.5, 72.1, 51.3, 16.7, 57.1 +-13.48,1,a-vale-i1,2021-22,Chicopee-Bowe,00610015, 88.1, 19.6, 77.2, 53.7, 12.7, 65.6 +-3.9599999999999995,1,a-vale-i1,2021-22,Chicopee-Bowie,00610020, 91.9, 14.1, 62.3, 29.9, 2.8, 40.9 +-28.2,1,a-vale-i1,2021-22,Chicopee-Chicopee Academy,00610021, 68.8, 47.0, 94.0, 90.5, 77.4, 86.9 +-13.12,1,a-vale-i1,2021-22,Chicopee-Chicopee High,00610505, 86.8, 21.9, 73.7, 52.8, 21.8, 64.0 +-3.0,1,a-vale-i1,2021-22,Chicopee-Chicopee Comprehensive High School,00610510, 91.8, 14.2, 55.2, 27.5, 8.9, 34.2 -17.639999999999997,1,a-vale-i1,2021-22,Chicopee-Szetela Early Childhood Center,00610001, 85.6, 21.3, 76.8, 64.1, 26.1, 75.7 +-11.4,1,a-vale-i1,2021-22,Chicopee-Dupont Middle,00610310, 88.1, 20.0, 72.9, 48.5, 15.7, 63.3 +-6.640000000000001,1,a-vale-i1,2021-22,Chicopee-Bellamy Middle,00610305, 90.5, 16.1, 64.2, 36.6, 8.9, 49.5 +-7.56,1,a-vale-i1,2021-22,Chicopee-Gen John J Stefanik,00610090, 90.5, 16.4, 70.5, 38.9, 8.8, 49.7 -3.8400000000000007,1,a-vale-i1,2021-22,Chicopee-Streiber Memorial School,00610065, 92.1, 13.8, 59.7, 29.6, 4.7, 33.0 -9.4,1,a-vale-i1,2021-22,Chicopee-Fairview Elementary,00610050, 89.5, 17.6, 71.7, 43.5, 8.5, 60.4 -3.0799999999999996,1,a-vale-i1,2021-22,Chicopee-Lambert-Lavoie,00610040, 92.1, 13.8, 57.0, 27.7, 4.7, 32.0 -5.2,1,a-vale-i1,2021-22,Chicopee-Litwin,00610022, 91.7, 14.4, 64.9, 33.0, 5.2, 59.7 --28.2,1,a-vale-i1,2021-22,Chicopee-Chicopee Academy,00610021, 68.8, 47.0, 94.0, 90.5, 77.4, 86.9 --13.12,1,a-vale-i1,2021-22,Chicopee-Chicopee High,00610505, 86.8, 21.9, 73.7, 52.8, 21.8, 64.0 --11.4,1,a-vale-i1,2021-22,Chicopee-Dupont Middle,00610310, 88.1, 20.0, 72.9, 48.5, 15.7, 63.3 --6.640000000000001,1,a-vale-i1,2021-22,Chicopee-Bellamy Middle,00610305, 90.5, 16.1, 64.2, 36.6, 8.9, 49.5 --7.56,1,a-vale-i1,2021-22,Chicopee-Gen John J Stefanik,00610090, 90.5, 16.4, 70.5, 38.9, 8.8, 49.7 3.9200000000000004,3.92,a-vale-i1,2021-22,Christa McAuliffe Charter Public (District)-Christa McAuliffe Charter Public School,04180305, 95.2, 8.3, 29.2, 10.2, 2.8, 10.4 -17.2,1,a-vale-i1,2021-22,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 82.2, 29.9, 79.1, 63.0, 28.1, 0.9 -0.7200000000000003,1,a-vale-i1,2021-22,Clarksburg-Clarksburg Elementary,00630010, 93.2, 12.1, 57.3, 21.8, 2.4, 3.3 @@ -431,8 +431,8 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -6.44,1,a-vale-i1,2021-22,Clinton-Clinton Senior High,00640505, 90.2, 16.6, 58.7, 36.1, 12.3, 0.0 -2.5599999999999996,1,a-vale-i1,2021-22,Clinton-Clinton Elementary,00640050, 92.3, 13.1, 59.8, 26.4, 3.2, 0.0 -6.8,1,a-vale-i1,2021-22,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 90.6, 16.0, 64.4, 37.0, 10.4, 40.9 -4.84,4.84,a-vale-i1,2021-22,Cohasset-Cohasset Middle School,00650305, 95.0, 8.9, 35.5, 7.9, 1.9, 21.4 2.12,2.12,a-vale-i1,2021-22,Cohasset-Cohasset High School,00650505, 94.0, 10.5, 43.9, 14.7, 2.6, 18.9 +4.84,4.84,a-vale-i1,2021-22,Cohasset-Cohasset Middle School,00650305, 95.0, 8.9, 35.5, 7.9, 1.9, 21.4 3.4799999999999995,3.48,a-vale-i1,2021-22,Cohasset-Joseph Osgood,00650010, 94.0, 10.7, 55.5, 11.3, 0.3, 53.9 4.4799999999999995,4.48,a-vale-i1,2021-22,Cohasset-Deer Hill,00650005, 94.7, 9.5, 43.5, 8.8, 0.6, 11.4 -0.5599999999999994,1,a-vale-i1,2021-22,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 93.5, 11.2, 46.7, 21.4, 4.3, 20.7 @@ -441,148 +441,149 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 1.2,1.2,a-vale-i1,2021-22,Community Day Charter Public School - Prospect (District)-Community Day Charter Public School - Prospect,04400205, 93.7, 11.5, 52.1, 17.0, 1.7, 4.2 -1.4,1,a-vale-i1,2021-22,Community Day Charter Public School - R. Kingman Webster (District)-Community Day Charter Public School - R. Kingman Webster,04310205, 92.6, 13.4, 61.1, 23.5, 4.2, 6.4 1.8,1.8,a-vale-i1,2021-22,Concord-Alcott,00670005, 94.3, 9.9, 42.7, 15.5, 0.7, 9.4 +3.04,3.04,a-vale-i1,2021-22,Concord-Concord Middle,00670305, 94.3, 10.1, 41.8, 12.4, 1.7, 2.4 3.84,3.84,a-vale-i1,2021-22,Concord-Willard,00670030, 94.8, 9.1, 39.5, 10.4, 0.7, 5.1 3.6399999999999997,3.64,a-vale-i1,2021-22,Concord-Thoreau,00670020, 94.7, 9.3, 42.3, 10.9, 0.7, 5.2 -3.04,3.04,a-vale-i1,2021-22,Concord-Concord Middle,00670305, 94.3, 10.1, 41.8, 12.4, 1.7, 2.4 1.7200000000000002,1.72,a-vale-i1,2021-22,Concord-Carlisle-Concord Carlisle High,06400505, 93.8, 11.0, 41.5, 15.7, 4.0, 1.7 -6.44,1,a-vale-i1,2021-22,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 90.1, 16.7, 68.9, 36.1, 8.7, 39.1 4.2,4.2,a-vale-i1,2021-22,Conway-Conway Grammar,00680005, 94.4, 10.1, 46.3, 9.5, 2.0, 45.6 --1.5599999999999994,1,a-vale-i1,2021-22,Danvers-Highlands,00710010, 92.9, 12.0, 55.8, 23.9, 1.8, 0.0 -1.0400000000000005,1,a-vale-i1,2021-22,Danvers-Willis E Thorpe,00710045, 92.8, 12.1, 56.7, 22.6, 3.4, 0.0 -0.4,1,a-vale-i1,2021-22,Danvers-Great Oak,00710015, 93.1, 11.9, 56.3, 19.0, 1.8, 0.0 --0.2799999999999997,1,a-vale-i1,2021-22,Danvers-Riverside,00710030, 92.9, 11.6, 53.7, 20.7, 4.6, 0.0 -0.7200000000000003,1,a-vale-i1,2021-22,Danvers-Ivan G Smith,00710032, 93.2, 11.9, 61.7, 18.2, 0.6, 0.0 3.6,3.6,a-vale-i1,2021-22,Danvers-Holten Richmond Middle School,00710305, 95.2, 8.4, 25.9, 11.0, 4.1, 0.0 +-0.2799999999999997,1,a-vale-i1,2021-22,Danvers-Riverside,00710030, 92.9, 11.6, 53.7, 20.7, 4.6, 0.0 +0.4,1,a-vale-i1,2021-22,Danvers-Great Oak,00710015, 93.1, 11.9, 56.3, 19.0, 1.8, 0.0 +-1.5599999999999994,1,a-vale-i1,2021-22,Danvers-Highlands,00710010, 92.9, 12.0, 55.8, 23.9, 1.8, 0.0 +0.7200000000000003,1,a-vale-i1,2021-22,Danvers-Ivan G Smith,00710032, 93.2, 11.9, 61.7, 18.2, 0.6, 0.0 -5.2,1,a-vale-i1,2021-22,Danvers-Danvers High,00710505, 90.4, 16.5, 58.9, 33.0, 10.7, 13.8 +-3.2400000000000007,1,a-vale-i1,2021-22,Dartmouth-Dartmouth High,00720505, 91.4, 14.8, 54.4, 28.1, 9.0, 35.3 +-6.480000000000001,1,a-vale-i1,2021-22,Dartmouth-Andrew B. Cushman School,00720005, 91.0, 15.4, 67.1, 36.2, 4.7, 32.9 +-0.24000000000000057,1,a-vale-i1,2021-22,Dartmouth-Joseph Demello,00720015, 93.0, 12.1, 59.3, 20.6, 1.8, 24.2 +1.5599999999999994,1.56,a-vale-i1,2021-22,Dartmouth-George H Potter,00720030, 93.6, 11.2, 50.5, 16.1, 1.5, 22.4 -2.5200000000000005,1,a-vale-i1,2021-22,Dartmouth-James M. Quinn School,00720040, 92.1, 13.8, 66.6, 26.3, 3.4, 34.2 -1.4400000000000006,1,a-vale-i1,2021-22,Dartmouth-Dartmouth Middle,00720050, 92.5, 13.1, 55.8, 23.6, 3.5, 23.7 -1.5599999999999994,1.56,a-vale-i1,2021-22,Dartmouth-George H Potter,00720030, 93.6, 11.2, 50.5, 16.1, 1.5, 22.4 --0.24000000000000057,1,a-vale-i1,2021-22,Dartmouth-Joseph Demello,00720015, 93.0, 12.1, 59.3, 20.6, 1.8, 24.2 --6.480000000000001,1,a-vale-i1,2021-22,Dartmouth-Andrew B. Cushman School,00720005, 91.0, 15.4, 67.1, 36.2, 4.7, 32.9 --3.2400000000000007,1,a-vale-i1,2021-22,Dartmouth-Dartmouth High,00720505, 91.4, 14.8, 54.4, 28.1, 9.0, 35.3 -10.559999999999999,1,a-vale-i1,2021-22,Dedham-Dedham High,00730505, 87.8, 20.6, 86.8, 46.4, 12.7, 7.3 --1.1599999999999995,1,a-vale-i1,2021-22,Dedham-Dedham Middle School,00730305, 93.0, 12.4, 45.8, 22.9, 6.2, 22.7 -1.8799999999999997,1,a-vale-i1,2021-22,Dedham-Early Childhood Center,00730005, 92.6, 12.9, 56.1, 24.7, 3.8, 33.4 -2.3200000000000003,1,a-vale-i1,2021-22,Dedham-Avery,00730010, 92.5, 13.1, 60.1, 25.8, 4.5, 38.1 4.04,4.04,a-vale-i1,2021-22,Dedham-Greenlodge,00730025, 94.8, 9.3, 43.9, 9.9, 0.0, 20.2 3.84,3.84,a-vale-i1,2021-22,Dedham-Oakdale,00730030, 94.5, 9.8, 42.6, 10.4, 2.0, 18.1 1.7200000000000002,1.72,a-vale-i1,2021-22,Dedham-Riverdale,00730045, 94.3, 10.2, 41.9, 15.7, 0.6, 19.8 +-1.1599999999999995,1,a-vale-i1,2021-22,Dedham-Dedham Middle School,00730305, 93.0, 12.4, 45.8, 22.9, 6.2, 22.7 1.9200000000000004,1.92,a-vale-i1,2021-22,Deerfield-Deerfield Elementary,00740015, 92.3, 13.7, 52.2, 15.2, 6.3, 4.5 -9.76,1,a-vale-i1,2021-22,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 88.2, 19.9, 71.0, 44.4, 15.7, 49.3 -4.8,1,a-vale-i1,2021-22,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.4, 61.1, 32.0, 6.4, 13.3 -1.7599999999999993,1,a-vale-i1,2021-22,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 92.7, 12.5, 60.2, 24.4, 3.4, 42.6 -3.7599999999999993,1,a-vale-i1,2021-22,Dennis-Yarmouth-Station Avenue Elementary,06450025, 92.5, 12.9, 61.3, 29.4, 1.5, 15.9 --2.12,1,a-vale-i1,2021-22,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.1, 12.8, 59.5, 25.3, 7.4, 20.5 -11.36,1,a-vale-i1,2021-22,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 89.3, 17.3, 72.9, 48.4, 13.4, 53.9 --7.280000000000001,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 89.9, 17.5, 67.8, 38.2, 10.0, 50.6 --0.8,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 92.7, 12.9, 58.4, 22.0, 2.4, 38.6 --1.3599999999999994,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dighton Middle School,06500305, 92.8, 12.7, 59.4, 23.4, 2.1, 41.9 -1.0,1.0,a-vale-i1,2021-22,Dighton-Rehoboth-Palmer River,06500010, 93.6, 11.3, 53.3, 17.5, 1.5, 51.1 +-2.12,1,a-vale-i1,2021-22,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.1, 12.8, 59.5, 25.3, 7.4, 20.5 -0.4,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dighton Elementary,06500005, 92.8, 12.6, 59.7, 21.0, 2.4, 58.8 +1.0,1.0,a-vale-i1,2021-22,Dighton-Rehoboth-Palmer River,06500010, 93.6, 11.3, 53.3, 17.5, 1.5, 51.1 +-1.3599999999999994,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dighton Middle School,06500305, 92.8, 12.7, 59.4, 23.4, 2.1, 41.9 +-0.8,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 92.7, 12.9, 58.4, 22.0, 2.4, 38.6 +-7.280000000000001,1,a-vale-i1,2021-22,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 89.9, 17.5, 67.8, 38.2, 10.0, 50.6 -1.2799999999999998,1,a-vale-i1,2021-22,Douglas-Douglas Middle School,00770305, 92.5, 12.9, 53.9, 23.2, 4.6, 8.6 -2.0,1,a-vale-i1,2021-22,Douglas-Douglas High School,00770505, 91.9, 14.3, 57.8, 25.0, 6.1, 29.9 --7.640000000000001,1,a-vale-i1,2021-22,Douglas-Douglas Primary School,00770005, 91.4, 13.8, 66.2, 39.1, 4.3, 11.6 -1.2400000000000007,1,a-vale-i1,2021-22,Douglas-Douglas Elementary School,00770015, 92.5, 13.3, 61.7, 23.1, 3.1, 4.5 +-7.640000000000001,1,a-vale-i1,2021-22,Douglas-Douglas Primary School,00770005, 91.4, 13.8, 66.2, 39.1, 4.3, 11.6 2.16,2.16,a-vale-i1,2021-22,Dover-Chickering,00780005, 94.3, 10.3, 48.3, 14.6, 1.2, 36.3 4.68,4.68,a-vale-i1,2021-22,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 94.6, 9.7, 39.8, 8.3, 1.0, 30.1 2.84,2.84,a-vale-i1,2021-22,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 93.8, 11.0, 47.0, 12.9, 2.0, 19.1 +-1.4400000000000006,1,a-vale-i1,2021-22,Dracut-Justus C. Richardson Middle School,00790410, 92.3, 13.5, 57.6, 23.6, 5.4, 35.5 +-1.2799999999999998,1,a-vale-i1,2021-22,Dracut-Joseph A Campbell Elementary,00790020, 92.6, 13.1, 61.0, 23.2, 4.2, 61.0 +-2.4400000000000004,1,a-vale-i1,2021-22,Dracut-George H. Englesby Elementary School,00790045, 92.6, 13.0, 61.4, 26.1, 2.6, 61.4 +-1.4400000000000006,1,a-vale-i1,2021-22,Dracut-Brookside Elementary,00790035, 92.9, 12.4, 57.8, 23.6, 1.4, 57.6 -1.2799999999999998,1,a-vale-i1,2021-22,Dracut-Greenmont Avenue,00790030, 92.7, 12.5, 54.2, 23.2, 4.8, 54.2 -4.880000000000001,1,a-vale-i1,2021-22,Dracut-Dracut Senior High,00790505, 90.3, 16.5, 56.3, 32.2, 12.9, 43.8 --1.4400000000000006,1,a-vale-i1,2021-22,Dracut-Justus C. Richardson Middle School,00790410, 92.3, 13.5, 57.6, 23.6, 5.4, 35.5 --1.4400000000000006,1,a-vale-i1,2021-22,Dracut-Brookside Elementary,00790035, 92.9, 12.4, 57.8, 23.6, 1.4, 57.6 --2.4400000000000004,1,a-vale-i1,2021-22,Dracut-George H. Englesby Elementary School,00790045, 92.6, 13.0, 61.4, 26.1, 2.6, 61.4 --1.2799999999999998,1,a-vale-i1,2021-22,Dracut-Joseph A Campbell Elementary,00790020, 92.6, 13.1, 61.0, 23.2, 4.2, 61.0 -3.6,1,a-vale-i1,2021-22,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 92.0, 14.3, 58.3, 29.0, 5.2, 14.8 +-1.8400000000000005,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Dudley Elementary,06580005, 92.9, 12.4, 58.4, 24.6, 2.8, 34.0 +-1.7200000000000002,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Mason Road School,06580010, 92.6, 12.5, 57.5, 24.3, 3.6, 32.5 +-2.0400000000000005,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Charlton Elementary,06580020, 92.5, 12.8, 61.7, 25.1, 2.9, 30.7 +-0.3200000000000003,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Heritage School,06580030, 93.3, 11.8, 57.3, 20.8, 1.6, 10.5 -2.9200000000000004,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.4, 14.8, 58.3, 27.3, 8.1, 32.1 -1.4799999999999998,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Charlton Middle School,06580310, 92.7, 13.0, 59.5, 23.7, 3.8, 29.7 -2.4400000000000004,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Dudley Middle School,06580305, 92.4, 13.4, 57.7, 26.1, 4.9, 28.0 --0.3200000000000003,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Heritage School,06580030, 93.3, 11.8, 57.3, 20.8, 1.6, 10.5 --2.0400000000000005,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Charlton Elementary,06580020, 92.5, 12.8, 61.7, 25.1, 2.9, 30.7 --1.8400000000000005,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Dudley Elementary,06580005, 92.9, 12.4, 58.4, 24.6, 2.8, 34.0 --1.7200000000000002,1,a-vale-i1,2021-22,Dudley-Charlton Reg-Mason Road School,06580010, 92.6, 12.5, 57.5, 24.3, 3.6, 32.5 4.12,4.12,a-vale-i1,2021-22,Duxbury-Alden School,00820004, 94.3, 10.1, 43.1, 9.7, 0.7, 11.2 1.9600000000000002,1.96,a-vale-i1,2021-22,Duxbury-Chandler Elementary,00820006, 93.8, 10.7, 48.4, 15.1, 1.4, 23.0 3.2,3.2,a-vale-i1,2021-22,Duxbury-Duxbury Middle,00820305, 94.6, 9.7, 40.6, 12.0, 0.9, 20.4 4.0,4.0,a-vale-i1,2021-22,Duxbury-Duxbury High,00820505, 94.6, 9.5, 34.8, 10.0, 2.5, 9.7 --3.88,1,a-vale-i1,2021-22,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 91.4, 15.0, 58.2, 29.7, 8.1, 50.2 -0.8,1,a-vale-i1,2021-22,East Bridgewater-Central,00830005, 93.1, 12.1, 56.9, 22.0, 0.5, 22.9 +-3.88,1,a-vale-i1,2021-22,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 91.4, 15.0, 58.2, 29.7, 8.1, 50.2 -1.0400000000000005,1,a-vale-i1,2021-22,East Bridgewater-Gordon W. Mitchell School,00830010, 93.1, 11.9, 53.8, 22.6, 1.9, 44.7 -2.2399999999999998,2.24,a-vale-i1,2021-22,East Longmeadow-Birchland Park,00870305, 94.1, 10.5, 42.9, 14.4, 2.3, 0.0 --1.0,1,a-vale-i1,2021-22,East Longmeadow-Mountain View,00870015, 93.3, 12.0, 58.8, 22.5, 0.7, 0.0 -0.44000000000000056,1,a-vale-i1,2021-22,East Longmeadow-East Longmeadow High,00870505, 93.1, 12.4, 47.6, 21.1, 5.5, 0.0 +-1.0,1,a-vale-i1,2021-22,East Longmeadow-Mountain View,00870015, 93.3, 12.0, 58.8, 22.5, 0.7, 0.0 -2.9599999999999995,1,a-vale-i1,2021-22,East Longmeadow-Meadow Brook,00870013, 92.3, 13.5, 65.0, 27.4, 2.1, 0.0 0.8400000000000005,1,a-vale-i1,2021-22,East Longmeadow-Mapleshade,00870010, 93.7, 11.1, 49.5, 17.9, 1.1, 0.0 +2.2399999999999998,2.24,a-vale-i1,2021-22,East Longmeadow-Birchland Park,00870305, 94.1, 10.5, 42.9, 14.4, 2.3, 0.0 -3.0400000000000005,1,a-vale-i1,2021-22,Eastham-Eastham Elementary,00850005, 91.4, 14.9, 69.8, 27.6, 5.5, 21.1 -2.3599999999999994,1,a-vale-i1,2021-22,Easthampton-Center School,00860005, 93.0, 12.4, 58.2, 25.9, 1.1, 15.3 -3.4,1,a-vale-i1,2021-22,Easthampton-Maple,00860010, 92.2, 13.3, 60.6, 28.5, 5.7, 5.7 -4.6,1,a-vale-i1,2021-22,Easthampton-Neil A Pepin,00860020, 92.2, 13.7, 61.3, 31.5, 2.8, 24.3 --3.9200000000000004,1,a-vale-i1,2021-22,Easthampton-White Brook Middle School,00860305, 91.7, 14.6, 61.5, 29.8, 6.0, 4.8 -0.35999999999999943,1,a-vale-i1,2021-22,Easthampton-Easthampton High,00860505, 92.9, 12.4, 51.0, 20.9, 6.4, 6.7 +-3.9200000000000004,1,a-vale-i1,2021-22,Easthampton-White Brook Middle School,00860305, 91.7, 14.6, 61.5, 29.8, 6.0, 4.8 0.2,1,a-vale-i1,2021-22,Easton-Oliver Ames High,00880505, 93.3, 11.8, 46.5, 19.5, 3.8, 8.6 -1.7200000000000002,1.72,a-vale-i1,2021-22,Easton-Center School,00880003, 93.5, 11.2, 50.7, 15.7, 4.0, 3.6 -1.0,1.0,a-vale-i1,2021-22,Easton-Moreau Hall,00880020, 93.5, 11.1, 48.7, 17.5, 2.2, 4.8 -2.2,2.2,a-vale-i1,2021-22,Easton-Richardson Olmsted School,00880025, 94.2, 10.3, 44.7, 14.5, 1.4, 4.3 0.4799999999999997,1,a-vale-i1,2021-22,Easton-Easton Middle School,00880405, 93.6, 11.3, 48.5, 18.8, 2.8, 9.2 +2.2,2.2,a-vale-i1,2021-22,Easton-Richardson Olmsted School,00880025, 94.2, 10.3, 44.7, 14.5, 1.4, 4.3 +1.0,1.0,a-vale-i1,2021-22,Easton-Moreau Hall,00880020, 93.5, 11.1, 48.7, 17.5, 2.2, 4.8 1.6799999999999997,1.68,a-vale-i1,2021-22,Easton-Parkview Elementary,00880015, 93.9, 10.5, 50.6, 15.8, 1.6, 1.3 +1.7200000000000002,1.72,a-vale-i1,2021-22,Easton-Center School,00880003, 93.5, 11.2, 50.7, 15.7, 4.0, 3.6 -4.959999999999999,1,a-vale-i1,2021-22,Edgartown-Edgartown Elementary,00890005, 91.6, 14.1, 66.0, 32.4, 5.9, 20.3 -14.080000000000002,1,a-vale-i1,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District)-Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 85.8, 24.1, 77.2, 55.2, 25.8, 56.7 -4.44,1,a-vale-i1,2021-22,Erving-Erving Elementary,00910030, 91.2, 15.7, 64.4, 31.1, 11.1, 15.6 -0.7200000000000003,1,a-vale-i1,2021-22,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 93.0, 12.3, 50.9, 21.8, 4.4, 11.8 --20.560000000000002,1,a-vale-i1,2021-22,Everett-Devens School,00930030, 78.4, 35.6, 83.3, 71.4, 50.0, 76.2 --8.0,1,a-vale-i1,2021-22,Everett-George Keverian School,00930028, 90.0, 17.2, 67.2, 40.0, 10.3, 66.0 --5.519999999999999,1,a-vale-i1,2021-22,Everett-Madeline English School,00930018, 91.1, 15.0, 62.5, 33.8, 7.6, 62.5 --4.44,1,a-vale-i1,2021-22,Everett-Webster School,00930015, 91.6, 14.5, 59.1, 31.1, 6.6, 58.0 --5.519999999999999,1,a-vale-i1,2021-22,Everett-Parlin School,00930058, 91.2, 14.9, 60.4, 33.8, 6.7, 58.6 --20.160000000000004,1,a-vale-i1,2021-22,Everett-Adams School,00930003, 80.0, 31.2, 81.6, 70.4, 42.5, 81.6 -17.639999999999997,1,a-vale-i1,2021-22,Everett-Webster Extension,00930001, 85.3, 23.9, 82.5, 64.1, 27.2, 82.5 +-20.160000000000004,1,a-vale-i1,2021-22,Everett-Adams School,00930003, 80.0, 31.2, 81.6, 70.4, 42.5, 81.6 -13.4,1,a-vale-i1,2021-22,Everett-Everett High,00930505, 84.3, 26.1, 75.5, 53.5, 25.4, 64.9 --5.6800000000000015,1,a-vale-i1,2021-22,Everett-Lafayette School,00930038, 91.4, 14.7, 60.9, 34.2, 8.0, 60.9 +-4.44,1,a-vale-i1,2021-22,Everett-Webster School,00930015, 91.6, 14.5, 59.1, 31.1, 6.6, 58.0 -5.640000000000001,1,a-vale-i1,2021-22,Everett-Sumner G. Whittier School,00930010, 91.5, 14.2, 58.0, 34.1, 7.2, 51.5 +-5.519999999999999,1,a-vale-i1,2021-22,Everett-Madeline English School,00930018, 91.1, 15.0, 62.5, 33.8, 7.6, 62.5 +-8.0,1,a-vale-i1,2021-22,Everett-George Keverian School,00930028, 90.0, 17.2, 67.2, 40.0, 10.3, 66.0 +-20.560000000000002,1,a-vale-i1,2021-22,Everett-Devens School,00930030, 78.4, 35.6, 83.3, 71.4, 50.0, 76.2 +-5.6800000000000015,1,a-vale-i1,2021-22,Everett-Lafayette School,00930038, 91.4, 14.7, 60.9, 34.2, 8.0, 60.9 +-5.519999999999999,1,a-vale-i1,2021-22,Everett-Parlin School,00930058, 91.2, 14.9, 60.4, 33.8, 6.7, 58.6 -4.4,1,a-vale-i1,2021-22,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 91.2, 15.4, 59.2, 31.0, 9.1, 45.1 --3.4,1,a-vale-i1,2021-22,Fairhaven-East Fairhaven,00940010, 92.1, 13.8, 64.1, 28.5, 3.7, 25.4 -3.0799999999999996,1,a-vale-i1,2021-22,Fairhaven-Fairhaven High,00940505, 91.1, 15.3, 56.8, 27.7, 12.2, 32.9 -0.07999999999999971,1,a-vale-i1,2021-22,Fairhaven-Leroy Wood,00940030, 92.7, 12.8, 62.3, 19.8, 2.3, 27.7 -2.0799999999999996,1,a-vale-i1,2021-22,Fairhaven-Hastings Middle,00940305, 92.3, 13.8, 54.2, 25.2, 4.8, 22.6 +0.07999999999999971,1,a-vale-i1,2021-22,Fairhaven-Leroy Wood,00940030, 92.7, 12.8, 62.3, 19.8, 2.3, 27.7 +-3.4,1,a-vale-i1,2021-22,Fairhaven-East Fairhaven,00940010, 92.1, 13.8, 64.1, 28.5, 3.7, 25.4 +-10.12,1,a-vale-i1,2021-22,Fall River-Carlton M. Viveiros Elementary School,00950009, 89.4, 17.5, 71.4, 45.3, 9.6, 49.9 +-10.12,1,a-vale-i1,2021-22,Fall River-Mary Fonseca Elementary School,00950011, 89.9, 16.8, 70.1, 45.3, 8.2, 45.1 +-8.48,1,a-vale-i1,2021-22,Fall River-Letourneau Elementary School,00950013, 89.7, 17.0, 71.3, 41.2, 11.2, 52.7 +-11.080000000000002,1,a-vale-i1,2021-22,Fall River-Henry Lord Community School,00950017, 89.1, 18.4, 71.4, 47.7, 12.6, 49.1 +-13.319999999999999,1,a-vale-i1,2021-22,Fall River-John J Doran,00950045, 87.7, 20.5, 75.8, 53.3, 17.5, 51.6 +-10.080000000000002,1,a-vale-i1,2021-22,Fall River-William S Greene,00950065, 89.5, 17.6, 72.1, 45.2, 10.5, 54.8 -6.119999999999999,1,a-vale-i1,2021-22,Fall River-Spencer Borden,00950130, 90.4, 16.6, 67.7, 35.3, 8.1, 36.0 -6.359999999999999,1,a-vale-i1,2021-22,Fall River-James Tansey,00950140, 90.7, 16.5, 74.6, 35.9, 6.7, 31.7 -11.2,1,a-vale-i1,2021-22,Fall River-Samuel Watson,00950145, 89.6, 16.9, 72.8, 48.0, 8.8, 49.6 -10.12,1,a-vale-i1,2021-22,Fall River-Talbot Innovation School,00950305, 89.3, 17.8, 72.7, 45.3, 11.1, 48.4 -8.84,1,a-vale-i1,2021-22,Fall River-Morton Middle,00950315, 89.6, 17.9, 69.2, 42.1, 12.2, 49.4 --9.64,1,a-vale-i1,2021-22,Fall River-Matthew J Kuss Middle,00950320, 89.3, 18.4, 69.1, 44.1, 12.1, 44.6 --20.639999999999997,1,a-vale-i1,2021-22,Fall River-Stone PK-12 School,00950340, 81.1, 31.0, 83.6, 71.6, 38.8, 64.2 --14.64,1,a-vale-i1,2021-22,Fall River-B M C Durfee High,00950505, 83.7, 27.0, 76.5, 56.6, 28.3, 60.1 --28.76,1,a-vale-i1,2021-22,Fall River-Resiliency Preparatory Academy,00950525, 63.8, 48.7, 90.6, 91.9, 80.5, 86.6 --10.080000000000002,1,a-vale-i1,2021-22,Fall River-William S Greene,00950065, 89.5, 17.6, 72.1, 45.2, 10.5, 54.8 --13.319999999999999,1,a-vale-i1,2021-22,Fall River-John J Doran,00950045, 87.7, 20.5, 75.8, 53.3, 17.5, 51.6 --10.12,1,a-vale-i1,2021-22,Fall River-Mary Fonseca Elementary School,00950011, 89.9, 16.8, 70.1, 45.3, 8.2, 45.1 --8.48,1,a-vale-i1,2021-22,Fall River-Letourneau Elementary School,00950013, 89.7, 17.0, 71.3, 41.2, 11.2, 52.7 --11.080000000000002,1,a-vale-i1,2021-22,Fall River-Henry Lord Community School,00950017, 89.1, 18.4, 71.4, 47.7, 12.6, 49.1 --10.12,1,a-vale-i1,2021-22,Fall River-Carlton M. Viveiros Elementary School,00950009, 89.4, 17.5, 71.4, 45.3, 9.6, 49.9 -10.48,1,a-vale-i1,2021-22,Fall River-North End Elementary,00950005, 89.5, 17.8, 74.2, 46.2, 9.8, 51.0 +-28.76,1,a-vale-i1,2021-22,Fall River-Resiliency Preparatory Academy,00950525, 63.8, 48.7, 90.6, 91.9, 80.5, 86.6 +-9.64,1,a-vale-i1,2021-22,Fall River-Matthew J Kuss Middle,00950320, 89.3, 18.4, 69.1, 44.1, 12.1, 44.6 +-14.64,1,a-vale-i1,2021-22,Fall River-B M C Durfee High,00950505, 83.7, 27.0, 76.5, 56.6, 28.3, 60.1 +-20.639999999999997,1,a-vale-i1,2021-22,Fall River-Stone PK-12 School,00950340, 81.1, 31.0, 83.6, 71.6, 38.8, 64.2 +-4.68,1,a-vale-i1,2021-22,Falmouth-Morse Pond School,00960305, 91.3, 15.1, 65.4, 31.7, 6.0, 45.7 +-7.359999999999999,1,a-vale-i1,2021-22,Falmouth-Lawrence,00960405, 90.2, 17.2, 66.9, 38.4, 10.5, 48.0 +-7.280000000000001,1,a-vale-i1,2021-22,Falmouth-Falmouth High,00960505, 89.6, 18.1, 67.0, 38.2, 12.4, 37.6 +-8.040000000000001,1,a-vale-i1,2021-22,Falmouth-East Falmouth Elementary,00960005, 90.7, 15.2, 67.6, 40.1, 5.5, 66.0 -4.4,1,a-vale-i1,2021-22,Falmouth-Teaticket,00960015, 91.8, 14.3, 64.7, 31.0, 3.9, 47.7 -4.640000000000001,1,a-vale-i1,2021-22,Falmouth-Mullen-Hall,00960020, 91.7, 14.4, 64.8, 31.6, 3.6, 43.1 --7.280000000000001,1,a-vale-i1,2021-22,Falmouth-Falmouth High,00960505, 89.6, 18.1, 67.0, 38.2, 12.4, 37.6 -3.8,1,a-vale-i1,2021-22,Falmouth-North Falmouth Elementary,00960030, 91.9, 14.4, 66.8, 29.5, 2.6, 61.3 --4.68,1,a-vale-i1,2021-22,Falmouth-Morse Pond School,00960305, 91.3, 15.1, 65.4, 31.7, 6.0, 45.7 --8.040000000000001,1,a-vale-i1,2021-22,Falmouth-East Falmouth Elementary,00960005, 90.7, 15.2, 67.6, 40.1, 5.5, 66.0 --7.359999999999999,1,a-vale-i1,2021-22,Falmouth-Lawrence,00960405, 90.2, 17.2, 66.9, 38.4, 10.5, 48.0 -5.880000000000001,1,a-vale-i1,2021-22,Farmington River Reg-Farmington River Elementary,06620020, 91.7, 14.4, 67.8, 34.7, 3.4, 9.3 +-12.6,1,a-vale-i1,2021-22,Fitchburg-Fitchburg High,00970505, 87.3, 21.0, 70.5, 51.5, 19.9, 48.1 +-3.2,1,a-vale-i1,2021-22,Fitchburg-Goodrich Academy,00970510, 92.3, 9.5, 35.5, 28.0, 8.5, 27.5 +-12.280000000000001,1,a-vale-i1,2021-22,Fitchburg-Crocker Elementary,00970016, 87.8, 20.1, 77.3, 50.7, 17.6, 35.2 -9.4,1,a-vale-i1,2021-22,Fitchburg-Reingold Elementary,00970043, 90.1, 16.5, 70.6, 43.5, 8.2, 35.4 -9.84,1,a-vale-i1,2021-22,Fitchburg-Memorial Middle School,00970048, 89.5, 18.0, 70.6, 44.6, 9.3, 34.6 --3.2,1,a-vale-i1,2021-22,Fitchburg-Goodrich Academy,00970510, 92.3, 9.5, 35.5, 28.0, 8.5, 27.5 --12.6,1,a-vale-i1,2021-22,Fitchburg-Fitchburg High,00970505, 87.3, 21.0, 70.5, 51.5, 19.9, 48.1 --11.36,1,a-vale-i1,2021-22,Fitchburg-McKay Arts Academy,00970340, 88.5, 18.9, 71.9, 48.4, 15.9, 36.7 --12.48,1,a-vale-i1,2021-22,Fitchburg-Arthur M Longsjo Middle School,00970315, 87.5, 21.5, 74.2, 51.2, 18.0, 59.4 -14.8,1,a-vale-i1,2021-22,Fitchburg-South Street Elementary,00970060, 87.6, 20.5, 81.5, 57.0, 15.5, 58.0 --12.280000000000001,1,a-vale-i1,2021-22,Fitchburg-Crocker Elementary,00970016, 87.8, 20.1, 77.3, 50.7, 17.6, 35.2 +-12.48,1,a-vale-i1,2021-22,Fitchburg-Arthur M Longsjo Middle School,00970315, 87.5, 21.5, 74.2, 51.2, 18.0, 59.4 +-11.36,1,a-vale-i1,2021-22,Fitchburg-McKay Arts Academy,00970340, 88.5, 18.9, 71.9, 48.4, 15.9, 36.7 -1.5200000000000002,1,a-vale-i1,2021-22,Florida-Abbott Memorial,00980005, 93.1, 12.3, 58.1, 23.8, 3.8, 0.0 -11.4,1,a-vale-i1,2021-22,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 86.9, 22.7, 85.0, 48.5, 16.7, 42.7 -1.5200000000000002,1.52,a-vale-i1,2021-22,Foxborough-Charles Taylor Elementary,00990050, 93.6, 11.2, 50.6, 16.2, 1.2, 0.0 -1.0799999999999996,1.08,a-vale-i1,2021-22,Foxborough-Vincent M Igo Elementary,00990020, 93.8, 10.8, 46.6, 17.3, 1.4, 0.6 2.72,2.72,a-vale-i1,2021-22,Foxborough-Mabelle M Burrell,00990015, 94.4, 9.6, 38.4, 13.2, 1.4, 0.3 --1.3200000000000003,1,a-vale-i1,2021-22,Foxborough-Foxborough High,00990505, 92.2, 13.8, 54.0, 23.3, 5.7, 5.8 +1.0799999999999996,1.08,a-vale-i1,2021-22,Foxborough-Vincent M Igo Elementary,00990020, 93.8, 10.8, 46.6, 17.3, 1.4, 0.6 +1.5200000000000002,1.52,a-vale-i1,2021-22,Foxborough-Charles Taylor Elementary,00990050, 93.6, 11.2, 50.6, 16.2, 1.2, 0.0 1.1599999999999995,1.16,a-vale-i1,2021-22,Foxborough-John J Ahern,00990405, 93.2, 11.9, 47.2, 17.1, 4.5, 4.3 +-1.3200000000000003,1,a-vale-i1,2021-22,Foxborough-Foxborough High,00990505, 92.2, 13.8, 54.0, 23.3, 5.7, 5.8 -1.3599999999999994,1,a-vale-i1,2021-22,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 93.0, 12.2, 52.0, 23.4, 4.3, 30.9 +-7.3199999999999985,1,a-vale-i1,2021-22,Framingham-Brophy,01000006, 90.8, 15.4, 62.3, 38.3, 7.8, 21.0 -3.12,1,a-vale-i1,2021-22,Framingham-Charlotte A Dunning,01000007, 92.3, 13.2, 55.4, 27.8, 3.4, 17.2 -4.32,1,a-vale-i1,2021-22,Framingham-Hemenway,01000015, 92.1, 13.7, 59.6, 30.8, 4.1, 48.5 -8.16,1,a-vale-i1,2021-22,Framingham-Barbieri Elementary,01000035, 89.7, 17.8, 70.2, 40.4, 11.7, 38.9 @@ -596,18 +597,17 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -9.52,1,a-vale-i1,2021-22,Framingham-Framingham High School,01000515, 86.7, 21.8, 63.5, 43.8, 21.5, 47.7 -18.839999999999996,1,a-vale-i1,2021-22,Framingham-Juniper Hill School,01000001, 84.5, 19.0, 73.5, 67.1, 28.6, 25.1 -9.440000000000001,1,a-vale-i1,2021-22,Framingham-King Elementary School,01000005, 90.1, 16.0, 67.2, 43.6, 13.4, 27.3 --7.3199999999999985,1,a-vale-i1,2021-22,Framingham-Brophy,01000006, 90.8, 15.4, 62.3, 38.3, 7.8, 21.0 -0.44000000000000056,1,a-vale-i1,2021-22,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 92.6, 13.0, 47.2, 21.1, 4.1, 0.3 -2.44,2.44,a-vale-i1,2021-22,Franklin-Franklin High,01010505, 94.2, 10.1, 38.3, 13.9, 3.3, 19.4 -2.4799999999999995,2.48,a-vale-i1,2021-22,Franklin-Remington Middle,01010310, 94.0, 10.6, 42.6, 13.8, 2.9, 27.7 +-9.319999999999999,1,a-vale-i1,2021-22,Franklin-Franklin Early Childhood Development Center,01010003, 89.7, 12.0, 46.0, 43.3, 11.3, 46.0 2.3600000000000003,2.36,a-vale-i1,2021-22,Franklin-Horace Mann,01010405, 94.5, 9.8, 42.7, 14.1, 1.1, 23.4 +2.4799999999999995,2.48,a-vale-i1,2021-22,Franklin-Remington Middle,01010310, 94.0, 10.6, 42.6, 13.8, 2.9, 27.7 3.3200000000000003,3.32,a-vale-i1,2021-22,Franklin-Annie Sullivan Middle School,01010040, 94.6, 9.5, 41.0, 11.7, 0.6, 28.6 1.9600000000000002,1.96,a-vale-i1,2021-22,Franklin-Parmenter,01010032, 94.3, 9.9, 48.2, 15.1, 1.3, 16.7 3.2399999999999998,3.24,a-vale-i1,2021-22,Franklin-Oak Street Elementary,01010030, 94.3, 10.1, 48.6, 11.9, 1.3, 25.2 3.6,3.6,a-vale-i1,2021-22,Franklin-J F Kennedy Memorial,01010013, 94.6, 9.5, 43.9, 11.0, 0.3, 13.6 -1.6799999999999997,1.68,a-vale-i1,2021-22,Franklin-Helen Keller Elementary,01010012, 94.1, 10.3, 45.4, 15.8, 1.4, 35.1 --9.319999999999999,1,a-vale-i1,2021-22,Franklin-Franklin Early Childhood Development Center,01010003, 89.7, 12.0, 46.0, 43.3, 11.3, 46.0 +2.44,2.44,a-vale-i1,2021-22,Franklin-Franklin High,01010505, 94.2, 10.1, 38.3, 13.9, 3.3, 19.4 2.6799999999999997,2.68,a-vale-i1,2021-22,Franklin-Jefferson Elementary,01010010, 94.6, 9.5, 38.0, 13.3, 1.2, 16.2 +1.6799999999999997,1.68,a-vale-i1,2021-22,Franklin-Helen Keller Elementary,01010012, 94.1, 10.3, 45.4, 15.8, 1.4, 35.1 -4.640000000000001,1,a-vale-i1,2021-22,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 91.5, 14.8, 62.8, 31.6, 6.5, 33.8 0.2799999999999997,1,a-vale-i1,2021-22,Freetown-Lakeville-Apponequet Regional High,06650505, 93.6, 11.2, 41.1, 19.3, 5.8, 0.0 0.6,1,a-vale-i1,2021-22,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 94.0, 10.6, 46.0, 18.5, 2.5, 0.7 @@ -615,91 +615,93 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -1.9599999999999995,1,a-vale-i1,2021-22,Freetown-Lakeville-Assawompset Elementary School,06650002, 92.5, 13.3, 59.7, 24.9, 3.3, 6.1 -4.24,1,a-vale-i1,2021-22,Freetown-Lakeville-Freetown Elementary School,06650001, 92.1, 14.0, 65.4, 30.6, 1.8, 10.6 -2.5599999999999996,1,a-vale-i1,2021-22,Frontier-Frontier Regional,06700505, 92.1, 13.8, 55.8, 26.4, 7.5, 24.6 --4.12,1,a-vale-i1,2021-22,Gardner-Gardner Academy for Learning and Technology,01030515, 88.7, 18.1, 33.0, 30.3, 24.8, 29.4 +-7.080000000000001,1,a-vale-i1,2021-22,Gardner-Gardner Middle School,01030405, 90.2, 16.9, 68.1, 37.7, 10.0, 41.0 +-9.680000000000001,1,a-vale-i1,2021-22,Gardner-Elm Street School,01030001, 89.8, 17.7, 74.6, 44.2, 8.3, 46.3 -12.52,1,a-vale-i1,2021-22,Gardner-Waterford Street,01030020, 87.6, 20.9, 79.2, 51.3, 15.6, 75.6 -7.24,1,a-vale-i1,2021-22,Gardner-Gardner High,01030505, 90.4, 16.6, 61.4, 38.1, 12.1, 34.4 --9.680000000000001,1,a-vale-i1,2021-22,Gardner-Elm Street School,01030001, 89.8, 17.7, 74.6, 44.2, 8.3, 46.3 --7.080000000000001,1,a-vale-i1,2021-22,Gardner-Gardner Middle School,01030405, 90.2, 16.9, 68.1, 37.7, 10.0, 41.0 --6.44,1,a-vale-i1,2021-22,Gateway-Littleville Elementary School,06720143, 91.1, 14.9, 67.4, 36.1, 5.9, 52.8 +-4.12,1,a-vale-i1,2021-22,Gardner-Gardner Academy for Learning and Technology,01030515, 88.7, 18.1, 33.0, 30.3, 24.8, 29.4 -5.640000000000001,1,a-vale-i1,2021-22,Gateway-Gateway Regional High,06720505, 90.5, 16.2, 61.4, 34.1, 9.7, 34.1 --6.919999999999999,1,a-vale-i1,2021-22,Gateway-Chester Elementary,06720059, 91.4, 14.5, 66.1, 37.3, 2.5, 35.6 -4.0,1,a-vale-i1,2021-22,Gateway-Gateway Regional Middle School,06720405, 91.8, 14.5, 58.6, 30.0, 6.4, 37.9 -1.64,1.64,a-vale-i1,2021-22,Georgetown-Penn Brook,01050010, 93.6, 11.4, 57.3, 15.9, 1.0, 0.0 +-6.44,1,a-vale-i1,2021-22,Gateway-Littleville Elementary School,06720143, 91.1, 14.9, 67.4, 36.1, 5.9, 52.8 +-6.919999999999999,1,a-vale-i1,2021-22,Gateway-Chester Elementary,06720059, 91.4, 14.5, 66.1, 37.3, 2.5, 35.6 1.9200000000000004,1.92,a-vale-i1,2021-22,Georgetown-Georgetown Middle School,01050305, 93.4, 11.7, 51.0, 15.2, 2.0, 2.9 +1.64,1.64,a-vale-i1,2021-22,Georgetown-Penn Brook,01050010, 93.6, 11.4, 57.3, 15.9, 1.0, 0.0 -1.0400000000000005,1,a-vale-i1,2021-22,Georgetown-Georgetown High School,01050505, 92.2, 13.6, 50.5, 22.6, 6.2, 4.6 -5.840000000000001,1,a-vale-i1,2021-22,Georgetown-Perley Elementary,01050005, 91.5, 10.6, 44.4, 34.6, 3.7, 0.0 --0.2799999999999997,1,a-vale-i1,2021-22,Gill-Montague-Gill Elementary,06740005, 93.7, 10.7, 49.6, 20.7, 1.7, 20.7 -9.919999999999998,1,a-vale-i1,2021-22,Gill-Montague-Turners Fall High,06740505, 86.2, 23.9, 66.1, 44.8, 23.5, 50.3 --5.2,1,a-vale-i1,2021-22,Gill-Montague-Great Falls Middle,06740310, 88.8, 19.2, 58.9, 33.0, 17.3, 34.5 -4.279999999999999,1,a-vale-i1,2021-22,Gill-Montague-Sheffield Elementary School,06740050, 91.0, 15.5, 64.7, 30.7, 7.9, 15.8 +-5.2,1,a-vale-i1,2021-22,Gill-Montague-Great Falls Middle,06740310, 88.8, 19.2, 58.9, 33.0, 17.3, 34.5 +-0.2799999999999997,1,a-vale-i1,2021-22,Gill-Montague-Gill Elementary,06740005, 93.7, 10.7, 49.6, 20.7, 1.7, 20.7 -11.2,1,a-vale-i1,2021-22,Gill-Montague-Hillcrest Elementary School,06740015, 88.7, 19.2, 70.4, 48.0, 15.1, 13.2 -1.4400000000000006,1,a-vale-i1,2021-22,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 92.7, 12.8, 57.1, 23.6, 3.7, 17.7 0.5200000000000002,1,a-vale-i1,2021-22,Gloucester-Plum Cove School,01070042, 93.2, 12.1, 61.6, 18.7, 0.9, 38.4 -4.279999999999999,1,a-vale-i1,2021-22,Gloucester-Beeman Memorial,01070010, 91.6, 14.8, 65.0, 30.7, 6.1, 47.4 --4.56,1,a-vale-i1,2021-22,Gloucester-Ralph B O'Maley Middle,01070305, 91.6, 14.8, 60.9, 31.4, 6.4, 43.5 --4.959999999999999,1,a-vale-i1,2021-22,Gloucester-East Gloucester Elementary,01070020, 92.2, 13.7, 65.9, 32.4, 0.6, 53.2 --11.280000000000001,1,a-vale-i1,2021-22,Gloucester-Gloucester PreSchool,01070025, 88.0, 18.2, 72.3, 48.2, 17.0, 72.3 +-10.559999999999999,1,a-vale-i1,2021-22,Gloucester-Gloucester High,01070505, 86.5, 23.3, 70.6, 46.4, 19.7, 57.1 -6.919999999999999,1,a-vale-i1,2021-22,Gloucester-Veterans Memorial,01070045, 91.2, 15.1, 65.8, 37.3, 3.6, 64.9 -1.4,1,a-vale-i1,2021-22,Gloucester-West Parish,01070050, 92.6, 13.1, 58.5, 23.5, 3.2, 38.0 --10.559999999999999,1,a-vale-i1,2021-22,Gloucester-Gloucester High,01070505, 86.5, 23.3, 70.6, 46.4, 19.7, 57.1 --4.2,1,a-vale-i1,2021-22,Grafton-Grafton High School,01100505, 91.2, 15.1, 59.7, 30.5, 8.2, 32.6 +-4.959999999999999,1,a-vale-i1,2021-22,Gloucester-East Gloucester Elementary,01070020, 92.2, 13.7, 65.9, 32.4, 0.6, 53.2 +-11.280000000000001,1,a-vale-i1,2021-22,Gloucester-Gloucester PreSchool,01070025, 88.0, 18.2, 72.3, 48.2, 17.0, 72.3 +-4.56,1,a-vale-i1,2021-22,Gloucester-Ralph B O'Maley Middle,01070305, 91.6, 14.8, 60.9, 31.4, 6.4, 43.5 2.0,2.0,a-vale-i1,2021-22,Grafton-North Street Elementary School,01100030, 93.8, 10.9, 46.7, 15.0, 2.5, 22.0 +0.9599999999999994,1,a-vale-i1,2021-22,Grafton-Grafton Middle,01100305, 93.7, 11.3, 45.0, 17.6, 3.2, 15.7 +-4.2,1,a-vale-i1,2021-22,Grafton-Grafton High School,01100505, 91.2, 15.1, 59.7, 30.5, 8.2, 32.6 1.3200000000000003,1.32,a-vale-i1,2021-22,Grafton-Millbury Street Elementary School,01100200, 93.5, 11.6, 51.7, 16.7, 2.4, 25.2 -0.07999999999999971,1,a-vale-i1,2021-22,Grafton-North Grafton Elementary,01100025, 92.7, 12.7, 58.1, 20.2, 2.9, 54.2 -2.1599999999999993,1,a-vale-i1,2021-22,Grafton-South Grafton Elementary,01100005, 92.6, 13.0, 54.4, 25.4, 3.5, 51.9 -0.9599999999999994,1,a-vale-i1,2021-22,Grafton-Grafton Middle,01100305, 93.7, 11.3, 45.0, 17.6, 3.2, 15.7 -3.4799999999999995,3.48,a-vale-i1,2021-22,Granby-Granby Jr Sr High School,01110505, 94.8, 9.1, 34.5, 11.3, 2.3, 14.8 1.4400000000000006,1.44,a-vale-i1,2021-22,Granby-East Meadow,01110004, 94.1, 10.3, 45.2, 16.4, 3.1, 41.3 +3.4799999999999995,3.48,a-vale-i1,2021-22,Granby-Granby Jr Sr High School,01110505, 94.8, 9.1, 34.5, 11.3, 2.3, 14.8 2.88,2.88,a-vale-i1,2021-22,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 96.4, 5.1, 13.6, 12.8, 4.2, 2.1 4.08,4.08,a-vale-i1,2021-22,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 94.9, 9.1, 33.4, 9.8, 3.0, 10.1 -0.5599999999999994,1,a-vale-i1,2021-22,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 93.3, 11.8, 49.3, 21.4, 4.1, 49.3 -0.4,1,a-vale-i1,2021-22,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 93.0, 12.3, 49.5, 21.0, 4.9, 18.3 0.9200000000000003,1,a-vale-i1,2021-22,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 93.9, 10.7, 43.6, 17.7, 3.6, 14.5 +-10.4,1,a-vale-i1,2021-22,Greenfield-Greenfield Middle,01140305, 88.2, 19.7, 71.0, 46.0, 17.5, 52.2 -11.559999999999999,1,a-vale-i1,2021-22,Greenfield-Greenfield High,01140505, 86.9, 22.0, 70.4, 48.9, 21.5, 58.9 -11.64,1,a-vale-i1,2021-22,Greenfield-Newton School,01140035, 88.0, 20.9, 77.4, 49.1, 16.5, 46.7 --10.4,1,a-vale-i1,2021-22,Greenfield-Greenfield Middle,01140305, 88.2, 19.7, 71.0, 46.0, 17.5, 52.2 -3.5599999999999996,1,a-vale-i1,2021-22,Greenfield-Discovery School at Four Corners,01140025, 92.0, 14.2, 64.9, 28.9, 3.3, 37.2 -10.6,1,a-vale-i1,2021-22,Greenfield-Federal Street School,01140010, 88.7, 19.3, 69.0, 46.5, 17.8, 64.3 -12.0,1,a-vale-i1,2021-22,Greenfield-The Academy of Early Learning at North Parish,01140005, 88.6, 17.3, 67.7, 50.0, 14.6, 67.7 -3.44,3.44,a-vale-i1,2021-22,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 94.8, 9.3, 35.4, 11.4, 1.4, 12.5 -3.12,3.12,a-vale-i1,2021-22,Groton-Dunstable-Florence Roche School,06730010, 94.3, 10.1, 44.4, 12.2, 1.1, 18.4 3.6,3.6,a-vale-i1,2021-22,Groton-Dunstable-Swallow/Union School,06730005, 94.6, 9.4, 40.3, 11.0, 1.3, 21.1 -8.0,5,a-vale-i1,2021-22,Groton-Dunstable-Boutwell School,06730001, 99.9, 0.1, 0.0, 0.0, 0.0, 0.0 +3.12,3.12,a-vale-i1,2021-22,Groton-Dunstable-Florence Roche School,06730010, 94.3, 10.1, 44.4, 12.2, 1.1, 18.4 +3.44,3.44,a-vale-i1,2021-22,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 94.8, 9.3, 35.4, 11.4, 1.4, 12.5 2.8,2.8,a-vale-i1,2021-22,Groton-Dunstable-Groton Dunstable Regional,06730505, 94.4, 9.9, 39.5, 13.0, 2.3, 17.1 -0.8799999999999997,1,a-vale-i1,2021-22,Hadley-Hadley Elementary,01170015, 93.6, 11.3, 49.8, 17.8, 2.5, 2.5 +8.0,5,a-vale-i1,2021-22,Groton-Dunstable-Boutwell School,06730001, 99.9, 0.1, 0.0, 0.0, 0.0, 0.0 3.2,3.2,a-vale-i1,2021-22,Hadley-Hopkins Academy,01170505, 94.7, 9.3, 37.8, 12.0, 3.3, 4.6 +0.8799999999999997,1,a-vale-i1,2021-22,Hadley-Hadley Elementary,01170015, 93.6, 11.3, 49.8, 17.8, 2.5, 2.5 1.1599999999999995,1.16,a-vale-i1,2021-22,Halifax-Halifax Elementary,01180005, 93.7, 11.3, 54.7, 17.1, 1.0, 33.9 3.3600000000000003,3.36,a-vale-i1,2021-22,Hamilton-Wenham-Bessie Buker Elementary,06750007, 94.3, 10.2, 45.4, 11.6, 0.4, 9.2 3.2399999999999998,3.24,a-vale-i1,2021-22,Hamilton-Wenham-Cutler School,06750010, 94.6, 9.7, 43.1, 11.9, 0.0, 5.9 +4.5200000000000005,4.52,a-vale-i1,2021-22,Hamilton-Wenham-Miles River Middle,06750310, 94.6, 9.7, 40.5, 8.7, 1.3, 9.5 2.44,2.44,a-vale-i1,2021-22,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 94.0, 10.4, 38.1, 13.9, 4.4, 13.5 3.96,3.96,a-vale-i1,2021-22,Hamilton-Wenham-Winthrop School,06750015, 94.6, 9.4, 44.0, 10.1, 0.6, 3.8 -4.5200000000000005,4.52,a-vale-i1,2021-22,Hamilton-Wenham-Miles River Middle,06750310, 94.6, 9.7, 40.5, 8.7, 1.3, 9.5 -0.6400000000000006,1,a-vale-i1,2021-22,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 92.7, 12.8, 46.5, 21.6, 5.5, 7.2 -2.12,1,a-vale-i1,2021-22,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 92.0, 14.0, 54.3, 25.3, 7.1, 19.8 --1.4,1,a-vale-i1,2021-22,Hampden-Wilbraham-Minnechaug Regional High,06800505, 92.7, 12.9, 48.0, 23.5, 6.4, 44.6 1.6799999999999997,1.68,a-vale-i1,2021-22,Hampden-Wilbraham-Wilbraham Middle,06800310, 94.0, 10.6, 41.4, 15.8, 2.7, 0.3 +-1.4,1,a-vale-i1,2021-22,Hampden-Wilbraham-Minnechaug Regional High,06800505, 92.7, 12.9, 48.0, 23.5, 6.4, 44.6 2.0,2.0,a-vale-i1,2021-22,Hampden-Wilbraham-Stony Hill School,06800050, 94.0, 10.5, 46.8, 15.0, 1.0, 46.5 4.4,4.4,a-vale-i1,2021-22,Hampden-Wilbraham-Soule Road,06800030, 94.9, 9.1, 40.8, 9.0, 0.6, 38.6 -0.0,1,a-vale-i1,2021-22,Hampden-Wilbraham-Green Meadows Elementary,06800005, 93.4, 11.5, 54.4, 20.0, 0.6, 53.0 -2.3200000000000003,1,a-vale-i1,2021-22,Hampden-Wilbraham-Mile Tree Elementary,06800025, 91.8, 14.3, 64.2, 25.8, 4.9, 63.9 +0.0,1,a-vale-i1,2021-22,Hampden-Wilbraham-Green Meadows Elementary,06800005, 93.4, 11.5, 54.4, 20.0, 0.6, 53.0 -1.5200000000000002,1,a-vale-i1,2021-22,Hampshire-Hampshire Regional High,06830505, 93.0, 12.4, 52.5, 23.8, 4.8, 0.0 -3.5200000000000005,1,a-vale-i1,2021-22,Hancock-Hancock Elementary,01210005, 93.4, 11.3, 52.5, 28.8, 3.4, 0.0 -0.24000000000000057,1,a-vale-i1,2021-22,Hanover-Hanover High,01220505, 93.0, 12.6, 57.0, 19.4, 2.8, 22.5 +1.7600000000000002,1.76,a-vale-i1,2021-22,Hanover-Cedar Elementary,01220004, 93.3, 11.9, 58.6, 15.6, 0.8, 27.0 3.96,3.96,a-vale-i1,2021-22,Hanover-Center Elementary,01220005, 94.2, 10.5, 48.3, 10.1, 0.8, 17.7 3.7600000000000002,3.76,a-vale-i1,2021-22,Hanover-Hanover Middle,01220305, 94.1, 10.7, 49.8, 10.6, 1.9, 27.4 -1.7600000000000002,1.76,a-vale-i1,2021-22,Hanover-Cedar Elementary,01220004, 93.3, 11.9, 58.6, 15.6, 0.8, 27.0 +0.24000000000000057,1,a-vale-i1,2021-22,Hanover-Hanover High,01220505, 93.0, 12.6, 57.0, 19.4, 2.8, 22.5 4.4399999999999995,4.44,a-vale-i1,2021-22,Harvard-Hildreth Elementary School,01250005, 95.7, 7.5, 27.1, 8.9, 1.5, 1.5 1.2,1.2,a-vale-i1,2021-22,Harvard-Bromfield,01250505, 94.0, 10.7, 42.0, 17.0, 2.4, 3.9 -0.04000000000000057,1,a-vale-i1,2021-22,Hatfield-Hatfield Elementary,01270005, 93.2, 12.0, 52.5, 20.1, 2.7, 0.0 0.4799999999999997,1,a-vale-i1,2021-22,Hatfield-Smith Academy,01270505, 93.7, 10.9, 47.7, 18.8, 3.4, 0.0 --12.36,1,a-vale-i1,2021-22,Haverhill-Haverhill High,01280505, 85.0, 25.5, 71.4, 50.9, 25.8, 61.0 +2.2,2.2,a-vale-i1,2021-22,Haverhill-Moody,01280045, 94.1, 9.1, 39.5, 14.5, 0.0, 25.0 +-8.559999999999999,1,a-vale-i1,2021-22,Haverhill-Tilton Upper Middle School,01280105, 89.7, 18.1, 74.1, 41.4, 11.1, 51.9 +-8.6,1,a-vale-i1,2021-22,Haverhill-Consentino Middle School,01280100, 89.6, 17.9, 64.6, 41.5, 12.0, 47.2 -32.0,1,a-vale-i1,2021-22,Haverhill-Crowell,01280515, 50.2, 72.8, 100.0, 100.0, 95.5, 100.0 -11.48,1,a-vale-i1,2021-22,Haverhill-Moody Preschool Extension,01280001, 88.2, 16.4, 62.8, 48.7, 19.5, 60.2 -11.4,1,a-vale-i1,2021-22,Haverhill-Bradford Elementary,01280008, 88.5, 19.6, 71.7, 48.5, 14.4, 54.3 -7.080000000000001,1,a-vale-i1,2021-22,Haverhill-Golden Hill,01280026, 91.1, 15.2, 66.5, 37.7, 5.6, 43.5 -3.2400000000000007,1,a-vale-i1,2021-22,Haverhill-Caleb Dustin Hunking School,01280030, 91.9, 14.2, 59.5, 28.1, 5.3, 38.6 -22.360000000000003,1,a-vale-i1,2021-22,Haverhill-Greenleaf Academy,01280033, 75.6, 37.8, 82.8, 75.9, 48.3, 69.0 -2.2,2.2,a-vale-i1,2021-22,Haverhill-Moody,01280045, 94.1, 9.1, 39.5, 14.5, 0.0, 25.0 +-12.36,1,a-vale-i1,2021-22,Haverhill-Haverhill High,01280505, 85.0, 25.5, 71.4, 50.9, 25.8, 61.0 -8.040000000000001,1,a-vale-i1,2021-22,Haverhill-Dr Paul Nettle,01280050, 90.1, 16.9, 67.1, 40.1, 9.3, 46.6 -7.919999999999999,1,a-vale-i1,2021-22,Haverhill-Pentucket Lake Elementary,01280054, 90.1, 17.1, 72.4, 39.8, 8.8, 49.8 -5.840000000000001,1,a-vale-i1,2021-22,Haverhill-Silver Hill Elementary School,01280067, 90.8, 15.6, 65.6, 34.6, 9.1, 44.2 @@ -707,161 +709,142 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -8.88,1,a-vale-i1,2021-22,Haverhill-Tilton,01280075, 90.8, 15.7, 67.2, 42.2, 8.8, 44.7 -7.4,1,a-vale-i1,2021-22,Haverhill-Walnut Square,01280080, 90.9, 15.6, 63.9, 38.5, 4.9, 42.6 -6.0,1,a-vale-i1,2021-22,Haverhill-John G Whittier,01280085, 90.7, 16.0, 65.6, 35.0, 8.5, 39.8 --8.6,1,a-vale-i1,2021-22,Haverhill-Consentino Middle School,01280100, 89.6, 17.9, 64.6, 41.5, 12.0, 47.2 --8.559999999999999,1,a-vale-i1,2021-22,Haverhill-Tilton Upper Middle School,01280105, 89.7, 18.1, 74.1, 41.4, 11.1, 51.9 0.4799999999999997,1,a-vale-i1,2021-22,Hawlemont-Hawlemont Regional,06850005, 92.2, 13.0, 64.1, 18.8, 4.7, 32.8 -15.680000000000001,1,a-vale-i1,2021-22,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 87.3, 19.1, 74.5, 59.2, 23.6, 19.7 -5.119999999999999,1,a-vale-i1,2021-22,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 92.0, 13.5, 61.6, 32.8, 3.4, 28.8 4.16,4.16,a-vale-i1,2021-22,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 94.9, 9.2, 38.5, 9.6, 0.5, 2.3 -2.72,2.72,a-vale-i1,2021-22,Hingham-Hingham High,01310505, 94.3, 10.1, 38.3, 13.2, 2.2, 14.3 -3.7600000000000002,3.76,a-vale-i1,2021-22,Hingham-South Elementary,01310020, 94.8, 9.4, 42.0, 10.6, 0.2, 0.2 -4.2,4.2,a-vale-i1,2021-22,Hingham-Plymouth River,01310019, 94.5, 9.8, 45.8, 9.5, 0.8, 6.9 -3.8,3.8,a-vale-i1,2021-22,Hingham-Wm L Foster Elementary,01310010, 94.4, 9.9, 45.9, 10.5, 0.5, 5.2 0.8799999999999997,1,a-vale-i1,2021-22,Hingham-East Elementary School,01310005, 92.6, 12.5, 50.1, 17.8, 5.4, 15.6 +3.8,3.8,a-vale-i1,2021-22,Hingham-Wm L Foster Elementary,01310010, 94.4, 9.9, 45.9, 10.5, 0.5, 5.2 +4.2,4.2,a-vale-i1,2021-22,Hingham-Plymouth River,01310019, 94.5, 9.8, 45.8, 9.5, 0.8, 6.9 +3.7600000000000002,3.76,a-vale-i1,2021-22,Hingham-South Elementary,01310020, 94.8, 9.4, 42.0, 10.6, 0.2, 0.2 1.8399999999999999,1.84,a-vale-i1,2021-22,Hingham-Hingham Middle School,01310410, 94.0, 10.6, 40.6, 15.4, 2.7, 27.6 -0.24000000000000057,1,a-vale-i1,2021-22,Holbrook-Holbrook Middle High School,01330505, 93.3, 11.6, 47.1, 19.4, 4.7, 19.0 +2.72,2.72,a-vale-i1,2021-22,Hingham-Hingham High,01310505, 94.3, 10.1, 38.3, 13.2, 2.2, 14.3 -1.4799999999999998,1,a-vale-i1,2021-22,Holbrook-John F Kennedy,01330018, 92.9, 12.2, 57.6, 23.7, 2.6, 28.9 +0.24000000000000057,1,a-vale-i1,2021-22,Holbrook-Holbrook Middle High School,01330505, 93.3, 11.6, 47.1, 19.4, 4.7, 19.0 -0.9599999999999994,1,a-vale-i1,2021-22,Holland-Holland Elementary,01350005, 93.2, 11.5, 53.5, 22.4, 1.6, 53.5 -0.15999999999999942,1,a-vale-i1,2021-22,Holliston-Placentino Elementary,01360010, 93.0, 12.5, 57.0, 19.6, 2.3, 0.0 --0.04000000000000057,1,a-vale-i1,2021-22,Holliston-Holliston High,01360505, 92.3, 13.4, 52.6, 20.1, 5.8, 9.0 -3.0,3.0,a-vale-i1,2021-22,Holliston-Robert H. Adams Middle School,01360305, 94.4, 9.9, 39.2, 12.5, 1.9, 0.0 3.6,3.6,a-vale-i1,2021-22,Holliston-Miller School,01360007, 94.4, 9.9, 43.5, 11.0, 0.8, 0.0 +0.15999999999999942,1,a-vale-i1,2021-22,Holliston-Placentino Elementary,01360010, 93.0, 12.5, 57.0, 19.6, 2.3, 0.0 +3.0,3.0,a-vale-i1,2021-22,Holliston-Robert H. Adams Middle School,01360305, 94.4, 9.9, 39.2, 12.5, 1.9, 0.0 +-0.04000000000000057,1,a-vale-i1,2021-22,Holliston-Holliston High,01360505, 92.3, 13.4, 52.6, 20.1, 5.8, 9.0 +-19.880000000000003,1,a-vale-i1,2021-22,Holyoke-William R. Peck School,01370030, 83.0, 28.6, 86.4, 69.7, 31.6, 73.2 +-15.24,1,a-vale-i1,2021-22,Holyoke-Kelly Elementary,01370040, 86.3, 22.7, 81.6, 58.1, 20.0, 60.3 +-12.319999999999999,1,a-vale-i1,2021-22,Holyoke-E N White Elementary,01370045, 88.9, 19.0, 73.4, 50.8, 12.1, 45.9 +-10.16,1,a-vale-i1,2021-22,Holyoke-Lt Clayre Sullivan Elementary,01370055, 88.3, 20.2, 73.9, 45.4, 16.1, 48.4 +-12.719999999999999,1,a-vale-i1,2021-22,Holyoke-Maurice A Donahue Elementary,01370060, 88.3, 19.7, 75.5, 51.8, 13.3, 52.5 +-17.96,1,a-vale-i1,2021-22,Holyoke-H.B. Lawrence School,01370070, 84.5, 24.1, 78.4, 64.9, 30.3, 51.9 +-20.080000000000002,1,a-vale-i1,2021-22,Holyoke-Veritas Prep Holyoke,01370075, 82.1, 30.0, 85.2, 70.2, 32.3, 76.7 +-14.959999999999999,1,a-vale-i1,2021-22,Holyoke-Holyoke STEM Academy,01370320, 85.1, 25.1, 82.4, 57.4, 23.5, 57.4 +-13.52,1,a-vale-i1,2021-22,Holyoke-Holyoke High,01370505, 83.0, 28.2, 77.2, 53.8, 24.3, 55.4 -8.84,1,a-vale-i1,2021-22,Holyoke-Joseph Metcalf School,01370003, 90.3, 16.5, 67.7, 42.1, 8.4, 38.3 -8.959999999999999,1,a-vale-i1,2021-22,Holyoke-Lt Elmer J McMahon Elementary,01370015, 90.0, 16.8, 70.3, 42.4, 8.6, 42.4 --14.959999999999999,1,a-vale-i1,2021-22,Holyoke-Holyoke STEM Academy,01370320, 85.1, 25.1, 82.4, 57.4, 23.5, 57.4 --17.96,1,a-vale-i1,2021-22,Holyoke-H.B. Lawrence School,01370070, 84.5, 24.1, 78.4, 64.9, 30.3, 51.9 --13.52,1,a-vale-i1,2021-22,Holyoke-Holyoke High,01370505, 83.0, 28.2, 77.2, 53.8, 24.3, 55.4 --20.080000000000002,1,a-vale-i1,2021-22,Holyoke-Veritas Prep Holyoke,01370075, 82.1, 30.0, 85.2, 70.2, 32.3, 76.7 -16.16,1,a-vale-i1,2021-22,Holyoke-Morgan Full Service Community School,01370025, 85.2, 23.7, 77.8, 60.4, 25.3, 58.5 --12.719999999999999,1,a-vale-i1,2021-22,Holyoke-Maurice A Donahue Elementary,01370060, 88.3, 19.7, 75.5, 51.8, 13.3, 52.5 --10.16,1,a-vale-i1,2021-22,Holyoke-Lt Clayre Sullivan Elementary,01370055, 88.3, 20.2, 73.9, 45.4, 16.1, 48.4 --12.319999999999999,1,a-vale-i1,2021-22,Holyoke-E N White Elementary,01370045, 88.9, 19.0, 73.4, 50.8, 12.1, 45.9 --15.24,1,a-vale-i1,2021-22,Holyoke-Kelly Elementary,01370040, 86.3, 22.7, 81.6, 58.1, 20.0, 60.3 --19.880000000000003,1,a-vale-i1,2021-22,Holyoke-William R. Peck School,01370030, 83.0, 28.6, 86.4, 69.7, 31.6, 73.2 -6.4,1,a-vale-i1,2021-22,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 90.7, 16.0, 66.5, 36.0, 9.0, 21.6 --12.8,1,a-vale-i1,2021-22,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 86.7, 23.1, 77.3, 52.0, 16.5, 3.4 -12.64,1,a-vale-i1,2021-22,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 88.2, 20.3, 76.7, 51.6, 13.6, 29.3 +-12.8,1,a-vale-i1,2021-22,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 86.7, 23.1, 77.3, 52.0, 16.5, 3.4 -8.719999999999999,1,a-vale-i1,2021-22,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.2, 17.8, 67.0, 41.8, 14.1, 0.0 1.1599999999999995,1.16,a-vale-i1,2021-22,Hopedale-Hopedale Jr Sr High,01380505, 93.3, 11.8, 44.9, 17.1, 4.8, 22.5 --1.6799999999999997,1,a-vale-i1,2021-22,Hopedale-Memorial,01380010, 92.9, 12.5, 58.0, 24.2, 2.2, 13.8 2.7600000000000002,2.76,a-vale-i1,2021-22,Hopedale-Park Street School,01380003, 94.3, 10.0, 40.2, 13.1, 0.9, 40.2 --10.84,1,a-vale-i1,2021-22,Hopkinton-Hopkinton Pre-School,01390003, 88.1, 17.5, 71.6, 47.1, 16.7, 28.4 +-1.6799999999999997,1,a-vale-i1,2021-22,Hopedale-Memorial,01380010, 92.9, 12.5, 58.0, 24.2, 2.2, 13.8 3.12,3.12,a-vale-i1,2021-22,Hopkinton-Hopkinton Middle School,01390305, 94.7, 9.3, 37.8, 12.2, 2.0, 6.5 0.6799999999999997,1,a-vale-i1,2021-22,Hopkinton-Hopkinton High,01390505, 93.4, 11.7, 48.8, 18.3, 3.5, 23.7 0.6,1,a-vale-i1,2021-22,Hopkinton-Elmwood,01390010, 93.8, 11.1, 46.8, 18.5, 2.2, 9.2 -3.9200000000000004,3.92,a-vale-i1,2021-22,Hopkinton-Hopkins Elementary School,01390015, 94.7, 9.4, 42.5, 10.2, 0.3, 10.7 -1.3200000000000003,1,a-vale-i1,2021-22,Hopkinton-Marathon Elementary School,01390005, 92.9, 12.4, 55.7, 23.3, 3.8, 5.7 +-10.84,1,a-vale-i1,2021-22,Hopkinton-Hopkinton Pre-School,01390003, 88.1, 17.5, 71.6, 47.1, 16.7, 28.4 +3.9200000000000004,3.92,a-vale-i1,2021-22,Hopkinton-Hopkins Elementary School,01390015, 94.7, 9.4, 42.5, 10.2, 0.3, 10.7 +-4.5200000000000005,1,a-vale-i1,2021-22,Hudson-Mulready Elementary,01410007, 92.3, 13.3, 58.1, 31.3, 2.8, 43.1 +-4.76,1,a-vale-i1,2021-22,Hudson-Hudson High,01410505, 90.9, 15.6, 54.0, 31.9, 9.9, 13.9 +-1.0799999999999996,1,a-vale-i1,2021-22,Hudson-David J. Quinn Middle School,01410410, 93.0, 12.3, 50.4, 22.7, 4.4, 33.3 0.8799999999999997,1,a-vale-i1,2021-22,Hudson-Forest Avenue Elementary,01410015, 93.6, 11.2, 51.2, 17.8, 2.1, 18.1 -2.0400000000000005,1,a-vale-i1,2021-22,Hudson-C A Farley,01410030, 93.0, 12.1, 54.9, 25.1, 3.4, 29.7 --1.0799999999999996,1,a-vale-i1,2021-22,Hudson-David J. Quinn Middle School,01410410, 93.0, 12.3, 50.4, 22.7, 4.4, 33.3 --4.76,1,a-vale-i1,2021-22,Hudson-Hudson High,01410505, 90.9, 15.6, 54.0, 31.9, 9.9, 13.9 --4.5200000000000005,1,a-vale-i1,2021-22,Hudson-Mulready Elementary,01410007, 92.3, 13.3, 58.1, 31.3, 2.8, 43.1 --1.1599999999999995,1,a-vale-i1,2021-22,Hull-Hull High,01420505, 92.6, 13.1, 48.2, 22.9, 4.8, 27.7 0.04000000000000057,1,a-vale-i1,2021-22,Hull-Memorial Middle,01420305, 93.0, 12.3, 59.1, 19.9, 3.3, 22.7 -7.119999999999999,1,a-vale-i1,2021-22,Hull-Lillian M Jacobs,01420015, 91.0, 15.4, 68.5, 37.8, 5.8, 32.0 +-1.1599999999999995,1,a-vale-i1,2021-22,Hull-Hull High,01420505, 92.6, 13.1, 48.2, 22.9, 4.8, 27.7 -2.28,1,a-vale-i1,2021-22,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 92.0, 14.1, 58.1, 25.7, 4.4, 13.5 -3.72,3.72,a-vale-i1,2021-22,Ipswich-Winthrop,01440015, 94.4, 9.7, 44.9, 10.7, 0.2, 0.5 4.08,4.08,a-vale-i1,2021-22,Ipswich-Ipswich High,01440505, 95.1, 8.6, 28.8, 9.8, 2.3, 1.9 -3.6,3.6,a-vale-i1,2021-22,Ipswich-Paul F Doyon Memorial,01440007, 94.6, 9.5, 42.4, 11.0, 0.8, 0.0 3.5200000000000005,3.52,a-vale-i1,2021-22,Ipswich-Ipswich Middle School,01440305, 94.1, 10.5, 45.5, 11.2, 2.2, 22.1 +3.6,3.6,a-vale-i1,2021-22,Ipswich-Paul F Doyon Memorial,01440007, 94.6, 9.5, 42.4, 11.0, 0.8, 0.0 +3.72,3.72,a-vale-i1,2021-22,Ipswich-Winthrop,01440015, 94.4, 9.7, 44.9, 10.7, 0.2, 0.5 -8.64,1,a-vale-i1,2021-22,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 90.2, 16.9, 64.3, 41.6, 10.8, 50.2 -1.1599999999999995,1,a-vale-i1,2021-22,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 92.2, 14.1, 56.6, 22.9, 5.6, 20.9 --0.2,1,a-vale-i1,2021-22,King Philip-King Philip Middle School,06900510, 92.5, 13.4, 47.9, 20.5, 4.8, 26.4 -1.2799999999999998,1,a-vale-i1,2021-22,King Philip-King Philip Regional High,06900505, 91.7, 14.6, 59.5, 23.2, 6.1, 33.9 +-0.2,1,a-vale-i1,2021-22,King Philip-King Philip Middle School,06900510, 92.5, 13.4, 47.9, 20.5, 4.8, 26.4 -0.5200000000000002,1,a-vale-i1,2021-22,Kingston-Kingston Elementary,01450005, 92.9, 12.4, 61.2, 21.3, 2.1, 39.0 0.6799999999999997,1,a-vale-i1,2021-22,Kingston-Kingston Intermediate,01450020, 93.5, 11.6, 55.7, 18.3, 1.2, 0.0 -9.319999999999999,1,a-vale-i1,2021-22,Lawrence-Lawrence High School,01490515, 85.1, 24.8, 60.3, 43.3, 24.4, 27.3 --8.919999999999998,1,a-vale-i1,2021-22,Lawrence-UP Academy Oliver Middle School,01490049, 88.6, 19.3, 73.3, 42.3, 13.9, 0.0 --9.8,1,a-vale-i1,2021-22,Lawrence-UP Academy Leonard Middle School,01490090, 87.4, 22.0, 69.8, 44.5, 16.9, 0.0 --8.280000000000001,1,a-vale-i1,2021-22,Lawrence-Spark Academy,01490085, 88.9, 19.4, 68.5, 40.7, 13.0, 0.0 --6.719999999999999,1,a-vale-i1,2021-22,Lawrence-Emily G Wetherbee,01490080, 90.8, 15.8, 67.0, 36.8, 6.1, 0.0 --5.880000000000001,1,a-vale-i1,2021-22,Lawrence-John K Tarbox,01490075, 90.4, 17.0, 68.4, 34.7, 10.2, 0.0 --9.919999999999998,1,a-vale-i1,2021-22,Lawrence-Robert Frost,01490018, 89.4, 18.1, 76.6, 44.8, 7.7, 0.0 --15.040000000000001,1,a-vale-i1,2021-22,Lawrence-James F Hennessey,01490020, 86.5, 22.3, 77.9, 57.6, 20.3, 0.0 --18.839999999999996,1,a-vale-i1,2021-22,Lawrence-RISE Academy,01490615, 80.0, 31.6, 75.3, 67.1, 42.5, 0.0 --14.8,1,a-vale-i1,2021-22,Lawrence-School for Exceptional Studies,01490537, 83.6, 27.9, 73.1, 57.0, 26.9, 0.0 +-16.36,1,a-vale-i1,2021-22,Lawrence-Lawlor Early Childhood Center,01490002, 86.3, 21.6, 83.2, 60.9, 20.1, 0.0 -8.48,1,a-vale-i1,2021-22,Lawrence-High School Learning Center,01490536, 81.3, 30.8, 46.0, 41.2, 35.4, 1.3 --11.440000000000001,1,a-vale-i1,2021-22,Lawrence-South Lawrence East Elementary School,01490004, 88.5, 19.8, 76.2, 48.6, 12.3, 0.0 +-14.8,1,a-vale-i1,2021-22,Lawrence-School for Exceptional Studies,01490537, 83.6, 27.9, 73.1, 57.0, 26.9, 0.0 +-18.839999999999996,1,a-vale-i1,2021-22,Lawrence-RISE Academy,01490615, 80.0, 31.6, 75.3, 67.1, 42.5, 0.0 -17.2,1,a-vale-i1,2021-22,Lawrence-John Breen School,01490003, 85.5, 21.7, 84.5, 63.0, 24.0, 0.0 +-11.440000000000001,1,a-vale-i1,2021-22,Lawrence-South Lawrence East Elementary School,01490004, 88.5, 19.8, 76.2, 48.6, 12.3, 0.0 -9.0,1,a-vale-i1,2021-22,Lawrence-Arlington Elementary,01490009, 89.5, 17.9, 71.3, 42.5, 13.6, 0.0 -17.6,1,a-vale-i1,2021-22,Lawrence-Lawrence Family Public Academy,01490011, 84.5, 24.1, 82.2, 64.0, 26.2, 0.0 -5.76,1,a-vale-i1,2021-22,Lawrence-Alexander B Bruce,01490015, 90.7, 15.8, 61.4, 34.4, 10.0, 0.0 -5.040000000000001,1,a-vale-i1,2021-22,Lawrence-Arlington Middle School,01490017, 90.6, 16.4, 57.8, 32.6, 10.9, 0.0 --1.2,1,a-vale-i1,2021-22,Lawrence-Frost Middle School,01490525, 92.6, 12.9, 49.7, 23.0, 4.3, 0.0 +-9.919999999999998,1,a-vale-i1,2021-22,Lawrence-Robert Frost,01490018, 89.4, 18.1, 76.6, 44.8, 7.7, 0.0 +-15.040000000000001,1,a-vale-i1,2021-22,Lawrence-James F Hennessey,01490020, 86.5, 22.3, 77.9, 57.6, 20.3, 0.0 -10.559999999999999,1,a-vale-i1,2021-22,Lawrence-Gerard A. Guilmette,01490022, 88.0, 20.3, 78.1, 46.4, 14.7, 0.0 -5.0,1,a-vale-i1,2021-22,Lawrence-Guilmette Middle School,01490025, 90.9, 15.6, 64.5, 32.5, 7.1, 0.0 -1.6400000000000006,1,a-vale-i1,2021-22,Lawrence-Parthum Middle School,01490027, 92.6, 12.7, 55.9, 24.1, 3.9, 0.0 -10.319999999999999,1,a-vale-i1,2021-22,Lawrence-Francis M Leahy,01490040, 88.5, 19.6, 70.7, 45.8, 15.5, 0.0 -11.36,1,a-vale-i1,2021-22,Lawrence-Oliver Partnership School,01490048, 88.5, 19.7, 76.8, 48.4, 12.8, 0.0 --16.36,1,a-vale-i1,2021-22,Lawrence-Lawlor Early Childhood Center,01490002, 86.3, 21.6, 83.2, 60.9, 20.1, 0.0 --21.919999999999998,1,a-vale-i1,2021-22,Lawrence-Rollins Early Childhood Center,01490001, 82.8, 27.1, 92.2, 74.8, 34.3, 0.0 +-8.919999999999998,1,a-vale-i1,2021-22,Lawrence-UP Academy Oliver Middle School,01490049, 88.6, 19.3, 73.3, 42.3, 13.9, 0.0 -9.2,1,a-vale-i1,2021-22,Lawrence-Edward F. Parthum,01490053, 89.5, 18.4, 75.6, 43.0, 10.0, 0.0 +-5.880000000000001,1,a-vale-i1,2021-22,Lawrence-John K Tarbox,01490075, 90.4, 17.0, 68.4, 34.7, 10.2, 0.0 +-6.719999999999999,1,a-vale-i1,2021-22,Lawrence-Emily G Wetherbee,01490080, 90.8, 15.8, 67.0, 36.8, 6.1, 0.0 +-8.280000000000001,1,a-vale-i1,2021-22,Lawrence-Spark Academy,01490085, 88.9, 19.4, 68.5, 40.7, 13.0, 0.0 +-9.8,1,a-vale-i1,2021-22,Lawrence-UP Academy Leonard Middle School,01490090, 87.4, 22.0, 69.8, 44.5, 16.9, 0.0 +-1.2,1,a-vale-i1,2021-22,Lawrence-Frost Middle School,01490525, 92.6, 12.9, 49.7, 23.0, 4.3, 0.0 +-21.919999999999998,1,a-vale-i1,2021-22,Lawrence-Rollins Early Childhood Center,01490001, 82.8, 27.1, 92.2, 74.8, 34.3, 0.0 5.04,5,a-vale-i1,2021-22,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 95.4, 8.2, 34.1, 7.4, 0.2, 6.0 -4.4799999999999995,1,a-vale-i1,2021-22,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 92.0, 14.0, 60.9, 31.2, 6.1, 37.8 -2.2400000000000007,1,a-vale-i1,2021-22,Lee-Lee Middle/High School,01500505, 91.8, 14.3, 52.7, 25.6, 5.4, 15.7 -0.9599999999999994,1,a-vale-i1,2021-22,Lee-Lee Elementary,01500025, 93.1, 12.0, 53.9, 22.4, 2.3, 1.5 0.0,1,a-vale-i1,2021-22,Leicester-Leicester Integrated Preschool,01510001, 93.1, 10.7, 45.5, 20.0, 3.6, 0.0 +-4.8,1,a-vale-i1,2021-22,Leicester-Leicester High,01510505, 90.8, 15.9, 65.3, 32.0, 9.4, 47.0 -4.840000000000001,1,a-vale-i1,2021-22,Leicester-Leicester Elementary,01510005, 91.6, 14.5, 67.1, 32.1, 4.2, 44.1 -4.840000000000001,1,a-vale-i1,2021-22,Leicester-Leicester Middle,01510015, 91.4, 15.1, 65.1, 32.1, 5.7, 0.7 --4.8,1,a-vale-i1,2021-22,Leicester-Leicester High,01510505, 90.8, 15.9, 65.3, 32.0, 9.4, 47.0 --0.24000000000000057,1,a-vale-i1,2021-22,Lenox-Morris,01520015, 93.3, 11.9, 56.6, 20.6, 1.6, 0.0 1.7200000000000002,1.72,a-vale-i1,2021-22,Lenox-Lenox Memorial High,01520505, 94.6, 9.5, 32.9, 15.7, 2.1, 2.8 +-0.24000000000000057,1,a-vale-i1,2021-22,Lenox-Morris,01520015, 93.3, 11.9, 56.6, 20.6, 1.6, 0.0 +-4.44,1,a-vale-i1,2021-22,Leominster-Northwest,01530030, 91.4, 15.0, 64.2, 31.1, 7.1, 52.3 +-2.4400000000000004,1,a-vale-i1,2021-22,Leominster-Johnny Appleseed,01530025, 92.5, 13.4, 59.1, 26.1, 4.2, 58.7 -3.1599999999999993,1,a-vale-i1,2021-22,Leominster-Frances Drake School,01530010, 92.0, 13.8, 61.4, 27.9, 4.7, 50.8 2.16,2.16,a-vale-i1,2021-22,Leominster-Fall Brook,01530007, 93.8, 11.0, 54.2, 14.6, 0.7, 42.8 --2.4400000000000004,1,a-vale-i1,2021-22,Leominster-Johnny Appleseed,01530025, 92.5, 13.4, 59.1, 26.1, 4.2, 58.7 --4.44,1,a-vale-i1,2021-22,Leominster-Northwest,01530030, 91.4, 15.0, 64.2, 31.1, 7.1, 52.3 1.3200000000000003,1.32,a-vale-i1,2021-22,Leominster-Lincoln School,01530005, 92.8, 11.4, 55.6, 16.7, 2.8, 55.6 -11.64,1,a-vale-i1,2021-22,Leominster-Bennett,01530003, 88.8, 14.1, 63.2, 49.1, 12.3, 0.0 --2.0400000000000005,1,a-vale-i1,2021-22,Leominster-Samoset School,01530045, 92.4, 13.5, 59.1, 25.1, 4.9, 41.7 -7.3199999999999985,1,a-vale-i1,2021-22,Leominster-Priest Street,01530040, 90.3, 16.5, 71.6, 38.3, 7.4, 58.6 --5.159999999999999,1,a-vale-i1,2021-22,Leominster-Sky View Middle School,01530320, 91.4, 15.2, 60.6, 32.9, 6.4, 49.6 -4.08,1,a-vale-i1,2021-22,Leominster-Center For Technical Education Innovation,01530605, 91.8, 14.7, 61.9, 30.2, 6.3, 41.3 -15.24,1,a-vale-i1,2021-22,Leominster-Leominster Center for Excellence,01530515, 86.1, 23.0, 76.7, 58.1, 27.9, 67.4 -7.080000000000001,1,a-vale-i1,2021-22,Leominster-Leominster High School,01530505, 89.8, 17.7, 65.5, 37.7, 12.6, 47.9 +-5.159999999999999,1,a-vale-i1,2021-22,Leominster-Sky View Middle School,01530320, 91.4, 15.2, 60.6, 32.9, 6.4, 49.6 +-2.0400000000000005,1,a-vale-i1,2021-22,Leominster-Samoset School,01530045, 92.4, 13.5, 59.1, 25.1, 4.9, 41.7 -0.4799999999999997,1,a-vale-i1,2021-22,Leverett-Leverett Elementary,01540005, 92.5, 13.1, 60.3, 21.2, 4.1, 6.2 -5.04,5,a-vale-i1,2021-22,Lexington-Joseph Estabrook,01550010, 95.4, 8.3, 33.5, 7.4, 0.0, 10.6 -6.0,5,a-vale-i1,2021-22,Lexington-Fiske,01550015, 96.0, 7.1, 26.7, 5.0, 0.3, 4.2 -5.2,5,a-vale-i1,2021-22,Lexington-Harrington,01550030, 95.8, 7.5, 29.8, 7.0, 0.5, 7.5 -6.0,5,a-vale-i1,2021-22,Lexington-Maria Hastings,01550035, 95.9, 7.3, 27.9, 5.0, 0.8, 6.3 -5.8,5,a-vale-i1,2021-22,Lexington-Jonas Clarke Middle,01550305, 96.8, 5.6, 17.3, 5.5, 0.4, 3.9 -4.6,4.6,a-vale-i1,2021-22,Lexington-Wm Diamond Middle,01550310, 95.6, 7.8, 28.7, 8.5, 1.6, 5.7 -4.36,4.36,a-vale-i1,2021-22,Lexington-Lexington High,01550505, 95.6, 7.8, 26.9, 9.1, 1.9, 2.0 --2.12,1,a-vale-i1,2021-22,Lexington-Lexington Children's Place,01550001, 91.8, 13.8, 50.6, 25.3, 6.0, 1.2 4.24,4.24,a-vale-i1,2021-22,Lexington-Bridge,01550006, 95.4, 7.9, 27.3, 9.4, 2.3, 6.8 5.76,5,a-vale-i1,2021-22,Lexington-Bowman,01550008, 95.9, 7.2, 27.2, 5.6, 0.4, 3.7 +5.04,5,a-vale-i1,2021-22,Lexington-Joseph Estabrook,01550010, 95.4, 8.3, 33.5, 7.4, 0.0, 10.6 +4.36,4.36,a-vale-i1,2021-22,Lexington-Lexington High,01550505, 95.6, 7.8, 26.9, 9.1, 1.9, 2.0 +5.8,5,a-vale-i1,2021-22,Lexington-Jonas Clarke Middle,01550305, 96.8, 5.6, 17.3, 5.5, 0.4, 3.9 +6.0,5,a-vale-i1,2021-22,Lexington-Maria Hastings,01550035, 95.9, 7.3, 27.9, 5.0, 0.8, 6.3 +5.2,5,a-vale-i1,2021-22,Lexington-Harrington,01550030, 95.8, 7.5, 29.8, 7.0, 0.5, 7.5 +6.0,5,a-vale-i1,2021-22,Lexington-Fiske,01550015, 96.0, 7.1, 26.7, 5.0, 0.3, 4.2 +-2.12,1,a-vale-i1,2021-22,Lexington-Lexington Children's Place,01550001, 91.8, 13.8, 50.6, 25.3, 6.0, 1.2 +4.6,4.6,a-vale-i1,2021-22,Lexington-Wm Diamond Middle,01550310, 95.6, 7.8, 28.7, 8.5, 1.6, 5.7 1.1599999999999995,1.16,a-vale-i1,2021-22,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 93.5, 10.7, 41.1, 17.1, 5.7, 38.6 --5.56,1,a-vale-i1,2021-22,Lincoln-Hanscom Primary,01570006, 91.4, 13.7, 61.3, 33.9, 6.7, 61.0 -1.1200000000000003,1.12,a-vale-i1,2021-22,Lincoln-Lincoln School,01570025, 93.7, 11.0, 51.2, 17.2, 1.1, 50.1 -1.5599999999999994,1,a-vale-i1,2021-22,Lincoln-Hanscom Middle,01570305, 93.0, 11.5, 49.4, 23.9, 3.7, 49.4 +1.1200000000000003,1.12,a-vale-i1,2021-22,Lincoln-Lincoln School,01570025, 93.7, 11.0, 51.2, 17.2, 1.1, 50.1 +-5.56,1,a-vale-i1,2021-22,Lincoln-Hanscom Primary,01570006, 91.4, 13.7, 61.3, 33.9, 6.7, 61.0 4.4,4.4,a-vale-i1,2021-22,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 95.1, 8.6, 28.4, 9.0, 1.8, 0.3 +0.8,1,a-vale-i1,2021-22,Littleton-Littleton High School,01580505, 92.6, 13.0, 40.2, 18.0, 6.0, 6.7 +0.0,1,a-vale-i1,2021-22,Littleton-Shaker Lane Elementary,01580005, 93.3, 11.7, 51.4, 20.0, 3.2, 31.3 1.4400000000000006,1.44,a-vale-i1,2021-22,Littleton-Littleton Middle School,01580305, 93.8, 11.1, 38.7, 16.4, 3.2, 2.5 1.4400000000000006,1.44,a-vale-i1,2021-22,Littleton-Russell St Elementary,01580015, 93.8, 11.0, 51.4, 16.4, 1.0, 2.1 -0.0,1,a-vale-i1,2021-22,Littleton-Shaker Lane Elementary,01580005, 93.3, 11.7, 51.4, 20.0, 3.2, 31.3 -0.8,1,a-vale-i1,2021-22,Littleton-Littleton High School,01580505, 92.6, 13.0, 40.2, 18.0, 6.0, 6.7 -4.36,4.36,a-vale-i1,2021-22,Longmeadow-Center,01590010, 95.0, 9.0, 38.5, 9.1, 0.7, 0.7 -2.3600000000000003,2.36,a-vale-i1,2021-22,Longmeadow-Blueberry Hill,01590005, 94.1, 10.5, 44.4, 14.1, 1.7, 1.0 -3.9200000000000004,3.92,a-vale-i1,2021-22,Longmeadow-Williams Middle,01590305, 95.2, 8.5, 32.8, 10.2, 0.6, 0.0 -2.56,2.56,a-vale-i1,2021-22,Longmeadow-Wolf Swamp Road,01590025, 94.1, 10.2, 45.2, 13.6, 1.2, 0.0 -3.6399999999999997,3.64,a-vale-i1,2021-22,Longmeadow-Glenbrook Middle,01590017, 94.9, 9.0, 36.8, 10.9, 1.8, 2.1 1.6,1.6,a-vale-i1,2021-22,Longmeadow-Longmeadow High,01590505, 94.3, 9.9, 38.4, 16.0, 4.3, 1.3 --25.160000000000004,1,a-vale-i1,2021-22,Lowell-Leblanc Therapeutic Day School,01600320, 61.6, 62.3, 85.4, 82.9, 70.7, 75.6 --1.0400000000000005,1,a-vale-i1,2021-22,Lowell-James S Daley Middle School,01600315, 93.4, 11.3, 46.3, 22.6, 3.8, 28.2 +2.3600000000000003,2.36,a-vale-i1,2021-22,Longmeadow-Blueberry Hill,01590005, 94.1, 10.5, 44.4, 14.1, 1.7, 1.0 +4.36,4.36,a-vale-i1,2021-22,Longmeadow-Center,01590010, 95.0, 9.0, 38.5, 9.1, 0.7, 0.7 +3.6399999999999997,3.64,a-vale-i1,2021-22,Longmeadow-Glenbrook Middle,01590017, 94.9, 9.0, 36.8, 10.9, 1.8, 2.1 +2.56,2.56,a-vale-i1,2021-22,Longmeadow-Wolf Swamp Road,01590025, 94.1, 10.2, 45.2, 13.6, 1.2, 0.0 +3.9200000000000004,3.92,a-vale-i1,2021-22,Longmeadow-Williams Middle,01590305, 95.2, 8.5, 32.8, 10.2, 0.6, 0.0 -11.24,1,a-vale-i1,2021-22,Lowell-Cardinal O'Connell Early Learning Center,01600001, 88.5, 17.2, 67.6, 48.1, 13.0, 66.7 --12.76,1,a-vale-i1,2021-22,Lowell-Henry J Robinson Middle,01600330, 88.0, 20.3, 75.1, 51.9, 14.5, 53.1 --9.88,1,a-vale-i1,2021-22,Lowell-Bartlett Community Partnership,01600090, 88.9, 17.9, 66.2, 44.7, 14.1, 47.7 --4.359999999999999,1,a-vale-i1,2021-22,Lowell-Charles W Morey,01600030, 92.0, 13.6, 58.6, 30.9, 3.8, 38.2 --4.159999999999999,1,a-vale-i1,2021-22,Lowell-Pawtucketville Memorial,01600036, 91.8, 13.8, 61.0, 30.4, 4.4, 34.0 --5.080000000000001,1,a-vale-i1,2021-22,Lowell-Peter W Reilly,01600040, 91.2, 14.9, 59.2, 32.7, 8.5, 42.4 --7.040000000000001,1,a-vale-i1,2021-22,Lowell-John J Shaughnessy,01600050, 90.2, 16.1, 64.6, 37.6, 7.9, 50.6 --9.559999999999999,1,a-vale-i1,2021-22,Lowell-Washington,01600055, 89.7, 17.2, 74.8, 43.9, 8.4, 53.8 --11.0,1,a-vale-i1,2021-22,Lowell-S Christa McAuliffe Elementary,01600075, 89.2, 17.8, 77.3, 47.5, 9.6, 54.0 --4.919999999999999,1,a-vale-i1,2021-22,Lowell-B.F. Butler Middle School,01600310, 91.5, 14.5, 58.6, 32.3, 6.9, 39.6 --7.719999999999999,1,a-vale-i1,2021-22,Lowell-James Sullivan Middle School,01600340, 90.1, 17.0, 67.2, 39.3, 10.6, 47.5 --3.2400000000000007,1,a-vale-i1,2021-22,Lowell-Dr An Wang School,01600345, 92.1, 13.7, 55.8, 28.1, 5.8, 34.8 --3.8,1,a-vale-i1,2021-22,Lowell-Kathryn P. Stoklosa Middle School,01600360, 91.8, 14.3, 57.3, 29.5, 6.4, 31.2 --8.8,1,a-vale-i1,2021-22,Lowell-Lowell High,01600505, 87.1, 21.3, 63.2, 42.0, 19.7, 48.9 --17.28,1,a-vale-i1,2021-22,Lowell-The Career Academy,01600515, 70.1, 46.4, 67.4, 63.2, 49.5, 62.1 --10.4,1,a-vale-i1,2021-22,Lowell-Dr. Janice Adie Day School,01600605, 87.7, 22.0, 70.0, 46.0, 14.0, 54.0 -6.040000000000001,1,a-vale-i1,2021-22,Lowell-Dr Gertrude Bailey,01600002, 91.2, 15.0, 65.3, 35.1, 6.5, 31.7 -7.519999999999999,1,a-vale-i1,2021-22,Lowell-Rogers STEM Academy,01600005, 89.8, 17.4, 65.2, 38.8, 11.4, 51.4 -9.080000000000002,1,a-vale-i1,2021-22,Lowell-Joseph McAvinnue,01600010, 89.9, 17.0, 69.9, 42.7, 9.6, 49.5 @@ -869,31 +852,46 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -4.12,1,a-vale-i1,2021-22,Lowell-Pyne Arts,01600018, 91.8, 13.5, 57.5, 30.3, 5.1, 34.8 -6.24,1,a-vale-i1,2021-22,Lowell-Abraham Lincoln,01600020, 91.4, 14.4, 68.3, 35.6, 3.8, 44.4 -9.24,1,a-vale-i1,2021-22,Lowell-Moody Elementary,01600027, 90.1, 16.5, 67.9, 43.1, 9.2, 44.7 +-4.359999999999999,1,a-vale-i1,2021-22,Lowell-Charles W Morey,01600030, 92.0, 13.6, 58.6, 30.9, 3.8, 38.2 +-4.159999999999999,1,a-vale-i1,2021-22,Lowell-Pawtucketville Memorial,01600036, 91.8, 13.8, 61.0, 30.4, 4.4, 34.0 +-5.080000000000001,1,a-vale-i1,2021-22,Lowell-Peter W Reilly,01600040, 91.2, 14.9, 59.2, 32.7, 8.5, 42.4 +-7.040000000000001,1,a-vale-i1,2021-22,Lowell-John J Shaughnessy,01600050, 90.2, 16.1, 64.6, 37.6, 7.9, 50.6 +-9.559999999999999,1,a-vale-i1,2021-22,Lowell-Washington,01600055, 89.7, 17.2, 74.8, 43.9, 8.4, 53.8 +-11.0,1,a-vale-i1,2021-22,Lowell-S Christa McAuliffe Elementary,01600075, 89.2, 17.8, 77.3, 47.5, 9.6, 54.0 -6.56,1,a-vale-i1,2021-22,Lowell-Charlotte M Murkland Elementary,01600080, 90.9, 15.2, 63.2, 36.4, 7.4, 47.9 -17.28,1,a-vale-i1,2021-22,Lowell-Laura Lee Therapeutic Day School,01600085, 80.8, 32.7, 68.4, 63.2, 31.6, 42.1 +-9.88,1,a-vale-i1,2021-22,Lowell-Bartlett Community Partnership,01600090, 88.9, 17.9, 66.2, 44.7, 14.1, 47.7 +-4.919999999999999,1,a-vale-i1,2021-22,Lowell-B.F. Butler Middle School,01600310, 91.5, 14.5, 58.6, 32.3, 6.9, 39.6 +-1.0400000000000005,1,a-vale-i1,2021-22,Lowell-James S Daley Middle School,01600315, 93.4, 11.3, 46.3, 22.6, 3.8, 28.2 +-25.160000000000004,1,a-vale-i1,2021-22,Lowell-Leblanc Therapeutic Day School,01600320, 61.6, 62.3, 85.4, 82.9, 70.7, 75.6 +-12.76,1,a-vale-i1,2021-22,Lowell-Henry J Robinson Middle,01600330, 88.0, 20.3, 75.1, 51.9, 14.5, 53.1 +-7.719999999999999,1,a-vale-i1,2021-22,Lowell-James Sullivan Middle School,01600340, 90.1, 17.0, 67.2, 39.3, 10.6, 47.5 +-3.2400000000000007,1,a-vale-i1,2021-22,Lowell-Dr An Wang School,01600345, 92.1, 13.7, 55.8, 28.1, 5.8, 34.8 +-3.8,1,a-vale-i1,2021-22,Lowell-Kathryn P. Stoklosa Middle School,01600360, 91.8, 14.3, 57.3, 29.5, 6.4, 31.2 +-8.8,1,a-vale-i1,2021-22,Lowell-Lowell High,01600505, 87.1, 21.3, 63.2, 42.0, 19.7, 48.9 +-17.28,1,a-vale-i1,2021-22,Lowell-The Career Academy,01600515, 70.1, 46.4, 67.4, 63.2, 49.5, 62.1 +-10.4,1,a-vale-i1,2021-22,Lowell-Dr. Janice Adie Day School,01600605, 87.7, 22.0, 70.0, 46.0, 14.0, 54.0 1.7200000000000002,1.72,a-vale-i1,2021-22,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 94.0, 10.9, 44.2, 15.7, 2.7, 16.5 -30.080000000000002,1,a-vale-i1,2021-22,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 47.0, 65.1, 96.0, 95.2, 82.5, 0.0 -4.08,1,a-vale-i1,2021-22,Ludlow-East Street Elementary School,01610010, 91.4, 14.4, 67.1, 30.2, 3.7, 42.0 -2.2,1,a-vale-i1,2021-22,Ludlow-Paul R Baird Middle,01610305, 92.4, 13.6, 58.5, 25.5, 5.6, 32.8 --1.0799999999999996,1,a-vale-i1,2021-22,Ludlow-Ludlow Senior High,01610505, 92.6, 13.1, 54.9, 22.7, 5.2, 19.9 1.2400000000000007,1.24,a-vale-i1,2021-22,Ludlow-Harris Brook Elementary School,01610665, 93.6, 11.4, 53.1, 16.9, 1.9, 29.3 +-1.0799999999999996,1,a-vale-i1,2021-22,Ludlow-Ludlow Senior High,01610505, 92.6, 13.1, 54.9, 22.7, 5.2, 19.9 +-0.8,1,a-vale-i1,2021-22,Lunenburg-Lunenburg High,01620505, 92.8, 12.5, 51.9, 22.0, 5.0, 11.4 +0.44000000000000056,1,a-vale-i1,2021-22,Lunenburg-Lunenburg Middle School,01620305, 93.7, 11.2, 47.7, 18.9, 2.2, 7.4 -0.4799999999999997,1,a-vale-i1,2021-22,Lunenburg-Lunenburg Primary School,01620010, 92.8, 12.4, 54.0, 21.2, 4.5, 1.5 1.4400000000000006,1.44,a-vale-i1,2021-22,Lunenburg-Turkey Hill Elementary School,01620025, 93.8, 10.8, 51.2, 16.4, 0.5, 2.2 -0.44000000000000056,1,a-vale-i1,2021-22,Lunenburg-Lunenburg Middle School,01620305, 93.7, 11.2, 47.7, 18.9, 2.2, 7.4 --0.8,1,a-vale-i1,2021-22,Lunenburg-Lunenburg High,01620505, 92.8, 12.5, 51.9, 22.0, 5.0, 11.4 --7.159999999999999,1,a-vale-i1,2021-22,Lynn-Capt William G Shoemaker,01630090, 90.7, 16.4, 68.8, 37.9, 9.6, 0.0 --3.7599999999999993,1,a-vale-i1,2021-22,Lynn-Sewell-Anderson,01630085, 92.3, 13.3, 60.6, 29.4, 3.8, 0.0 +-6.359999999999999,1,a-vale-i1,2021-22,Lynn-Wm P Connery,01630040, 90.8, 15.7, 60.1, 35.9, 7.4, 0.0 +-12.12,1,a-vale-i1,2021-22,Lynn-Julia F Callahan,01630030, 87.0, 22.3, 73.7, 50.3, 16.4, 0.0 +-4.5200000000000005,1,a-vale-i1,2021-22,Lynn-Robert L Ford,01630050, 91.8, 14.3, 58.2, 31.3, 7.8, 0.0 -8.080000000000002,1,a-vale-i1,2021-22,Lynn-Hood,01630055, 89.6, 17.9, 66.2, 40.2, 11.7, 0.0 -9.12,1,a-vale-i1,2021-22,Lynn-Ingalls,01630060, 90.1, 16.8, 67.7, 42.8, 10.6, 0.0 --10.959999999999999,1,a-vale-i1,2021-22,Lynn-Washington Elementary School,01630005, 87.9, 20.9, 69.1, 47.4, 15.2, 0.0 --0.8400000000000005,1,a-vale-i1,2021-22,Lynn-Aborn,01630011, 92.8, 12.3, 52.5, 22.1, 3.3, 0.0 --4.840000000000001,1,a-vale-i1,2021-22,Lynn-A Drewicz Elementary,01630016, 92.1, 13.6, 57.6, 32.1, 3.2, 0.0 --8.919999999999998,1,a-vale-i1,2021-22,Lynn-Brickett Elementary,01630020, 90.5, 16.4, 71.0, 42.3, 8.0, 0.0 --12.12,1,a-vale-i1,2021-22,Lynn-Julia F Callahan,01630030, 87.0, 22.3, 73.7, 50.3, 16.4, 0.0 --6.4,1,a-vale-i1,2021-22,Lynn-Cobbet Elementary,01630035, 90.9, 15.7, 63.0, 36.0, 9.0, 0.0 --6.359999999999999,1,a-vale-i1,2021-22,Lynn-Wm P Connery,01630040, 90.8, 15.7, 60.1, 35.9, 7.4, 0.0 --12.080000000000002,1,a-vale-i1,2021-22,Lynn-E J Harrington,01630045, 87.9, 20.3, 75.8, 50.2, 17.3, 0.0 --4.5200000000000005,1,a-vale-i1,2021-22,Lynn-Robert L Ford,01630050, 91.8, 14.3, 58.2, 31.3, 7.8, 0.0 +-2.4799999999999995,1,a-vale-i1,2021-22,Lynn-Lincoln-Thomson,01630070, 92.6, 12.5, 50.9, 26.2, 3.7, 0.0 +-1.5200000000000002,1,a-vale-i1,2021-22,Lynn-Lynn Woods,01630075, 93.0, 12.3, 55.0, 23.8, 2.5, 0.0 +-9.6,1,a-vale-i1,2021-22,Lynn-William R Fallon,01630080, 90.3, 16.2, 72.0, 44.0, 4.0, 0.0 +-3.7599999999999993,1,a-vale-i1,2021-22,Lynn-Sewell-Anderson,01630085, 92.3, 13.3, 60.6, 29.4, 3.8, 0.0 +-7.159999999999999,1,a-vale-i1,2021-22,Lynn-Capt William G Shoemaker,01630090, 90.7, 16.4, 68.8, 37.9, 9.6, 0.0 +-3.4,1,a-vale-i1,2021-22,Lynn-Edward A Sisson,01630095, 91.5, 14.8, 58.5, 28.5, 6.6, 0.0 -5.040000000000001,1,a-vale-i1,2021-22,Lynn-Tracy,01630100, 92.2, 13.6, 57.7, 32.6, 3.8, 0.0 -5.44,1,a-vale-i1,2021-22,Lynn-Thurgood Marshall Mid,01630305, 91.1, 15.4, 57.1, 33.6, 9.8, 0.0 -5.480000000000001,1,a-vale-i1,2021-22,Lynn-Breed Middle School,01630405, 91.2, 15.2, 58.2, 33.7, 8.9, 0.0 @@ -902,10 +900,12 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -17.16,1,a-vale-i1,2021-22,Lynn-Lynn English High,01630510, 80.8, 32.2, 79.1, 62.9, 37.8, 0.0 -26.28,1,a-vale-i1,2021-22,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 66.9, 53.5, 90.1, 85.7, 70.3, 0.0 -4.2,1,a-vale-i1,2021-22,Lynn-Lynn Vocational Technical Institute,01630605, 90.9, 16.2, 55.1, 30.5, 9.9, 0.0 --3.4,1,a-vale-i1,2021-22,Lynn-Edward A Sisson,01630095, 91.5, 14.8, 58.5, 28.5, 6.6, 0.0 --9.6,1,a-vale-i1,2021-22,Lynn-William R Fallon,01630080, 90.3, 16.2, 72.0, 44.0, 4.0, 0.0 --1.5200000000000002,1,a-vale-i1,2021-22,Lynn-Lynn Woods,01630075, 93.0, 12.3, 55.0, 23.8, 2.5, 0.0 --2.4799999999999995,1,a-vale-i1,2021-22,Lynn-Lincoln-Thomson,01630070, 92.6, 12.5, 50.9, 26.2, 3.7, 0.0 +-12.080000000000002,1,a-vale-i1,2021-22,Lynn-E J Harrington,01630045, 87.9, 20.3, 75.8, 50.2, 17.3, 0.0 +-6.4,1,a-vale-i1,2021-22,Lynn-Cobbet Elementary,01630035, 90.9, 15.7, 63.0, 36.0, 9.0, 0.0 +-10.959999999999999,1,a-vale-i1,2021-22,Lynn-Washington Elementary School,01630005, 87.9, 20.9, 69.1, 47.4, 15.2, 0.0 +-0.8400000000000005,1,a-vale-i1,2021-22,Lynn-Aborn,01630011, 92.8, 12.3, 52.5, 22.1, 3.3, 0.0 +-4.840000000000001,1,a-vale-i1,2021-22,Lynn-A Drewicz Elementary,01630016, 92.1, 13.6, 57.6, 32.1, 3.2, 0.0 +-8.919999999999998,1,a-vale-i1,2021-22,Lynn-Brickett Elementary,01630020, 90.5, 16.4, 71.0, 42.3, 8.0, 0.0 0.0,1,a-vale-i1,2021-22,Lynnfield-Lynnfield High,01640505, 93.0, 12.4, 54.0, 20.0, 3.0, 46.0 3.5200000000000005,3.52,a-vale-i1,2021-22,Lynnfield-Lynnfield Middle School,01640405, 94.6, 9.7, 42.9, 11.2, 0.9, 24.2 2.12,2.12,a-vale-i1,2021-22,Lynnfield-Summer Street,01640020, 93.8, 11.1, 55.7, 14.7, 0.5, 0.0 @@ -913,201 +913,202 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -3.5599999999999996,1,a-vale-i1,2021-22,Lynnfield-Lynnfield Preschool,01640005, 89.7, 14.4, 48.9, 28.9, 8.9, 0.0 -7.840000000000001,1,a-vale-i1,2021-22,MATCH Charter Public School (District)-MATCH Charter Public School,04690505, 89.5, 18.4, 68.1, 39.6, 11.7, 44.8 8.0,5,a-vale-i1,2021-22,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 99.6, 0.7, 0.0, 0.0, 0.0, 0.0 --3.9200000000000004,1,a-vale-i1,2021-22,Malden-Forestdale,01650027, 91.9, 13.6, 56.5, 29.8, 6.5, 30.8 --7.24,1,a-vale-i1,2021-22,Malden-Salemwood,01650057, 90.4, 15.9, 60.7, 38.1, 11.1, 47.3 --3.4,1,a-vale-i1,2021-22,Malden-Ferryway,01650013, 91.9, 13.4, 49.4, 28.5, 8.0, 42.1 -2.8,1,a-vale-i1,2021-22,Malden-Beebe,01650003, 92.7, 12.3, 49.9, 27.0, 5.4, 33.5 --10.559999999999999,1,a-vale-i1,2021-22,Malden-Malden High,01650505, 85.6, 23.8, 63.6, 46.4, 25.7, 51.4 +-3.4,1,a-vale-i1,2021-22,Malden-Ferryway,01650013, 91.9, 13.4, 49.4, 28.5, 8.0, 42.1 +-3.9200000000000004,1,a-vale-i1,2021-22,Malden-Forestdale,01650027, 91.9, 13.6, 56.5, 29.8, 6.5, 30.8 -5.159999999999999,1,a-vale-i1,2021-22,Malden-Linden,01650047, 91.2, 14.6, 56.1, 32.9, 9.8, 41.9 -12.76,1,a-vale-i1,2021-22,Malden-Malden Early Learning Center,01650049, 87.2, 14.1, 52.8, 51.9, 19.3, 52.8 -3.5200000000000005,3.52,a-vale-i1,2021-22,Manchester Essex Regional-Essex Elementary,06980020, 94.1, 10.5, 50.9, 11.2, 0.4, 8.5 --1.5200000000000002,1,a-vale-i1,2021-22,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 92.2, 13.8, 59.4, 23.8, 5.1, 6.2 +-7.24,1,a-vale-i1,2021-22,Malden-Salemwood,01650057, 90.4, 15.9, 60.7, 38.1, 11.1, 47.3 +-10.559999999999999,1,a-vale-i1,2021-22,Malden-Malden High,01650505, 85.6, 23.8, 63.6, 46.4, 25.7, 51.4 3.7600000000000002,3.76,a-vale-i1,2021-22,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 94.1, 10.3, 49.7, 10.6, 1.6, 6.1 +-1.5200000000000002,1,a-vale-i1,2021-22,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 92.2, 13.8, 59.4, 23.8, 5.1, 6.2 2.4,2.4,a-vale-i1,2021-22,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 93.5, 11.8, 51.2, 14.0, 3.2, 4.6 -2.7600000000000002,2.76,a-vale-i1,2021-22,Mansfield-Jordan/Jackson Elementary,01670014, 94.5, 9.7, 39.0, 13.1, 1.8, 22.0 -2.5200000000000005,2.52,a-vale-i1,2021-22,Mansfield-Harold L Qualters Middle,01670035, 94.4, 9.9, 37.9, 13.7, 2.7, 18.5 +3.5200000000000005,3.52,a-vale-i1,2021-22,Manchester Essex Regional-Essex Elementary,06980020, 94.1, 10.5, 50.9, 11.2, 0.4, 8.5 -7.480000000000001,1,a-vale-i1,2021-22,Mansfield-Roland Green School,01670003, 90.5, 13.3, 70.3, 38.7, 3.6, 70.3 1.2400000000000007,1.24,a-vale-i1,2021-22,Mansfield-Mansfield High,01670505, 93.3, 11.8, 41.4, 16.9, 6.1, 15.6 +2.5200000000000005,2.52,a-vale-i1,2021-22,Mansfield-Harold L Qualters Middle,01670035, 94.4, 9.9, 37.9, 13.7, 2.7, 18.5 2.72,2.72,a-vale-i1,2021-22,Mansfield-Everett W Robinson,01670007, 94.1, 10.4, 48.3, 13.2, 1.6, 15.0 +2.7600000000000002,2.76,a-vale-i1,2021-22,Mansfield-Jordan/Jackson Elementary,01670014, 94.5, 9.7, 39.0, 13.1, 1.8, 22.0 -29.24,1,a-vale-i1,2021-22,Map Academy Charter School (District)-Map Academy Charter School,35170505, 44.7, 84.7, 96.9, 93.1, 83.9, 0.0 -1.5200000000000002,1.52,a-vale-i1,2021-22,Marblehead-Marblehead Veterans Middle School,01680300, 93.6, 11.6, 49.5, 16.2, 2.3, 8.4 -1.7200000000000002,1,a-vale-i1,2021-22,Marblehead-Marblehead High,01680505, 91.8, 14.4, 58.7, 24.3, 5.9, 13.8 +1.5200000000000002,1.52,a-vale-i1,2021-22,Marblehead-Marblehead Veterans Middle School,01680300, 93.6, 11.6, 49.5, 16.2, 2.3, 8.4 0.35999999999999943,1,a-vale-i1,2021-22,Marblehead-Lucretia and Joseph Brown School,01680030, 93.4, 11.6, 56.2, 19.1, 0.9, 3.2 -5.04,5,a-vale-i1,2021-22,Marblehead-Glover,01680020, 94.6, 9.5, 45.8, 7.4, 0.3, 1.3 2.4,2.4,a-vale-i1,2021-22,Marblehead-Village School,01680016, 93.7, 11.2, 53.5, 14.0, 1.2, 5.2 +5.04,5,a-vale-i1,2021-22,Marblehead-Glover,01680020, 94.6, 9.5, 45.8, 7.4, 0.3, 1.3 1.3200000000000003,1.32,a-vale-i1,2021-22,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 93.2, 12.2, 58.3, 16.7, 2.1, 5.0 0.6,1,a-vale-i1,2021-22,Marion-Sippican,01690005, 93.6, 11.1, 54.4, 18.5, 1.2, 1.7 --3.4,1,a-vale-i1,2021-22,Marlborough-Francis J Kane,01700008, 92.7, 12.7, 55.9, 28.5, 2.7, 32.4 -3.0400000000000005,1,a-vale-i1,2021-22,Marlborough-Charles Jaworek School,01700030, 92.1, 13.0, 56.9, 27.6, 6.1, 41.7 --6.040000000000001,1,a-vale-i1,2021-22,Marlborough-Richer,01700025, 91.3, 14.6, 64.2, 35.1, 5.7, 33.1 --4.24,1,a-vale-i1,2021-22,Marlborough-Goodnow Brothers Elementary School,01700020, 91.9, 13.5, 58.6, 30.6, 7.2, 45.4 +-2.28,1,a-vale-i1,2021-22,Marlborough-1 LT Charles W. Whitcomb School,01700045, 91.8, 13.8, 53.1, 25.7, 6.6, 37.5 -12.559999999999999,1,a-vale-i1,2021-22,Marlborough-Marlborough High,01700505, 84.6, 24.6, 69.0, 51.4, 24.5, 54.5 -8.76,1,a-vale-i1,2021-22,Marlborough-Early Childhood Center,01700006, 89.8, 16.0, 66.8, 41.9, 14.7, 66.8 --2.28,1,a-vale-i1,2021-22,Marlborough-1 LT Charles W. Whitcomb School,01700045, 91.8, 13.8, 53.1, 25.7, 6.6, 37.5 -3.04,3.04,a-vale-i1,2021-22,Marshfield-Eames Way School,01710005, 94.3, 10.3, 51.4, 12.4, 0.0, 16.5 +-3.4,1,a-vale-i1,2021-22,Marlborough-Francis J Kane,01700008, 92.7, 12.7, 55.9, 28.5, 2.7, 32.4 +-4.24,1,a-vale-i1,2021-22,Marlborough-Goodnow Brothers Elementary School,01700020, 91.9, 13.5, 58.6, 30.6, 7.2, 45.4 +-6.040000000000001,1,a-vale-i1,2021-22,Marlborough-Richer,01700025, 91.3, 14.6, 64.2, 35.1, 5.7, 33.1 1.4,1.4,a-vale-i1,2021-22,Marshfield-Furnace Brook Middle,01710310, 93.8, 11.1, 48.0, 16.5, 2.2, 20.2 -2.56,2.56,a-vale-i1,2021-22,Marshfield-Marshfield High,01710505, 94.1, 10.2, 37.2, 13.6, 3.5, 14.0 -3.7600000000000002,3.76,a-vale-i1,2021-22,Marshfield-South River,01710010, 94.3, 10.1, 46.0, 10.6, 0.8, 17.4 --1.0,1,a-vale-i1,2021-22,Marshfield-Daniel Webster,01710015, 92.9, 12.1, 58.8, 22.5, 4.0, 20.0 -3.2399999999999998,3.24,a-vale-i1,2021-22,Marshfield-Gov Edward Winslow,01710020, 93.8, 11.1, 55.8, 11.9, 1.1, 24.7 0.2799999999999997,1,a-vale-i1,2021-22,Marshfield-Martinson Elementary,01710025, 93.3, 11.6, 51.3, 19.3, 1.5, 25.7 +-1.0,1,a-vale-i1,2021-22,Marshfield-Daniel Webster,01710015, 92.9, 12.1, 58.8, 22.5, 4.0, 20.0 +2.56,2.56,a-vale-i1,2021-22,Marshfield-Marshfield High,01710505, 94.1, 10.2, 37.2, 13.6, 3.5, 14.0 +3.2399999999999998,3.24,a-vale-i1,2021-22,Marshfield-Gov Edward Winslow,01710020, 93.8, 11.1, 55.8, 11.9, 1.1, 24.7 +3.04,3.04,a-vale-i1,2021-22,Marshfield-Eames Way School,01710005, 94.3, 10.3, 51.4, 12.4, 0.0, 16.5 +3.7600000000000002,3.76,a-vale-i1,2021-22,Marshfield-South River,01710010, 94.3, 10.1, 46.0, 10.6, 0.8, 17.4 -2.4799999999999995,1,a-vale-i1,2021-22,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 91.2, 15.4, 58.1, 26.2, 7.8, 22.4 -13.76,1,a-vale-i1,2021-22,Martha's Vineyard Charter (District)-Martha's Vineyard Charter School,04660550, 86.8, 21.6, 80.8, 54.4, 17.6, 76.4 -5.4,1,a-vale-i1,2021-22,Martin Luther King Jr. Charter School of Excellence (District)-Martin Luther King Jr. Charter School of Excellence,04920005, 91.7, 14.2, 66.0, 33.5, 2.4, 2.1 -1.8,1.8,a-vale-i1,2021-22,Masconomet-Masconomet Regional High School,07050505, 93.7, 10.9, 41.2, 15.5, 4.3, 6.2 1.8799999999999997,1.88,a-vale-i1,2021-22,Masconomet-Masconomet Regional Middle School,07050405, 93.9, 10.9, 45.2, 15.3, 3.3, 4.5 --0.5599999999999994,1,a-vale-i1,2021-22,Mashpee-Mashpee High,01720505, 92.7, 12.5, 45.9, 21.4, 6.4, 0.2 -1.4,1.4,a-vale-i1,2021-22,Mashpee-Mashpee Middle School,01720020, 94.2, 10.1, 39.7, 16.5, 4.2, 0.0 +1.8,1.8,a-vale-i1,2021-22,Masconomet-Masconomet Regional High School,07050505, 93.7, 10.9, 41.2, 15.5, 4.3, 6.2 -9.2,1,a-vale-i1,2021-22,Mashpee-Kenneth Coombs School,01720005, 90.2, 17.0, 73.2, 43.0, 7.0, 0.0 +1.4,1.4,a-vale-i1,2021-22,Mashpee-Mashpee Middle School,01720020, 94.2, 10.1, 39.7, 16.5, 4.2, 0.0 -6.8,1,a-vale-i1,2021-22,Mashpee-Quashnet School,01720035, 90.7, 16.2, 69.9, 37.0, 6.4, 0.0 +-0.5599999999999994,1,a-vale-i1,2021-22,Mashpee-Mashpee High,01720505, 92.7, 12.5, 45.9, 21.4, 6.4, 0.2 -2.8,1,a-vale-i1,2021-22,Mattapoisett-Center,01730005, 92.5, 12.4, 57.5, 27.0, 3.5, 1.2 -1.1599999999999995,1,a-vale-i1,2021-22,Mattapoisett-Old Hammondtown,01730010, 92.8, 13.0, 61.7, 22.9, 4.3, 0.5 -0.24000000000000057,1,a-vale-i1,2021-22,Maynard-Fowler School,01740305, 93.4, 11.6, 51.7, 20.6, 1.9, 51.5 --1.3200000000000003,1,a-vale-i1,2021-22,Maynard-Maynard High,01740505, 92.6, 12.6, 43.8, 23.3, 6.9, 26.3 -2.2,1,a-vale-i1,2021-22,Maynard-Green Meadow,01740010, 92.6, 12.8, 60.6, 25.5, 3.9, 8.3 -5.16,5,a-vale-i1,2021-22,Medfield-Medfield Senior High,01750505, 95.3, 8.2, 31.0, 7.1, 1.6, 15.0 +-1.3200000000000003,1,a-vale-i1,2021-22,Maynard-Maynard High,01740505, 92.6, 12.6, 43.8, 23.3, 6.9, 26.3 +3.4799999999999995,3.48,a-vale-i1,2021-22,Medfield-Memorial School,01750003, 94.7, 9.0, 40.1, 11.3, 0.7, 3.6 4.96,4.96,a-vale-i1,2021-22,Medfield-Dale Street,01750005, 95.1, 8.8, 35.8, 7.6, 0.5, 4.3 4.4399999999999995,4.44,a-vale-i1,2021-22,Medfield-Ralph Wheelock School,01750007, 94.8, 9.2, 41.4, 8.9, 0.7, 2.7 4.5600000000000005,4.56,a-vale-i1,2021-22,Medfield-Thomas Blake Middle,01750305, 95.0, 8.9, 33.3, 8.6, 1.6, 4.6 -3.4799999999999995,3.48,a-vale-i1,2021-22,Medfield-Memorial School,01750003, 94.7, 9.0, 40.1, 11.3, 0.7, 3.6 --3.12,1,a-vale-i1,2021-22,Medford-Madeleine Dugger Andrews,01760315, 92.0, 14.0, 55.6, 27.8, 6.8, 36.1 --2.28,1,a-vale-i1,2021-22,Medford-Milton Fuller Roberts,01760150, 92.4, 13.4, 57.2, 25.7, 4.3, 53.5 --6.159999999999999,1,a-vale-i1,2021-22,Medford-Missituk Elementary School,01760140, 90.8, 14.8, 65.6, 35.4, 7.8, 47.6 --2.4400000000000004,1,a-vale-i1,2021-22,Medford-John J. McGlynn Middle School,01760320, 92.6, 12.3, 56.2, 26.1, 3.3, 29.1 --7.8,1,a-vale-i1,2021-22,Medford-Medford High,01760505, 89.9, 17.2, 64.7, 39.5, 11.7, 48.0 +5.16,5,a-vale-i1,2021-22,Medfield-Medfield Senior High,01750505, 95.3, 8.2, 31.0, 7.1, 1.6, 15.0 -28.919999999999998,1,a-vale-i1,2021-22,Medford-Curtis-Tufts,01760510, 45.1, 87.8, 100.0, 92.3, 76.9, 92.3 +-7.8,1,a-vale-i1,2021-22,Medford-Medford High,01760505, 89.9, 17.2, 64.7, 39.5, 11.7, 48.0 +-2.28,1,a-vale-i1,2021-22,Medford-Milton Fuller Roberts,01760150, 92.4, 13.4, 57.2, 25.7, 4.3, 53.5 +-3.12,1,a-vale-i1,2021-22,Medford-Madeleine Dugger Andrews,01760315, 92.0, 14.0, 55.6, 27.8, 6.8, 36.1 +-2.4400000000000004,1,a-vale-i1,2021-22,Medford-John J. McGlynn Middle School,01760320, 92.6, 12.3, 56.2, 26.1, 3.3, 29.1 +-6.159999999999999,1,a-vale-i1,2021-22,Medford-Missituk Elementary School,01760140, 90.8, 14.8, 65.6, 35.4, 7.8, 47.6 1.0799999999999996,1.08,a-vale-i1,2021-22,Medford-Brooks School,01760130, 93.4, 11.4, 52.2, 17.3, 2.9, 36.8 -1.9200000000000004,1,a-vale-i1,2021-22,Medford-John J McGlynn Elementary School,01760068, 92.4, 12.7, 60.0, 24.8, 4.5, 35.7 1.4400000000000006,1.44,a-vale-i1,2021-22,Medway-Medway High,01770505, 92.9, 12.6, 43.8, 16.4, 4.5, 24.2 1.8399999999999999,1.84,a-vale-i1,2021-22,Medway-Medway Middle,01770305, 94.1, 10.4, 41.9, 15.4, 1.3, 17.5 -6.56,5,a-vale-i1,2021-22,Medway-John D Mc Govern Elementary,01770013, 97.4, 4.5, 11.4, 3.6, 0.3, 2.2 3.6399999999999997,3.64,a-vale-i1,2021-22,Medway-Burke/Memorial Elementary School,01770015, 94.7, 9.2, 40.2, 10.9, 1.0, 10.5 +6.56,5,a-vale-i1,2021-22,Medway-John D Mc Govern Elementary,01770013, 97.4, 4.5, 11.4, 3.6, 0.3, 2.2 +0.5599999999999994,1,a-vale-i1,2021-22,Melrose-Melrose High,01780505, 93.3, 11.6, 46.0, 18.6, 5.3, 26.0 +0.9200000000000003,1,a-vale-i1,2021-22,Melrose-Herbert Clark Hoover,01780017, 93.8, 10.9, 51.6, 17.7, 1.9, 13.2 +3.6399999999999997,3.64,a-vale-i1,2021-22,Melrose-Winthrop,01780050, 94.2, 10.3, 43.6, 10.9, 1.2, 6.9 +0.6400000000000006,1,a-vale-i1,2021-22,Melrose-Melrose Middle,01780305, 93.4, 11.6, 48.4, 18.4, 4.7, 31.4 0.12000000000000029,1,a-vale-i1,2021-22,Melrose-Lincoln,01780020, 93.3, 11.6, 49.9, 19.7, 3.5, 12.4 4.720000000000001,4.72,a-vale-i1,2021-22,Melrose-Horace Mann,01780025, 94.9, 9.1, 42.2, 8.2, 0.0, 8.2 2.3200000000000003,2.32,a-vale-i1,2021-22,Melrose-Roosevelt,01780035, 93.6, 11.3, 44.8, 14.2, 1.6, 4.2 -0.6400000000000006,1,a-vale-i1,2021-22,Melrose-Melrose Middle,01780305, 93.4, 11.6, 48.4, 18.4, 4.7, 31.4 -3.6399999999999997,3.64,a-vale-i1,2021-22,Melrose-Winthrop,01780050, 94.2, 10.3, 43.6, 10.9, 1.2, 6.9 -0.5599999999999994,1,a-vale-i1,2021-22,Melrose-Melrose High,01780505, 93.3, 11.6, 46.0, 18.6, 5.3, 26.0 -5.840000000000001,1,a-vale-i1,2021-22,Melrose-Early Childhood Center,01780003, 91.5, 14.8, 65.4, 34.6, 4.2, 63.5 -0.9200000000000003,1,a-vale-i1,2021-22,Melrose-Herbert Clark Hoover,01780017, 93.8, 10.9, 51.6, 17.7, 1.9, 13.2 -1.2400000000000007,1.24,a-vale-i1,2021-22,Mendon-Upton-Henry P Clough,07100179, 93.7, 11.0, 52.5, 16.9, 1.7, 26.9 -2.3599999999999994,1,a-vale-i1,2021-22,Mendon-Upton-Nipmuc Regional High,07100510, 92.5, 13.0, 52.2, 25.9, 5.8, 0.0 0.2799999999999997,1,a-vale-i1,2021-22,Mendon-Upton-Memorial School,07100001, 93.1, 12.0, 53.3, 19.3, 2.5, 23.2 2.5200000000000005,2.52,a-vale-i1,2021-22,Mendon-Upton-Miscoe Hill School,07100015, 94.3, 10.1, 42.9, 13.7, 1.3, 0.0 --5.880000000000001,1,a-vale-i1,2021-22,Methuen-Tenney Grammar School,01810055, 90.9, 15.6, 64.3, 34.7, 8.0, 35.2 --1.8,1,a-vale-i1,2021-22,Methuen-Comprehensive Grammar School,01810050, 92.6, 12.5, 52.8, 24.5, 5.2, 31.0 --1.8,1,a-vale-i1,2021-22,Methuen-Marsh Grammar School,01810030, 92.7, 12.6, 58.3, 24.5, 2.7, 33.3 +1.2400000000000007,1.24,a-vale-i1,2021-22,Mendon-Upton-Henry P Clough,07100179, 93.7, 11.0, 52.5, 16.9, 1.7, 26.9 -11.280000000000001,1,a-vale-i1,2021-22,Methuen-Methuen High,01810505, 86.1, 23.6, 69.3, 48.2, 22.4, 56.6 +-1.8,1,a-vale-i1,2021-22,Methuen-Comprehensive Grammar School,01810050, 92.6, 12.5, 52.8, 24.5, 5.2, 31.0 +-5.880000000000001,1,a-vale-i1,2021-22,Methuen-Tenney Grammar School,01810055, 90.9, 15.6, 64.3, 34.7, 8.0, 35.2 -4.5200000000000005,1,a-vale-i1,2021-22,Methuen-Donald P Timony Grammar,01810060, 91.7, 14.2, 57.9, 31.3, 6.2, 44.1 +-1.8,1,a-vale-i1,2021-22,Methuen-Marsh Grammar School,01810030, 92.7, 12.6, 58.3, 24.5, 2.7, 33.3 +-3.72,1,a-vale-i1,2021-22,Middleborough-Henry B. Burkland Elementary School,01820008, 92.3, 13.7, 63.3, 29.3, 2.5, 35.6 0.6400000000000006,1,a-vale-i1,2021-22,Middleborough-Mary K. Goode Elementary School,01820010, 93.2, 12.0, 56.7, 18.4, 2.3, 31.2 -4.840000000000001,1,a-vale-i1,2021-22,Middleborough-Memorial Early Childhood Center,01820011, 91.3, 15.0, 65.6, 32.1, 4.3, 42.0 -5.040000000000001,1,a-vale-i1,2021-22,Middleborough-John T. Nichols Middle,01820305, 91.4, 15.3, 67.0, 32.6, 5.4, 45.5 -3.7599999999999993,1,a-vale-i1,2021-22,Middleborough-Middleborough High,01820505, 90.2, 16.7, 54.4, 29.4, 11.7, 29.2 --3.72,1,a-vale-i1,2021-22,Middleborough-Henry B. Burkland Elementary School,01820008, 92.3, 13.7, 63.3, 29.3, 2.5, 35.6 -0.44000000000000056,1,a-vale-i1,2021-22,Middleton-Howe-Manning,01840005, 93.0, 11.8, 56.5, 18.9, 2.3, 56.1 -1.2,1,a-vale-i1,2021-22,Middleton-Fuller Meadow,01840003, 92.7, 12.4, 63.2, 23.0, 0.3, 62.9 --7.119999999999999,1,a-vale-i1,2021-22,Milford-Milford High,01850505, 88.6, 18.8, 58.2, 37.8, 18.1, 36.2 +0.44000000000000056,1,a-vale-i1,2021-22,Middleton-Howe-Manning,01840005, 93.0, 11.8, 56.5, 18.9, 2.3, 56.1 -5.280000000000001,1,a-vale-i1,2021-22,Milford-Memorial,01850010, 91.5, 14.1, 61.9, 33.2, 5.6, 17.3 +-7.119999999999999,1,a-vale-i1,2021-22,Milford-Milford High,01850505, 88.6, 18.8, 58.2, 37.8, 18.1, 36.2 +-2.8400000000000007,1,a-vale-i1,2021-22,Milford-Stacy Middle,01850305, 91.9, 13.7, 53.0, 27.1, 8.1, 39.4 -2.88,1,a-vale-i1,2021-22,Milford-Brookside,01850065, 91.8, 13.7, 62.2, 27.2, 6.7, 37.8 -12.680000000000001,1,a-vale-i1,2021-22,Milford-Shining Star Early Childhood Center,01850075, 86.6, 17.3, 67.4, 51.7, 16.3, 67.4 -2.3599999999999994,1,a-vale-i1,2021-22,Milford-Woodland,01850090, 92.8, 12.2, 55.1, 25.9, 4.1, 29.4 --2.8400000000000007,1,a-vale-i1,2021-22,Milford-Stacy Middle,01850305, 91.9, 13.7, 53.0, 27.1, 8.1, 39.4 +-2.12,1,a-vale-i1,2021-22,Millbury-Elmwood Street,01860017, 92.2, 13.7, 63.7, 25.3, 3.6, 34.1 1.6799999999999997,1.68,a-vale-i1,2021-22,Millbury-Raymond E. Shaw Elementary,01860025, 93.9, 11.0, 48.4, 15.8, 1.1, 16.3 -3.0400000000000005,1,a-vale-i1,2021-22,Millbury-Millbury Junior/Senior High,01860505, 91.4, 15.2, 57.2, 27.6, 9.1, 31.5 --2.12,1,a-vale-i1,2021-22,Millbury-Elmwood Street,01860017, 92.2, 13.7, 63.7, 25.3, 3.6, 34.1 +1.6,1.6,a-vale-i1,2021-22,Millis-Millis High School,01870505, 93.6, 11.3, 42.2, 16.0, 4.2, 0.0 2.0799999999999996,2.08,a-vale-i1,2021-22,Millis-Clyde F Brown,01870005, 94.2, 10.0, 44.3, 14.8, 1.7, 0.0 2.5200000000000005,2.52,a-vale-i1,2021-22,Millis-Millis Middle,01870020, 93.5, 11.5, 43.2, 13.7, 3.3, 0.0 -1.6,1.6,a-vale-i1,2021-22,Millis-Millis High School,01870505, 93.6, 11.3, 42.2, 16.0, 4.2, 0.0 +4.76,4.76,a-vale-i1,2021-22,Milton-Collicot,01890005, 94.9, 9.2, 41.7, 8.1, 0.5, 0.2 +1.8399999999999999,1.84,a-vale-i1,2021-22,Milton-Milton High,01890505, 93.7, 11.2, 39.7, 15.4, 3.8, 8.7 2.4799999999999995,2.48,a-vale-i1,2021-22,Milton-Cunningham School,01890007, 94.4, 9.8, 37.6, 13.8, 2.2, 4.0 3.12,3.12,a-vale-i1,2021-22,Milton-Glover,01890010, 94.4, 10.0, 44.4, 12.2, 0.9, 9.1 1.8399999999999999,1.84,a-vale-i1,2021-22,Milton-Tucker,01890020, 93.7, 11.2, 48.8, 15.4, 2.5, 14.2 1.5599999999999994,1.56,a-vale-i1,2021-22,Milton-Charles S Pierce Middle,01890410, 94.0, 10.7, 46.5, 16.1, 1.3, 15.7 -1.8399999999999999,1.84,a-vale-i1,2021-22,Milton-Milton High,01890505, 93.7, 11.2, 39.7, 15.4, 3.8, 8.7 -4.76,4.76,a-vale-i1,2021-22,Milton-Collicot,01890005, 94.9, 9.2, 41.7, 8.1, 0.5, 0.2 1.3200000000000003,1.32,a-vale-i1,2021-22,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 93.5, 11.4, 43.8, 16.7, 6.1, 20.8 +-4.880000000000001,1,a-vale-i1,2021-22,Mohawk Trail-Mohawk Trail Regional School,07170505, 90.3, 16.6, 62.3, 32.2, 9.1, 34.8 -5.44,1,a-vale-i1,2021-22,Mohawk Trail-Sanderson Academy,07170020, 91.1, 15.1, 65.7, 33.6, 5.2, 18.7 -1.8,1,a-vale-i1,2021-22,Mohawk Trail-Colrain Central,07170010, 91.9, 13.5, 66.4, 24.5, 4.5, 21.8 -3.0400000000000005,1,a-vale-i1,2021-22,Mohawk Trail-Buckland-Shelburne Regional,07170005, 91.9, 14.3, 67.6, 27.6, 3.6, 36.4 --4.880000000000001,1,a-vale-i1,2021-22,Mohawk Trail-Mohawk Trail Regional School,07170505, 90.3, 16.6, 62.3, 32.2, 9.1, 34.8 --0.5200000000000002,1,a-vale-i1,2021-22,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 92.8, 12.8, 60.1, 21.3, 2.2, 34.5 0.5200000000000002,1,a-vale-i1,2021-22,Monomoy Regional School District-Chatham Elementary School,07120001, 93.3, 11.7, 55.3, 18.7, 0.7, 39.3 -3.6799999999999997,1,a-vale-i1,2021-22,Monomoy Regional School District-Harwich Elementary School,07120002, 91.9, 13.7, 61.8, 29.2, 1.9, 46.8 +-0.5200000000000002,1,a-vale-i1,2021-22,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 92.8, 12.8, 60.1, 21.3, 2.2, 34.5 -3.6799999999999997,1,a-vale-i1,2021-22,Monomoy Regional School District-Monomoy Regional High School,07120515, 91.0, 15.5, 62.9, 29.2, 8.0, 42.8 1.4,1.4,a-vale-i1,2021-22,Monson-Granite Valley School,01910030, 93.9, 10.5, 45.3, 16.5, 1.9, 38.4 -0.8400000000000005,1,a-vale-i1,2021-22,Monson-Monson High School,01910505, 92.8, 12.4, 45.9, 22.1, 4.5, 26.3 -5.840000000000001,1,a-vale-i1,2021-22,Monson-Quarry Hill Community School,01910010, 90.5, 16.6, 75.7, 34.6, 5.6, 65.4 0.2,1,a-vale-i1,2021-22,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 93.4, 11.4, 48.3, 19.5, 3.7, 14.9 -0.8400000000000005,1,a-vale-i1,2021-22,Mount Greylock-Mt Greylock Regional High,07150505, 93.3, 11.7, 45.8, 17.9, 5.0, 11.8 -1.4400000000000006,1,a-vale-i1,2021-22,Mount Greylock-Lanesborough Elementary,07150005, 92.5, 13.4, 64.6, 23.6, 1.4, 9.9 1.64,1.64,a-vale-i1,2021-22,Mount Greylock-Williamstown Elementary,07150010, 94.1, 10.3, 43.5, 15.9, 2.7, 16.6 +0.8400000000000005,1,a-vale-i1,2021-22,Mount Greylock-Mt Greylock Regional High,07150505, 93.3, 11.7, 45.8, 17.9, 5.0, 11.8 4.68,4.68,a-vale-i1,2021-22,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 95.2, 9.4, 42.5, 8.3, 0.6, 0.4 -0.6,1,a-vale-i1,2021-22,Nahant-Johnson,01960010, 92.3, 13.0, 55.4, 21.5, 3.4, 10.7 --1.1599999999999995,1,a-vale-i1,2021-22,Nantucket-Nantucket Intermediate School,01970020, 92.8, 12.5, 63.7, 22.9, 0.9, 17.3 -0.04000000000000057,1,a-vale-i1,2021-22,Nantucket-Cyrus Peirce,01970010, 93.3, 11.7, 51.1, 20.1, 1.8, 18.3 --2.6799999999999997,1,a-vale-i1,2021-22,Nantucket-Nantucket High,01970505, 91.6, 14.4, 61.8, 26.7, 5.6, 24.8 -8.12,1,a-vale-i1,2021-22,Nantucket-Nantucket Elementary,01970005, 90.6, 15.4, 69.4, 40.3, 6.5, 27.4 --3.3200000000000003,1,a-vale-i1,2021-22,Narragansett-Narragansett Middle,07200305, 92.0, 13.9, 60.1, 28.3, 4.7, 24.1 +-2.6799999999999997,1,a-vale-i1,2021-22,Nantucket-Nantucket High,01970505, 91.6, 14.4, 61.8, 26.7, 5.6, 24.8 +-1.1599999999999995,1,a-vale-i1,2021-22,Nantucket-Nantucket Intermediate School,01970020, 92.8, 12.5, 63.7, 22.9, 0.9, 17.3 -3.88,1,a-vale-i1,2021-22,Narragansett-Narragansett Regional High,07200505, 91.3, 15.0, 62.2, 29.7, 8.1, 28.3 -3.4400000000000004,1,a-vale-i1,2021-22,Narragansett-Templeton Elementary School,07200020, 91.8, 14.2, 65.9, 28.6, 4.9, 35.2 --0.44000000000000056,1,a-vale-i1,2021-22,Nashoba-Center School,07250020, 93.3, 11.7, 52.6, 21.1, 1.6, 0.0 -2.0,2.0,a-vale-i1,2021-22,Nashoba-Mary Rowlandson Elementary,07250010, 94.1, 10.3, 48.9, 15.0, 1.0, 0.0 +-3.3200000000000003,1,a-vale-i1,2021-22,Narragansett-Narragansett Middle,07200305, 92.0, 13.9, 60.1, 28.3, 4.7, 24.1 1.5599999999999994,1.56,a-vale-i1,2021-22,Nashoba-Luther Burbank Middle School,07250305, 94.0, 10.6, 43.9, 16.1, 3.5, 0.0 -3.0799999999999996,1,a-vale-i1,2021-22,Nashoba-Nashoba Regional,07250505, 91.2, 15.6, 56.6, 27.7, 8.5, 8.6 -4.4799999999999995,4.48,a-vale-i1,2021-22,Nashoba-Hale,07250310, 95.0, 8.8, 37.1, 8.8, 1.1, 0.0 3.6,3.6,a-vale-i1,2021-22,Nashoba-Florence Sawyer School,07250025, 94.9, 9.0, 37.6, 11.0, 0.7, 0.0 +4.4799999999999995,4.48,a-vale-i1,2021-22,Nashoba-Hale,07250310, 95.0, 8.8, 37.1, 8.8, 1.1, 0.0 +2.0,2.0,a-vale-i1,2021-22,Nashoba-Mary Rowlandson Elementary,07250010, 94.1, 10.3, 48.9, 15.0, 1.0, 0.0 +-0.44000000000000056,1,a-vale-i1,2021-22,Nashoba-Center School,07250020, 93.3, 11.7, 52.6, 21.1, 1.6, 0.0 5.84,5,a-vale-i1,2021-22,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 95.7, 7.5, 26.0, 5.4, 1.1, 19.0 --0.5200000000000002,1,a-vale-i1,2021-22,Natick-Natick High,01980505, 92.6, 12.7, 47.4, 21.3, 6.2, 0.0 -3.4,3.4,a-vale-i1,2021-22,Natick-Wilson Middle,01980310, 94.8, 9.2, 36.7, 11.5, 1.2, 0.0 4.32,4.32,a-vale-i1,2021-22,Natick-J F Kennedy Middle School,01980305, 95.3, 8.3, 32.1, 9.2, 0.9, 0.0 +3.4,3.4,a-vale-i1,2021-22,Natick-Wilson Middle,01980310, 94.8, 9.2, 36.7, 11.5, 1.2, 0.0 4.68,4.68,a-vale-i1,2021-22,Natick-Memorial,01980043, 94.8, 9.3, 41.2, 8.3, 0.3, 0.0 +-0.5200000000000002,1,a-vale-i1,2021-22,Natick-Natick High,01980505, 92.6, 12.7, 47.4, 21.3, 6.2, 0.0 4.84,4.84,a-vale-i1,2021-22,Natick-Lilja Elementary,01980035, 95.1, 8.7, 36.3, 7.9, 0.5, 0.0 -6.720000000000001,5,a-vale-i1,2021-22,Natick-Johnson,01980031, 95.9, 7.4, 23.5, 3.2, 0.5, 0.0 4.4399999999999995,4.44,a-vale-i1,2021-22,Natick-Bennett-Hemenway,01980005, 95.3, 8.3, 32.6, 8.9, 1.2, 0.0 3.88,3.88,a-vale-i1,2021-22,Natick-Brown,01980010, 95.0, 8.6, 37.4, 10.3, 1.1, 0.0 +6.720000000000001,5,a-vale-i1,2021-22,Natick-Johnson,01980031, 95.9, 7.4, 23.5, 3.2, 0.5, 0.0 -2.6799999999999997,1,a-vale-i1,2021-22,Nauset-Nauset Regional Middle,06600305, 91.7, 14.9, 60.9, 26.7, 6.5, 47.2 -3.8,1,a-vale-i1,2021-22,Nauset-Nauset Regional High,06600505, 91.4, 14.9, 61.3, 29.5, 6.7, 42.1 +3.5200000000000005,3.52,a-vale-i1,2021-22,Needham-Sunita L. Williams Elementary,01990035, 94.5, 9.8, 42.9, 11.2, 1.2, 0.0 +-4.720000000000001,1,a-vale-i1,2021-22,Needham-Needham High,01990505, 90.2, 17.5, 57.9, 31.8, 13.1, 0.8 +5.8,5,a-vale-i1,2021-22,Needham-High Rock School,01990410, 95.5, 8.0, 31.1, 5.5, 0.4, 0.0 4.32,4.32,a-vale-i1,2021-22,Needham-Pollard Middle,01990405, 94.9, 9.1, 33.3, 9.2, 2.0, 0.0 3.5200000000000005,3.52,a-vale-i1,2021-22,Needham-Newman Elementary,01990050, 94.8, 9.1, 36.1, 11.2, 1.6, 0.0 -3.5200000000000005,3.52,a-vale-i1,2021-22,Needham-Sunita L. Williams Elementary,01990035, 94.5, 9.8, 42.9, 11.2, 1.2, 0.0 +5.16,5,a-vale-i1,2021-22,Needham-William Mitchell,01990040, 95.6, 7.9, 32.0, 7.1, 0.9, 0.0 3.44,3.44,a-vale-i1,2021-22,Needham-John Eliot,01990020, 94.8, 9.2, 39.8, 11.4, 0.9, 0.0 4.32,4.32,a-vale-i1,2021-22,Needham-Broadmeadow,01990005, 95.1, 8.7, 34.5, 9.2, 0.4, 0.0 -5.8,5,a-vale-i1,2021-22,Needham-High Rock School,01990410, 95.5, 8.0, 31.1, 5.5, 0.4, 0.0 --4.720000000000001,1,a-vale-i1,2021-22,Needham-Needham High,01990505, 90.2, 17.5, 57.9, 31.8, 13.1, 0.8 -5.16,5,a-vale-i1,2021-22,Needham-William Mitchell,01990040, 95.6, 7.9, 32.0, 7.1, 0.9, 0.0 -6.359999999999999,1,a-vale-i1,2021-22,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 89.9, 17.0, 63.1, 35.9, 10.9, 15.1 --3.7599999999999993,1,a-vale-i1,2021-22,New Bedford-Betsey B Winslow,02010140, 91.8, 14.6, 65.1, 29.4, 3.8, 31.9 --10.84,1,a-vale-i1,2021-22,New Bedford-Keith Middle School,02010405, 88.0, 20.9, 72.3, 47.1, 17.0, 64.3 --5.840000000000001,1,a-vale-i1,2021-22,New Bedford-Normandin Middle School,02010410, 90.9, 16.0, 65.1, 34.6, 7.9, 45.4 --10.8,1,a-vale-i1,2021-22,New Bedford-Roosevelt Middle School,02010415, 87.6, 21.5, 70.8, 47.0, 19.0, 58.8 +-7.44,1,a-vale-i1,2021-22,New Bedford-Abraham Lincoln,02010095, 90.0, 17.2, 72.0, 38.6, 9.4, 51.2 -6.880000000000001,1,a-vale-i1,2021-22,New Bedford-Charles S Ashley,02010010, 91.0, 15.8, 70.6, 37.2, 6.0, 36.2 --19.880000000000003,1,a-vale-i1,2021-22,New Bedford-New Bedford High,02010505, 80.5, 32.2, 84.7, 69.7, 40.4, 78.7 --17.880000000000003,1,a-vale-i1,2021-22,New Bedford-Trinity Day Academy,02010510, 77.6, 37.0, 76.5, 64.7, 38.8, 67.1 -6.2,1,a-vale-i1,2021-22,New Bedford-Elizabeth Carter Brooks,02010015, 90.8, 16.3, 67.6, 35.5, 6.0, 41.1 -13.959999999999999,1,a-vale-i1,2021-22,New Bedford-Elwyn G Campbell,02010020, 87.7, 20.6, 75.1, 54.9, 16.8, 55.2 -5.24,1,a-vale-i1,2021-22,New Bedford-James B Congdon,02010040, 91.5, 15.1, 66.2, 33.1, 3.9, 28.9 -13.959999999999999,1,a-vale-i1,2021-22,New Bedford-Sgt Wm H Carney Academy,02010045, 86.6, 23.1, 80.0, 54.9, 23.3, 61.0 -6.640000000000001,1,a-vale-i1,2021-22,New Bedford-John B Devalles,02010050, 90.5, 16.5, 68.3, 36.6, 6.4, 47.3 -8.16,1,a-vale-i1,2021-22,New Bedford-Alfred J Gomes,02010063, 89.8, 18.3, 73.1, 40.4, 9.9, 56.7 --13.8,1,a-vale-i1,2021-22,New Bedford-Whaling City Junior/Senior High School,02010515, 78.6, 30.9, 65.2, 54.5, 39.4, 59.1 -9.440000000000001,1,a-vale-i1,2021-22,New Bedford-Irwin M. Jacobs Elementary School,02010070, 88.3, 19.4, 69.2, 43.6, 16.7, 57.1 -9.680000000000001,1,a-vale-i1,2021-22,New Bedford-Ellen R Hathaway,02010075, 89.8, 16.5, 68.5, 44.2, 10.7, 53.9 -9.76,1,a-vale-i1,2021-22,New Bedford-Hayden/McFadden,02010078, 89.8, 17.8, 69.5, 44.4, 10.7, 49.6 --7.44,1,a-vale-i1,2021-22,New Bedford-Abraham Lincoln,02010095, 90.0, 17.2, 72.0, 38.6, 9.4, 51.2 +-13.8,1,a-vale-i1,2021-22,New Bedford-Whaling City Junior/Senior High School,02010515, 78.6, 30.9, 65.2, 54.5, 39.4, 59.1 -9.52,1,a-vale-i1,2021-22,New Bedford-Carlos Pacheco,02010105, 89.2, 18.8, 72.9, 43.8, 13.6, 58.0 +-5.840000000000001,1,a-vale-i1,2021-22,New Bedford-Normandin Middle School,02010410, 90.9, 16.0, 65.1, 34.6, 7.9, 45.4 +-17.880000000000003,1,a-vale-i1,2021-22,New Bedford-Trinity Day Academy,02010510, 77.6, 37.0, 76.5, 64.7, 38.8, 67.1 +-10.84,1,a-vale-i1,2021-22,New Bedford-Keith Middle School,02010405, 88.0, 20.9, 72.3, 47.1, 17.0, 64.3 +-3.7599999999999993,1,a-vale-i1,2021-22,New Bedford-Betsey B Winslow,02010140, 91.8, 14.6, 65.1, 29.4, 3.8, 31.9 +-5.24,1,a-vale-i1,2021-22,New Bedford-William H Taylor,02010135, 90.5, 16.6, 72.2, 33.1, 7.6, 41.8 +-5.640000000000001,1,a-vale-i1,2021-22,New Bedford-Jireh Swift,02010130, 91.3, 15.2, 63.2, 34.1, 6.8, 46.8 -8.12,1,a-vale-i1,2021-22,New Bedford-John Avery Parker,02010115, 90.5, 16.8, 76.7, 40.3, 4.3, 43.5 -4.5200000000000005,1,a-vale-i1,2021-22,New Bedford-Casimir Pulaski,02010123, 91.4, 15.1, 61.5, 31.3, 5.9, 39.8 +-10.8,1,a-vale-i1,2021-22,New Bedford-Roosevelt Middle School,02010415, 87.6, 21.5, 70.8, 47.0, 19.0, 58.8 -10.080000000000002,1,a-vale-i1,2021-22,New Bedford-Renaissance Community Innovation School,02010124, 87.8, 20.9, 75.6, 45.2, 16.1, 53.0 -6.159999999999999,1,a-vale-i1,2021-22,New Bedford-Thomas R Rodman,02010125, 90.1, 17.4, 70.0, 35.4, 8.1, 42.6 --5.640000000000001,1,a-vale-i1,2021-22,New Bedford-Jireh Swift,02010130, 91.3, 15.2, 63.2, 34.1, 6.8, 46.8 --5.24,1,a-vale-i1,2021-22,New Bedford-William H Taylor,02010135, 90.5, 16.6, 72.2, 33.1, 7.6, 41.8 +-19.880000000000003,1,a-vale-i1,2021-22,New Bedford-New Bedford High,02010505, 80.5, 32.2, 84.7, 69.7, 40.4, 78.7 -3.5200000000000005,1,a-vale-i1,2021-22,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 91.8, 15.0, 58.2, 28.8, 8.4, 41.8 0.7200000000000003,1,a-vale-i1,2021-22,New Salem-Wendell-Swift River,07280015, 91.8, 14.7, 69.7, 18.2, 3.8, 12.9 -1.4,1.4,a-vale-i1,2021-22,Newburyport-Rupert A Nock Middle,02040305, 93.7, 11.1, 45.0, 16.5, 2.9, 0.0 -1.3200000000000003,1.32,a-vale-i1,2021-22,Newburyport-Edward G. Molin Elementary School,02040030, 93.6, 11.3, 49.5, 16.7, 2.1, 0.0 1.8399999999999999,1.84,a-vale-i1,2021-22,Newburyport-Francis T Bresnahan Elementary,02040005, 93.4, 11.5, 50.3, 15.4, 2.8, 0.0 +1.3200000000000003,1.32,a-vale-i1,2021-22,Newburyport-Edward G. Molin Elementary School,02040030, 93.6, 11.3, 49.5, 16.7, 2.1, 0.0 +1.4,1.4,a-vale-i1,2021-22,Newburyport-Rupert A Nock Middle,02040305, 93.7, 11.1, 45.0, 16.5, 2.9, 0.0 0.12000000000000029,1,a-vale-i1,2021-22,Newburyport-Newburyport High,02040505, 93.1, 12.0, 50.1, 19.7, 3.6, 0.0 -2.3200000000000003,2.32,a-vale-i1,2021-22,Newton-Bowen,02070015, 94.5, 9.7, 37.9, 14.2, 2.0, 0.9 -2.4,2.4,a-vale-i1,2021-22,Newton-Bigelow Middle,02070305, 94.3, 10.0, 37.6, 14.0, 3.5, 4.6 +4.32,4.32,a-vale-i1,2021-22,Newton-A E Angier,02070005, 95.2, 8.5, 36.5, 9.2, 0.2, 0.7 +0.8,1,a-vale-i1,2021-22,Newton-Newton South High,02070510, 93.5, 11.3, 40.5, 18.0, 5.9, 8.7 +3.9200000000000004,3.92,a-vale-i1,2021-22,Newton-C C Burr,02070020, 95.0, 8.8, 33.5, 10.2, 1.9, 4.1 3.2,3.2,a-vale-i1,2021-22,Newton-Cabot,02070025, 94.7, 9.4, 37.1, 12.0, 1.4, 9.6 2.5200000000000005,2.52,a-vale-i1,2021-22,Newton-Countryside,02070040, 94.5, 9.7, 42.0, 13.7, 1.0, 0.8 3.6799999999999997,3.68,a-vale-i1,2021-22,Newton-Franklin,02070055, 94.6, 9.7, 42.5, 10.8, 1.2, 0.0 @@ -1121,50 +1122,49 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.8,5,a-vale-i1,2021-22,Newton-John Ward,02070120, 95.3, 8.3, 34.9, 5.5, 0.5, 0.0 2.16,2.16,a-vale-i1,2021-22,Newton-Williams,02070125, 94.2, 10.1, 42.1, 14.6, 0.4, 5.2 3.4,3.4,a-vale-i1,2021-22,Newton-Zervas,02070130, 94.8, 9.0, 33.3, 11.5, 2.5, 1.4 -4.32,4.32,a-vale-i1,2021-22,Newton-A E Angier,02070005, 95.2, 8.5, 36.5, 9.2, 0.2, 0.7 -0.8,1,a-vale-i1,2021-22,Newton-Newton South High,02070510, 93.5, 11.3, 40.5, 18.0, 5.9, 8.7 --1.8400000000000005,1,a-vale-i1,2021-22,Newton-Newton North High,02070505, 92.2, 13.7, 48.6, 24.6, 8.1, 10.4 -3.04,3.04,a-vale-i1,2021-22,Newton-Oak Hill Middle,02070320, 94.6, 9.5, 39.4, 12.4, 1.6, 2.8 -2.3600000000000003,2.36,a-vale-i1,2021-22,Newton-F A Day Middle,02070315, 94.1, 10.5, 42.7, 14.1, 2.5, 5.0 +2.4,2.4,a-vale-i1,2021-22,Newton-Bigelow Middle,02070305, 94.3, 10.0, 37.6, 14.0, 3.5, 4.6 3.5200000000000005,3.52,a-vale-i1,2021-22,Newton-Charles E Brown Middle,02070310, 94.9, 9.1, 34.8, 11.2, 2.3, 1.3 -3.9200000000000004,3.92,a-vale-i1,2021-22,Newton-C C Burr,02070020, 95.0, 8.8, 33.5, 10.2, 1.9, 4.1 -1.7200000000000002,1.72,a-vale-i1,2021-22,Norfolk-H Olive Day,02080015, 94.3, 10.3, 46.9, 15.7, 0.2, 0.0 +2.3600000000000003,2.36,a-vale-i1,2021-22,Newton-F A Day Middle,02070315, 94.1, 10.5, 42.7, 14.1, 2.5, 5.0 +3.04,3.04,a-vale-i1,2021-22,Newton-Oak Hill Middle,02070320, 94.6, 9.5, 39.4, 12.4, 1.6, 2.8 +-1.8400000000000005,1,a-vale-i1,2021-22,Newton-Newton North High,02070505, 92.2, 13.7, 48.6, 24.6, 8.1, 10.4 +2.3200000000000003,2.32,a-vale-i1,2021-22,Newton-Bowen,02070015, 94.5, 9.7, 37.9, 14.2, 2.0, 0.9 4.08,4.08,a-vale-i1,2021-22,Norfolk-Freeman-Kennedy School,02080005, 95.1, 8.7, 34.8, 9.8, 0.4, 0.0 +1.7200000000000002,1.72,a-vale-i1,2021-22,Norfolk-H Olive Day,02080015, 94.3, 10.3, 46.9, 15.7, 0.2, 0.0 -2.28,1,a-vale-i1,2021-22,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 92.1, 13.8, 58.9, 25.7, 5.8, 44.0 --10.040000000000001,1,a-vale-i1,2021-22,North Adams-Brayton,02090035, 88.7, 18.7, 74.3, 45.1, 15.0, 41.5 --8.36,1,a-vale-i1,2021-22,North Adams-Colegrove Park Elementary,02090008, 89.3, 18.9, 73.2, 40.9, 9.3, 40.9 -13.48,1,a-vale-i1,2021-22,North Adams-Drury High,02090505, 84.4, 26.2, 76.9, 53.7, 28.9, 71.1 +-10.040000000000001,1,a-vale-i1,2021-22,North Adams-Brayton,02090035, 88.7, 18.7, 74.3, 45.1, 15.0, 41.5 -7.840000000000001,1,a-vale-i1,2021-22,North Adams-Greylock,02090015, 90.1, 17.3, 73.3, 39.6, 10.4, 64.8 -2.5200000000000005,2.52,a-vale-i1,2021-22,North Andover-Kittredge,02110015, 93.7, 11.2, 56.4, 13.7, 0.4, 2.2 -3.04,3.04,a-vale-i1,2021-22,North Andover-Franklin,02110010, 94.2, 10.2, 48.4, 12.4, 0.3, 3.1 +-8.36,1,a-vale-i1,2021-22,North Adams-Colegrove Park Elementary,02090008, 89.3, 18.9, 73.2, 40.9, 9.3, 40.9 -1.2799999999999998,1,a-vale-i1,2021-22,North Andover-North Andover High,02110505, 92.1, 13.9, 50.9, 23.2, 7.0, 12.4 -1.8399999999999999,1.84,a-vale-i1,2021-22,North Andover-Annie L Sargent School,02110018, 93.9, 10.8, 50.7, 15.4, 1.7, 1.9 -4.2,1,a-vale-i1,2021-22,North Andover-Anne Bradstreet Early Childhood Center,02110005, 91.7, 14.2, 62.2, 30.5, 6.6, 0.0 -1.0799999999999996,1.08,a-vale-i1,2021-22,North Andover-Atkinson,02110001, 93.6, 11.1, 52.0, 17.3, 1.0, 5.4 -5.76,5,a-vale-i1,2021-22,North Andover-North Andover Middle,02110305, 97.0, 5.3, 15.6, 5.6, 1.0, 9.5 +3.04,3.04,a-vale-i1,2021-22,North Andover-Franklin,02110010, 94.2, 10.2, 48.4, 12.4, 0.3, 3.1 +2.5200000000000005,2.52,a-vale-i1,2021-22,North Andover-Kittredge,02110015, 93.7, 11.2, 56.4, 13.7, 0.4, 2.2 +1.8399999999999999,1.84,a-vale-i1,2021-22,North Andover-Annie L Sargent School,02110018, 93.9, 10.8, 50.7, 15.4, 1.7, 1.9 1.2799999999999998,1.28,a-vale-i1,2021-22,North Andover-Thomson,02110020, 93.5, 11.6, 55.6, 16.8, 2.5, 6.7 --0.5200000000000002,1,a-vale-i1,2021-22,North Attleborough-North Attleborough Middle,02120305, 93.1, 12.2, 51.1, 21.3, 4.7, 31.9 +5.76,5,a-vale-i1,2021-22,North Andover-North Andover Middle,02110305, 97.0, 5.3, 15.6, 5.6, 1.0, 9.5 +1.0799999999999996,1.08,a-vale-i1,2021-22,North Andover-Atkinson,02110001, 93.6, 11.1, 52.0, 17.3, 1.0, 5.4 -1.2799999999999998,1,a-vale-i1,2021-22,North Attleborough-North Attleboro High,02120505, 91.9, 14.1, 48.2, 23.2, 8.7, 27.6 --1.2799999999999998,1,a-vale-i1,2021-22,North Attleborough-Amvet Boulevard,02120007, 92.8, 12.4, 57.5, 23.2, 4.2, 29.9 -1.7600000000000002,1.76,a-vale-i1,2021-22,North Attleborough-Falls,02120010, 93.6, 11.3, 54.5, 15.6, 0.9, 18.8 -2.4799999999999995,2.48,a-vale-i1,2021-22,North Attleborough-Joseph W Martin Jr Elementary,02120013, 93.9, 10.7, 49.2, 13.8, 1.3, 20.0 1.9600000000000002,1.96,a-vale-i1,2021-22,North Attleborough-Roosevelt Avenue,02120015, 94.0, 10.7, 52.5, 15.1, 0.0, 4.6 --6.24,1,a-vale-i1,2021-22,North Attleborough-North Attleborough Early Learning Center,02120020, 90.8, 13.5, 60.7, 35.6, 9.9, 17.3 +-0.5200000000000002,1,a-vale-i1,2021-22,North Attleborough-North Attleborough Middle,02120305, 93.1, 12.2, 51.1, 21.3, 4.7, 31.9 -3.6,1,a-vale-i1,2021-22,North Attleborough-Community,02120030, 91.9, 14.0, 65.9, 29.0, 3.1, 45.5 +2.4799999999999995,2.48,a-vale-i1,2021-22,North Attleborough-Joseph W Martin Jr Elementary,02120013, 93.9, 10.7, 49.2, 13.8, 1.3, 20.0 +-1.2799999999999998,1,a-vale-i1,2021-22,North Attleborough-Amvet Boulevard,02120007, 92.8, 12.4, 57.5, 23.2, 4.2, 29.9 +-6.24,1,a-vale-i1,2021-22,North Attleborough-North Attleborough Early Learning Center,02120020, 90.8, 13.5, 60.7, 35.6, 9.9, 17.3 +1.7600000000000002,1.76,a-vale-i1,2021-22,North Attleborough-Falls,02120010, 93.6, 11.3, 54.5, 15.6, 0.9, 18.8 1.0799999999999996,1.08,a-vale-i1,2021-22,North Brookfield-North Brookfield Elementary,02150015, 93.7, 11.0, 46.7, 17.3, 1.6, 46.7 -2.72,1,a-vale-i1,2021-22,North Brookfield-North Brookfield High,02150505, 91.2, 14.7, 51.4, 26.8, 10.4, 51.4 --4.32,1,a-vale-i1,2021-22,North Middlesex-Ashby Elementary,07350010, 92.3, 13.7, 60.8, 30.8, 1.4, 30.1 --3.28,1,a-vale-i1,2021-22,North Middlesex-Hawthorne Brook,07350030, 91.9, 14.1, 60.0, 28.2, 6.5, 35.1 --1.2400000000000007,1,a-vale-i1,2021-22,North Middlesex-Varnum Brook,07350035, 93.0, 12.2, 55.1, 23.1, 2.6, 31.2 -0.07999999999999971,1,a-vale-i1,2021-22,North Middlesex-Spaulding Memorial,07350005, 93.1, 12.0, 56.6, 19.8, 1.3, 26.2 --3.5599999999999996,1,a-vale-i1,2021-22,North Middlesex-Squannacook Early Childhood Center,07350002, 91.8, 9.6, 43.0, 28.9, 6.1, 42.1 -2.9599999999999995,1,a-vale-i1,2021-22,North Middlesex-North Middlesex Regional,07350505, 90.9, 15.8, 57.7, 27.4, 8.5, 35.4 -1.3599999999999994,1,a-vale-i1,2021-22,North Middlesex-Nissitissit Middle School,07350310, 92.8, 12.6, 55.3, 23.4, 3.5, 29.7 -1.2,1.2,a-vale-i1,2021-22,North Reading-North Reading High,02170505, 93.5, 11.4, 42.2, 17.0, 4.7, 0.5 +-1.2400000000000007,1,a-vale-i1,2021-22,North Middlesex-Varnum Brook,07350035, 93.0, 12.2, 55.1, 23.1, 2.6, 31.2 +-3.28,1,a-vale-i1,2021-22,North Middlesex-Hawthorne Brook,07350030, 91.9, 14.1, 60.0, 28.2, 6.5, 35.1 +-4.32,1,a-vale-i1,2021-22,North Middlesex-Ashby Elementary,07350010, 92.3, 13.7, 60.8, 30.8, 1.4, 30.1 +0.07999999999999971,1,a-vale-i1,2021-22,North Middlesex-Spaulding Memorial,07350005, 93.1, 12.0, 56.6, 19.8, 1.3, 26.2 +-3.5599999999999996,1,a-vale-i1,2021-22,North Middlesex-Squannacook Early Childhood Center,07350002, 91.8, 9.6, 43.0, 28.9, 6.1, 42.1 2.04,2.04,a-vale-i1,2021-22,North Reading-North Reading Middle,02170305, 94.0, 10.7, 42.7, 14.9, 2.1, 1.9 3.4,3.4,a-vale-i1,2021-22,North Reading-J Turner Hood,02170010, 94.4, 9.8, 46.2, 11.5, 0.5, 0.0 2.5200000000000005,2.52,a-vale-i1,2021-22,North Reading-L D Batchelder,02170005, 94.1, 10.5, 52.1, 13.7, 0.2, 0.0 2.96,2.96,a-vale-i1,2021-22,North Reading-E Ethel Little School,02170003, 94.4, 10.0, 47.7, 12.6, 0.0, 46.7 +1.2,1.2,a-vale-i1,2021-22,North Reading-North Reading High,02170505, 93.5, 11.4, 42.2, 17.0, 4.7, 0.5 -0.5200000000000002,1,a-vale-i1,2021-22,Northampton-Northampton High,02100505, 91.8, 14.4, 51.0, 21.3, 7.4, 29.5 -2.6799999999999997,1,a-vale-i1,2021-22,Northampton-John F Kennedy Middle School,02100410, 92.2, 13.7, 54.3, 26.7, 6.6, 39.4 -0.15999999999999942,1,a-vale-i1,2021-22,Northampton-R. K. Finn Ryan Road,02100029, 92.8, 12.7, 56.0, 20.4, 4.0, 9.2 @@ -1173,286 +1173,334 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -8.2,1,a-vale-i1,2021-22,Northampton-Bridge Street,02100005, 90.2, 16.2, 65.6, 40.5, 11.9, 54.1 -1.6799999999999997,1,a-vale-i1,2021-22,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 91.8, 14.4, 54.2, 24.2, 8.3, 29.1 -0.5599999999999994,1,a-vale-i1,2021-22,Northboro-Southboro-Algonquin Regional High,07300505, 93.3, 11.8, 44.2, 21.4, 5.0, 8.7 -1.0799999999999996,1.08,a-vale-i1,2021-22,Northborough-Robert E. Melican Middle School,02130305, 93.8, 10.9, 46.2, 17.3, 2.4, 0.0 -0.2,1,a-vale-i1,2021-22,Northborough-Lincoln Street,02130003, 93.6, 11.2, 50.9, 19.5, 1.1, 0.0 -2.3200000000000003,2.32,a-vale-i1,2021-22,Northborough-Marion E Zeh,02130020, 94.4, 9.9, 44.5, 14.2, 0.0, 0.0 -1.9599999999999995,1,a-vale-i1,2021-22,Northborough-Fannie E Proctor,02130015, 92.4, 13.1, 64.2, 24.9, 2.3, 0.0 1.2799999999999998,1.28,a-vale-i1,2021-22,Northborough-Marguerite E Peaslee,02130014, 93.8, 10.8, 47.3, 16.8, 0.8, 5.7 +0.2,1,a-vale-i1,2021-22,Northborough-Lincoln Street,02130003, 93.6, 11.2, 50.9, 19.5, 1.1, 0.0 +1.0799999999999996,1.08,a-vale-i1,2021-22,Northborough-Robert E. Melican Middle School,02130305, 93.8, 10.9, 46.2, 17.3, 2.4, 0.0 +2.3200000000000003,2.32,a-vale-i1,2021-22,Northborough-Marion E Zeh,02130020, 94.4, 9.9, 44.5, 14.2, 0.0, 0.0 -3.6799999999999997,1,a-vale-i1,2021-22,Northbridge-Northbridge Middle,02140305, 91.7, 14.5, 52.7, 29.2, 6.9, 30.0 --5.719999999999999,1,a-vale-i1,2021-22,Northbridge-Northbridge Elementary School,02140001, 91.2, 14.9, 65.3, 34.3, 7.4, 31.1 -6.24,1,a-vale-i1,2021-22,Northbridge-Northbridge High,02140505, 89.9, 17.0, 59.2, 35.6, 13.3, 41.1 +-5.719999999999999,1,a-vale-i1,2021-22,Northbridge-Northbridge Elementary School,02140001, 91.2, 14.9, 65.3, 34.3, 7.4, 31.1 -1.5200000000000002,1,a-vale-i1,2021-22,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 92.4, 13.1, 53.1, 23.8, 5.7, 36.8 -5.119999999999999,1,a-vale-i1,2021-22,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 91.1, 15.8, 66.5, 32.8, 6.6, 49.4 1.8,1.8,a-vale-i1,2021-22,Norton-Henri A. Yelle,02180060, 93.5, 11.5, 49.7, 15.5, 2.2, 38.7 --0.15999999999999942,1,a-vale-i1,2021-22,Norton-J C Solmonese,02180015, 93.1, 12.0, 54.9, 20.4, 2.6, 36.2 -0.5200000000000002,1,a-vale-i1,2021-22,Norton-Norton Middle,02180305, 92.9, 12.5, 52.2, 21.3, 5.1, 32.9 -0.4799999999999997,1,a-vale-i1,2021-22,Norton-Norton High,02180505, 92.6, 12.9, 47.6, 21.2, 6.1, 14.1 -1.5200000000000002,1,a-vale-i1,2021-22,Norton-L G Nourse Elementary,02180010, 92.4, 13.3, 63.1, 23.8, 4.3, 39.0 +-0.15999999999999942,1,a-vale-i1,2021-22,Norton-J C Solmonese,02180015, 93.1, 12.0, 54.9, 20.4, 2.6, 36.2 3.2,3.2,a-vale-i1,2021-22,Norwell-Norwell Middle School,02190405, 94.4, 10.0, 43.4, 12.0, 1.4, 28.5 -2.6,2.6,a-vale-i1,2021-22,Norwell-Grace Farrar Cole,02190005, 94.1, 10.3, 48.9, 13.5, 0.7, 26.4 0.5200000000000002,1,a-vale-i1,2021-22,Norwell-William G Vinal,02190020, 93.5, 11.5, 56.6, 18.7, 1.1, 35.0 +2.6,2.6,a-vale-i1,2021-22,Norwell-Grace Farrar Cole,02190005, 94.1, 10.3, 48.9, 13.5, 0.7, 26.4 0.4,1,a-vale-i1,2021-22,Norwell-Norwell High,02190505, 93.3, 11.7, 48.3, 19.0, 2.2, 24.6 +-3.9599999999999995,1,a-vale-i1,2021-22,Norwood-Charles J Prescott,02200025, 92.4, 12.8, 52.2, 29.9, 4.1, 52.2 -8.12,1,a-vale-i1,2021-22,Norwood-George F. Willett,02200075, 89.6, 16.6, 58.3, 40.3, 13.1, 56.2 -3.9599999999999995,1,a-vale-i1,2021-22,Norwood-Dr. Philip O. Coakley Middle School,02200305, 91.7, 14.3, 55.1, 29.9, 6.2, 42.3 --3.9599999999999995,1,a-vale-i1,2021-22,Norwood-Charles J Prescott,02200025, 92.4, 12.8, 52.2, 29.9, 4.1, 52.2 0.44000000000000056,1,a-vale-i1,2021-22,Norwood-John P Oldham,02200020, 93.7, 10.9, 41.8, 18.9, 4.7, 30.9 --3.28,1,a-vale-i1,2021-22,Norwood-Norwood High,02200505, 91.1, 15.3, 49.3, 28.2, 11.0, 36.0 -1.0400000000000005,1.04,a-vale-i1,2021-22,Norwood-Cornelius M Callahan,02200010, 93.8, 10.7, 45.5, 17.4, 3.0, 45.5 -0.8,1,a-vale-i1,2021-22,Norwood-F A Cleveland,02200015, 92.9, 12.4, 52.1, 22.0, 3.2, 51.8 +-3.28,1,a-vale-i1,2021-22,Norwood-Norwood High,02200505, 91.1, 15.3, 49.3, 28.2, 11.0, 36.0 -3.72,1,a-vale-i1,2021-22,Norwood-Balch,02200005, 92.2, 13.5, 57.0, 29.3, 5.2, 57.0 +1.0400000000000005,1.04,a-vale-i1,2021-22,Norwood-Cornelius M Callahan,02200010, 93.8, 10.7, 45.5, 17.4, 3.0, 45.5 -3.0799999999999996,1,a-vale-i1,2021-22,Oak Bluffs-Oak Bluffs Elementary,02210005, 92.6, 12.3, 55.8, 27.7, 2.1, 10.7 0.2,1,a-vale-i1,2021-22,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 93.6, 11.2, 44.6, 19.5, 2.8, 15.5 1.0799999999999996,1.08,a-vale-i1,2021-22,Old Rochester-Old Rochester Regional Jr High,07400405, 94.1, 10.6, 47.1, 17.3, 1.4, 0.7 -7.640000000000001,1,a-vale-i1,2021-22,Old Rochester-Old Rochester Regional High,07400505, 90.4, 16.9, 71.5, 39.1, 6.7, 2.3 -1.7599999999999993,1,a-vale-i1,2021-22,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 92.5, 13.5, 66.5, 24.4, 0.9, 20.7 --5.4,1,a-vale-i1,2021-22,Orange-Fisher Hill,02230015, 91.9, 13.6, 44.0, 33.5, 12.8, 0.0 5.96,5,a-vale-i1,2021-22,Orange-Dexter Park,02230010, 96.9, 5.4, 14.0, 5.1, 0.7, 0.0 +-5.4,1,a-vale-i1,2021-22,Orange-Fisher Hill,02230015, 91.9, 13.6, 44.0, 33.5, 12.8, 0.0 -1.5200000000000002,1,a-vale-i1,2021-22,Orleans-Orleans Elementary,02240005, 92.2, 13.8, 64.9, 23.8, 3.0, 30.4 --7.6,1,a-vale-i1,2021-22,Oxford-Oxford High,02260505, 88.2, 20.1, 63.7, 39.0, 16.5, 4.5 -2.7599999999999993,1,a-vale-i1,2021-22,Oxford-Clara Barton,02260005, 92.3, 13.4, 60.2, 26.9, 4.5, 1.5 -0.15999999999999942,1,a-vale-i1,2021-22,Oxford-Alfred M Chaffee,02260010, 92.3, 13.6, 63.9, 20.4, 2.7, 1.0 -5.640000000000001,1,a-vale-i1,2021-22,Oxford-Oxford Middle,02260405, 90.7, 16.5, 73.9, 34.1, 4.8, 1.2 +-7.6,1,a-vale-i1,2021-22,Oxford-Oxford High,02260505, 88.2, 20.1, 63.7, 39.0, 16.5, 4.5 -3.72,1,a-vale-i1,2021-22,Palmer-Palmer High,02270505, 91.2, 14.8, 53.7, 29.3, 9.9, 35.2 -3.6400000000000006,1,a-vale-i1,2021-22,Palmer-Old Mill Pond,02270008, 92.4, 12.7, 56.5, 29.1, 4.7, 31.7 -2.9599999999999995,1,a-vale-i1,2021-22,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 91.8, 14.3, 57.1, 27.4, 7.9, 23.6 -21.52,1,a-vale-i1,2021-22,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 69.5, 50.1, 83.8, 73.8, 51.7, 73.8 +-5.3199999999999985,1,a-vale-i1,2021-22,Peabody-John E. McCarthy,02290016, 90.7, 15.4, 67.2, 33.3, 9.0, 67.2 +-5.56,1,a-vale-i1,2021-22,Peabody-Thomas Carroll,02290010, 91.9, 13.7, 64.9, 33.9, 2.2, 64.9 +-2.2,1,a-vale-i1,2021-22,Peabody-John E Burke,02290007, 92.9, 12.7, 62.8, 25.5, 0.8, 62.8 +-0.8799999999999997,1,a-vale-i1,2021-22,Peabody-Captain Samuel Brown,02290005, 92.7, 13.0, 61.4, 22.2, 4.1, 61.4 0.24000000000000057,1,a-vale-i1,2021-22,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 92.7, 12.3, 33.3, 19.4, 9.3, 0.0 -10.559999999999999,1,a-vale-i1,2021-22,Peabody-Peabody Veterans Memorial High,02290510, 87.3, 21.6, 66.8, 46.4, 20.9, 66.7 -3.28,1,a-vale-i1,2021-22,Peabody-J Henry Higgins Middle,02290305, 92.2, 13.6, 56.9, 28.2, 5.2, 56.6 -0.44000000000000056,1,a-vale-i1,2021-22,Peabody-West Memorial,02290045, 93.2, 11.8, 57.5, 21.1, 0.8, 57.1 0.6400000000000006,1,a-vale-i1,2021-22,Peabody-South Memorial,02290035, 93.6, 11.4, 54.2, 18.4, 1.2, 54.2 --5.56,1,a-vale-i1,2021-22,Peabody-Thomas Carroll,02290010, 91.9, 13.7, 64.9, 33.9, 2.2, 64.9 --5.3199999999999985,1,a-vale-i1,2021-22,Peabody-John E. McCarthy,02290016, 90.7, 15.4, 67.2, 33.3, 9.0, 67.2 --5.959999999999999,1,a-vale-i1,2021-22,Peabody-Center,02290015, 91.2, 15.1, 70.1, 34.9, 3.9, 70.1 --0.8799999999999997,1,a-vale-i1,2021-22,Peabody-Captain Samuel Brown,02290005, 92.7, 13.0, 61.4, 22.2, 4.1, 61.4 --2.2,1,a-vale-i1,2021-22,Peabody-John E Burke,02290007, 92.9, 12.7, 62.8, 25.5, 0.8, 62.8 -6.4,1,a-vale-i1,2021-22,Peabody-William A Welch Sr,02290027, 90.9, 15.2, 68.3, 36.0, 8.9, 68.3 +-5.959999999999999,1,a-vale-i1,2021-22,Peabody-Center,02290015, 91.2, 15.1, 70.1, 34.9, 3.9, 70.1 4.08,4.08,a-vale-i1,2021-22,Pelham-Pelham Elementary,02300005, 95.3, 8.3, 38.5, 9.8, 0.0, 0.8 --2.28,1,a-vale-i1,2021-22,Pembroke-Hobomock Elementary,02310010, 92.4, 13.5, 67.1, 25.7, 2.7, 0.0 -0.4,1,a-vale-i1,2021-22,Pembroke-North Pembroke Elementary,02310015, 93.1, 12.1, 58.9, 19.0, 2.1, 0.0 -0.2,1,a-vale-i1,2021-22,Pembroke-Bryantville Elementary,02310003, 93.5, 11.6, 51.6, 19.5, 2.0, 0.0 -2.8400000000000007,1,a-vale-i1,2021-22,Pembroke-Pembroke High School,02310505, 91.9, 14.3, 59.0, 27.1, 7.0, 0.0 +0.2,1,a-vale-i1,2021-22,Pembroke-Bryantville Elementary,02310003, 93.5, 11.6, 51.6, 19.5, 2.0, 0.0 -2.6400000000000006,1,a-vale-i1,2021-22,Pembroke-Pembroke Community Middle School,02310305, 92.1, 14.1, 59.0, 26.6, 5.3, 0.0 -1.9200000000000004,1.92,a-vale-i1,2021-22,Pentucket-Elmer S Bagnall,07450005, 93.9, 10.8, 49.6, 15.2, 1.0, 7.1 -0.4,1,a-vale-i1,2021-22,Pentucket-Helen R Donaghue School,07450010, 93.2, 11.9, 58.9, 19.0, 1.2, 2.3 -2.5200000000000005,2.52,a-vale-i1,2021-22,Pentucket-Dr John C Page School,07450015, 94.5, 9.7, 41.7, 13.7, 1.0, 4.8 +0.4,1,a-vale-i1,2021-22,Pembroke-North Pembroke Elementary,02310015, 93.1, 12.1, 58.9, 19.0, 2.1, 0.0 +-2.28,1,a-vale-i1,2021-22,Pembroke-Hobomock Elementary,02310010, 92.4, 13.5, 67.1, 25.7, 2.7, 0.0 -1.4,1,a-vale-i1,2021-22,Pentucket-Pentucket Regional Sr High,07450505, 92.3, 13.5, 50.4, 23.5, 5.8, 6.6 +2.5200000000000005,2.52,a-vale-i1,2021-22,Pentucket-Dr John C Page School,07450015, 94.5, 9.7, 41.7, 13.7, 1.0, 4.8 1.7200000000000002,1.72,a-vale-i1,2021-22,Pentucket-Pentucket Regional Middle,07450405, 93.7, 11.2, 47.8, 15.7, 3.3, 7.4 -2.72,1,a-vale-i1,2021-22,Pentucket-Dr Frederick N Sweetsir,07450020, 92.5, 13.0, 59.5, 26.8, 2.3, 3.6 +1.9200000000000004,1.92,a-vale-i1,2021-22,Pentucket-Elmer S Bagnall,07450005, 93.9, 10.8, 49.6, 15.2, 1.0, 7.1 +0.4,1,a-vale-i1,2021-22,Pentucket-Helen R Donaghue School,07450010, 93.2, 11.9, 58.9, 19.0, 1.2, 2.3 8.0,5,a-vale-i1,2021-22,Petersham-Petersham Center,02340005, 99.6, 0.7, 0.0, 0.0, 0.0, 0.0 -31.8,1,a-vale-i1,2021-22,Phoenix Academy Public Charter High School Lawrence (District)-Phoenix Academy Public Charter High School Lawrence,35180505, 31.6, 83.3, 98.4, 99.5, 97.4, 5.8 -31.48,1,a-vale-i1,2021-22,Phoenix Academy Public Charter High School Springfield (District)-Phoenix Academy Public Charter High School Springfield,35080505, 34.3, 81.1, 97.0, 98.7, 94.0, 0.9 -29.6,1,a-vale-i1,2021-22,Phoenix Charter Academy (District)-Phoenix Charter Academy,04930505, 37.8, 82.1, 97.6, 94.0, 88.7, 0.8 4.5200000000000005,4.52,a-vale-i1,2021-22,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 94.8, 9.9, 44.5, 8.7, 0.8, 13.6 4.720000000000001,4.72,a-vale-i1,2021-22,Pioneer Charter School of Science II (PCSS-II) (District)-Pioneer Charter School of Science II (PCSS-II),35060505, 95.2, 9.1, 41.2, 8.2, 1.0, 10.8 -0.8,1,a-vale-i1,2021-22,Pioneer Valley-Pioneer Valley Regional,07500505, 92.7, 12.6, 42.3, 18.0, 7.7, 17.3 0.07999999999999971,1,a-vale-i1,2021-22,Pioneer Valley-Northfield Elementary,07500008, 93.0, 12.2, 61.8, 19.8, 1.4, 6.8 -0.44000000000000056,1,a-vale-i1,2021-22,Pioneer Valley-Bernardston Elementary,07500006, 92.8, 12.0, 59.8, 21.1, 2.5, 3.0 +0.8,1,a-vale-i1,2021-22,Pioneer Valley-Pioneer Valley Regional,07500505, 92.7, 12.6, 42.3, 18.0, 7.7, 17.3 -0.04000000000000057,1,a-vale-i1,2021-22,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 93.7, 10.9, 41.8, 20.1, 5.3, 0.7 -8.719999999999999,1,a-vale-i1,2021-22,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 89.3, 18.0, 69.6, 41.8, 12.8, 2.7 +-18.68,1,a-vale-i1,2021-22,Pittsfield-Eagle Education Academy,02360525, 72.5, 43.7, 75.0, 66.7, 54.2, 41.7 +-4.919999999999999,1,a-vale-i1,2021-22,Pittsfield-Pittsfield Public Virtual Academy,02360705, 90.1, 17.0, 52.6, 32.3, 16.1, 0.5 +-3.2400000000000007,1,a-vale-i1,2021-22,Pittsfield-Allendale,02360010, 92.1, 14.0, 59.8, 28.1, 4.0, 0.0 -22.6,1,a-vale-i1,2021-22,Pittsfield-Crosby Educational Academy,02360030, 86.4, 22.4, 88.2, 76.5, 23.5, 17.6 -1.7599999999999993,1,a-vale-i1,2021-22,Pittsfield-Egremont,02360035, 93.0, 12.3, 47.7, 24.4, 4.7, 0.7 -0.6,1,a-vale-i1,2021-22,Pittsfield-Robert T. Capeless Elementary School,02360045, 93.2, 11.9, 49.1, 21.5, 3.7, 1.2 -8.8,1,a-vale-i1,2021-22,Pittsfield-Morningside Community School,02360055, 88.6, 20.2, 71.8, 42.0, 14.9, 4.9 -9.040000000000001,1,a-vale-i1,2021-22,Pittsfield-Crosby,02360065, 89.2, 18.7, 69.0, 42.6, 13.0, 7.9 -0.24000000000000057,1,a-vale-i1,2021-22,Pittsfield-Stearns,02360090, 93.1, 12.2, 59.6, 20.6, 3.1, 1.8 --18.68,1,a-vale-i1,2021-22,Pittsfield-Eagle Education Academy,02360525, 72.5, 43.7, 75.0, 66.7, 54.2, 41.7 --9.040000000000001,1,a-vale-i1,2021-22,Pittsfield-Taconic High,02360510, 87.7, 21.5, 64.8, 42.6, 19.4, 8.7 --12.919999999999998,1,a-vale-i1,2021-22,Pittsfield-Pittsfield High,02360505, 82.8, 29.7, 70.6, 52.3, 28.8, 14.3 --4.5200000000000005,1,a-vale-i1,2021-22,Pittsfield-Theodore Herberg Middle,02360310, 91.8, 14.4, 54.7, 31.3, 7.5, 2.9 --4.919999999999999,1,a-vale-i1,2021-22,Pittsfield-Pittsfield Public Virtual Academy,02360705, 90.1, 17.0, 52.6, 32.3, 16.1, 0.5 --12.959999999999999,1,a-vale-i1,2021-22,Pittsfield-Silvio O Conte Community,02360105, 87.6, 21.4, 77.1, 52.4, 19.2, 4.0 2.8,2.8,a-vale-i1,2021-22,Pittsfield-Williams,02360100, 95.1, 8.7, 32.2, 13.0, 1.1, 0.8 --3.2400000000000007,1,a-vale-i1,2021-22,Pittsfield-Allendale,02360010, 92.1, 14.0, 59.8, 28.1, 4.0, 0.0 +-12.959999999999999,1,a-vale-i1,2021-22,Pittsfield-Silvio O Conte Community,02360105, 87.6, 21.4, 77.1, 52.4, 19.2, 4.0 -9.080000000000002,1,a-vale-i1,2021-22,Pittsfield-John T Reid Middle,02360305, 88.3, 20.1, 62.7, 42.7, 18.5, 4.7 +-4.5200000000000005,1,a-vale-i1,2021-22,Pittsfield-Theodore Herberg Middle,02360310, 91.8, 14.4, 54.7, 31.3, 7.5, 2.9 +-12.919999999999998,1,a-vale-i1,2021-22,Pittsfield-Pittsfield High,02360505, 82.8, 29.7, 70.6, 52.3, 28.8, 14.3 +-9.040000000000001,1,a-vale-i1,2021-22,Pittsfield-Taconic High,02360510, 87.7, 21.5, 64.8, 42.6, 19.4, 8.7 0.4,1,a-vale-i1,2021-22,Plainville-Beatrice H Wood Elementary,02380005, 93.6, 11.3, 47.5, 19.0, 2.5, 8.2 -2.0799999999999996,1,a-vale-i1,2021-22,Plainville-Anna Ware Jackson,02380010, 92.0, 14.0, 63.9, 25.2, 6.1, 8.1 +-4.840000000000001,1,a-vale-i1,2021-22,Plymouth-Hedge,02390010, 91.6, 13.8, 58.4, 32.1, 4.1, 44.8 +-1.8,1,a-vale-i1,2021-22,Plymouth-Cold Spring,02390005, 92.9, 12.0, 54.0, 24.5, 3.0, 40.1 +1.0799999999999996,1.08,a-vale-i1,2021-22,Plymouth-Plymouth Early Childhood Center,02390003, 93.6, 10.4, 36.9, 17.3, 5.3, 36.0 +0.8,1,a-vale-i1,2021-22,Plymouth-Manomet Elementary,02390015, 93.6, 11.3, 55.1, 18.0, 1.2, 27.0 +-1.4400000000000006,1,a-vale-i1,2021-22,Plymouth-Plymouth South High,02390515, 92.2, 13.5, 52.5, 23.6, 7.8, 24.7 +-2.6400000000000006,1,a-vale-i1,2021-22,Plymouth-Plymouth North High,02390505, 91.4, 14.6, 54.5, 26.6, 9.0, 25.1 +-1.2400000000000007,1,a-vale-i1,2021-22,Plymouth-Federal Furnace School,02390011, 92.8, 12.7, 57.6, 23.1, 3.2, 30.8 +-0.4799999999999997,1,a-vale-i1,2021-22,Plymouth-Indian Brook,02390012, 93.0, 12.4, 56.5, 21.2, 2.3, 29.7 +-1.4799999999999998,1,a-vale-i1,2021-22,Plymouth-Nathaniel Morton Elementary,02390030, 92.9, 12.5, 58.2, 23.7, 2.5, 35.5 -0.8799999999999997,1,a-vale-i1,2021-22,Plymouth-South Elementary,02390046, 92.7, 12.8, 58.0, 22.2, 2.3, 35.2 -1.1200000000000003,1,a-vale-i1,2021-22,Plymouth-West Elementary,02390047, 92.4, 13.5, 68.6, 22.8, 2.1, 41.9 -3.2400000000000007,1,a-vale-i1,2021-22,Plymouth-Plymouth South Middle,02390305, 92.0, 14.1, 60.2, 28.1, 4.9, 34.2 -4.4799999999999995,1,a-vale-i1,2021-22,Plymouth-Plymouth Commun Intermediate,02390405, 91.5, 14.9, 62.4, 31.2, 6.4, 41.7 --2.6400000000000006,1,a-vale-i1,2021-22,Plymouth-Plymouth North High,02390505, 91.4, 14.6, 54.5, 26.6, 9.0, 25.1 --1.4400000000000006,1,a-vale-i1,2021-22,Plymouth-Plymouth South High,02390515, 92.2, 13.5, 52.5, 23.6, 7.8, 24.7 --0.4799999999999997,1,a-vale-i1,2021-22,Plymouth-Indian Brook,02390012, 93.0, 12.4, 56.5, 21.2, 2.3, 29.7 -0.8,1,a-vale-i1,2021-22,Plymouth-Manomet Elementary,02390015, 93.6, 11.3, 55.1, 18.0, 1.2, 27.0 --1.4799999999999998,1,a-vale-i1,2021-22,Plymouth-Nathaniel Morton Elementary,02390030, 92.9, 12.5, 58.2, 23.7, 2.5, 35.5 -1.0799999999999996,1.08,a-vale-i1,2021-22,Plymouth-Plymouth Early Childhood Center,02390003, 93.6, 10.4, 36.9, 17.3, 5.3, 36.0 --1.8,1,a-vale-i1,2021-22,Plymouth-Cold Spring,02390005, 92.9, 12.0, 54.0, 24.5, 3.0, 40.1 --4.840000000000001,1,a-vale-i1,2021-22,Plymouth-Hedge,02390010, 91.6, 13.8, 58.4, 32.1, 4.1, 44.8 --1.2400000000000007,1,a-vale-i1,2021-22,Plymouth-Federal Furnace School,02390011, 92.8, 12.7, 57.6, 23.1, 3.2, 30.8 0.8400000000000005,1,a-vale-i1,2021-22,Plympton-Dennett Elementary,02400010, 92.9, 12.5, 59.8, 17.9, 2.8, 56.5 -0.15999999999999942,1,a-vale-i1,2021-22,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 92.8, 12.8, 48.9, 20.4, 5.3, 6.4 -8.88,1,a-vale-i1,2021-22,Provincetown-Provincetown Schools,02420020, 89.5, 17.1, 68.9, 42.2, 13.7, 19.9 +-2.6400000000000006,1,a-vale-i1,2021-22,Quabbin-New Braintree Grade,07530020, 92.8, 11.6, 53.2, 26.6, 5.1, 45.6 -5.080000000000001,1,a-vale-i1,2021-22,Quabbin-Hardwick Elementary,07530005, 91.4, 14.7, 65.3, 32.7, 5.6, 49.0 +-3.1599999999999993,1,a-vale-i1,2021-22,Quabbin-Hubbardston Center,07530010, 92.8, 12.6, 62.2, 27.9, 2.9, 62.2 +-2.3200000000000003,1,a-vale-i1,2021-22,Quabbin-Oakham Center,07530025, 92.9, 12.4, 56.3, 25.8, 4.7, 47.7 -7.959999999999999,1,a-vale-i1,2021-22,Quabbin-Quabbin Regional High School,07530505, 88.6, 19.3, 65.5, 39.9, 14.9, 40.9 -3.8,1,a-vale-i1,2021-22,Quabbin-Quabbin Regional Middle School,07530405, 91.1, 15.7, 62.2, 29.5, 9.2, 39.0 -4.68,1,a-vale-i1,2021-22,Quabbin-Ruggles Lane,07530030, 91.8, 14.1, 62.4, 31.7, 5.2, 46.8 --2.3200000000000003,1,a-vale-i1,2021-22,Quabbin-Oakham Center,07530025, 92.9, 12.4, 56.3, 25.8, 4.7, 47.7 --2.6400000000000006,1,a-vale-i1,2021-22,Quabbin-New Braintree Grade,07530020, 92.8, 11.6, 53.2, 26.6, 5.1, 45.6 --3.1599999999999993,1,a-vale-i1,2021-22,Quabbin-Hubbardston Center,07530010, 92.8, 12.6, 62.2, 27.9, 2.9, 62.2 -9.24,1,a-vale-i1,2021-22,Quaboag Regional-Quaboag Regional High,07780505, 89.4, 18.5, 74.4, 43.1, 11.2, 45.4 --6.119999999999999,1,a-vale-i1,2021-22,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 91.3, 15.4, 64.2, 35.3, 5.9, 34.3 -3.2400000000000007,1,a-vale-i1,2021-22,Quaboag Regional-West Brookfield Elementary,07780010, 92.1, 13.9, 67.5, 28.1, 4.3, 0.0 +-6.119999999999999,1,a-vale-i1,2021-22,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 91.3, 15.4, 64.2, 35.3, 5.9, 34.3 -5.519999999999999,1,a-vale-i1,2021-22,Quaboag Regional-Warren Elementary,07780005, 91.6, 14.7, 66.5, 33.8, 4.0, 0.0 --7.519999999999999,1,a-vale-i1,2021-22,Quincy-Quincy High,02430505, 89.5, 17.8, 59.4, 38.8, 15.3, 48.1 --0.8400000000000005,1,a-vale-i1,2021-22,Quincy-North Quincy High,02430510, 93.3, 11.4, 41.5, 22.1, 6.0, 31.3 --2.6,1,a-vale-i1,2021-22,Quincy-Clifford H Marshall Elementary,02430055, 92.5, 12.4, 51.0, 26.5, 5.6, 28.8 -2.2,2.2,a-vale-i1,2021-22,Quincy-Merrymount,02430060, 94.9, 9.0, 38.5, 14.5, 0.0, 26.7 -4.720000000000001,4.72,a-vale-i1,2021-22,Quincy-Montclair,02430065, 96.0, 6.8, 24.4, 8.2, 1.1, 12.9 -3.2399999999999998,3.24,a-vale-i1,2021-22,Quincy-Francis W Parker,02430075, 95.0, 8.5, 33.1, 11.9, 1.9, 18.8 --4.8,1,a-vale-i1,2021-22,Quincy-Snug Harbor Community School,02430090, 91.0, 14.6, 54.5, 32.0, 10.9, 41.6 --0.7200000000000003,1,a-vale-i1,2021-22,Quincy-Point Webster Middle,02430325, 93.5, 10.8, 39.8, 21.8, 6.2, 33.2 --3.6,1,a-vale-i1,2021-22,Quincy-South West Middle School,02430320, 92.7, 12.4, 49.7, 29.0, 6.2, 43.3 -4.88,4.88,a-vale-i1,2021-22,Quincy-Central Middle,02430315, 96.3, 6.5, 24.0, 7.8, 0.9, 17.6 --4.24,1,a-vale-i1,2021-22,Quincy-Broad Meadows Middle,02430310, 91.7, 14.7, 56.6, 30.6, 7.0, 39.8 -2.9200000000000004,2.92,a-vale-i1,2021-22,Quincy-Atlantic Middle,02430305, 95.6, 7.6, 27.0, 12.7, 2.6, 15.1 2.84,2.84,a-vale-i1,2021-22,Quincy-Wollaston School,02430110, 95.2, 8.3, 32.3, 12.9, 0.3, 24.3 -1.6,1.6,a-vale-i1,2021-22,Quincy-Charles A Bernazzani Elementary,02430025, 94.3, 9.8, 41.8, 16.0, 1.4, 29.5 +2.9200000000000004,2.92,a-vale-i1,2021-22,Quincy-Atlantic Middle,02430305, 95.6, 7.6, 27.0, 12.7, 2.6, 15.1 +-4.24,1,a-vale-i1,2021-22,Quincy-Broad Meadows Middle,02430310, 91.7, 14.7, 56.6, 30.6, 7.0, 39.8 +4.88,4.88,a-vale-i1,2021-22,Quincy-Central Middle,02430315, 96.3, 6.5, 24.0, 7.8, 0.9, 17.6 +-3.6,1,a-vale-i1,2021-22,Quincy-South West Middle School,02430320, 92.7, 12.4, 49.7, 29.0, 6.2, 43.3 +-0.7200000000000003,1,a-vale-i1,2021-22,Quincy-Point Webster Middle,02430325, 93.5, 10.8, 39.8, 21.8, 6.2, 33.2 +-7.519999999999999,1,a-vale-i1,2021-22,Quincy-Quincy High,02430505, 89.5, 17.8, 59.4, 38.8, 15.3, 48.1 2.5200000000000005,2.52,a-vale-i1,2021-22,Quincy-Squantum,02430095, 94.6, 9.3, 37.5, 13.7, 1.9, 31.0 --17.2,1,a-vale-i1,2021-22,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 87.0, 17.9, 69.2, 63.0, 18.8, 69.2 +-4.8,1,a-vale-i1,2021-22,Quincy-Snug Harbor Community School,02430090, 91.0, 14.6, 54.5, 32.0, 10.9, 41.6 +3.2399999999999998,3.24,a-vale-i1,2021-22,Quincy-Francis W Parker,02430075, 95.0, 8.5, 33.1, 11.9, 1.9, 18.8 +4.720000000000001,4.72,a-vale-i1,2021-22,Quincy-Montclair,02430065, 96.0, 6.8, 24.4, 8.2, 1.1, 12.9 +2.2,2.2,a-vale-i1,2021-22,Quincy-Merrymount,02430060, 94.9, 9.0, 38.5, 14.5, 0.0, 26.7 +-2.6,1,a-vale-i1,2021-22,Quincy-Clifford H Marshall Elementary,02430055, 92.5, 12.4, 51.0, 26.5, 5.6, 28.8 -0.9200000000000003,1,a-vale-i1,2021-22,Quincy-Atherton Hough,02430040, 93.2, 12.0, 50.8, 22.3, 4.5, 34.8 --2.8400000000000007,1,a-vale-i1,2021-22,Quincy-Lincoln-Hancock Community School,02430035, 92.7, 11.9, 48.8, 27.1, 6.5, 31.3 +-0.8400000000000005,1,a-vale-i1,2021-22,Quincy-North Quincy High,02430510, 93.3, 11.4, 41.5, 22.1, 6.0, 31.3 +1.6,1.6,a-vale-i1,2021-22,Quincy-Charles A Bernazzani Elementary,02430025, 94.3, 9.8, 41.8, 16.0, 1.4, 29.5 4.4799999999999995,4.48,a-vale-i1,2021-22,Quincy-Beechwood Knoll Elementary,02430020, 95.7, 7.6, 32.7, 8.8, 0.6, 17.3 +-17.2,1,a-vale-i1,2021-22,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 87.0, 17.9, 69.2, 63.0, 18.8, 69.2 +-2.8400000000000007,1,a-vale-i1,2021-22,Quincy-Lincoln-Hancock Community School,02430035, 92.7, 11.9, 48.8, 27.1, 6.5, 31.3 -3.0799999999999996,1,a-vale-i1,2021-22,Ralph C Mahar-Ralph C Mahar Regional,07550505, 91.4, 14.7, 50.1, 27.7, 10.6, 2.3 -10.36,1,a-vale-i1,2021-22,Randolph-Randolph High,02440505, 86.5, 22.4, 64.9, 45.9, 22.9, 6.7 --4.959999999999999,1,a-vale-i1,2021-22,Randolph-Randolph Community Middle,02440410, 91.0, 15.3, 54.7, 32.4, 11.0, 44.3 --0.7200000000000003,1,a-vale-i1,2021-22,Randolph-Martin E Young Elementary,02440040, 93.1, 11.5, 48.3, 21.8, 3.1, 6.1 --2.6400000000000006,1,a-vale-i1,2021-22,Randolph-Elizabeth G Lyons Elementary,02440020, 92.5, 12.9, 52.8, 26.6, 5.9, 40.9 -11.76,1,a-vale-i1,2021-22,Randolph-J F Kennedy Elementary,02440018, 80.1, 31.7, 66.7, 49.4, 35.4, 33.5 -0.9599999999999994,1,a-vale-i1,2021-22,Randolph-Margaret L Donovan,02440015, 93.1, 11.5, 43.0, 22.4, 5.9, 35.7 +-2.6400000000000006,1,a-vale-i1,2021-22,Randolph-Elizabeth G Lyons Elementary,02440020, 92.5, 12.9, 52.8, 26.6, 5.9, 40.9 +-4.959999999999999,1,a-vale-i1,2021-22,Randolph-Randolph Community Middle,02440410, 91.0, 15.3, 54.7, 32.4, 11.0, 44.3 +-0.7200000000000003,1,a-vale-i1,2021-22,Randolph-Martin E Young Elementary,02440040, 93.1, 11.5, 48.3, 21.8, 3.1, 6.1 -11.52,1,a-vale-i1,2021-22,Reading-RISE PreSchool,02460001, 88.1, 13.4, 59.7, 48.8, 18.6, 0.0 -4.32,4.32,a-vale-i1,2021-22,Reading-Alice M Barrows,02460002, 94.9, 9.0, 36.5, 9.2, 0.6, 0.0 -4.0,4.0,a-vale-i1,2021-22,Reading-Birch Meadow,02460005, 94.6, 9.5, 40.8, 10.0, 0.6, 0.0 -3.2399999999999998,3.24,a-vale-i1,2021-22,Reading-Joshua Eaton,02460010, 94.4, 10.0, 45.4, 11.9, 0.3, 0.0 -2.8,2.8,a-vale-i1,2021-22,Reading-J Warren Killam,02460017, 94.3, 10.2, 46.7, 13.0, 1.0, 0.0 -4.16,4.16,a-vale-i1,2021-22,Reading-Wood End Elementary School,02460020, 95.1, 8.9, 40.6, 9.6, 0.0, 0.0 3.44,3.44,a-vale-i1,2021-22,Reading-Reading Memorial High,02460505, 94.4, 9.9, 34.0, 11.4, 3.3, 0.1 2.2399999999999998,2.24,a-vale-i1,2021-22,Reading-Walter S Parker Middle,02460310, 94.2, 10.4, 44.1, 14.4, 2.1, 0.0 2.56,2.56,a-vale-i1,2021-22,Reading-Arthur W Coolidge Middle,02460305, 94.0, 10.8, 45.0, 13.6, 2.0, 1.0 --2.5200000000000005,1,a-vale-i1,2021-22,Revere-Garfield Middle School,02480057, 92.3, 13.2, 55.8, 26.3, 4.8, 2.0 --2.4400000000000004,1,a-vale-i1,2021-22,Revere-Paul Revere,02480050, 92.3, 13.0, 58.9, 26.1, 2.6, 3.8 --7.3199999999999985,1,a-vale-i1,2021-22,Revere-Garfield Elementary School,02480056, 90.1, 16.5, 64.5, 38.3, 11.0, 7.6 --3.9599999999999995,1,a-vale-i1,2021-22,Revere-A. C. Whelan Elementary School,02480003, 91.5, 14.8, 62.2, 29.9, 5.8, 3.2 --2.5200000000000005,1,a-vale-i1,2021-22,Revere-Beachmont Veterans Memorial School,02480013, 92.0, 13.7, 56.9, 26.3, 5.6, 2.2 --2.88,1,a-vale-i1,2021-22,Revere-Rumney Marsh Academy,02480014, 92.4, 13.3, 54.0, 27.2, 5.2, 1.8 --6.080000000000001,1,a-vale-i1,2021-22,Revere-Abraham Lincoln,02480025, 90.9, 14.9, 64.7, 35.2, 6.4, 3.3 --4.56,1,a-vale-i1,2021-22,Revere-Staff Sargent James J. Hill Elementary School,02480035, 91.9, 13.6, 59.1, 31.4, 3.9, 3.0 --2.4400000000000004,1,a-vale-i1,2021-22,Revere-Susan B. Anthony Middle School,02480305, 92.1, 13.6, 54.7, 26.1, 4.8, 2.3 +4.32,4.32,a-vale-i1,2021-22,Reading-Alice M Barrows,02460002, 94.9, 9.0, 36.5, 9.2, 0.6, 0.0 +2.8,2.8,a-vale-i1,2021-22,Reading-J Warren Killam,02460017, 94.3, 10.2, 46.7, 13.0, 1.0, 0.0 +3.2399999999999998,3.24,a-vale-i1,2021-22,Reading-Joshua Eaton,02460010, 94.4, 10.0, 45.4, 11.9, 0.3, 0.0 +4.0,4.0,a-vale-i1,2021-22,Reading-Birch Meadow,02460005, 94.6, 9.5, 40.8, 10.0, 0.6, 0.0 +4.16,4.16,a-vale-i1,2021-22,Reading-Wood End Elementary School,02460020, 95.1, 8.9, 40.6, 9.6, 0.0, 0.0 -8.16,1,a-vale-i1,2021-22,Revere-Revere High,02480505, 86.9, 22.1, 62.7, 40.4, 19.9, 8.2 -25.8,1,a-vale-i1,2021-22,Revere-Seacoast School,02480520, 66.5, 50.4, 93.0, 84.5, 60.6, 46.5 +-2.4400000000000004,1,a-vale-i1,2021-22,Revere-Paul Revere,02480050, 92.3, 13.0, 58.9, 26.1, 2.6, 3.8 +-7.3199999999999985,1,a-vale-i1,2021-22,Revere-Garfield Elementary School,02480056, 90.1, 16.5, 64.5, 38.3, 11.0, 7.6 +-2.4400000000000004,1,a-vale-i1,2021-22,Revere-Susan B. Anthony Middle School,02480305, 92.1, 13.6, 54.7, 26.1, 4.8, 2.3 +-4.56,1,a-vale-i1,2021-22,Revere-Staff Sargent James J. Hill Elementary School,02480035, 91.9, 13.6, 59.1, 31.4, 3.9, 3.0 +-6.080000000000001,1,a-vale-i1,2021-22,Revere-Abraham Lincoln,02480025, 90.9, 14.9, 64.7, 35.2, 6.4, 3.3 +-2.88,1,a-vale-i1,2021-22,Revere-Rumney Marsh Academy,02480014, 92.4, 13.3, 54.0, 27.2, 5.2, 1.8 +-2.5200000000000005,1,a-vale-i1,2021-22,Revere-Beachmont Veterans Memorial School,02480013, 92.0, 13.7, 56.9, 26.3, 5.6, 2.2 +-3.9599999999999995,1,a-vale-i1,2021-22,Revere-A. C. Whelan Elementary School,02480003, 91.5, 14.8, 62.2, 29.9, 5.8, 3.2 +-2.5200000000000005,1,a-vale-i1,2021-22,Revere-Garfield Middle School,02480057, 92.3, 13.2, 55.8, 26.3, 4.8, 2.0 1.4,1.4,a-vale-i1,2021-22,Richmond-Richmond Consolidated,02490005, 93.3, 12.0, 57.0, 16.5, 1.9, 55.1 -1.0799999999999996,1,a-vale-i1,2021-22,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 92.7, 12.5, 52.5, 22.7, 5.7, 24.7 -1.5200000000000002,1,a-vale-i1,2021-22,River Valley Charter (District)-River Valley Charter School,04820050, 92.9, 12.5, 54.4, 23.8, 2.4, 53.1 1.1200000000000003,1.12,a-vale-i1,2021-22,Rochester-Rochester Memorial,02500005, 93.5, 11.1, 53.7, 17.2, 2.2, 0.7 --2.3599999999999994,1,a-vale-i1,2021-22,Rockland-John W Rogers Middle,02510305, 91.9, 14.4, 60.3, 25.9, 5.8, 27.9 --4.56,1,a-vale-i1,2021-22,Rockland-Rockland Senior High,02510505, 90.6, 15.6, 57.5, 31.4, 10.9, 35.6 -2.9200000000000004,1,a-vale-i1,2021-22,Rockland-R Stewart Esten,02510025, 92.0, 14.2, 64.3, 27.3, 5.7, 43.2 --3.6,1,a-vale-i1,2021-22,Rockland-Jefferson Elementary School,02510060, 89.4, 18.3, 63.9, 29.0, 7.1, 26.9 -1.9599999999999995,1,a-vale-i1,2021-22,Rockland-Memorial Park,02510020, 92.2, 13.2, 66.4, 24.9, 3.6, 36.0 +-3.6,1,a-vale-i1,2021-22,Rockland-Jefferson Elementary School,02510060, 89.4, 18.3, 63.9, 29.0, 7.1, 26.9 +-4.56,1,a-vale-i1,2021-22,Rockland-Rockland Senior High,02510505, 90.6, 15.6, 57.5, 31.4, 10.9, 35.6 +-2.3599999999999994,1,a-vale-i1,2021-22,Rockland-John W Rogers Middle,02510305, 91.9, 14.4, 60.3, 25.9, 5.8, 27.9 -0.6799999999999997,1,a-vale-i1,2021-22,Rockport-Rockport Elementary,02520005, 92.3, 13.6, 61.0, 21.7, 2.5, 61.0 1.3200000000000003,1.32,a-vale-i1,2021-22,Rockport-Rockport High,02520510, 93.7, 11.2, 36.3, 16.7, 6.4, 30.3 1.4400000000000006,1.44,a-vale-i1,2021-22,Rockport-Rockport Middle,02520305, 93.9, 11.0, 45.9, 16.4, 2.9, 20.3 -6.8,1,a-vale-i1,2021-22,Rowe-Rowe Elementary,02530005, 91.4, 14.8, 71.2, 37.0, 1.4, 0.0 -11.76,1,a-vale-i1,2021-22,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 88.3, 19.9, 66.2, 49.4, 16.1, 0.1 +-13.559999999999999,1,a-vale-i1,2021-22,Salem-Salem Early Childhood,02580001, 86.8, 21.9, 81.7, 53.9, 20.0, 39.1 -20.880000000000003,1,a-vale-i1,2021-22,Salem-Salem Prep High School,02580515, 70.2, 42.9, 77.8, 72.2, 61.1, 66.7 -28.72,1,a-vale-i1,2021-22,Salem-New Liberty Innovation School,02580510, 64.0, 51.7, 93.4, 91.8, 82.0, 91.8 --5.76,1,a-vale-i1,2021-22,Salem-Salem High,02580505, 88.2, 20.2, 61.5, 34.4, 18.8, 47.8 --6.2,1,a-vale-i1,2021-22,Salem-Collins Middle,02580305, 89.7, 17.8, 69.3, 35.5, 10.5, 33.0 --3.6400000000000006,1,a-vale-i1,2021-22,Salem-Witchcraft Heights,02580070, 91.4, 14.7, 60.9, 29.1, 6.1, 28.9 --3.5599999999999996,1,a-vale-i1,2021-22,Salem-Bates,02580003, 91.7, 13.9, 59.7, 28.9, 5.6, 36.5 --1.4400000000000006,1,a-vale-i1,2021-22,Salem-Saltonstall School,02580050, 92.4, 13.4, 58.1, 23.6, 5.0, 33.5 --6.719999999999999,1,a-vale-i1,2021-22,Salem-Horace Mann Laboratory,02580030, 90.2, 16.4, 65.1, 36.8, 11.0, 34.0 --1.2799999999999998,1,a-vale-i1,2021-22,Salem-Carlton,02580015, 92.8, 12.9, 57.6, 23.2, 2.4, 9.6 -5.76,1,a-vale-i1,2021-22,Salem-Bentley Academy Innovation School,02580010, 91.0, 16.0, 75.0, 34.4, 5.5, 52.6 --13.559999999999999,1,a-vale-i1,2021-22,Salem-Salem Early Childhood,02580001, 86.8, 21.9, 81.7, 53.9, 20.0, 39.1 +-3.5599999999999996,1,a-vale-i1,2021-22,Salem-Bates,02580003, 91.7, 13.9, 59.7, 28.9, 5.6, 36.5 +-5.76,1,a-vale-i1,2021-22,Salem-Salem High,02580505, 88.2, 20.2, 61.5, 34.4, 18.8, 47.8 +-1.2799999999999998,1,a-vale-i1,2021-22,Salem-Carlton,02580015, 92.8, 12.9, 57.6, 23.2, 2.4, 9.6 +-6.719999999999999,1,a-vale-i1,2021-22,Salem-Horace Mann Laboratory,02580030, 90.2, 16.4, 65.1, 36.8, 11.0, 34.0 +-1.4400000000000006,1,a-vale-i1,2021-22,Salem-Saltonstall School,02580050, 92.4, 13.4, 58.1, 23.6, 5.0, 33.5 +-3.6400000000000006,1,a-vale-i1,2021-22,Salem-Witchcraft Heights,02580070, 91.4, 14.7, 60.9, 29.1, 6.1, 28.9 +-6.2,1,a-vale-i1,2021-22,Salem-Collins Middle,02580305, 89.7, 17.8, 69.3, 35.5, 10.5, 33.0 -1.2,1,a-vale-i1,2021-22,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 92.2, 14.2, 58.4, 23.0, 5.5, 22.0 -4.6,1,a-vale-i1,2021-22,Sandwich-Forestdale School,02610002, 91.6, 15.1, 69.7, 31.5, 3.0, 41.6 -3.0799999999999996,1,a-vale-i1,2021-22,Sandwich-Oak Ridge,02610025, 92.0, 14.4, 68.7, 27.7, 2.5, 20.8 --2.4400000000000004,1,a-vale-i1,2021-22,Sandwich-Sandwich High,02610505, 91.7, 15.0, 65.7, 26.1, 5.2, 28.6 -1.5599999999999994,1,a-vale-i1,2021-22,Sandwich-Sandwich STEM Academy,02610305, 92.5, 13.5, 56.5, 23.9, 4.5, 0.0 --4.959999999999999,1,a-vale-i1,2021-22,Saugus-Belmonte STEAM Academy,02620060, 91.4, 15.0, 65.6, 32.4, 6.5, 60.9 --7.280000000000001,1,a-vale-i1,2021-22,Saugus-Veterans Early Learning Center,02620065, 89.5, 17.5, 66.9, 38.2, 9.8, 52.2 +-2.4400000000000004,1,a-vale-i1,2021-22,Sandwich-Sandwich High,02610505, 91.7, 15.0, 65.7, 26.1, 5.2, 28.6 -10.12,1,a-vale-i1,2021-22,Saugus-Saugus High,02620505, 87.7, 20.4, 69.2, 45.3, 18.2, 50.3 +-7.280000000000001,1,a-vale-i1,2021-22,Saugus-Veterans Early Learning Center,02620065, 89.5, 17.5, 66.9, 38.2, 9.8, 52.2 +-4.959999999999999,1,a-vale-i1,2021-22,Saugus-Belmonte STEAM Academy,02620060, 91.4, 15.0, 65.6, 32.4, 6.5, 60.9 -4.24,1,a-vale-i1,2021-22,Saugus-Saugus Middle School,02620305, 91.5, 14.6, 60.6, 30.6, 6.3, 36.7 -4.56,1,a-vale-i1,2021-22,Savoy-Emma L Miller Elementary School,02630010, 92.3, 13.8, 64.7, 31.4, 0.0, 11.8 --0.15999999999999942,1,a-vale-i1,2021-22,Scituate-Wampatuck Elementary,02640020, 92.9, 12.5, 61.5, 20.4, 2.3, 14.0 -0.07999999999999971,1,a-vale-i1,2021-22,Scituate-Scituate High School,02640505, 93.2, 11.8, 53.1, 19.8, 3.4, 29.4 -1.3200000000000003,1.32,a-vale-i1,2021-22,Scituate-Gates Middle School,02640305, 93.6, 11.5, 51.7, 16.7, 2.2, 10.5 3.72,3.72,a-vale-i1,2021-22,Scituate-Cushing Elementary,02640007, 94.0, 10.7, 50.0, 10.7, 0.6, 6.7 3.3600000000000003,3.36,a-vale-i1,2021-22,Scituate-Hatherly Elementary,02640010, 94.3, 10.2, 48.0, 11.6, 1.2, 4.0 +0.07999999999999971,1,a-vale-i1,2021-22,Scituate-Scituate High School,02640505, 93.2, 11.8, 53.1, 19.8, 3.4, 29.4 +-0.15999999999999942,1,a-vale-i1,2021-22,Scituate-Wampatuck Elementary,02640020, 92.9, 12.5, 61.5, 20.4, 2.3, 14.0 +1.3200000000000003,1.32,a-vale-i1,2021-22,Scituate-Gates Middle School,02640305, 93.6, 11.5, 51.7, 16.7, 2.2, 10.5 2.2,2.2,a-vale-i1,2021-22,Scituate-Jenkins Elementary School,02640015, 94.0, 10.8, 51.2, 14.5, 0.6, 6.7 +-0.35999999999999943,1,a-vale-i1,2021-22,Seekonk-George R Martin,02650007, 93.3, 11.7, 54.0, 20.9, 0.8, 12.7 -0.2,1,a-vale-i1,2021-22,Seekonk-Seekonk High,02650505, 93.2, 11.9, 48.7, 20.5, 3.3, 23.7 1.0,1.0,a-vale-i1,2021-22,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 94.2, 10.3, 43.1, 17.5, 1.3, 16.6 --0.35999999999999943,1,a-vale-i1,2021-22,Seekonk-George R Martin,02650007, 93.3, 11.7, 54.0, 20.9, 0.8, 12.7 -0.5200000000000002,1,a-vale-i1,2021-22,Seekonk-Mildred Aitken School,02650015, 93.3, 11.9, 55.9, 21.3, 1.4, 0.0 -2.6,2.6,a-vale-i1,2021-22,Sharon-Cottage Street,02660005, 94.4, 9.7, 41.5, 13.5, 1.3, 0.0 -3.72,3.72,a-vale-i1,2021-22,Sharon-Heights Elementary,02660015, 95.0, 8.8, 36.5, 10.7, 1.1, 0.0 -4.16,4.16,a-vale-i1,2021-22,Sharon-Sharon Middle,02660305, 95.0, 8.7, 32.2, 9.6, 1.9, 0.7 -2.6399999999999997,2.64,a-vale-i1,2021-22,Sharon-East Elementary,02660010, 94.5, 9.8, 41.2, 13.4, 2.1, 0.0 0.7200000000000003,1,a-vale-i1,2021-22,Sharon-Sharon High,02660505, 93.4, 11.8, 41.2, 18.2, 4.9, 0.3 +3.72,3.72,a-vale-i1,2021-22,Sharon-Heights Elementary,02660015, 95.0, 8.8, 36.5, 10.7, 1.1, 0.0 +2.6399999999999997,2.64,a-vale-i1,2021-22,Sharon-East Elementary,02660010, 94.5, 9.8, 41.2, 13.4, 2.1, 0.0 +2.6,2.6,a-vale-i1,2021-22,Sharon-Cottage Street,02660005, 94.4, 9.7, 41.5, 13.5, 1.3, 0.0 -13.88,1,a-vale-i1,2021-22,Sharon-Sharon Early Childhood Center,02660001, 87.9, 18.4, 76.6, 54.7, 10.9, 0.0 +4.16,4.16,a-vale-i1,2021-22,Sharon-Sharon Middle,02660305, 95.0, 8.7, 32.2, 9.6, 1.9, 0.7 0.8400000000000005,1,a-vale-i1,2021-22,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 93.7, 11.0, 44.9, 17.9, 3.0, 15.5 4.68,4.68,a-vale-i1,2021-22,Sherborn-Pine Hill,02690010, 94.5, 10.0, 44.5, 8.3, 0.7, 44.5 -1.6,1.6,a-vale-i1,2021-22,Shrewsbury-Major Howard W. Beal School,02710005, 94.1, 10.2, 45.1, 16.0, 1.0, 0.0 --2.2,1,a-vale-i1,2021-22,Shrewsbury-Calvin Coolidge School,02710015, 93.0, 11.8, 55.1, 25.5, 2.6, 0.0 0.7200000000000003,1,a-vale-i1,2021-22,Shrewsbury-Floral Street School,02710020, 93.8, 10.7, 46.7, 18.2, 1.9, 0.0 +-2.2,1,a-vale-i1,2021-22,Shrewsbury-Calvin Coolidge School,02710015, 93.0, 11.8, 55.1, 25.5, 2.6, 0.0 +1.6,1.6,a-vale-i1,2021-22,Shrewsbury-Major Howard W. Beal School,02710005, 94.1, 10.2, 45.1, 16.0, 1.0, 0.0 2.0799999999999996,2.08,a-vale-i1,2021-22,Shrewsbury-Walter J. Paton School,02710025, 94.2, 10.3, 44.7, 14.8, 0.6, 0.0 -2.7600000000000002,2.76,a-vale-i1,2021-22,Shrewsbury-Oak Middle School,02710030, 94.5, 9.8, 38.5, 13.1, 2.4, 0.0 -4.5600000000000005,4.56,a-vale-i1,2021-22,Shrewsbury-Spring Street School,02710035, 94.9, 9.0, 39.6, 8.6, 0.0, 0.0 --10.16,1,a-vale-i1,2021-22,Shrewsbury-Parker Road Preschool,02710040, 89.5, 13.2, 57.2, 45.4, 10.5, 0.0 -1.9200000000000004,1.92,a-vale-i1,2021-22,Shrewsbury-Sherwood Middle School,02710305, 94.5, 9.7, 40.8, 15.2, 1.5, 0.0 1.0,1.0,a-vale-i1,2021-22,Shrewsbury-Shrewsbury High School,02710505, 93.4, 11.2, 40.7, 17.5, 5.1, 0.0 +1.9200000000000004,1.92,a-vale-i1,2021-22,Shrewsbury-Sherwood Middle School,02710305, 94.5, 9.7, 40.8, 15.2, 1.5, 0.0 +-10.16,1,a-vale-i1,2021-22,Shrewsbury-Parker Road Preschool,02710040, 89.5, 13.2, 57.2, 45.4, 10.5, 0.0 +4.5600000000000005,4.56,a-vale-i1,2021-22,Shrewsbury-Spring Street School,02710035, 94.9, 9.0, 39.6, 8.6, 0.0, 0.0 +2.7600000000000002,2.76,a-vale-i1,2021-22,Shrewsbury-Oak Middle School,02710030, 94.5, 9.8, 38.5, 13.1, 2.4, 0.0 -0.7200000000000003,1,a-vale-i1,2021-22,Shutesbury-Shutesbury Elementary,02720005, 93.5, 11.4, 48.7, 21.8, 2.5, 2.5 -0.5200000000000002,1,a-vale-i1,2021-22,Silver Lake-Silver Lake Regional Middle School,07600405, 93.2, 12.0, 51.7, 21.3, 3.3, 34.6 -1.3200000000000003,1,a-vale-i1,2021-22,Silver Lake-Silver Lake Regional High,07600505, 92.7, 12.7, 51.5, 23.3, 4.3, 12.3 -9.4,1,a-vale-i1,2021-22,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 89.5, 17.7, 69.1, 43.5, 11.6, 21.5 3.8,3.8,a-vale-i1,2021-22,Somerset-Chace Street,02730005, 94.5, 9.8, 45.8, 10.5, 0.3, 16.8 --1.4799999999999998,1,a-vale-i1,2021-22,Somerset-Somerset Middle School,02730305, 92.4, 13.5, 55.8, 23.7, 3.8, 34.3 --1.2799999999999998,1,a-vale-i1,2021-22,Somerset-South,02730015, 93.4, 11.7, 52.1, 23.2, 2.2, 18.4 0.9599999999999994,1,a-vale-i1,2021-22,Somerset-North Elementary,02730008, 93.8, 10.9, 52.7, 17.6, 0.8, 18.4 +-1.2799999999999998,1,a-vale-i1,2021-22,Somerset-South,02730015, 93.4, 11.7, 52.1, 23.2, 2.2, 18.4 +-1.4799999999999998,1,a-vale-i1,2021-22,Somerset-Somerset Middle School,02730305, 92.4, 13.5, 55.8, 23.7, 3.8, 34.3 -3.0,1,a-vale-i1,2021-22,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 91.0, 15.4, 56.6, 27.5, 9.9, 19.2 -9.12,1,a-vale-i1,2021-22,Somerville-Capuano Early Childhood Center,02740005, 89.5, 16.7, 69.4, 42.8, 9.6, 69.0 +4.6,4.6,a-vale-i1,2021-22,Somerville-Benjamin G Brown,02740015, 95.2, 8.5, 33.5, 8.5, 0.0, 25.5 +-21.8,1,a-vale-i1,2021-22,Somerville-Full Circle High School,02740510, 77.4, 36.6, 80.4, 74.5, 51.0, 78.4 +-7.159999999999999,1,a-vale-i1,2021-22,Somerville-Somerville High,02740505, 88.9, 18.7, 62.3, 37.9, 16.6, 55.0 -14.84,1,a-vale-i1,2021-22,Somerville-Next Wave Junior High,02740410, 86.0, 21.3, 71.4, 57.1, 23.8, 52.4 -5.4,1,a-vale-i1,2021-22,Somerville-Winter Hill Community,02740120, 91.2, 14.8, 56.6, 33.5, 8.6, 44.1 0.5200000000000002,1,a-vale-i1,2021-22,Somerville-West Somerville Neighborhood,02740115, 93.3, 11.7, 48.8, 18.7, 3.2, 17.1 -0.6799999999999997,1,a-vale-i1,2021-22,Somerville-E Somerville Community,02740111, 93.1, 12.0, 51.1, 21.7, 3.2, 37.2 -1.8799999999999997,1.88,a-vale-i1,2021-22,Somerville-John F Kennedy,02740083, 93.8, 10.9, 47.2, 15.3, 2.4, 46.6 --21.8,1,a-vale-i1,2021-22,Somerville-Full Circle High School,02740510, 77.4, 36.6, 80.4, 74.5, 51.0, 78.4 -3.3599999999999994,1,a-vale-i1,2021-22,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 92.4, 12.9, 56.3, 28.4, 4.9, 40.8 --7.159999999999999,1,a-vale-i1,2021-22,Somerville-Somerville High,02740505, 88.9, 18.7, 62.3, 37.9, 16.6, 55.0 -6.840000000000001,1,a-vale-i1,2021-22,Somerville-Arthur D Healey,02740075, 90.4, 16.0, 61.6, 37.1, 8.6, 50.9 -4.6,4.6,a-vale-i1,2021-22,Somerville-Benjamin G Brown,02740015, 95.2, 8.5, 33.5, 8.5, 0.0, 25.5 +1.8799999999999997,1.88,a-vale-i1,2021-22,Somerville-John F Kennedy,02740083, 93.8, 10.9, 47.2, 15.3, 2.4, 46.6 +-7.76,1,a-vale-i1,2021-22,South Hadley-South Hadley High,02780505, 88.9, 19.6, 53.1, 39.4, 21.4, 0.0 -7.3199999999999985,1,a-vale-i1,2021-22,South Hadley-Michael E. Smith Middle School,02780305, 89.9, 17.7, 69.7, 38.3, 9.9, 13.1 -2.72,1,a-vale-i1,2021-22,South Hadley-Mosier,02780020, 91.9, 14.2, 65.9, 26.8, 3.5, 0.0 --7.76,1,a-vale-i1,2021-22,South Hadley-South Hadley High,02780505, 88.9, 19.6, 53.1, 39.4, 21.4, 0.0 -3.72,1,a-vale-i1,2021-22,South Hadley-Plains Elementary,02780015, 91.8, 14.1, 68.1, 29.3, 3.5, 0.0 -5.24,1,a-vale-i1,2021-22,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 91.0, 15.6, 58.6, 33.1, 9.5, 22.9 -2.4799999999999995,1,a-vale-i1,2021-22,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 92.1, 13.7, 55.1, 26.2, 5.9, 34.9 0.2799999999999997,1,a-vale-i1,2021-22,South Shore Regional Vocational Technical-So Shore Vocational Technical High,08730605, 93.1, 12.4, 51.8, 19.3, 3.8, 20.5 1.7600000000000002,1.76,a-vale-i1,2021-22,Southampton-William E Norris,02750005, 93.8, 11.0, 54.9, 15.6, 1.3, 0.0 -1.8799999999999997,1.88,a-vale-i1,2021-22,Southborough-Margaret A Neary,02760020, 93.9, 10.8, 48.1, 15.3, 1.5, 0.0 3.56,3.56,a-vale-i1,2021-22,Southborough-Mary E Finn School,02760008, 95.7, 7.5, 35.4, 11.1, 1.1, 0.0 -4.4799999999999995,4.48,a-vale-i1,2021-22,Southborough-P Brent Trottier,02760305, 95.2, 8.6, 35.3, 8.8, 0.5, 0.0 +1.8799999999999997,1.88,a-vale-i1,2021-22,Southborough-Margaret A Neary,02760020, 93.9, 10.8, 48.1, 15.3, 1.5, 0.0 0.7200000000000003,1,a-vale-i1,2021-22,Southborough-Albert S. Woodward Memorial School,02760050, 93.5, 11.4, 57.5, 18.2, 0.0, 4.4 --22.0,1,a-vale-i1,2021-22,Southbridge-Southbridge Academy,02770525, 75.5, 38.9, 90.0, 75.0, 47.5, 57.5 --14.76,1,a-vale-i1,2021-22,Southbridge-Southbridge High School,02770515, 84.6, 28.9, 81.9, 56.9, 27.6, 71.5 --8.719999999999999,1,a-vale-i1,2021-22,Southbridge-Southbridge Middle School,02770315, 89.0, 18.4, 74.5, 41.8, 12.0, 56.8 --0.35999999999999943,1,a-vale-i1,2021-22,Southbridge-West Street,02770020, 92.7, 15.0, 67.6, 20.9, 3.2, 33.2 --10.48,1,a-vale-i1,2021-22,Southbridge-Eastford Road,02770010, 88.7, 17.8, 74.9, 46.2, 13.5, 42.5 +4.4799999999999995,4.48,a-vale-i1,2021-22,Southborough-P Brent Trottier,02760305, 95.2, 8.6, 35.3, 8.8, 0.5, 0.0 -2.5200000000000005,1,a-vale-i1,2021-22,Southbridge-Charlton Street,02770005, 92.6, 15.2, 67.7, 26.3, 5.0, 39.0 +-10.48,1,a-vale-i1,2021-22,Southbridge-Eastford Road,02770010, 88.7, 17.8, 74.9, 46.2, 13.5, 42.5 +-0.35999999999999943,1,a-vale-i1,2021-22,Southbridge-West Street,02770020, 92.7, 15.0, 67.6, 20.9, 3.2, 33.2 +-8.719999999999999,1,a-vale-i1,2021-22,Southbridge-Southbridge Middle School,02770315, 89.0, 18.4, 74.5, 41.8, 12.0, 56.8 +-14.76,1,a-vale-i1,2021-22,Southbridge-Southbridge High School,02770515, 84.6, 28.9, 81.9, 56.9, 27.6, 71.5 +-22.0,1,a-vale-i1,2021-22,Southbridge-Southbridge Academy,02770525, 75.5, 38.9, 90.0, 75.0, 47.5, 57.5 -0.6400000000000006,1,a-vale-i1,2021-22,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 93.2, 11.9, 48.5, 21.6, 4.5, 20.6 --5.6800000000000015,1,a-vale-i1,2021-22,Southern Berkshire-Mt Everett Regional,07650505, 90.7, 16.1, 64.2, 34.2, 9.4, 33.5 --2.9200000000000004,1,a-vale-i1,2021-22,Southern Berkshire-New Marlborough Central,07650018, 91.8, 14.7, 68.2, 27.3, 3.0, 12.1 --4.32,1,a-vale-i1,2021-22,Southern Berkshire-South Egremont,07650030, 91.0, 15.9, 76.9, 30.8, 0.0, 30.8 -4.08,1,a-vale-i1,2021-22,Southern Berkshire-Undermountain,07650035, 91.8, 14.3, 68.6, 30.2, 5.4, 16.7 +-5.6800000000000015,1,a-vale-i1,2021-22,Southern Berkshire-Mt Everett Regional,07650505, 90.7, 16.1, 64.2, 34.2, 9.4, 33.5 +-4.32,1,a-vale-i1,2021-22,Southern Berkshire-South Egremont,07650030, 91.0, 15.9, 76.9, 30.8, 0.0, 30.8 +-2.9200000000000004,1,a-vale-i1,2021-22,Southern Berkshire-New Marlborough Central,07650018, 91.8, 14.7, 68.2, 27.3, 3.0, 12.1 -1.2,1,a-vale-i1,2021-22,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 92.8, 12.6, 51.5, 23.0, 4.0, 31.4 -0.0,1,a-vale-i1,2021-22,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 93.1, 12.2, 52.6, 20.0, 4.4, 31.5 -2.7599999999999993,1,a-vale-i1,2021-22,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 92.4, 13.0, 60.2, 26.9, 2.7, 32.9 +0.0,1,a-vale-i1,2021-22,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 93.1, 12.2, 52.6, 20.0, 4.4, 31.5 -1.0400000000000005,1,a-vale-i1,2021-22,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 93.0, 12.4, 55.6, 22.6, 2.7, 31.3 -1.8399999999999999,1.84,a-vale-i1,2021-22,Spencer-E Brookfield-Wire Village School,07670040, 94.1, 10.3, 45.5, 15.4, 2.8, 0.0 1.8799999999999997,1.88,a-vale-i1,2021-22,Spencer-E Brookfield-East Brookfield Elementary,07670008, 93.9, 10.1, 44.8, 15.3, 3.6, 0.0 -14.64,1,a-vale-i1,2021-22,Spencer-E Brookfield-David Prouty High,07670505, 83.5, 27.3, 76.0, 56.6, 26.3, 52.6 -2.3200000000000003,1,a-vale-i1,2021-22,Spencer-E Brookfield-Knox Trail Middle School,07670415, 91.9, 13.9, 51.2, 25.8, 9.7, 0.0 +1.8399999999999999,1.84,a-vale-i1,2021-22,Spencer-E Brookfield-Wire Village School,07670040, 94.1, 10.3, 45.5, 15.4, 2.8, 0.0 +-12.559999999999999,1,a-vale-i1,2021-22,Springfield-Frederick Harris,02810080, 88.5, 19.5, 75.9, 51.4, 12.8, 37.8 +-9.680000000000001,1,a-vale-i1,2021-22,Springfield-Homer Street,02810085, 89.9, 17.0, 68.3, 44.2, 11.9, 36.1 +-4.840000000000001,1,a-vale-i1,2021-22,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 91.9, 14.3, 66.2, 32.1, 4.1, 21.6 +-13.88,1,a-vale-i1,2021-22,Springfield-Indian Orchard Elementary,02810100, 87.5, 20.2, 74.7, 54.7, 17.3, 27.5 +-14.040000000000001,1,a-vale-i1,2021-22,Springfield-Kensington International School,02810110, 86.9, 20.6, 76.6, 55.1, 20.1, 33.9 +-11.680000000000001,1,a-vale-i1,2021-22,Springfield-Liberty,02810115, 89.1, 18.8, 77.3, 49.2, 10.6, 50.8 +-14.24,1,a-vale-i1,2021-22,Springfield-Lincoln,02810120, 86.3, 22.9, 79.2, 55.6, 24.0, 64.6 +-15.319999999999999,1,a-vale-i1,2021-22,Springfield-Gateway to College at Holyoke Community College,02810575, 80.7, 29.7, 63.9, 58.3, 36.1, 63.9 +-9.319999999999999,1,a-vale-i1,2021-22,Springfield-Gateway to College at Springfield Technical Community College,02810580, 89.8, 13.1, 60.0, 43.3, 10.0, 46.7 +-4.8,1,a-vale-i1,2021-22,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.2, 15.6, 58.5, 32.0, 9.2, 30.7 +2.8,2.8,a-vale-i1,2021-22,Springfield-Springfield International Academy at Sci-Tech,02810700, 95.2, 6.6, 23.1, 13.0, 1.9, 19.4 +-1.1599999999999995,1,a-vale-i1,2021-22,Springfield-The Springfield Virtual School,02810705, 92.2, 13.5, 43.6, 22.9, 9.8, 38.3 +-24.639999999999997,1,a-vale-i1,2021-22,Springfield-Early Childhood Education Center,02810001, 79.9, 28.5, 88.6, 81.6, 41.7, 0.4 +-17.72,1,a-vale-i1,2021-22,Springfield-Springfield Public Day Elementary School,02810005, 83.9, 25.4, 75.0, 64.3, 32.1, 28.6 +-11.8,1,a-vale-i1,2021-22,Springfield-Edward P. Boland School,02810010, 88.8, 18.5, 72.3, 49.5, 16.0, 32.7 +-10.16,1,a-vale-i1,2021-22,Springfield-Thomas M Balliet,02810015, 89.0, 18.1, 72.2, 45.4, 12.9, 45.1 +-10.040000000000001,1,a-vale-i1,2021-22,Springfield-Samuel Bowles,02810020, 89.9, 17.0, 74.6, 45.1, 8.0, 44.1 +-12.919999999999998,1,a-vale-i1,2021-22,Springfield-Milton Bradley School,02810023, 87.7, 20.2, 74.4, 52.3, 16.3, 47.5 +-14.16,1,a-vale-i1,2021-22,Springfield-Brightwood,02810025, 87.4, 20.8, 80.0, 55.4, 15.0, 58.3 +-6.880000000000001,1,a-vale-i1,2021-22,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 91.1, 15.0, 67.4, 37.2, 3.7, 14.8 +-6.880000000000001,1,a-vale-i1,2021-22,Springfield-Mary M Lynch,02810140, 90.1, 17.3, 69.1, 37.2, 11.1, 34.3 +-13.16,1,a-vale-i1,2021-22,Springfield-Mary O Pottenger,02810145, 89.0, 18.8, 81.8, 52.9, 9.0, 38.3 +-11.080000000000002,1,a-vale-i1,2021-22,Springfield-Mary M Walsh,02810155, 88.6, 19.7, 76.7, 47.7, 12.4, 40.2 +-11.52,1,a-vale-i1,2021-22,Springfield-Sumner Avenue,02810160, 87.9, 20.3, 76.1, 48.8, 16.3, 57.1 +-9.719999999999999,1,a-vale-i1,2021-22,Springfield-Arthur T Talmadge,02810165, 89.6, 18.0, 70.5, 44.3, 9.0, 51.4 +-6.44,1,a-vale-i1,2021-22,Springfield-Alice B Beal Elementary,02810175, 91.1, 14.9, 66.9, 36.1, 4.5, 32.0 +-11.440000000000001,1,a-vale-i1,2021-22,Springfield-Warner,02810180, 88.4, 19.6, 76.4, 48.6, 12.7, 26.6 +-14.8,1,a-vale-i1,2021-22,Springfield-Washington,02810185, 86.9, 21.7, 77.3, 57.0, 19.5, 51.6 +-9.8,1,a-vale-i1,2021-22,Springfield-White Street,02810190, 88.9, 18.4, 70.4, 44.5, 13.3, 44.2 +-12.680000000000001,1,a-vale-i1,2021-22,Springfield-German Gerena Community School,02810195, 87.9, 20.6, 78.5, 51.7, 17.3, 39.0 +-6.919999999999999,1,a-vale-i1,2021-22,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 90.3, 17.1, 65.4, 37.3, 11.3, 35.3 +-8.559999999999999,1,a-vale-i1,2021-22,Springfield-Springfield International Academy at Johnson,02810215, 90.5, 13.3, 62.1, 41.4, 10.3, 58.6 +-11.88,1,a-vale-i1,2021-22,Springfield-Kiley Prep,02810315, 88.7, 18.6, 73.5, 49.7, 16.6, 20.4 +-9.64,1,a-vale-i1,2021-22,Springfield-Kiley Academy,02810316, 89.3, 18.5, 66.8, 44.1, 11.4, 35.1 +-13.680000000000001,1,a-vale-i1,2021-22,Springfield-Lyceum Academy,02810317, 86.1, 24.3, 82.4, 54.2, 19.8, 49.0 +1.7200000000000002,1.72,a-vale-i1,2021-22,Springfield-Emergence Academy,02810318, 93.7, 8.1, 36.0, 15.7, 4.5, 30.3 +-1.0,1,a-vale-i1,2021-22,Springfield-John J Duggan Middle,02810320, 93.4, 11.3, 41.3, 22.5, 5.5, 23.9 +-11.4,1,a-vale-i1,2021-22,Springfield-Forest Park Middle,02810325, 86.5, 22.5, 71.5, 48.5, 22.8, 28.5 +-17.36,1,a-vale-i1,2021-22,Springfield-John F Kennedy Middle,02810328, 83.4, 28.0, 84.1, 63.4, 32.5, 74.1 +-10.16,1,a-vale-i1,2021-22,Springfield-M Marcus Kiley Middle,02810330, 88.3, 19.6, 67.2, 45.4, 14.0, 31.4 +-2.72,1,a-vale-i1,2021-22,Springfield-Springfield Realization Academy,02810335, 90.6, 16.7, 63.4, 26.8, 9.9, 38.0 +-21.0,1,a-vale-i1,2021-22,Springfield-Springfield Public Day Middle School,02810345, 79.0, 36.3, 85.0, 72.5, 45.0, 65.0 +1.1200000000000003,1.12,a-vale-i1,2021-22,Springfield-STEM Middle Academy,02810350, 94.4, 9.8, 44.0, 17.2, 1.5, 11.7 +-19.8,1,a-vale-i1,2021-22,Springfield-South End Middle School,02810355, 82.2, 29.7, 88.2, 69.5, 37.7, 61.8 +-27.560000000000002,1,a-vale-i1,2021-22,Springfield-Springfield Middle School,02810360, 71.6, 43.7, 88.9, 88.9, 50.0, 77.8 +-13.559999999999999,1,a-vale-i1,2021-22,Springfield-Impact Prep at Chestnut,02810366, 87.2, 21.5, 74.7, 53.9, 17.5, 47.9 +-1.1200000000000003,1,a-vale-i1,2021-22,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 93.6, 11.4, 47.2, 22.8, 4.1, 30.7 +-14.16,1,a-vale-i1,2021-22,Springfield-Conservatory of the Arts,02810475, 86.7, 23.4, 81.4, 55.4, 17.6, 48.7 -19.0,1,a-vale-i1,2021-22,Springfield-Rise Academy at Van Sickle,02810480, 80.1, 34.2, 84.3, 67.5, 41.2, 74.5 -14.64,1,a-vale-i1,2021-22,Springfield-Van Sickle Academy,02810485, 86.9, 22.5, 82.1, 56.6, 17.6, 51.7 -7.840000000000001,1,a-vale-i1,2021-22,Springfield-Springfield Central High,02810500, 89.8, 17.4, 63.0, 39.6, 12.0, 47.1 @@ -1460,99 +1508,51 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -7.56,1,a-vale-i1,2021-22,Springfield-Springfield High School of Science and Technology,02810530, 89.5, 17.7, 60.9, 38.9, 13.0, 44.5 -23.160000000000004,1,a-vale-i1,2021-22,Springfield-Springfield Public Day High School,02810550, 64.1, 50.8, 88.2, 77.9, 67.6, 75.0 -0.3200000000000003,1,a-vale-i1,2021-22,Springfield-Liberty Preparatory Academy,02810560, 92.9, 3.9, 12.5, 20.8, 12.5, 8.3 --6.880000000000001,1,a-vale-i1,2021-22,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 91.1, 15.0, 67.4, 37.2, 3.7, 14.8 --6.880000000000001,1,a-vale-i1,2021-22,Springfield-Mary M Lynch,02810140, 90.1, 17.3, 69.1, 37.2, 11.1, 34.3 --13.16,1,a-vale-i1,2021-22,Springfield-Mary O Pottenger,02810145, 89.0, 18.8, 81.8, 52.9, 9.0, 38.3 --11.080000000000002,1,a-vale-i1,2021-22,Springfield-Mary M Walsh,02810155, 88.6, 19.7, 76.7, 47.7, 12.4, 40.2 --10.16,1,a-vale-i1,2021-22,Springfield-Thomas M Balliet,02810015, 89.0, 18.1, 72.2, 45.4, 12.9, 45.1 --10.040000000000001,1,a-vale-i1,2021-22,Springfield-Samuel Bowles,02810020, 89.9, 17.0, 74.6, 45.1, 8.0, 44.1 --11.52,1,a-vale-i1,2021-22,Springfield-Sumner Avenue,02810160, 87.9, 20.3, 76.1, 48.8, 16.3, 57.1 --9.719999999999999,1,a-vale-i1,2021-22,Springfield-Arthur T Talmadge,02810165, 89.6, 18.0, 70.5, 44.3, 9.0, 51.4 --12.919999999999998,1,a-vale-i1,2021-22,Springfield-Milton Bradley School,02810023, 87.7, 20.2, 74.4, 52.3, 16.3, 47.5 --14.16,1,a-vale-i1,2021-22,Springfield-Brightwood,02810025, 87.4, 20.8, 80.0, 55.4, 15.0, 58.3 +-9.959999999999999,1,a-vale-i1,2021-22,Springfield-Springfield High School,02810570, 84.7, 22.1, 50.7, 44.9, 29.8, 47.3 -12.919999999999998,1,a-vale-i1,2021-22,Springfield-Elias Brookings,02810030, 87.3, 21.7, 75.0, 52.3, 19.8, 56.5 -11.6,1,a-vale-i1,2021-22,Springfield-Daniel B Brunton,02810035, 88.2, 20.1, 76.6, 49.0, 14.3, 56.3 --6.44,1,a-vale-i1,2021-22,Springfield-Alice B Beal Elementary,02810175, 91.1, 14.9, 66.9, 36.1, 4.5, 32.0 --11.440000000000001,1,a-vale-i1,2021-22,Springfield-Warner,02810180, 88.4, 19.6, 76.4, 48.6, 12.7, 26.6 --14.8,1,a-vale-i1,2021-22,Springfield-Washington,02810185, 86.9, 21.7, 77.3, 57.0, 19.5, 51.6 -13.080000000000002,1,a-vale-i1,2021-22,Springfield-William N. DeBerry,02810045, 88.4, 19.3, 74.3, 52.7, 16.2, 51.8 -11.76,1,a-vale-i1,2021-22,Springfield-Hiram L Dorman,02810050, 88.7, 19.8, 81.1, 49.4, 13.6, 56.0 --9.8,1,a-vale-i1,2021-22,Springfield-White Street,02810190, 88.9, 18.4, 70.4, 44.5, 13.3, 44.2 --12.680000000000001,1,a-vale-i1,2021-22,Springfield-German Gerena Community School,02810195, 87.9, 20.6, 78.5, 51.7, 17.3, 39.0 -18.6,1,a-vale-i1,2021-22,Springfield-Rebecca M Johnson,02810055, 84.6, 25.5, 83.9, 66.5, 27.0, 69.0 -20.6,1,a-vale-i1,2021-22,Springfield-Margaret C Ells,02810060, 83.9, 22.2, 77.1, 71.5, 33.2, 65.9 -12.12,1,a-vale-i1,2021-22,Springfield-Glenwood,02810065, 89.1, 18.7, 79.0, 50.3, 9.8, 40.9 -11.6,1,a-vale-i1,2021-22,Springfield-Glickman Elementary,02810068, 88.6, 19.3, 74.8, 49.0, 13.3, 48.6 --6.919999999999999,1,a-vale-i1,2021-22,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 90.3, 17.1, 65.4, 37.3, 11.3, 35.3 --8.559999999999999,1,a-vale-i1,2021-22,Springfield-Springfield International Academy at Johnson,02810215, 90.5, 13.3, 62.1, 41.4, 10.3, 58.6 --11.88,1,a-vale-i1,2021-22,Springfield-Kiley Prep,02810315, 88.7, 18.6, 73.5, 49.7, 16.6, 20.4 --9.64,1,a-vale-i1,2021-22,Springfield-Kiley Academy,02810316, 89.3, 18.5, 66.8, 44.1, 11.4, 35.1 --13.680000000000001,1,a-vale-i1,2021-22,Springfield-Lyceum Academy,02810317, 86.1, 24.3, 82.4, 54.2, 19.8, 49.0 -6.8,1,a-vale-i1,2021-22,Springfield-Frank H Freedman,02810075, 90.2, 16.4, 61.9, 37.0, 10.5, 36.6 --12.559999999999999,1,a-vale-i1,2021-22,Springfield-Frederick Harris,02810080, 88.5, 19.5, 75.9, 51.4, 12.8, 37.8 -1.7200000000000002,1.72,a-vale-i1,2021-22,Springfield-Emergence Academy,02810318, 93.7, 8.1, 36.0, 15.7, 4.5, 30.3 --1.0,1,a-vale-i1,2021-22,Springfield-John J Duggan Middle,02810320, 93.4, 11.3, 41.3, 22.5, 5.5, 23.9 --9.959999999999999,1,a-vale-i1,2021-22,Springfield-Springfield High School,02810570, 84.7, 22.1, 50.7, 44.9, 29.8, 47.3 --15.319999999999999,1,a-vale-i1,2021-22,Springfield-Gateway to College at Holyoke Community College,02810575, 80.7, 29.7, 63.9, 58.3, 36.1, 63.9 --9.319999999999999,1,a-vale-i1,2021-22,Springfield-Gateway to College at Springfield Technical Community College,02810580, 89.8, 13.1, 60.0, 43.3, 10.0, 46.7 --4.8,1,a-vale-i1,2021-22,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.2, 15.6, 58.5, 32.0, 9.2, 30.7 -2.8,2.8,a-vale-i1,2021-22,Springfield-Springfield International Academy at Sci-Tech,02810700, 95.2, 6.6, 23.1, 13.0, 1.9, 19.4 --1.1599999999999995,1,a-vale-i1,2021-22,Springfield-The Springfield Virtual School,02810705, 92.2, 13.5, 43.6, 22.9, 9.8, 38.3 --9.680000000000001,1,a-vale-i1,2021-22,Springfield-Homer Street,02810085, 89.9, 17.0, 68.3, 44.2, 11.9, 36.1 --4.840000000000001,1,a-vale-i1,2021-22,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 91.9, 14.3, 66.2, 32.1, 4.1, 21.6 --13.88,1,a-vale-i1,2021-22,Springfield-Indian Orchard Elementary,02810100, 87.5, 20.2, 74.7, 54.7, 17.3, 27.5 --14.040000000000001,1,a-vale-i1,2021-22,Springfield-Kensington International School,02810110, 86.9, 20.6, 76.6, 55.1, 20.1, 33.9 --11.4,1,a-vale-i1,2021-22,Springfield-Forest Park Middle,02810325, 86.5, 22.5, 71.5, 48.5, 22.8, 28.5 --17.36,1,a-vale-i1,2021-22,Springfield-John F Kennedy Middle,02810328, 83.4, 28.0, 84.1, 63.4, 32.5, 74.1 --10.16,1,a-vale-i1,2021-22,Springfield-M Marcus Kiley Middle,02810330, 88.3, 19.6, 67.2, 45.4, 14.0, 31.4 --11.680000000000001,1,a-vale-i1,2021-22,Springfield-Liberty,02810115, 89.1, 18.8, 77.3, 49.2, 10.6, 50.8 --14.24,1,a-vale-i1,2021-22,Springfield-Lincoln,02810120, 86.3, 22.9, 79.2, 55.6, 24.0, 64.6 --2.72,1,a-vale-i1,2021-22,Springfield-Springfield Realization Academy,02810335, 90.6, 16.7, 63.4, 26.8, 9.9, 38.0 --21.0,1,a-vale-i1,2021-22,Springfield-Springfield Public Day Middle School,02810345, 79.0, 36.3, 85.0, 72.5, 45.0, 65.0 -1.1200000000000003,1.12,a-vale-i1,2021-22,Springfield-STEM Middle Academy,02810350, 94.4, 9.8, 44.0, 17.2, 1.5, 11.7 --24.639999999999997,1,a-vale-i1,2021-22,Springfield-Early Childhood Education Center,02810001, 79.9, 28.5, 88.6, 81.6, 41.7, 0.4 --17.72,1,a-vale-i1,2021-22,Springfield-Springfield Public Day Elementary School,02810005, 83.9, 25.4, 75.0, 64.3, 32.1, 28.6 --11.8,1,a-vale-i1,2021-22,Springfield-Edward P. Boland School,02810010, 88.8, 18.5, 72.3, 49.5, 16.0, 32.7 --19.8,1,a-vale-i1,2021-22,Springfield-South End Middle School,02810355, 82.2, 29.7, 88.2, 69.5, 37.7, 61.8 --27.560000000000002,1,a-vale-i1,2021-22,Springfield-Springfield Middle School,02810360, 71.6, 43.7, 88.9, 88.9, 50.0, 77.8 --13.559999999999999,1,a-vale-i1,2021-22,Springfield-Impact Prep at Chestnut,02810366, 87.2, 21.5, 74.7, 53.9, 17.5, 47.9 --1.1200000000000003,1,a-vale-i1,2021-22,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 93.6, 11.4, 47.2, 22.8, 4.1, 30.7 --14.16,1,a-vale-i1,2021-22,Springfield-Conservatory of the Arts,02810475, 86.7, 23.4, 81.4, 55.4, 17.6, 48.7 -10.680000000000001,1,a-vale-i1,2021-22,Springfield International Charter (District)-Springfield International Charter School,04410505, 88.9, 19.2, 73.4, 46.7, 12.2, 47.7 -1.8400000000000005,1,a-vale-i1,2021-22,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 92.7, 13.9, 64.6, 24.6, 1.8, 13.2 -0.7200000000000003,1,a-vale-i1,2021-22,Stoneham-South,02840030, 94.2, 9.9, 44.8, 18.2, 2.9, 0.0 -0.5200000000000002,1,a-vale-i1,2021-22,Stoneham-Robin Hood,02840025, 92.5, 13.2, 51.8, 21.3, 7.1, 0.0 -0.15999999999999942,1,a-vale-i1,2021-22,Stoneham-Colonial Park,02840005, 92.9, 12.4, 45.8, 20.4, 8.1, 0.0 --1.8799999999999997,1,a-vale-i1,2021-22,Stoneham-Stoneham High,02840505, 92.2, 13.8, 52.4, 24.7, 7.0, 0.0 +0.7200000000000003,1,a-vale-i1,2021-22,Stoneham-South,02840030, 94.2, 9.9, 44.8, 18.2, 2.9, 0.0 1.7200000000000002,1.72,a-vale-i1,2021-22,Stoneham-Stoneham Central Middle School,02840405, 94.3, 10.0, 38.4, 15.7, 2.8, 0.0 +-1.8799999999999997,1,a-vale-i1,2021-22,Stoneham-Stoneham High,02840505, 92.2, 13.8, 52.4, 24.7, 7.0, 0.0 +-8.080000000000002,1,a-vale-i1,2021-22,Stoughton-Edwin A Jones Early Childhood Center,02850012, 88.7, 13.5, 51.2, 40.2, 13.4, 50.4 +0.5200000000000002,1,a-vale-i1,2021-22,Stoughton-Helen Hansen Elementary,02850010, 93.6, 11.2, 46.5, 18.7, 2.8, 37.0 +3.4799999999999995,3.48,a-vale-i1,2021-22,Stoughton-Joseph R Dawe Jr Elementary,02850014, 94.7, 9.0, 37.4, 11.3, 1.8, 19.7 -0.8799999999999997,1,a-vale-i1,2021-22,Stoughton-Stoughton High,02850505, 92.1, 13.6, 42.2, 22.2, 10.4, 30.4 --0.04000000000000057,1,a-vale-i1,2021-22,Stoughton-O'Donnell Middle School,02850405, 93.7, 10.9, 43.4, 20.1, 5.3, 23.7 +4.0,4.0,a-vale-i1,2021-22,Stoughton-South Elementary,02850015, 94.4, 9.8, 45.4, 10.0, 1.5, 22.3 -1.7599999999999993,1,a-vale-i1,2021-22,Stoughton-Richard L. Wilkins Elementary School,02850020, 92.7, 12.2, 47.1, 24.4, 5.8, 26.3 1.4799999999999998,1.48,a-vale-i1,2021-22,Stoughton-Joseph H Gibbons,02850025, 94.2, 10.3, 43.6, 16.3, 2.6, 32.4 -4.0,4.0,a-vale-i1,2021-22,Stoughton-South Elementary,02850015, 94.4, 9.8, 45.4, 10.0, 1.5, 22.3 -0.5200000000000002,1,a-vale-i1,2021-22,Stoughton-Helen Hansen Elementary,02850010, 93.6, 11.2, 46.5, 18.7, 2.8, 37.0 --8.080000000000002,1,a-vale-i1,2021-22,Stoughton-Edwin A Jones Early Childhood Center,02850012, 88.7, 13.5, 51.2, 40.2, 13.4, 50.4 -3.4799999999999995,3.48,a-vale-i1,2021-22,Stoughton-Joseph R Dawe Jr Elementary,02850014, 94.7, 9.0, 37.4, 11.3, 1.8, 19.7 +-0.04000000000000057,1,a-vale-i1,2021-22,Stoughton-O'Donnell Middle School,02850405, 93.7, 10.9, 43.4, 20.1, 5.3, 23.7 1.7200000000000002,1.72,a-vale-i1,2021-22,Sturbridge-Burgess Elementary,02870005, 93.7, 11.0, 51.9, 15.7, 1.5, 51.9 -6.4,1,a-vale-i1,2021-22,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 90.6, 16.2, 67.6, 36.0, 7.9, 64.1 -4.4,4.4,a-vale-i1,2021-22,Sudbury-Peter Noyes,02880030, 94.9, 9.0, 38.4, 9.0, 0.7, 0.2 -4.5600000000000005,4.56,a-vale-i1,2021-22,Sudbury-General John Nixon Elementary,02880025, 95.0, 8.9, 38.7, 8.6, 0.0, 1.7 -2.4799999999999995,2.48,a-vale-i1,2021-22,Sudbury-Israel Loring School,02880015, 94.5, 9.8, 42.5, 13.8, 1.2, 2.8 -3.6399999999999997,3.64,a-vale-i1,2021-22,Sudbury-Ephraim Curtis Middle,02880305, 94.8, 9.2, 38.9, 10.9, 1.7, 2.2 5.92,5,a-vale-i1,2021-22,Sudbury-Josiah Haynes,02880010, 95.2, 8.4, 37.4, 5.2, 0.3, 1.6 +2.4799999999999995,2.48,a-vale-i1,2021-22,Sudbury-Israel Loring School,02880015, 94.5, 9.8, 42.5, 13.8, 1.2, 2.8 +4.5600000000000005,4.56,a-vale-i1,2021-22,Sudbury-General John Nixon Elementary,02880025, 95.0, 8.9, 38.7, 8.6, 0.0, 1.7 +4.4,4.4,a-vale-i1,2021-22,Sudbury-Peter Noyes,02880030, 94.9, 9.0, 38.4, 9.0, 0.7, 0.2 +3.6399999999999997,3.64,a-vale-i1,2021-22,Sudbury-Ephraim Curtis Middle,02880305, 94.8, 9.2, 38.9, 10.9, 1.7, 2.2 -1.2400000000000007,1,a-vale-i1,2021-22,Sunderland-Sunderland Elementary,02890005, 93.0, 12.1, 48.7, 23.1, 4.1, 44.6 -1.0,1.0,a-vale-i1,2021-22,Sutton-Sutton Elementary,02900005, 93.7, 11.1, 52.1, 17.5, 1.0, 0.0 -4.2,1,a-vale-i1,2021-22,Sutton-Sutton Early Learning,02900003, 92.1, 13.8, 59.5, 30.5, 4.5, 0.0 -2.04,2.04,a-vale-i1,2021-22,Sutton-Sutton High School,02900510, 93.7, 10.7, 38.9, 14.9, 4.3, 9.6 +1.0,1.0,a-vale-i1,2021-22,Sutton-Sutton Elementary,02900005, 93.7, 11.1, 52.1, 17.5, 1.0, 0.0 1.5200000000000002,1.52,a-vale-i1,2021-22,Sutton-Sutton Middle School,02900305, 94.3, 10.2, 42.1, 16.2, 2.8, 11.2 +2.04,2.04,a-vale-i1,2021-22,Sutton-Sutton High School,02900510, 93.7, 10.7, 38.9, 14.9, 4.3, 9.6 0.8799999999999997,1,a-vale-i1,2021-22,Swampscott-Swampscott Middle,02910305, 94.1, 10.2, 40.8, 17.8, 2.1, 31.7 -4.279999999999999,1,a-vale-i1,2021-22,Swampscott-Swampscott High,02910505, 90.2, 16.8, 64.7, 30.7, 9.2, 45.9 2.4799999999999995,2.48,a-vale-i1,2021-22,Swampscott-Stanley,02910020, 93.8, 10.9, 48.1, 13.8, 1.0, 48.1 -0.44000000000000056,1,a-vale-i1,2021-22,Swampscott-Hadley,02910010, 93.1, 12.2, 56.4, 21.1, 2.3, 56.4 -4.959999999999999,1,a-vale-i1,2021-22,Swampscott-Clarke,02910005, 91.8, 14.2, 70.0, 32.4, 4.8, 70.0 +0.5599999999999994,1,a-vale-i1,2021-22,Swansea-Joseph G Luther,02920020, 92.7, 12.9, 59.3, 18.6, 6.0, 16.6 -1.1200000000000003,1,a-vale-i1,2021-22,Swansea-Gardner,02920015, 92.6, 12.9, 59.2, 22.8, 2.6, 23.5 -2.4400000000000004,1,a-vale-i1,2021-22,Swansea-Elizabeth S Brown,02920006, 92.8, 12.7, 58.9, 26.1, 2.1, 22.0 -0.5599999999999994,1,a-vale-i1,2021-22,Swansea-Joseph G Luther,02920020, 92.7, 12.9, 59.3, 18.6, 6.0, 16.6 -3.9200000000000004,1,a-vale-i1,2021-22,Swansea-Mark G Hoyle Elementary,02920017, 91.4, 14.9, 65.3, 29.8, 5.4, 40.5 -5.76,1,a-vale-i1,2021-22,Swansea-Joseph Case High,02920505, 90.7, 16.1, 61.3, 34.4, 9.2, 31.5 -2.3200000000000003,1,a-vale-i1,2021-22,Swansea-Joseph Case Jr High,02920305, 92.7, 13.1, 57.5, 25.8, 2.8, 27.0 @@ -1560,180 +1560,178 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -1.4400000000000006,1,a-vale-i1,2021-22,Tantasqua-Tantasqua Regional Jr High,07700405, 93.0, 12.3, 51.4, 23.6, 4.9, 10.4 -1.8400000000000005,1,a-vale-i1,2021-22,Tantasqua-Tantasqua Regional Sr High,07700505, 92.0, 13.9, 52.0, 24.6, 8.4, 0.0 -2.8,1,a-vale-i1,2021-22,Tantasqua-Tantasqua Regional Vocational,07700605, 91.8, 14.5, 58.8, 27.0, 7.6, 0.0 +-6.76,1,a-vale-i1,2021-22,Taunton-Elizabeth Pole,02930027, 91.0, 15.1, 66.9, 36.9, 6.9, 56.3 -3.2400000000000007,1,a-vale-i1,2021-22,Taunton-Joseph H Martin,02930042, 91.9, 13.9, 60.8, 28.1, 5.8, 42.2 --18.68,1,a-vale-i1,2021-22,Taunton-Taunton Alternative High School,02930525, 73.3, 41.1, 76.9, 66.7, 52.6, 76.9 --7.6800000000000015,1,a-vale-i1,2021-22,Taunton-Taunton High,02930505, 88.3, 19.8, 66.7, 39.2, 15.6, 53.1 --4.4799999999999995,1,a-vale-i1,2021-22,Taunton-Benjamin Friedman Middle,02930315, 91.2, 15.5, 61.3, 31.2, 8.2, 41.1 +-4.959999999999999,1,a-vale-i1,2021-22,Taunton-H H Galligan,02930057, 91.5, 14.1, 61.4, 32.4, 4.4, 41.2 -6.24,1,a-vale-i1,2021-22,Taunton-John F Parker Middle,02930305, 90.5, 16.2, 62.8, 35.6, 7.8, 51.1 +-4.4799999999999995,1,a-vale-i1,2021-22,Taunton-Benjamin Friedman Middle,02930315, 91.2, 15.5, 61.3, 31.2, 8.2, 41.1 +-7.6800000000000015,1,a-vale-i1,2021-22,Taunton-Taunton High,02930505, 88.3, 19.8, 66.7, 39.2, 15.6, 53.1 +-18.68,1,a-vale-i1,2021-22,Taunton-Taunton Alternative High School,02930525, 73.3, 41.1, 76.9, 66.7, 52.6, 76.9 +-4.8,1,a-vale-i1,2021-22,Taunton-James L. Mulcahey Elementary School,02930015, 91.3, 14.8, 66.5, 32.0, 5.8, 43.4 +-2.4400000000000004,1,a-vale-i1,2021-22,Taunton-East Taunton Elementary,02930010, 92.2, 13.7, 62.0, 26.1, 5.0, 38.0 -4.840000000000001,1,a-vale-i1,2021-22,Taunton-Joseph C Chamberlain,02930008, 91.6, 14.1, 64.3, 32.1, 4.5, 61.5 -3.8400000000000007,1,a-vale-i1,2021-22,Taunton-Edmund Hatch Bennett,02930007, 92.0, 14.3, 62.5, 29.6, 3.3, 36.5 -5.919999999999999,1,a-vale-i1,2021-22,Taunton-Edward F. Leddy Preschool,02930005, 91.2, 12.6, 54.9, 34.8, 6.3, 53.9 --4.959999999999999,1,a-vale-i1,2021-22,Taunton-H H Galligan,02930057, 91.5, 14.1, 61.4, 32.4, 4.4, 41.2 --6.76,1,a-vale-i1,2021-22,Taunton-Elizabeth Pole,02930027, 91.0, 15.1, 66.9, 36.9, 6.9, 56.3 --4.8,1,a-vale-i1,2021-22,Taunton-James L. Mulcahey Elementary School,02930015, 91.3, 14.8, 66.5, 32.0, 5.8, 43.4 --2.4400000000000004,1,a-vale-i1,2021-22,Taunton-East Taunton Elementary,02930010, 92.2, 13.7, 62.0, 26.1, 5.0, 38.0 +0.12000000000000029,1,a-vale-i1,2021-22,Tewksbury-John F. Ryan,02950023, 93.3, 11.7, 53.6, 19.7, 2.3, 21.3 +0.44000000000000056,1,a-vale-i1,2021-22,Tewksbury-North Street,02950020, 93.4, 11.4, 52.5, 18.9, 1.5, 19.2 -1.4400000000000006,1,a-vale-i1,2021-22,Tewksbury-L F Dewing,02950001, 92.7, 12.5, 56.9, 23.6, 3.5, 30.5 2.72,2.72,a-vale-i1,2021-22,Tewksbury-Heath-Brook,02950010, 94.0, 10.6, 49.5, 13.2, 0.3, 24.1 -0.44000000000000056,1,a-vale-i1,2021-22,Tewksbury-North Street,02950020, 93.4, 11.4, 52.5, 18.9, 1.5, 19.2 -0.12000000000000029,1,a-vale-i1,2021-22,Tewksbury-John F. Ryan,02950023, 93.3, 11.7, 53.6, 19.7, 2.3, 21.3 -3.0,3.0,a-vale-i1,2021-22,Tewksbury-Louise Davy Trahan,02950025, 94.3, 10.2, 52.3, 12.5, 0.0, 24.1 -0.35999999999999943,1,a-vale-i1,2021-22,Tewksbury-Tewksbury Memorial High,02950505, 92.4, 13.5, 48.2, 20.9, 6.1, 27.4 0.35999999999999943,1,a-vale-i1,2021-22,Tewksbury-John W. Wynn Middle,02950305, 93.3, 11.7, 51.5, 19.1, 2.7, 20.8 +3.0,3.0,a-vale-i1,2021-22,Tewksbury-Louise Davy Trahan,02950025, 94.3, 10.2, 52.3, 12.5, 0.0, 24.1 -6.880000000000001,1,a-vale-i1,2021-22,Tisbury-Tisbury Elementary,02960005, 91.3, 14.0, 63.1, 37.2, 5.8, 5.2 5.08,5,a-vale-i1,2021-22,Topsfield-Proctor Elementary,02980005, 94.9, 8.7, 36.8, 7.3, 0.8, 36.8 3.12,3.12,a-vale-i1,2021-22,Topsfield-Steward Elementary,02980010, 94.1, 9.8, 46.3, 12.2, 0.8, 46.3 -1.4,1,a-vale-i1,2021-22,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 92.6, 13.2, 55.5, 23.5, 3.6, 0.0 --0.7200000000000003,1,a-vale-i1,2021-22,Triton-Pine Grove,07730025, 93.4, 11.4, 48.8, 21.8, 3.8, 30.3 --2.5599999999999996,1,a-vale-i1,2021-22,Triton-Triton Regional Middle School,07730405, 91.9, 14.3, 56.3, 26.4, 5.9, 40.5 --3.28,1,a-vale-i1,2021-22,Triton-Triton Regional High School,07730505, 91.0, 15.5, 57.0, 28.2, 10.4, 23.0 --0.8799999999999997,1,a-vale-i1,2021-22,Triton-Newbury Elementary,07730020, 93.1, 11.8, 56.2, 22.2, 2.0, 34.5 -4.159999999999999,1,a-vale-i1,2021-22,Triton-Salisbury Elementary,07730015, 92.1, 13.1, 57.8, 30.4, 5.1, 38.7 +-0.8799999999999997,1,a-vale-i1,2021-22,Triton-Newbury Elementary,07730020, 93.1, 11.8, 56.2, 22.2, 2.0, 34.5 +-0.7200000000000003,1,a-vale-i1,2021-22,Triton-Pine Grove,07730025, 93.4, 11.4, 48.8, 21.8, 3.8, 30.3 +-3.28,1,a-vale-i1,2021-22,Triton-Triton Regional High School,07730505, 91.0, 15.5, 57.0, 28.2, 10.4, 23.0 +-2.5599999999999996,1,a-vale-i1,2021-22,Triton-Triton Regional Middle School,07730405, 91.9, 14.3, 56.3, 26.4, 5.9, 40.5 -9.64,1,a-vale-i1,2021-22,Truro-Truro Central,03000005, 90.6, 16.2, 74.6, 44.1, 5.1, 72.9 -0.9200000000000003,1,a-vale-i1,2021-22,Tyngsborough-Tyngsborough Elementary,03010020, 93.0, 12.1, 56.6, 22.3, 2.2, 0.0 --7.280000000000001,1,a-vale-i1,2021-22,Tyngsborough-Tyngsborough High School,03010505, 89.3, 18.6, 68.8, 38.2, 10.5, 20.5 -1.2799999999999998,1,a-vale-i1,2021-22,Tyngsborough-Tyngsborough Middle,03010305, 93.2, 11.9, 50.6, 23.2, 3.0, 0.0 +-7.280000000000001,1,a-vale-i1,2021-22,Tyngsborough-Tyngsborough High School,03010505, 89.3, 18.6, 68.8, 38.2, 10.5, 20.5 -12.52,1,a-vale-i1,2021-22,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 87.5, 21.3, 70.9, 51.3, 19.1, 65.0 -5.2,1,a-vale-i1,2021-22,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 90.6, 16.2, 60.5, 33.0, 11.6, 52.6 -0.5599999999999994,1,a-vale-i1,2021-22,Up-Island Regional-Chilmark Elementary,07740010, 92.7, 13.1, 66.1, 21.4, 0.0, 58.9 -8.680000000000001,1,a-vale-i1,2021-22,Up-Island Regional-West Tisbury Elementary,07740020, 90.3, 16.8, 74.0, 41.7, 7.5, 41.4 -6.2,1,a-vale-i1,2021-22,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 90.6, 16.5, 61.3, 35.5, 9.9, 16.2 -0.6799999999999997,1,a-vale-i1,2021-22,Uxbridge-Gateway to College,03040515, 96.1, 5.1, 21.7, 21.7, 6.5, 17.4 --4.720000000000001,1,a-vale-i1,2021-22,Uxbridge-Taft Early Learning Center,03040005, 91.8, 13.9, 63.8, 31.8, 2.7, 13.3 --2.1599999999999993,1,a-vale-i1,2021-22,Uxbridge-Whitin Intermediate,03040405, 92.5, 13.3, 62.0, 25.4, 3.6, 18.7 -2.8,1,a-vale-i1,2021-22,Uxbridge-Uxbridge High,03040505, 91.5, 14.7, 56.4, 27.0, 8.6, 25.9 +-2.1599999999999993,1,a-vale-i1,2021-22,Uxbridge-Whitin Intermediate,03040405, 92.5, 13.3, 62.0, 25.4, 3.6, 18.7 +-4.720000000000001,1,a-vale-i1,2021-22,Uxbridge-Taft Early Learning Center,03040005, 91.8, 13.9, 63.8, 31.8, 2.7, 13.3 -7.76,1,a-vale-i1,2021-22,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 89.6, 18.1, 67.2, 39.4, 15.5, 81.6 -2.88,2.88,a-vale-i1,2021-22,Wachusett-Thomas Prince,07750045, 94.5, 9.8, 43.7, 12.8, 1.4, 0.0 -0.15999999999999942,1,a-vale-i1,2021-22,Wachusett-Glenwood Elementary School,07750060, 93.5, 11.6, 55.7, 19.6, 0.9, 0.0 --0.9599999999999994,1,a-vale-i1,2021-22,Wachusett-Paxton Center,07750040, 92.8, 12.6, 60.3, 22.4, 2.2, 0.0 -3.0799999999999996,3.08,a-vale-i1,2021-22,Wachusett-Leroy E.Mayo,07750032, 93.9, 10.8, 55.2, 12.3, 0.8, 0.0 -3.0799999999999996,3.08,a-vale-i1,2021-22,Wachusett-Houghton Elementary,07750027, 94.3, 10.1, 46.1, 12.3, 1.8, 0.0 -1.8399999999999999,1.84,a-vale-i1,2021-22,Wachusett-Dawson,07750020, 94.2, 10.3, 45.3, 15.4, 1.0, 0.0 -1.3599999999999994,1.36,a-vale-i1,2021-22,Wachusett-Mountview Middle,07750305, 94.0, 10.7, 45.8, 16.6, 2.3, 0.0 --1.1599999999999995,1,a-vale-i1,2021-22,Wachusett-Naquag Elementary School,07750005, 93.1, 12.3, 60.3, 22.9, 1.4, 0.0 -4.040000000000001,1,a-vale-i1,2021-22,Wachusett-Early Childhood Center,07750001, 91.6, 10.8, 44.2, 30.1, 8.6, 0.0 -2.2399999999999998,2.24,a-vale-i1,2021-22,Wachusett-Wachusett Regional High,07750505, 94.0, 10.6, 41.9, 14.4, 3.9, 0.0 --0.5599999999999994,1,a-vale-i1,2021-22,Wachusett-Chocksett Middle School,07750315, 93.0, 12.4, 48.1, 21.4, 3.7, 0.0 --0.24000000000000057,1,a-vale-i1,2021-22,Wachusett-Central Tree Middle,07750310, 93.1, 12.3, 54.5, 20.6, 2.4, 0.0 +2.88,2.88,a-vale-i1,2021-22,Wachusett-Thomas Prince,07750045, 94.5, 9.8, 43.7, 12.8, 1.4, 0.0 0.6400000000000006,1,a-vale-i1,2021-22,Wachusett-Davis Hill Elementary,07750018, 93.7, 11.1, 49.0, 18.4, 2.8, 0.0 -0.12000000000000029,1,a-vale-i1,2021-22,Wakefield-Wakefield Memorial High,03050505, 92.7, 12.9, 47.5, 19.7, 6.4, 14.1 --8.959999999999999,1,a-vale-i1,2021-22,Wakefield-Early Childhood Center at the Doyle School,03050001, 90.0, 16.4, 75.4, 42.4, 5.1, 0.0 -2.6,2.6,a-vale-i1,2021-22,Wakefield-Galvin Middle School,03050310, 94.2, 10.2, 39.8, 13.5, 2.1, 27.6 -4.16,4.16,a-vale-i1,2021-22,Wakefield-Walton,03050040, 94.6, 9.7, 42.7, 9.6, 1.4, 0.0 -4.6,4.6,a-vale-i1,2021-22,Wakefield-Greenwood,03050020, 94.8, 9.2, 40.2, 8.5, 0.9, 0.0 -1.8799999999999997,1.88,a-vale-i1,2021-22,Wakefield-Woodville School,03050015, 94.4, 10.0, 41.0, 15.3, 2.3, 0.0 +1.8399999999999999,1.84,a-vale-i1,2021-22,Wachusett-Dawson,07750020, 94.2, 10.3, 45.3, 15.4, 1.0, 0.0 +3.0799999999999996,3.08,a-vale-i1,2021-22,Wachusett-Houghton Elementary,07750027, 94.3, 10.1, 46.1, 12.3, 1.8, 0.0 +3.0799999999999996,3.08,a-vale-i1,2021-22,Wachusett-Leroy E.Mayo,07750032, 93.9, 10.8, 55.2, 12.3, 0.8, 0.0 +-0.9599999999999994,1,a-vale-i1,2021-22,Wachusett-Paxton Center,07750040, 92.8, 12.6, 60.3, 22.4, 2.2, 0.0 +-1.1599999999999995,1,a-vale-i1,2021-22,Wachusett-Naquag Elementary School,07750005, 93.1, 12.3, 60.3, 22.9, 1.4, 0.0 +0.15999999999999942,1,a-vale-i1,2021-22,Wachusett-Glenwood Elementary School,07750060, 93.5, 11.6, 55.7, 19.6, 0.9, 0.0 +1.3599999999999994,1.36,a-vale-i1,2021-22,Wachusett-Mountview Middle,07750305, 94.0, 10.7, 45.8, 16.6, 2.3, 0.0 +-0.24000000000000057,1,a-vale-i1,2021-22,Wachusett-Central Tree Middle,07750310, 93.1, 12.3, 54.5, 20.6, 2.4, 0.0 +-0.5599999999999994,1,a-vale-i1,2021-22,Wachusett-Chocksett Middle School,07750315, 93.0, 12.4, 48.1, 21.4, 3.7, 0.0 +2.2399999999999998,2.24,a-vale-i1,2021-22,Wachusett-Wachusett Regional High,07750505, 94.0, 10.6, 41.9, 14.4, 3.9, 0.0 2.3200000000000003,2.32,a-vale-i1,2021-22,Wakefield-Dolbeare,03050005, 93.9, 10.8, 46.4, 14.2, 1.8, 0.0 +-8.959999999999999,1,a-vale-i1,2021-22,Wakefield-Early Childhood Center at the Doyle School,03050001, 90.0, 16.4, 75.4, 42.4, 5.1, 0.0 +1.8799999999999997,1.88,a-vale-i1,2021-22,Wakefield-Woodville School,03050015, 94.4, 10.0, 41.0, 15.3, 2.3, 0.0 +4.6,4.6,a-vale-i1,2021-22,Wakefield-Greenwood,03050020, 94.8, 9.2, 40.2, 8.5, 0.9, 0.0 +4.16,4.16,a-vale-i1,2021-22,Wakefield-Walton,03050040, 94.6, 9.7, 42.7, 9.6, 1.4, 0.0 +2.6,2.6,a-vale-i1,2021-22,Wakefield-Galvin Middle School,03050310, 94.2, 10.2, 39.8, 13.5, 2.1, 27.6 +0.12000000000000029,1,a-vale-i1,2021-22,Wakefield-Wakefield Memorial High,03050505, 92.7, 12.9, 47.5, 19.7, 6.4, 14.1 -3.2400000000000007,1,a-vale-i1,2021-22,Wales-Wales Elementary,03060005, 92.7, 12.2, 57.0, 28.1, 1.7, 55.4 +2.16,2.16,a-vale-i1,2021-22,Walpole-Walpole High,03070505, 93.6, 11.3, 42.9, 14.6, 3.7, 17.7 3.3600000000000003,3.36,a-vale-i1,2021-22,Walpole-Eleanor N Johnson Middle,03070310, 94.6, 9.7, 39.0, 11.6, 1.9, 29.0 3.56,3.56,a-vale-i1,2021-22,Walpole-Bird Middle,03070305, 95.0, 8.9, 36.2, 11.1, 1.6, 17.7 4.720000000000001,4.72,a-vale-i1,2021-22,Walpole-Old Post Road,03070018, 94.7, 9.5, 43.2, 8.2, 0.2, 13.0 -2.16,2.16,a-vale-i1,2021-22,Walpole-Boyden,03070010, 93.7, 11.3, 53.0, 14.6, 0.8, 29.8 --10.440000000000001,1,a-vale-i1,2021-22,Walpole-Daniel Feeney Preschool Center,03070002, 88.6, 19.0, 80.4, 46.1, 7.8, 69.6 -2.8,2.8,a-vale-i1,2021-22,Walpole-Elm Street School,03070005, 94.1, 10.7, 51.7, 13.0, 0.9, 28.0 -2.16,2.16,a-vale-i1,2021-22,Walpole-Walpole High,03070505, 93.6, 11.3, 42.9, 14.6, 3.7, 17.7 4.4399999999999995,4.44,a-vale-i1,2021-22,Walpole-Fisher,03070015, 94.6, 9.7, 45.8, 8.9, 1.1, 7.1 --6.840000000000001,1,a-vale-i1,2021-22,Waltham-Waltham Sr High,03080505, 88.6, 19.0, 60.2, 37.1, 15.9, 44.9 --4.959999999999999,1,a-vale-i1,2021-22,Waltham-Northeast Elementary School,03080040, 91.6, 13.1, 56.5, 32.4, 7.6, 56.5 -0.8799999999999997,1,a-vale-i1,2021-22,Waltham-Thomas R Plympton Elementary School,03080050, 93.8, 10.7, 46.1, 17.8, 3.4, 44.1 +2.16,2.16,a-vale-i1,2021-22,Walpole-Boyden,03070010, 93.7, 11.3, 53.0, 14.6, 0.8, 29.8 +2.8,2.8,a-vale-i1,2021-22,Walpole-Elm Street School,03070005, 94.1, 10.7, 51.7, 13.0, 0.9, 28.0 +-10.440000000000001,1,a-vale-i1,2021-22,Walpole-Daniel Feeney Preschool Center,03070002, 88.6, 19.0, 80.4, 46.1, 7.8, 69.6 1.6799999999999997,1.68,a-vale-i1,2021-22,Waltham-James Fitzgerald Elementary School,03080060, 94.0, 10.6, 44.6, 15.8, 1.6, 42.7 -0.5200000000000002,1,a-vale-i1,2021-22,Waltham-Henry Whittemore Elementary School,03080065, 92.6, 12.6, 48.7, 21.3, 4.6, 32.0 -1.4400000000000006,1.44,a-vale-i1,2021-22,Waltham-John F Kennedy Middle,03080404, 93.5, 11.4, 42.5, 16.4, 3.8, 29.0 --1.5200000000000002,1,a-vale-i1,2021-22,Waltham-John W. McDevitt Middle School,03080415, 92.7, 12.4, 47.8, 23.8, 4.6, 43.4 2.9200000000000004,2.92,a-vale-i1,2021-22,Waltham-Douglas MacArthur Elementary School,03080032, 94.3, 9.9, 43.3, 12.7, 1.8, 43.3 -1.7200000000000002,1.72,a-vale-i1,2021-22,Waltham-Waltham Public Schools Dual Language Program,03080001, 94.2, 10.3, 47.6, 15.7, 0.5, 44.3 +-4.959999999999999,1,a-vale-i1,2021-22,Waltham-Northeast Elementary School,03080040, 91.6, 13.1, 56.5, 32.4, 7.6, 56.5 +1.4400000000000006,1.44,a-vale-i1,2021-22,Waltham-John F Kennedy Middle,03080404, 93.5, 11.4, 42.5, 16.4, 3.8, 29.0 -2.4799999999999995,1,a-vale-i1,2021-22,Waltham-William F. Stanley Elementary School,03080005, 93.3, 10.8, 44.4, 26.2, 4.7, 43.5 +0.8799999999999997,1,a-vale-i1,2021-22,Waltham-Thomas R Plympton Elementary School,03080050, 93.8, 10.7, 46.1, 17.8, 3.4, 44.1 +-6.840000000000001,1,a-vale-i1,2021-22,Waltham-Waltham Sr High,03080505, 88.6, 19.0, 60.2, 37.1, 15.9, 44.9 +-1.5200000000000002,1,a-vale-i1,2021-22,Waltham-John W. McDevitt Middle School,03080415, 92.7, 12.4, 47.8, 23.8, 4.6, 43.4 +1.7200000000000002,1.72,a-vale-i1,2021-22,Waltham-Waltham Public Schools Dual Language Program,03080001, 94.2, 10.3, 47.6, 15.7, 0.5, 44.3 -4.279999999999999,1,a-vale-i1,2021-22,Ware-Ware Middle School,03090305, 91.8, 13.9, 61.1, 30.7, 5.2, 10.4 -7.6800000000000015,1,a-vale-i1,2021-22,Ware-Ware Junior/Senior High School,03090505, 89.5, 17.7, 66.0, 39.2, 14.6, 35.9 -8.52,1,a-vale-i1,2021-22,Ware-Stanley M Koziol Elementary School,03090020, 90.5, 14.9, 65.6, 41.3, 9.5, 26.4 -5.080000000000001,1,a-vale-i1,2021-22,Wareham-John William Decas,03100003, 91.1, 15.1, 69.1, 32.7, 5.7, 40.7 +-5.080000000000001,1,a-vale-i1,2021-22,Wareham-Minot Forest,03100017, 91.1, 15.6, 66.4, 32.7, 6.7, 37.3 +-5.24,1,a-vale-i1,2021-22,Wareham-Wareham Senior High,03100505, 91.3, 15.0, 56.9, 33.1, 9.4, 19.3 -24.880000000000003,1,a-vale-i1,2021-22,Wareham-Wareham Cooperative Alternative School,03100315, 75.0, 19.9, 73.3, 82.2, 48.9, 71.1 -5.719999999999999,1,a-vale-i1,2021-22,Wareham-Wareham Middle,03100305, 91.5, 15.0, 61.9, 34.3, 6.2, 33.8 --5.24,1,a-vale-i1,2021-22,Wareham-Wareham Senior High,03100505, 91.3, 15.0, 56.9, 33.1, 9.4, 19.3 --5.080000000000001,1,a-vale-i1,2021-22,Wareham-Minot Forest,03100017, 91.1, 15.6, 66.4, 32.7, 6.7, 37.3 -0.6400000000000006,1,a-vale-i1,2021-22,Watertown-Watertown Middle,03140305, 92.7, 13.0, 50.1, 18.4, 5.0, 10.2 1.2799999999999998,1.28,a-vale-i1,2021-22,Watertown-Cunniff,03140015, 93.4, 11.7, 48.7, 16.8, 2.2, 0.3 -1.9600000000000002,1.96,a-vale-i1,2021-22,Watertown-James Russell Lowell,03140025, 93.7, 11.3, 52.5, 15.1, 1.7, 20.1 --2.0400000000000005,1,a-vale-i1,2021-22,Watertown-Watertown High,03140505, 91.1, 15.3, 50.3, 25.1, 10.5, 13.9 0.5200000000000002,1,a-vale-i1,2021-22,Watertown-Hosmer,03140020, 93.6, 11.4, 47.8, 18.7, 3.4, 12.2 +1.9600000000000002,1.96,a-vale-i1,2021-22,Watertown-James Russell Lowell,03140025, 93.7, 11.3, 52.5, 15.1, 1.7, 20.1 +0.6400000000000006,1,a-vale-i1,2021-22,Watertown-Watertown Middle,03140305, 92.7, 13.0, 50.1, 18.4, 5.0, 10.2 +-2.0400000000000005,1,a-vale-i1,2021-22,Watertown-Watertown High,03140505, 91.1, 15.3, 50.3, 25.1, 10.5, 13.9 4.5600000000000005,4.56,a-vale-i1,2021-22,Wayland-Claypit Hill School,03150005, 94.9, 9.1, 39.7, 8.6, 1.0, 0.0 -4.279999999999999,4.28,a-vale-i1,2021-22,Wayland-Wayland Middle School,03150305, 95.2, 8.5, 33.1, 9.3, 1.3, 2.3 4.5200000000000005,4.52,a-vale-i1,2021-22,Wayland-Happy Hollow School,03150015, 95.1, 8.7, 37.2, 8.7, 0.3, 0.0 4.92,4.92,a-vale-i1,2021-22,Wayland-Loker School,03150020, 95.0, 8.7, 37.9, 7.7, 0.5, 0.0 +4.279999999999999,4.28,a-vale-i1,2021-22,Wayland-Wayland Middle School,03150305, 95.2, 8.5, 33.1, 9.3, 1.3, 2.3 2.8,2.8,a-vale-i1,2021-22,Wayland-Wayland High School,03150505, 94.4, 9.9, 34.9, 13.0, 2.8, 3.1 -0.5599999999999994,1,a-vale-i1,2021-22,Webster-Park Avenue Elementary,03160015, 93.5, 10.7, 43.1, 21.4, 4.6, 0.0 --16.880000000000003,1,a-vale-i1,2021-22,Webster-Bartlett High School,03160505, 83.6, 26.6, 77.3, 62.2, 31.3, 0.2 -10.88,1,a-vale-i1,2021-22,Webster-Webster Middle School,03160315, 88.4, 19.9, 72.0, 47.2, 13.8, 0.0 -4.68,4.68,a-vale-i1,2021-22,Wellesley-Wellesley Middle,03170305, 95.3, 8.4, 31.6, 8.3, 0.7, 0.0 -2.2399999999999998,2.24,a-vale-i1,2021-22,Wellesley-Wellesley Sr High,03170505, 94.1, 10.2, 38.2, 14.4, 3.4, 1.7 --0.8799999999999997,1,a-vale-i1,2021-22,Wellesley-Preschool at Wellesley Schools,03170001, 92.2, 13.3, 56.4, 22.2, 4.3, 0.0 -4.64,4.64,a-vale-i1,2021-22,Wellesley-Katharine Lee Bates,03170005, 95.0, 8.9, 39.6, 8.4, 0.7, 0.0 -4.04,4.04,a-vale-i1,2021-22,Wellesley-Joseph E Fiske,03170015, 95.0, 8.9, 41.0, 9.9, 0.4, 0.0 -2.9200000000000004,2.92,a-vale-i1,2021-22,Wellesley-John D Hardy,03170020, 95.1, 8.6, 31.2, 12.7, 1.4, 0.0 -4.36,4.36,a-vale-i1,2021-22,Wellesley-Hunnewell,03170025, 95.1, 8.8, 36.5, 9.1, 0.5, 0.0 +-16.880000000000003,1,a-vale-i1,2021-22,Webster-Bartlett High School,03160505, 83.6, 26.6, 77.3, 62.2, 31.3, 0.2 4.720000000000001,4.72,a-vale-i1,2021-22,Wellesley-Schofield,03170045, 94.8, 9.2, 39.0, 8.2, 0.6, 0.0 +4.36,4.36,a-vale-i1,2021-22,Wellesley-Hunnewell,03170025, 95.1, 8.8, 36.5, 9.1, 0.5, 0.0 5.16,5,a-vale-i1,2021-22,Wellesley-Sprague Elementary School,03170048, 95.3, 8.4, 32.4, 7.1, 0.0, 0.0 3.6799999999999997,3.68,a-vale-i1,2021-22,Wellesley-Ernest F Upham,03170050, 94.7, 9.4, 43.7, 10.8, 0.0, 0.0 +2.2399999999999998,2.24,a-vale-i1,2021-22,Wellesley-Wellesley Sr High,03170505, 94.1, 10.2, 38.2, 14.4, 3.4, 1.7 +4.68,4.68,a-vale-i1,2021-22,Wellesley-Wellesley Middle,03170305, 95.3, 8.4, 31.6, 8.3, 0.7, 0.0 +2.9200000000000004,2.92,a-vale-i1,2021-22,Wellesley-John D Hardy,03170020, 95.1, 8.6, 31.2, 12.7, 1.4, 0.0 +4.04,4.04,a-vale-i1,2021-22,Wellesley-Joseph E Fiske,03170015, 95.0, 8.9, 41.0, 9.9, 0.4, 0.0 +4.64,4.64,a-vale-i1,2021-22,Wellesley-Katharine Lee Bates,03170005, 95.0, 8.9, 39.6, 8.4, 0.7, 0.0 +-0.8799999999999997,1,a-vale-i1,2021-22,Wellesley-Preschool at Wellesley Schools,03170001, 92.2, 13.3, 56.4, 22.2, 4.3, 0.0 -12.16,1,a-vale-i1,2021-22,Wellfleet-Wellfleet Elementary,03180005, 90.0, 17.4, 84.6, 50.4, 2.6, 33.3 -0.8799999999999997,1,a-vale-i1,2021-22,West Boylston-West Boylston Junior/Senior High,03220505, 93.8, 10.9, 43.9, 17.8, 3.6, 42.1 2.4799999999999995,2.48,a-vale-i1,2021-22,West Boylston-Major Edwards Elementary,03220005, 94.2, 10.1, 39.4, 13.8, 2.3, 34.7 --2.12,1,a-vale-i1,2021-22,West Bridgewater-West Bridgewater Junior/Senior,03230505, 92.3, 13.3, 53.3, 25.3, 4.7, 12.1 -1.3200000000000003,1.32,a-vale-i1,2021-22,West Bridgewater-Rose L Macdonald,03230003, 93.6, 11.1, 53.2, 16.7, 1.2, 7.3 +0.8799999999999997,1,a-vale-i1,2021-22,West Boylston-West Boylston Junior/Senior High,03220505, 93.8, 10.9, 43.9, 17.8, 3.6, 42.1 -1.6400000000000006,1,a-vale-i1,2021-22,West Bridgewater-Howard School,03230305, 92.6, 12.9, 58.4, 24.1, 1.7, 33.0 -2.72,1,a-vale-i1,2021-22,West Bridgewater-Spring Street School,03230005, 91.6, 14.2, 56.7, 26.8, 5.1, 8.9 --2.2,1,a-vale-i1,2021-22,West Springfield-John R Fausey,03320010, 92.6, 13.0, 59.8, 25.5, 3.7, 5.4 --6.959999999999999,1,a-vale-i1,2021-22,West Springfield-Memorial,03320025, 90.5, 16.0, 65.4, 37.4, 8.1, 3.3 --8.12,1,a-vale-i1,2021-22,West Springfield-Philip G Coburn,03320007, 90.3, 15.9, 63.2, 40.3, 9.7, 11.6 --7.719999999999999,1,a-vale-i1,2021-22,West Springfield-John Ashley,03320005, 89.8, 17.0, 72.3, 39.3, 10.2, 2.9 +1.3200000000000003,1.32,a-vale-i1,2021-22,West Bridgewater-Rose L Macdonald,03230003, 93.6, 11.1, 53.2, 16.7, 1.2, 7.3 +-2.12,1,a-vale-i1,2021-22,West Bridgewater-West Bridgewater Junior/Senior,03230505, 92.3, 13.3, 53.3, 25.3, 4.7, 12.1 -15.88,1,a-vale-i1,2021-22,West Springfield-Cowing Early Childhood,03320001, 85.2, 17.6, 71.6, 59.7, 21.6, 4.5 --4.76,1,a-vale-i1,2021-22,West Springfield-Mittineague,03320030, 91.4, 15.0, 66.9, 31.9, 5.4, 4.8 --1.1599999999999995,1,a-vale-i1,2021-22,West Springfield-Tatham,03320040, 92.8, 12.7, 56.8, 22.9, 3.7, 1.5 --4.76,1,a-vale-i1,2021-22,West Springfield-West Springfield Middle,03320305, 91.0, 15.5, 58.8, 31.9, 9.4, 8.2 -4.08,1,a-vale-i1,2021-22,West Springfield-West Springfield High,03320505, 91.1, 15.2, 53.9, 30.2, 11.6, 12.4 --4.279999999999999,1,a-vale-i1,2021-22,Westborough-Westborough High,03210505, 90.6, 16.4, 53.5, 30.7, 11.3, 1.7 -1.5599999999999994,1.56,a-vale-i1,2021-22,Westborough-Mill Pond School,03210045, 94.4, 9.9, 39.4, 16.1, 1.3, 9.9 +-4.76,1,a-vale-i1,2021-22,West Springfield-West Springfield Middle,03320305, 91.0, 15.5, 58.8, 31.9, 9.4, 8.2 +-1.1599999999999995,1,a-vale-i1,2021-22,West Springfield-Tatham,03320040, 92.8, 12.7, 56.8, 22.9, 3.7, 1.5 +-4.76,1,a-vale-i1,2021-22,West Springfield-Mittineague,03320030, 91.4, 15.0, 66.9, 31.9, 5.4, 4.8 +-6.959999999999999,1,a-vale-i1,2021-22,West Springfield-Memorial,03320025, 90.5, 16.0, 65.4, 37.4, 8.1, 3.3 +-2.2,1,a-vale-i1,2021-22,West Springfield-John R Fausey,03320010, 92.6, 13.0, 59.8, 25.5, 3.7, 5.4 +-7.719999999999999,1,a-vale-i1,2021-22,West Springfield-John Ashley,03320005, 89.8, 17.0, 72.3, 39.3, 10.2, 2.9 +-8.12,1,a-vale-i1,2021-22,West Springfield-Philip G Coburn,03320007, 90.3, 15.9, 63.2, 40.3, 9.7, 11.6 -0.6799999999999997,1,a-vale-i1,2021-22,Westborough-J Harding Armstrong,03210005, 93.1, 11.6, 47.6, 21.7, 4.1, 3.6 0.3200000000000003,1,a-vale-i1,2021-22,Westborough-Annie E Fales,03210010, 93.8, 10.9, 43.6, 19.2, 2.8, 0.0 -5.44,1,a-vale-i1,2021-22,Westborough-Elsie A Hastings Elementary,03210025, 91.4, 13.8, 55.5, 33.6, 8.4, 0.0 4.4399999999999995,4.44,a-vale-i1,2021-22,Westborough-Sarah W Gibbons Middle,03210305, 95.9, 7.2, 22.6, 8.9, 1.8, 8.2 +1.5599999999999994,1.56,a-vale-i1,2021-22,Westborough-Mill Pond School,03210045, 94.4, 9.9, 39.4, 16.1, 1.3, 9.9 +-4.279999999999999,1,a-vale-i1,2021-22,Westborough-Westborough High,03210505, 90.6, 16.4, 53.5, 30.7, 11.3, 1.7 +-5.280000000000001,1,a-vale-i1,2021-22,Westfield-Paper Mill,03250036, 91.1, 15.2, 59.9, 33.2, 8.7, 26.4 -0.2,1,a-vale-i1,2021-22,Westfield-Southampton Road,03250040, 92.9, 12.5, 59.9, 20.5, 1.4, 5.5 -2.88,1,a-vale-i1,2021-22,Westfield-Westfield Intermediate School,03250075, 92.5, 13.0, 54.6, 27.2, 5.0, 0.0 --5.280000000000001,1,a-vale-i1,2021-22,Westfield-Paper Mill,03250036, 91.1, 15.2, 59.9, 33.2, 8.7, 26.4 --2.6400000000000006,1,a-vale-i1,2021-22,Westfield-Munger Hill,03250033, 92.4, 13.0, 60.6, 26.6, 2.0, 18.6 --2.0799999999999996,1,a-vale-i1,2021-22,Westfield-Highland,03250025, 92.4, 13.0, 55.5, 25.2, 3.6, 22.0 --3.9200000000000004,1,a-vale-i1,2021-22,Westfield-Abner Gibbs,03250020, 91.2, 15.4, 70.8, 29.8, 5.8, 32.7 --9.16,1,a-vale-i1,2021-22,Westfield-Franklin Ave,03250015, 90.6, 16.4, 71.2, 42.9, 6.2, 22.6 --2.9200000000000004,1,a-vale-i1,2021-22,Westfield-Westfield Technical Academy,03250605, 91.9, 14.3, 58.2, 27.3, 6.4, 16.9 --12.36,1,a-vale-i1,2021-22,Westfield-Fort Meadow Early Childhood Center,03250003, 88.2, 16.1, 65.5, 50.9, 12.7, 4.8 -0.44000000000000056,1,a-vale-i1,2021-22,Westfield-Westfield Virtual School,03250705, 94.5, 9.2, 30.5, 18.9, 9.5, 0.0 --7.719999999999999,1,a-vale-i1,2021-22,Westfield-Westfield High,03250505, 88.0, 20.3, 59.4, 39.3, 18.1, 33.7 -5.3199999999999985,1,a-vale-i1,2021-22,Westfield-Westfield Middle School,03250310, 91.6, 14.7, 58.6, 33.3, 6.4, 31.7 -3.8,3.8,a-vale-i1,2021-22,Westford-Stony Brook School,03260330, 95.1, 8.8, 34.2, 10.5, 1.6, 0.0 --1.6799999999999997,1,a-vale-i1,2021-22,Westford-Rita E. Miller Elementary School,03260055, 92.0, 13.5, 61.5, 24.2, 5.5, 0.0 -3.9200000000000004,3.92,a-vale-i1,2021-22,Westford-Blanchard Middle,03260310, 95.3, 8.4, 33.1, 10.2, 1.9, 0.0 -2.6799999999999997,2.68,a-vale-i1,2021-22,Westford-Westford Academy,03260505, 94.6, 9.4, 36.5, 13.3, 2.1, 0.7 -4.5600000000000005,4.56,a-vale-i1,2021-22,Westford-John A. Crisafulli Elementary School,03260045, 95.0, 8.9, 38.9, 8.6, 0.3, 0.0 -2.3200000000000003,2.32,a-vale-i1,2021-22,Westford-Nabnasset,03260015, 94.1, 10.4, 49.5, 14.2, 1.8, 0.0 +-7.719999999999999,1,a-vale-i1,2021-22,Westfield-Westfield High,03250505, 88.0, 20.3, 59.4, 39.3, 18.1, 33.7 +-2.9200000000000004,1,a-vale-i1,2021-22,Westfield-Westfield Technical Academy,03250605, 91.9, 14.3, 58.2, 27.3, 6.4, 16.9 +0.44000000000000056,1,a-vale-i1,2021-22,Westfield-Westfield Virtual School,03250705, 94.5, 9.2, 30.5, 18.9, 9.5, 0.0 +-12.36,1,a-vale-i1,2021-22,Westfield-Fort Meadow Early Childhood Center,03250003, 88.2, 16.1, 65.5, 50.9, 12.7, 4.8 +-9.16,1,a-vale-i1,2021-22,Westfield-Franklin Ave,03250015, 90.6, 16.4, 71.2, 42.9, 6.2, 22.6 +-3.9200000000000004,1,a-vale-i1,2021-22,Westfield-Abner Gibbs,03250020, 91.2, 15.4, 70.8, 29.8, 5.8, 32.7 +-2.0799999999999996,1,a-vale-i1,2021-22,Westfield-Highland,03250025, 92.4, 13.0, 55.5, 25.2, 3.6, 22.0 +-2.6400000000000006,1,a-vale-i1,2021-22,Westfield-Munger Hill,03250033, 92.4, 13.0, 60.6, 26.6, 2.0, 18.6 4.32,4.32,a-vale-i1,2021-22,Westford-Abbot Elementary,03260004, 95.0, 8.9, 42.1, 9.2, 0.6, 0.0 3.28,3.28,a-vale-i1,2021-22,Westford-Day Elementary,03260007, 94.7, 9.3, 38.2, 11.8, 1.9, 0.0 +2.6799999999999997,2.68,a-vale-i1,2021-22,Westford-Westford Academy,03260505, 94.6, 9.4, 36.5, 13.3, 2.1, 0.7 +3.8,3.8,a-vale-i1,2021-22,Westford-Stony Brook School,03260330, 95.1, 8.8, 34.2, 10.5, 1.6, 0.0 +3.9200000000000004,3.92,a-vale-i1,2021-22,Westford-Blanchard Middle,03260310, 95.3, 8.4, 33.1, 10.2, 1.9, 0.0 +-1.6799999999999997,1,a-vale-i1,2021-22,Westford-Rita E. Miller Elementary School,03260055, 92.0, 13.5, 61.5, 24.2, 5.5, 0.0 +4.5600000000000005,4.56,a-vale-i1,2021-22,Westford-John A. Crisafulli Elementary School,03260045, 95.0, 8.9, 38.9, 8.6, 0.3, 0.0 2.16,2.16,a-vale-i1,2021-22,Westford-Col John Robinson,03260025, 94.1, 10.2, 44.7, 14.6, 1.5, 0.0 +2.3200000000000003,2.32,a-vale-i1,2021-22,Westford-Nabnasset,03260015, 94.1, 10.4, 49.5, 14.2, 1.8, 0.0 0.44000000000000056,1,a-vale-i1,2021-22,Westhampton-Westhampton Elementary School,03270005, 93.2, 11.6, 49.5, 18.9, 2.7, 0.0 +3.2399999999999998,3.24,a-vale-i1,2021-22,Weston-Country,03300010, 94.7, 9.5, 37.2, 11.9, 1.9, 35.6 3.2399999999999998,3.24,a-vale-i1,2021-22,Weston-Weston High,03300505, 94.9, 9.0, 32.4, 11.9, 3.0, 0.8 +4.68,4.68,a-vale-i1,2021-22,Weston-Weston Middle,03300305, 95.4, 8.2, 32.4, 8.3, 1.1, 1.1 4.12,4.12,a-vale-i1,2021-22,Weston-Woodland,03300015, 95.0, 8.7, 34.9, 9.7, 1.3, 0.3 6.36,5,a-vale-i1,2021-22,Weston-Field Elementary School,03300012, 95.9, 7.3, 29.6, 4.1, 0.4, 0.0 -3.2399999999999998,3.24,a-vale-i1,2021-22,Weston-Country,03300010, 94.7, 9.5, 37.2, 11.9, 1.9, 35.6 -4.68,4.68,a-vale-i1,2021-22,Weston-Weston Middle,03300305, 95.4, 8.2, 32.4, 8.3, 1.1, 1.1 0.6400000000000006,1,a-vale-i1,2021-22,Westport-Westport Elementary,03310030, 93.0, 12.1, 53.9, 18.4, 2.0, 11.5 -2.2,1,a-vale-i1,2021-22,Westport-Westport Middle-High School,03310515, 92.1, 14.0, 56.1, 25.5, 5.2, 30.6 -2.6400000000000006,1,a-vale-i1,2021-22,Westport-Alice A Macomber,03310015, 92.2, 13.2, 57.6, 26.6, 4.9, 8.7 -4.4399999999999995,4.44,a-vale-i1,2021-22,Westwood-William E Sheehan,03350025, 95.0, 9.0, 37.5, 8.9, 0.3, 0.0 -3.9200000000000004,3.92,a-vale-i1,2021-22,Westwood-Martha Jones,03350017, 94.9, 9.2, 43.6, 10.2, 0.0, 0.0 -5.5600000000000005,5,a-vale-i1,2021-22,Westwood-Paul Hanlon,03350015, 96.0, 7.0, 21.9, 6.1, 1.5, 2.6 -4.720000000000001,4.72,a-vale-i1,2021-22,Westwood-Downey,03350012, 94.9, 9.1, 40.5, 8.2, 0.7, 0.0 -2.16,2.16,a-vale-i1,2021-22,Westwood-Westwood High,03350505, 93.9, 10.9, 42.2, 14.6, 4.5, 30.0 -5.08,5,a-vale-i1,2021-22,Westwood-E W Thurston Middle,03350305, 95.5, 8.0, 29.4, 7.3, 0.7, 0.7 4.4799999999999995,4.48,a-vale-i1,2021-22,Westwood-Deerfield School,03350010, 94.2, 10.4, 51.6, 8.8, 0.5, 0.0 +4.720000000000001,4.72,a-vale-i1,2021-22,Westwood-Downey,03350012, 94.9, 9.1, 40.5, 8.2, 0.7, 0.0 +5.5600000000000005,5,a-vale-i1,2021-22,Westwood-Paul Hanlon,03350015, 96.0, 7.0, 21.9, 6.1, 1.5, 2.6 +3.9200000000000004,3.92,a-vale-i1,2021-22,Westwood-Martha Jones,03350017, 94.9, 9.2, 43.6, 10.2, 0.0, 0.0 0.6400000000000006,1,a-vale-i1,2021-22,Westwood-Westwood Integrated Preschool,03350050, 92.3, 10.4, 40.8, 18.4, 6.1, 0.0 --1.2400000000000007,1,a-vale-i1,2021-22,Weymouth-Thomas W. Hamilton Primary School,03360105, 92.8, 12.3, 53.0, 23.1, 2.0, 39.5 --0.8400000000000005,1,a-vale-i1,2021-22,Weymouth-Wessagusset,03360110, 93.0, 12.1, 52.1, 22.1, 3.7, 35.2 +5.08,5,a-vale-i1,2021-22,Westwood-E W Thurston Middle,03350305, 95.5, 8.0, 29.4, 7.3, 0.7, 0.7 +2.16,2.16,a-vale-i1,2021-22,Westwood-Westwood High,03350505, 93.9, 10.9, 42.2, 14.6, 4.5, 30.0 +4.4399999999999995,4.44,a-vale-i1,2021-22,Westwood-William E Sheehan,03350025, 95.0, 9.0, 37.5, 8.9, 0.3, 0.0 -2.0400000000000005,1,a-vale-i1,2021-22,Weymouth-Abigail Adams Middle School,03360310, 92.7, 12.6, 54.1, 25.1, 4.5, 35.9 -6.0,1,a-vale-i1,2021-22,Weymouth-Weymouth High School,03360505, 89.9, 17.0, 59.7, 35.0, 12.9, 38.0 -4.24,1,a-vale-i1,2021-22,Weymouth-Johnson Early Childhood Center,03360003, 90.7, 11.1, 44.2, 30.6, 9.2, 30.6 @@ -1743,85 +1741,61 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -2.3599999999999994,1,a-vale-i1,2021-22,Weymouth-Lawrence W Pingree,03360065, 92.5, 13.2, 59.8, 25.9, 3.1, 42.1 -8.24,1,a-vale-i1,2021-22,Weymouth-William Seach,03360080, 90.0, 16.9, 63.0, 40.6, 10.1, 55.3 -1.6,1,a-vale-i1,2021-22,Weymouth-Ralph Talbot,03360085, 92.6, 12.4, 54.6, 24.0, 4.1, 24.4 +-1.2400000000000007,1,a-vale-i1,2021-22,Weymouth-Thomas W. Hamilton Primary School,03360105, 92.8, 12.3, 53.0, 23.1, 2.0, 39.5 +-0.8400000000000005,1,a-vale-i1,2021-22,Weymouth-Wessagusset,03360110, 93.0, 12.1, 52.1, 22.1, 3.7, 35.2 7.040000000000001,5,a-vale-i1,2021-22,Whately-Whately Elementary,03370005, 96.0, 7.0, 27.0, 2.4, 0.8, 25.4 +1.0400000000000005,1.04,a-vale-i1,2021-22,Whitman-Hanson-Louise A Conley,07800010, 93.6, 11.3, 52.9, 17.4, 2.4, 19.2 -2.8,1,a-vale-i1,2021-22,Whitman-Hanson-John H Duval,07800030, 92.6, 12.7, 54.8, 27.0, 4.0, 31.9 -1.3599999999999994,1,a-vale-i1,2021-22,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 93.3, 11.0, 55.1, 23.4, 1.9, 55.1 -1.0400000000000005,1.04,a-vale-i1,2021-22,Whitman-Hanson-Louise A Conley,07800010, 93.6, 11.3, 52.9, 17.4, 2.4, 19.2 --4.159999999999999,1,a-vale-i1,2021-22,Whitman-Hanson-Whitman Hanson Regional,07800505, 91.2, 14.9, 60.6, 30.4, 9.5, 35.4 2.2,2.2,a-vale-i1,2021-22,Whitman-Hanson-Indian Head,07800035, 93.7, 11.2, 57.0, 14.5, 1.4, 25.7 6.32,5,a-vale-i1,2021-22,Whitman-Hanson-Whitman Middle,07800310, 96.7, 5.8, 17.6, 4.2, 0.8, 0.0 6.5200000000000005,5,a-vale-i1,2021-22,Whitman-Hanson-Hanson Middle School,07800315, 96.6, 6.0, 20.1, 3.7, 0.6, 0.0 +-4.159999999999999,1,a-vale-i1,2021-22,Whitman-Hanson-Whitman Hanson Regional,07800505, 91.2, 14.9, 60.6, 30.4, 9.5, 35.4 0.0,1,a-vale-i1,2021-22,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 93.0, 12.5, 54.8, 20.0, 3.9, 4.6 1.2799999999999998,1.28,a-vale-i1,2021-22,Williamsburg-Anne T. Dunphy School,03400020, 93.5, 11.5, 41.3, 16.8, 4.9, 1.4 --1.9599999999999995,1,a-vale-i1,2021-22,Wilmington-Wildwood,03420015, 92.0, 13.0, 59.8, 24.9, 2.4, 10.1 -1.9200000000000004,1.92,a-vale-i1,2021-22,Wilmington-Woburn Street,03420020, 94.1, 10.4, 48.5, 15.2, 0.6, 23.1 -2.3200000000000003,2.32,a-vale-i1,2021-22,Wilmington-North Intermediate,03420060, 94.1, 10.5, 45.3, 14.2, 1.2, 25.2 -2.72,2.72,a-vale-i1,2021-22,Wilmington-Wilmington High,03420505, 94.3, 9.9, 36.6, 13.2, 4.5, 15.7 -1.3599999999999994,1.36,a-vale-i1,2021-22,Wilmington-Wilmington Middle School,03420330, 93.5, 11.5, 46.5, 16.6, 3.5, 9.4 -3.88,3.88,a-vale-i1,2021-22,Wilmington-West Intermediate,03420080, 94.9, 9.2, 35.7, 10.3, 0.5, 2.3 -3.4400000000000004,1,a-vale-i1,2021-22,Wilmington-Boutwell,03420005, 92.4, 12.7, 63.9, 28.6, 1.5, 15.8 +1.9200000000000004,1.92,a-vale-i1,2021-22,Wilmington-Woburn Street,03420020, 94.1, 10.4, 48.5, 15.2, 0.6, 23.1 +2.72,2.72,a-vale-i1,2021-22,Wilmington-Wilmington High,03420505, 94.3, 9.9, 36.6, 13.2, 4.5, 15.7 +2.3200000000000003,2.32,a-vale-i1,2021-22,Wilmington-North Intermediate,03420060, 94.1, 10.5, 45.3, 14.2, 1.2, 25.2 +3.88,3.88,a-vale-i1,2021-22,Wilmington-West Intermediate,03420080, 94.9, 9.2, 35.7, 10.3, 0.5, 2.3 +1.3599999999999994,1.36,a-vale-i1,2021-22,Wilmington-Wilmington Middle School,03420330, 93.5, 11.5, 46.5, 16.6, 3.5, 9.4 +-1.9599999999999995,1,a-vale-i1,2021-22,Wilmington-Wildwood,03420015, 92.0, 13.0, 59.8, 24.9, 2.4, 10.1 4.04,4.04,a-vale-i1,2021-22,Wilmington-Shawsheen Elementary,03420025, 94.9, 9.0, 38.9, 9.9, 0.3, 18.1 +-5.24,1,a-vale-i1,2021-22,Winchendon-Toy Town Elementary,03430050, 91.2, 14.9, 67.2, 33.1, 6.1, 55.6 +-7.2,1,a-vale-i1,2021-22,Winchendon-Memorial,03430040, 91.0, 15.5, 72.3, 38.0, 5.0, 51.5 +-8.84,1,a-vale-i1,2021-22,Winchendon-Winchendon PreSchool Program,03430010, 89.3, 17.1, 65.8, 42.1, 10.5, 5.3 +-5.719999999999999,1,a-vale-i1,2021-22,Winchendon-Murdock Middle School,03430315, 90.0, 17.3, 67.5, 34.3, 10.9, 38.9 -10.919999999999998,1,a-vale-i1,2021-22,Winchendon-Murdock High School,03430515, 87.7, 20.3, 71.1, 47.3, 20.1, 50.9 -28.560000000000002,1,a-vale-i1,2021-22,Winchendon-Murdock Academy for Success,03430405, 56.2, 48.6, 100.0, 91.4, 80.0, 91.4 --5.719999999999999,1,a-vale-i1,2021-22,Winchendon-Murdock Middle School,03430315, 90.0, 17.3, 67.5, 34.3, 10.9, 38.9 --8.84,1,a-vale-i1,2021-22,Winchendon-Winchendon PreSchool Program,03430010, 89.3, 17.1, 65.8, 42.1, 10.5, 5.3 --7.2,1,a-vale-i1,2021-22,Winchendon-Memorial,03430040, 91.0, 15.5, 72.3, 38.0, 5.0, 51.5 --5.24,1,a-vale-i1,2021-22,Winchendon-Toy Town Elementary,03430050, 91.2, 14.9, 67.2, 33.1, 6.1, 55.6 -4.04,4.04,a-vale-i1,2021-22,Winchester-McCall Middle,03440305, 95.0, 8.8, 35.9, 9.9, 1.5, 25.3 -4.76,4.76,a-vale-i1,2021-22,Winchester-Muraco Elementary,03440040, 94.7, 9.4, 39.8, 8.1, 1.2, 39.8 5.720000000000001,5,a-vale-i1,2021-22,Winchester-Lincoln Elementary,03440005, 95.3, 8.5, 35.8, 5.7, 0.0, 8.0 3.3200000000000003,3.32,a-vale-i1,2021-22,Winchester-Lynch Elementary,03440020, 94.8, 9.2, 39.3, 11.7, 1.1, 38.0 3.6,3.6,a-vale-i1,2021-22,Winchester-Vinson-Owen Elementary,03440025, 94.6, 9.7, 46.0, 11.0, 1.4, 45.5 +4.76,4.76,a-vale-i1,2021-22,Winchester-Muraco Elementary,03440040, 94.7, 9.4, 39.8, 8.1, 1.2, 39.8 5.92,5,a-vale-i1,2021-22,Winchester-Ambrose Elementary,03440045, 94.7, 9.7, 46.8, 5.2, 0.0, 46.0 +4.04,4.04,a-vale-i1,2021-22,Winchester-McCall Middle,03440305, 95.0, 8.8, 35.9, 9.9, 1.5, 25.3 2.44,2.44,a-vale-i1,2021-22,Winchester-Winchester High School,03440505, 93.8, 11.0, 40.3, 13.9, 3.8, 16.0 --2.6,1,a-vale-i1,2021-22,Winthrop-Winthrop High School,03460505, 91.9, 13.8, 52.2, 26.5, 8.4, 21.5 +-2.72,1,a-vale-i1,2021-22,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 91.8, 14.0, 62.9, 26.8, 4.8, 33.5 -1.7599999999999993,1,a-vale-i1,2021-22,Winthrop-Winthrop Middle School,03460305, 92.7, 12.8, 51.4, 24.4, 3.6, 12.0 -0.12000000000000029,1,a-vale-i1,2021-22,Winthrop-Arthur T. Cummings Elementary School,03460020, 93.3, 11.5, 57.7, 20.3, 1.2, 15.2 --2.72,1,a-vale-i1,2021-22,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 91.8, 14.0, 62.9, 26.8, 4.8, 33.5 --2.5599999999999996,1,a-vale-i1,2021-22,Woburn-Woburn High,03470505, 91.5, 14.7, 51.3, 26.4, 8.8, 36.9 --0.3200000000000003,1,a-vale-i1,2021-22,Woburn-Goodyear Elementary School,03470005, 93.2, 11.7, 49.1, 20.8, 4.3, 48.8 --1.4799999999999998,1,a-vale-i1,2021-22,Woburn-Malcolm White,03470055, 93.3, 11.6, 53.3, 23.7, 1.3, 41.3 --5.919999999999999,1,a-vale-i1,2021-22,Woburn-Shamrock,03470043, 91.5, 14.2, 63.8, 34.8, 3.8, 58.7 -1.7200000000000002,1.72,a-vale-i1,2021-22,Woburn-Hurld-Wyman Elementary School,03470020, 93.8, 10.8, 52.1, 15.7, 1.5, 28.9 -0.4,1,a-vale-i1,2021-22,Woburn-Linscott-Rumford,03470025, 94.3, 9.6, 41.7, 19.0, 2.3, 40.3 +-2.6,1,a-vale-i1,2021-22,Winthrop-Winthrop High School,03460505, 91.9, 13.8, 52.2, 26.5, 8.4, 21.5 0.15999999999999942,1,a-vale-i1,2021-22,Woburn-Daniel L Joyce Middle School,03470410, 93.5, 11.2, 46.9, 19.6, 1.6, 35.6 0.5200000000000002,1,a-vale-i1,2021-22,Woburn-John F Kennedy Middle School,03470405, 93.6, 11.2, 45.8, 18.7, 3.8, 37.3 -2.2,1,a-vale-i1,2021-22,Woburn-Mary D Altavesta,03470065, 92.6, 11.9, 56.9, 25.5, 3.1, 0.0 +-1.4799999999999998,1,a-vale-i1,2021-22,Woburn-Malcolm White,03470055, 93.3, 11.6, 53.3, 23.7, 1.3, 41.3 +-2.5599999999999996,1,a-vale-i1,2021-22,Woburn-Woburn High,03470505, 91.5, 14.7, 51.3, 26.4, 8.8, 36.9 -1.8799999999999997,1,a-vale-i1,2021-22,Woburn-Clyde Reeves,03470040, 92.6, 12.4, 57.7, 24.7, 3.4, 57.1 -2.44,2.44,a-vale-i1,2021-22,Worcester-Worcester Technical High,03480605, 94.2, 10.2, 40.2, 13.9, 3.6, 30.1 --4.12,1,a-vale-i1,2021-22,Worcester-Norrback Avenue,03480202, 91.9, 13.5, 51.5, 30.3, 8.1, 39.2 -2.3600000000000003,2.36,a-vale-i1,2021-22,Worcester-Nelson Place,03480200, 94.3, 10.1, 39.2, 14.1, 2.3, 31.7 -3.16,3.16,a-vale-i1,2021-22,Worcester-Midland Street,03480185, 94.9, 8.7, 37.7, 12.1, 1.4, 30.9 --2.8,1,a-vale-i1,2021-22,Worcester-Francis J McGrath Elementary,03480177, 92.4, 12.6, 54.4, 27.0, 5.6, 49.3 --8.440000000000001,1,a-vale-i1,2021-22,Worcester-South High Community,03480520, 88.5, 19.2, 61.4, 41.1, 15.8, 55.8 --10.280000000000001,1,a-vale-i1,2021-22,Worcester-North High,03480515, 86.8, 21.7, 64.9, 45.7, 18.9, 61.5 --5.76,1,a-vale-i1,2021-22,Worcester-Doherty Memorial High,03480512, 89.9, 17.1, 61.1, 34.4, 12.1, 52.8 --8.680000000000001,1,a-vale-i1,2021-22,Worcester-Burncoat Senior High,03480503, 87.4, 21.3, 64.5, 41.7, 19.5, 60.1 --2.0,1,a-vale-i1,2021-22,Worcester-Sullivan Middle,03480423, 92.9, 12.2, 42.9, 25.0, 6.4, 38.6 --9.719999999999999,1,a-vale-i1,2021-22,Worcester-Worcester East Middle,03480420, 86.4, 22.9, 65.4, 44.3, 18.4, 57.4 --4.56,1,a-vale-i1,2021-22,Worcester-Union Hill School,03480240, 92.1, 13.1, 53.4, 31.4, 5.1, 52.2 --4.44,1,a-vale-i1,2021-22,Worcester-Quinsigamond,03480210, 91.7, 13.9, 55.3, 31.1, 7.2, 53.2 --4.56,1,a-vale-i1,2021-22,Worcester-Rice Square,03480215, 91.6, 13.6, 52.2, 31.4, 10.4, 51.3 --3.8,1,a-vale-i1,2021-22,Worcester-Roosevelt,03480220, 91.9, 13.5, 51.7, 29.5, 9.9, 41.0 -3.96,3.96,a-vale-i1,2021-22,Worcester-Worcester Arts Magnet School,03480225, 95.5, 7.8, 31.2, 10.1, 0.8, 29.0 -1.2,1.2,a-vale-i1,2021-22,Worcester-Tatnuck,03480230, 94.7, 9.2, 39.0, 17.0, 2.5, 30.0 --0.07999999999999971,1,a-vale-i1,2021-22,Worcester-Thorndyke Road,03480235, 93.6, 11.1, 47.8, 20.2, 3.8, 37.6 -1.7200000000000002,1.72,a-vale-i1,2021-22,Worcester-Flagg Street,03480090, 94.4, 9.8, 44.6, 15.7, 0.9, 33.7 -1.3599999999999994,1.36,a-vale-i1,2021-22,Worcester-West Tatnuck,03480260, 94.4, 9.6, 43.3, 16.6, 2.3, 35.8 --7.6,1,a-vale-i1,2021-22,Worcester-Vernon Hill School,03480280, 88.3, 19.1, 63.6, 39.0, 13.6, 53.0 --2.72,1,a-vale-i1,2021-22,Worcester-University Pk Campus School,03480285, 92.1, 13.9, 54.0, 26.8, 6.8, 43.0 --7.640000000000001,1,a-vale-i1,2021-22,Worcester-Claremont Academy,03480350, 89.4, 17.8, 56.9, 39.1, 16.7, 47.8 --1.0799999999999996,1,a-vale-i1,2021-22,Worcester-Burncoat Middle School,03480405, 93.1, 12.0, 45.7, 22.7, 5.7, 40.6 +0.4,1,a-vale-i1,2021-22,Woburn-Linscott-Rumford,03470025, 94.3, 9.6, 41.7, 19.0, 2.3, 40.3 +1.7200000000000002,1.72,a-vale-i1,2021-22,Woburn-Hurld-Wyman Elementary School,03470020, 93.8, 10.8, 52.1, 15.7, 1.5, 28.9 +-0.3200000000000003,1,a-vale-i1,2021-22,Woburn-Goodyear Elementary School,03470005, 93.2, 11.7, 49.1, 20.8, 4.3, 48.8 +-5.919999999999999,1,a-vale-i1,2021-22,Woburn-Shamrock,03470043, 91.5, 14.2, 63.8, 34.8, 3.8, 58.7 -3.3200000000000003,1,a-vale-i1,2021-22,Worcester-Forest Grove Middle,03480415, 91.8, 14.1, 55.3, 28.3, 7.7, 45.7 --9.64,1,a-vale-i1,2021-22,Worcester-Elm Park Community,03480095, 89.7, 16.7, 65.7, 44.1, 12.3, 64.5 --0.9200000000000003,1,a-vale-i1,2021-22,Worcester-Goddard School/Science Technical,03480100, 93.6, 10.7, 45.3, 22.3, 2.0, 34.3 --2.6400000000000006,1,a-vale-i1,2021-22,Worcester-Gates Lane,03480110, 92.3, 12.8, 51.7, 26.6, 6.6, 47.2 --7.24,1,a-vale-i1,2021-22,Worcester-Grafton Street,03480115, 91.1, 14.8, 57.8, 38.1, 8.5, 54.9 -4.88,4.88,a-vale-i1,2021-22,Worcester-Heard Street,03480136, 95.1, 8.5, 40.8, 7.8, 0.8, 26.5 -0.8400000000000005,1,a-vale-i1,2021-22,Worcester-Jacob Hiatt Magnet,03480140, 94.3, 9.8, 38.3, 17.9, 2.8, 30.9 -0.4799999999999997,1,a-vale-i1,2021-22,Worcester-Lake View,03480145, 93.7, 10.6, 46.3, 18.8, 2.8, 33.4 --7.44,1,a-vale-i1,2021-22,Worcester-Lincoln Street,03480160, 91.4, 13.9, 56.5, 38.6, 6.5, 46.7 --9.719999999999999,1,a-vale-i1,2021-22,Worcester-Head Start,03480002, 88.8, 17.0, 69.3, 44.3, 13.6, 69.3 +-9.719999999999999,1,a-vale-i1,2021-22,Worcester-Worcester East Middle,03480420, 86.4, 22.9, 65.4, 44.3, 18.4, 57.4 +-2.0,1,a-vale-i1,2021-22,Worcester-Sullivan Middle,03480423, 92.9, 12.2, 42.9, 25.0, 6.4, 38.6 +-8.680000000000001,1,a-vale-i1,2021-22,Worcester-Burncoat Senior High,03480503, 87.4, 21.3, 64.5, 41.7, 19.5, 60.1 +-5.76,1,a-vale-i1,2021-22,Worcester-Doherty Memorial High,03480512, 89.9, 17.1, 61.1, 34.4, 12.1, 52.8 +-10.280000000000001,1,a-vale-i1,2021-22,Worcester-North High,03480515, 86.8, 21.7, 64.9, 45.7, 18.9, 61.5 +-8.440000000000001,1,a-vale-i1,2021-22,Worcester-South High Community,03480520, 88.5, 19.2, 61.4, 41.1, 15.8, 55.8 +2.44,2.44,a-vale-i1,2021-22,Worcester-Worcester Technical High,03480605, 94.2, 10.2, 40.2, 13.9, 3.6, 30.1 1.0400000000000005,1.04,a-vale-i1,2021-22,Worcester-Belmont Street Community,03480020, 91.6, 13.6, 48.6, 17.4, 6.8, 33.0 1.9200000000000004,1.92,a-vale-i1,2021-22,Worcester-La Familia Dual Language School,03480025, 94.5, 9.6, 43.0, 15.2, 1.3, 34.4 -3.28,1,a-vale-i1,2021-22,Worcester-Wawecus Road School,03480026, 92.5, 12.7, 48.4, 28.2, 5.6, 46.0 @@ -1832,276 +1806,200 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -0.15999999999999942,1,a-vale-i1,2021-22,Worcester-Chandler Magnet,03480052, 93.1, 11.6, 51.5, 20.4, 2.9, 47.8 -4.68,1,a-vale-i1,2021-22,Worcester-City View,03480053, 91.7, 13.9, 54.8, 31.7, 9.2, 46.0 -11.16,1,a-vale-i1,2021-22,Worcester-Clark St Community,03480055, 89.5, 17.4, 67.4, 47.9, 11.5, 59.8 -2.3200000000000003,2.32,a-vale-i1,2021-22,Worcester-May Street,03480175, 94.1, 10.0, 44.3, 14.2, 1.6, 35.0 -7.840000000000001,1,a-vale-i1,2021-22,Worcester-Columbus Park,03480060, 90.1, 16.5, 66.4, 39.6, 11.3, 61.2 +1.7200000000000002,1.72,a-vale-i1,2021-22,Worcester-Flagg Street,03480090, 94.4, 9.8, 44.6, 15.7, 0.9, 33.7 +-9.64,1,a-vale-i1,2021-22,Worcester-Elm Park Community,03480095, 89.7, 16.7, 65.7, 44.1, 12.3, 64.5 +-0.9200000000000003,1,a-vale-i1,2021-22,Worcester-Goddard School/Science Technical,03480100, 93.6, 10.7, 45.3, 22.3, 2.0, 34.3 +-2.6400000000000006,1,a-vale-i1,2021-22,Worcester-Gates Lane,03480110, 92.3, 12.8, 51.7, 26.6, 6.6, 47.2 +-7.24,1,a-vale-i1,2021-22,Worcester-Grafton Street,03480115, 91.1, 14.8, 57.8, 38.1, 8.5, 54.9 +4.88,4.88,a-vale-i1,2021-22,Worcester-Heard Street,03480136, 95.1, 8.5, 40.8, 7.8, 0.8, 26.5 +0.8400000000000005,1,a-vale-i1,2021-22,Worcester-Jacob Hiatt Magnet,03480140, 94.3, 9.8, 38.3, 17.9, 2.8, 30.9 +0.4799999999999997,1,a-vale-i1,2021-22,Worcester-Lake View,03480145, 93.7, 10.6, 46.3, 18.8, 2.8, 33.4 +-7.44,1,a-vale-i1,2021-22,Worcester-Lincoln Street,03480160, 91.4, 13.9, 56.5, 38.6, 6.5, 46.7 +2.3200000000000003,2.32,a-vale-i1,2021-22,Worcester-May Street,03480175, 94.1, 10.0, 44.3, 14.2, 1.6, 35.0 +-2.8,1,a-vale-i1,2021-22,Worcester-Francis J McGrath Elementary,03480177, 92.4, 12.6, 54.4, 27.0, 5.6, 49.3 +3.16,3.16,a-vale-i1,2021-22,Worcester-Midland Street,03480185, 94.9, 8.7, 37.7, 12.1, 1.4, 30.9 +2.3600000000000003,2.36,a-vale-i1,2021-22,Worcester-Nelson Place,03480200, 94.3, 10.1, 39.2, 14.1, 2.3, 31.7 +-4.12,1,a-vale-i1,2021-22,Worcester-Norrback Avenue,03480202, 91.9, 13.5, 51.5, 30.3, 8.1, 39.2 +-4.44,1,a-vale-i1,2021-22,Worcester-Quinsigamond,03480210, 91.7, 13.9, 55.3, 31.1, 7.2, 53.2 +-4.56,1,a-vale-i1,2021-22,Worcester-Rice Square,03480215, 91.6, 13.6, 52.2, 31.4, 10.4, 51.3 +-1.0799999999999996,1,a-vale-i1,2021-22,Worcester-Burncoat Middle School,03480405, 93.1, 12.0, 45.7, 22.7, 5.7, 40.6 +-7.640000000000001,1,a-vale-i1,2021-22,Worcester-Claremont Academy,03480350, 89.4, 17.8, 56.9, 39.1, 16.7, 47.8 +-2.72,1,a-vale-i1,2021-22,Worcester-University Pk Campus School,03480285, 92.1, 13.9, 54.0, 26.8, 6.8, 43.0 +-7.6,1,a-vale-i1,2021-22,Worcester-Vernon Hill School,03480280, 88.3, 19.1, 63.6, 39.0, 13.6, 53.0 +1.3599999999999994,1.36,a-vale-i1,2021-22,Worcester-West Tatnuck,03480260, 94.4, 9.6, 43.3, 16.6, 2.3, 35.8 +-4.56,1,a-vale-i1,2021-22,Worcester-Union Hill School,03480240, 92.1, 13.1, 53.4, 31.4, 5.1, 52.2 +-0.07999999999999971,1,a-vale-i1,2021-22,Worcester-Thorndyke Road,03480235, 93.6, 11.1, 47.8, 20.2, 3.8, 37.6 +1.2,1.2,a-vale-i1,2021-22,Worcester-Tatnuck,03480230, 94.7, 9.2, 39.0, 17.0, 2.5, 30.0 +-9.719999999999999,1,a-vale-i1,2021-22,Worcester-Head Start,03480002, 88.8, 17.0, 69.3, 44.3, 13.6, 69.3 +-3.8,1,a-vale-i1,2021-22,Worcester-Roosevelt,03480220, 91.9, 13.5, 51.7, 29.5, 9.9, 41.0 +3.96,3.96,a-vale-i1,2021-22,Worcester-Worcester Arts Magnet School,03480225, 95.5, 7.8, 31.2, 10.1, 0.8, 29.0 -2.9599999999999995,1,a-vale-i1,2021-22,Worthington-R. H. Conwell,03490010, 92.9, 12.0, 49.3, 27.4, 4.1, 1.4 2.28,2.28,a-vale-i1,2021-22,Wrentham-Charles E Roderick,03500010, 94.2, 10.3, 44.3, 14.3, 1.8, 0.8 -0.8400000000000005,1,a-vale-i1,2021-22,Wrentham-Delaney,03500003, 93.2, 11.2, 50.8, 22.1, 2.0, 3.3 5.4,5,a-vale-i1,2020-21,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 97.0, 5.0, 14.0, 6.5, 2.6 -9.12,1,a-vale-i1,2020-21,Abington-Abington High,00010505, 85.7, 24.0, 67.3, 42.8, 14.7 --3.72,1,a-vale-i1,2020-21,Abington-Abington Middle School,00010405, 91.5, 14.2, 46.7, 29.3, 18.3 -0.6,1,a-vale-i1,2020-21,Abington-Beaver Brook Elementary,00010020, 92.9, 11.6, 31.9, 21.5, 7.2 -0.6400000000000006,1,a-vale-i1,2020-21,Abington-Woodsdale Elementary School,00010015, 93.3, 11.2, 34.7, 18.4, 7.8 +-3.72,1,a-vale-i1,2020-21,Abington-Abington Middle School,00010405, 91.5, 14.2, 46.7, 29.3, 18.3 -4.5200000000000005,1,a-vale-i1,2020-21,Abington-Abington Early Education Program,00010001, 92.6, 11.2, 40.3, 31.3, 11.9 +0.6400000000000006,1,a-vale-i1,2020-21,Abington-Woodsdale Elementary School,00010015, 93.3, 11.2, 34.7, 18.4, 7.8 1.0799999999999996,1.08,a-vale-i1,2020-21,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 92.8, 12.6, 30.5, 17.3, 27.2 -6.840000000000001,5,a-vale-i1,2020-21,Acton-Boxborough-Raymond J Grey Junior High,06000405, 98.1, 3.2, 7.4, 2.9, 0.0 --1.3200000000000003,1,a-vale-i1,2020-21,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 93.5, 9.9, 25.6, 23.3, 0.0 6.16,5,a-vale-i1,2020-21,Acton-Boxborough-Blanchard Memorial School,06000005, 97.7, 3.9, 8.5, 4.6, 0.0 +5.5600000000000005,5,a-vale-i1,2020-21,Acton-Boxborough-Merriam School,06000010, 97.0, 5.0, 13.8, 6.1, 0.0 6.88,5,a-vale-i1,2020-21,Acton-Boxborough-McCarthy-Towne School,06000015, 97.6, 4.0, 10.2, 2.8, 0.0 +-1.3200000000000003,1,a-vale-i1,2020-21,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 93.5, 9.9, 25.6, 23.3, 0.0 5.92,5,a-vale-i1,2020-21,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 97.5, 4.1, 9.4, 5.2, 0.0 +7.08,5,a-vale-i1,2020-21,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 98.1, 3.2, 7.2, 2.3, 0.4 6.2,5,a-vale-i1,2020-21,Acton-Boxborough-Paul P Gates Elementary School,06000025, 97.8, 3.7, 6.6, 4.5, 0.0 6.44,5,a-vale-i1,2020-21,Acton-Boxborough-Luther Conant School,06000030, 98.0, 3.2, 7.0, 3.9, 0.0 -7.08,5,a-vale-i1,2020-21,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 98.1, 3.2, 7.2, 2.3, 0.4 -5.5600000000000005,5,a-vale-i1,2020-21,Acton-Boxborough-Merriam School,06000010, 97.0, 5.0, 13.8, 6.1, 0.0 +6.840000000000001,5,a-vale-i1,2020-21,Acton-Boxborough-Raymond J Grey Junior High,06000405, 98.1, 3.2, 7.4, 2.9, 0.0 6.2,5,a-vale-i1,2020-21,Acushnet-Acushnet Elementary School,00030025, 97.2, 4.6, 13.3, 4.5, 6.9 4.64,4.64,a-vale-i1,2020-21,Acushnet-Albert F Ford Middle School,00030305, 96.7, 5.5, 17.3, 8.4, 5.2 5.32,5,a-vale-i1,2020-21,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 96.4, 6.0, 17.5, 6.7, 0.0 --1.8,1,a-vale-i1,2020-21,Agawam-Agawam Early Childhood Center,00050003, 92.4, 9.8, 38.1, 24.5, 38.1 --4.4799999999999995,1,a-vale-i1,2020-21,Agawam-Agawam High,00050505, 90.3, 16.0, 49.2, 31.2, 8.5 --1.2,1,a-vale-i1,2020-21,Agawam-Agawam Junior High,00050405, 92.8, 11.9, 39.9, 23.0, 10.7 -2.0,2.0,a-vale-i1,2020-21,Agawam-Roberta G. Doering School,00050303, 95.0, 8.3, 31.1, 15.0, 9.7 --0.15999999999999942,1,a-vale-i1,2020-21,Agawam-James Clark School,00050030, 94.4, 9.0, 28.9, 20.4, 6.7 --3.0,1,a-vale-i1,2020-21,Agawam-Robinson Park,00050025, 92.1, 13.0, 43.2, 27.5, 5.2 -3.2399999999999998,3.24,a-vale-i1,2020-21,Agawam-Benjamin J Phelps,00050020, 95.4, 7.7, 28.1, 11.9, 6.7 3.72,3.72,a-vale-i1,2020-21,Agawam-Clifford M Granger,00050010, 95.4, 7.5, 24.2, 10.7, 13.5 +3.2399999999999998,3.24,a-vale-i1,2020-21,Agawam-Benjamin J Phelps,00050020, 95.4, 7.7, 28.1, 11.9, 6.7 +-3.0,1,a-vale-i1,2020-21,Agawam-Robinson Park,00050025, 92.1, 13.0, 43.2, 27.5, 5.2 +-1.8,1,a-vale-i1,2020-21,Agawam-Agawam Early Childhood Center,00050003, 92.4, 9.8, 38.1, 24.5, 38.1 +2.0,2.0,a-vale-i1,2020-21,Agawam-Roberta G. Doering School,00050303, 95.0, 8.3, 31.1, 15.0, 9.7 +-1.2,1,a-vale-i1,2020-21,Agawam-Agawam Junior High,00050405, 92.8, 11.9, 39.9, 23.0, 10.7 +-4.4799999999999995,1,a-vale-i1,2020-21,Agawam-Agawam High,00050505, 90.3, 16.0, 49.2, 31.2, 8.5 +-0.15999999999999942,1,a-vale-i1,2020-21,Agawam-James Clark School,00050030, 94.4, 9.0, 28.9, 20.4, 6.7 -1.6400000000000006,1,a-vale-i1,2020-21,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 92.7, 12.6, 45.4, 24.1, 2.8 --7.119999999999999,1,a-vale-i1,2020-21,Amesbury-Amesbury Innovation High School,00070515, 88.1, 18.3, 55.6, 37.8, 8.9 -1.0,1.0,a-vale-i1,2020-21,Amesbury-Charles C Cashman Elementary,00070010, 94.2, 9.6, 30.7, 17.5, 8.7 1.3200000000000003,1.32,a-vale-i1,2020-21,Amesbury-Amesbury Elementary,00070005, 94.9, 8.2, 29.3, 16.7, 2.9 +1.0,1.0,a-vale-i1,2020-21,Amesbury-Charles C Cashman Elementary,00070010, 94.2, 9.6, 30.7, 17.5, 8.7 1.4400000000000006,1.44,a-vale-i1,2020-21,Amesbury-Amesbury Middle,00070013, 94.5, 9.7, 28.9, 16.4, 4.6 2.4,2.4,a-vale-i1,2020-21,Amesbury-Amesbury High,00070505, 94.8, 8.8, 27.8, 14.0, 2.1 -2.6799999999999997,2.68,a-vale-i1,2020-21,Amherst-Wildwood Elementary,00080050, 95.2, 7.6, 21.6, 13.3, 1.6 +-7.119999999999999,1,a-vale-i1,2020-21,Amesbury-Amesbury Innovation High School,00070515, 88.1, 18.3, 55.6, 37.8, 8.9 2.6399999999999997,2.64,a-vale-i1,2020-21,Amherst-Crocker Farm Elementary,00080009, 95.2, 7.5, 19.3, 13.4, 1.3 0.7599999999999995,1,a-vale-i1,2020-21,Amherst-Fort River Elementary,00080020, 93.9, 9.9, 26.7, 18.1, 1.0 -0.6799999999999997,1,a-vale-i1,2020-21,Amherst-Pelham-Amherst Regional High,06050505, 90.9, 15.1, 24.1, 18.3, 0.8 +2.6799999999999997,2.68,a-vale-i1,2020-21,Amherst-Wildwood Elementary,00080050, 95.2, 7.6, 21.6, 13.3, 1.6 0.6400000000000006,1,a-vale-i1,2020-21,Amherst-Pelham-Amherst Regional Middle School,06050405, 94.3, 9.5, 28.2, 18.4, 0.0 +0.6799999999999997,1,a-vale-i1,2020-21,Amherst-Pelham-Amherst Regional High,06050505, 90.9, 15.1, 24.1, 18.3, 0.8 6.56,5,a-vale-i1,2020-21,Andover-Bancroft Elementary,00090003, 97.3, 4.6, 11.9, 3.6, 1.7 6.68,5,a-vale-i1,2020-21,Andover-High Plain Elementary,00090004, 97.5, 4.0, 10.0, 3.3, 0.6 0.0,1,a-vale-i1,2020-21,Andover-Shawsheen School,00090005, 93.5, 9.8, 41.3, 20.0, 3.8 7.159999999999999,5,a-vale-i1,2020-21,Andover-Henry C Sanborn Elementary,00090010, 97.7, 3.9, 8.9, 2.1, 0.6 -7.640000000000001,5,a-vale-i1,2020-21,Andover-South Elementary,00090020, 98.2, 3.0, 4.9, 0.9, 0.6 +2.84,2.84,a-vale-i1,2020-21,Andover-Andover High,00090505, 94.9, 8.4, 24.9, 12.9, 1.6 6.840000000000001,5,a-vale-i1,2020-21,Andover-West Elementary,00090025, 97.5, 4.1, 8.3, 2.9, 1.3 6.32,5,a-vale-i1,2020-21,Andover-Doherty Middle,00090305, 97.3, 4.6, 12.1, 4.2, 0.0 5.0,5.0,a-vale-i1,2020-21,Andover-Andover West Middle,00090310, 96.6, 5.8, 16.5, 7.5, 1.5 4.5600000000000005,4.56,a-vale-i1,2020-21,Andover-Wood Hill Middle School,00090350, 96.5, 5.8, 19.1, 8.6, 1.0 -2.84,2.84,a-vale-i1,2020-21,Andover-Andover High,00090505, 94.9, 8.4, 24.9, 12.9, 1.6 +7.640000000000001,5,a-vale-i1,2020-21,Andover-South Elementary,00090020, 98.2, 3.0, 4.9, 0.9, 0.6 1.3200000000000003,1.32,a-vale-i1,2020-21,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 94.3, 9.5, 29.2, 16.7, 1.9 +7.56,5,a-vale-i1,2020-21,Arlington-Brackett,00100010, 98.2, 3.1, 6.0, 1.1, 0.0 +7.24,5,a-vale-i1,2020-21,Arlington-Cyrus E Dallin,00100025, 97.8, 3.6, 7.2, 1.9, 0.0 +6.4,5,a-vale-i1,2020-21,Arlington-Hardy,00100030, 97.5, 4.1, 9.9, 4.0, 0.0 +5.4,5,a-vale-i1,2020-21,Arlington-Arlington High,00100505, 96.7, 5.5, 12.2, 6.5, 3.4 +6.32,5,a-vale-i1,2020-21,Arlington-Peirce,00100045, 97.5, 4.2, 9.8, 4.2, 0.0 +5.88,5,a-vale-i1,2020-21,Arlington-Thompson,00100050, 97.0, 5.0, 14.4, 5.3, 0.0 5.76,5,a-vale-i1,2020-21,Arlington-M Norcross Stratton,00100055, 96.8, 5.3, 17.4, 5.6, 0.0 6.36,5,a-vale-i1,2020-21,Arlington-Gibbs School,00100305, 97.2, 4.6, 12.1, 4.1, 1.2 -6.32,5,a-vale-i1,2020-21,Arlington-Peirce,00100045, 97.5, 4.2, 9.8, 4.2, 0.0 4.720000000000001,4.72,a-vale-i1,2020-21,Arlington-Ottoson Middle,00100410, 96.1, 6.5, 19.6, 8.2, 1.2 -6.4,5,a-vale-i1,2020-21,Arlington-Hardy,00100030, 97.5, 4.1, 9.9, 4.0, 0.0 -7.24,5,a-vale-i1,2020-21,Arlington-Cyrus E Dallin,00100025, 97.8, 3.6, 7.2, 1.9, 0.0 -7.56,5,a-vale-i1,2020-21,Arlington-Brackett,00100010, 98.2, 3.1, 6.0, 1.1, 0.0 6.92,5,a-vale-i1,2020-21,Arlington-John A Bishop,00100005, 97.8, 3.7, 7.0, 2.7, 0.0 -5.4,5,a-vale-i1,2020-21,Arlington-Arlington High,00100505, 96.7, 5.5, 12.2, 6.5, 3.4 -5.88,5,a-vale-i1,2020-21,Arlington-Thompson,00100050, 97.0, 5.0, 14.4, 5.3, 0.0 0.07999999999999971,1,a-vale-i1,2020-21,Arlington-Menotomy Preschool,00100038, 93.0, 10.1, 32.1, 19.8, 3.7 +6.840000000000001,5,a-vale-i1,2020-21,Ashburnham-Westminster-Westminster Elementary,06100005, 97.2, 4.7, 12.4, 2.9, 2.1 +6.32,5,a-vale-i1,2020-21,Ashburnham-Westminster-Meetinghouse School,06100010, 97.0, 4.9, 10.8, 4.2, 2.4 +5.279999999999999,5,a-vale-i1,2020-21,Ashburnham-Westminster-Briggs Elementary,06100025, 96.2, 6.0, 15.7, 6.8, 4.2 4.08,4.08,a-vale-i1,2020-21,Ashburnham-Westminster-Overlook Middle School,06100305, 95.9, 6.9, 22.5, 9.8, 4.9 1.1200000000000003,1.12,a-vale-i1,2020-21,Ashburnham-Westminster-Oakmont Regional High School,06100505, 93.3, 11.1, 32.5, 17.2, 18.0 -5.279999999999999,5,a-vale-i1,2020-21,Ashburnham-Westminster-Briggs Elementary,06100025, 96.2, 6.0, 15.7, 6.8, 4.2 -6.32,5,a-vale-i1,2020-21,Ashburnham-Westminster-Meetinghouse School,06100010, 97.0, 4.9, 10.8, 4.2, 2.4 -6.840000000000001,5,a-vale-i1,2020-21,Ashburnham-Westminster-Westminster Elementary,06100005, 97.2, 4.7, 12.4, 2.9, 2.1 +0.0,1,a-vale-i1,2020-21,Ashland-Ashland High,00140505, 93.6, 10.6, 36.8, 20.0, 11.5 -2.8400000000000007,1,a-vale-i1,2020-21,Ashland-William Pittaway Elementary,00140005, 91.8, 12.7, 42.4, 27.1, 0.0 +4.76,4.76,a-vale-i1,2020-21,Ashland-Henry E Warren Elementary,00140010, 96.5, 5.7, 18.8, 8.1, 0.0 2.2,2.2,a-vale-i1,2020-21,Ashland-David Mindess,00140015, 95.4, 7.5, 24.3, 14.5, 0.0 0.7200000000000003,1,a-vale-i1,2020-21,Ashland-Ashland Middle,00140405, 94.6, 9.0, 31.7, 18.2, 10.0 -0.0,1,a-vale-i1,2020-21,Ashland-Ashland High,00140505, 93.6, 10.6, 36.8, 20.0, 11.5 -4.76,4.76,a-vale-i1,2020-21,Ashland-Henry E Warren Elementary,00140010, 96.5, 5.7, 18.8, 8.1, 0.0 -0.5200000000000002,1,a-vale-i1,2020-21,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 93.2, 11.5, 37.9, 21.3, 15.1 +5.68,5,a-vale-i1,2020-21,Athol-Royalston-Royalston Community School,06150050, 95.7, 6.9, 24.1, 5.8, 7.3 0.15999999999999942,1,a-vale-i1,2020-21,Athol-Royalston-Athol Community Elementary School,06150020, 93.2, 10.7, 36.3, 19.6, 10.5 0.8400000000000005,1,a-vale-i1,2020-21,Athol-Royalston-Athol High,06150505, 93.3, 10.5, 29.9, 17.9, 8.0 -5.080000000000001,1,a-vale-i1,2020-21,Athol-Royalston-Athol-Royalston Middle School,06150305, 90.9, 14.6, 45.3, 32.7, 16.7 -5.68,5,a-vale-i1,2020-21,Athol-Royalston-Royalston Community School,06150050, 95.7, 6.9, 24.1, 5.8, 7.3 1.3200000000000003,1.32,a-vale-i1,2020-21,Atlantis Charter (District)-Atlantis Charter School,04910550, 94.5, 9.4, 28.8, 16.7, 26.9 --0.6799999999999997,1,a-vale-i1,2020-21,Attleboro-Attleboro Community Academy,00160515, 93.4, 7.7, 32.6, 21.7, 26.1 -10.24,1,a-vale-i1,2020-21,Attleboro-Attleboro High,00160505, 85.6, 23.7, 61.3, 45.6, 20.7 -0.2,1,a-vale-i1,2020-21,Attleboro-Wamsutta Middle School,00160320, 93.8, 10.3, 31.4, 19.5, 4.1 --2.1599999999999993,1,a-vale-i1,2020-21,Attleboro-Cyril K. Brennan Middle School,00160315, 92.4, 12.6, 40.3, 25.4, 11.0 --0.6400000000000006,1,a-vale-i1,2020-21,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 11.9, 30.7, 21.6, 8.8 -0.8,1,a-vale-i1,2020-21,Attleboro-Peter Thacher Elementary School,00160050, 94.4, 9.1, 30.4, 18.0, 6.3 -2.8,2.8,a-vale-i1,2020-21,Attleboro-Hill-Roberts Elementary School,00160045, 95.1, 8.0, 23.9, 13.0, 1.7 -3.12,3.12,a-vale-i1,2020-21,Attleboro-Thomas Willett Elementary School,00160035, 95.5, 7.2, 25.7, 12.2, 3.8 --7.280000000000001,1,a-vale-i1,2020-21,Attleboro-Early Learning Center,00160008, 90.0, 12.9, 48.9, 38.2, 29.8 +-0.6799999999999997,1,a-vale-i1,2020-21,Attleboro-Attleboro Community Academy,00160515, 93.4, 7.7, 32.6, 21.7, 26.1 5.4,5,a-vale-i1,2020-21,Attleboro-A. Irvin Studley Elementary School,00160001, 96.7, 5.4, 17.5, 6.5, 2.2 +-7.280000000000001,1,a-vale-i1,2020-21,Attleboro-Early Learning Center,00160008, 90.0, 12.9, 48.9, 38.2, 29.8 +3.12,3.12,a-vale-i1,2020-21,Attleboro-Thomas Willett Elementary School,00160035, 95.5, 7.2, 25.7, 12.2, 3.8 -1.0,1,a-vale-i1,2020-21,Attleboro-Hyman Fine Elementary School,00160040, 88.3, 19.2, 33.7, 22.5, 7.3 --3.6799999999999997,1,a-vale-i1,2020-21,Auburn-Auburn Senior High,00170505, 91.0, 14.9, 44.0, 29.2, 0.0 -1.8799999999999997,1.88,a-vale-i1,2020-21,Auburn-Auburn Middle,00170305, 94.3, 9.6, 28.3, 15.3, 0.0 -6.279999999999999,5,a-vale-i1,2020-21,Auburn-Pakachoag School,00170025, 97.3, 4.4, 10.5, 4.3, 0.0 +2.8,2.8,a-vale-i1,2020-21,Attleboro-Hill-Roberts Elementary School,00160045, 95.1, 8.0, 23.9, 13.0, 1.7 +0.8,1,a-vale-i1,2020-21,Attleboro-Peter Thacher Elementary School,00160050, 94.4, 9.1, 30.4, 18.0, 6.3 +-0.6400000000000006,1,a-vale-i1,2020-21,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 11.9, 30.7, 21.6, 8.8 +-2.1599999999999993,1,a-vale-i1,2020-21,Attleboro-Cyril K. Brennan Middle School,00160315, 92.4, 12.6, 40.3, 25.4, 11.0 +0.2,1,a-vale-i1,2020-21,Attleboro-Wamsutta Middle School,00160320, 93.8, 10.3, 31.4, 19.5, 4.1 5.32,5,a-vale-i1,2020-21,Auburn-Bryn Mawr,00170010, 96.6, 5.7, 18.3, 6.7, 0.0 +6.279999999999999,5,a-vale-i1,2020-21,Auburn-Pakachoag School,00170025, 97.3, 4.4, 10.5, 4.3, 0.0 5.64,5,a-vale-i1,2020-21,Auburn-Swanson Road Intermediate School,00170030, 97.0, 5.0, 14.0, 5.9, 0.0 +1.8799999999999997,1.88,a-vale-i1,2020-21,Auburn-Auburn Middle,00170305, 94.3, 9.6, 28.3, 15.3, 0.0 +-3.6799999999999997,1,a-vale-i1,2020-21,Auburn-Auburn Senior High,00170505, 91.0, 14.9, 44.0, 29.2, 0.0 4.96,4.96,a-vale-i1,2020-21,Avon-Ralph D Butler,00180010, 97.0, 4.9, 14.6, 7.6, 3.4 4.720000000000001,4.72,a-vale-i1,2020-21,Avon-Avon Middle High School,00180510, 96.4, 5.9, 19.9, 8.2, 15.8 +3.72,3.72,a-vale-i1,2020-21,Ayer Shirley School District-Lura A. White Elementary School,06160001, 96.1, 6.3, 20.7, 10.7, 2.7 2.9200000000000004,2.92,a-vale-i1,2020-21,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 95.4, 7.4, 27.0, 12.7, 7.8 0.8400000000000005,1,a-vale-i1,2020-21,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 93.9, 10.3, 36.4, 17.9, 10.0 -6.2,1,a-vale-i1,2020-21,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 89.9, 16.4, 53.2, 35.5, 15.2 -3.72,3.72,a-vale-i1,2020-21,Ayer Shirley School District-Lura A. White Elementary School,06160001, 96.1, 6.3, 20.7, 10.7, 2.7 -0.5599999999999994,1,a-vale-i1,2020-21,Barnstable-Barnstable Community Innovation School,00200012, 94.2, 9.6, 36.4, 18.6, 17.9 --11.0,1,a-vale-i1,2020-21,Barnstable-Enoch Cobb Early Learning Center,00200001, 87.9, 14.0, 53.2, 47.5, 41.8 1.0,1.0,a-vale-i1,2020-21,Barnstable-West Barnstable Elementary,00200005, 94.4, 9.2, 31.2, 17.5, 14.5 -1.8399999999999999,1.84,a-vale-i1,2020-21,Barnstable-Centerville Elementary,00200010, 94.6, 8.7, 29.9, 15.4, 7.9 --9.080000000000002,1,a-vale-i1,2020-21,Barnstable-Barnstable High,00200505, 87.7, 20.2, 58.9, 42.7, 23.4 -0.4799999999999997,1,a-vale-i1,2020-21,Barnstable-Hyannis West Elementary,00200025, 94.2, 8.9, 35.8, 18.8, 7.3 +-11.0,1,a-vale-i1,2020-21,Barnstable-Enoch Cobb Early Learning Center,00200001, 87.9, 14.0, 53.2, 47.5, 41.8 2.9200000000000004,2.92,a-vale-i1,2020-21,Barnstable-West Villages Elementary School,00200045, 95.1, 7.9, 27.1, 12.7, 1.3 -0.9599999999999994,1,a-vale-i1,2020-21,Barnstable-Barnstable United Elementary School,00200050, 94.5, 9.0, 28.3, 17.6, 10.3 +0.4799999999999997,1,a-vale-i1,2020-21,Barnstable-Hyannis West Elementary,00200025, 94.2, 8.9, 35.8, 18.8, 7.3 -7.24,1,a-vale-i1,2020-21,Barnstable-Barnstable Intermediate School,00200315, 89.1, 17.8, 55.5, 38.1, 16.7 +1.8399999999999999,1.84,a-vale-i1,2020-21,Barnstable-Centerville Elementary,00200010, 94.6, 8.7, 29.9, 15.4, 7.9 +0.5599999999999994,1,a-vale-i1,2020-21,Barnstable-Barnstable Community Innovation School,00200012, 94.2, 9.6, 36.4, 18.6, 17.9 +-9.080000000000002,1,a-vale-i1,2020-21,Barnstable-Barnstable High,00200505, 87.7, 20.2, 58.9, 42.7, 23.4 +0.9599999999999994,1,a-vale-i1,2020-21,Barnstable-Barnstable United Elementary School,00200050, 94.5, 9.0, 28.3, 17.6, 10.3 -0.7599999999999995,1,a-vale-i1,2020-21,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 92.5, 13.1, 42.2, 21.9, 0.0 -7.279999999999999,5,a-vale-i1,2020-21,Bedford-Lt Job Lane School,00230012, 98.3, 2.9, 4.9, 1.8, 0.0 -7.08,5,a-vale-i1,2020-21,Bedford-Lt Elezer Davis,00230010, 98.4, 2.6, 3.5, 2.3, 0.7 5.36,5,a-vale-i1,2020-21,Bedford-John Glenn Middle,00230305, 96.7, 5.6, 14.9, 6.6, 0.3 4.96,4.96,a-vale-i1,2020-21,Bedford-Bedford High,00230505, 96.1, 6.6, 20.1, 7.6, 3.6 -3.4799999999999995,3.48,a-vale-i1,2020-21,Belchertown-Jabish Middle School,00240025, 95.9, 6.9, 19.3, 11.3, 12.7 +7.279999999999999,5,a-vale-i1,2020-21,Bedford-Lt Job Lane School,00230012, 98.3, 2.9, 4.9, 1.8, 0.0 +7.08,5,a-vale-i1,2020-21,Bedford-Lt Elezer Davis,00230010, 98.4, 2.6, 3.5, 2.3, 0.7 3.84,3.84,a-vale-i1,2020-21,Belchertown-Swift River Elementary,00240018, 95.7, 7.1, 20.3, 10.4, 13.5 --0.5599999999999994,1,a-vale-i1,2020-21,Belchertown-Belchertown High,00240505, 93.2, 11.2, 35.2, 21.4, 29.8 1.9600000000000002,1.96,a-vale-i1,2020-21,Belchertown-Cold Spring,00240005, 94.6, 8.8, 28.5, 15.1, 21.5 +3.4799999999999995,3.48,a-vale-i1,2020-21,Belchertown-Jabish Middle School,00240025, 95.9, 6.9, 19.3, 11.3, 12.7 1.7600000000000002,1.76,a-vale-i1,2020-21,Belchertown-Chestnut Hill Community School,00240006, 94.9, 8.6, 25.4, 15.6, 20.7 +-0.5599999999999994,1,a-vale-i1,2020-21,Belchertown-Belchertown High,00240505, 93.2, 11.2, 35.2, 21.4, 29.8 3.44,3.44,a-vale-i1,2020-21,Bellingham-Joseph F DiPietro Elementary School,00250020, 96.0, 6.5, 19.5, 11.4, 5.7 -4.279999999999999,4.28,a-vale-i1,2020-21,Bellingham-Bellingham Memorial School,00250315, 96.3, 6.2, 20.1, 9.3, 7.3 3.3600000000000003,3.36,a-vale-i1,2020-21,Bellingham-Stall Brook,00250025, 95.4, 7.6, 25.3, 11.6, 5.6 --21.24,1,a-vale-i1,2020-21,Bellingham-Keough Memorial Academy,00250510, 78.0, 31.1, 80.8, 73.1, 57.7 -1.8400000000000005,1,a-vale-i1,2020-21,Bellingham-Bellingham High School,00250505, 91.7, 13.8, 37.9, 24.6, 6.7 +4.279999999999999,4.28,a-vale-i1,2020-21,Bellingham-Bellingham Memorial School,00250315, 96.3, 6.2, 20.1, 9.3, 7.3 +-21.24,1,a-vale-i1,2020-21,Bellingham-Keough Memorial Academy,00250510, 78.0, 31.1, 80.8, 73.1, 57.7 3.3600000000000003,3.36,a-vale-i1,2020-21,Bellingham-Bellingham Early Childhood Center,00250003, 96.3, 5.8, 14.5, 11.6, 14.5 -4.4,4.4,a-vale-i1,2020-21,Belmont-Belmont High,00260505, 96.2, 6.3, 17.8, 9.0, 0.7 6.5200000000000005,5,a-vale-i1,2020-21,Belmont-Winthrop L Chenery Middle,00260305, 97.7, 3.8, 9.1, 3.7, 2.1 7.0,5,a-vale-i1,2020-21,Belmont-Roger E Wellington,00260035, 98.5, 2.4, 5.0, 2.5, 0.8 -6.56,5,a-vale-i1,2020-21,Belmont-Daniel Butler,00260015, 97.8, 3.7, 7.7, 3.6, 2.7 +4.4,4.4,a-vale-i1,2020-21,Belmont-Belmont High,00260505, 96.2, 6.3, 17.8, 9.0, 0.7 7.159999999999999,5,a-vale-i1,2020-21,Belmont-Mary Lee Burbank,00260010, 98.3, 2.8, 7.8, 2.1, 0.0 7.720000000000001,5,a-vale-i1,2020-21,Belmont-Winn Brook,00260005, 98.7, 2.2, 4.5, 0.7, 1.8 +6.56,5,a-vale-i1,2020-21,Belmont-Daniel Butler,00260015, 97.8, 3.7, 7.7, 3.6, 2.7 4.5200000000000005,4.52,a-vale-i1,2020-21,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 96.5, 6.1, 19.2, 8.7, 0.6 6.6,5,a-vale-i1,2020-21,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 97.5, 4.1, 10.0, 3.5, 1.4 -4.4799999999999995,4.48,a-vale-i1,2020-21,Berkley-Berkley Middle School,00270305, 96.0, 6.8, 24.1, 8.8, 21.9 5.6,5,a-vale-i1,2020-21,Berkley-Berkley Community School,00270010, 96.7, 5.1, 15.1, 6.0, 12.1 +4.4799999999999995,4.48,a-vale-i1,2020-21,Berkley-Berkley Middle School,00270305, 96.0, 6.8, 24.1, 8.8, 21.9 -0.44000000000000056,1,a-vale-i1,2020-21,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 92.4, 13.0, 36.0, 21.1, 32.9 --6.0,1,a-vale-i1,2020-21,Berkshire Hills-Monument Mt Regional High,06180505, 88.7, 18.5, 52.6, 35.0, 4.3 --3.4,1,a-vale-i1,2020-21,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 91.4, 14.0, 51.4, 28.5, 0.0 -2.4,1,a-vale-i1,2020-21,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.1, 13.2, 43.7, 26.0, 0.3 -4.08,4.08,a-vale-i1,2020-21,Berlin-Boylston-Berlin Memorial School,06200005, 96.0, 6.2, 18.5, 9.8, 0.5 +-3.4,1,a-vale-i1,2020-21,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 91.4, 14.0, 51.4, 28.5, 0.0 +-6.0,1,a-vale-i1,2020-21,Berkshire Hills-Monument Mt Regional High,06180505, 88.7, 18.5, 52.6, 35.0, 4.3 4.5600000000000005,4.56,a-vale-i1,2020-21,Berlin-Boylston-Tahanto Regional High,06200505, 96.1, 6.4, 18.0, 8.6, 1.8 +4.08,4.08,a-vale-i1,2020-21,Berlin-Boylston-Berlin Memorial School,06200005, 96.0, 6.2, 18.5, 9.8, 0.5 2.72,2.72,a-vale-i1,2020-21,Berlin-Boylston-Boylston Elementary School,06200010, 95.8, 6.8, 23.9, 13.2, 0.0 -2.5200000000000005,2.52,a-vale-i1,2020-21,Beverly-Cove Elementary,00300015, 95.4, 7.5, 23.6, 13.7, 10.6 -5.720000000000001,5,a-vale-i1,2020-21,Beverly-Hannah Elementary,00300033, 96.2, 6.4, 24.5, 5.7, 11.1 -3.2399999999999998,3.24,a-vale-i1,2020-21,Beverly-North Beverly Elementary,00300040, 95.9, 6.7, 21.7, 11.9, 6.9 -5.4399999999999995,5,a-vale-i1,2020-21,Beverly-Ayers/Ryal Side School,00300055, 96.6, 5.6, 15.2, 6.4, 2.4 -0.9599999999999994,1,a-vale-i1,2020-21,Beverly-Beverly Middle School,00300305, 93.9, 10.2, 31.5, 17.6, 16.3 --0.5200000000000002,1,a-vale-i1,2020-21,Beverly-Centerville Elementary,00300010, 93.6, 10.6, 39.0, 21.3, 5.9 -5.359999999999999,1,a-vale-i1,2020-21,Beverly-Beverly High,00300505, 89.5, 17.5, 48.5, 33.4, 21.6 +5.4399999999999995,5,a-vale-i1,2020-21,Beverly-Ayers/Ryal Side School,00300055, 96.6, 5.6, 15.2, 6.4, 2.4 +3.2399999999999998,3.24,a-vale-i1,2020-21,Beverly-North Beverly Elementary,00300040, 95.9, 6.7, 21.7, 11.9, 6.9 +5.720000000000001,5,a-vale-i1,2020-21,Beverly-Hannah Elementary,00300033, 96.2, 6.4, 24.5, 5.7, 11.1 +2.5200000000000005,2.52,a-vale-i1,2020-21,Beverly-Cove Elementary,00300015, 95.4, 7.5, 23.6, 13.7, 10.6 +-0.5200000000000002,1,a-vale-i1,2020-21,Beverly-Centerville Elementary,00300010, 93.6, 10.6, 39.0, 21.3, 5.9 0.35999999999999943,1,a-vale-i1,2020-21,Beverly-McKeown School,00300002, 94.5, 8.1, 31.3, 19.1, 28.7 +0.9599999999999994,1,a-vale-i1,2020-21,Beverly-Beverly Middle School,00300305, 93.9, 10.2, 31.5, 17.6, 16.3 +0.4,1,a-vale-i1,2020-21,Billerica-Billerica Memorial High School,00310505, 93.7, 10.4, 36.9, 19.0, 14.2 +5.96,5,a-vale-i1,2020-21,Billerica-Thomas Ditson,00310005, 97.0, 5.0, 13.1, 5.1, 6.2 +5.2,5,a-vale-i1,2020-21,Billerica-Frederick J Dutile,00310007, 97.1, 4.8, 13.5, 7.0, 0.8 6.08,5,a-vale-i1,2020-21,Billerica-John F Kennedy,00310012, 97.0, 5.0, 13.8, 4.8, 6.4 5.24,5,a-vale-i1,2020-21,Billerica-Parker,00310015, 96.9, 5.0, 17.2, 6.9, 2.1 4.24,4.24,a-vale-i1,2020-21,Billerica-Hajjar Elementary,00310026, 96.0, 6.6, 21.3, 9.4, 12.4 -0.4,1,a-vale-i1,2020-21,Billerica-Billerica Memorial High School,00310505, 93.7, 10.4, 36.9, 19.0, 14.2 -5.12,5,a-vale-i1,2020-21,Billerica-Locke Middle,00310310, 96.3, 6.2, 18.6, 7.2, 5.6 -5.96,5,a-vale-i1,2020-21,Billerica-Thomas Ditson,00310005, 97.0, 5.0, 13.1, 5.1, 6.2 -5.2,5,a-vale-i1,2020-21,Billerica-Frederick J Dutile,00310007, 97.1, 4.8, 13.5, 7.0, 0.8 4.0,4.0,a-vale-i1,2020-21,Billerica-Marshall Middle School,00310305, 95.9, 6.7, 24.1, 10.0, 2.6 +5.12,5,a-vale-i1,2020-21,Billerica-Locke Middle,00310310, 96.3, 6.2, 18.6, 7.2, 5.6 6.08,5,a-vale-i1,2020-21,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 97.2, 5.1, 15.4, 4.8, 0.2 --0.5599999999999994,1,a-vale-i1,2020-21,Blackstone-Millville-Blackstone Millville RHS,06220505, 93.1, 13.0, 39.8, 21.4, 13.8 -3.96,3.96,a-vale-i1,2020-21,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 95.5, 7.6, 23.0, 10.1, 9.6 -5.5600000000000005,5,a-vale-i1,2020-21,Blackstone-Millville-A F Maloney,06220015, 96.8, 6.2, 20.5, 6.1, 10.4 4.64,4.64,a-vale-i1,2020-21,Blackstone-Millville-John F Kennedy Elementary,06220008, 96.0, 7.6, 30.9, 8.4, 23.6 2.8,2.8,a-vale-i1,2020-21,Blackstone-Millville-Millville Elementary,06220010, 95.3, 8.7, 33.8, 13.0, 17.1 +5.5600000000000005,5,a-vale-i1,2020-21,Blackstone-Millville-A F Maloney,06220015, 96.8, 6.2, 20.5, 6.1, 10.4 +3.96,3.96,a-vale-i1,2020-21,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 95.5, 7.6, 23.0, 10.1, 9.6 +-0.5599999999999994,1,a-vale-i1,2020-21,Blackstone-Millville-Blackstone Millville RHS,06220505, 93.1, 13.0, 39.8, 21.4, 13.8 0.12000000000000029,1,a-vale-i1,2020-21,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 93.6, 10.7, 41.4, 19.7, 17.0 --25.839999999999996,1,a-vale-i1,2020-21,Boston-Carter School,00350036, 69.4, 51.9, 92.3, 84.6, 23.1 --2.3200000000000003,1,a-vale-i1,2020-21,Boston-Charles Sumner,00350052, 91.6, 13.9, 42.4, 25.8, 2.4 --19.04,1,a-vale-i1,2020-21,Boston-Excel High School,00350522, 75.0, 40.1, 75.4, 67.6, 39.8 --7.8,1,a-vale-i1,2020-21,Boston-Jeremiah E Burke High,00350525, 83.7, 26.2, 51.4, 39.5, 1.0 --3.6,1,a-vale-i1,2020-21,Boston-East Boston High,00350530, 90.0, 15.8, 38.1, 29.0, 0.4 --17.080000000000002,1,a-vale-i1,2020-21,Boston-The English High,00350535, 75.2, 39.4, 72.2, 62.7, 10.4 --17.36,1,a-vale-i1,2020-21,Boston-Madison Park High,00350537, 76.3, 38.8, 73.2, 63.4, 22.2 --1.3200000000000003,1,a-vale-i1,2020-21,Boston-Charles H Taylor,00350054, 93.0, 11.3, 31.5, 23.3, 3.2 -1.0,1.0,a-vale-i1,2020-21,Boston-Curtis Guild,00350062, 94.4, 9.0, 27.7, 17.5, 1.8 -5.16,5,a-vale-i1,2020-21,Boston-Dante Alighieri Montessori School,00350066, 95.5, 7.4, 12.4, 7.1, 0.0 --10.52,1,a-vale-i1,2020-21,Boston-David A Ellis,00350072, 87.0, 20.5, 60.7, 46.3, 1.8 --6.159999999999999,1,a-vale-i1,2020-21,Boston-Dearborn,00350074, 90.3, 16.0, 51.2, 35.4, 9.0 --7.959999999999999,1,a-vale-i1,2020-21,Boston-Fenway High School,00350540, 89.3, 17.9, 52.3, 39.9, 18.9 --8.2,1,a-vale-i1,2020-21,Boston-Joseph P Tynan,00350181, 87.7, 20.3, 51.4, 40.5, 6.5 -0.8400000000000005,1,a-vale-i1,2020-21,Boston-Joseph J Hurley,00350182, 94.0, 10.0, 34.1, 17.9, 1.6 --6.640000000000001,1,a-vale-i1,2020-21,Boston-Joseph Lee,00350183, 89.3, 17.6, 48.9, 36.6, 0.2 --0.7599999999999995,1,a-vale-i1,2020-21,Boston-Joseph P Manning,00350184, 92.3, 12.7, 33.7, 21.9, 2.8 -2.72,2.72,a-vale-i1,2020-21,Boston-Joyce Kilmer,00350190, 94.5, 9.1, 20.6, 13.2, 1.9 --0.8799999999999997,1,a-vale-i1,2020-21,Boston-Harvard-Kent,00350200, 92.4, 12.6, 34.2, 22.2, 5.4 -1.2,1.2,a-vale-i1,2020-21,Boston-Boston Latin,00350560, 93.9, 10.3, 33.9, 17.0, 2.1 --9.88,1,a-vale-i1,2020-21,Boston-Quincy Upper School,00350565, 85.9, 23.8, 55.5, 44.7, 17.3 -5.12,5,a-vale-i1,2020-21,Boston-O'Bryant School Math/Science,00350575, 96.9, 5.2, 13.4, 7.2, 0.3 --14.559999999999999,1,a-vale-i1,2020-21,Boston-Community Academy of Science and Health,00350581, 76.7, 38.0, 64.5, 56.4, 19.5 --0.8400000000000005,1,a-vale-i1,2020-21,Boston-George H Conley,00350122, 92.9, 11.7, 36.7, 22.1, 1.0 --1.7599999999999993,1,a-vale-i1,2020-21,Boston-Henry Grew,00350135, 93.1, 11.3, 35.3, 24.4, 3.6 --13.36,1,a-vale-i1,2020-21,Boston-O W Holmes,00350138, 82.4, 28.3, 66.8, 53.4, 3.7 --3.0400000000000005,1,a-vale-i1,2020-21,Boston-Hugh Roe O'Donnell,00350141, 92.9, 11.6, 37.5, 27.6, 1.8 --9.84,1,a-vale-i1,2020-21,Boston-Young Achievers,00350380, 86.3, 22.5, 60.7, 44.6, 1.9 -0.8400000000000005,1,a-vale-i1,2020-21,Boston-Mission Hill School,00350382, 93.9, 10.1, 26.8, 17.9, 0.4 --5.359999999999999,1,a-vale-i1,2020-21,Boston-Lilla G. Frederick Middle School,00350383, 90.5, 15.6, 48.7, 33.4, 1.5 --3.8,1,a-vale-i1,2020-21,Boston-Blackstone,00350390, 91.3, 14.2, 45.8, 29.5, 4.7 -0.7200000000000003,1,a-vale-i1,2020-21,Boston-Dr. William Henderson Upper,00350426, 94.3, 9.5, 29.9, 18.2, 4.9 --6.280000000000001,1,a-vale-i1,2020-21,Boston-Lyon Upper 9-12,00350655, 89.0, 18.1, 45.0, 35.7, 2.9 --2.72,1,a-vale-i1,2020-21,Boston-Condon K-8,00350146, 92.1, 13.0, 40.8, 26.8, 2.2 --5.4,1,a-vale-i1,2020-21,Boston-James W Hennigan,00350153, 90.4, 15.8, 47.8, 33.5, 3.5 --3.4,1,a-vale-i1,2020-21,Boston-James J Chittick,00350154, 90.9, 14.6, 42.6, 28.5, 0.4 --7.840000000000001,1,a-vale-i1,2020-21,Boston-Clarence R Edwards Middle,00350430, 88.6, 18.8, 54.1, 39.6, 8.7 --5.159999999999999,1,a-vale-i1,2020-21,Boston-Jackson Mann,00350013, 90.3, 15.7, 44.1, 32.9, 5.8 --4.6,1,a-vale-i1,2020-21,Boston-Pauline Agassiz Shaw Elementary School,00350014, 91.2, 14.6, 47.6, 31.5, 3.6 --10.52,1,a-vale-i1,2020-21,Boston-Higginson,00350015, 84.8, 24.6, 62.7, 46.3, 6.7 --8.680000000000001,1,a-vale-i1,2020-21,Boston-Mattahunt Elementary School,00350016, 87.8, 19.7, 56.5, 41.7, 6.2 --12.12,1,a-vale-i1,2020-21,Boston-Washington Irving Middle,00350445, 83.8, 26.4, 63.0, 50.3, 5.3 --14.719999999999999,1,a-vale-i1,2020-21,Boston-James P Timilty Middle,00350485, 83.8, 26.0, 70.4, 56.8, 9.6 --15.6,1,a-vale-i1,2020-21,Boston-Brighton High,00350505, 78.6, 34.2, 69.4, 59.0, 49.4 --2.5599999999999996,1,a-vale-i1,2020-21,Boston-Curley K-8 School,00350020, 91.6, 13.9, 37.4, 26.4, 2.8 --0.7599999999999995,1,a-vale-i1,2020-21,Boston-Beethoven,00350021, 93.0, 11.4, 33.0, 21.9, 3.5 --0.4799999999999997,1,a-vale-i1,2020-21,Boston-Mario Umana Academy,00350656, 93.8, 10.3, 36.8, 21.2, 1.7 --14.16,1,a-vale-i1,2020-21,Boston-TechBoston Academy,00350657, 80.8, 31.6, 67.2, 55.4, 5.5 --15.8,1,a-vale-i1,2020-21,Boston-Snowden International School at Copley,00350690, 81.0, 31.5, 74.9, 59.5, 17.2 --0.9599999999999994,1,a-vale-i1,2020-21,Boston-Rafael Hernandez,00350691, 93.1, 11.6, 35.7, 22.4, 0.7 -2.56,2.56,a-vale-i1,2020-21,Boston-James Otis,00350156, 95.6, 7.3, 24.5, 13.6, 1.2 --4.68,1,a-vale-i1,2020-21,Boston-Boston International High School,00350507, 90.4, 15.4, 37.8, 31.7, 12.8 --22.6,1,a-vale-i1,2020-21,Boston-Charlestown High,00350515, 66.0, 54.9, 82.7, 76.5, 1.6 --24.8,1,a-vale-i1,2020-21,Boston-Community Academy,00350518, 70.9, 41.3, 86.9, 82.0, 0.0 --6.919999999999999,1,a-vale-i1,2020-21,Boston-Horace Mann School for the Deaf,00350750, 89.4, 17.0, 58.2, 37.3, 11.9 --24.560000000000002,1,a-vale-i1,2020-21,Boston-Boston Collaborative High School,00350755, 50.8, 73.5, 85.8, 81.4, 0.5 -0.6799999999999997,1,a-vale-i1,2020-21,Boston-John F Kennedy,00350166, 93.9, 9.9, 32.8, 18.3, 1.4 --5.959999999999999,1,a-vale-i1,2020-21,Boston-UP Academy Holland,00350167, 89.8, 17.4, 50.8, 34.9, 6.6 -3.0,3.0,a-vale-i1,2020-21,Boston-John D Philbrick,00350172, 96.2, 6.4, 18.8, 12.5, 1.8 --6.76,1,a-vale-i1,2020-21,Boston-John W McCormack,00350179, 89.5, 17.3, 49.8, 36.9, 2.3 --12.16,1,a-vale-i1,2020-21,Boston-John Winthrop,00350180, 85.7, 23.2, 63.7, 50.4, 4.7 --2.12,1,a-vale-i1,2020-21,Boston-Paul A Dever,00350268, 92.5, 12.4, 41.2, 25.3, 1.1 --1.3599999999999994,1,a-vale-i1,2020-21,Boston-Phineas Bates,00350278, 91.8, 13.5, 36.3, 23.4, 6.0 -6.2,5,a-vale-i1,2020-21,Boston-Josiah Quincy,00350286, 98.4, 2.6, 6.2, 4.5, 0.3 --2.2400000000000007,1,a-vale-i1,2020-21,Boston-Roger Clap,00350298, 92.9, 11.6, 35.2, 25.6, 2.4 --1.3200000000000003,1,a-vale-i1,2020-21,Boston-Samuel Adams,00350302, 92.2, 12.5, 33.3, 23.3, 5.8 -2.8,2.8,a-vale-i1,2020-21,Boston-Samuel W Mason,00350304, 95.6, 7.1, 24.2, 13.0, 0.9 --6.359999999999999,1,a-vale-i1,2020-21,Boston-Lee Academy,00350001, 88.7, 18.6, 47.8, 35.9, 11.0 --19.080000000000002,1,a-vale-i1,2020-21,Boston-Another Course To College,00350541, 74.1, 41.5, 77.0, 67.7, 0.0 -4.0,4.0,a-vale-i1,2020-21,Boston-New Mission High School,00350542, 95.9, 6.8, 16.1, 10.0, 0.0 --30.68,1,a-vale-i1,2020-21,Boston-Greater Egleston Community High School,00350543, 36.5, 91.6, 96.7, 96.7, 62.0 -4.4,4.4,a-vale-i1,2020-21,Boston-Boston Latin Academy,00350545, 96.3, 6.3, 17.2, 9.0, 1.3 --4.880000000000001,1,a-vale-i1,2020-21,Boston-Boston Arts Academy,00350546, 90.0, 16.8, 50.0, 32.2, 10.8 --20.360000000000003,1,a-vale-i1,2020-21,Boston-Boston Adult Academy,00350548, 62.3, 55.8, 78.6, 70.9, 51.1 --8.88,1,a-vale-i1,2020-21,Boston-Margarita Muniz Academy,00350549, 87.9, 20.2, 57.5, 42.2, 6.7 --0.3200000000000003,1,a-vale-i1,2020-21,Boston-Dennis C Haley,00350077, 92.8, 11.9, 35.6, 20.8, 7.2 -3.5200000000000005,3.52,a-vale-i1,2020-21,Boston-Donald Mckay,00350080, 95.7, 7.1, 20.8, 11.2, 0.9 -1.6,1.6,a-vale-i1,2020-21,Boston-Edward Everett,00350088, 95.0, 8.1, 26.4, 16.0, 1.0 -7.8,5,a-vale-i1,2020-21,Boston-Eliot Elementary,00350096, 99.3, 1.2, 2.8, 0.5, 0.0 -2.04,2.04,a-vale-i1,2020-21,Boston-Ellis Mendell,00350100, 95.3, 7.8, 23.4, 14.9, 2.5 -0.4799999999999997,1,a-vale-i1,2020-21,Boston-Franklin D Roosevelt,00350116, 94.3, 9.4, 31.7, 18.8, 1.0 --8.64,1,a-vale-i1,2020-21,Boston-William Monroe Trotter,00350370, 86.9, 21.6, 56.4, 41.6, 7.7 -1.3200000000000003,1.32,a-vale-i1,2020-21,Boston-Winship Elementary,00350374, 94.7, 8.5, 29.2, 16.7, 1.3 --3.9200000000000004,1,a-vale-i1,2020-21,Boston-Edison K-8,00350375, 91.0, 14.5, 43.4, 29.8, 2.0 --6.880000000000001,1,a-vale-i1,2020-21,Boston-King K-8,00350376, 88.6, 18.6, 50.9, 37.2, 1.5 --8.919999999999998,1,a-vale-i1,2020-21,Boston-Higginson/Lewis K-8,00350377, 87.1, 21.1, 59.9, 42.3, 2.7 -1.7200000000000002,1.72,a-vale-i1,2020-21,Boston-Mildred Avenue K-8,00350378, 94.5, 8.9, 25.6, 15.7, 0.3 --0.24000000000000057,1,a-vale-i1,2020-21,Boston-Baldwin Early Learning Center,00350003, 92.8, 11.7, 29.0, 20.6, 2.6 --1.4400000000000006,1,a-vale-i1,2020-21,Boston-Lyon K-8,00350004, 93.3, 11.0, 30.7, 23.6, 0.8 --9.080000000000002,1,a-vale-i1,2020-21,Boston-ELC - West Zone,00350006, 87.5, 19.6, 58.3, 42.7, 7.8 --1.8799999999999997,1,a-vale-i1,2020-21,Boston-Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 92.3, 12.6, 36.0, 24.7, 3.8 --1.4400000000000006,1,a-vale-i1,2020-21,Boston-East Boston Early Childhood Center,00350009, 91.8, 13.5, 39.5, 23.6, 1.0 --9.319999999999999,1,a-vale-i1,2020-21,Boston-Haynes Early Education Center,00350010, 86.1, 22.7, 54.6, 43.3, 5.2 -0.6400000000000006,1,a-vale-i1,2020-21,Boston-Boston Teachers Union School,00350012, 93.0, 11.7, 28.7, 18.4, 1.4 --7.6,1,a-vale-i1,2020-21,Boston-Boston Community Leadership Academy,00350558, 87.9, 20.0, 51.8, 39.0, 16.9 --7.6,1,a-vale-i1,2020-21,Boston-Sarah Greenwood,00350308, 88.1, 19.6, 52.5, 39.0, 4.0 -2.88,2.88,a-vale-i1,2020-21,Boston-Gardner Pilot Academy,00350326, 95.9, 6.9, 22.9, 12.8, 2.1 --0.7200000000000003,1,a-vale-i1,2020-21,Boston-Thomas J Kenny,00350328, 93.0, 11.3, 32.3, 21.8, 0.6 -2.3200000000000003,2.32,a-vale-i1,2020-21,Boston-Warren-Prescott,00350346, 94.9, 8.4, 22.0, 14.2, 2.9 --2.9599999999999995,1,a-vale-i1,2020-21,Boston-William Ellery Channing,00350360, 92.0, 12.9, 37.4, 27.4, 1.3 --19.0,1,a-vale-i1,2020-21,Boston-William McKinley,00350363, 68.9, 50.3, 79.6, 67.5, 19.2 --4.12,1,a-vale-i1,2020-21,Boston-William E Russell,00350366, 89.7, 16.8, 42.2, 30.3, 1.6 2.84,2.84,a-vale-i1,2020-21,Boston-Manassah E Bradley,00350215, 95.6, 7.2, 25.6, 12.9, 2.6 -1.7200000000000002,1,a-vale-i1,2020-21,Boston-Mather,00350227, 92.1, 12.7, 35.0, 24.3, 2.8 -0.6400000000000006,1,a-vale-i1,2020-21,Boston-Maurice J Tobin,00350229, 92.9, 11.6, 36.6, 21.6, 1.7 @@ -2115,41 +2013,156 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.5600000000000005,5,a-vale-i1,2020-21,Boston-Lyndon,00350262, 96.8, 5.2, 10.9, 6.1, 0.5 -0.7200000000000003,1,a-vale-i1,2020-21,Boston-Patrick J Kennedy,00350264, 93.1, 11.3, 34.4, 21.8, 3.5 2.44,2.44,a-vale-i1,2020-21,Boston-Dr. William Henderson Lower,00350266, 95.5, 7.3, 25.0, 13.9, 0.9 +-2.12,1,a-vale-i1,2020-21,Boston-Paul A Dever,00350268, 92.5, 12.4, 41.2, 25.3, 1.1 +-1.3599999999999994,1,a-vale-i1,2020-21,Boston-Phineas Bates,00350278, 91.8, 13.5, 36.3, 23.4, 6.0 +6.2,5,a-vale-i1,2020-21,Boston-Josiah Quincy,00350286, 98.4, 2.6, 6.2, 4.5, 0.3 +-2.2400000000000007,1,a-vale-i1,2020-21,Boston-Roger Clap,00350298, 92.9, 11.6, 35.2, 25.6, 2.4 +-7.6,1,a-vale-i1,2020-21,Boston-Boston Community Leadership Academy,00350558, 87.9, 20.0, 51.8, 39.0, 16.9 +1.2,1.2,a-vale-i1,2020-21,Boston-Boston Latin,00350560, 93.9, 10.3, 33.9, 17.0, 2.1 +-9.88,1,a-vale-i1,2020-21,Boston-Quincy Upper School,00350565, 85.9, 23.8, 55.5, 44.7, 17.3 +5.12,5,a-vale-i1,2020-21,Boston-O'Bryant School Math/Science,00350575, 96.9, 5.2, 13.4, 7.2, 0.3 +-14.559999999999999,1,a-vale-i1,2020-21,Boston-Community Academy of Science and Health,00350581, 76.7, 38.0, 64.5, 56.4, 19.5 +-6.280000000000001,1,a-vale-i1,2020-21,Boston-Lyon Upper 9-12,00350655, 89.0, 18.1, 45.0, 35.7, 2.9 +-0.4799999999999997,1,a-vale-i1,2020-21,Boston-Mario Umana Academy,00350656, 93.8, 10.3, 36.8, 21.2, 1.7 +-3.0400000000000005,1,a-vale-i1,2020-21,Boston-Hugh Roe O'Donnell,00350141, 92.9, 11.6, 37.5, 27.6, 1.8 +-2.72,1,a-vale-i1,2020-21,Boston-Condon K-8,00350146, 92.1, 13.0, 40.8, 26.8, 2.2 +-5.4,1,a-vale-i1,2020-21,Boston-James W Hennigan,00350153, 90.4, 15.8, 47.8, 33.5, 3.5 +-3.4,1,a-vale-i1,2020-21,Boston-James J Chittick,00350154, 90.9, 14.6, 42.6, 28.5, 0.4 +2.56,2.56,a-vale-i1,2020-21,Boston-James Otis,00350156, 95.6, 7.3, 24.5, 13.6, 1.2 +0.6799999999999997,1,a-vale-i1,2020-21,Boston-John F Kennedy,00350166, 93.9, 9.9, 32.8, 18.3, 1.4 +-5.959999999999999,1,a-vale-i1,2020-21,Boston-UP Academy Holland,00350167, 89.8, 17.4, 50.8, 34.9, 6.6 +3.0,3.0,a-vale-i1,2020-21,Boston-John D Philbrick,00350172, 96.2, 6.4, 18.8, 12.5, 1.8 +-6.76,1,a-vale-i1,2020-21,Boston-John W McCormack,00350179, 89.5, 17.3, 49.8, 36.9, 2.3 +-12.16,1,a-vale-i1,2020-21,Boston-John Winthrop,00350180, 85.7, 23.2, 63.7, 50.4, 4.7 +-8.2,1,a-vale-i1,2020-21,Boston-Joseph P Tynan,00350181, 87.7, 20.3, 51.4, 40.5, 6.5 +0.8400000000000005,1,a-vale-i1,2020-21,Boston-Joseph J Hurley,00350182, 94.0, 10.0, 34.1, 17.9, 1.6 +-6.640000000000001,1,a-vale-i1,2020-21,Boston-Joseph Lee,00350183, 89.3, 17.6, 48.9, 36.6, 0.2 +-7.840000000000001,1,a-vale-i1,2020-21,Boston-Clarence R Edwards Middle,00350430, 88.6, 18.8, 54.1, 39.6, 8.7 +-12.12,1,a-vale-i1,2020-21,Boston-Washington Irving Middle,00350445, 83.8, 26.4, 63.0, 50.3, 5.3 +-14.719999999999999,1,a-vale-i1,2020-21,Boston-James P Timilty Middle,00350485, 83.8, 26.0, 70.4, 56.8, 9.6 +-15.6,1,a-vale-i1,2020-21,Boston-Brighton High,00350505, 78.6, 34.2, 69.4, 59.0, 49.4 +-4.68,1,a-vale-i1,2020-21,Boston-Boston International High School,00350507, 90.4, 15.4, 37.8, 31.7, 12.8 +-22.6,1,a-vale-i1,2020-21,Boston-Charlestown High,00350515, 66.0, 54.9, 82.7, 76.5, 1.6 +-24.8,1,a-vale-i1,2020-21,Boston-Community Academy,00350518, 70.9, 41.3, 86.9, 82.0, 0.0 +-19.04,1,a-vale-i1,2020-21,Boston-Excel High School,00350522, 75.0, 40.1, 75.4, 67.6, 39.8 +-7.8,1,a-vale-i1,2020-21,Boston-Jeremiah E Burke High,00350525, 83.7, 26.2, 51.4, 39.5, 1.0 +-3.6,1,a-vale-i1,2020-21,Boston-East Boston High,00350530, 90.0, 15.8, 38.1, 29.0, 0.4 +1.6,1.6,a-vale-i1,2020-21,Boston-Edward Everett,00350088, 95.0, 8.1, 26.4, 16.0, 1.0 +7.8,5,a-vale-i1,2020-21,Boston-Eliot Elementary,00350096, 99.3, 1.2, 2.8, 0.5, 0.0 +2.04,2.04,a-vale-i1,2020-21,Boston-Ellis Mendell,00350100, 95.3, 7.8, 23.4, 14.9, 2.5 +0.4799999999999997,1,a-vale-i1,2020-21,Boston-Franklin D Roosevelt,00350116, 94.3, 9.4, 31.7, 18.8, 1.0 +-0.8400000000000005,1,a-vale-i1,2020-21,Boston-George H Conley,00350122, 92.9, 11.7, 36.7, 22.1, 1.0 +-1.7599999999999993,1,a-vale-i1,2020-21,Boston-Henry Grew,00350135, 93.1, 11.3, 35.3, 24.4, 3.6 +-13.36,1,a-vale-i1,2020-21,Boston-O W Holmes,00350138, 82.4, 28.3, 66.8, 53.4, 3.7 +-6.359999999999999,1,a-vale-i1,2020-21,Boston-Lee Academy,00350001, 88.7, 18.6, 47.8, 35.9, 11.0 +-0.24000000000000057,1,a-vale-i1,2020-21,Boston-Baldwin Early Learning Center,00350003, 92.8, 11.7, 29.0, 20.6, 2.6 +-1.4400000000000006,1,a-vale-i1,2020-21,Boston-Lyon K-8,00350004, 93.3, 11.0, 30.7, 23.6, 0.8 +-14.16,1,a-vale-i1,2020-21,Boston-TechBoston Academy,00350657, 80.8, 31.6, 67.2, 55.4, 5.5 +-15.8,1,a-vale-i1,2020-21,Boston-Snowden International School at Copley,00350690, 81.0, 31.5, 74.9, 59.5, 17.2 +-0.9599999999999994,1,a-vale-i1,2020-21,Boston-Rafael Hernandez,00350691, 93.1, 11.6, 35.7, 22.4, 0.7 +-6.919999999999999,1,a-vale-i1,2020-21,Boston-Horace Mann School for the Deaf,00350750, 89.4, 17.0, 58.2, 37.3, 11.9 +-24.560000000000002,1,a-vale-i1,2020-21,Boston-Boston Collaborative High School,00350755, 50.8, 73.5, 85.8, 81.4, 0.5 +-9.080000000000002,1,a-vale-i1,2020-21,Boston-ELC - West Zone,00350006, 87.5, 19.6, 58.3, 42.7, 7.8 +-1.8799999999999997,1,a-vale-i1,2020-21,Boston-Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 92.3, 12.6, 36.0, 24.7, 3.8 +-1.4400000000000006,1,a-vale-i1,2020-21,Boston-East Boston Early Childhood Center,00350009, 91.8, 13.5, 39.5, 23.6, 1.0 +-9.319999999999999,1,a-vale-i1,2020-21,Boston-Haynes Early Education Center,00350010, 86.1, 22.7, 54.6, 43.3, 5.2 +0.6400000000000006,1,a-vale-i1,2020-21,Boston-Boston Teachers Union School,00350012, 93.0, 11.7, 28.7, 18.4, 1.4 +-5.159999999999999,1,a-vale-i1,2020-21,Boston-Jackson Mann,00350013, 90.3, 15.7, 44.1, 32.9, 5.8 +-4.6,1,a-vale-i1,2020-21,Boston-Pauline Agassiz Shaw Elementary School,00350014, 91.2, 14.6, 47.6, 31.5, 3.6 +-1.3200000000000003,1,a-vale-i1,2020-21,Boston-Samuel Adams,00350302, 92.2, 12.5, 33.3, 23.3, 5.8 +2.8,2.8,a-vale-i1,2020-21,Boston-Samuel W Mason,00350304, 95.6, 7.1, 24.2, 13.0, 0.9 +-7.6,1,a-vale-i1,2020-21,Boston-Sarah Greenwood,00350308, 88.1, 19.6, 52.5, 39.0, 4.0 +2.88,2.88,a-vale-i1,2020-21,Boston-Gardner Pilot Academy,00350326, 95.9, 6.9, 22.9, 12.8, 2.1 +-0.7200000000000003,1,a-vale-i1,2020-21,Boston-Thomas J Kenny,00350328, 93.0, 11.3, 32.3, 21.8, 0.6 +2.3200000000000003,2.32,a-vale-i1,2020-21,Boston-Warren-Prescott,00350346, 94.9, 8.4, 22.0, 14.2, 2.9 +-2.9599999999999995,1,a-vale-i1,2020-21,Boston-William Ellery Channing,00350360, 92.0, 12.9, 37.4, 27.4, 1.3 +-19.0,1,a-vale-i1,2020-21,Boston-William McKinley,00350363, 68.9, 50.3, 79.6, 67.5, 19.2 +-4.12,1,a-vale-i1,2020-21,Boston-William E Russell,00350366, 89.7, 16.8, 42.2, 30.3, 1.6 +-8.64,1,a-vale-i1,2020-21,Boston-William Monroe Trotter,00350370, 86.9, 21.6, 56.4, 41.6, 7.7 +1.3200000000000003,1.32,a-vale-i1,2020-21,Boston-Winship Elementary,00350374, 94.7, 8.5, 29.2, 16.7, 1.3 +-3.9200000000000004,1,a-vale-i1,2020-21,Boston-Edison K-8,00350375, 91.0, 14.5, 43.4, 29.8, 2.0 +-6.880000000000001,1,a-vale-i1,2020-21,Boston-King K-8,00350376, 88.6, 18.6, 50.9, 37.2, 1.5 +-8.919999999999998,1,a-vale-i1,2020-21,Boston-Higginson/Lewis K-8,00350377, 87.1, 21.1, 59.9, 42.3, 2.7 +1.7200000000000002,1.72,a-vale-i1,2020-21,Boston-Mildred Avenue K-8,00350378, 94.5, 8.9, 25.6, 15.7, 0.3 +-9.84,1,a-vale-i1,2020-21,Boston-Young Achievers,00350380, 86.3, 22.5, 60.7, 44.6, 1.9 +0.8400000000000005,1,a-vale-i1,2020-21,Boston-Mission Hill School,00350382, 93.9, 10.1, 26.8, 17.9, 0.4 +-5.359999999999999,1,a-vale-i1,2020-21,Boston-Lilla G. Frederick Middle School,00350383, 90.5, 15.6, 48.7, 33.4, 1.5 +-3.8,1,a-vale-i1,2020-21,Boston-Blackstone,00350390, 91.3, 14.2, 45.8, 29.5, 4.7 +-10.52,1,a-vale-i1,2020-21,Boston-Higginson,00350015, 84.8, 24.6, 62.7, 46.3, 6.7 +-8.680000000000001,1,a-vale-i1,2020-21,Boston-Mattahunt Elementary School,00350016, 87.8, 19.7, 56.5, 41.7, 6.2 +-2.5599999999999996,1,a-vale-i1,2020-21,Boston-Curley K-8 School,00350020, 91.6, 13.9, 37.4, 26.4, 2.8 +-0.7599999999999995,1,a-vale-i1,2020-21,Boston-Beethoven,00350021, 93.0, 11.4, 33.0, 21.9, 3.5 +-25.839999999999996,1,a-vale-i1,2020-21,Boston-Carter School,00350036, 69.4, 51.9, 92.3, 84.6, 23.1 +-2.3200000000000003,1,a-vale-i1,2020-21,Boston-Charles Sumner,00350052, 91.6, 13.9, 42.4, 25.8, 2.4 +-1.3200000000000003,1,a-vale-i1,2020-21,Boston-Charles H Taylor,00350054, 93.0, 11.3, 31.5, 23.3, 3.2 +1.0,1.0,a-vale-i1,2020-21,Boston-Curtis Guild,00350062, 94.4, 9.0, 27.7, 17.5, 1.8 +5.16,5,a-vale-i1,2020-21,Boston-Dante Alighieri Montessori School,00350066, 95.5, 7.4, 12.4, 7.1, 0.0 +-10.52,1,a-vale-i1,2020-21,Boston-David A Ellis,00350072, 87.0, 20.5, 60.7, 46.3, 1.8 +-6.159999999999999,1,a-vale-i1,2020-21,Boston-Dearborn,00350074, 90.3, 16.0, 51.2, 35.4, 9.0 +-0.3200000000000003,1,a-vale-i1,2020-21,Boston-Dennis C Haley,00350077, 92.8, 11.9, 35.6, 20.8, 7.2 +3.5200000000000005,3.52,a-vale-i1,2020-21,Boston-Donald Mckay,00350080, 95.7, 7.1, 20.8, 11.2, 0.9 +0.7200000000000003,1,a-vale-i1,2020-21,Boston-Dr. William Henderson Upper,00350426, 94.3, 9.5, 29.9, 18.2, 4.9 +-0.7599999999999995,1,a-vale-i1,2020-21,Boston-Joseph P Manning,00350184, 92.3, 12.7, 33.7, 21.9, 2.8 +2.72,2.72,a-vale-i1,2020-21,Boston-Joyce Kilmer,00350190, 94.5, 9.1, 20.6, 13.2, 1.9 +-17.080000000000002,1,a-vale-i1,2020-21,Boston-The English High,00350535, 75.2, 39.4, 72.2, 62.7, 10.4 +-17.36,1,a-vale-i1,2020-21,Boston-Madison Park High,00350537, 76.3, 38.8, 73.2, 63.4, 22.2 +-7.959999999999999,1,a-vale-i1,2020-21,Boston-Fenway High School,00350540, 89.3, 17.9, 52.3, 39.9, 18.9 +-19.080000000000002,1,a-vale-i1,2020-21,Boston-Another Course To College,00350541, 74.1, 41.5, 77.0, 67.7, 0.0 +4.0,4.0,a-vale-i1,2020-21,Boston-New Mission High School,00350542, 95.9, 6.8, 16.1, 10.0, 0.0 +-30.68,1,a-vale-i1,2020-21,Boston-Greater Egleston Community High School,00350543, 36.5, 91.6, 96.7, 96.7, 62.0 +4.4,4.4,a-vale-i1,2020-21,Boston-Boston Latin Academy,00350545, 96.3, 6.3, 17.2, 9.0, 1.3 +-4.880000000000001,1,a-vale-i1,2020-21,Boston-Boston Arts Academy,00350546, 90.0, 16.8, 50.0, 32.2, 10.8 +-20.360000000000003,1,a-vale-i1,2020-21,Boston-Boston Adult Academy,00350548, 62.3, 55.8, 78.6, 70.9, 51.1 +-8.88,1,a-vale-i1,2020-21,Boston-Margarita Muniz Academy,00350549, 87.9, 20.2, 57.5, 42.2, 6.7 +-0.8799999999999997,1,a-vale-i1,2020-21,Boston-Harvard-Kent,00350200, 92.4, 12.6, 34.2, 22.2, 5.4 -2.0400000000000005,1,a-vale-i1,2020-21,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 92.4, 12.8, 38.7, 25.1, 2.5 -31.560000000000002,1,a-vale-i1,2020-21,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 33.4, 99.3, 98.6, 98.9, 0.0 -10.48,1,a-vale-i1,2020-21,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 85.6, 24.1, 58.6, 46.2, 9.8 -1.9200000000000004,1,a-vale-i1,2020-21,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 91.8, 14.3, 37.1, 24.8, 0.0 -2.0799999999999996,1,a-vale-i1,2020-21,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 91.8, 13.6, 40.3, 25.2, 40.3 +-1.5200000000000002,1,a-vale-i1,2020-21,Bourne-Bournedale Elementary School,00360005, 93.0, 10.8, 41.0, 23.8, 8.7 -0.6400000000000006,1,a-vale-i1,2020-21,Bourne-Bourne High School,00360505, 89.7, 16.9, 33.1, 21.6, 25.8 0.44000000000000056,1,a-vale-i1,2020-21,Bourne-Bourne Intermediate School,00360030, 94.3, 9.2, 31.7, 18.9, 0.5 --1.5200000000000002,1,a-vale-i1,2020-21,Bourne-Bournedale Elementary School,00360005, 93.0, 10.8, 41.0, 23.8, 8.7 -4.68,1,a-vale-i1,2020-21,Bourne-Bourne Middle School,00360325, 91.4, 14.1, 46.0, 31.7, 32.5 7.2,5,a-vale-i1,2020-21,Boxford-Harry Lee Cole,00380005, 97.6, 3.9, 8.0, 2.0, 3.7 7.0,5,a-vale-i1,2020-21,Boxford-Spofford Pond,00380013, 97.7, 3.7, 9.4, 2.5, 4.6 -3.44,3.44,a-vale-i1,2020-21,Braintree-Braintree High,00400505, 95.3, 7.7, 24.7, 11.4, 0.0 -6.44,5,a-vale-i1,2020-21,Braintree-Hollis,00400005, 97.8, 3.7, 9.4, 3.9, 0.0 -3.4799999999999995,3.48,a-vale-i1,2020-21,Braintree-Monatiquot Kindergarten Center,00400009, 95.7, 6.9, 19.9, 11.3, 0.0 -7.08,5,a-vale-i1,2020-21,Braintree-Highlands,00400015, 97.9, 3.4, 8.5, 2.3, 0.0 -5.76,5,a-vale-i1,2020-21,Braintree-Mary E Flaherty School,00400020, 97.0, 4.9, 12.8, 5.6, 0.0 -7.5200000000000005,5,a-vale-i1,2020-21,Braintree-Liberty,00400025, 98.2, 3.0, 5.6, 1.2, 0.0 -3.6,3.6,a-vale-i1,2020-21,Braintree-Archie T Morrison,00400033, 96.6, 5.6, 20.4, 11.0, 0.0 5.84,5,a-vale-i1,2020-21,Braintree-Donald Ross,00400050, 97.4, 4.3, 10.3, 5.4, 0.0 0.7599999999999995,1,a-vale-i1,2020-21,Braintree-East Middle School,00400305, 94.7, 8.7, 31.4, 18.1, 0.0 3.0799999999999996,3.08,a-vale-i1,2020-21,Braintree-South Middle School,00400310, 94.9, 8.5, 28.1, 12.3, 0.0 -2.04,2.04,a-vale-i1,2020-21,Brewster-Stony Brook Elementary,00410005, 94.9, 8.5, 34.2, 14.9, 6.3 +3.44,3.44,a-vale-i1,2020-21,Braintree-Braintree High,00400505, 95.3, 7.7, 24.7, 11.4, 0.0 +3.6,3.6,a-vale-i1,2020-21,Braintree-Archie T Morrison,00400033, 96.6, 5.6, 20.4, 11.0, 0.0 +7.08,5,a-vale-i1,2020-21,Braintree-Highlands,00400015, 97.9, 3.4, 8.5, 2.3, 0.0 +6.44,5,a-vale-i1,2020-21,Braintree-Hollis,00400005, 97.8, 3.7, 9.4, 3.9, 0.0 +7.5200000000000005,5,a-vale-i1,2020-21,Braintree-Liberty,00400025, 98.2, 3.0, 5.6, 1.2, 0.0 +5.76,5,a-vale-i1,2020-21,Braintree-Mary E Flaherty School,00400020, 97.0, 4.9, 12.8, 5.6, 0.0 +3.4799999999999995,3.48,a-vale-i1,2020-21,Braintree-Monatiquot Kindergarten Center,00400009, 95.7, 6.9, 19.9, 11.3, 0.0 3.6799999999999997,3.68,a-vale-i1,2020-21,Brewster-Eddy Elementary,00410010, 95.1, 8.5, 33.5, 10.8, 6.1 +2.04,2.04,a-vale-i1,2020-21,Brewster-Stony Brook Elementary,00410005, 94.9, 8.5, 34.2, 14.9, 6.3 0.44000000000000056,1,a-vale-i1,2020-21,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 93.9, 10.3, 37.5, 18.9, 3.2 -4.4399999999999995,4.44,a-vale-i1,2020-21,Bridgewater-Raynham-Raynham Middle School,06250315, 95.7, 7.7, 22.6, 8.9, 0.0 -4.16,4.16,a-vale-i1,2020-21,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 95.3, 8.2, 23.5, 9.6, 0.0 -5.8,5,a-vale-i1,2020-21,Bridgewater-Raynham-Laliberte Elementary School,06250050, 97.2, 4.9, 13.4, 5.5, 0.0 5.5600000000000005,5,a-vale-i1,2020-21,Bridgewater-Raynham-Merrill Elementary School,06250020, 96.9, 5.3, 13.5, 6.1, 0.0 -0.5200000000000002,1,a-vale-i1,2020-21,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.7, 10.6, 37.9, 18.7, 0.0 -1.8399999999999999,1.84,a-vale-i1,2020-21,Bridgewater-Raynham-Therapeutic Day School,06250415, 86.0, 24.8, 38.5, 15.4, 0.0 -5.76,5,a-vale-i1,2020-21,Bridgewater-Raynham-Mitchell Elementary School,06250002, 96.9, 5.2, 15.0, 5.6, 0.0 +5.8,5,a-vale-i1,2020-21,Bridgewater-Raynham-Laliberte Elementary School,06250050, 97.2, 4.9, 13.4, 5.5, 0.0 4.12,4.12,a-vale-i1,2020-21,Bridgewater-Raynham-Williams Intermediate School,06250300, 96.0, 6.6, 21.5, 9.7, 0.0 +4.4399999999999995,4.44,a-vale-i1,2020-21,Bridgewater-Raynham-Raynham Middle School,06250315, 95.7, 7.7, 22.6, 8.9, 0.0 +5.76,5,a-vale-i1,2020-21,Bridgewater-Raynham-Mitchell Elementary School,06250002, 96.9, 5.2, 15.0, 5.6, 0.0 +0.5200000000000002,1,a-vale-i1,2020-21,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.7, 10.6, 37.9, 18.7, 0.0 +4.16,4.16,a-vale-i1,2020-21,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 95.3, 8.2, 23.5, 9.6, 0.0 +1.8399999999999999,1.84,a-vale-i1,2020-21,Bridgewater-Raynham-Therapeutic Day School,06250415, 86.0, 24.8, 38.5, 15.4, 0.0 6.08,5,a-vale-i1,2020-21,Brimfield-Brimfield Elementary,00430005, 97.5, 4.2, 9.2, 4.8, 3.7 5.84,5,a-vale-i1,2020-21,Bristol County Agricultural-Bristol County Agricultural High,09100705, 97.0, 5.1, 14.8, 5.4, 2.7 -1.8400000000000005,1,a-vale-i1,2020-21,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 92.2, 13.1, 46.3, 24.6, 24.1 +-0.7200000000000003,1,a-vale-i1,2020-21,Brockton-Brookfield,00440010, 93.2, 11.2, 34.9, 21.8, 0.0 +-12.64,1,a-vale-i1,2020-21,Brockton-Barrett Russell Early Childhood Center,00440008, 78.5, 27.7, 55.2, 51.6, 0.0 +-0.8,1,a-vale-i1,2020-21,Brockton-Manthala George Jr. School,00440003, 93.6, 10.6, 38.9, 22.0, 0.0 +0.04000000000000057,1,a-vale-i1,2020-21,Brockton-Mary E. Baker School,00440002, 93.6, 10.3, 36.0, 19.9, 0.0 +-3.0,1,a-vale-i1,2020-21,Brockton-Dr W Arnone Community School,00440001, 91.8, 13.3, 41.4, 27.5, 0.0 +-20.880000000000003,1,a-vale-i1,2020-21,Brockton-Edison Academy,00440520, 73.6, 25.7, 72.8, 72.2, 0.0 +-14.8,1,a-vale-i1,2020-21,Brockton-Brockton Champion High School,00440515, 72.9, 39.9, 64.0, 57.0, 0.0 +-5.119999999999999,1,a-vale-i1,2020-21,Brockton-Brockton High,00440505, 90.7, 15.2, 45.7, 32.8, 0.0 +2.3200000000000003,2.32,a-vale-i1,2020-21,Brockton-Joseph F. Plouffe Academy,00440422, 94.9, 8.5, 24.2, 14.2, 0.0 +-0.2,1,a-vale-i1,2020-21,Brockton-Ashfield Middle School,00440421, 93.8, 10.2, 30.9, 20.5, 0.0 +2.12,2.12,a-vale-i1,2020-21,Brockton-West Middle School,00440420, 94.2, 9.6, 23.7, 14.7, 0.0 +3.04,3.04,a-vale-i1,2020-21,Brockton-South Middle School,00440415, 95.3, 7.7, 22.4, 12.4, 0.0 +2.9200000000000004,2.92,a-vale-i1,2020-21,Brockton-North Middle School,00440410, 95.1, 8.1, 28.9, 12.7, 0.0 -0.07999999999999971,1,a-vale-i1,2020-21,Brockton-East Middle School,00440405, 93.5, 10.9, 31.5, 20.2, 0.0 -18.880000000000003,1,a-vale-i1,2020-21,Brockton-Huntington Therapeutic Day School,00440400, 81.7, 28.8, 78.1, 67.2, 0.0 -12.080000000000002,1,a-vale-i1,2020-21,Brockton-Downey,00440110, 85.6, 23.3, 63.9, 50.2, 0.0 @@ -2158,75 +2171,63 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -3.2400000000000007,1,a-vale-i1,2020-21,Brockton-Louis F Angelo Elementary,00440065, 91.9, 13.1, 38.5, 28.1, 0.0 -0.6799999999999997,1,a-vale-i1,2020-21,Brockton-Gilmore Elementary School,00440055, 93.4, 10.6, 34.2, 21.7, 0.0 -0.3200000000000003,1,a-vale-i1,2020-21,Brockton-Hancock,00440045, 93.8, 10.2, 31.8, 20.8, 0.0 -1.0799999999999996,1.08,a-vale-i1,2020-21,Brockton-Edgar B Davis,00440023, 93.8, 10.1, 32.3, 17.3, 0.0 0.24000000000000057,1,a-vale-i1,2020-21,Brockton-John F Kennedy,00440017, 94.1, 9.7, 33.8, 19.4, 0.0 --0.7200000000000003,1,a-vale-i1,2020-21,Brockton-Brookfield,00440010, 93.2, 11.2, 34.9, 21.8, 0.0 --12.64,1,a-vale-i1,2020-21,Brockton-Barrett Russell Early Childhood Center,00440008, 78.5, 27.7, 55.2, 51.6, 0.0 --0.8,1,a-vale-i1,2020-21,Brockton-Manthala George Jr. School,00440003, 93.6, 10.6, 38.9, 22.0, 0.0 -0.04000000000000057,1,a-vale-i1,2020-21,Brockton-Mary E. Baker School,00440002, 93.6, 10.3, 36.0, 19.9, 0.0 -2.9200000000000004,2.92,a-vale-i1,2020-21,Brockton-North Middle School,00440410, 95.1, 8.1, 28.9, 12.7, 0.0 -3.04,3.04,a-vale-i1,2020-21,Brockton-South Middle School,00440415, 95.3, 7.7, 22.4, 12.4, 0.0 -2.12,2.12,a-vale-i1,2020-21,Brockton-West Middle School,00440420, 94.2, 9.6, 23.7, 14.7, 0.0 --0.2,1,a-vale-i1,2020-21,Brockton-Ashfield Middle School,00440421, 93.8, 10.2, 30.9, 20.5, 0.0 -2.3200000000000003,2.32,a-vale-i1,2020-21,Brockton-Joseph F. Plouffe Academy,00440422, 94.9, 8.5, 24.2, 14.2, 0.0 --5.119999999999999,1,a-vale-i1,2020-21,Brockton-Brockton High,00440505, 90.7, 15.2, 45.7, 32.8, 0.0 --14.8,1,a-vale-i1,2020-21,Brockton-Brockton Champion High School,00440515, 72.9, 39.9, 64.0, 57.0, 0.0 --20.880000000000003,1,a-vale-i1,2020-21,Brockton-Edison Academy,00440520, 73.6, 25.7, 72.8, 72.2, 0.0 --3.0,1,a-vale-i1,2020-21,Brockton-Dr W Arnone Community School,00440001, 91.8, 13.3, 41.4, 27.5, 0.0 +1.0799999999999996,1.08,a-vale-i1,2020-21,Brockton-Edgar B Davis,00440023, 93.8, 10.1, 32.3, 17.3, 0.0 3.56,3.56,a-vale-i1,2020-21,Brooke Charter School (District)-Brooke Charter School,04280305, 95.5, 8.0, 22.1, 11.1, 13.6 6.08,5,a-vale-i1,2020-21,Brookfield-Brookfield Elementary,00450005, 97.1, 4.9, 15.9, 4.8, 4.8 -0.8799999999999997,1,a-vale-i1,2020-21,Brookline-Brookline Early Education Program at Beacon,00460001, 93.5, 10.3, 22.2, 22.2, 22.2 +1.0,1.0,a-vale-i1,2020-21,Brookline-Brookline Early Education Program at Putterham,00460002, 94.8, 7.9, 35.0, 17.5, 35.0 +2.72,2.72,a-vale-i1,2020-21,Brookline-Brookline Early Education Program at Clark Road,00460003, 95.3, 7.6, 28.9, 13.2, 28.9 +5.2,5,a-vale-i1,2020-21,Brookline-Edith C Baker,00460005, 96.7, 5.3, 14.6, 7.0, 3.8 +3.7600000000000002,3.76,a-vale-i1,2020-21,Brookline-Florida Ruffin Ridley School,00460015, 96.1, 6.4, 16.5, 10.6, 7.1 +5.5600000000000005,5,a-vale-i1,2020-21,Brookline-Michael Driscoll,00460020, 97.1, 4.7, 13.6, 6.1, 5.3 +5.720000000000001,5,a-vale-i1,2020-21,Brookline-Heath,00460025, 96.9, 5.2, 14.1, 5.7, 4.3 +6.640000000000001,5,a-vale-i1,2020-21,Brookline-Lawrence,00460030, 97.9, 3.4, 6.5, 3.4, 1.0 +4.4799999999999995,4.48,a-vale-i1,2020-21,Brookline-William H Lincoln,00460035, 96.4, 5.9, 17.0, 8.8, 3.2 +5.4799999999999995,5,a-vale-i1,2020-21,Brookline-Pierce,00460040, 97.1, 4.6, 12.0, 6.3, 1.5 +4.92,4.92,a-vale-i1,2020-21,Brookline-John D Runkle,00460045, 96.4, 5.9, 16.3, 7.7, 2.9 7.359999999999999,5,a-vale-i1,2020-21,Brookline-Brookline High,00460505, 98.8, 2.0, 2.5, 1.6, 0.1 -4.640000000000001,1,a-vale-i1,2020-21,Brookline-The Lynch Center,00460060, 90.8, 15.1, 52.6, 31.6, 52.6 -4.92,4.92,a-vale-i1,2020-21,Brookline-John D Runkle,00460045, 96.4, 5.9, 16.3, 7.7, 2.9 -5.4799999999999995,5,a-vale-i1,2020-21,Brookline-Pierce,00460040, 97.1, 4.6, 12.0, 6.3, 1.5 -4.4799999999999995,4.48,a-vale-i1,2020-21,Brookline-William H Lincoln,00460035, 96.4, 5.9, 17.0, 8.8, 3.2 -1.0,1.0,a-vale-i1,2020-21,Brookline-Brookline Early Education Program at Putterham,00460002, 94.8, 7.9, 35.0, 17.5, 35.0 -5.720000000000001,5,a-vale-i1,2020-21,Brookline-Heath,00460025, 96.9, 5.2, 14.1, 5.7, 4.3 -5.5600000000000005,5,a-vale-i1,2020-21,Brookline-Michael Driscoll,00460020, 97.1, 4.7, 13.6, 6.1, 5.3 -3.7600000000000002,3.76,a-vale-i1,2020-21,Brookline-Florida Ruffin Ridley School,00460015, 96.1, 6.4, 16.5, 10.6, 7.1 -5.2,5,a-vale-i1,2020-21,Brookline-Edith C Baker,00460005, 96.7, 5.3, 14.6, 7.0, 3.8 -2.72,2.72,a-vale-i1,2020-21,Brookline-Brookline Early Education Program at Clark Road,00460003, 95.3, 7.6, 28.9, 13.2, 28.9 -6.640000000000001,5,a-vale-i1,2020-21,Brookline-Lawrence,00460030, 97.9, 3.4, 6.5, 3.4, 1.0 -5.16,5,a-vale-i1,2020-21,Burlington-Marshall Simonds Middle,00480303, 96.5, 5.8, 16.9, 7.1, 1.2 -3.04,3.04,a-vale-i1,2020-21,Burlington-Burlington High,00480505, 95.1, 8.0, 21.4, 12.4, 5.2 6.76,5,a-vale-i1,2020-21,Burlington-Fox Hill,00480007, 97.3, 4.4, 12.8, 3.1, 2.4 -6.0,5,a-vale-i1,2020-21,Burlington-Pine Glen Elementary,00480020, 97.0, 5.0, 15.5, 5.0, 1.3 -4.4,4.4,a-vale-i1,2020-21,Burlington-Francis Wyman Elementary,00480035, 96.3, 6.1, 18.6, 9.0, 3.5 4.68,4.68,a-vale-i1,2020-21,Burlington-Memorial,00480015, 96.4, 5.9, 20.6, 8.3, 4.5 -4.24,4.24,a-vale-i1,2020-21,Cambridge-Maria L. Baldwin,00490005, 95.4, 7.7, 18.3, 9.4, 0.6 -5.6,5,a-vale-i1,2020-21,Cambridge-Amigos School,00490006, 97.2, 4.7, 12.1, 6.0, 1.0 +3.04,3.04,a-vale-i1,2020-21,Burlington-Burlington High,00480505, 95.1, 8.0, 21.4, 12.4, 5.2 +4.4,4.4,a-vale-i1,2020-21,Burlington-Francis Wyman Elementary,00480035, 96.3, 6.1, 18.6, 9.0, 3.5 +5.16,5,a-vale-i1,2020-21,Burlington-Marshall Simonds Middle,00480303, 96.5, 5.8, 16.9, 7.1, 1.2 +6.0,5,a-vale-i1,2020-21,Burlington-Pine Glen Elementary,00480020, 97.0, 5.0, 15.5, 5.0, 1.3 +3.4799999999999995,3.48,a-vale-i1,2020-21,Cambridge-Fletcher/Maynard Academy,00490090, 95.9, 6.8, 20.9, 11.3, 3.2 +3.8,3.8,a-vale-i1,2020-21,Cambridge-John M Tobin,00490065, 95.5, 7.4, 17.2, 10.5, 2.2 1.8,1.8,a-vale-i1,2020-21,Cambridge-Cambridge Rindge and Latin,00490506, 94.6, 8.7, 24.8, 15.5, 2.3 1.9600000000000002,1.96,a-vale-i1,2020-21,Cambridge-Vassal Lane Upper School,00490320, 94.5, 9.1, 24.2, 15.1, 4.0 4.2,4.2,a-vale-i1,2020-21,Cambridge-Rindge Avenue Upper School,00490315, 96.5, 5.6, 14.9, 9.5, 2.5 1.4,1.4,a-vale-i1,2020-21,Cambridge-Putnam Avenue Upper School,00490310, 94.5, 9.2, 31.2, 16.5, 5.3 0.9599999999999994,1,a-vale-i1,2020-21,Cambridge-Cambridge Street Upper School,00490305, 94.2, 9.7, 29.2, 17.6, 2.0 -3.4799999999999995,3.48,a-vale-i1,2020-21,Cambridge-Fletcher/Maynard Academy,00490090, 95.9, 6.8, 20.9, 11.3, 3.2 -6.08,5,a-vale-i1,2020-21,Cambridge-Graham and Parks,00490080, 97.6, 4.0, 10.6, 4.8, 0.3 -3.8,3.8,a-vale-i1,2020-21,Cambridge-John M Tobin,00490065, 95.5, 7.4, 17.2, 10.5, 2.2 -4.4799999999999995,4.48,a-vale-i1,2020-21,Cambridge-Peabody,00490050, 95.9, 6.8, 14.7, 8.8, 3.6 -3.5200000000000005,3.52,a-vale-i1,2020-21,Cambridge-Morse,00490045, 95.4, 7.4, 17.8, 11.2, 2.2 +4.24,4.24,a-vale-i1,2020-21,Cambridge-Maria L. Baldwin,00490005, 95.4, 7.7, 18.3, 9.4, 0.6 +5.6,5,a-vale-i1,2020-21,Cambridge-Amigos School,00490006, 97.2, 4.7, 12.1, 6.0, 1.0 5.4,5,a-vale-i1,2020-21,Cambridge-Cambridgeport,00490007, 96.6, 5.6, 12.9, 6.5, 1.8 4.96,4.96,a-vale-i1,2020-21,Cambridge-Haggerty,00490020, 96.2, 6.2, 15.3, 7.6, 2.8 5.84,5,a-vale-i1,2020-21,Cambridge-Martin Luther King Jr.,00490030, 97.0, 5.0, 12.7, 5.4, 1.3 2.72,2.72,a-vale-i1,2020-21,Cambridge-King Open,00490035, 94.5, 9.2, 26.1, 13.2, 3.9 -1.0,1,a-vale-i1,2020-21,Cambridge-Kennedy-Longfellow,00490040, 93.0, 10.7, 33.6, 22.5, 5.7 -5.6,5,a-vale-i1,2020-21,Canton-Lt Peter M Hansen,00500012, 97.1, 4.8, 13.6, 6.0, 5.2 -6.16,5,a-vale-i1,2020-21,Canton-Dean S Luce,00500020, 97.5, 4.1, 10.7, 4.6, 0.6 -6.12,5,a-vale-i1,2020-21,Canton-John F Kennedy,00500017, 97.3, 4.6, 11.9, 4.7, 1.3 -1.0400000000000005,1.04,a-vale-i1,2020-21,Canton-Rodman Early Childhood Center,00500010, 93.7, 6.7, 23.9, 17.4, 0.0 -0.6400000000000006,1,a-vale-i1,2020-21,Canton-Canton High,00500505, 93.6, 10.8, 32.3, 18.4, 4.8 +3.5200000000000005,3.52,a-vale-i1,2020-21,Cambridge-Morse,00490045, 95.4, 7.4, 17.8, 11.2, 2.2 +4.4799999999999995,4.48,a-vale-i1,2020-21,Cambridge-Peabody,00490050, 95.9, 6.8, 14.7, 8.8, 3.6 +6.08,5,a-vale-i1,2020-21,Cambridge-Graham and Parks,00490080, 97.6, 4.0, 10.6, 4.8, 0.3 3.5200000000000005,3.52,a-vale-i1,2020-21,Canton-Wm H Galvin Middle,00500305, 95.8, 7.1, 20.0, 11.2, 2.3 +0.6400000000000006,1,a-vale-i1,2020-21,Canton-Canton High,00500505, 93.6, 10.8, 32.3, 18.4, 4.8 +6.12,5,a-vale-i1,2020-21,Canton-John F Kennedy,00500017, 97.3, 4.6, 11.9, 4.7, 1.3 +6.16,5,a-vale-i1,2020-21,Canton-Dean S Luce,00500020, 97.5, 4.1, 10.7, 4.6, 0.6 +5.6,5,a-vale-i1,2020-21,Canton-Lt Peter M Hansen,00500012, 97.1, 4.8, 13.6, 6.0, 5.2 +1.0400000000000005,1.04,a-vale-i1,2020-21,Canton-Rodman Early Childhood Center,00500010, 93.7, 6.7, 23.9, 17.4, 0.0 1.5599999999999994,1.56,a-vale-i1,2020-21,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 93.6, 10.9, 34.6, 16.1, 0.0 -8.12,1,a-vale-i1,2020-21,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 89.0, 18.3, 62.8, 40.3, 41.0 7.0,5,a-vale-i1,2020-21,Carlisle-Carlisle School,00510025, 97.7, 4.0, 11.3, 2.5, 0.8 4.2,4.2,a-vale-i1,2020-21,Carver-Carver Elementary School,00520015, 95.5, 7.5, 25.8, 9.5, 5.5 -5.280000000000001,1,a-vale-i1,2020-21,Carver-Carver Middle/High School,00520405, 89.4, 17.6, 54.1, 33.2, 14.5 -1.5200000000000002,1.52,a-vale-i1,2020-21,Central Berkshire-Becket Washington School,06350005, 94.7, 8.6, 30.5, 16.2, 0.0 -3.8,3.8,a-vale-i1,2020-21,Central Berkshire-Craneville,06350025, 95.6, 7.2, 23.0, 10.5, 0.0 3.4,3.4,a-vale-i1,2020-21,Central Berkshire-Wahconah Regional High,06350505, 95.9, 6.9, 21.2, 11.5, 0.0 0.4,1,a-vale-i1,2020-21,Central Berkshire-Nessacus Regional Middle School,06350305, 94.2, 9.6, 32.6, 19.0, 0.0 4.84,4.84,a-vale-i1,2020-21,Central Berkshire-Kittredge,06350035, 96.9, 5.0, 15.8, 7.9, 0.0 +1.5200000000000002,1.52,a-vale-i1,2020-21,Central Berkshire-Becket Washington School,06350005, 94.7, 8.6, 30.5, 16.2, 0.0 +3.8,3.8,a-vale-i1,2020-21,Central Berkshire-Craneville,06350025, 95.6, 7.2, 23.0, 10.5, 0.0 +-3.3200000000000003,1,a-vale-i1,2020-21,Chelmsford-Community Education Center,00560001, 90.5, 13.3, 41.5, 28.3, 28.3 7.0,5,a-vale-i1,2020-21,Chelmsford-Center Elementary School,00560005, 97.9, 3.5, 6.2, 2.5, 2.3 7.279999999999999,5,a-vale-i1,2020-21,Chelmsford-South Row,00560015, 98.3, 2.8, 6.9, 1.8, 0.7 5.4799999999999995,5,a-vale-i1,2020-21,Chelmsford-Charles D Harrington,00560025, 97.3, 4.4, 11.9, 6.3, 2.4 @@ -2234,312 +2235,309 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.32,4.32,a-vale-i1,2020-21,Chelmsford-Col Moses Parker School,00560305, 96.3, 6.3, 18.0, 9.2, 2.5 5.76,5,a-vale-i1,2020-21,Chelmsford-McCarthy Middle School,00560310, 97.3, 4.5, 10.4, 5.6, 1.8 3.6399999999999997,3.64,a-vale-i1,2020-21,Chelmsford-Chelmsford High,00560505, 95.4, 7.8, 19.2, 10.9, 3.9 --3.3200000000000003,1,a-vale-i1,2020-21,Chelmsford-Community Education Center,00560001, 90.5, 13.3, 41.5, 28.3, 28.3 +-2.3200000000000003,1,a-vale-i1,2020-21,Chelsea-Eugene Wright Science and Technology Academy,00570045, 91.8, 13.5, 36.2, 25.8, 4.7 +-3.0799999999999996,1,a-vale-i1,2020-21,Chelsea-Clark Avenue School,00570050, 92.1, 13.1, 41.5, 27.7, 2.4 +-5.24,1,a-vale-i1,2020-21,Chelsea-Joseph A. Browne School,00570055, 89.9, 16.3, 42.8, 33.1, 3.9 +-7.56,1,a-vale-i1,2020-21,Chelsea-Chelsea High,00570505, 88.4, 18.6, 49.6, 38.9, 5.8 +-32.0,1,a-vale-i1,2020-21,Chelsea-Chelsea Opportunity Academy,00570515, 29.1, 112.6, 100.0, 100.0, 0.0 -1.4400000000000006,1,a-vale-i1,2020-21,Chelsea-Shurtleff Early Childhood,00570003, 92.7, 10.8, 38.9, 23.6, 4.8 -0.2,1,a-vale-i1,2020-21,Chelsea-William A Berkowitz Elementary,00570025, 93.9, 9.9, 36.1, 20.5, 3.2 3.04,3.04,a-vale-i1,2020-21,Chelsea-Edgar A Hooks Elementary,00570030, 95.5, 7.4, 25.3, 12.4, 2.0 5.720000000000001,5,a-vale-i1,2020-21,Chelsea-George F. Kelly Elementary,00570035, 96.9, 5.3, 16.7, 5.7, 1.1 -1.0,1,a-vale-i1,2020-21,Chelsea-Frank M Sokolowski Elementary,00570040, 93.4, 10.5, 38.3, 22.5, 5.0 --2.3200000000000003,1,a-vale-i1,2020-21,Chelsea-Eugene Wright Science and Technology Academy,00570045, 91.8, 13.5, 36.2, 25.8, 4.7 --3.0799999999999996,1,a-vale-i1,2020-21,Chelsea-Clark Avenue School,00570050, 92.1, 13.1, 41.5, 27.7, 2.4 --32.0,1,a-vale-i1,2020-21,Chelsea-Chelsea Opportunity Academy,00570515, 29.1, 112.6, 100.0, 100.0, 0.0 --5.24,1,a-vale-i1,2020-21,Chelsea-Joseph A. Browne School,00570055, 89.9, 16.3, 42.8, 33.1, 3.9 --7.56,1,a-vale-i1,2020-21,Chelsea-Chelsea High,00570505, 88.4, 18.6, 49.6, 38.9, 5.8 6.640000000000001,5,a-vale-i1,2020-21,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 96.9, 5.0, 15.3, 3.4, 0.0 +0.0,1,a-vale-i1,2020-21,Chicopee-Bellamy Middle,00610305, 93.2, 11.3, 36.4, 20.0, 6.6 +-6.959999999999999,1,a-vale-i1,2020-21,Chicopee-Belcher,00610010, 90.0, 15.9, 56.8, 37.4, 26.9 +-1.9599999999999995,1,a-vale-i1,2020-21,Chicopee-Bowe,00610015, 92.7, 12.0, 42.0, 24.9, 6.8 +4.64,4.64,a-vale-i1,2020-21,Chicopee-Bowie,00610020, 96.1, 6.5, 24.9, 8.4, 7.7 +-25.76,1,a-vale-i1,2020-21,Chicopee-Chicopee Academy,00610021, 63.7, 50.7, 89.1, 84.4, 76.6 +-4.959999999999999,1,a-vale-i1,2020-21,Chicopee-Dupont Middle,00610310, 89.9, 16.5, 45.8, 32.4, 16.9 -10.6,1,a-vale-i1,2020-21,Chicopee-Chicopee High,00610505, 83.5, 26.4, 57.8, 46.5, 17.1 -3.2,1,a-vale-i1,2020-21,Chicopee-Chicopee Comprehensive High School,00610510, 91.0, 14.7, 42.6, 28.0, 8.4 -0.0,1,a-vale-i1,2020-21,Chicopee-Bellamy Middle,00610305, 93.2, 11.3, 36.4, 20.0, 6.6 +-7.280000000000001,1,a-vale-i1,2020-21,Chicopee-Szetela Early Childhood Center,00610001, 86.9, 18.4, 52.7, 38.2, 10.3 +1.8799999999999997,1.88,a-vale-i1,2020-21,Chicopee-Barry,00610003, 94.4, 9.2, 30.3, 15.3, 9.1 -1.3599999999999994,1,a-vale-i1,2020-21,Chicopee-Gen John J Stefanik,00610090, 93.0, 11.4, 45.7, 23.4, 9.7 2.28,2.28,a-vale-i1,2020-21,Chicopee-Streiber Memorial School,00610065, 94.8, 8.6, 29.4, 14.3, 6.7 -3.9599999999999995,1,a-vale-i1,2020-21,Chicopee-Fairview Elementary,00610050, 91.8, 13.2, 49.8, 29.9, 12.9 1.9200000000000004,1.92,a-vale-i1,2020-21,Chicopee-Lambert-Lavoie,00610040, 95.0, 8.2, 26.1, 15.2, 5.8 -0.12000000000000029,1,a-vale-i1,2020-21,Chicopee-Litwin,00610022, 93.8, 10.1, 39.2, 20.3, 9.9 --25.76,1,a-vale-i1,2020-21,Chicopee-Chicopee Academy,00610021, 63.7, 50.7, 89.1, 84.4, 76.6 -4.64,4.64,a-vale-i1,2020-21,Chicopee-Bowie,00610020, 96.1, 6.5, 24.9, 8.4, 7.7 --1.9599999999999995,1,a-vale-i1,2020-21,Chicopee-Bowe,00610015, 92.7, 12.0, 42.0, 24.9, 6.8 --6.959999999999999,1,a-vale-i1,2020-21,Chicopee-Belcher,00610010, 90.0, 15.9, 56.8, 37.4, 26.9 -1.8799999999999997,1.88,a-vale-i1,2020-21,Chicopee-Barry,00610003, 94.4, 9.2, 30.3, 15.3, 9.1 --7.280000000000001,1,a-vale-i1,2020-21,Chicopee-Szetela Early Childhood Center,00610001, 86.9, 18.4, 52.7, 38.2, 10.3 --4.959999999999999,1,a-vale-i1,2020-21,Chicopee-Dupont Middle,00610310, 89.9, 16.5, 45.8, 32.4, 16.9 1.4400000000000006,1.44,a-vale-i1,2020-21,Christa McAuliffe Charter Public (District)-Christa McAuliffe Charter Public School,04180305, 94.4, 9.6, 29.9, 16.4, 1.0 -12.2,1,a-vale-i1,2020-21,City on a Hill Charter Public School Circuit Street (District)-City on a Hill Charter Public School Circuit Street,04370505, 81.6, 30.5, 68.9, 50.5, 0.3 5.720000000000001,5,a-vale-i1,2020-21,Clarksburg-Clarksburg Elementary,00630010, 97.0, 5.0, 13.9, 5.7, 2.1 -1.7200000000000002,1.72,a-vale-i1,2020-21,Clinton-Clinton Elementary,00640050, 94.7, 8.7, 27.6, 15.7, 0.0 -4.880000000000001,1,a-vale-i1,2020-21,Clinton-Clinton Middle School,00640305, 90.5, 15.7, 45.4, 32.2, 0.0 +1.7200000000000002,1.72,a-vale-i1,2020-21,Clinton-Clinton Elementary,00640050, 94.7, 8.7, 27.6, 15.7, 0.0 -7.040000000000001,1,a-vale-i1,2020-21,Clinton-Clinton Senior High,00640505, 88.4, 18.8, 55.1, 37.6, 0.0 -1.2799999999999998,1,a-vale-i1,2020-21,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 91.6, 14.3, 47.7, 23.2, 30.8 4.64,4.64,a-vale-i1,2020-21,Cohasset-Cohasset Middle School,00650305, 96.1, 6.5, 21.2, 8.4, 7.3 6.0,5,a-vale-i1,2020-21,Cohasset-Joseph Osgood,00650010, 96.6, 5.6, 17.5, 5.0, 12.5 -2.16,2.16,a-vale-i1,2020-21,Cohasset-Cohasset High School,00650505, 94.6, 8.9, 35.4, 14.6, 11.1 6.959999999999999,5,a-vale-i1,2020-21,Cohasset-Deer Hill,00650005, 97.1, 4.9, 12.8, 2.6, 2.9 +2.16,2.16,a-vale-i1,2020-21,Cohasset-Cohasset High School,00650505, 94.6, 8.9, 35.4, 14.6, 11.1 6.720000000000001,5,a-vale-i1,2020-21,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 98.5, 2.4, 6.0, 3.2, 8.3 5.04,5,a-vale-i1,2020-21,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 96.6, 5.8, 13.9, 7.4, 0.0 3.44,3.44,a-vale-i1,2020-21,Community Day Charter Public School - Gateway (District)-Community Day Charter Public School - Gateway,04260205, 95.5, 7.8, 25.6, 11.4, 0.0 4.8,4.8,a-vale-i1,2020-21,Community Day Charter Public School - Prospect (District)-Community Day Charter Public School - Prospect,04400205, 96.4, 6.5, 22.0, 8.0, 0.0 2.96,2.96,a-vale-i1,2020-21,Community Day Charter Public School - R. Kingman Webster (District)-Community Day Charter Public School - R. Kingman Webster,04310205, 95.3, 8.4, 29.7, 12.6, 0.0 5.720000000000001,5,a-vale-i1,2020-21,Concord-Willard,00670030, 96.5, 5.8, 23.4, 5.7, 0.7 +1.1599999999999995,1.16,a-vale-i1,2020-21,Concord-Alcott,00670005, 94.2, 9.6, 39.5, 17.1, 3.5 3.28,3.28,a-vale-i1,2020-21,Concord-Concord Middle,00670305, 95.1, 8.3, 21.7, 11.8, 2.3 6.32,5,a-vale-i1,2020-21,Concord-Thoreau,00670020, 96.5, 5.7, 19.8, 4.2, 0.9 -1.1599999999999995,1.16,a-vale-i1,2020-21,Concord-Alcott,00670005, 94.2, 9.6, 39.5, 17.1, 3.5 6.4,5,a-vale-i1,2020-21,Concord-Carlisle-Concord Carlisle High,06400505, 97.8, 3.7, 7.9, 4.0, 1.4 -0.12000000000000029,1,a-vale-i1,2020-21,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 93.3, 11.0, 36.5, 20.3, 5.2 3.4,3.4,a-vale-i1,2020-21,Conway-Conway Grammar,00680005, 95.8, 6.9, 20.8, 11.5, 3.1 +5.5600000000000005,5,a-vale-i1,2020-21,Danvers-Willis E Thorpe,00710045, 96.4, 5.9, 16.4, 6.1, 0.0 +3.3600000000000003,3.36,a-vale-i1,2020-21,Danvers-Holten Richmond Middle School,00710305, 95.8, 7.0, 19.1, 11.6, 0.0 5.279999999999999,5,a-vale-i1,2020-21,Danvers-Riverside,00710030, 96.4, 5.9, 16.6, 6.8, 0.0 5.4399999999999995,5,a-vale-i1,2020-21,Danvers-Great Oak,00710015, 96.4, 6.0, 19.1, 6.4, 0.0 3.04,3.04,a-vale-i1,2020-21,Danvers-Highlands,00710010, 95.0, 8.3, 29.0, 12.4, 0.0 5.68,5,a-vale-i1,2020-21,Danvers-Ivan G Smith,00710032, 96.8, 5.4, 13.2, 5.8, 0.0 -5.5600000000000005,5,a-vale-i1,2020-21,Danvers-Willis E Thorpe,00710045, 96.4, 5.9, 16.4, 6.1, 0.0 -3.3600000000000003,3.36,a-vale-i1,2020-21,Danvers-Holten Richmond Middle School,00710305, 95.8, 7.0, 19.1, 11.6, 0.0 -1.3200000000000003,1,a-vale-i1,2020-21,Danvers-Danvers High,00710505, 92.1, 13.2, 40.7, 23.3, 3.9 -6.0,5,a-vale-i1,2020-21,Dartmouth-George H Potter,00720030, 96.7, 5.9, 17.5, 5.0, 11.4 -5.279999999999999,5,a-vale-i1,2020-21,Dartmouth-Joseph Demello,00720015, 96.5, 6.3, 22.8, 6.8, 12.3 -2.72,2.72,a-vale-i1,2020-21,Dartmouth-Andrew B. Cushman School,00720005, 94.9, 9.0, 36.0, 13.2, 30.1 -5.76,5,a-vale-i1,2020-21,Dartmouth-James M. Quinn School,00720040, 96.7, 5.9, 18.5, 5.6, 13.9 -0.8,1,a-vale-i1,2020-21,Dartmouth-Dartmouth High,00720505, 92.4, 12.7, 39.2, 22.0, 35.4 +2.72,2.72,a-vale-i1,2020-21,Dartmouth-Andrew B. Cushman School,00720005, 94.9, 9.0, 36.0, 13.2, 30.1 +5.279999999999999,5,a-vale-i1,2020-21,Dartmouth-Joseph Demello,00720015, 96.5, 6.3, 22.8, 6.8, 12.3 +6.0,5,a-vale-i1,2020-21,Dartmouth-George H Potter,00720030, 96.7, 5.9, 17.5, 5.0, 11.4 +5.76,5,a-vale-i1,2020-21,Dartmouth-James M. Quinn School,00720040, 96.7, 5.9, 18.5, 5.6, 13.9 -3.1599999999999993,1,a-vale-i1,2020-21,Dartmouth-Dartmouth Middle,00720050, 92.0, 13.5, 45.0, 27.9, 37.7 +-3.3200000000000003,1,a-vale-i1,2020-21,Dedham-Dedham High,00730505, 90.5, 15.8, 46.5, 28.3, 6.4 2.0,2.0,a-vale-i1,2020-21,Dedham-Early Childhood Center,00730005, 94.6, 8.2, 25.8, 15.0, 0.0 3.0,3.0,a-vale-i1,2020-21,Dedham-Avery,00730010, 95.8, 7.0, 24.6, 12.5, 0.0 7.159999999999999,5,a-vale-i1,2020-21,Dedham-Greenlodge,00730025, 97.9, 3.5, 6.7, 2.1, 0.0 5.76,5,a-vale-i1,2020-21,Dedham-Oakdale,00730030, 96.9, 5.2, 12.0, 5.6, 0.0 5.92,5,a-vale-i1,2020-21,Dedham-Riverdale,00730045, 97.1, 4.8, 14.0, 5.2, 0.0 --3.3200000000000003,1,a-vale-i1,2020-21,Dedham-Dedham High,00730505, 90.5, 15.8, 46.5, 28.3, 6.4 -3.12,1,a-vale-i1,2020-21,Dedham-Dedham Middle School,00730305, 90.6, 15.7, 38.4, 27.8, 18.2 5.0,5.0,a-vale-i1,2020-21,Deerfield-Deerfield Elementary,00740015, 96.3, 6.2, 17.1, 7.5, 0.9 -1.0799999999999996,1.08,a-vale-i1,2020-21,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 94.5, 9.2, 35.4, 17.3, 16.9 --4.880000000000001,1,a-vale-i1,2020-21,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.0, 50.8, 32.2, 7.5 -2.2399999999999998,2.24,a-vale-i1,2020-21,Dennis-Yarmouth-Station Avenue Elementary,06450025, 94.8, 8.6, 30.0, 14.4, 7.7 --4.040000000000001,1,a-vale-i1,2020-21,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 92.4, 11.3, 39.5, 30.1, 11.1 --1.7200000000000002,1,a-vale-i1,2020-21,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.4, 11.7, 40.9, 24.3, 8.3 -2.4400000000000004,1,a-vale-i1,2020-21,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 91.3, 14.4, 36.4, 26.1, 9.0 -1.6,1.6,a-vale-i1,2020-21,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 94.8, 8.6, 24.1, 16.0, 6.6 +-4.880000000000001,1,a-vale-i1,2020-21,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.0, 50.8, 32.2, 7.5 +1.0799999999999996,1.08,a-vale-i1,2020-21,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 94.5, 9.2, 35.4, 17.3, 16.9 +2.2399999999999998,2.24,a-vale-i1,2020-21,Dennis-Yarmouth-Station Avenue Elementary,06450025, 94.8, 8.6, 30.0, 14.4, 7.7 +-1.7200000000000002,1,a-vale-i1,2020-21,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.4, 11.7, 40.9, 24.3, 8.3 +-4.040000000000001,1,a-vale-i1,2020-21,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 92.4, 11.3, 39.5, 30.1, 11.1 1.8,1.8,a-vale-i1,2020-21,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 94.6, 9.2, 31.8, 15.5, 5.7 -2.3200000000000003,2.32,a-vale-i1,2020-21,Dighton-Rehoboth-Dighton Middle School,06500305, 94.2, 9.9, 34.2, 14.2, 3.7 5.24,5,a-vale-i1,2020-21,Dighton-Rehoboth-Palmer River,06500010, 96.3, 6.3, 19.2, 6.9, 7.9 +2.3200000000000003,2.32,a-vale-i1,2020-21,Dighton-Rehoboth-Dighton Middle School,06500305, 94.2, 9.9, 34.2, 14.2, 3.7 5.68,5,a-vale-i1,2020-21,Dighton-Rehoboth-Dighton Elementary,06500005, 96.4, 6.0, 17.0, 5.8, 4.4 +1.6,1.6,a-vale-i1,2020-21,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 94.8, 8.6, 24.1, 16.0, 6.6 5.5600000000000005,5,a-vale-i1,2020-21,Douglas-Douglas Elementary School,00770015, 96.6, 5.6, 12.5, 6.1, 0.8 3.4,3.4,a-vale-i1,2020-21,Douglas-Douglas Primary School,00770005, 96.5, 5.2, 16.0, 11.5, 4.5 0.0,1,a-vale-i1,2020-21,Douglas-Douglas Middle School,00770305, 93.5, 10.8, 35.4, 20.0, 6.1 -12.12,1,a-vale-i1,2020-21,Douglas-Douglas High School,00770505, 86.2, 22.6, 68.3, 50.3, 7.9 6.56,5,a-vale-i1,2020-21,Dover-Chickering,00780005, 96.9, 5.1, 15.3, 3.6, 12.3 -6.08,5,a-vale-i1,2020-21,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 96.5, 6.2, 20.5, 4.8, 2.7 6.44,5,a-vale-i1,2020-21,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 97.7, 3.9, 7.0, 3.9, 2.8 --2.4400000000000004,1,a-vale-i1,2020-21,Dracut-Justus C. Richardson Middle School,00790410, 92.2, 13.0, 44.1, 26.1, 13.3 -1.0799999999999996,1.08,a-vale-i1,2020-21,Dracut-Greenmont Avenue,00790030, 93.8, 10.3, 32.5, 17.3, 7.3 +6.08,5,a-vale-i1,2020-21,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 96.5, 6.2, 20.5, 4.8, 2.7 0.7599999999999995,1,a-vale-i1,2020-21,Dracut-George H. Englesby Elementary School,00790045, 93.9, 10.1, 33.0, 18.1, 12.6 1.8,1.8,a-vale-i1,2020-21,Dracut-Brookside Elementary,00790035, 94.6, 8.8, 29.2, 15.5, 6.5 3.3200000000000003,3.32,a-vale-i1,2020-21,Dracut-Joseph A Campbell Elementary,00790020, 95.5, 7.4, 22.7, 11.7, 10.0 -6.519999999999999,1,a-vale-i1,2020-21,Dracut-Dracut Senior High,00790505, 88.2, 19.3, 51.4, 36.3, 19.0 +-2.4400000000000004,1,a-vale-i1,2020-21,Dracut-Justus C. Richardson Middle School,00790410, 92.2, 13.0, 44.1, 26.1, 13.3 +1.0799999999999996,1.08,a-vale-i1,2020-21,Dracut-Greenmont Avenue,00790030, 93.8, 10.3, 32.5, 17.3, 7.3 -0.07999999999999971,1,a-vale-i1,2020-21,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 93.7, 10.6, 34.8, 20.2, 31.6 +3.44,3.44,a-vale-i1,2020-21,Dudley-Charlton Reg-Dudley Elementary,06580005, 95.4, 7.6, 27.1, 11.4, 15.7 +1.9200000000000004,1.92,a-vale-i1,2020-21,Dudley-Charlton Reg-Mason Road School,06580010, 94.6, 8.5, 30.0, 15.2, 13.2 +4.96,4.96,a-vale-i1,2020-21,Dudley-Charlton Reg-Charlton Elementary,06580020, 96.1, 6.4, 21.1, 7.6, 10.9 +5.4799999999999995,5,a-vale-i1,2020-21,Dudley-Charlton Reg-Heritage School,06580030, 96.7, 5.4, 15.0, 6.3, 3.1 +-2.2,1,a-vale-i1,2020-21,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.8, 13.5, 50.1, 25.5, 13.6 3.72,3.72,a-vale-i1,2020-21,Dudley-Charlton Reg-Charlton Middle School,06580310, 95.6, 7.4, 22.1, 10.7, 5.2 -0.6,1,a-vale-i1,2020-21,Dudley-Charlton Reg-Dudley Middle School,06580305, 93.0, 11.6, 43.1, 21.5, 7.8 -5.4799999999999995,5,a-vale-i1,2020-21,Dudley-Charlton Reg-Heritage School,06580030, 96.7, 5.4, 15.0, 6.3, 3.1 -4.96,4.96,a-vale-i1,2020-21,Dudley-Charlton Reg-Charlton Elementary,06580020, 96.1, 6.4, 21.1, 7.6, 10.9 -1.9200000000000004,1.92,a-vale-i1,2020-21,Dudley-Charlton Reg-Mason Road School,06580010, 94.6, 8.5, 30.0, 15.2, 13.2 -3.44,3.44,a-vale-i1,2020-21,Dudley-Charlton Reg-Dudley Elementary,06580005, 95.4, 7.6, 27.1, 11.4, 15.7 --2.2,1,a-vale-i1,2020-21,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.8, 13.5, 50.1, 25.5, 13.6 -6.68,5,a-vale-i1,2020-21,Duxbury-Duxbury High,00820505, 97.6, 4.1, 7.7, 3.3, 2.9 -6.08,5,a-vale-i1,2020-21,Duxbury-Duxbury Middle,00820305, 96.9, 5.4, 14.6, 4.8, 3.6 -6.279999999999999,5,a-vale-i1,2020-21,Duxbury-Chandler Elementary,00820006, 96.5, 5.9, 16.8, 4.3, 4.8 5.32,5,a-vale-i1,2020-21,Duxbury-Alden School,00820004, 96.1, 6.7, 21.1, 6.7, 4.4 -5.36,5,a-vale-i1,2020-21,East Bridgewater-Gordon W. Mitchell School,00830010, 96.5, 5.7, 17.1, 6.6, 8.3 +6.279999999999999,5,a-vale-i1,2020-21,Duxbury-Chandler Elementary,00820006, 96.5, 5.9, 16.8, 4.3, 4.8 +6.08,5,a-vale-i1,2020-21,Duxbury-Duxbury Middle,00820305, 96.9, 5.4, 14.6, 4.8, 3.6 +6.68,5,a-vale-i1,2020-21,Duxbury-Duxbury High,00820505, 97.6, 4.1, 7.7, 3.3, 2.9 -3.9599999999999995,1,a-vale-i1,2020-21,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 90.9, 14.9, 49.5, 29.9, 22.3 4.2,4.2,a-vale-i1,2020-21,East Bridgewater-Central,00830005, 96.1, 6.4, 20.0, 9.5, 10.5 +5.36,5,a-vale-i1,2020-21,East Bridgewater-Gordon W. Mitchell School,00830010, 96.5, 5.7, 17.1, 6.6, 8.3 5.24,5,a-vale-i1,2020-21,East Longmeadow-Birchland Park,00870305, 96.7, 5.5, 15.6, 6.9, 0.0 -6.16,5,a-vale-i1,2020-21,East Longmeadow-East Longmeadow High,00870505, 97.1, 4.9, 12.2, 4.6, 0.0 6.36,5,a-vale-i1,2020-21,East Longmeadow-Mountain View,00870015, 97.5, 4.3, 8.5, 4.1, 0.0 -5.88,5,a-vale-i1,2020-21,East Longmeadow-Meadow Brook,00870013, 97.0, 4.8, 12.5, 5.3, 0.0 7.32,5,a-vale-i1,2020-21,East Longmeadow-Mapleshade,00870010, 98.0, 3.3, 7.0, 1.7, 0.0 +5.88,5,a-vale-i1,2020-21,East Longmeadow-Meadow Brook,00870013, 97.0, 4.8, 12.5, 5.3, 0.0 +6.16,5,a-vale-i1,2020-21,East Longmeadow-East Longmeadow High,00870505, 97.1, 4.9, 12.2, 4.6, 0.0 1.6799999999999997,1.68,a-vale-i1,2020-21,Eastham-Eastham Elementary,00850005, 94.9, 8.3, 32.0, 15.8, 10.3 -3.2399999999999998,3.24,a-vale-i1,2020-21,Easthampton-White Brook Middle School,00860305, 95.1, 8.1, 20.6, 11.9, 2.2 -3.96,3.96,a-vale-i1,2020-21,Easthampton-Easthampton High,00860505, 95.6, 7.2, 17.1, 10.1, 13.7 -2.9200000000000004,2.92,a-vale-i1,2020-21,Easthampton-Maple,00860010, 95.4, 7.4, 21.4, 12.7, 0.9 -3.9200000000000004,3.92,a-vale-i1,2020-21,Easthampton-Center School,00860005, 96.2, 6.3, 18.9, 10.2, 1.0 0.8799999999999997,1,a-vale-i1,2020-21,Easthampton-Neil A Pepin,00860020, 94.7, 8.5, 28.4, 17.8, 3.0 -5.279999999999999,5,a-vale-i1,2020-21,Easton-Easton Middle School,00880405, 97.1, 4.9, 13.4, 6.8, 1.1 +3.96,3.96,a-vale-i1,2020-21,Easthampton-Easthampton High,00860505, 95.6, 7.2, 17.1, 10.1, 13.7 +3.9200000000000004,3.92,a-vale-i1,2020-21,Easthampton-Center School,00860005, 96.2, 6.3, 18.9, 10.2, 1.0 +2.9200000000000004,2.92,a-vale-i1,2020-21,Easthampton-Maple,00860010, 95.4, 7.4, 21.4, 12.7, 0.9 +3.2399999999999998,3.24,a-vale-i1,2020-21,Easthampton-White Brook Middle School,00860305, 95.1, 8.1, 20.6, 11.9, 2.2 4.08,4.08,a-vale-i1,2020-21,Easton-Oliver Ames High,00880505, 95.9, 6.7, 18.2, 9.8, 2.8 +5.279999999999999,5,a-vale-i1,2020-21,Easton-Easton Middle School,00880405, 97.1, 4.9, 13.4, 6.8, 1.1 +6.279999999999999,5,a-vale-i1,2020-21,Easton-Moreau Hall,00880020, 97.3, 4.3, 14.0, 4.3, 0.5 6.720000000000001,5,a-vale-i1,2020-21,Easton-Richardson Olmsted School,00880025, 97.2, 4.7, 13.5, 3.2, 1.5 5.76,5,a-vale-i1,2020-21,Easton-Parkview Elementary,00880015, 97.1, 4.6, 13.0, 5.6, 1.1 5.24,5,a-vale-i1,2020-21,Easton-Center School,00880003, 97.0, 4.8, 16.9, 6.9, 1.1 -6.279999999999999,5,a-vale-i1,2020-21,Easton-Moreau Hall,00880020, 97.3, 4.3, 14.0, 4.3, 0.5 -1.4799999999999998,1,a-vale-i1,2020-21,Edgartown-Edgartown Elementary,00890005, 93.4, 10.4, 41.6, 23.7, 14.7 -8.52,1,a-vale-i1,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District)-Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 86.6, 22.1, 55.7, 41.3, 24.9 2.2,2.2,a-vale-i1,2020-21,Erving-Erving Elementary,00910030, 95.4, 7.5, 24.8, 14.5, 10.3 4.12,4.12,a-vale-i1,2020-21,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 95.3, 8.1, 29.8, 9.7, 2.9 -0.44000000000000056,1,a-vale-i1,2020-21,Everett-Webster School,00930015, 94.8, 9.1, 29.1, 18.9, 25.4 +-6.159999999999999,1,a-vale-i1,2020-21,Everett-Everett High,00930505, 88.5, 19.2, 48.9, 35.4, 39.7 +0.15999999999999942,1,a-vale-i1,2020-21,Everett-Parlin School,00930058, 94.1, 10.2, 32.6, 19.6, 28.1 +0.4799999999999997,1,a-vale-i1,2020-21,Everett-Lafayette School,00930038, 94.4, 9.7, 31.2, 18.8, 28.1 -1.2,1,a-vale-i1,2020-21,Everett-George Keverian School,00930028, 93.5, 11.0, 35.8, 23.0, 31.6 -18.919999999999998,1,a-vale-i1,2020-21,Everett-Devens School,00930030, 70.3, 49.9, 75.0, 67.3, 73.1 -0.4799999999999997,1,a-vale-i1,2020-21,Everett-Lafayette School,00930038, 94.4, 9.7, 31.2, 18.8, 28.1 -0.15999999999999942,1,a-vale-i1,2020-21,Everett-Parlin School,00930058, 94.1, 10.2, 32.6, 19.6, 28.1 --6.159999999999999,1,a-vale-i1,2020-21,Everett-Everett High,00930505, 88.5, 19.2, 48.9, 35.4, 39.7 --0.4,1,a-vale-i1,2020-21,Everett-Sumner G. Whittier School,00930010, 93.8, 10.4, 35.7, 21.0, 27.7 --3.4799999999999995,1,a-vale-i1,2020-21,Everett-Adams School,00930003, 91.2, 14.2, 41.3, 28.7, 34.0 -2.0,1,a-vale-i1,2020-21,Everett-Webster Extension,00930001, 91.3, 13.5, 31.7, 25.0, 29.3 +-3.4799999999999995,1,a-vale-i1,2020-21,Everett-Adams School,00930003, 91.2, 14.2, 41.3, 28.7, 34.0 +-0.4,1,a-vale-i1,2020-21,Everett-Sumner G. Whittier School,00930010, 93.8, 10.4, 35.7, 21.0, 27.7 0.5599999999999994,1,a-vale-i1,2020-21,Everett-Madeline English School,00930018, 94.3, 9.7, 28.6, 18.6, 25.3 +0.44000000000000056,1,a-vale-i1,2020-21,Everett-Webster School,00930015, 94.8, 9.1, 29.1, 18.9, 25.4 -2.9200000000000004,1,a-vale-i1,2020-21,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 91.7, 14.0, 39.8, 27.3, 18.5 --4.68,1,a-vale-i1,2020-21,Fairhaven-Hastings Middle,00940305, 90.8, 15.3, 51.5, 31.7, 6.8 4.08,4.08,a-vale-i1,2020-21,Fairhaven-Leroy Wood,00940030, 95.2, 7.9, 26.8, 9.8, 4.7 2.88,2.88,a-vale-i1,2020-21,Fairhaven-East Fairhaven,00940010, 95.2, 7.9, 28.2, 12.8, 5.3 -9.76,1,a-vale-i1,2020-21,Fairhaven-Fairhaven High,00940505, 86.4, 22.3, 63.1, 44.4, 13.4 --8.8,1,a-vale-i1,2020-21,Fall River-Henry Lord Community School,00950017, 88.3, 18.8, 59.0, 42.0, 26.7 --26.52,1,a-vale-i1,2020-21,Fall River-Resiliency Preparatory Academy,00950525, 56.7, 62.7, 89.4, 86.3, 30.8 +-4.68,1,a-vale-i1,2020-21,Fairhaven-Hastings Middle,00940305, 90.8, 15.3, 51.5, 31.7, 6.8 +-4.6,1,a-vale-i1,2020-21,Fall River-Letourneau Elementary School,00950013, 90.9, 14.7, 54.3, 31.5, 16.1 +-17.68,1,a-vale-i1,2020-21,Fall River-Stone PK-12 School,00950340, 79.3, 32.7, 76.1, 64.2, 29.9 +-6.119999999999999,1,a-vale-i1,2020-21,Fall River-John J Doran,00950045, 89.9, 16.7, 51.2, 35.3, 18.1 -7.2,1,a-vale-i1,2020-21,Fall River-William S Greene,00950065, 89.1, 17.9, 58.2, 38.0, 19.5 0.15999999999999942,1,a-vale-i1,2020-21,Fall River-Spencer Borden,00950130, 93.4, 10.8, 38.9, 19.6, 10.6 +-26.52,1,a-vale-i1,2020-21,Fall River-Resiliency Preparatory Academy,00950525, 56.7, 62.7, 89.4, 86.3, 30.8 2.72,2.72,a-vale-i1,2020-21,Fall River-James Tansey,00950140, 95.2, 8.0, 29.9, 13.2, 7.1 -4.159999999999999,1,a-vale-i1,2020-21,Fall River-Samuel Watson,00950145, 92.3, 12.1, 52.1, 30.4, 4.9 -8.680000000000001,1,a-vale-i1,2020-21,Fall River-Talbot Innovation School,00950305, 89.2, 17.7, 64.7, 41.7, 20.9 -5.2,1,a-vale-i1,2020-21,Fall River-Morton Middle,00950315, 89.8, 17.0, 55.8, 33.0, 12.7 -8.919999999999998,1,a-vale-i1,2020-21,Fall River-Matthew J Kuss Middle,00950320, 88.0, 20.2, 61.4, 42.3, 15.0 --17.68,1,a-vale-i1,2020-21,Fall River-Stone PK-12 School,00950340, 79.3, 32.7, 76.1, 64.2, 29.9 --18.48,1,a-vale-i1,2020-21,Fall River-B M C Durfee High,00950505, 79.3, 33.9, 78.5, 66.2, 27.0 --4.6,1,a-vale-i1,2020-21,Fall River-Letourneau Elementary School,00950013, 90.9, 14.7, 54.3, 31.5, 16.1 -2.3599999999999994,1,a-vale-i1,2020-21,Fall River-Mary Fonseca Elementary School,00950011, 92.6, 11.7, 47.2, 25.9, 11.3 -5.6800000000000015,1,a-vale-i1,2020-21,Fall River-Carlton M. Viveiros Elementary School,00950009, 90.7, 15.1, 53.8, 34.2, 12.8 -5.56,1,a-vale-i1,2020-21,Fall River-North End Elementary,00950005, 90.5, 15.3, 50.3, 33.9, 21.7 --6.119999999999999,1,a-vale-i1,2020-21,Fall River-John J Doran,00950045, 89.9, 16.7, 51.2, 35.3, 18.1 +-18.48,1,a-vale-i1,2020-21,Fall River-B M C Durfee High,00950505, 79.3, 33.9, 78.5, 66.2, 27.0 +-8.8,1,a-vale-i1,2020-21,Fall River-Henry Lord Community School,00950017, 88.3, 18.8, 59.0, 42.0, 26.7 +-0.4,1,a-vale-i1,2020-21,Falmouth-Lawrence,00960405, 93.6, 10.7, 35.3, 21.0, 28.9 +2.0799999999999996,2.08,a-vale-i1,2020-21,Falmouth-Falmouth High,00960505, 94.4, 9.2, 23.8, 14.8, 19.1 +-0.07999999999999971,1,a-vale-i1,2020-21,Falmouth-East Falmouth Elementary,00960005, 92.8, 11.4, 37.6, 20.2, 35.1 1.4799999999999998,1.48,a-vale-i1,2020-21,Falmouth-Teaticket,00960015, 93.7, 10.1, 31.0, 16.3, 30.6 0.7599999999999995,1,a-vale-i1,2020-21,Falmouth-Mullen-Hall,00960020, 94.1, 9.6, 32.6, 18.1, 29.2 2.8,2.8,a-vale-i1,2020-21,Falmouth-North Falmouth Elementary,00960030, 94.9, 8.6, 30.9, 13.0, 29.0 2.3200000000000003,2.32,a-vale-i1,2020-21,Falmouth-Morse Pond School,00960305, 94.6, 9.0, 30.4, 14.2, 28.6 --0.4,1,a-vale-i1,2020-21,Falmouth-Lawrence,00960405, 93.6, 10.7, 35.3, 21.0, 28.9 -2.0799999999999996,2.08,a-vale-i1,2020-21,Falmouth-Falmouth High,00960505, 94.4, 9.2, 23.8, 14.8, 19.1 --0.07999999999999971,1,a-vale-i1,2020-21,Falmouth-East Falmouth Elementary,00960005, 92.8, 11.4, 37.6, 20.2, 35.1 4.6,4.6,a-vale-i1,2020-21,Farmington River Reg-Farmington River Elementary,06620020, 95.3, 7.6, 31.4, 8.5, 12.7 +-0.8799999999999997,1,a-vale-i1,2020-21,Fitchburg-Memorial Middle School,00970048, 92.7, 11.9, 34.0, 22.2, 1.8 +-7.56,1,a-vale-i1,2020-21,Fitchburg-South Street Elementary,00970060, 88.6, 18.3, 54.9, 38.9, 9.1 +-10.559999999999999,1,a-vale-i1,2020-21,Fitchburg-Arthur M Longsjo Middle School,00970315, 86.3, 22.3, 65.2, 46.4, 8.3 -4.56,1,a-vale-i1,2020-21,Fitchburg-McKay Arts Academy,00970340, 90.7, 14.7, 43.1, 31.4, 7.7 -4.44,1,a-vale-i1,2020-21,Fitchburg-Fitchburg High,00970505, 90.4, 15.7, 45.4, 31.1, 6.9 --10.559999999999999,1,a-vale-i1,2020-21,Fitchburg-Arthur M Longsjo Middle School,00970315, 86.3, 22.3, 65.2, 46.4, 8.3 --7.56,1,a-vale-i1,2020-21,Fitchburg-South Street Elementary,00970060, 88.6, 18.3, 54.9, 38.9, 9.1 --0.8799999999999997,1,a-vale-i1,2020-21,Fitchburg-Memorial Middle School,00970048, 92.7, 11.9, 34.0, 22.2, 1.8 --1.9200000000000004,1,a-vale-i1,2020-21,Fitchburg-Reingold Elementary,00970043, 93.1, 10.8, 38.7, 24.8, 4.9 --4.959999999999999,1,a-vale-i1,2020-21,Fitchburg-Crocker Elementary,00970016, 91.0, 14.4, 45.7, 32.4, 4.5 0.44000000000000056,1,a-vale-i1,2020-21,Fitchburg-Goodrich Academy,00970510, 94.7, 7.3, 28.3, 18.9, 4.4 +-4.959999999999999,1,a-vale-i1,2020-21,Fitchburg-Crocker Elementary,00970016, 91.0, 14.4, 45.7, 32.4, 4.5 +-1.9200000000000004,1,a-vale-i1,2020-21,Fitchburg-Reingold Elementary,00970043, 93.1, 10.8, 38.7, 24.8, 4.9 4.279999999999999,4.28,a-vale-i1,2020-21,Florida-Abbott Memorial,00980005, 95.9, 6.8, 23.3, 9.3, 0.0 -2.8400000000000007,1,a-vale-i1,2020-21,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 91.0, 14.8, 39.8, 27.1, 0.5 --1.0799999999999996,1,a-vale-i1,2020-21,Foxborough-Foxborough High,00990505, 92.5, 12.7, 42.1, 22.7, 0.0 2.6799999999999997,2.68,a-vale-i1,2020-21,Foxborough-Mabelle M Burrell,00990015, 93.8, 10.4, 32.3, 13.3, 0.0 3.56,3.56,a-vale-i1,2020-21,Foxborough-Vincent M Igo Elementary,00990020, 95.9, 6.8, 25.6, 11.1, 0.0 5.4799999999999995,5,a-vale-i1,2020-21,Foxborough-Charles Taylor Elementary,00990050, 96.2, 6.4, 24.3, 6.3, 0.0 -2.5599999999999996,1,a-vale-i1,2020-21,Foxborough-John J Ahern,00990405, 92.1, 13.3, 46.3, 26.4, 0.0 +-1.0799999999999996,1,a-vale-i1,2020-21,Foxborough-Foxborough High,00990505, 92.5, 12.7, 42.1, 22.7, 0.0 6.2,5,a-vale-i1,2020-21,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 97.0, 5.1, 15.0, 4.5, 0.8 --2.8,1,a-vale-i1,2020-21,Framingham-Fuller Middle,01000305, 92.0, 12.8, 38.3, 27.0, 0.2 +-9.76,1,a-vale-i1,2020-21,Framingham-Juniper Hill School,01000001, 84.3, 13.4, 40.3, 44.4, 6.2 +2.96,2.96,a-vale-i1,2020-21,Framingham-Charlotte A Dunning,01000007, 95.5, 7.3, 18.9, 12.6, 3.7 +4.5200000000000005,4.52,a-vale-i1,2020-21,Framingham-Hemenway,01000015, 96.9, 5.1, 13.8, 8.7, 4.3 +0.2,1,a-vale-i1,2020-21,Framingham-Brophy,01000006, 94.4, 8.9, 30.2, 19.5, 5.1 +4.6,4.6,a-vale-i1,2020-21,Framingham-King Elementary School,01000005, 96.7, 5.4, 16.0, 8.5, 3.5 -2.0,1,a-vale-i1,2020-21,Framingham-Framingham High School,01000515, 90.5, 15.7, 33.1, 25.0, 5.9 3.16,3.16,a-vale-i1,2020-21,Framingham-Walsh Middle,01000310, 95.5, 7.5, 20.7, 12.1, 6.3 +-2.8,1,a-vale-i1,2020-21,Framingham-Fuller Middle,01000305, 92.0, 12.8, 38.3, 27.0, 0.2 1.64,1.64,a-vale-i1,2020-21,Framingham-Cameron Middle School,01000302, 94.5, 9.2, 25.3, 15.9, 1.4 -0.4,1,a-vale-i1,2020-21,Framingham-Woodrow Wilson,01000055, 93.8, 9.6, 33.2, 21.0, 4.6 0.0,1,a-vale-i1,2020-21,Framingham-Miriam F McCarthy School,01000050, 94.0, 9.8, 31.7, 20.0, 6.9 0.6799999999999997,1,a-vale-i1,2020-21,Framingham-Mary E Stapleton Elementary,01000045, 94.1, 9.4, 25.4, 18.3, 6.0 4.88,4.88,a-vale-i1,2020-21,Framingham-Potter Road,01000039, 96.3, 6.0, 18.3, 7.8, 1.7 0.4799999999999997,1,a-vale-i1,2020-21,Framingham-Barbieri Elementary,01000035, 94.0, 10.0, 33.5, 18.8, 6.5 -4.5200000000000005,4.52,a-vale-i1,2020-21,Framingham-Hemenway,01000015, 96.9, 5.1, 13.8, 8.7, 4.3 -2.96,2.96,a-vale-i1,2020-21,Framingham-Charlotte A Dunning,01000007, 95.5, 7.3, 18.9, 12.6, 3.7 -0.2,1,a-vale-i1,2020-21,Framingham-Brophy,01000006, 94.4, 8.9, 30.2, 19.5, 5.1 -4.6,4.6,a-vale-i1,2020-21,Framingham-King Elementary School,01000005, 96.7, 5.4, 16.0, 8.5, 3.5 --9.76,1,a-vale-i1,2020-21,Framingham-Juniper Hill School,01000001, 84.3, 13.4, 40.3, 44.4, 6.2 2.12,2.12,a-vale-i1,2020-21,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 94.1, 9.7, 31.6, 14.7, 0.0 +7.24,5,a-vale-i1,2020-21,Franklin-Parmenter,01010032, 97.8, 3.7, 7.3, 1.9, 0.6 +5.32,5,a-vale-i1,2020-21,Franklin-Franklin Early Childhood Development Center,01010003, 95.9, 6.5, 16.7, 6.7, 5.6 7.279999999999999,5,a-vale-i1,2020-21,Franklin-Jefferson Elementary,01010010, 98.3, 2.8, 6.8, 1.8, 2.1 7.4,5,a-vale-i1,2020-21,Franklin-Helen Keller Elementary,01010012, 98.2, 3.0, 5.7, 1.5, 1.5 -7.76,5,a-vale-i1,2020-21,Franklin-J F Kennedy Memorial,01010013, 98.4, 2.7, 3.9, 0.6, 1.5 -3.84,3.84,a-vale-i1,2020-21,Franklin-Franklin High,01010505, 95.3, 7.8, 17.2, 10.4, 2.4 -5.32,5,a-vale-i1,2020-21,Franklin-Franklin Early Childhood Development Center,01010003, 95.9, 6.5, 16.7, 6.7, 5.6 -6.92,5,a-vale-i1,2020-21,Franklin-Oak Street Elementary,01010030, 97.9, 3.5, 6.4, 2.7, 2.1 -7.24,5,a-vale-i1,2020-21,Franklin-Parmenter,01010032, 97.8, 3.7, 7.3, 1.9, 0.6 -5.6,5,a-vale-i1,2020-21,Franklin-Davis Thayer,01010035, 97.5, 4.2, 11.2, 6.0, 5.6 -6.08,5,a-vale-i1,2020-21,Franklin-Annie Sullivan Middle School,01010040, 97.3, 4.5, 9.7, 4.8, 1.4 -4.68,4.68,a-vale-i1,2020-21,Franklin-Remington Middle,01010310, 96.8, 5.4, 15.3, 8.3, 3.4 5.4,5,a-vale-i1,2020-21,Franklin-Horace Mann,01010405, 96.8, 5.3, 12.7, 6.5, 2.4 +4.68,4.68,a-vale-i1,2020-21,Franklin-Remington Middle,01010310, 96.8, 5.4, 15.3, 8.3, 3.4 +6.08,5,a-vale-i1,2020-21,Franklin-Annie Sullivan Middle School,01010040, 97.3, 4.5, 9.7, 4.8, 1.4 +5.6,5,a-vale-i1,2020-21,Franklin-Davis Thayer,01010035, 97.5, 4.2, 11.2, 6.0, 5.6 +3.84,3.84,a-vale-i1,2020-21,Franklin-Franklin High,01010505, 95.3, 7.8, 17.2, 10.4, 2.4 +7.76,5,a-vale-i1,2020-21,Franklin-J F Kennedy Memorial,01010013, 98.4, 2.7, 3.9, 0.6, 1.5 +6.92,5,a-vale-i1,2020-21,Franklin-Oak Street Elementary,01010030, 97.9, 3.5, 6.4, 2.7, 2.1 -5.359999999999999,1,a-vale-i1,2020-21,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 90.9, 15.1, 54.6, 33.4, 0.0 5.0,5.0,a-vale-i1,2020-21,Freetown-Lakeville-Freetown Elementary School,06650001, 96.6, 5.7, 20.6, 7.5, 0.0 +5.04,5,a-vale-i1,2020-21,Freetown-Lakeville-Assawompset Elementary School,06650002, 96.3, 6.1, 22.5, 7.4, 0.0 4.76,4.76,a-vale-i1,2020-21,Freetown-Lakeville-Apponequet Regional High,06650505, 96.6, 5.6, 16.7, 8.1, 8.3 4.96,4.96,a-vale-i1,2020-21,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 96.9, 5.1, 16.6, 7.6, 0.0 3.5200000000000005,3.52,a-vale-i1,2020-21,Freetown-Lakeville-George R Austin Intermediate School,06650015, 95.5, 7.4, 27.3, 11.2, 0.0 -5.04,5,a-vale-i1,2020-21,Freetown-Lakeville-Assawompset Elementary School,06650002, 96.3, 6.1, 22.5, 7.4, 0.0 3.56,3.56,a-vale-i1,2020-21,Frontier-Frontier Regional,06700505, 95.1, 8.1, 18.5, 11.1, 0.5 --4.44,1,a-vale-i1,2020-21,Gardner-Gardner Middle School,01030405, 90.9, 14.8, 46.2, 31.1, 15.5 --5.880000000000001,1,a-vale-i1,2020-21,Gardner-Waterford Street,01030020, 90.1, 15.1, 49.3, 34.7, 15.0 -4.68,1,a-vale-i1,2020-21,Gardner-Elm Street School,01030001, 90.9, 14.5, 48.5, 31.7, 10.0 +-4.44,1,a-vale-i1,2020-21,Gardner-Gardner Middle School,01030405, 90.9, 14.8, 46.2, 31.1, 15.5 -6.2,1,a-vale-i1,2020-21,Gardner-Gardner Academy for Learning and Technology,01030515, 80.3, 30.9, 37.4, 35.5, 19.6 +-5.880000000000001,1,a-vale-i1,2020-21,Gardner-Waterford Street,01030020, 90.1, 15.1, 49.3, 34.7, 15.0 -3.1599999999999993,1,a-vale-i1,2020-21,Gardner-Gardner High,01030505, 91.4, 14.0, 40.4, 27.9, 12.7 -1.8799999999999997,1.88,a-vale-i1,2020-21,Gateway-Gateway Regional High,06720505, 94.5, 9.2, 26.0, 15.3, 5.1 3.88,3.88,a-vale-i1,2020-21,Gateway-Chester Elementary,06720059, 95.6, 7.2, 28.0, 10.3, 1.9 -2.0799999999999996,2.08,a-vale-i1,2020-21,Gateway-Gateway Regional Middle School,06720405, 94.7, 8.9, 28.9, 14.8, 7.8 0.8,1,a-vale-i1,2020-21,Gateway-Littleville Elementary School,06720143, 94.3, 9.3, 30.7, 18.0, 7.0 -4.4799999999999995,4.48,a-vale-i1,2020-21,Georgetown-Georgetown High School,01050505, 95.8, 7.2, 19.6, 8.8, 2.6 -6.8,5,a-vale-i1,2020-21,Georgetown-Georgetown Middle School,01050305, 97.2, 4.9, 15.8, 3.0, 1.0 -6.68,5,a-vale-i1,2020-21,Georgetown-Penn Brook,01050010, 97.5, 4.3, 10.2, 3.3, 0.0 +2.0799999999999996,2.08,a-vale-i1,2020-21,Gateway-Gateway Regional Middle School,06720405, 94.7, 8.9, 28.9, 14.8, 7.8 +1.8799999999999997,1.88,a-vale-i1,2020-21,Gateway-Gateway Regional High,06720505, 94.5, 9.2, 26.0, 15.3, 5.1 -0.6799999999999997,1,a-vale-i1,2020-21,Georgetown-Perley Elementary,01050005, 95.6, 4.7, 17.4, 21.7, 0.0 +6.8,5,a-vale-i1,2020-21,Georgetown-Georgetown Middle School,01050305, 97.2, 4.9, 15.8, 3.0, 1.0 +4.4799999999999995,4.48,a-vale-i1,2020-21,Georgetown-Georgetown High School,01050505, 95.8, 7.2, 19.6, 8.8, 2.6 +6.68,5,a-vale-i1,2020-21,Georgetown-Penn Brook,01050010, 97.5, 4.3, 10.2, 3.3, 0.0 -5.880000000000001,1,a-vale-i1,2020-21,Gill-Montague-Turners Fall High,06740505, 89.1, 17.7, 44.6, 34.7, 5.7 --4.040000000000001,1,a-vale-i1,2020-21,Gill-Montague-Hillcrest Elementary School,06740015, 91.6, 13.3, 42.1, 30.1, 0.8 -3.9599999999999995,1,a-vale-i1,2020-21,Gill-Montague-Great Falls Middle,06740310, 89.7, 16.9, 47.7, 29.9, 5.6 -3.44,3.44,a-vale-i1,2020-21,Gill-Montague-Gill Elementary,06740005, 95.5, 7.4, 20.2, 11.4, 2.6 -2.9200000000000004,1,a-vale-i1,2020-21,Gill-Montague-Sheffield Elementary School,06740050, 93.0, 11.4, 41.8, 27.3, 2.3 +-4.040000000000001,1,a-vale-i1,2020-21,Gill-Montague-Hillcrest Elementary School,06740015, 91.6, 13.3, 42.1, 30.1, 0.8 +3.44,3.44,a-vale-i1,2020-21,Gill-Montague-Gill Elementary,06740005, 95.5, 7.4, 20.2, 11.4, 2.6 3.84,3.84,a-vale-i1,2020-21,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 95.5, 7.4, 22.7, 10.4, 1.2 --3.1599999999999993,1,a-vale-i1,2020-21,Gloucester-Veterans Memorial,01070045, 92.8, 11.8, 48.8, 27.9, 43.3 -2.2399999999999998,2.24,a-vale-i1,2020-21,Gloucester-Plum Cove School,01070042, 95.2, 8.0, 28.7, 14.4, 19.6 6.04,5,a-vale-i1,2020-21,Gloucester-Gloucester PreSchool,01070025, 96.7, 4.6, 13.7, 4.9, 10.8 -2.3599999999999994,1,a-vale-i1,2020-21,Gloucester-East Gloucester Elementary,01070020, 93.2, 11.2, 46.1, 25.9, 34.7 -0.9599999999999994,1,a-vale-i1,2020-21,Gloucester-Beeman Memorial,01070010, 93.1, 11.4, 49.1, 22.4, 31.4 --16.48,1,a-vale-i1,2020-21,Gloucester-Gloucester High,01070505, 80.2, 32.3, 78.8, 61.2, 42.7 -0.9200000000000003,1,a-vale-i1,2020-21,Gloucester-Ralph B O'Maley Middle,01070305, 93.5, 10.7, 42.2, 22.3, 25.2 1.5200000000000002,1.52,a-vale-i1,2020-21,Gloucester-West Parish,01070050, 94.7, 8.8, 35.4, 16.2, 18.7 +-3.1599999999999993,1,a-vale-i1,2020-21,Gloucester-Veterans Memorial,01070045, 92.8, 11.8, 48.8, 27.9, 43.3 +2.2399999999999998,2.24,a-vale-i1,2020-21,Gloucester-Plum Cove School,01070042, 95.2, 8.0, 28.7, 14.4, 19.6 +-16.48,1,a-vale-i1,2020-21,Gloucester-Gloucester High,01070505, 80.2, 32.3, 78.8, 61.2, 42.7 -32.0,1,a-vale-i1,2020-21,Gosnold-Cuttyhunk Elementary,01090005, 75.5, 30.8, 87.5, 100.0, 0.0 --0.4799999999999997,1,a-vale-i1,2020-21,Grafton-Grafton Middle,01100305, 93.1, 11.7, 37.7, 21.2, 21.5 -5.8,5,a-vale-i1,2020-21,Grafton-Millbury Street Elementary School,01100200, 96.8, 5.4, 17.0, 5.5, 7.0 -5.16,5,a-vale-i1,2020-21,Grafton-North Street Elementary School,01100030, 96.9, 5.2, 15.9, 7.1, 7.0 -3.2,3.2,a-vale-i1,2020-21,Grafton-North Grafton Elementary,01100025, 95.6, 7.1, 25.0, 12.0, 8.0 4.4399999999999995,4.44,a-vale-i1,2020-21,Grafton-South Grafton Elementary,01100005, 96.5, 5.7, 19.2, 8.9, 13.4 +5.16,5,a-vale-i1,2020-21,Grafton-North Street Elementary School,01100030, 96.9, 5.2, 15.9, 7.1, 7.0 +5.8,5,a-vale-i1,2020-21,Grafton-Millbury Street Elementary School,01100200, 96.8, 5.4, 17.0, 5.5, 7.0 +-0.4799999999999997,1,a-vale-i1,2020-21,Grafton-Grafton Middle,01100305, 93.1, 11.7, 37.7, 21.2, 21.5 -5.119999999999999,1,a-vale-i1,2020-21,Grafton-Grafton High School,01100505, 90.9, 15.4, 51.3, 32.8, 8.0 +3.2,3.2,a-vale-i1,2020-21,Grafton-North Grafton Elementary,01100025, 95.6, 7.1, 25.0, 12.0, 8.0 4.12,4.12,a-vale-i1,2020-21,Granby-Granby Jr Sr High School,01110505, 96.2, 6.4, 18.8, 9.7, 0.6 3.84,3.84,a-vale-i1,2020-21,Granby-East Meadow,01110004, 96.0, 6.5, 19.2, 10.4, 9.2 5.5200000000000005,5,a-vale-i1,2020-21,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 96.5, 5.8, 17.1, 6.2, 1.3 -0.4,1,a-vale-i1,2020-21,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 93.3, 11.2, 38.8, 21.0, 6.4 1.2,1.2,a-vale-i1,2020-21,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 93.7, 10.5, 35.0, 17.0, 5.2 2.7600000000000002,2.76,a-vale-i1,2020-21,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 94.9, 8.5, 30.8, 13.1, 8.2 +-15.16,1,a-vale-i1,2020-21,Greenfield-The Academy of Early Learning at North Parish,01140005, 76.4, 35.4, 71.9, 57.9, 63.2 -5.080000000000001,1,a-vale-i1,2020-21,Greenfield-Greenfield High,01140505, 88.2, 19.5, 44.6, 32.7, 28.4 --7.040000000000001,1,a-vale-i1,2020-21,Greenfield-Federal Street School,01140010, 88.5, 18.4, 48.6, 37.6, 42.7 3.2,3.2,a-vale-i1,2020-21,Greenfield-Discovery School at Four Corners,01140025, 96.0, 6.5, 18.2, 12.0, 10.2 +-7.040000000000001,1,a-vale-i1,2020-21,Greenfield-Federal Street School,01140010, 88.5, 18.4, 48.6, 37.6, 42.7 -1.3599999999999994,1,a-vale-i1,2020-21,Greenfield-Greenfield Middle,01140305, 92.3, 12.9, 32.4, 23.4, 26.4 -7.2,1,a-vale-i1,2020-21,Greenfield-Newton School,01140035, 88.7, 18.4, 49.3, 38.0, 45.9 --15.16,1,a-vale-i1,2020-21,Greenfield-The Academy of Early Learning at North Parish,01140005, 76.4, 35.4, 71.9, 57.9, 63.2 -5.76,1,a-vale-i1,2020-21,Greenfield Commonwealth Virtual District-Greenfield Commonwealth Virtual School,39010900, 86.7, 19.7, 38.3, 34.4, 0.0 -5.5200000000000005,5,a-vale-i1,2020-21,Groton-Dunstable-Groton Dunstable Regional,06730505, 96.6, 5.6, 14.7, 6.2, 3.2 +5.64,5,a-vale-i1,2020-21,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 96.6, 5.7, 15.7, 5.9, 4.2 6.16,5,a-vale-i1,2020-21,Groton-Dunstable-Florence Roche School,06730010, 96.9, 5.1, 14.3, 4.6, 6.9 7.159999999999999,5,a-vale-i1,2020-21,Groton-Dunstable-Swallow/Union School,06730005, 97.6, 3.9, 8.7, 2.1, 5.2 +5.5200000000000005,5,a-vale-i1,2020-21,Groton-Dunstable-Groton Dunstable Regional,06730505, 96.6, 5.6, 14.7, 6.2, 3.2 6.12,5,a-vale-i1,2020-21,Groton-Dunstable-Boutwell School,06730001, 97.6, 3.7, 11.6, 4.7, 11.6 -5.64,5,a-vale-i1,2020-21,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 96.6, 5.7, 15.7, 5.9, 4.2 4.64,4.64,a-vale-i1,2020-21,Hadley-Hopkins Academy,01170505, 96.9, 5.2, 12.6, 8.4, 2.3 3.56,3.56,a-vale-i1,2020-21,Hadley-Hadley Elementary,01170015, 95.8, 6.8, 23.7, 11.1, 0.0 6.4799999999999995,5,a-vale-i1,2020-21,Halifax-Halifax Elementary,01180005, 96.9, 5.2, 16.4, 3.8, 4.8 +7.12,5,a-vale-i1,2020-21,Hamilton-Wenham-Bessie Buker Elementary,06750007, 97.3, 4.4, 8.8, 2.2, 0.9 +2.12,2.12,a-vale-i1,2020-21,Hamilton-Wenham-Miles River Middle,06750310, 92.3, 12.9, 24.3, 14.7, 10.6 6.279999999999999,5,a-vale-i1,2020-21,Hamilton-Wenham-Winthrop School,06750015, 97.1, 4.6, 10.9, 4.3, 2.3 4.5600000000000005,4.56,a-vale-i1,2020-21,Hamilton-Wenham-Cutler School,06750010, 94.5, 9.0, 11.7, 8.6, 0.8 -7.12,5,a-vale-i1,2020-21,Hamilton-Wenham-Bessie Buker Elementary,06750007, 97.3, 4.4, 8.8, 2.2, 0.9 4.2,4.2,a-vale-i1,2020-21,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 95.1, 8.1, 23.7, 9.5, 1.3 -2.12,2.12,a-vale-i1,2020-21,Hamilton-Wenham-Miles River Middle,06750310, 92.3, 12.9, 24.3, 14.7, 10.6 5.96,5,a-vale-i1,2020-21,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 97.1, 4.9, 10.9, 5.1, 0.7 5.4399999999999995,5,a-vale-i1,2020-21,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 97.0, 5.0, 12.2, 6.4, 7.6 -6.12,5,a-vale-i1,2020-21,Hampden-Wilbraham-Stony Hill School,06800050, 97.0, 4.9, 14.1, 4.7, 6.4 -4.4,4.4,a-vale-i1,2020-21,Hampden-Wilbraham-Wilbraham Middle,06800310, 95.9, 6.9, 19.4, 9.0, 0.3 -0.6400000000000006,1,a-vale-i1,2020-21,Hampden-Wilbraham-Minnechaug Regional High,06800505, 93.0, 11.8, 41.0, 21.6, 13.4 +6.12,5,a-vale-i1,2020-21,Hampden-Wilbraham-Stony Hill School,06800050, 97.0, 4.9, 14.1, 4.7, 6.4 +5.76,5,a-vale-i1,2020-21,Hampden-Wilbraham-Soule Road,06800030, 97.0, 5.0, 12.5, 5.6, 4.7 3.28,3.28,a-vale-i1,2020-21,Hampden-Wilbraham-Mile Tree Elementary,06800025, 95.0, 8.2, 29.3, 11.8, 11.2 3.44,3.44,a-vale-i1,2020-21,Hampden-Wilbraham-Green Meadows Elementary,06800005, 95.0, 8.3, 30.6, 11.4, 10.2 -5.76,5,a-vale-i1,2020-21,Hampden-Wilbraham-Soule Road,06800030, 97.0, 5.0, 12.5, 5.6, 4.7 +4.4,4.4,a-vale-i1,2020-21,Hampden-Wilbraham-Wilbraham Middle,06800310, 95.9, 6.9, 19.4, 9.0, 0.3 -18.639999999999997,1,a-vale-i1,2020-21,Hampshire-Hampshire Regional High,06830505, 86.1, 23.3, 99.1, 66.6, 0.0 5.4799999999999995,5,a-vale-i1,2020-21,Hancock-Hancock Elementary,01210005, 96.2, 5.7, 22.2, 6.3, 0.0 -2.0799999999999996,2.08,a-vale-i1,2020-21,Hanover-Hanover High,01220505, 94.2, 8.7, 27.4, 14.8, 12.4 -6.36,5,a-vale-i1,2020-21,Hanover-Cedar Elementary,01220004, 96.9, 5.1, 14.7, 4.1, 10.0 6.2,5,a-vale-i1,2020-21,Hanover-Center Elementary,01220005, 96.4, 6.2, 19.2, 4.5, 3.4 6.2,5,a-vale-i1,2020-21,Hanover-Hanover Middle,01220305, 96.7, 5.7, 15.8, 4.5, 8.3 +2.0799999999999996,2.08,a-vale-i1,2020-21,Hanover-Hanover High,01220505, 94.2, 8.7, 27.4, 14.8, 12.4 +6.36,5,a-vale-i1,2020-21,Hanover-Cedar Elementary,01220004, 96.9, 5.1, 14.7, 4.1, 10.0 6.76,5,a-vale-i1,2020-21,Harvard-Hildreth Elementary School,01250005, 97.5, 4.1, 9.2, 3.1, 2.3 5.6,5,a-vale-i1,2020-21,Harvard-Bromfield,01250505, 96.3, 6.2, 15.2, 6.0, 2.3 -0.12000000000000029,1,a-vale-i1,2020-21,Hatfield-Hatfield Elementary,01270005, 93.6, 10.6, 40.1, 20.3, 0.0 -3.6400000000000006,1,a-vale-i1,2020-21,Hatfield-Smith Academy,01270505, 91.6, 14.1, 46.2, 29.1, 0.0 --1.2400000000000007,1,a-vale-i1,2020-21,Haverhill-John G Whittier,01280085, 92.5, 12.4, 34.8, 23.1, 5.5 --1.5200000000000002,1,a-vale-i1,2020-21,Haverhill-Walnut Square,01280080, 92.5, 12.2, 40.0, 23.8, 11.5 -2.4400000000000004,1,a-vale-i1,2020-21,Haverhill-Tilton,01280075, 92.6, 12.3, 42.0, 26.1, 7.1 --26.8,1,a-vale-i1,2020-21,Haverhill-Crowell,01280515, 55.2, 70.5, 87.0, 87.0, 43.5 --0.6799999999999997,1,a-vale-i1,2020-21,Haverhill-Silver Hill Elementary School,01280067, 93.0, 11.6, 33.6, 21.7, 8.1 --14.84,1,a-vale-i1,2020-21,Haverhill-TEACH,01280073, 82.7, 28.6, 71.4, 57.1, 42.9 --4.0,1,a-vale-i1,2020-21,Haverhill-Haverhill High,01280505, 87.5, 20.2, 45.3, 30.0, 18.1 --8.080000000000002,1,a-vale-i1,2020-21,Haverhill-Tilton Upper Middle School,01280105, 89.4, 17.8, 53.3, 40.2, 8.7 +-1.5200000000000002,1,a-vale-i1,2020-21,Haverhill-Walnut Square,01280080, 92.5, 12.2, 40.0, 23.8, 11.5 +-1.2400000000000007,1,a-vale-i1,2020-21,Haverhill-John G Whittier,01280085, 92.5, 12.4, 34.8, 23.1, 5.5 -7.280000000000001,1,a-vale-i1,2020-21,Haverhill-Consentino Middle School,01280100, 89.6, 17.1, 52.1, 38.2, 9.6 +-8.080000000000002,1,a-vale-i1,2020-21,Haverhill-Tilton Upper Middle School,01280105, 89.4, 17.8, 53.3, 40.2, 8.7 +-4.0,1,a-vale-i1,2020-21,Haverhill-Haverhill High,01280505, 87.5, 20.2, 45.3, 30.0, 18.1 +-26.8,1,a-vale-i1,2020-21,Haverhill-Crowell,01280515, 55.2, 70.5, 87.0, 87.0, 43.5 -7.44,1,a-vale-i1,2020-21,Haverhill-Bradford Elementary,01280008, 88.0, 19.1, 48.9, 38.6, 14.8 -4.359999999999999,1,a-vale-i1,2020-21,Haverhill-Golden Hill,01280026, 91.3, 14.1, 45.9, 30.9, 7.9 0.6,1,a-vale-i1,2020-21,Haverhill-Caleb Dustin Hunking School,01280030, 94.0, 10.0, 30.0, 18.5, 5.2 @@ -2547,74 +2545,74 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -2.9200000000000004,1,a-vale-i1,2020-21,Haverhill-Moody,01280045, 91.6, 12.4, 47.6, 27.3, 5.6 -4.880000000000001,1,a-vale-i1,2020-21,Haverhill-Dr Paul Nettle,01280050, 91.2, 14.5, 48.3, 32.2, 11.5 -2.3599999999999994,1,a-vale-i1,2020-21,Haverhill-Pentucket Lake Elementary,01280054, 92.4, 12.5, 38.8, 25.9, 7.0 +-0.6799999999999997,1,a-vale-i1,2020-21,Haverhill-Silver Hill Elementary School,01280067, 93.0, 11.6, 33.6, 21.7, 8.1 +-14.84,1,a-vale-i1,2020-21,Haverhill-TEACH,01280073, 82.7, 28.6, 71.4, 57.1, 42.9 2.6399999999999997,2.64,a-vale-i1,2020-21,Hawlemont-Hawlemont Regional,06850005, 95.4, 7.3, 23.6, 13.4, 2.4 -13.52,1,a-vale-i1,2020-21,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 84.8, 26.0, 67.0, 53.8, 0.0 5.2,5,a-vale-i1,2020-21,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 96.8, 5.2, 13.4, 7.0, 0.3 5.4399999999999995,5,a-vale-i1,2020-21,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 96.9, 5.3, 11.5, 6.4, 0.0 -3.9200000000000004,3.92,a-vale-i1,2020-21,Hingham-Hingham Middle School,01310410, 95.4, 7.7, 24.7, 10.2, 2.8 -4.92,4.92,a-vale-i1,2020-21,Hingham-Hingham High,01310505, 96.1, 6.5, 18.9, 7.7, 2.4 7.08,5,a-vale-i1,2020-21,Hingham-East Elementary School,01310005, 97.7, 3.6, 7.2, 2.3, 3.0 -6.24,5,a-vale-i1,2020-21,Hingham-Wm L Foster Elementary,01310010, 97.0, 5.0, 12.9, 4.4, 0.4 5.92,5,a-vale-i1,2020-21,Hingham-Plymouth River,01310019, 97.3, 4.6, 10.4, 5.2, 3.6 +6.24,5,a-vale-i1,2020-21,Hingham-Wm L Foster Elementary,01310010, 97.0, 5.0, 12.9, 4.4, 0.4 +4.92,4.92,a-vale-i1,2020-21,Hingham-Hingham High,01310505, 96.1, 6.5, 18.9, 7.7, 2.4 +3.9200000000000004,3.92,a-vale-i1,2020-21,Hingham-Hingham Middle School,01310410, 95.4, 7.7, 24.7, 10.2, 2.8 7.840000000000001,5,a-vale-i1,2020-21,Hingham-South Elementary,01310020, 97.8, 3.8, 6.2, 0.4, 0.0 -3.2,3.2,a-vale-i1,2020-21,Holbrook-John F Kennedy,01330018, 95.9, 6.7, 23.9, 12.0, 8.6 3.4,3.4,a-vale-i1,2020-21,Holbrook-Holbrook Middle High School,01330505, 96.0, 6.6, 23.4, 11.5, 7.6 +3.2,3.2,a-vale-i1,2020-21,Holbrook-John F Kennedy,01330018, 95.9, 6.7, 23.9, 12.0, 8.6 6.04,5,a-vale-i1,2020-21,Holland-Holland Elementary,01350005, 96.8, 5.3, 18.6, 4.9, 11.3 -6.04,5,a-vale-i1,2020-21,Holliston-Miller School,01360007, 96.7, 5.6, 16.7, 4.9, 0.0 -6.0,5,a-vale-i1,2020-21,Holliston-Placentino Elementary,01360010, 96.7, 5.5, 15.0, 5.0, 0.0 -6.24,5,a-vale-i1,2020-21,Holliston-Robert H. Adams Middle School,01360305, 97.1, 4.9, 14.2, 4.4, 0.0 5.08,5,a-vale-i1,2020-21,Holliston-Holliston High,01360505, 96.2, 6.5, 12.7, 7.3, 0.0 --7.4,1,a-vale-i1,2020-21,Holyoke-Holyoke STEM Academy,01370320, 88.9, 18.1, 53.4, 38.5, 3.1 +6.24,5,a-vale-i1,2020-21,Holliston-Robert H. Adams Middle School,01360305, 97.1, 4.9, 14.2, 4.4, 0.0 +6.0,5,a-vale-i1,2020-21,Holliston-Placentino Elementary,01360010, 96.7, 5.5, 15.0, 5.0, 0.0 +6.04,5,a-vale-i1,2020-21,Holliston-Miller School,01360007, 96.7, 5.6, 16.7, 4.9, 0.0 +-9.280000000000001,1,a-vale-i1,2020-21,Holyoke-Lt Clayre Sullivan Elementary,01370055, 86.2, 22.6, 61.6, 43.2, 12.3 -12.64,1,a-vale-i1,2020-21,Holyoke-Holyoke High,01370505, 77.9, 35.8, 68.8, 51.6, 11.0 +-7.4,1,a-vale-i1,2020-21,Holyoke-Holyoke STEM Academy,01370320, 88.9, 18.1, 53.4, 38.5, 3.1 -8.719999999999999,1,a-vale-i1,2020-21,Holyoke-Veritas Prep Holyoke,01370075, 89.2, 17.8, 58.8, 41.8, 13.1 -18.6,1,a-vale-i1,2020-21,Holyoke-H.B. Lawrence School,01370070, 81.1, 29.1, 77.8, 66.5, 15.3 -9.48,1,a-vale-i1,2020-21,Holyoke-Maurice A Donahue Elementary,01370060, 87.0, 21.1, 65.5, 43.7, 12.6 --9.280000000000001,1,a-vale-i1,2020-21,Holyoke-Lt Clayre Sullivan Elementary,01370055, 86.2, 22.6, 61.6, 43.2, 12.3 --5.6800000000000015,1,a-vale-i1,2020-21,Holyoke-E N White Elementary,01370045, 89.3, 17.2, 49.1, 34.2, 10.5 -12.24,1,a-vale-i1,2020-21,Holyoke-Kelly Elementary,01370040, 85.7, 23.1, 68.4, 50.6, 10.6 --14.24,1,a-vale-i1,2020-21,Holyoke-William R. Peck School,01370030, 84.8, 24.8, 70.4, 55.6, 11.9 --17.6,1,a-vale-i1,2020-21,Holyoke-Morgan Full Service Community School,01370025, 81.0, 29.8, 75.0, 64.0, 13.3 --1.8799999999999997,1,a-vale-i1,2020-21,Holyoke-Lt Elmer J McMahon Elementary,01370015, 91.7, 13.8, 41.7, 24.7, 7.0 +-5.6800000000000015,1,a-vale-i1,2020-21,Holyoke-E N White Elementary,01370045, 89.3, 17.2, 49.1, 34.2, 10.5 0.4,1,a-vale-i1,2020-21,Holyoke-Joseph Metcalf School,01370003, 93.9, 9.9, 35.3, 19.0, 5.2 +-1.8799999999999997,1,a-vale-i1,2020-21,Holyoke-Lt Elmer J McMahon Elementary,01370015, 91.7, 13.8, 41.7, 24.7, 7.0 +-17.6,1,a-vale-i1,2020-21,Holyoke-Morgan Full Service Community School,01370025, 81.0, 29.8, 75.0, 64.0, 13.3 +-14.24,1,a-vale-i1,2020-21,Holyoke-William R. Peck School,01370030, 84.8, 24.8, 70.4, 55.6, 11.9 6.76,5,a-vale-i1,2020-21,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 97.8, 3.7, 11.0, 3.1, 5.9 --5.840000000000001,1,a-vale-i1,2020-21,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.3, 17.8, 44.8, 34.6, 0.0 -4.32,1,a-vale-i1,2020-21,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 91.3, 14.2, 48.1, 30.8, 0.3 -7.159999999999999,1,a-vale-i1,2020-21,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 89.7, 16.4, 56.0, 37.9, 8.9 +-5.840000000000001,1,a-vale-i1,2020-21,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.3, 17.8, 44.8, 34.6, 0.0 +6.04,5,a-vale-i1,2020-21,Hopedale-Park Street School,01380003, 97.1, 4.9, 17.1, 4.9, 17.1 4.96,4.96,a-vale-i1,2020-21,Hopedale-Hopedale Jr Sr High,01380505, 96.5, 5.8, 14.3, 7.6, 4.3 5.92,5,a-vale-i1,2020-21,Hopedale-Memorial,01380010, 97.0, 5.0, 12.4, 5.2, 0.7 -6.04,5,a-vale-i1,2020-21,Hopedale-Park Street School,01380003, 97.1, 4.9, 17.1, 4.9, 17.1 -1.1599999999999995,1.16,a-vale-i1,2020-21,Hopkinton-Hopkinton Pre-School,01390003, 94.3, 9.0, 35.4, 17.1, 7.3 -6.16,5,a-vale-i1,2020-21,Hopkinton-Marathon Elementary School,01390005, 97.5, 4.1, 10.1, 4.6, 0.2 -7.2,5,a-vale-i1,2020-21,Hopkinton-Elmwood,01390010, 98.2, 3.0, 5.2, 2.0, 0.8 -4.88,4.88,a-vale-i1,2020-21,Hopkinton-Hopkinton High,01390505, 96.1, 6.6, 22.1, 7.8, 3.9 -6.5200000000000005,5,a-vale-i1,2020-21,Hopkinton-Hopkins Elementary School,01390015, 97.5, 4.1, 10.9, 3.7, 0.8 5.4,5,a-vale-i1,2020-21,Hopkinton-Hopkinton Middle School,01390305, 96.7, 5.6, 14.3, 6.5, 0.8 --5.280000000000001,1,a-vale-i1,2020-21,Hudson-Hudson High,01410505, 89.5, 17.0, 43.9, 33.2, 9.2 +6.16,5,a-vale-i1,2020-21,Hopkinton-Marathon Elementary School,01390005, 97.5, 4.1, 10.1, 4.6, 0.2 +1.1599999999999995,1.16,a-vale-i1,2020-21,Hopkinton-Hopkinton Pre-School,01390003, 94.3, 9.0, 35.4, 17.1, 7.3 +4.88,4.88,a-vale-i1,2020-21,Hopkinton-Hopkinton High,01390505, 96.1, 6.6, 22.1, 7.8, 3.9 +7.2,5,a-vale-i1,2020-21,Hopkinton-Elmwood,01390010, 98.2, 3.0, 5.2, 2.0, 0.8 +6.5200000000000005,5,a-vale-i1,2020-21,Hopkinton-Hopkins Elementary School,01390015, 97.5, 4.1, 10.9, 3.7, 0.8 -2.3200000000000003,1,a-vale-i1,2020-21,Hudson-David J. Quinn Middle School,01410410, 92.5, 12.4, 39.6, 25.8, 9.1 2.84,2.84,a-vale-i1,2020-21,Hudson-C A Farley,01410030, 96.0, 6.6, 22.1, 12.9, 6.6 -4.76,4.76,a-vale-i1,2020-21,Hudson-Forest Avenue Elementary,01410015, 96.8, 5.2, 16.9, 8.1, 1.5 +-5.280000000000001,1,a-vale-i1,2020-21,Hudson-Hudson High,01410505, 89.5, 17.0, 43.9, 33.2, 9.2 2.88,2.88,a-vale-i1,2020-21,Hudson-Mulready Elementary,01410007, 95.5, 7.3, 22.9, 12.8, 7.8 +4.76,4.76,a-vale-i1,2020-21,Hudson-Forest Avenue Elementary,01410015, 96.8, 5.2, 16.9, 8.1, 1.5 -7.6800000000000015,1,a-vale-i1,2020-21,Hull-Hull High,01420505, 87.3, 21.0, 57.4, 39.2, 20.0 --4.12,1,a-vale-i1,2020-21,Hull-Memorial Middle,01420305, 90.4, 15.9, 47.3, 30.3, 14.9 0.8799999999999997,1,a-vale-i1,2020-21,Hull-Lillian M Jacobs,01420015, 94.4, 9.1, 36.4, 17.8, 10.1 +-4.12,1,a-vale-i1,2020-21,Hull-Memorial Middle,01420305, 90.4, 15.9, 47.3, 30.3, 14.9 4.24,4.24,a-vale-i1,2020-21,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 95.8, 7.0, 16.1, 9.4, 0.0 -6.36,5,a-vale-i1,2020-21,Ipswich-Winthrop,01440015, 97.4, 4.4, 12.0, 4.1, 4.9 5.76,5,a-vale-i1,2020-21,Ipswich-Ipswich High,01440505, 97.2, 4.9, 12.0, 5.6, 1.1 -6.92,5,a-vale-i1,2020-21,Ipswich-Paul F Doyon Memorial,01440007, 97.5, 4.3, 9.7, 2.7, 0.3 7.359999999999999,5,a-vale-i1,2020-21,Ipswich-Ipswich Middle School,01440305, 98.0, 3.6, 8.3, 1.6, 2.1 +6.92,5,a-vale-i1,2020-21,Ipswich-Paul F Doyon Memorial,01440007, 97.5, 4.3, 9.7, 2.7, 0.3 +6.36,5,a-vale-i1,2020-21,Ipswich-Winthrop,01440015, 97.4, 4.4, 12.0, 4.1, 4.9 -8.4,1,a-vale-i1,2020-21,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 87.8, 20.9, 64.8, 41.0, 1.1 -5.919999999999999,1,a-vale-i1,2020-21,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 89.8, 17.9, 56.3, 34.8, 0.1 -8.24,1,a-vale-i1,2020-21,King Philip-King Philip Regional High,06900505, 86.7, 22.0, 59.0, 40.6, 6.6 5.32,5,a-vale-i1,2020-21,King Philip-King Philip Middle School,06900510, 96.4, 6.1, 16.5, 6.7, 7.6 4.4399999999999995,4.44,a-vale-i1,2020-21,Kingston-Kingston Elementary,01450005, 96.0, 6.6, 19.3, 8.9, 2.5 4.5600000000000005,4.56,a-vale-i1,2020-21,Kingston-Kingston Intermediate,01450020, 95.7, 7.2, 23.7, 8.6, 0.0 -7.88,5,a-vale-i1,2020-21,Lawrence-UP Academy Oliver Middle School,01490049, 99.2, 1.3, 2.6, 0.3, 0.0 4.96,4.96,a-vale-i1,2020-21,Lawrence-Parthum Middle School,01490027, 96.5, 6.1, 20.0, 7.6, 0.0 -2.9200000000000004,2.92,a-vale-i1,2020-21,Lawrence-Francis M Leahy,01490040, 96.3, 6.3, 20.2, 12.7, 0.0 -0.2799999999999997,1,a-vale-i1,2020-21,Lawrence-Oliver Partnership School,01490048, 93.8, 10.8, 38.6, 19.3, 0.0 -7.32,5,a-vale-i1,2020-21,Lawrence-Guilmette Middle School,01490025, 99.0, 1.7, 3.4, 1.7, 0.0 -7.4799999999999995,5,a-vale-i1,2020-21,Lawrence-Edward F. Parthum,01490053, 99.2, 1.3, 3.2, 1.3, 0.0 -3.6399999999999997,3.64,a-vale-i1,2020-21,Lawrence-John K Tarbox,01490075, 95.6, 7.6, 26.2, 10.9, 0.0 +-30.919999999999998,1,a-vale-i1,2020-21,Lawrence-RISE Academy,01490615, 25.6, 101.5, 100.0, 97.3, 0.0 +2.0,2.0,a-vale-i1,2020-21,Lawrence-Lawlor Early Childhood Center,01490002, 94.4, 8.8, 28.1, 15.0, 0.0 +0.0,1,a-vale-i1,2020-21,Lawrence-John Breen School,01490003, 94.6, 8.1, 31.8, 20.0, 0.0 +-1.5200000000000002,1,a-vale-i1,2020-21,Lawrence-South Lawrence East Elementary School,01490004, 93.1, 11.8, 40.0, 23.8, 0.0 7.040000000000001,5,a-vale-i1,2020-21,Lawrence-Community Day Arlington,01490009, 99.3, 1.1, 4.2, 2.4, 0.0 1.64,1.64,a-vale-i1,2020-21,Lawrence-Lawrence Family Public Academy,01490011, 94.8, 8.7, 32.9, 15.9, 0.0 -1.5599999999999994,1,a-vale-i1,2020-21,Lawrence-Alexander B Bruce,01490015, 93.5, 11.1, 36.5, 23.9, 0.0 @@ -2622,48 +2620,50 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.88,5,a-vale-i1,2020-21,Lawrence-Robert Frost,01490018, 98.3, 3.0, 7.3, 2.8, 0.0 0.12000000000000029,1,a-vale-i1,2020-21,Lawrence-James F Hennessey,01490020, 93.9, 9.9, 34.6, 19.7, 0.0 6.0,5,a-vale-i1,2020-21,Lawrence-Gerard A. Guilmette,01490022, 96.5, 6.0, 19.7, 5.0, 0.0 --1.5200000000000002,1,a-vale-i1,2020-21,Lawrence-South Lawrence East Elementary School,01490004, 93.1, 11.8, 40.0, 23.8, 0.0 -0.0,1,a-vale-i1,2020-21,Lawrence-John Breen School,01490003, 94.6, 8.1, 31.8, 20.0, 0.0 -2.0,2.0,a-vale-i1,2020-21,Lawrence-Lawlor Early Childhood Center,01490002, 94.4, 8.8, 28.1, 15.0, 0.0 +7.32,5,a-vale-i1,2020-21,Lawrence-Guilmette Middle School,01490025, 99.0, 1.7, 3.4, 1.7, 0.0 -4.5200000000000005,1,a-vale-i1,2020-21,Lawrence-Rollins Early Childhood Center,01490001, 90.6, 14.8, 42.8, 31.3, 0.0 --30.919999999999998,1,a-vale-i1,2020-21,Lawrence-RISE Academy,01490615, 25.6, 101.5, 100.0, 97.3, 0.0 --16.119999999999997,1,a-vale-i1,2020-21,Lawrence-School for Exceptional Studies,01490537, 78.2, 37.7, 73.3, 60.3, 0.0 --4.32,1,a-vale-i1,2020-21,Lawrence-High School Learning Center,01490536, 91.0, 14.2, 34.1, 30.8, 0.5 -8.0,5,a-vale-i1,2020-21,Lawrence-Frost Middle School,01490525, 100.0, 0.0, 0.0, 0.0, 0.0 --5.2,1,a-vale-i1,2020-21,Lawrence-Lawrence High School,01490515, 88.5, 19.7, 43.1, 33.0, 19.0 -4.96,4.96,a-vale-i1,2020-21,Lawrence-UP Academy Leonard Middle School,01490090, 96.9, 5.4, 14.8, 7.6, 0.0 --3.6,1,a-vale-i1,2020-21,Lawrence-Spark Academy,01490085, 92.1, 13.9, 38.5, 29.0, 0.0 +2.9200000000000004,2.92,a-vale-i1,2020-21,Lawrence-Francis M Leahy,01490040, 96.3, 6.3, 20.2, 12.7, 0.0 +0.2799999999999997,1,a-vale-i1,2020-21,Lawrence-Oliver Partnership School,01490048, 93.8, 10.8, 38.6, 19.3, 0.0 +7.88,5,a-vale-i1,2020-21,Lawrence-UP Academy Oliver Middle School,01490049, 99.2, 1.3, 2.6, 0.3, 0.0 +7.4799999999999995,5,a-vale-i1,2020-21,Lawrence-Edward F. Parthum,01490053, 99.2, 1.3, 3.2, 1.3, 0.0 +3.6399999999999997,3.64,a-vale-i1,2020-21,Lawrence-John K Tarbox,01490075, 95.6, 7.6, 26.2, 10.9, 0.0 7.040000000000001,5,a-vale-i1,2020-21,Lawrence-Emily G Wetherbee,01490080, 98.8, 2.1, 4.0, 2.4, 0.0 +-3.6,1,a-vale-i1,2020-21,Lawrence-Spark Academy,01490085, 92.1, 13.9, 38.5, 29.0, 0.0 +4.96,4.96,a-vale-i1,2020-21,Lawrence-UP Academy Leonard Middle School,01490090, 96.9, 5.4, 14.8, 7.6, 0.0 +-5.2,1,a-vale-i1,2020-21,Lawrence-Lawrence High School,01490515, 88.5, 19.7, 43.1, 33.0, 19.0 +8.0,5,a-vale-i1,2020-21,Lawrence-Frost Middle School,01490525, 100.0, 0.0, 0.0, 0.0, 0.0 +-4.32,1,a-vale-i1,2020-21,Lawrence-High School Learning Center,01490536, 91.0, 14.2, 34.1, 30.8, 0.5 +-16.119999999999997,1,a-vale-i1,2020-21,Lawrence-School for Exceptional Studies,01490537, 78.2, 37.7, 73.3, 60.3, 0.0 5.0,5.0,a-vale-i1,2020-21,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 96.6, 5.8, 18.5, 7.5, 2.2 6.44,5,a-vale-i1,2020-21,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 97.2, 4.8, 15.6, 3.9, 0.1 -3.04,3.04,a-vale-i1,2020-21,Lee-Lee Elementary,01500025, 95.5, 7.3, 28.2, 12.4, 2.3 4.2,4.2,a-vale-i1,2020-21,Lee-Lee Middle/High School,01500505, 94.5, 9.1, 35.3, 9.5, 3.3 --4.840000000000001,1,a-vale-i1,2020-21,Leicester-Leicester High,01510505, 90.3, 16.3, 52.7, 32.1, 2.5 +3.04,3.04,a-vale-i1,2020-21,Lee-Lee Elementary,01500025, 95.5, 7.3, 28.2, 12.4, 2.3 1.0400000000000005,1.04,a-vale-i1,2020-21,Leicester-Leicester Middle,01510015, 94.3, 9.5, 34.4, 17.4, 1.4 -2.4,2.4,a-vale-i1,2020-21,Leicester-Leicester Elementary,01510005, 94.9, 8.2, 27.0, 14.0, 2.4 +-4.840000000000001,1,a-vale-i1,2020-21,Leicester-Leicester High,01510505, 90.3, 16.3, 52.7, 32.1, 2.5 4.84,4.84,a-vale-i1,2020-21,Leicester-Leicester Integrated Preschool,01510001, 96.4, 5.4, 15.8, 7.9, 0.0 +2.4,2.4,a-vale-i1,2020-21,Leicester-Leicester Elementary,01510005, 94.9, 8.2, 27.0, 14.0, 2.4 6.12,5,a-vale-i1,2020-21,Lenox-Lenox Memorial High,01520505, 97.2, 4.8, 11.5, 4.7, 6.5 4.8,4.8,a-vale-i1,2020-21,Lenox-Morris,01520015, 96.8, 5.3, 15.3, 8.0, 0.0 --8.319999999999999,1,a-vale-i1,2020-21,Leominster-Sky View Middle School,01530320, 88.2, 19.5, 53.3, 40.8, 30.1 --6.719999999999999,1,a-vale-i1,2020-21,Leominster-Samoset School,01530045, 88.0, 19.6, 51.8, 36.8, 31.3 --2.8,1,a-vale-i1,2020-21,Leominster-Priest Street,01530040, 92.4, 11.9, 39.3, 27.0, 30.3 -1.2799999999999998,1.28,a-vale-i1,2020-21,Leominster-Northwest,01530030, 94.6, 8.7, 28.8, 16.8, 27.2 -2.44,2.44,a-vale-i1,2020-21,Leominster-Johnny Appleseed,01530025, 95.1, 8.0, 24.5, 13.9, 23.3 -2.6799999999999997,2.68,a-vale-i1,2020-21,Leominster-Frances Drake School,01530010, 95.7, 6.9, 23.4, 13.3, 22.6 -4.64,4.64,a-vale-i1,2020-21,Leominster-Fall Brook,01530007, 96.8, 5.1, 16.2, 8.4, 16.0 -3.8400000000000007,1,a-vale-i1,2020-21,Leominster-Lincoln School,01530005, 91.8, 6.9, 25.9, 29.6, 18.5 -4.32,4.32,a-vale-i1,2020-21,Leominster-Bennett,01530003, 97.4, 1.9, 0.0, 9.2, 0.0 -0.07999999999999971,1,a-vale-i1,2020-21,Leominster-Leominster High School,01530505, 93.5, 10.6, 30.4, 19.8, 23.2 +4.64,4.64,a-vale-i1,2020-21,Leominster-Fall Brook,01530007, 96.8, 5.1, 16.2, 8.4, 16.0 +2.6799999999999997,2.68,a-vale-i1,2020-21,Leominster-Frances Drake School,01530010, 95.7, 6.9, 23.4, 13.3, 22.6 -4.0,1,a-vale-i1,2020-21,Leominster-Center For Technical Education Innovation,01530605, 91.7, 13.8, 45.4, 30.0, 42.0 +1.2799999999999998,1.28,a-vale-i1,2020-21,Leominster-Northwest,01530030, 94.6, 8.7, 28.8, 16.8, 27.2 +-2.8,1,a-vale-i1,2020-21,Leominster-Priest Street,01530040, 92.4, 11.9, 39.3, 27.0, 30.3 +-6.719999999999999,1,a-vale-i1,2020-21,Leominster-Samoset School,01530045, 88.0, 19.6, 51.8, 36.8, 31.3 +4.32,4.32,a-vale-i1,2020-21,Leominster-Bennett,01530003, 97.4, 1.9, 0.0, 9.2, 0.0 +-8.319999999999999,1,a-vale-i1,2020-21,Leominster-Sky View Middle School,01530320, 88.2, 19.5, 53.3, 40.8, 30.1 +2.44,2.44,a-vale-i1,2020-21,Leominster-Johnny Appleseed,01530025, 95.1, 8.0, 24.5, 13.9, 23.3 +0.07999999999999971,1,a-vale-i1,2020-21,Leominster-Leominster High School,01530505, 93.5, 10.6, 30.4, 19.8, 23.2 -10.6,1,a-vale-i1,2020-21,Leominster-Leominster Center for Excellence,01530515, 88.7, 17.8, 60.5, 46.5, 39.5 3.9200000000000004,3.92,a-vale-i1,2020-21,Leverett-Leverett Elementary,01540005, 96.1, 6.4, 21.2, 10.2, 2.5 -7.720000000000001,5,a-vale-i1,2020-21,Lexington-Joseph Estabrook,01550010, 98.7, 2.2, 3.9, 0.7, 0.6 -7.4,5,a-vale-i1,2020-21,Lexington-Fiske,01550015, 98.6, 2.4, 5.1, 1.5, 0.3 -6.92,5,a-vale-i1,2020-21,Lexington-Harrington,01550030, 98.2, 3.1, 8.7, 2.7, 0.9 7.8,5,a-vale-i1,2020-21,Lexington-Maria Hastings,01550035, 98.8, 2.0, 2.7, 0.5, 0.3 -5.12,5,a-vale-i1,2020-21,Lexington-Jonas Clarke Middle,01550305, 96.6, 5.8, 18.8, 7.2, 1.1 -3.3200000000000003,3.32,a-vale-i1,2020-21,Lexington-Wm Diamond Middle,01550310, 95.5, 7.7, 28.2, 11.7, 0.6 7.0,5,a-vale-i1,2020-21,Lexington-Lexington High,01550505, 98.5, 2.5, 4.9, 2.5, 1.0 +3.3200000000000003,3.32,a-vale-i1,2020-21,Lexington-Wm Diamond Middle,01550310, 95.5, 7.7, 28.2, 11.7, 0.6 +5.12,5,a-vale-i1,2020-21,Lexington-Jonas Clarke Middle,01550305, 96.6, 5.8, 18.8, 7.2, 1.1 +7.720000000000001,5,a-vale-i1,2020-21,Lexington-Joseph Estabrook,01550010, 98.7, 2.2, 3.9, 0.7, 0.6 +6.92,5,a-vale-i1,2020-21,Lexington-Harrington,01550030, 98.2, 3.1, 8.7, 2.7, 0.9 +7.4,5,a-vale-i1,2020-21,Lexington-Fiske,01550015, 98.6, 2.4, 5.1, 1.5, 0.3 2.4799999999999995,2.48,a-vale-i1,2020-21,Lexington-Lexington Children's Place,01550001, 95.7, 6.8, 23.1, 13.8, 4.6 6.840000000000001,5,a-vale-i1,2020-21,Lexington-Bridge,01550006, 98.0, 3.3, 9.1, 2.9, 0.0 7.4799999999999995,5,a-vale-i1,2020-21,Lexington-Bowman,01550008, 99.0, 1.6, 1.1, 1.3, 0.2 @@ -2673,27 +2673,31 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 1.3599999999999994,1.36,a-vale-i1,2020-21,Lincoln-Hanscom Middle,01570305, 94.5, 8.3, 31.7, 16.6, 0.4 6.4799999999999995,5,a-vale-i1,2020-21,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 97.4, 4.4, 10.8, 3.8, 0.3 5.16,5,a-vale-i1,2020-21,Littleton-Littleton High School,01580505, 96.7, 5.5, 11.8, 7.1, 2.1 -6.959999999999999,5,a-vale-i1,2020-21,Littleton-Shaker Lane Elementary,01580005, 98.0, 3.2, 6.1, 2.6, 1.1 -6.4,5,a-vale-i1,2020-21,Littleton-Russell St Elementary,01580015, 98.0, 3.3, 6.1, 4.0, 1.3 5.88,5,a-vale-i1,2020-21,Littleton-Littleton Middle School,01580305, 97.0, 5.0, 12.1, 5.3, 1.8 +6.4,5,a-vale-i1,2020-21,Littleton-Russell St Elementary,01580015, 98.0, 3.3, 6.1, 4.0, 1.3 +6.959999999999999,5,a-vale-i1,2020-21,Littleton-Shaker Lane Elementary,01580005, 98.0, 3.2, 6.1, 2.6, 1.1 +6.56,5,a-vale-i1,2020-21,Longmeadow-Williams Middle,01590305, 97.6, 4.1, 8.9, 3.6, 0.0 6.0,5,a-vale-i1,2020-21,Longmeadow-Wolf Swamp Road,01590025, 97.3, 4.4, 13.4, 5.0, 0.0 7.279999999999999,5,a-vale-i1,2020-21,Longmeadow-Glenbrook Middle,01590017, 98.3, 2.9, 5.1, 1.8, 0.3 6.720000000000001,5,a-vale-i1,2020-21,Longmeadow-Center,01590010, 97.1, 4.8, 15.2, 3.2, 0.2 -6.5200000000000005,5,a-vale-i1,2020-21,Longmeadow-Blueberry Hill,01590005, 97.5, 4.2, 10.6, 3.7, 0.2 6.68,5,a-vale-i1,2020-21,Longmeadow-Longmeadow High,01590505, 98.0, 3.3, 6.0, 3.3, 0.1 -6.56,5,a-vale-i1,2020-21,Longmeadow-Williams Middle,01590305, 97.6, 4.1, 8.9, 3.6, 0.0 --0.24000000000000057,1,a-vale-i1,2020-21,Lowell-Washington,01600055, 93.5, 10.5, 32.8, 20.6, 10.1 --0.12000000000000029,1,a-vale-i1,2020-21,Lowell-John J Shaughnessy,01600050, 93.9, 9.9, 36.2, 20.3, 7.5 --0.3200000000000003,1,a-vale-i1,2020-21,Lowell-Peter W Reilly,01600040, 93.4, 10.6, 31.4, 20.8, 5.7 -0.8,1,a-vale-i1,2020-21,Lowell-Pawtucketville Memorial,01600036, 94.7, 8.7, 29.1, 18.0, 3.6 -1.9200000000000004,1.92,a-vale-i1,2020-21,Lowell-Charles W Morey,01600030, 94.5, 9.1, 27.4, 15.2, 5.6 --1.6400000000000006,1,a-vale-i1,2020-21,Lowell-Moody Elementary,01600027, 93.5, 10.6, 39.5, 24.1, 3.1 -0.6799999999999997,1,a-vale-i1,2020-21,Lowell-Abraham Lincoln,01600020, 94.0, 9.9, 36.8, 18.3, 3.8 --9.4,1,a-vale-i1,2020-21,Lowell-Laura Lee Therapeutic Day School,01600085, 83.7, 26.6, 65.2, 43.5, 30.4 +6.5200000000000005,5,a-vale-i1,2020-21,Longmeadow-Blueberry Hill,01590005, 97.5, 4.2, 10.6, 3.7, 0.2 +3.5200000000000005,3.52,a-vale-i1,2020-21,Lowell-Dr Gertrude Bailey,01600002, 95.7, 7.0, 24.4, 11.2, 3.0 +-6.0,1,a-vale-i1,2020-21,Lowell-Rogers STEM Academy,01600005, 89.9, 16.5, 50.3, 35.0, 12.1 +-1.6400000000000006,1,a-vale-i1,2020-21,Lowell-Joseph McAvinnue,01600010, 92.9, 11.4, 35.3, 24.1, 7.1 +-6.0,1,a-vale-i1,2020-21,Lowell-Greenhalge,01600015, 89.8, 16.2, 52.6, 35.0, 8.7 1.1599999999999995,1.16,a-vale-i1,2020-21,Lowell-Pyne Arts,01600018, 94.2, 9.5, 32.0, 17.1, 8.5 +0.6799999999999997,1,a-vale-i1,2020-21,Lowell-Abraham Lincoln,01600020, 94.0, 9.9, 36.8, 18.3, 3.8 +-7.2,1,a-vale-i1,2020-21,Lowell-Cardinal O'Connell Early Learning Center,01600001, 89.8, 14.9, 46.7, 38.0, 26.1 +-1.6400000000000006,1,a-vale-i1,2020-21,Lowell-Moody Elementary,01600027, 93.5, 10.6, 39.5, 24.1, 3.1 +1.9200000000000004,1.92,a-vale-i1,2020-21,Lowell-Charles W Morey,01600030, 94.5, 9.1, 27.4, 15.2, 5.6 +0.8,1,a-vale-i1,2020-21,Lowell-Pawtucketville Memorial,01600036, 94.7, 8.7, 29.1, 18.0, 3.6 +-0.3200000000000003,1,a-vale-i1,2020-21,Lowell-Peter W Reilly,01600040, 93.4, 10.6, 31.4, 20.8, 5.7 +-0.12000000000000029,1,a-vale-i1,2020-21,Lowell-John J Shaughnessy,01600050, 93.9, 9.9, 36.2, 20.3, 7.5 +-0.24000000000000057,1,a-vale-i1,2020-21,Lowell-Washington,01600055, 93.5, 10.5, 32.8, 20.6, 10.1 -1.9200000000000004,1,a-vale-i1,2020-21,Lowell-S Christa McAuliffe Elementary,01600075, 92.6, 12.0, 38.6, 24.8, 5.5 0.35999999999999943,1,a-vale-i1,2020-21,Lowell-Charlotte M Murkland Elementary,01600080, 94.2, 9.4, 33.3, 19.1, 6.0 --15.2,1,a-vale-i1,2020-21,Lowell-Dr. Janice Adie Day School,01600605, 80.7, 31.8, 74.0, 58.0, 30.0 +-9.4,1,a-vale-i1,2020-21,Lowell-Laura Lee Therapeutic Day School,01600085, 83.7, 26.6, 65.2, 43.5, 30.4 -2.9599999999999995,1,a-vale-i1,2020-21,Lowell-Bartlett Community Partnership,01600090, 91.7, 13.5, 41.6, 27.4, 8.0 0.15999999999999942,1,a-vale-i1,2020-21,Lowell-B.F. Butler Middle School,01600310, 94.1, 9.8, 33.0, 19.6, 6.4 4.88,4.88,a-vale-i1,2020-21,Lowell-James S Daley Middle School,01600315, 96.3, 6.1, 17.6, 7.8, 2.8 @@ -2704,171 +2708,167 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 2.04,2.04,a-vale-i1,2020-21,Lowell-Kathryn P. Stoklosa Middle School,01600360, 95.0, 8.3, 28.4, 14.9, 5.1 -1.1599999999999995,1,a-vale-i1,2020-21,Lowell-Lowell High,01600505, 90.9, 14.8, 32.3, 22.9, 3.8 -18.28,1,a-vale-i1,2020-21,Lowell-The Career Academy,01600515, 64.0, 55.0, 67.6, 65.7, 21.6 --7.2,1,a-vale-i1,2020-21,Lowell-Cardinal O'Connell Early Learning Center,01600001, 89.8, 14.9, 46.7, 38.0, 26.1 -3.5200000000000005,3.52,a-vale-i1,2020-21,Lowell-Dr Gertrude Bailey,01600002, 95.7, 7.0, 24.4, 11.2, 3.0 --6.0,1,a-vale-i1,2020-21,Lowell-Rogers STEM Academy,01600005, 89.9, 16.5, 50.3, 35.0, 12.1 --1.6400000000000006,1,a-vale-i1,2020-21,Lowell-Joseph McAvinnue,01600010, 92.9, 11.4, 35.3, 24.1, 7.1 --6.0,1,a-vale-i1,2020-21,Lowell-Greenhalge,01600015, 89.8, 16.2, 52.6, 35.0, 8.7 +-15.2,1,a-vale-i1,2020-21,Lowell-Dr. Janice Adie Day School,01600605, 80.7, 31.8, 74.0, 58.0, 30.0 1.5599999999999994,1.56,a-vale-i1,2020-21,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 94.6, 9.0, 30.4, 16.1, 2.2 -25.919999999999998,1,a-vale-i1,2020-21,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 48.6, 74.9, 89.9, 84.8, 0.0 -2.7600000000000002,2.76,a-vale-i1,2020-21,Ludlow-East Street Elementary School,01610010, 95.0, 8.3, 26.5, 13.1, 4.1 -3.3200000000000003,3.32,a-vale-i1,2020-21,Ludlow-Paul R Baird Middle,01610305, 95.3, 7.9, 23.7, 11.7, 5.8 -4.64,4.64,a-vale-i1,2020-21,Ludlow-Veterans Park Elementary,01610023, 96.2, 6.4, 20.1, 8.4, 5.1 -4.4399999999999995,4.44,a-vale-i1,2020-21,Ludlow-Chapin Street Elementary School,01610020, 96.6, 5.6, 16.2, 8.9, 4.0 2.6799999999999997,2.68,a-vale-i1,2020-21,Ludlow-Ludlow Senior High,01610505, 94.7, 8.7, 28.2, 13.3, 2.1 -1.2400000000000007,1.24,a-vale-i1,2020-21,Lunenburg-Lunenburg High,01620505, 94.4, 9.4, 33.4, 16.9, 0.0 -1.2,1.2,a-vale-i1,2020-21,Lunenburg-Lunenburg Middle School,01620305, 94.6, 8.8, 31.0, 17.0, 0.3 -3.4799999999999995,3.48,a-vale-i1,2020-21,Lunenburg-Turkey Hill Elementary School,01620025, 95.3, 7.6, 25.7, 11.3, 0.0 +4.4399999999999995,4.44,a-vale-i1,2020-21,Ludlow-Chapin Street Elementary School,01610020, 96.6, 5.6, 16.2, 8.9, 4.0 +4.64,4.64,a-vale-i1,2020-21,Ludlow-Veterans Park Elementary,01610023, 96.2, 6.4, 20.1, 8.4, 5.1 +3.3200000000000003,3.32,a-vale-i1,2020-21,Ludlow-Paul R Baird Middle,01610305, 95.3, 7.9, 23.7, 11.7, 5.8 +2.7600000000000002,2.76,a-vale-i1,2020-21,Ludlow-East Street Elementary School,01610010, 95.0, 8.3, 26.5, 13.1, 4.1 5.4,5,a-vale-i1,2020-21,Lunenburg-Lunenburg Primary School,01620010, 97.1, 4.5, 12.9, 6.5, 0.0 --2.0,1,a-vale-i1,2020-21,Lynn-William R Fallon,01630080, 92.5, 12.4, 46.9, 25.0, 0.0 +3.4799999999999995,3.48,a-vale-i1,2020-21,Lunenburg-Turkey Hill Elementary School,01620025, 95.3, 7.6, 25.7, 11.3, 0.0 +1.2,1.2,a-vale-i1,2020-21,Lunenburg-Lunenburg Middle School,01620305, 94.6, 8.8, 31.0, 17.0, 0.3 +1.2400000000000007,1.24,a-vale-i1,2020-21,Lunenburg-Lunenburg High,01620505, 94.4, 9.4, 33.4, 16.9, 0.0 +3.16,3.16,a-vale-i1,2020-21,Lynn-Robert L Ford,01630050, 95.5, 7.4, 26.7, 12.1, 0.0 +3.4,3.4,a-vale-i1,2020-21,Lynn-Hood,01630055, 95.1, 8.0, 23.6, 11.5, 0.0 +2.3200000000000003,2.32,a-vale-i1,2020-21,Lynn-Ingalls,01630060, 95.3, 7.7, 27.8, 14.2, 0.0 +6.279999999999999,5,a-vale-i1,2020-21,Lynn-Lincoln-Thomson,01630070, 97.4, 4.3, 14.2, 4.3, 0.0 5.92,5,a-vale-i1,2020-21,Lynn-Lynn Woods,01630075, 96.7, 5.5, 18.7, 5.2, 0.0 +-2.0,1,a-vale-i1,2020-21,Lynn-William R Fallon,01630080, 92.5, 12.4, 46.9, 25.0, 0.0 +4.4399999999999995,4.44,a-vale-i1,2020-21,Lynn-Sewell-Anderson,01630085, 96.2, 6.3, 20.4, 8.9, 0.0 -0.3200000000000003,1,a-vale-i1,2020-21,Lynn-Capt William G Shoemaker,01630090, 93.5, 10.8, 28.9, 20.8, 0.0 2.8,2.8,a-vale-i1,2020-21,Lynn-Edward A Sisson,01630095, 94.6, 8.9, 23.9, 13.0, 0.0 5.04,5,a-vale-i1,2020-21,Lynn-Tracy,01630100, 96.4, 6.0, 17.9, 7.4, 0.0 -1.0400000000000005,1,a-vale-i1,2020-21,Lynn-Thurgood Marshall Mid,01630305, 93.0, 11.6, 35.7, 22.6, 0.0 -0.7599999999999995,1,a-vale-i1,2020-21,Lynn-Breed Middle School,01630405, 92.8, 11.9, 34.2, 21.9, 0.0 2.84,2.84,a-vale-i1,2020-21,Lynn-Pickering Middle,01630420, 94.5, 9.2, 23.9, 12.9, 0.0 -4.4399999999999995,4.44,a-vale-i1,2020-21,Lynn-Sewell-Anderson,01630085, 96.2, 6.3, 20.4, 8.9, 0.0 -6.279999999999999,5,a-vale-i1,2020-21,Lynn-Lincoln-Thomson,01630070, 97.4, 4.3, 14.2, 4.3, 0.0 -2.3200000000000003,2.32,a-vale-i1,2020-21,Lynn-Ingalls,01630060, 95.3, 7.7, 27.8, 14.2, 0.0 -3.4,3.4,a-vale-i1,2020-21,Lynn-Hood,01630055, 95.1, 8.0, 23.6, 11.5, 0.0 -3.16,3.16,a-vale-i1,2020-21,Lynn-Robert L Ford,01630050, 95.5, 7.4, 26.7, 12.1, 0.0 --5.119999999999999,1,a-vale-i1,2020-21,Lynn-Classical High,01630505, 90.7, 15.0, 44.0, 32.8, 0.0 --9.4,1,a-vale-i1,2020-21,Lynn-Lynn English High,01630510, 84.6, 25.1, 55.2, 43.5, 0.0 -0.0,1,a-vale-i1,2020-21,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 87.7, 18.9, 20.0, 20.0, 0.0 +-1.4,1,a-vale-i1,2020-21,Lynn-E J Harrington,01630045, 92.1, 12.7, 35.8, 23.5, 0.0 +2.0,2.0,a-vale-i1,2020-21,Lynn-Wm P Connery,01630040, 95.1, 8.0, 27.5, 15.0, 0.0 +-1.6400000000000006,1,a-vale-i1,2020-21,Lynn-Cobbet Elementary,01630035, 92.8, 11.8, 37.9, 24.1, 0.0 -3.0,1,a-vale-i1,2020-21,Lynn-Lynn Vocational Technical Institute,01630605, 91.1, 15.1, 42.0, 27.5, 0.0 +0.0,1,a-vale-i1,2020-21,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 87.7, 18.9, 20.0, 20.0, 0.0 +-9.4,1,a-vale-i1,2020-21,Lynn-Lynn English High,01630510, 84.6, 25.1, 55.2, 43.5, 0.0 +-5.119999999999999,1,a-vale-i1,2020-21,Lynn-Classical High,01630505, 90.7, 15.0, 44.0, 32.8, 0.0 -0.35999999999999943,1,a-vale-i1,2020-21,Lynn-Washington Elementary School,01630005, 93.0, 11.4, 34.8, 20.9, 0.0 +-1.4,1,a-vale-i1,2020-21,Lynn-Julia F Callahan,01630030, 92.1, 12.7, 37.7, 23.5, 0.0 +2.96,2.96,a-vale-i1,2020-21,Lynn-Brickett Elementary,01630020, 95.1, 8.1, 26.1, 12.6, 0.0 7.0,5,a-vale-i1,2020-21,Lynn-Aborn,01630011, 97.3, 4.6, 12.7, 2.5, 0.0 2.0,2.0,a-vale-i1,2020-21,Lynn-A Drewicz Elementary,01630016, 94.5, 9.2, 28.1, 15.0, 0.0 -2.96,2.96,a-vale-i1,2020-21,Lynn-Brickett Elementary,01630020, 95.1, 8.1, 26.1, 12.6, 0.0 --1.4,1,a-vale-i1,2020-21,Lynn-Julia F Callahan,01630030, 92.1, 12.7, 37.7, 23.5, 0.0 --1.6400000000000006,1,a-vale-i1,2020-21,Lynn-Cobbet Elementary,01630035, 92.8, 11.8, 37.9, 24.1, 0.0 -2.0,2.0,a-vale-i1,2020-21,Lynn-Wm P Connery,01630040, 95.1, 8.0, 27.5, 15.0, 0.0 --1.4,1,a-vale-i1,2020-21,Lynn-E J Harrington,01630045, 92.1, 12.7, 35.8, 23.5, 0.0 -5.08,5,a-vale-i1,2020-21,Lynnfield-Lynnfield High,01640505, 95.5, 7.6, 24.3, 7.3, 4.3 6.959999999999999,5,a-vale-i1,2020-21,Lynnfield-Lynnfield Middle School,01640405, 97.4, 4.4, 9.0, 2.6, 3.9 -7.6,5,a-vale-i1,2020-21,Lynnfield-Summer Street,01640020, 98.1, 3.3, 4.8, 1.0, 0.0 +5.08,5,a-vale-i1,2020-21,Lynnfield-Lynnfield High,01640505, 95.5, 7.6, 24.3, 7.3, 4.3 7.4,5,a-vale-i1,2020-21,Lynnfield-Huckleberry Hill,01640010, 98.0, 3.4, 8.4, 1.5, 0.0 5.5600000000000005,5,a-vale-i1,2020-21,Lynnfield-Lynnfield Preschool,01640005, 96.3, 4.4, 12.1, 6.1, 0.0 +7.6,5,a-vale-i1,2020-21,Lynnfield-Summer Street,01640020, 98.1, 3.3, 4.8, 1.0, 0.0 -1.4799999999999998,1,a-vale-i1,2020-21,MATCH Charter Public School (District)-MATCH Charter Public School,04690505, 91.8, 13.7, 36.0, 23.7, 0.0 7.2,5,a-vale-i1,2020-21,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 99.6, 0.6, 2.0, 2.0, 2.0 -3.9200000000000004,3.92,a-vale-i1,2020-21,Malden-Beebe,01650003, 96.6, 5.4, 16.4, 10.2, 3.7 -1.2,1.2,a-vale-i1,2020-21,Malden-Salemwood,01650057, 94.8, 8.1, 27.1, 17.0, 0.0 --6.24,1,a-vale-i1,2020-21,Malden-Malden Early Learning Center,01650049, 88.7, 13.0, 37.1, 35.6, 12.4 2.4799999999999995,2.48,a-vale-i1,2020-21,Malden-Linden,01650047, 95.3, 7.5, 22.2, 13.8, 3.6 +-6.24,1,a-vale-i1,2020-21,Malden-Malden Early Learning Center,01650049, 88.7, 13.0, 37.1, 35.6, 12.4 +1.2,1.2,a-vale-i1,2020-21,Malden-Salemwood,01650057, 94.8, 8.1, 27.1, 17.0, 0.0 -0.9200000000000003,1,a-vale-i1,2020-21,Malden-Malden High,01650505, 92.3, 12.3, 29.7, 22.3, 5.5 --5.519999999999999,1,a-vale-i1,2020-21,Malden-Ferryway,01650013, 88.8, 18.1, 45.1, 33.8, 0.0 2.6399999999999997,2.64,a-vale-i1,2020-21,Malden-Forestdale,01650027, 95.8, 6.8, 23.0, 13.4, 3.7 -6.44,5,a-vale-i1,2020-21,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 97.4, 4.3, 7.7, 3.9, 1.4 -6.76,5,a-vale-i1,2020-21,Manchester Essex Regional-Essex Elementary,06980020, 97.4, 4.3, 9.3, 3.1, 0.0 +3.9200000000000004,3.92,a-vale-i1,2020-21,Malden-Beebe,01650003, 96.6, 5.4, 16.4, 10.2, 3.7 +-5.519999999999999,1,a-vale-i1,2020-21,Malden-Ferryway,01650013, 88.8, 18.1, 45.1, 33.8, 0.0 4.16,4.16,a-vale-i1,2020-21,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 95.2, 8.1, 22.7, 9.6, 0.6 3.0799999999999996,3.08,a-vale-i1,2020-21,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 94.8, 8.8, 26.0, 12.3, 0.0 -6.12,5,a-vale-i1,2020-21,Mansfield-Jordan/Jackson Elementary,01670014, 97.5, 4.2, 11.1, 4.7, 3.5 +6.76,5,a-vale-i1,2020-21,Manchester Essex Regional-Essex Elementary,06980020, 97.4, 4.3, 9.3, 3.1, 0.0 +6.44,5,a-vale-i1,2020-21,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 97.4, 4.3, 7.7, 3.9, 1.4 4.68,4.68,a-vale-i1,2020-21,Mansfield-Harold L Qualters Middle,01670035, 96.3, 6.2, 17.6, 8.3, 8.7 +6.12,5,a-vale-i1,2020-21,Mansfield-Jordan/Jackson Elementary,01670014, 97.5, 4.2, 11.1, 4.7, 3.5 +5.279999999999999,5,a-vale-i1,2020-21,Mansfield-Everett W Robinson,01670007, 96.7, 5.5, 15.7, 6.8, 3.7 6.08,5,a-vale-i1,2020-21,Mansfield-Mansfield High,01670505, 97.8, 3.8, 7.9, 4.8, 0.0 2.12,2.12,a-vale-i1,2020-21,Mansfield-Roland Green School,01670003, 95.3, 5.9, 15.7, 14.7, 9.8 -5.279999999999999,5,a-vale-i1,2020-21,Mansfield-Everett W Robinson,01670007, 96.7, 5.5, 15.7, 6.8, 3.7 -31.080000000000002,1,a-vale-i1,2020-21,Map Academy Charter School (District)-Map Academy Charter School,35170505, 47.4, 81.5, 97.2, 97.7, 0.0 -7.159999999999999,5,a-vale-i1,2020-21,Marblehead-Village School,01680016, 97.6, 4.0, 9.6, 2.1, 0.8 -6.279999999999999,5,a-vale-i1,2020-21,Marblehead-L H Coffin,01680010, 96.9, 5.1, 13.3, 4.3, 0.5 3.12,3.12,a-vale-i1,2020-21,Marblehead-Marblehead Veterans Middle School,01680300, 95.4, 7.8, 29.0, 12.2, 1.7 -6.720000000000001,5,a-vale-i1,2020-21,Marblehead-Glover,01680020, 97.8, 3.7, 8.7, 3.2, 0.3 --1.8,1,a-vale-i1,2020-21,Marblehead-Marblehead High,01680505, 93.0, 11.7, 37.8, 24.5, 6.6 +6.279999999999999,5,a-vale-i1,2020-21,Marblehead-L H Coffin,01680010, 96.9, 5.1, 13.3, 4.3, 0.5 3.3600000000000003,3.36,a-vale-i1,2020-21,Marblehead-Dr. Samuel C. Eveleth,01680025, 95.7, 7.1, 27.5, 11.6, 0.0 +-1.8,1,a-vale-i1,2020-21,Marblehead-Marblehead High,01680505, 93.0, 11.7, 37.8, 24.5, 6.6 +6.720000000000001,5,a-vale-i1,2020-21,Marblehead-Glover,01680020, 97.8, 3.7, 8.7, 3.2, 0.3 +7.159999999999999,5,a-vale-i1,2020-21,Marblehead-Village School,01680016, 97.6, 4.0, 9.6, 2.1, 0.8 6.4,5,a-vale-i1,2020-21,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 97.4, 4.5, 12.6, 4.0, 2.2 4.4799999999999995,4.48,a-vale-i1,2020-21,Marion-Sippican,01690005, 96.2, 6.1, 18.3, 8.8, 1.5 +-9.52,1,a-vale-i1,2020-21,Marlborough-Marlborough High,01700505, 85.9, 22.7, 57.5, 43.8, 22.0 +-1.8799999999999997,1,a-vale-i1,2020-21,Marlborough-1 LT Charles W. Whitcomb School,01700045, 93.0, 11.5, 36.9, 24.7, 12.5 0.9599999999999994,1,a-vale-i1,2020-21,Marlborough-Richer,01700025, 94.5, 8.8, 31.4, 17.6, 15.5 0.4799999999999997,1,a-vale-i1,2020-21,Marlborough-Charles Jaworek School,01700030, 94.4, 8.9, 37.3, 18.8, 15.6 --1.8799999999999997,1,a-vale-i1,2020-21,Marlborough-1 LT Charles W. Whitcomb School,01700045, 93.0, 11.5, 36.9, 24.7, 12.5 --9.52,1,a-vale-i1,2020-21,Marlborough-Marlborough High,01700505, 85.9, 22.7, 57.5, 43.8, 22.0 -0.8799999999999997,1,a-vale-i1,2020-21,Marlborough-Goodnow Brothers Elementary School,01700020, 94.5, 8.8, 31.2, 17.8, 16.1 -1.0400000000000005,1.04,a-vale-i1,2020-21,Marlborough-Francis J Kane,01700008, 95.1, 8.0, 28.7, 17.4, 13.5 -3.28,1,a-vale-i1,2020-21,Marlborough-Early Childhood Center,01700006, 91.7, 12.2, 34.0, 28.2, 22.0 +1.0400000000000005,1.04,a-vale-i1,2020-21,Marlborough-Francis J Kane,01700008, 95.1, 8.0, 28.7, 17.4, 13.5 +0.8799999999999997,1,a-vale-i1,2020-21,Marlborough-Goodnow Brothers Elementary School,01700020, 94.5, 8.8, 31.2, 17.8, 16.1 +7.640000000000001,5,a-vale-i1,2020-21,Marshfield-Eames Way School,01710005, 97.9, 3.8, 11.2, 0.9, 3.7 +5.96,5,a-vale-i1,2020-21,Marshfield-Daniel Webster,01710015, 97.0, 5.0, 14.1, 5.1, 9.6 3.96,3.96,a-vale-i1,2020-21,Marshfield-Marshfield High,01710505, 95.0, 8.7, 28.8, 10.1, 19.1 5.76,5,a-vale-i1,2020-21,Marshfield-Furnace Brook Middle,01710310, 96.5, 6.2, 21.2, 5.6, 7.1 -6.08,5,a-vale-i1,2020-21,Marshfield-Martinson Elementary,01710025, 97.2, 4.9, 11.3, 4.8, 8.4 -7.359999999999999,5,a-vale-i1,2020-21,Marshfield-Gov Edward Winslow,01710020, 97.7, 4.1, 10.5, 1.6, 8.4 7.32,5,a-vale-i1,2020-21,Marshfield-South River,01710010, 98.0, 3.5, 6.3, 1.7, 4.9 -5.96,5,a-vale-i1,2020-21,Marshfield-Daniel Webster,01710015, 97.0, 5.0, 14.1, 5.1, 9.6 -7.640000000000001,5,a-vale-i1,2020-21,Marshfield-Eames Way School,01710005, 97.9, 3.8, 11.2, 0.9, 3.7 +7.359999999999999,5,a-vale-i1,2020-21,Marshfield-Gov Edward Winslow,01710020, 97.7, 4.1, 10.5, 1.6, 8.4 +6.08,5,a-vale-i1,2020-21,Marshfield-Martinson Elementary,01710025, 97.2, 4.9, 11.3, 4.8, 8.4 2.88,2.88,a-vale-i1,2020-21,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 94.8, 8.5, 16.4, 12.8, 0.0 -5.119999999999999,1,a-vale-i1,2020-21,Martha's Vineyard Charter (District)-Martha's Vineyard Charter School,04660550, 92.3, 13.1, 47.2, 32.8, 13.3 -0.9200000000000003,1,a-vale-i1,2020-21,Martin Luther King Jr. Charter School of Excellence (District)-Martin Luther King Jr. Charter School of Excellence,04920005, 92.4, 13.1, 46.7, 22.3, 0.0 -5.12,5,a-vale-i1,2020-21,Masconomet-Masconomet Regional High School,07050505, 96.6, 5.7, 12.7, 7.2, 5.7 6.2,5,a-vale-i1,2020-21,Masconomet-Masconomet Regional Middle School,07050405, 97.4, 4.5, 10.5, 4.5, 3.4 --1.0,1,a-vale-i1,2020-21,Mashpee-Quashnet School,01720035, 93.7, 10.4, 35.9, 22.5, 6.3 --0.2,1,a-vale-i1,2020-21,Mashpee-Kenneth Coombs School,01720005, 93.9, 9.7, 37.9, 20.5, 2.8 -2.0799999999999996,2.08,a-vale-i1,2020-21,Mashpee-Mashpee Middle School,01720020, 94.0, 10.0, 28.0, 14.8, 0.4 +5.12,5,a-vale-i1,2020-21,Masconomet-Masconomet Regional High School,07050505, 96.6, 5.7, 12.7, 7.2, 5.7 2.28,2.28,a-vale-i1,2020-21,Mashpee-Mashpee High,01720505, 94.1, 9.9, 26.4, 14.3, 0.0 -4.2,4.2,a-vale-i1,2020-21,Mattapoisett-Center,01730005, 95.7, 6.8, 20.6, 9.5, 1.6 +2.0799999999999996,2.08,a-vale-i1,2020-21,Mashpee-Mashpee Middle School,01720020, 94.0, 10.0, 28.0, 14.8, 0.4 +-0.2,1,a-vale-i1,2020-21,Mashpee-Kenneth Coombs School,01720005, 93.9, 9.7, 37.9, 20.5, 2.8 +-1.0,1,a-vale-i1,2020-21,Mashpee-Quashnet School,01720035, 93.7, 10.4, 35.9, 22.5, 6.3 3.6,3.6,a-vale-i1,2020-21,Mattapoisett-Old Hammondtown,01730010, 95.1, 8.2, 25.4, 11.0, 3.5 --1.2,1,a-vale-i1,2020-21,Maynard-Green Meadow,01740010, 93.2, 10.7, 32.5, 23.0, 12.6 +4.2,4.2,a-vale-i1,2020-21,Mattapoisett-Center,01730005, 95.7, 6.8, 20.6, 9.5, 1.6 -4.959999999999999,1,a-vale-i1,2020-21,Maynard-Maynard High,01740505, 88.9, 18.3, 56.1, 32.4, 9.0 0.0,1,a-vale-i1,2020-21,Maynard-Fowler School,01740305, 93.8, 10.2, 29.6, 20.0, 8.3 +-1.2,1,a-vale-i1,2020-21,Maynard-Green Meadow,01740010, 93.2, 10.7, 32.5, 23.0, 12.6 +6.16,5,a-vale-i1,2020-21,Medfield-Thomas Blake Middle,01750305, 96.9, 5.2, 11.4, 4.6, 1.2 -1.6799999999999997,1,a-vale-i1,2020-21,Medfield-Medfield Senior High,01750505, 92.5, 12.3, 52.5, 24.2, 4.8 +6.92,5,a-vale-i1,2020-21,Medfield-Memorial School,01750003, 97.7, 3.8, 9.8, 2.7, 1.0 6.640000000000001,5,a-vale-i1,2020-21,Medfield-Dale Street,01750005, 97.5, 4.2, 7.4, 3.4, 2.0 6.76,5,a-vale-i1,2020-21,Medfield-Ralph Wheelock School,01750007, 97.8, 3.6, 6.2, 3.1, 0.8 -6.92,5,a-vale-i1,2020-21,Medfield-Memorial School,01750003, 97.7, 3.8, 9.8, 2.7, 1.0 -6.16,5,a-vale-i1,2020-21,Medfield-Thomas Blake Middle,01750305, 96.9, 5.2, 11.4, 4.6, 1.2 -1.0400000000000005,1.04,a-vale-i1,2020-21,Medford-Madeleine Dugger Andrews,01760315, 93.9, 10.1, 29.5, 17.4, 4.8 -3.3600000000000003,3.36,a-vale-i1,2020-21,Medford-Milton Fuller Roberts,01760150, 96.1, 6.3, 19.3, 11.6, 7.8 5.04,5,a-vale-i1,2020-21,Medford-Brooks School,01760130, 96.9, 5.2, 13.9, 7.4, 8.2 +3.12,3.12,a-vale-i1,2020-21,Medford-John J McGlynn Elementary School,01760068, 95.9, 6.5, 22.6, 12.2, 8.5 -22.0,1,a-vale-i1,2020-21,Medford-Curtis-Tufts,01760510, 81.5, 28.1, 68.8, 75.0, 62.5 -4.880000000000001,1,a-vale-i1,2020-21,Medford-Medford High,01760505, 89.3, 17.5, 43.4, 32.2, 9.7 1.4400000000000006,1.44,a-vale-i1,2020-21,Medford-John J. McGlynn Middle School,01760320, 95.1, 8.1, 29.3, 16.4, 11.2 -3.12,3.12,a-vale-i1,2020-21,Medford-John J McGlynn Elementary School,01760068, 95.9, 6.5, 22.6, 12.2, 8.5 +1.0400000000000005,1.04,a-vale-i1,2020-21,Medford-Madeleine Dugger Andrews,01760315, 93.9, 10.1, 29.5, 17.4, 4.8 +3.3600000000000003,3.36,a-vale-i1,2020-21,Medford-Milton Fuller Roberts,01760150, 96.1, 6.3, 19.3, 11.6, 7.8 1.3200000000000003,1.32,a-vale-i1,2020-21,Medford-Christopher Columbus,01760140, 94.7, 8.3, 27.2, 16.7, 15.7 -6.12,5,a-vale-i1,2020-21,Medway-Burke/Memorial Elementary School,01770015, 96.8, 5.3, 15.4, 4.7, 2.5 7.159999999999999,5,a-vale-i1,2020-21,Medway-John D Mc Govern Elementary,01770013, 98.2, 2.9, 8.4, 2.1, 1.2 2.8,2.8,a-vale-i1,2020-21,Medway-Medway Middle,01770305, 95.1, 8.3, 27.8, 13.0, 6.2 +6.12,5,a-vale-i1,2020-21,Medway-Burke/Memorial Elementary School,01770015, 96.8, 5.3, 15.4, 4.7, 2.5 1.6,1.6,a-vale-i1,2020-21,Medway-Medway High,01770505, 93.3, 11.2, 38.1, 16.0, 13.7 -6.640000000000001,5,a-vale-i1,2020-21,Melrose-Lincoln,01780020, 97.7, 3.8, 10.1, 3.4, 1.7 -7.68,5,a-vale-i1,2020-21,Melrose-Horace Mann,01780025, 98.0, 3.3, 3.8, 0.8, 1.7 -6.76,5,a-vale-i1,2020-21,Melrose-Roosevelt,01780035, 98.0, 3.3, 6.0, 3.1, 1.4 3.6,3.6,a-vale-i1,2020-21,Melrose-Melrose High,01780505, 95.7, 7.2, 19.2, 11.0, 6.1 4.12,4.12,a-vale-i1,2020-21,Melrose-Melrose Middle,01780305, 95.7, 7.1, 21.6, 9.7, 5.3 -7.68,5,a-vale-i1,2020-21,Melrose-Winthrop,01780050, 98.7, 2.3, 2.8, 0.8, 0.3 5.5200000000000005,5,a-vale-i1,2020-21,Melrose-Herbert Clark Hoover,01780017, 97.4, 4.3, 11.6, 6.2, 2.5 +6.76,5,a-vale-i1,2020-21,Melrose-Roosevelt,01780035, 98.0, 3.3, 6.0, 3.1, 1.4 +7.68,5,a-vale-i1,2020-21,Melrose-Horace Mann,01780025, 98.0, 3.3, 3.8, 0.8, 1.7 +6.640000000000001,5,a-vale-i1,2020-21,Melrose-Lincoln,01780020, 97.7, 3.8, 10.1, 3.4, 1.7 +7.68,5,a-vale-i1,2020-21,Melrose-Winthrop,01780050, 98.7, 2.3, 2.8, 0.8, 0.3 0.6400000000000006,1,a-vale-i1,2020-21,Melrose-Early Childhood Center,01780003, 93.8, 9.7, 35.1, 18.4, 29.2 -0.9599999999999994,1,a-vale-i1,2020-21,Mendon-Upton-Nipmuc Regional High,07100510, 93.9, 10.1, 34.3, 17.6, 0.0 5.279999999999999,5,a-vale-i1,2020-21,Mendon-Upton-Henry P Clough,07100179, 96.3, 6.0, 19.5, 6.8, 0.0 -4.4,4.4,a-vale-i1,2020-21,Mendon-Upton-Memorial School,07100001, 96.0, 6.5, 19.0, 9.0, 0.0 +0.9599999999999994,1,a-vale-i1,2020-21,Mendon-Upton-Nipmuc Regional High,07100510, 93.9, 10.1, 34.3, 17.6, 0.0 4.24,4.24,a-vale-i1,2020-21,Mendon-Upton-Miscoe Hill School,07100015, 96.0, 6.8, 23.4, 9.4, 0.0 -3.6399999999999997,3.64,a-vale-i1,2020-21,Methuen-Donald P Timony Grammar,01810060, 96.0, 6.6, 18.3, 10.9, 5.1 -2.6799999999999997,2.68,a-vale-i1,2020-21,Methuen-Tenney Grammar School,01810055, 95.4, 7.6, 22.6, 13.3, 6.6 +4.4,4.4,a-vale-i1,2020-21,Mendon-Upton-Memorial School,07100001, 96.0, 6.5, 19.0, 9.0, 0.0 5.16,5,a-vale-i1,2020-21,Methuen-Comprehensive Grammar School,01810050, 96.8, 5.2, 13.7, 7.1, 3.5 4.2,4.2,a-vale-i1,2020-21,Methuen-Marsh Grammar School,01810030, 96.5, 5.9, 17.7, 9.5, 6.3 +2.6799999999999997,2.68,a-vale-i1,2020-21,Methuen-Tenney Grammar School,01810055, 95.4, 7.6, 22.6, 13.3, 6.6 -4.720000000000001,1,a-vale-i1,2020-21,Methuen-Methuen High,01810505, 88.6, 18.8, 42.9, 31.8, 20.8 -4.36,4.36,a-vale-i1,2020-21,Middleborough-Henry B. Burkland Elementary School,01820008, 95.6, 7.2, 25.3, 9.1, 7.2 +3.6399999999999997,3.64,a-vale-i1,2020-21,Methuen-Donald P Timony Grammar,01810060, 96.0, 6.6, 18.3, 10.9, 5.1 4.88,4.88,a-vale-i1,2020-21,Middleborough-Mary K. Goode Elementary School,01820010, 96.3, 6.3, 19.6, 7.8, 7.6 -1.64,1.64,a-vale-i1,2020-21,Middleborough-Memorial Early Childhood Center,01820011, 94.5, 8.9, 29.5, 15.9, 13.6 +4.36,4.36,a-vale-i1,2020-21,Middleborough-Henry B. Burkland Elementary School,01820008, 95.6, 7.2, 25.3, 9.1, 7.2 -0.6799999999999997,1,a-vale-i1,2020-21,Middleborough-John T. Nichols Middle,01820305, 92.8, 12.0, 41.6, 21.7, 17.0 -0.5200000000000002,1,a-vale-i1,2020-21,Middleborough-Middleborough High,01820505, 92.5, 12.3, 40.3, 21.3, 11.4 -5.4,5,a-vale-i1,2020-21,Middleton-Howe-Manning,01840005, 96.1, 6.4, 24.4, 6.5, 20.7 +1.64,1.64,a-vale-i1,2020-21,Middleborough-Memorial Early Childhood Center,01820011, 94.5, 8.9, 29.5, 15.9, 13.6 4.8,4.8,a-vale-i1,2020-21,Middleton-Fuller Meadow,01840003, 96.1, 6.3, 22.8, 8.0, 19.4 --9.319999999999999,1,a-vale-i1,2020-21,Milford-Milford High,01850505, 86.7, 21.5, 57.2, 43.3, 20.7 +5.4,5,a-vale-i1,2020-21,Middleton-Howe-Manning,01840005, 96.1, 6.4, 24.4, 6.5, 20.7 0.3200000000000003,1,a-vale-i1,2020-21,Milford-Stacy Middle,01850305, 94.1, 9.8, 35.0, 19.2, 8.6 -0.8799999999999997,1,a-vale-i1,2020-21,Milford-Memorial,01850010, 94.5, 8.8, 34.7, 17.8, 1.3 1.7600000000000002,1.76,a-vale-i1,2020-21,Milford-Woodland,01850090, 94.9, 8.3, 30.0, 15.6, 2.7 -11.64,1,a-vale-i1,2020-21,Milford-Shining Star Early Childhood Center,01850075, 84.6, 18.8, 51.8, 49.1, 28.9 0.6400000000000006,1,a-vale-i1,2020-21,Milford-Brookside,01850065, 94.6, 8.7, 33.9, 18.4, 4.7 -4.36,4.36,a-vale-i1,2020-21,Millbury-Elmwood Street,01860017, 95.9, 6.9, 21.7, 9.1, 8.8 +0.8799999999999997,1,a-vale-i1,2020-21,Milford-Memorial,01850010, 94.5, 8.8, 34.7, 17.8, 1.3 +-9.319999999999999,1,a-vale-i1,2020-21,Milford-Milford High,01850505, 86.7, 21.5, 57.2, 43.3, 20.7 4.36,4.36,a-vale-i1,2020-21,Millbury-Raymond E. Shaw Elementary,01860025, 96.3, 6.4, 22.6, 9.1, 3.7 +4.36,4.36,a-vale-i1,2020-21,Millbury-Elmwood Street,01860017, 95.9, 6.9, 21.7, 9.1, 8.8 1.0799999999999996,1.08,a-vale-i1,2020-21,Millbury-Millbury Junior/Senior High,01860505, 93.8, 10.5, 38.8, 17.3, 14.3 +6.4,5,a-vale-i1,2020-21,Millis-Millis Middle,01870020, 96.9, 5.3, 9.1, 4.0, 0.0 5.76,5,a-vale-i1,2020-21,Millis-Clyde F Brown,01870005, 96.9, 5.1, 11.5, 5.6, 0.0 5.08,5,a-vale-i1,2020-21,Millis-Millis High School,01870505, 95.3, 7.9, 19.9, 7.3, 0.0 -6.4,5,a-vale-i1,2020-21,Millis-Millis Middle,01870020, 96.9, 5.3, 9.1, 4.0, 0.0 -4.5200000000000005,4.52,a-vale-i1,2020-21,Milton-Tucker,01890020, 96.5, 5.9, 18.8, 8.7, 8.7 6.56,5,a-vale-i1,2020-21,Milton-Glover,01890010, 97.0, 5.0, 10.5, 3.6, 1.8 -5.36,5,a-vale-i1,2020-21,Milton-Cunningham School,01890007, 96.6, 5.7, 18.4, 6.6, 1.3 -6.24,5,a-vale-i1,2020-21,Milton-Collicot,01890005, 97.2, 4.7, 9.8, 4.4, 0.2 +4.5200000000000005,4.52,a-vale-i1,2020-21,Milton-Tucker,01890020, 96.5, 5.9, 18.8, 8.7, 8.7 5.92,5,a-vale-i1,2020-21,Milton-Charles S Pierce Middle,01890410, 96.9, 5.2, 15.3, 5.2, 7.8 4.68,4.68,a-vale-i1,2020-21,Milton-Milton High,01890505, 96.2, 6.4, 16.9, 8.3, 3.6 +5.36,5,a-vale-i1,2020-21,Milton-Cunningham School,01890007, 96.6, 5.7, 18.4, 6.6, 1.3 +6.24,5,a-vale-i1,2020-21,Milton-Collicot,01890005, 97.2, 4.7, 9.8, 4.4, 0.2 3.6799999999999997,3.68,a-vale-i1,2020-21,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 95.8, 7.0, 19.2, 10.8, 3.5 --3.0400000000000005,1,a-vale-i1,2020-21,Mohawk Trail-Mohawk Trail Regional School,07170505, 91.4, 14.4, 50.2, 27.6, 2.8 -4.6,4.6,a-vale-i1,2020-21,Mohawk Trail-Colrain Central,07170010, 96.4, 5.6, 19.1, 8.5, 6.4 5.64,5,a-vale-i1,2020-21,Mohawk Trail-Buckland-Shelburne Regional,07170005, 95.5, 7.4, 23.2, 5.9, 5.5 +4.6,4.6,a-vale-i1,2020-21,Mohawk Trail-Colrain Central,07170010, 96.4, 5.6, 19.1, 8.5, 6.4 3.6,3.6,a-vale-i1,2020-21,Mohawk Trail-Sanderson Academy,07170020, 94.6, 8.5, 25.0, 11.0, 9.6 +-3.0400000000000005,1,a-vale-i1,2020-21,Mohawk Trail-Mohawk Trail Regional School,07170505, 91.4, 14.4, 50.2, 27.6, 2.8 -2.12,1,a-vale-i1,2020-21,Monomoy Regional School District-Monomoy Regional High School,07120515, 91.5, 14.0, 41.6, 25.3, 14.9 0.8,1,a-vale-i1,2020-21,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 94.2, 9.8, 39.3, 18.0, 24.6 2.0,2.0,a-vale-i1,2020-21,Monomoy Regional School District-Chatham Elementary School,07120001, 95.1, 8.0, 32.5, 15.0, 13.1 @@ -2882,31 +2882,30 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 2.8,2.8,a-vale-i1,2020-21,Mount Greylock-Mt Greylock Regional High,07150505, 95.2, 8.1, 22.9, 13.0, 1.0 4.4799999999999995,4.48,a-vale-i1,2020-21,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 95.1, 9.4, 34.5, 8.8, 0.1 4.4399999999999995,4.44,a-vale-i1,2020-21,Nahant-Johnson,01960010, 96.2, 6.3, 24.7, 8.9, 7.0 -1.1200000000000003,1.12,a-vale-i1,2020-21,Nantucket-Nantucket High,01970505, 93.0, 11.3, 33.6, 17.2, 7.5 -0.9599999999999994,1,a-vale-i1,2020-21,Nantucket-Nantucket Elementary,01970005, 93.5, 10.3, 40.1, 22.4, 6.7 1.9600000000000002,1.96,a-vale-i1,2020-21,Nantucket-Cyrus Peirce,01970010, 94.6, 8.9, 32.0, 15.1, 4.1 5.92,5,a-vale-i1,2020-21,Nantucket-Nantucket Intermediate School,01970020, 96.4, 5.9, 18.8, 5.2, 0.0 +1.1200000000000003,1.12,a-vale-i1,2020-21,Nantucket-Nantucket High,01970505, 93.0, 11.3, 33.6, 17.2, 7.5 +1.7600000000000002,1.76,a-vale-i1,2020-21,Narragansett-Templeton Elementary School,07200020, 94.6, 8.7, 28.4, 15.6, 5.0 -0.04000000000000057,1,a-vale-i1,2020-21,Narragansett-Narragansett Middle,07200305, 93.5, 10.8, 32.5, 20.1, 4.6 -1.6400000000000006,1,a-vale-i1,2020-21,Narragansett-Narragansett Regional High,07200505, 91.0, 14.8, 34.8, 24.1, 8.6 -1.7600000000000002,1.76,a-vale-i1,2020-21,Narragansett-Templeton Elementary School,07200020, 94.6, 8.7, 28.4, 15.6, 5.0 1.5599999999999994,1.56,a-vale-i1,2020-21,Nashoba-Nashoba Regional,07250505, 93.6, 10.8, 31.2, 16.1, 1.4 6.5200000000000005,5,a-vale-i1,2020-21,Nashoba-Hale,07250310, 97.7, 3.8, 8.0, 3.7, 0.0 -4.88,4.88,a-vale-i1,2020-21,Nashoba-Luther Burbank Middle School,07250305, 95.3, 7.9, 28.4, 7.8, 0.0 6.08,5,a-vale-i1,2020-21,Nashoba-Florence Sawyer School,07250025, 96.9, 5.2, 14.0, 4.8, 0.0 -5.92,5,a-vale-i1,2020-21,Nashoba-Mary Rowlandson Elementary,07250010, 96.8, 5.4, 13.1, 5.2, 0.0 6.04,5,a-vale-i1,2020-21,Nashoba-Center School,07250020, 96.7, 5.4, 16.1, 4.9, 0.0 +5.92,5,a-vale-i1,2020-21,Nashoba-Mary Rowlandson Elementary,07250010, 96.8, 5.4, 13.1, 5.2, 0.0 +4.88,4.88,a-vale-i1,2020-21,Nashoba-Luther Burbank Middle School,07250305, 95.3, 7.9, 28.4, 7.8, 0.0 6.76,5,a-vale-i1,2020-21,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 97.1, 4.7, 11.5, 3.1, 4.8 -1.5200000000000002,1.52,a-vale-i1,2020-21,Natick-Natick High,01980505, 94.1, 9.8, 29.9, 16.2, 3.2 -6.36,5,a-vale-i1,2020-21,Natick-Wilson Middle,01980310, 97.0, 5.1, 15.4, 4.1, 0.0 -7.5200000000000005,5,a-vale-i1,2020-21,Natick-Memorial,01980043, 99.0, 1.6, 2.7, 1.2, 0.0 -5.08,5,a-vale-i1,2020-21,Natick-Lilja Elementary,01980035, 96.1, 6.5, 17.8, 7.3, 0.0 -6.44,5,a-vale-i1,2020-21,Natick-J F Kennedy Middle School,01980305, 97.2, 4.7, 14.2, 3.9, 0.0 -5.76,5,a-vale-i1,2020-21,Natick-Johnson,01980031, 97.1, 4.8, 13.5, 5.6, 0.0 -6.0,5,a-vale-i1,2020-21,Natick-Bennett-Hemenway,01980005, 97.1, 4.9, 13.6, 5.0, 0.0 4.08,4.08,a-vale-i1,2020-21,Natick-Brown,01980010, 96.1, 6.3, 17.7, 9.8, 5.2 +6.44,5,a-vale-i1,2020-21,Natick-J F Kennedy Middle School,01980305, 97.2, 4.7, 14.2, 3.9, 0.0 +1.5200000000000002,1.52,a-vale-i1,2020-21,Natick-Natick High,01980505, 94.1, 9.8, 29.9, 16.2, 3.2 +6.0,5,a-vale-i1,2020-21,Natick-Bennett-Hemenway,01980005, 97.1, 4.9, 13.6, 5.0, 0.0 +6.36,5,a-vale-i1,2020-21,Natick-Wilson Middle,01980310, 97.0, 5.1, 15.4, 4.1, 0.0 +5.76,5,a-vale-i1,2020-21,Natick-Johnson,01980031, 97.1, 4.8, 13.5, 5.6, 0.0 +5.08,5,a-vale-i1,2020-21,Natick-Lilja Elementary,01980035, 96.1, 6.5, 17.8, 7.3, 0.0 +7.5200000000000005,5,a-vale-i1,2020-21,Natick-Memorial,01980043, 99.0, 1.6, 2.7, 1.2, 0.0 -2.4,1,a-vale-i1,2020-21,Nauset-Nauset Regional Middle,06600305, 91.4, 14.4, 45.8, 26.0, 13.0 -2.4799999999999995,1,a-vale-i1,2020-21,Nauset-Nauset Regional High,06600505, 91.3, 14.5, 48.0, 26.2, 7.1 -6.68,5,a-vale-i1,2020-21,Needham-Broadmeadow,01990005, 97.3, 4.5, 6.9, 3.3, 0.0 6.640000000000001,5,a-vale-i1,2020-21,Needham-Needham High,01990505, 96.8, 5.4, 13.2, 3.4, 0.8 5.68,5,a-vale-i1,2020-21,Needham-High Rock School,01990410, 96.8, 5.4, 16.8, 5.8, 0.0 6.2,5,a-vale-i1,2020-21,Needham-Pollard Middle,01990405, 97.1, 4.8, 11.1, 4.5, 0.0 @@ -2914,114 +2913,115 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.959999999999999,5,a-vale-i1,2020-21,Needham-William Mitchell,01990040, 98.3, 2.9, 5.1, 2.6, 0.0 6.720000000000001,5,a-vale-i1,2020-21,Needham-Sunita L. Williams Elementary,01990035, 97.4, 4.3, 11.5, 3.2, 0.0 5.92,5,a-vale-i1,2020-21,Needham-John Eliot,01990020, 97.3, 4.4, 10.5, 5.2, 0.0 +6.68,5,a-vale-i1,2020-21,Needham-Broadmeadow,01990005, 97.3, 4.5, 6.9, 3.3, 0.0 -3.8,1,a-vale-i1,2020-21,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 90.8, 16.3, 44.5, 29.5, 0.9 -4.08,4.08,a-vale-i1,2020-21,New Bedford-John Avery Parker,02010115, 95.2, 7.9, 30.8, 9.8, 9.4 --22.32,1,a-vale-i1,2020-21,New Bedford-Trinity Day Academy,02010510, 66.9, 52.3, 85.3, 75.8, 37.9 --16.4,1,a-vale-i1,2020-21,New Bedford-New Bedford High,02010505, 77.5, 36.2, 70.7, 61.0, 31.9 --14.4,1,a-vale-i1,2020-21,New Bedford-Roosevelt Middle School,02010415, 81.9, 29.8, 70.6, 56.0, 18.9 --2.12,1,a-vale-i1,2020-21,New Bedford-Normandin Middle School,02010410, 91.8, 13.7, 38.5, 25.3, 3.6 -10.680000000000001,1,a-vale-i1,2020-21,New Bedford-Keith Middle School,02010405, 84.9, 25.3, 61.0, 46.7, 10.3 1.8799999999999997,1.88,a-vale-i1,2020-21,New Bedford-Betsey B Winslow,02010140, 95.2, 7.9, 24.9, 15.3, 3.7 --5.24,1,a-vale-i1,2020-21,New Bedford-Abraham Lincoln,02010095, 91.0, 14.6, 52.3, 33.1, 11.0 +-14.4,1,a-vale-i1,2020-21,New Bedford-Roosevelt Middle School,02010415, 81.9, 29.8, 70.6, 56.0, 18.9 +-16.4,1,a-vale-i1,2020-21,New Bedford-New Bedford High,02010505, 77.5, 36.2, 70.7, 61.0, 31.9 +-2.12,1,a-vale-i1,2020-21,New Bedford-Normandin Middle School,02010410, 91.8, 13.7, 38.5, 25.3, 3.6 +-13.24,1,a-vale-i1,2020-21,New Bedford-Whaling City Junior/Senior High School,02010515, 84.0, 24.4, 61.2, 53.1, 60.2 +-22.32,1,a-vale-i1,2020-21,New Bedford-Trinity Day Academy,02010510, 66.9, 52.3, 85.3, 75.8, 37.9 -3.3599999999999994,1,a-vale-i1,2020-21,New Bedford-Hayden/McFadden,02010078, 92.2, 13.5, 55.5, 28.4, 17.4 -2.7599999999999993,1,a-vale-i1,2020-21,New Bedford-Ellen R Hathaway,02010075, 91.8, 13.2, 47.7, 26.9, 11.1 -9.36,1,a-vale-i1,2020-21,New Bedford-Irwin M. Jacobs Elementary School,02010070, 88.6, 17.8, 62.5, 43.4, 31.0 --4.279999999999999,1,a-vale-i1,2020-21,New Bedford-Alfred J Gomes,02010063, 90.5, 16.4, 54.5, 30.7, 22.1 -0.44000000000000056,1,a-vale-i1,2020-21,New Bedford-John B Devalles,02010050, 93.7, 10.3, 33.6, 18.9, 11.9 --6.640000000000001,1,a-vale-i1,2020-21,New Bedford-Sgt Wm H Carney Academy,02010045, 89.1, 17.8, 52.7, 36.6, 24.5 -4.8,4.8,a-vale-i1,2020-21,New Bedford-James B Congdon,02010040, 96.2, 6.3, 17.6, 8.0, 4.3 --6.519999999999999,1,a-vale-i1,2020-21,New Bedford-Elwyn G Campbell,02010020, 90.6, 15.3, 46.6, 36.3, 19.8 --0.2,1,a-vale-i1,2020-21,New Bedford-Elizabeth Carter Brooks,02010015, 93.4, 10.7, 41.0, 20.5, 11.1 --0.24000000000000057,1,a-vale-i1,2020-21,New Bedford-Charles S Ashley,02010010, 93.8, 10.0, 34.7, 20.6, 15.6 1.7200000000000002,1.72,a-vale-i1,2020-21,New Bedford-William H Taylor,02010135, 95.1, 7.9, 29.8, 15.7, 5.6 -0.9200000000000003,1,a-vale-i1,2020-21,New Bedford-Jireh Swift,02010130, 94.0, 9.5, 30.1, 22.3, 10.2 -4.44,1,a-vale-i1,2020-21,New Bedford-Thomas R Rodman,02010125, 91.5, 13.8, 48.3, 31.1, 8.6 -5.119999999999999,1,a-vale-i1,2020-21,New Bedford-Renaissance Community Innovation School,02010124, 90.8, 14.9, 46.0, 32.8, 14.9 0.6400000000000006,1,a-vale-i1,2020-21,New Bedford-Casimir Pulaski,02010123, 94.2, 9.4, 33.2, 18.4, 12.6 +4.08,4.08,a-vale-i1,2020-21,New Bedford-John Avery Parker,02010115, 95.2, 7.9, 30.8, 9.8, 9.4 -8.280000000000001,1,a-vale-i1,2020-21,New Bedford-Carlos Pacheco,02010105, 88.7, 18.4, 57.7, 40.7, 14.0 --13.24,1,a-vale-i1,2020-21,New Bedford-Whaling City Junior/Senior High School,02010515, 84.0, 24.4, 61.2, 53.1, 60.2 +-5.24,1,a-vale-i1,2020-21,New Bedford-Abraham Lincoln,02010095, 91.0, 14.6, 52.3, 33.1, 11.0 +-0.24000000000000057,1,a-vale-i1,2020-21,New Bedford-Charles S Ashley,02010010, 93.8, 10.0, 34.7, 20.6, 15.6 +-0.2,1,a-vale-i1,2020-21,New Bedford-Elizabeth Carter Brooks,02010015, 93.4, 10.7, 41.0, 20.5, 11.1 +-6.519999999999999,1,a-vale-i1,2020-21,New Bedford-Elwyn G Campbell,02010020, 90.6, 15.3, 46.6, 36.3, 19.8 +4.8,4.8,a-vale-i1,2020-21,New Bedford-James B Congdon,02010040, 96.2, 6.3, 17.6, 8.0, 4.3 +-6.640000000000001,1,a-vale-i1,2020-21,New Bedford-Sgt Wm H Carney Academy,02010045, 89.1, 17.8, 52.7, 36.6, 24.5 +0.44000000000000056,1,a-vale-i1,2020-21,New Bedford-John B Devalles,02010050, 93.7, 10.3, 33.6, 18.9, 11.9 +-4.279999999999999,1,a-vale-i1,2020-21,New Bedford-Alfred J Gomes,02010063, 90.5, 16.4, 54.5, 30.7, 22.1 -1.8799999999999997,1,a-vale-i1,2020-21,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 92.5, 12.5, 47.0, 24.7, 4.3 2.04,2.04,a-vale-i1,2020-21,New Salem-Wendell-Swift River,07280015, 95.3, 7.5, 23.1, 14.9, 0.7 -6.76,5,a-vale-i1,2020-21,Newburyport-Edward G. Molin Elementary School,02040030, 97.3, 4.5, 12.3, 3.1, 0.0 5.6,5,a-vale-i1,2020-21,Newburyport-Rupert A Nock Middle,02040305, 96.7, 5.5, 13.4, 6.0, 0.0 -6.44,5,a-vale-i1,2020-21,Newburyport-Newburyport High,02040505, 97.5, 4.2, 8.2, 3.9, 0.2 +6.76,5,a-vale-i1,2020-21,Newburyport-Edward G. Molin Elementary School,02040030, 97.3, 4.5, 12.3, 3.1, 0.0 5.4,5,a-vale-i1,2020-21,Newburyport-Francis T Bresnahan Elementary,02040005, 96.8, 5.3, 16.8, 6.5, 0.0 --2.0799999999999996,1,a-vale-i1,2020-21,Newton-Newton Early Childhood Program,02070108, 92.2, 10.7, 26.7, 25.2, 2.4 -6.279999999999999,5,a-vale-i1,2020-21,Newton-Williams,02070125, 97.6, 4.0, 8.3, 4.3, 0.0 -6.88,5,a-vale-i1,2020-21,Newton-Franklin,02070055, 97.6, 4.0, 8.2, 2.8, 0.0 -5.96,5,a-vale-i1,2020-21,Newton-Countryside,02070040, 97.4, 4.3, 10.6, 5.1, 0.3 -5.4799999999999995,5,a-vale-i1,2020-21,Newton-Cabot,02070025, 97.0, 5.0, 11.8, 6.3, 1.8 -6.36,5,a-vale-i1,2020-21,Newton-C C Burr,02070020, 97.5, 4.3, 8.5, 4.1, 1.8 -5.12,5,a-vale-i1,2020-21,Newton-Bowen,02070015, 96.8, 5.2, 11.6, 7.2, 0.3 +6.44,5,a-vale-i1,2020-21,Newburyport-Newburyport High,02040505, 97.5, 4.2, 8.2, 3.9, 0.2 7.44,5,a-vale-i1,2020-21,Newton-A E Angier,02070005, 97.8, 3.8, 6.4, 1.4, 0.2 -6.4,5,a-vale-i1,2020-21,Newton-Newton South High,02070510, 97.7, 3.9, 8.6, 4.0, 1.7 -5.5200000000000005,5,a-vale-i1,2020-21,Newton-Newton North High,02070505, 97.3, 4.5, 11.9, 6.2, 3.2 -5.8,5,a-vale-i1,2020-21,Newton-Oak Hill Middle,02070320, 96.8, 5.3, 15.5, 5.5, 3.0 -6.24,5,a-vale-i1,2020-21,Newton-Underwood,02070115, 97.1, 4.9, 11.6, 4.4, 1.3 -4.08,4.08,a-vale-i1,2020-21,Newton-F A Day Middle,02070315, 95.9, 7.1, 23.3, 9.8, 0.0 -6.4,5,a-vale-i1,2020-21,Newton-Charles E Brown Middle,02070310, 97.5, 4.2, 9.4, 4.0, 0.8 -2.88,2.88,a-vale-i1,2020-21,Newton-Bigelow Middle,02070305, 95.3, 7.9, 23.4, 12.8, 5.6 -6.6,5,a-vale-i1,2020-21,Newton-Memorial Spaulding,02070105, 96.8, 5.3, 12.1, 3.5, 0.2 -7.0,5,a-vale-i1,2020-21,Newton-Peirce,02070100, 97.9, 3.5, 10.0, 2.5, 0.0 -5.84,5,a-vale-i1,2020-21,Newton-Mason-Rice,02070080, 97.1, 4.9, 12.9, 5.4, 0.8 -7.08,5,a-vale-i1,2020-21,Newton-John Ward,02070120, 97.3, 4.5, 7.4, 2.3, 0.0 -5.64,5,a-vale-i1,2020-21,Newton-Zervas,02070130, 97.1, 4.9, 11.3, 5.9, 2.7 -6.04,5,a-vale-i1,2020-21,Newton-Horace Mann,02070075, 97.3, 4.4, 9.8, 4.9, 0.0 +5.12,5,a-vale-i1,2020-21,Newton-Bowen,02070015, 96.8, 5.2, 11.6, 7.2, 0.3 +6.36,5,a-vale-i1,2020-21,Newton-C C Burr,02070020, 97.5, 4.3, 8.5, 4.1, 1.8 +5.4799999999999995,5,a-vale-i1,2020-21,Newton-Cabot,02070025, 97.0, 5.0, 11.8, 6.3, 1.8 +5.96,5,a-vale-i1,2020-21,Newton-Countryside,02070040, 97.4, 4.3, 10.6, 5.1, 0.3 +6.88,5,a-vale-i1,2020-21,Newton-Franklin,02070055, 97.6, 4.0, 8.2, 2.8, 0.0 2.6799999999999997,2.68,a-vale-i1,2020-21,Newton-Lincoln-Eliot,02070070, 95.4, 7.8, 22.6, 13.3, 3.7 +6.04,5,a-vale-i1,2020-21,Newton-Horace Mann,02070075, 97.3, 4.4, 9.8, 4.9, 0.0 +5.84,5,a-vale-i1,2020-21,Newton-Mason-Rice,02070080, 97.1, 4.9, 12.9, 5.4, 0.8 +7.0,5,a-vale-i1,2020-21,Newton-Peirce,02070100, 97.9, 3.5, 10.0, 2.5, 0.0 +6.6,5,a-vale-i1,2020-21,Newton-Memorial Spaulding,02070105, 96.8, 5.3, 12.1, 3.5, 0.2 +-2.0799999999999996,1,a-vale-i1,2020-21,Newton-Newton Early Childhood Program,02070108, 92.2, 10.7, 26.7, 25.2, 2.4 +4.08,4.08,a-vale-i1,2020-21,Newton-F A Day Middle,02070315, 95.9, 7.1, 23.3, 9.8, 0.0 +5.8,5,a-vale-i1,2020-21,Newton-Oak Hill Middle,02070320, 96.8, 5.3, 15.5, 5.5, 3.0 +5.5200000000000005,5,a-vale-i1,2020-21,Newton-Newton North High,02070505, 97.3, 4.5, 11.9, 6.2, 3.2 +6.4,5,a-vale-i1,2020-21,Newton-Newton South High,02070510, 97.7, 3.9, 8.6, 4.0, 1.7 +6.24,5,a-vale-i1,2020-21,Newton-Underwood,02070115, 97.1, 4.9, 11.6, 4.4, 1.3 +7.08,5,a-vale-i1,2020-21,Newton-John Ward,02070120, 97.3, 4.5, 7.4, 2.3, 0.0 +6.279999999999999,5,a-vale-i1,2020-21,Newton-Williams,02070125, 97.6, 4.0, 8.3, 4.3, 0.0 +5.64,5,a-vale-i1,2020-21,Newton-Zervas,02070130, 97.1, 4.9, 11.3, 5.9, 2.7 +2.88,2.88,a-vale-i1,2020-21,Newton-Bigelow Middle,02070305, 95.3, 7.9, 23.4, 12.8, 5.6 +6.4,5,a-vale-i1,2020-21,Newton-Charles E Brown Middle,02070310, 97.5, 4.2, 9.4, 4.0, 0.8 7.0,5,a-vale-i1,2020-21,Norfolk-Freeman-Kennedy School,02080005, 97.9, 3.5, 7.1, 2.5, 0.0 6.4799999999999995,5,a-vale-i1,2020-21,Norfolk-H Olive Day,02080015, 97.0, 5.0, 13.0, 3.8, 0.2 1.6,1.6,a-vale-i1,2020-21,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 94.0, 10.1, 38.7, 16.0, 10.1 -17.119999999999997,1,a-vale-i1,2020-21,North Adams-Drury High,02090505, 76.3, 38.5, 72.0, 62.8, 5.9 --7.76,1,a-vale-i1,2020-21,North Adams-Colegrove Park Elementary,02090008, 89.8, 16.5, 50.5, 39.4, 9.0 --3.1599999999999993,1,a-vale-i1,2020-21,North Adams-Greylock,02090015, 91.1, 14.6, 36.9, 27.9, 10.3 -11.52,1,a-vale-i1,2020-21,North Adams-Brayton,02090035, 87.6, 20.0, 59.6, 48.8, 11.5 +-3.1599999999999993,1,a-vale-i1,2020-21,North Adams-Greylock,02090015, 91.1, 14.6, 36.9, 27.9, 10.3 +-7.76,1,a-vale-i1,2020-21,North Adams-Colegrove Park Elementary,02090008, 89.8, 16.5, 50.5, 39.4, 9.0 +2.84,2.84,a-vale-i1,2020-21,North Andover-North Andover High,02110505, 94.8, 8.7, 24.9, 12.9, 8.2 +2.6399999999999997,2.64,a-vale-i1,2020-21,North Andover-North Andover Middle,02110305, 94.7, 9.0, 29.6, 13.4, 16.5 +4.36,4.36,a-vale-i1,2020-21,North Andover-Thomson,02110020, 96.3, 6.1, 21.6, 9.1, 3.7 +4.36,4.36,a-vale-i1,2020-21,North Andover-Atkinson,02110001, 96.3, 6.2, 22.4, 9.1, 2.7 7.4,5,a-vale-i1,2020-21,North Andover-Annie L Sargent School,02110018, 97.5, 4.2, 9.1, 1.5, 0.7 6.279999999999999,5,a-vale-i1,2020-21,North Andover-Kittredge,02110015, 97.1, 4.9, 11.7, 4.3, 2.6 7.08,5,a-vale-i1,2020-21,North Andover-Franklin,02110010, 97.8, 3.8, 9.7, 2.3, 1.0 2.0,2.0,a-vale-i1,2020-21,North Andover-Anne Bradstreet Early Childhood Center,02110005, 94.7, 8.7, 32.0, 15.0, 2.1 -4.36,4.36,a-vale-i1,2020-21,North Andover-Thomson,02110020, 96.3, 6.1, 21.6, 9.1, 3.7 -2.6399999999999997,2.64,a-vale-i1,2020-21,North Andover-North Andover Middle,02110305, 94.7, 9.0, 29.6, 13.4, 16.5 -4.36,4.36,a-vale-i1,2020-21,North Andover-Atkinson,02110001, 96.3, 6.2, 22.4, 9.1, 2.7 -2.84,2.84,a-vale-i1,2020-21,North Andover-North Andover High,02110505, 94.8, 8.7, 24.9, 12.9, 8.2 -5.96,5,a-vale-i1,2020-21,North Attleborough-Amvet Boulevard,02120007, 97.5, 4.1, 10.4, 5.1, 3.1 -5.68,5,a-vale-i1,2020-21,North Attleborough-Falls,02120010, 97.9, 3.5, 7.9, 5.8, 2.6 -6.720000000000001,5,a-vale-i1,2020-21,North Attleborough-Joseph W Martin Jr Elementary,02120013, 97.9, 3.5, 8.0, 3.2, 4.4 --1.8,1,a-vale-i1,2020-21,North Attleborough-North Attleborough Early Learning Center,02120020, 93.1, 10.0, 35.9, 24.5, 18.8 -7.8,5,a-vale-i1,2020-21,North Attleborough-Roosevelt Avenue,02120015, 98.1, 3.1, 6.0, 0.5, 0.0 -0.44000000000000056,1,a-vale-i1,2020-21,North Attleborough-North Attleboro High,02120505, 92.2, 13.0, 36.9, 18.9, 12.4 2.28,2.28,a-vale-i1,2020-21,North Attleborough-Community,02120030, 94.6, 8.8, 31.2, 14.3, 11.7 4.96,4.96,a-vale-i1,2020-21,North Attleborough-North Attleborough Middle,02120305, 96.6, 5.7, 14.9, 7.6, 4.2 --6.480000000000001,1,a-vale-i1,2020-21,North Brookfield-North Brookfield High,02150505, 89.3, 17.2, 59.4, 36.2, 57.6 +0.44000000000000056,1,a-vale-i1,2020-21,North Attleborough-North Attleboro High,02120505, 92.2, 13.0, 36.9, 18.9, 12.4 +7.8,5,a-vale-i1,2020-21,North Attleborough-Roosevelt Avenue,02120015, 98.1, 3.1, 6.0, 0.5, 0.0 +5.96,5,a-vale-i1,2020-21,North Attleborough-Amvet Boulevard,02120007, 97.5, 4.1, 10.4, 5.1, 3.1 +-1.8,1,a-vale-i1,2020-21,North Attleborough-North Attleborough Early Learning Center,02120020, 93.1, 10.0, 35.9, 24.5, 18.8 +5.68,5,a-vale-i1,2020-21,North Attleborough-Falls,02120010, 97.9, 3.5, 7.9, 5.8, 2.6 +6.720000000000001,5,a-vale-i1,2020-21,North Attleborough-Joseph W Martin Jr Elementary,02120013, 97.9, 3.5, 8.0, 3.2, 4.4 0.7200000000000003,1,a-vale-i1,2020-21,North Brookfield-North Brookfield Elementary,02150015, 93.9, 10.1, 35.1, 18.2, 16.6 +-6.480000000000001,1,a-vale-i1,2020-21,North Brookfield-North Brookfield High,02150505, 89.3, 17.2, 59.4, 36.2, 57.6 -4.959999999999999,1,a-vale-i1,2020-21,North Middlesex-Squannacook Early Childhood Center,07350002, 92.0, 9.8, 32.4, 32.4, 19.1 -5.92,5,a-vale-i1,2020-21,North Middlesex-Nissitissit Middle School,07350310, 96.9, 5.1, 16.1, 5.2, 2.3 6.36,5,a-vale-i1,2020-21,North Middlesex-Varnum Brook,07350035, 97.3, 4.3, 9.9, 4.1, 3.3 0.24000000000000057,1,a-vale-i1,2020-21,North Middlesex-Hawthorne Brook,07350030, 94.0, 10.0, 33.6, 19.4, 6.7 4.68,4.68,a-vale-i1,2020-21,North Middlesex-Ashby Elementary,07350010, 95.5, 7.4, 20.5, 8.3, 3.2 -5.279999999999999,5,a-vale-i1,2020-21,North Middlesex-Spaulding Memorial,07350005, 96.6, 5.6, 17.1, 6.8, 2.4 +5.92,5,a-vale-i1,2020-21,North Middlesex-Nissitissit Middle School,07350310, 96.9, 5.1, 16.1, 5.2, 2.3 0.12000000000000029,1,a-vale-i1,2020-21,North Middlesex-North Middlesex Regional,07350505, 92.4, 12.5, 37.4, 19.7, 14.6 -7.4799999999999995,5,a-vale-i1,2020-21,North Reading-L D Batchelder,02170005, 98.2, 3.1, 4.0, 1.3, 0.0 -6.36,5,a-vale-i1,2020-21,North Reading-E Ethel Little School,02170003, 97.5, 4.2, 11.6, 4.1, 8.8 +5.279999999999999,5,a-vale-i1,2020-21,North Middlesex-Spaulding Memorial,07350005, 96.6, 5.6, 17.1, 6.8, 2.4 5.279999999999999,5,a-vale-i1,2020-21,North Reading-North Reading High,02170505, 96.6, 5.8, 12.5, 6.8, 0.0 +6.36,5,a-vale-i1,2020-21,North Reading-E Ethel Little School,02170003, 97.5, 4.2, 11.6, 4.1, 8.8 +7.4799999999999995,5,a-vale-i1,2020-21,North Reading-L D Batchelder,02170005, 98.2, 3.1, 4.0, 1.3, 0.0 6.56,5,a-vale-i1,2020-21,North Reading-North Reading Middle,02170305, 97.3, 4.6, 10.5, 3.6, 0.9 7.2,5,a-vale-i1,2020-21,North Reading-J Turner Hood,02170010, 97.9, 3.4, 9.1, 2.0, 0.0 -1.4400000000000006,1.44,a-vale-i1,2020-21,Northampton-Leeds,02100025, 95.0, 8.0, 24.0, 16.4, 5.9 -0.8,1,a-vale-i1,2020-21,Northampton-Bridge Street,02100005, 92.8, 11.3, 34.7, 22.0, 4.9 -4.24,4.24,a-vale-i1,2020-21,Northampton-Northampton High,02100505, 95.3, 7.8, 17.8, 9.4, 3.0 2.56,2.56,a-vale-i1,2020-21,Northampton-Jackson Street,02100020, 95.4, 7.4, 24.6, 13.6, 3.3 +1.4400000000000006,1.44,a-vale-i1,2020-21,Northampton-Leeds,02100025, 95.0, 8.0, 24.0, 16.4, 5.9 1.8,1.8,a-vale-i1,2020-21,Northampton-R. K. Finn Ryan Road,02100029, 93.4, 11.0, 26.8, 15.5, 2.5 2.72,2.72,a-vale-i1,2020-21,Northampton-John F Kennedy Middle School,02100410, 94.8, 8.6, 25.3, 13.2, 3.0 +4.24,4.24,a-vale-i1,2020-21,Northampton-Northampton High,02100505, 95.3, 7.8, 17.8, 9.4, 3.0 -2.6,1,a-vale-i1,2020-21,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 92.2, 12.9, 47.3, 26.5, 18.9 -1.8799999999999997,1,a-vale-i1,2020-21,Northboro-Southboro-Algonquin Regional High,07300505, 92.6, 12.5, 45.9, 24.7, 0.1 -3.2,3.2,a-vale-i1,2020-21,Northborough-Fannie E Proctor,02130015, 96.2, 6.2, 21.1, 12.0, 0.0 5.36,5,a-vale-i1,2020-21,Northborough-Marguerite E Peaslee,02130014, 96.3, 6.1, 19.3, 6.6, 0.0 -3.2399999999999998,3.24,a-vale-i1,2020-21,Northborough-Robert E. Melican Middle School,02130305, 95.7, 7.2, 25.0, 11.9, 0.0 5.92,5,a-vale-i1,2020-21,Northborough-Lincoln Street,02130003, 96.9, 5.1, 14.5, 5.2, 0.0 3.84,3.84,a-vale-i1,2020-21,Northborough-Marion E Zeh,02130020, 96.2, 6.2, 15.8, 10.4, 0.0 +3.2399999999999998,3.24,a-vale-i1,2020-21,Northborough-Robert E. Melican Middle School,02130305, 95.7, 7.2, 25.0, 11.9, 0.0 +3.2,3.2,a-vale-i1,2020-21,Northborough-Fannie E Proctor,02130015, 96.2, 6.2, 21.1, 12.0, 0.0 0.5599999999999994,1,a-vale-i1,2020-21,Northbridge-Northbridge High,02140505, 93.3, 11.1, 28.6, 18.6, 7.1 +1.5200000000000002,1.52,a-vale-i1,2020-21,Northbridge-W Edward Balmer,02140001, 94.6, 8.8, 31.8, 16.2, 4.0 -1.8799999999999997,1,a-vale-i1,2020-21,Northbridge-Northbridge Elementary,02140005, 92.7, 11.2, 34.1, 24.7, 7.3 0.4799999999999997,1,a-vale-i1,2020-21,Northbridge-Northbridge Middle,02140305, 94.2, 9.7, 29.8, 18.8, 5.2 -1.5200000000000002,1.52,a-vale-i1,2020-21,Northbridge-W Edward Balmer,02140001, 94.6, 8.8, 31.8, 16.2, 4.0 0.12000000000000029,1,a-vale-i1,2020-21,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 93.6, 11.0, 34.5, 19.7, 7.8 -1.6,1,a-vale-i1,2020-21,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 92.1, 12.9, 42.0, 24.0, 16.8 1.2,1.2,a-vale-i1,2020-21,Norton-Norton Middle,02180305, 93.9, 10.4, 35.6, 17.0, 15.0 @@ -3029,18 +3029,18 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.84,5,a-vale-i1,2020-21,Norton-J C Solmonese,02180015, 96.6, 5.5, 14.8, 5.4, 6.4 4.5200000000000005,4.52,a-vale-i1,2020-21,Norton-L G Nourse Elementary,02180010, 96.2, 6.2, 19.1, 8.7, 7.2 0.4799999999999997,1,a-vale-i1,2020-21,Norton-Norton High,02180505, 93.2, 11.3, 36.9, 18.8, 6.7 -6.640000000000001,5,a-vale-i1,2020-21,Norwell-Grace Farrar Cole,02190005, 97.3, 4.5, 10.3, 3.4, 8.4 -4.720000000000001,4.72,a-vale-i1,2020-21,Norwell-Norwell High,02190505, 95.0, 8.2, 27.5, 8.2, 8.2 6.12,5,a-vale-i1,2020-21,Norwell-William G Vinal,02190020, 96.4, 5.9, 20.7, 4.7, 1.9 3.6,3.6,a-vale-i1,2020-21,Norwell-Norwell Middle School,02190405, 95.2, 8.1, 27.7, 11.0, 8.6 -1.3200000000000003,1.32,a-vale-i1,2020-21,Norwood-George F. Willett,02200075, 94.6, 8.5, 25.2, 16.7, 15.9 -1.5200000000000002,1.52,a-vale-i1,2020-21,Norwood-Dr. Philip O. Coakley Middle School,02200305, 94.2, 9.7, 30.0, 16.2, 10.9 +4.720000000000001,4.72,a-vale-i1,2020-21,Norwell-Norwell High,02190505, 95.0, 8.2, 27.5, 8.2, 8.2 +6.640000000000001,5,a-vale-i1,2020-21,Norwell-Grace Farrar Cole,02190005, 97.3, 4.5, 10.3, 3.4, 8.4 3.56,3.56,a-vale-i1,2020-21,Norwood-Norwood High,02200505, 95.4, 7.6, 17.3, 11.1, 6.8 -5.6,5,a-vale-i1,2020-21,Norwood-Charles J Prescott,02200025, 97.3, 4.4, 14.2, 6.0, 6.7 +1.5200000000000002,1.52,a-vale-i1,2020-21,Norwood-Dr. Philip O. Coakley Middle School,02200305, 94.2, 9.7, 30.0, 16.2, 10.9 +1.3200000000000003,1.32,a-vale-i1,2020-21,Norwood-George F. Willett,02200075, 94.6, 8.5, 25.2, 16.7, 15.9 +4.279999999999999,4.28,a-vale-i1,2020-21,Norwood-John P Oldham,02200020, 96.5, 5.8, 19.0, 9.3, 8.5 5.08,5,a-vale-i1,2020-21,Norwood-F A Cleveland,02200015, 96.5, 5.8, 18.2, 7.3, 7.3 4.92,4.92,a-vale-i1,2020-21,Norwood-Cornelius M Callahan,02200010, 96.5, 5.9, 21.3, 7.7, 10.0 0.6,1,a-vale-i1,2020-21,Norwood-Balch,02200005, 94.2, 9.5, 33.1, 18.5, 11.8 -4.279999999999999,4.28,a-vale-i1,2020-21,Norwood-John P Oldham,02200020, 96.5, 5.8, 19.0, 9.3, 8.5 +5.6,5,a-vale-i1,2020-21,Norwood-Charles J Prescott,02200025, 97.3, 4.4, 14.2, 6.0, 6.7 2.28,2.28,a-vale-i1,2020-21,Oak Bluffs-Oak Bluffs Elementary,02210005, 94.7, 8.4, 32.2, 14.3, 9.9 5.720000000000001,5,a-vale-i1,2020-21,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 96.4, 6.3, 22.7, 5.7, 4.8 1.8799999999999997,1.88,a-vale-i1,2020-21,Old Rochester-Old Rochester Regional Jr High,07400405, 94.6, 9.0, 31.1, 15.3, 2.8 @@ -3049,36 +3049,36 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 0.6,1,a-vale-i1,2020-21,Orange-Dexter Park,02230010, 94.4, 9.5, 27.0, 18.5, 3.0 -1.2,1,a-vale-i1,2020-21,Orange-Fisher Hill,02230015, 92.1, 13.0, 39.2, 23.0, 0.0 3.56,3.56,a-vale-i1,2020-21,Orleans-Orleans Elementary,02240005, 95.0, 8.4, 35.0, 11.1, 22.8 -3.8,3.8,a-vale-i1,2020-21,Oxford-Oxford Middle,02260405, 95.6, 7.3, 22.4, 10.5, 1.1 --0.9599999999999994,1,a-vale-i1,2020-21,Oxford-Oxford High,02260505, 92.0, 13.3, 34.5, 22.4, 8.7 3.0,3.0,a-vale-i1,2020-21,Oxford-Clara Barton,02260005, 95.3, 7.6, 21.3, 12.5, 3.5 3.6799999999999997,3.68,a-vale-i1,2020-21,Oxford-Alfred M Chaffee,02260010, 95.7, 6.7, 20.7, 10.8, 2.3 --0.07999999999999971,1,a-vale-i1,2020-21,Palmer-Old Mill Pond,02270008, 93.9, 9.7, 27.8, 20.2, 6.9 +3.8,3.8,a-vale-i1,2020-21,Oxford-Oxford Middle,02260405, 95.6, 7.3, 22.4, 10.5, 1.1 +-0.9599999999999994,1,a-vale-i1,2020-21,Oxford-Oxford High,02260505, 92.0, 13.3, 34.5, 22.4, 8.7 1.64,1.64,a-vale-i1,2020-21,Palmer-Palmer High,02270505, 94.3, 9.2, 21.1, 15.9, 3.4 +-0.07999999999999971,1,a-vale-i1,2020-21,Palmer-Old Mill Pond,02270008, 93.9, 9.7, 27.8, 20.2, 6.9 6.12,5,a-vale-i1,2020-21,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 95.9, 6.8, 22.6, 4.7, 0.0 -17.04,1,a-vale-i1,2020-21,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 71.9, 45.2, 73.0, 62.6, 11.1 +-0.5599999999999994,1,a-vale-i1,2020-21,Peabody-John E. McCarthy,02290016, 93.7, 10.0, 36.0, 21.4, 22.9 +-0.24000000000000057,1,a-vale-i1,2020-21,Peabody-Center,02290015, 93.6, 10.5, 36.6, 20.6, 19.4 +-2.3599999999999994,1,a-vale-i1,2020-21,Peabody-Thomas Carroll,02290010, 92.0, 13.0, 46.3, 25.9, 24.8 +4.16,4.16,a-vale-i1,2020-21,Peabody-John E Burke,02290007, 95.4, 7.7, 24.0, 9.6, 18.0 +1.6,1.6,a-vale-i1,2020-21,Peabody-Captain Samuel Brown,02290005, 94.7, 8.8, 28.7, 16.0, 12.3 +-3.72,1,a-vale-i1,2020-21,Peabody-William A Welch Sr,02290027, 92.0, 13.0, 46.0, 29.3, 21.3 +3.6399999999999997,3.64,a-vale-i1,2020-21,Peabody-South Memorial,02290035, 95.6, 7.3, 21.0, 10.9, 12.4 5.68,5,a-vale-i1,2020-21,Peabody-West Memorial,02290045, 96.2, 6.2, 16.9, 5.8, 9.5 -9.6,1,a-vale-i1,2020-21,Peabody-J Henry Higgins Middle,02290305, 88.4, 19.3, 58.8, 44.0, 20.3 -13.12,1,a-vale-i1,2020-21,Peabody-Peabody Veterans Memorial High,02290510, 84.0, 26.2, 66.4, 52.8, 32.5 -1.6,1.6,a-vale-i1,2020-21,Peabody-Captain Samuel Brown,02290005, 94.7, 8.8, 28.7, 16.0, 12.3 -4.16,4.16,a-vale-i1,2020-21,Peabody-John E Burke,02290007, 95.4, 7.7, 24.0, 9.6, 18.0 --2.3599999999999994,1,a-vale-i1,2020-21,Peabody-Thomas Carroll,02290010, 92.0, 13.0, 46.3, 25.9, 24.8 --0.24000000000000057,1,a-vale-i1,2020-21,Peabody-Center,02290015, 93.6, 10.5, 36.6, 20.6, 19.4 --0.5599999999999994,1,a-vale-i1,2020-21,Peabody-John E. McCarthy,02290016, 93.7, 10.0, 36.0, 21.4, 22.9 --3.72,1,a-vale-i1,2020-21,Peabody-William A Welch Sr,02290027, 92.0, 13.0, 46.0, 29.3, 21.3 -3.6399999999999997,3.64,a-vale-i1,2020-21,Peabody-South Memorial,02290035, 95.6, 7.3, 21.0, 10.9, 12.4 2.28,2.28,a-vale-i1,2020-21,Pelham-Pelham Elementary,02300005, 96.0, 6.3, 17.9, 14.3, 0.0 -2.7599999999999993,1,a-vale-i1,2020-21,Pembroke-Pembroke High School,02310505, 91.1, 15.0, 50.2, 26.9, 1.5 -4.5200000000000005,4.52,a-vale-i1,2020-21,Pembroke-Bryantville Elementary,02310003, 95.5, 7.5, 23.6, 8.7, 11.4 -4.2,4.2,a-vale-i1,2020-21,Pembroke-Hobomock Elementary,02310010, 95.8, 7.1, 21.1, 9.5, 12.8 -3.4799999999999995,3.48,a-vale-i1,2020-21,Pembroke-North Pembroke Elementary,02310015, 95.4, 7.7, 25.4, 11.3, 2.6 -4.4,1,a-vale-i1,2020-21,Pembroke-Pembroke Community Middle School,02310305, 91.4, 14.5, 49.9, 31.0, 0.0 -6.4799999999999995,5,a-vale-i1,2020-21,Pentucket-Elmer S Bagnall,07450005, 97.0, 5.0, 13.4, 3.8, 2.3 -5.16,5,a-vale-i1,2020-21,Pentucket-Pentucket Regional Middle,07450405, 96.2, 6.5, 20.3, 7.1, 4.0 -7.359999999999999,5,a-vale-i1,2020-21,Pentucket-Dr John C Page School,07450015, 97.7, 3.9, 10.2, 1.6, 0.7 +3.4799999999999995,3.48,a-vale-i1,2020-21,Pembroke-North Pembroke Elementary,02310015, 95.4, 7.7, 25.4, 11.3, 2.6 +4.2,4.2,a-vale-i1,2020-21,Pembroke-Hobomock Elementary,02310010, 95.8, 7.1, 21.1, 9.5, 12.8 +4.5200000000000005,4.52,a-vale-i1,2020-21,Pembroke-Bryantville Elementary,02310003, 95.5, 7.5, 23.6, 8.7, 11.4 4.16,4.16,a-vale-i1,2020-21,Pentucket-Pentucket Regional Sr High,07450505, 95.6, 7.3, 22.2, 9.6, 3.9 -7.0,5,a-vale-i1,2020-21,Pentucket-Helen R Donaghue School,07450010, 97.2, 4.6, 11.3, 2.5, 0.8 +5.16,5,a-vale-i1,2020-21,Pentucket-Pentucket Regional Middle,07450405, 96.2, 6.5, 20.3, 7.1, 4.0 6.12,5,a-vale-i1,2020-21,Pentucket-Dr Frederick N Sweetsir,07450020, 96.8, 5.2, 14.0, 4.7, 1.4 +7.359999999999999,5,a-vale-i1,2020-21,Pentucket-Dr John C Page School,07450015, 97.7, 3.9, 10.2, 1.6, 0.7 +7.0,5,a-vale-i1,2020-21,Pentucket-Helen R Donaghue School,07450010, 97.2, 4.6, 11.3, 2.5, 0.8 +6.4799999999999995,5,a-vale-i1,2020-21,Pentucket-Elmer S Bagnall,07450005, 97.0, 5.0, 13.4, 3.8, 2.3 6.04,5,a-vale-i1,2020-21,Petersham-Petersham Center,02340005, 97.4, 4.5, 13.1, 4.9, 0.0 -32.0,1,a-vale-i1,2020-21,Phoenix Academy Public Charter High School Lawrence (District)-Phoenix Academy Public Charter High School Lawrence,35180505, 30.7, 105.7, 99.4, 100.0, 72.7 -31.839999999999996,1,a-vale-i1,2020-21,Phoenix Academy Public Charter High School Springfield (District)-Phoenix Academy Public Charter High School Springfield,35080505, 33.0, 102.0, 99.1, 99.6, 60.4 @@ -3086,188 +3086,188 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.76,5,a-vale-i1,2020-21,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 97.3, 4.8, 10.6, 3.1, 0.9 4.720000000000001,4.72,a-vale-i1,2020-21,Pioneer Charter School of Science II (PCSS-II) (District)-Pioneer Charter School of Science II (PCSS-II),35060505, 96.5, 6.2, 22.6, 8.2, 0.3 5.4799999999999995,5,a-vale-i1,2020-21,Pioneer Valley-Northfield Elementary,07500008, 96.4, 5.8, 16.1, 6.3, 4.0 -5.720000000000001,5,a-vale-i1,2020-21,Pioneer Valley-Pioneer Valley Regional,07500505, 97.3, 4.5, 9.3, 5.7, 2.1 5.84,5,a-vale-i1,2020-21,Pioneer Valley-Bernardston Elementary,07500006, 97.0, 4.9, 11.4, 5.4, 1.6 +5.720000000000001,5,a-vale-i1,2020-21,Pioneer Valley-Pioneer Valley Regional,07500505, 97.3, 4.5, 9.3, 5.7, 2.1 6.16,5,a-vale-i1,2020-21,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 97.4, 4.4, 13.7, 4.6, 0.4 3.12,3.12,a-vale-i1,2020-21,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 95.2, 7.9, 24.4, 12.2, 0.0 -21.32,1,a-vale-i1,2020-21,Pittsfield-Eagle Education Academy,02360525, 78.6, 39.5, 80.0, 73.3, 0.0 +0.7599999999999995,1,a-vale-i1,2020-21,Pittsfield-Allendale,02360010, 94.2, 9.7, 35.1, 18.1, 3.0 +-12.0,1,a-vale-i1,2020-21,Pittsfield-Crosby Educational Academy,02360030, 86.8, 19.8, 68.2, 50.0, 0.0 +-0.6400000000000006,1,a-vale-i1,2020-21,Pittsfield-Egremont,02360035, 92.1, 13.1, 35.1, 21.6, 0.7 +2.3200000000000003,2.32,a-vale-i1,2020-21,Pittsfield-Robert T. Capeless Elementary School,02360045, 95.4, 7.5, 23.7, 14.2, 0.0 +-8.76,1,a-vale-i1,2020-21,Pittsfield-Morningside Community School,02360055, 88.4, 19.2, 57.5, 41.9, 3.4 +-9.080000000000002,1,a-vale-i1,2020-21,Pittsfield-Crosby,02360065, 86.4, 21.6, 56.0, 42.7, 8.2 +2.6,2.6,a-vale-i1,2020-21,Pittsfield-Stearns,02360090, 95.0, 8.4, 25.5, 13.5, 0.0 +3.88,3.88,a-vale-i1,2020-21,Pittsfield-Williams,02360100, 96.6, 5.8, 18.3, 10.3, 1.2 +-11.16,1,a-vale-i1,2020-21,Pittsfield-Silvio O Conte Community,02360105, 86.1, 21.8, 61.3, 47.9, 0.0 -4.6,1,a-vale-i1,2020-21,Pittsfield-John T Reid Middle,02360305, 90.7, 15.5, 47.5, 31.5, 5.1 -0.5599999999999994,1,a-vale-i1,2020-21,Pittsfield-Theodore Herberg Middle,02360310, 92.8, 12.0, 33.4, 21.4, 4.6 --11.16,1,a-vale-i1,2020-21,Pittsfield-Silvio O Conte Community,02360105, 86.1, 21.8, 61.3, 47.9, 0.0 -3.88,3.88,a-vale-i1,2020-21,Pittsfield-Williams,02360100, 96.6, 5.8, 18.3, 10.3, 1.2 -2.6,2.6,a-vale-i1,2020-21,Pittsfield-Stearns,02360090, 95.0, 8.4, 25.5, 13.5, 0.0 --9.080000000000002,1,a-vale-i1,2020-21,Pittsfield-Crosby,02360065, 86.4, 21.6, 56.0, 42.7, 8.2 --8.76,1,a-vale-i1,2020-21,Pittsfield-Morningside Community School,02360055, 88.4, 19.2, 57.5, 41.9, 3.4 -2.3200000000000003,2.32,a-vale-i1,2020-21,Pittsfield-Robert T. Capeless Elementary School,02360045, 95.4, 7.5, 23.7, 14.2, 0.0 --0.6400000000000006,1,a-vale-i1,2020-21,Pittsfield-Egremont,02360035, 92.1, 13.1, 35.1, 21.6, 0.7 --12.0,1,a-vale-i1,2020-21,Pittsfield-Crosby Educational Academy,02360030, 86.8, 19.8, 68.2, 50.0, 0.0 -0.7599999999999995,1,a-vale-i1,2020-21,Pittsfield-Allendale,02360010, 94.2, 9.7, 35.1, 18.1, 3.0 --3.6799999999999997,1,a-vale-i1,2020-21,Pittsfield-Taconic High,02360510, 90.6, 15.7, 42.3, 29.2, 7.6 -5.8,1,a-vale-i1,2020-21,Pittsfield-Pittsfield High,02360505, 88.3, 19.6, 50.4, 34.5, 6.5 -3.6799999999999997,3.68,a-vale-i1,2020-21,Plainville-Beatrice H Wood Elementary,02380005, 95.6, 7.2, 23.8, 10.8, 3.0 +-3.6799999999999997,1,a-vale-i1,2020-21,Pittsfield-Taconic High,02360510, 90.6, 15.7, 42.3, 29.2, 7.6 2.2399999999999998,2.24,a-vale-i1,2020-21,Plainville-Anna Ware Jackson,02380010, 94.9, 8.1, 25.7, 14.4, 2.6 +3.6799999999999997,3.68,a-vale-i1,2020-21,Plainville-Beatrice H Wood Elementary,02380005, 95.6, 7.2, 23.8, 10.8, 3.0 3.2399999999999998,3.24,a-vale-i1,2020-21,Plymouth-Cold Spring,02390005, 95.6, 7.3, 24.9, 11.9, 9.3 6.12,5,a-vale-i1,2020-21,Plymouth-Plymouth Early Childhood Center,02390003, 97.6, 3.5, 8.3, 4.7, 8.3 -5.32,5,a-vale-i1,2020-21,Plymouth-Indian Brook,02390012, 96.4, 6.1, 20.4, 6.7, 6.9 -5.720000000000001,5,a-vale-i1,2020-21,Plymouth-Nathaniel Morton Elementary,02390030, 96.3, 6.1, 20.9, 5.7, 3.7 -3.16,3.16,a-vale-i1,2020-21,Plymouth-Federal Furnace School,02390011, 95.0, 8.3, 27.5, 12.1, 9.6 --1.4799999999999998,1,a-vale-i1,2020-21,Plymouth-Hedge,02390010, 92.8, 11.8, 49.5, 23.7, 11.6 6.56,5,a-vale-i1,2020-21,Plymouth-Manomet Elementary,02390015, 96.6, 5.8, 18.7, 3.6, 9.2 -4.76,4.76,a-vale-i1,2020-21,Plymouth-South Elementary,02390046, 96.2, 6.3, 19.4, 8.1, 5.2 2.44,2.44,a-vale-i1,2020-21,Plymouth-Plymouth South High,02390515, 94.5, 9.0, 32.1, 13.9, 17.4 0.24000000000000057,1,a-vale-i1,2020-21,Plymouth-Plymouth North High,02390505, 92.9, 11.6, 40.9, 19.4, 18.4 -3.56,3.56,a-vale-i1,2020-21,Plymouth-Plymouth Commun Intermediate,02390405, 95.3, 8.0, 28.0, 11.1, 16.3 -3.56,3.56,a-vale-i1,2020-21,Plymouth-Plymouth South Middle,02390305, 95.2, 8.1, 31.6, 11.1, 14.1 +-1.4799999999999998,1,a-vale-i1,2020-21,Plymouth-Hedge,02390010, 92.8, 11.8, 49.5, 23.7, 11.6 +3.16,3.16,a-vale-i1,2020-21,Plymouth-Federal Furnace School,02390011, 95.0, 8.3, 27.5, 12.1, 9.6 +5.32,5,a-vale-i1,2020-21,Plymouth-Indian Brook,02390012, 96.4, 6.1, 20.4, 6.7, 6.9 +5.720000000000001,5,a-vale-i1,2020-21,Plymouth-Nathaniel Morton Elementary,02390030, 96.3, 6.1, 20.9, 5.7, 3.7 +4.76,4.76,a-vale-i1,2020-21,Plymouth-South Elementary,02390046, 96.2, 6.3, 19.4, 8.1, 5.2 5.16,5,a-vale-i1,2020-21,Plymouth-West Elementary,02390047, 96.1, 6.6, 17.0, 7.1, 8.4 +3.56,3.56,a-vale-i1,2020-21,Plymouth-Plymouth South Middle,02390305, 95.2, 8.1, 31.6, 11.1, 14.1 +3.56,3.56,a-vale-i1,2020-21,Plymouth-Plymouth Commun Intermediate,02390405, 95.3, 8.0, 28.0, 11.1, 16.3 6.2,5,a-vale-i1,2020-21,Plympton-Dennett Elementary,02400010, 96.8, 5.3, 15.0, 4.5, 4.1 1.2400000000000007,1.24,a-vale-i1,2020-21,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 94.7, 8.9, 31.0, 16.9, 11.8 -2.4400000000000004,1,a-vale-i1,2020-21,Provincetown-Provincetown Schools,02420020, 91.6, 12.1, 36.3, 26.1, 7.6 --6.119999999999999,1,a-vale-i1,2020-21,Quabbin-Quabbin Regional Middle School,07530405, 86.7, 22.1, 47.2, 35.3, 14.0 +-1.2,1,a-vale-i1,2020-21,Quabbin-Hubbardston Center,07530010, 90.3, 16.4, 41.5, 23.0, 0.0 -2.12,1,a-vale-i1,2020-21,Quabbin-Ruggles Lane,07530030, 90.3, 16.0, 39.8, 25.3, 17.8 +-6.119999999999999,1,a-vale-i1,2020-21,Quabbin-Quabbin Regional Middle School,07530405, 86.7, 22.1, 47.2, 35.3, 14.0 +-7.3199999999999985,1,a-vale-i1,2020-21,Quabbin-Quabbin Regional High School,07530505, 86.2, 22.3, 54.5, 38.3, 20.3 2.7600000000000002,2.76,a-vale-i1,2020-21,Quabbin-Oakham Center,07530025, 93.8, 10.2, 35.4, 13.1, 0.0 5.64,5,a-vale-i1,2020-21,Quabbin-New Braintree Grade,07530020, 97.9, 3.4, 5.9, 5.9, 0.0 --1.2,1,a-vale-i1,2020-21,Quabbin-Hubbardston Center,07530010, 90.3, 16.4, 41.5, 23.0, 0.0 --7.3199999999999985,1,a-vale-i1,2020-21,Quabbin-Quabbin Regional High School,07530505, 86.2, 22.3, 54.5, 38.3, 20.3 -1.4,1,a-vale-i1,2020-21,Quabbin-Hardwick Elementary,07530005, 89.7, 16.7, 40.4, 23.5, 0.0 -0.44000000000000056,1,a-vale-i1,2020-21,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 92.3, 12.9, 39.4, 18.9, 0.0 -4.2,4.2,a-vale-i1,2020-21,Quaboag Regional-West Brookfield Elementary,07780010, 96.0, 6.4, 22.7, 9.5, 0.0 -0.6799999999999997,1,a-vale-i1,2020-21,Quaboag Regional-Warren Elementary,07780005, 94.6, 8.6, 27.5, 18.3, 0.0 -4.840000000000001,1,a-vale-i1,2020-21,Quaboag Regional-Quaboag Regional High,07780505, 88.8, 18.5, 46.8, 32.1, 0.0 -5.64,5,a-vale-i1,2020-21,Quincy-Atlantic Middle,02430305, 97.3, 4.4, 13.6, 5.9, 3.2 --0.2,1,a-vale-i1,2020-21,Quincy-Broad Meadows Middle,02430310, 93.3, 11.2, 34.6, 20.5, 12.3 -6.08,5,a-vale-i1,2020-21,Quincy-Central Middle,02430315, 97.3, 4.5, 12.2, 4.8, 4.3 --1.6400000000000006,1,a-vale-i1,2020-21,Quincy-South West Middle School,02430320, 93.2, 11.1, 39.6, 24.1, 14.3 -2.28,2.28,a-vale-i1,2020-21,Quincy-Point Webster Middle,02430325, 95.8, 6.8, 21.8, 14.3, 7.4 --2.0799999999999996,1,a-vale-i1,2020-21,Quincy-Quincy High,02430505, 91.9, 13.3, 34.8, 25.2, 16.6 +0.6799999999999997,1,a-vale-i1,2020-21,Quaboag Regional-Warren Elementary,07780005, 94.6, 8.6, 27.5, 18.3, 0.0 +4.2,4.2,a-vale-i1,2020-21,Quaboag Regional-West Brookfield Elementary,07780010, 96.0, 6.4, 22.7, 9.5, 0.0 +0.44000000000000056,1,a-vale-i1,2020-21,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 92.3, 12.9, 39.4, 18.9, 0.0 +1.5599999999999994,1.56,a-vale-i1,2020-21,Quincy-Atherton Hough,02430040, 94.4, 9.3, 31.5, 16.1, 17.9 +1.8799999999999997,1.88,a-vale-i1,2020-21,Quincy-Clifford H Marshall Elementary,02430055, 95.2, 7.5, 28.5, 15.3, 7.6 +6.0,5,a-vale-i1,2020-21,Quincy-Merrymount,02430060, 97.3, 4.5, 12.0, 5.0, 5.8 +6.4,5,a-vale-i1,2020-21,Quincy-Montclair,02430065, 97.7, 3.9, 12.0, 4.0, 4.0 +-9.48,1,a-vale-i1,2020-21,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 86.2, 19.2, 57.9, 43.7, 38.4 +6.2,5,a-vale-i1,2020-21,Quincy-Beechwood Knoll Elementary,02430020, 97.6, 4.0, 10.9, 4.5, 2.5 +5.68,5,a-vale-i1,2020-21,Quincy-Charles A Bernazzani Elementary,02430025, 97.2, 4.6, 14.6, 5.8, 6.7 1.4400000000000006,1.44,a-vale-i1,2020-21,Quincy-North Quincy High,02430510, 94.3, 9.4, 27.0, 16.4, 8.4 -6.36,5,a-vale-i1,2020-21,Quincy-Wollaston School,02430110, 97.8, 3.5, 8.2, 4.1, 4.7 +-2.0799999999999996,1,a-vale-i1,2020-21,Quincy-Quincy High,02430505, 91.9, 13.3, 34.8, 25.2, 16.6 +2.28,2.28,a-vale-i1,2020-21,Quincy-Point Webster Middle,02430325, 95.8, 6.8, 21.8, 14.3, 7.4 +-1.6400000000000006,1,a-vale-i1,2020-21,Quincy-South West Middle School,02430320, 93.2, 11.1, 39.6, 24.1, 14.3 +6.08,5,a-vale-i1,2020-21,Quincy-Central Middle,02430315, 97.3, 4.5, 12.2, 4.8, 4.3 +-0.2,1,a-vale-i1,2020-21,Quincy-Broad Meadows Middle,02430310, 93.3, 11.2, 34.6, 20.5, 12.3 +5.64,5,a-vale-i1,2020-21,Quincy-Atlantic Middle,02430305, 97.3, 4.4, 13.6, 5.9, 3.2 +2.4,2.4,a-vale-i1,2020-21,Quincy-Lincoln-Hancock Community School,02430035, 95.7, 6.8, 24.3, 14.0, 10.7 5.36,5,a-vale-i1,2020-21,Quincy-Squantum,02430095, 97.0, 5.1, 16.4, 6.6, 6.6 -2.9599999999999995,1,a-vale-i1,2020-21,Quincy-Snug Harbor Community School,02430090, 91.6, 13.1, 40.5, 27.4, 15.4 5.5200000000000005,5,a-vale-i1,2020-21,Quincy-Francis W Parker,02430075, 97.6, 3.9, 11.5, 6.2, 3.7 -6.4,5,a-vale-i1,2020-21,Quincy-Montclair,02430065, 97.7, 3.9, 12.0, 4.0, 4.0 -6.0,5,a-vale-i1,2020-21,Quincy-Merrymount,02430060, 97.3, 4.5, 12.0, 5.0, 5.8 -1.8799999999999997,1.88,a-vale-i1,2020-21,Quincy-Clifford H Marshall Elementary,02430055, 95.2, 7.5, 28.5, 15.3, 7.6 -1.5599999999999994,1.56,a-vale-i1,2020-21,Quincy-Atherton Hough,02430040, 94.4, 9.3, 31.5, 16.1, 17.9 -2.4,2.4,a-vale-i1,2020-21,Quincy-Lincoln-Hancock Community School,02430035, 95.7, 6.8, 24.3, 14.0, 10.7 -5.68,5,a-vale-i1,2020-21,Quincy-Charles A Bernazzani Elementary,02430025, 97.2, 4.6, 14.6, 5.8, 6.7 --9.48,1,a-vale-i1,2020-21,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 86.2, 19.2, 57.9, 43.7, 38.4 -6.2,5,a-vale-i1,2020-21,Quincy-Beechwood Knoll Elementary,02430020, 97.6, 4.0, 10.9, 4.5, 2.5 +6.36,5,a-vale-i1,2020-21,Quincy-Wollaston School,02430110, 97.8, 3.5, 8.2, 4.1, 4.7 -17.080000000000002,1,a-vale-i1,2020-21,Ralph C Mahar-Ralph C Mahar Regional,07550505, 86.0, 24.5, 68.4, 62.7, 0.0 +-3.7599999999999993,1,a-vale-i1,2020-21,Randolph-Randolph Community Middle,02440410, 91.5, 13.9, 44.7, 29.4, 11.5 +-1.2799999999999998,1,a-vale-i1,2020-21,Randolph-Martin E Young Elementary,02440040, 93.0, 11.1, 36.1, 23.2, 4.9 -6.44,1,a-vale-i1,2020-21,Randolph-Randolph High,02440505, 88.3, 19.2, 48.9, 36.1, 10.3 +-1.6799999999999997,1,a-vale-i1,2020-21,Randolph-Margaret L Donovan,02440015, 92.8, 11.7, 36.3, 24.2, 7.4 -2.2400000000000007,1,a-vale-i1,2020-21,Randolph-J F Kennedy Elementary,02440018, 92.5, 11.4, 38.8, 25.6, 9.6 -1.6799999999999997,1,a-vale-i1,2020-21,Randolph-Elizabeth G Lyons Elementary,02440020, 93.5, 10.4, 39.5, 24.2, 17.8 --1.2799999999999998,1,a-vale-i1,2020-21,Randolph-Martin E Young Elementary,02440040, 93.0, 11.1, 36.1, 23.2, 4.9 --3.7599999999999993,1,a-vale-i1,2020-21,Randolph-Randolph Community Middle,02440410, 91.5, 13.9, 44.7, 29.4, 11.5 --1.6799999999999997,1,a-vale-i1,2020-21,Randolph-Margaret L Donovan,02440015, 92.8, 11.7, 36.3, 24.2, 7.4 -6.959999999999999,5,a-vale-i1,2020-21,Reading-Birch Meadow,02460005, 98.0, 3.3, 6.9, 2.6, 0.0 -6.76,5,a-vale-i1,2020-21,Reading-Joshua Eaton,02460010, 97.8, 3.8, 9.4, 3.1, 0.0 5.84,5,a-vale-i1,2020-21,Reading-Walter S Parker Middle,02460310, 97.0, 5.1, 14.1, 5.4, 4.2 -4.32,1,a-vale-i1,2020-21,Reading-RISE PreSchool,02460001, 92.7, 7.8, 28.2, 30.8, 0.0 +3.3600000000000003,3.36,a-vale-i1,2020-21,Reading-Reading Memorial High,02460505, 94.6, 9.0, 26.0, 11.6, 4.9 +7.32,5,a-vale-i1,2020-21,Reading-Alice M Barrows,02460002, 98.2, 3.1, 6.7, 1.7, 0.0 +6.959999999999999,5,a-vale-i1,2020-21,Reading-Birch Meadow,02460005, 98.0, 3.3, 6.9, 2.6, 0.0 +6.76,5,a-vale-i1,2020-21,Reading-Joshua Eaton,02460010, 97.8, 3.8, 9.4, 3.1, 0.0 7.12,5,a-vale-i1,2020-21,Reading-J Warren Killam,02460017, 97.6, 4.0, 9.4, 2.2, 3.2 7.5200000000000005,5,a-vale-i1,2020-21,Reading-Wood End Elementary School,02460020, 97.9, 3.5, 8.4, 1.2, 0.0 -7.32,5,a-vale-i1,2020-21,Reading-Alice M Barrows,02460002, 98.2, 3.1, 6.7, 1.7, 0.0 -3.3600000000000003,3.36,a-vale-i1,2020-21,Reading-Reading Memorial High,02460505, 94.6, 9.0, 26.0, 11.6, 4.9 5.2,5,a-vale-i1,2020-21,Reading-Arthur W Coolidge Middle,02460305, 96.3, 6.3, 13.4, 7.0, 1.5 -3.5200000000000005,3.52,a-vale-i1,2020-21,Revere-Abraham Lincoln,02480025, 95.7, 6.9, 22.0, 11.2, 4.3 -3.88,3.88,a-vale-i1,2020-21,Revere-Rumney Marsh Academy,02480014, 96.0, 6.8, 23.8, 10.3, 1.5 -4.279999999999999,4.28,a-vale-i1,2020-21,Revere-Beachmont Veterans Memorial School,02480013, 95.9, 6.8, 22.8, 9.3, 2.1 -3.84,3.84,a-vale-i1,2020-21,Revere-A. C. Whelan Elementary School,02480003, 95.9, 6.8, 19.0, 10.4, 2.8 -3.0799999999999996,3.08,a-vale-i1,2020-21,Revere-Staff Sargent James J. Hill Elementary School,02480035, 95.6, 7.3, 22.7, 12.3, 3.6 -22.6,1,a-vale-i1,2020-21,Revere-Seacoast School,02480520, 65.4, 47.9, 82.4, 76.5, 22.4 -2.9200000000000004,1,a-vale-i1,2020-21,Revere-Revere High,02480505, 91.1, 14.9, 39.7, 27.3, 20.9 4.4,4.4,a-vale-i1,2020-21,Revere-Susan B. Anthony Middle School,02480305, 96.5, 5.8, 19.3, 9.0, 0.3 1.8799999999999997,1.88,a-vale-i1,2020-21,Revere-Garfield Middle School,02480057, 95.1, 8.2, 30.2, 15.3, 0.5 +3.84,3.84,a-vale-i1,2020-21,Revere-A. C. Whelan Elementary School,02480003, 95.9, 6.8, 19.0, 10.4, 2.8 +3.5200000000000005,3.52,a-vale-i1,2020-21,Revere-Abraham Lincoln,02480025, 95.7, 6.9, 22.0, 11.2, 4.3 +4.279999999999999,4.28,a-vale-i1,2020-21,Revere-Beachmont Veterans Memorial School,02480013, 95.9, 6.8, 22.8, 9.3, 2.1 0.4799999999999997,1,a-vale-i1,2020-21,Revere-Garfield Elementary School,02480056, 93.8, 9.9, 27.9, 18.8, 5.6 4.4,4.4,a-vale-i1,2020-21,Revere-Paul Revere,02480050, 96.3, 6.1, 20.5, 9.0, 3.0 +3.0799999999999996,3.08,a-vale-i1,2020-21,Revere-Staff Sargent James J. Hill Elementary School,02480035, 95.6, 7.3, 22.7, 12.3, 3.6 +3.88,3.88,a-vale-i1,2020-21,Revere-Rumney Marsh Academy,02480014, 96.0, 6.8, 23.8, 10.3, 1.5 1.7600000000000002,1.76,a-vale-i1,2020-21,Richmond-Richmond Consolidated,02490005, 94.7, 8.9, 24.0, 15.6, 7.8 0.8400000000000005,1,a-vale-i1,2020-21,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 94.4, 9.1, 30.9, 17.9, 1.8 5.279999999999999,5,a-vale-i1,2020-21,River Valley Charter (District)-River Valley Charter School,04820050, 95.9, 6.8, 22.9, 6.8, 15.7 6.88,5,a-vale-i1,2020-21,Rochester-Rochester Memorial,02500005, 97.2, 4.6, 11.4, 2.8, 0.4 +-8.64,1,a-vale-i1,2020-21,Rockland-Jefferson Elementary School,02510060, 73.9, 43.6, 55.9, 41.6, 10.1 +-2.9599999999999995,1,a-vale-i1,2020-21,Rockland-Memorial Park,02510020, 80.2, 33.3, 46.2, 27.4, 16.5 -2.8400000000000007,1,a-vale-i1,2020-21,Rockland-R Stewart Esten,02510025, 83.7, 27.5, 51.4, 27.1, 15.4 -5.56,1,a-vale-i1,2020-21,Rockland-John W Rogers Middle,02510305, 79.1, 35.3, 48.8, 33.9, 14.7 --8.64,1,a-vale-i1,2020-21,Rockland-Jefferson Elementary School,02510060, 73.9, 43.6, 55.9, 41.6, 10.1 -9.64,1,a-vale-i1,2020-21,Rockland-Rockland Senior High,02510505, 80.5, 32.4, 65.4, 44.1, 20.5 --2.9599999999999995,1,a-vale-i1,2020-21,Rockland-Memorial Park,02510020, 80.2, 33.3, 46.2, 27.4, 16.5 +4.4799999999999995,4.48,a-vale-i1,2020-21,Rockport-Rockport High,02520510, 96.1, 6.5, 15.8, 8.8, 3.5 6.36,5,a-vale-i1,2020-21,Rockport-Rockport Elementary,02520005, 97.2, 4.8, 12.6, 4.1, 1.3 5.4399999999999995,5,a-vale-i1,2020-21,Rockport-Rockport Middle,02520305, 96.3, 6.3, 16.2, 6.4, 3.4 -4.4799999999999995,4.48,a-vale-i1,2020-21,Rockport-Rockport High,02520510, 96.1, 6.5, 15.8, 8.8, 3.5 4.2,4.2,a-vale-i1,2020-21,Rowe-Rowe Elementary,02530005, 94.7, 9.1, 42.9, 9.5, 0.0 1.4,1.4,a-vale-i1,2020-21,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 94.4, 9.6, 33.6, 16.5, 26.6 6.4799999999999995,5,a-vale-i1,2020-21,Sabis International Charter (District)-Sabis International Charter School,04410505, 97.9, 3.4, 9.1, 3.8, 8.4 0.8799999999999997,1,a-vale-i1,2020-21,Salem-Bates,02580003, 94.5, 9.0, 30.5, 17.8, 19.7 -1.0799999999999996,1.08,a-vale-i1,2020-21,Salem-Witchcraft Heights,02580070, 94.6, 9.0, 29.9, 17.3, 15.9 --4.6,1,a-vale-i1,2020-21,Salem-Collins Middle,02580305, 90.8, 15.4, 54.0, 31.5, 13.2 --12.16,1,a-vale-i1,2020-21,Salem-Salem High,02580505, 82.6, 28.6, 61.5, 50.4, 27.6 --11.559999999999999,1,a-vale-i1,2020-21,Salem-Salem Early Childhood,02580001, 87.1, 16.0, 55.3, 48.9, 27.7 --20.560000000000002,1,a-vale-i1,2020-21,Salem-Salem Prep High School,02580515, 69.9, 43.6, 81.0, 71.4, 0.0 0.6,1,a-vale-i1,2020-21,Salem-Carlton,02580015, 94.5, 8.9, 30.0, 18.5, 9.3 1.8799999999999997,1.88,a-vale-i1,2020-21,Salem-Horace Mann Laboratory,02580030, 94.1, 9.7, 37.0, 15.3, 13.9 3.2399999999999998,3.24,a-vale-i1,2020-21,Salem-Saltonstall School,02580050, 95.6, 7.3, 25.1, 11.9, 10.7 --5.840000000000001,1,a-vale-i1,2020-21,Salem-Bentley Academy Innovation School,02580010, 90.5, 15.8, 50.8, 34.6, 21.7 +-11.559999999999999,1,a-vale-i1,2020-21,Salem-Salem Early Childhood,02580001, 87.1, 16.0, 55.3, 48.9, 27.7 +-4.6,1,a-vale-i1,2020-21,Salem-Collins Middle,02580305, 90.8, 15.4, 54.0, 31.5, 13.2 +-12.16,1,a-vale-i1,2020-21,Salem-Salem High,02580505, 82.6, 28.6, 61.5, 50.4, 27.6 -31.28,1,a-vale-i1,2020-21,Salem-New Liberty Innovation School,02580510, 43.8, 73.7, 98.2, 98.2, 1.8 +-20.560000000000002,1,a-vale-i1,2020-21,Salem-Salem Prep High School,02580515, 69.9, 43.6, 81.0, 71.4, 0.0 +-5.840000000000001,1,a-vale-i1,2020-21,Salem-Bentley Academy Innovation School,02580010, 90.5, 15.8, 50.8, 34.6, 21.7 +1.0799999999999996,1.08,a-vale-i1,2020-21,Salem-Witchcraft Heights,02580070, 94.6, 9.0, 29.9, 17.3, 15.9 2.3600000000000003,2.36,a-vale-i1,2020-21,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 94.0, 10.3, 30.3, 14.1, 3.4 +3.7600000000000002,3.76,a-vale-i1,2020-21,Sandwich-Sandwich High,02610505, 95.4, 7.7, 23.4, 10.6, 4.2 4.84,4.84,a-vale-i1,2020-21,Sandwich-Sandwich STEM Academy,02610305, 96.6, 5.7, 18.3, 7.9, 0.0 3.72,3.72,a-vale-i1,2020-21,Sandwich-Oak Ridge,02610025, 94.4, 9.5, 36.6, 10.7, 0.4 2.0,2.0,a-vale-i1,2020-21,Sandwich-Forestdale School,02610002, 94.1, 9.6, 42.1, 15.0, 2.1 -3.7600000000000002,3.76,a-vale-i1,2020-21,Sandwich-Sandwich High,02610505, 95.4, 7.7, 23.4, 10.6, 4.2 +-1.5200000000000002,1,a-vale-i1,2020-21,Saugus-Saugus High,02620505, 91.9, 13.4, 37.7, 23.8, 26.4 3.7600000000000002,3.76,a-vale-i1,2020-21,Saugus-Lynnhurst,02620040, 96.2, 6.5, 18.0, 10.6, 14.1 -4.24,4.24,a-vale-i1,2020-21,Saugus-Oaklandvale,02620050, 95.6, 7.3, 28.9, 9.4, 20.9 +3.6799999999999997,3.68,a-vale-i1,2020-21,Saugus-Saugus Middle School,02620305, 96.1, 6.6, 23.0, 10.8, 12.3 0.9200000000000003,1,a-vale-i1,2020-21,Saugus-Veterans Memorial,02620065, 94.2, 9.4, 25.5, 17.7, 23.4 1.4400000000000006,1.44,a-vale-i1,2020-21,Saugus-Douglas Waybright,02620067, 95.0, 8.3, 29.6, 16.4, 19.0 -3.6799999999999997,3.68,a-vale-i1,2020-21,Saugus-Saugus Middle School,02620305, 96.1, 6.6, 23.0, 10.8, 12.3 --1.5200000000000002,1,a-vale-i1,2020-21,Saugus-Saugus High,02620505, 91.9, 13.4, 37.7, 23.8, 26.4 +4.24,4.24,a-vale-i1,2020-21,Saugus-Oaklandvale,02620050, 95.6, 7.3, 28.9, 9.4, 20.9 6.24,5,a-vale-i1,2020-21,Savoy-Emma L Miller Elementary School,02630010, 95.7, 7.4, 31.1, 4.4, 2.2 -3.88,3.88,a-vale-i1,2020-21,Scituate-Gates Middle School,02640305, 95.6, 7.4, 25.9, 10.3, 3.4 +5.8,5,a-vale-i1,2020-21,Scituate-Cushing Elementary,02640007, 96.5, 5.8, 16.1, 5.5, 2.7 +4.720000000000001,4.72,a-vale-i1,2020-21,Scituate-Hatherly Elementary,02640010, 95.8, 7.1, 27.5, 8.2, 4.7 -3.5599999999999996,1,a-vale-i1,2020-21,Scituate-Scituate High School,02640505, 91.4, 14.1, 52.8, 28.9, 7.5 4.4,4.4,a-vale-i1,2020-21,Scituate-Wampatuck Elementary,02640020, 95.5, 7.4, 28.1, 9.0, 11.5 -4.720000000000001,4.72,a-vale-i1,2020-21,Scituate-Hatherly Elementary,02640010, 95.8, 7.1, 27.5, 8.2, 4.7 +3.88,3.88,a-vale-i1,2020-21,Scituate-Gates Middle School,02640305, 95.6, 7.4, 25.9, 10.3, 3.4 2.9200000000000004,2.92,a-vale-i1,2020-21,Scituate-Jenkins Elementary School,02640015, 95.3, 7.9, 34.4, 12.7, 9.6 -5.8,5,a-vale-i1,2020-21,Scituate-Cushing Elementary,02640007, 96.5, 5.8, 16.1, 5.5, 2.7 4.04,4.04,a-vale-i1,2020-21,Seekonk-George R Martin,02650007, 95.6, 7.1, 21.1, 9.9, 1.3 -1.5200000000000002,1,a-vale-i1,2020-21,Seekonk-Seekonk High,02650505, 92.9, 11.8, 45.0, 23.8, 4.9 3.6399999999999997,3.64,a-vale-i1,2020-21,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 95.5, 7.6, 23.5, 10.9, 7.0 5.4,5,a-vale-i1,2020-21,Seekonk-Mildred Aitken School,02650015, 96.4, 6.0, 16.9, 6.5, 0.0 +6.44,5,a-vale-i1,2020-21,Sharon-Cottage Street,02660005, 98.0, 3.2, 7.4, 3.9, 0.0 +6.68,5,a-vale-i1,2020-21,Sharon-East Elementary,02660010, 97.9, 3.4, 7.6, 3.3, 0.0 +0.5599999999999994,1,a-vale-i1,2020-21,Sharon-Sharon Early Childhood Center,02660001, 93.6, 9.4, 34.9, 18.6, 0.0 3.72,3.72,a-vale-i1,2020-21,Sharon-Sharon High,02660505, 95.7, 7.2, 17.5, 10.7, 0.0 6.0,5,a-vale-i1,2020-21,Sharon-Sharon Middle,02660305, 97.2, 4.7, 10.4, 5.0, 0.0 7.0,5,a-vale-i1,2020-21,Sharon-Heights Elementary,02660015, 98.2, 2.9, 6.3, 2.5, 0.0 -6.68,5,a-vale-i1,2020-21,Sharon-East Elementary,02660010, 97.9, 3.4, 7.6, 3.3, 0.0 -6.44,5,a-vale-i1,2020-21,Sharon-Cottage Street,02660005, 98.0, 3.2, 7.4, 3.9, 0.0 -0.5599999999999994,1,a-vale-i1,2020-21,Sharon-Sharon Early Childhood Center,02660001, 93.6, 9.4, 34.9, 18.6, 0.0 4.84,4.84,a-vale-i1,2020-21,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 95.6, 7.4, 25.4, 7.9, 5.1 5.76,5,a-vale-i1,2020-21,Sherborn-Pine Hill,02690010, 96.8, 5.5, 16.1, 5.6, 10.7 -4.4399999999999995,4.44,a-vale-i1,2020-21,Shrewsbury-Shrewsbury Sr High,02710505, 96.0, 6.7, 18.2, 8.9, 0.1 -4.32,4.32,a-vale-i1,2020-21,Shrewsbury-Sherwood Middle School,02710305, 96.3, 6.3, 19.6, 9.2, 0.0 -1.8,1.8,a-vale-i1,2020-21,Shrewsbury-Parker Road Preschool,02710040, 93.9, 7.4, 23.9, 15.5, 0.0 -7.76,5,a-vale-i1,2020-21,Shrewsbury-Spring Street,02710035, 98.6, 2.4, 3.6, 0.6, 0.0 -2.5200000000000005,2.52,a-vale-i1,2020-21,Shrewsbury-Oak Middle School,02710030, 95.3, 7.9, 26.1, 13.7, 0.0 -5.92,5,a-vale-i1,2020-21,Shrewsbury-Calvin Coolidge,02710015, 97.5, 4.2, 11.3, 5.2, 0.0 6.12,5,a-vale-i1,2020-21,Shrewsbury-Floral Street School,02710020, 97.7, 3.8, 9.7, 4.7, 0.0 7.0,5,a-vale-i1,2020-21,Shrewsbury-Walter J Paton,02710025, 97.5, 4.1, 9.5, 2.5, 0.0 +2.5200000000000005,2.52,a-vale-i1,2020-21,Shrewsbury-Oak Middle School,02710030, 95.3, 7.9, 26.1, 13.7, 0.0 +1.8,1.8,a-vale-i1,2020-21,Shrewsbury-Parker Road Preschool,02710040, 93.9, 7.4, 23.9, 15.5, 0.0 +5.92,5,a-vale-i1,2020-21,Shrewsbury-Calvin Coolidge,02710015, 97.5, 4.2, 11.3, 5.2, 0.0 5.4,5,a-vale-i1,2020-21,Shrewsbury-Beal School,02710005, 96.9, 5.1, 15.6, 6.5, 0.0 +7.76,5,a-vale-i1,2020-21,Shrewsbury-Spring Street,02710035, 98.6, 2.4, 3.6, 0.6, 0.0 +4.4399999999999995,4.44,a-vale-i1,2020-21,Shrewsbury-Shrewsbury Sr High,02710505, 96.0, 6.7, 18.2, 8.9, 0.1 +4.32,4.32,a-vale-i1,2020-21,Shrewsbury-Sherwood Middle School,02710305, 96.3, 6.3, 19.6, 9.2, 0.0 3.9200000000000004,3.92,a-vale-i1,2020-21,Shutesbury-Shutesbury Elementary,02720005, 95.6, 7.1, 21.2, 10.2, 0.0 -3.6399999999999997,3.64,a-vale-i1,2020-21,Silver Lake-Silver Lake Regional High,07600505, 94.9, 8.5, 28.1, 10.9, 3.2 4.4399999999999995,4.44,a-vale-i1,2020-21,Silver Lake-Silver Lake Regional Middle School,07600405, 95.3, 7.9, 28.7, 8.9, 8.7 +3.6399999999999997,3.64,a-vale-i1,2020-21,Silver Lake-Silver Lake Regional High,07600505, 94.9, 8.5, 28.1, 10.9, 3.2 0.4,1,a-vale-i1,2020-21,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 93.2, 11.4, 36.1, 19.0, 0.0 3.6399999999999997,3.64,a-vale-i1,2020-21,Somerset-Somerset Middle School,02730305, 95.6, 7.3, 22.3, 10.9, 3.0 -5.2,5,a-vale-i1,2020-21,Somerset-Chace Street,02730005, 96.3, 6.2, 19.0, 7.0, 3.7 6.04,5,a-vale-i1,2020-21,Somerset-South,02730015, 96.9, 5.1, 16.4, 4.9, 1.3 4.720000000000001,4.72,a-vale-i1,2020-21,Somerset-North Elementary,02730008, 96.5, 5.6, 18.0, 8.2, 5.0 +5.2,5,a-vale-i1,2020-21,Somerset-Chace Street,02730005, 96.3, 6.2, 19.0, 7.0, 3.7 3.6399999999999997,3.64,a-vale-i1,2020-21,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 95.2, 8.0, 17.8, 10.9, 5.9 -0.9599999999999994,1,a-vale-i1,2020-21,Somerville-Next Wave Junior High,02740410, 94.8, 9.1, 35.3, 17.6, 5.9 -0.4799999999999997,1,a-vale-i1,2020-21,Somerville-Somerville High,02740505, 93.9, 10.5, 33.2, 18.8, 4.1 -1.2799999999999998,1.28,a-vale-i1,2020-21,Somerville-Winter Hill Community,02740120, 94.6, 9.2, 27.8, 16.8, 5.3 +5.16,5,a-vale-i1,2020-21,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 96.6, 5.7, 17.7, 7.1, 1.5 -26.48,1,a-vale-i1,2020-21,Somerville-Full Circle High School,02740510, 67.9, 48.0, 89.7, 86.2, 8.6 +0.4799999999999997,1,a-vale-i1,2020-21,Somerville-Somerville High,02740505, 93.9, 10.5, 33.2, 18.8, 4.1 +0.9599999999999994,1,a-vale-i1,2020-21,Somerville-Next Wave Junior High,02740410, 94.8, 9.1, 35.3, 17.6, 5.9 +1.2799999999999998,1.28,a-vale-i1,2020-21,Somerville-Winter Hill Community,02740120, 94.6, 9.2, 27.8, 16.8, 5.3 3.28,3.28,a-vale-i1,2020-21,Somerville-West Somerville Neighborhood,02740115, 95.7, 7.5, 21.3, 11.8, 1.8 4.4799999999999995,4.48,a-vale-i1,2020-21,Somerville-E Somerville Community,02740111, 96.2, 6.6, 19.7, 8.8, 1.2 -5.16,5,a-vale-i1,2020-21,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 96.6, 5.7, 17.7, 7.1, 1.5 -4.24,4.24,a-vale-i1,2020-21,Somerville-John F Kennedy,02740083, 95.9, 7.1, 16.0, 9.4, 3.7 1.8799999999999997,1.88,a-vale-i1,2020-21,Somerville-Capuano Early Childhood Center,02740005, 94.9, 8.5, 27.9, 15.3, 6.3 -5.88,5,a-vale-i1,2020-21,Somerville-Benjamin G Brown,02740015, 97.6, 4.1, 9.8, 5.3, 0.4 +4.24,4.24,a-vale-i1,2020-21,Somerville-John F Kennedy,02740083, 95.9, 7.1, 16.0, 9.4, 3.7 -1.1200000000000003,1,a-vale-i1,2020-21,Somerville-Arthur D Healey,02740075, 92.8, 12.4, 39.1, 22.8, 4.7 --2.6,1,a-vale-i1,2020-21,South Hadley-Michael E. Smith Middle School,02780305, 89.8, 17.4, 43.8, 26.5, 2.6 -2.84,2.84,a-vale-i1,2020-21,South Hadley-Mosier,02780020, 95.5, 7.7, 21.6, 12.9, 2.1 --1.3200000000000003,1,a-vale-i1,2020-21,South Hadley-Plains Elementary,02780015, 93.0, 11.4, 28.3, 23.3, 5.7 +5.88,5,a-vale-i1,2020-21,Somerville-Benjamin G Brown,02740015, 97.6, 4.1, 9.8, 5.3, 0.4 -0.8400000000000005,1,a-vale-i1,2020-21,South Hadley-South Hadley High,02780505, 92.2, 13.3, 38.9, 22.1, 4.2 +-2.6,1,a-vale-i1,2020-21,South Hadley-Michael E. Smith Middle School,02780305, 89.8, 17.4, 43.8, 26.5, 2.6 +-1.3200000000000003,1,a-vale-i1,2020-21,South Hadley-Plains Elementary,02780015, 93.0, 11.4, 28.3, 23.3, 5.7 +2.84,2.84,a-vale-i1,2020-21,South Hadley-Mosier,02780020, 95.5, 7.7, 21.6, 12.9, 2.1 -2.8400000000000007,1,a-vale-i1,2020-21,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 91.6, 13.7, 40.9, 27.1, 5.9 4.64,4.64,a-vale-i1,2020-21,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 96.2, 6.6, 18.6, 8.4, 2.6 4.720000000000001,4.72,a-vale-i1,2020-21,South Shore Regional Vocational Technical-So Shore Vocational Technical High,08730605, 95.5, 7.7, 24.3, 8.2, 12.7 @@ -3276,77 +3276,46 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.359999999999999,5,a-vale-i1,2020-21,Southborough-Margaret A Neary,02760020, 97.8, 3.7, 10.7, 1.6, 0.0 4.5600000000000005,4.56,a-vale-i1,2020-21,Southborough-Mary E Finn School,02760008, 96.6, 5.6, 17.5, 8.6, 0.0 6.76,5,a-vale-i1,2020-21,Southborough-Albert S. Woodward Memorial School,02760050, 97.4, 4.3, 10.9, 3.1, 0.0 --21.6,1,a-vale-i1,2020-21,Southbridge-Southbridge Academy,02770525, 73.1, 39.8, 80.0, 74.0, 28.0 --14.12,1,a-vale-i1,2020-21,Southbridge-Southbridge High School,02770515, 79.9, 30.9, 70.9, 55.3, 35.6 --14.16,1,a-vale-i1,2020-21,Southbridge-Southbridge Middle School,02770315, 85.3, 23.7, 71.5, 55.4, 20.2 --6.56,1,a-vale-i1,2020-21,Southbridge-West Street,02770020, 90.1, 15.8, 61.4, 36.4, 23.5 -11.76,1,a-vale-i1,2020-21,Southbridge-Eastford Road,02770010, 88.6, 17.7, 65.7, 49.4, 51.1 -4.840000000000001,1,a-vale-i1,2020-21,Southbridge-Charlton Street,02770005, 92.1, 12.5, 48.8, 32.1, 20.9 +-6.56,1,a-vale-i1,2020-21,Southbridge-West Street,02770020, 90.1, 15.8, 61.4, 36.4, 23.5 +-14.16,1,a-vale-i1,2020-21,Southbridge-Southbridge Middle School,02770315, 85.3, 23.7, 71.5, 55.4, 20.2 +-14.12,1,a-vale-i1,2020-21,Southbridge-Southbridge High School,02770515, 79.9, 30.9, 70.9, 55.3, 35.6 +-21.6,1,a-vale-i1,2020-21,Southbridge-Southbridge Academy,02770525, 73.1, 39.8, 80.0, 74.0, 28.0 0.07999999999999971,1,a-vale-i1,2020-21,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 93.6, 10.6, 36.5, 19.8, 0.0 -7.0,1,a-vale-i1,2020-21,Southern Berkshire-South Egremont,07650030, 86.7, 21.6, 68.8, 37.5, 12.5 +1.1200000000000003,1.12,a-vale-i1,2020-21,Southern Berkshire-Undermountain,07650035, 93.9, 10.1, 29.7, 17.2, 6.3 -1.4,1,a-vale-i1,2020-21,Southern Berkshire-New Marlborough Central,07650018, 91.5, 13.8, 37.0, 23.5, 12.3 -6.2,1,a-vale-i1,2020-21,Southern Berkshire-Mt Everett Regional,07650505, 89.5, 17.2, 50.9, 35.5, 8.4 -1.1200000000000003,1.12,a-vale-i1,2020-21,Southern Berkshire-Undermountain,07650035, 93.9, 10.1, 29.7, 17.2, 6.3 -2.4400000000000004,1,a-vale-i1,2020-21,Southern Worcester County Regional Vocational Technical-Bay Path Regional Vocational Technical High School,08760605, 91.9, 13.8, 53.2, 26.1, 13.8 -0.7200000000000003,1,a-vale-i1,2020-21,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 94.1, 9.9, 33.0, 18.2, 3.7 -5.12,5,a-vale-i1,2020-21,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 96.0, 6.6, 24.5, 7.2, 3.5 2.0,2.0,a-vale-i1,2020-21,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 95.0, 8.1, 27.4, 15.0, 8.3 +5.12,5,a-vale-i1,2020-21,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 96.0, 6.6, 24.5, 7.2, 3.5 +0.7200000000000003,1,a-vale-i1,2020-21,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 94.1, 9.9, 33.0, 18.2, 3.7 1.7600000000000002,1.76,a-vale-i1,2020-21,Spencer-E Brookfield-East Brookfield Elementary,07670008, 94.5, 8.5, 30.3, 15.6, 0.0 --1.1200000000000003,1,a-vale-i1,2020-21,Spencer-E Brookfield-Wire Village School,07670040, 92.9, 11.7, 35.0, 22.8, 0.0 --9.4,1,a-vale-i1,2020-21,Spencer-E Brookfield-Knox Trail Middle School,07670415, 87.7, 20.5, 59.4, 43.5, 0.0 -7.959999999999999,1,a-vale-i1,2020-21,Spencer-E Brookfield-David Prouty High,07670505, 86.4, 22.3, 58.1, 39.9, 0.0 +-9.4,1,a-vale-i1,2020-21,Spencer-E Brookfield-Knox Trail Middle School,07670415, 87.7, 20.5, 59.4, 43.5, 0.0 +-1.1200000000000003,1,a-vale-i1,2020-21,Spencer-E Brookfield-Wire Village School,07670040, 92.9, 11.7, 35.0, 22.8, 0.0 +-13.12,1,a-vale-i1,2020-21,Springfield-Springfield Public Day Middle School,02810345, 82.6, 29.0, 66.0, 52.8, 54.7 4.4799999999999995,4.48,a-vale-i1,2020-21,Springfield-STEM Middle Academy,02810350, 96.6, 5.8, 21.8, 8.8, 18.7 --3.2,1,a-vale-i1,2020-21,Springfield-Glickman Elementary,02810068, 92.1, 13.0, 45.4, 28.0, 42.0 -0.15999999999999942,1,a-vale-i1,2020-21,Springfield-Frank H Freedman,02810075, 93.7, 10.4, 28.9, 19.6, 25.7 --0.3200000000000003,1,a-vale-i1,2020-21,Springfield-Frederick Harris,02810080, 93.4, 10.7, 34.1, 20.8, 25.6 -0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Homer Street,02810085, 94.6, 8.8, 34.3, 19.3, 20.1 -5.6,5,a-vale-i1,2020-21,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 97.2, 4.6, 14.4, 6.0, 10.1 --2.4,1,a-vale-i1,2020-21,Springfield-Indian Orchard Elementary,02810100, 93.0, 11.2, 40.7, 26.0, 38.7 -2.4,2.4,a-vale-i1,2020-21,Springfield-Early Childhood Education Center,02810001, 95.5, 6.2, 24.4, 14.0, 2.4 --2.0,1,a-vale-i1,2020-21,Springfield-Kensington International School,02810110, 92.6, 11.8, 40.8, 25.0, 32.7 -0.6400000000000006,1,a-vale-i1,2020-21,Springfield-Liberty,02810115, 93.8, 10.2, 37.2, 18.4, 36.1 --2.0400000000000005,1,a-vale-i1,2020-21,Springfield-Lincoln,02810120, 92.7, 11.8, 40.8, 25.1, 36.2 -3.6,3.6,a-vale-i1,2020-21,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 95.4, 7.5, 27.4, 11.0, 12.6 -0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Mary M Lynch,02810140, 93.1, 11.4, 38.2, 19.3, 33.6 --1.0400000000000005,1,a-vale-i1,2020-21,Springfield-Mary O Pottenger,02810145, 93.5, 10.2, 40.9, 22.6, 31.4 --0.6799999999999997,1,a-vale-i1,2020-21,Springfield-Mary M Walsh,02810155, 92.3, 12.9, 42.1, 21.7, 34.1 --15.6,1,a-vale-i1,2020-21,Springfield-Springfield Public Day Elementary School,02810005, 85.3, 24.4, 71.8, 59.0, 56.4 --3.9599999999999995,1,a-vale-i1,2020-21,Springfield-Edward P. Boland School,02810010, 91.5, 13.3, 42.1, 29.9, 33.0 -0.04000000000000057,1,a-vale-i1,2020-21,Springfield-Thomas M Balliet,02810015, 94.0, 9.4, 31.8, 19.9, 16.5 --1.4799999999999998,1,a-vale-i1,2020-21,Springfield-Samuel Bowles,02810020, 93.0, 11.6, 40.4, 23.7, 35.5 -0.7200000000000003,1,a-vale-i1,2020-21,Springfield-Milton Bradley School,02810023, 94.0, 9.6, 30.9, 18.2, 23.1 --8.0,1,a-vale-i1,2020-21,Springfield-Brightwood,02810025, 90.5, 15.4, 56.6, 40.0, 50.9 --4.4,1,a-vale-i1,2020-21,Springfield-Sumner Avenue,02810160, 90.1, 15.5, 45.0, 31.0, 42.2 -8.080000000000002,1,a-vale-i1,2020-21,Springfield-South End Middle School,02810355, 89.3, 17.3, 52.8, 40.2, 50.8 -12.0,1,a-vale-i1,2020-21,Springfield-Balliet Middle School,02810360, 78.3, 36.9, 70.0, 50.0, 65.0 7.56,5,a-vale-i1,2020-21,Springfield-Chestnut Academy,02810365, 97.4, 4.3, 12.6, 1.1, 1.1 --5.840000000000001,1,a-vale-i1,2020-21,Springfield-Impact Prep at Chestnut,02810366, 89.7, 17.1, 48.3, 34.6, 45.3 -2.4,2.4,a-vale-i1,2020-21,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 95.9, 6.9, 23.7, 14.0, 21.8 --0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Conservatory of the Arts,02810475, 93.4, 11.2, 34.7, 20.7, 23.7 --3.4400000000000004,1,a-vale-i1,2020-21,Springfield-Rise Academy at Van Sickle,02810480, 90.4, 15.4, 38.6, 28.6, 38.3 --3.8,1,a-vale-i1,2020-21,Springfield-Van Sickle Academy,02810485, 92.1, 12.9, 38.6, 29.5, 36.8 --2.3599999999999994,1,a-vale-i1,2020-21,Springfield-Gateway to College at Springfield Technical Community College,02810580, 93.1, 10.0, 37.0, 25.9, 37.0 --1.3599999999999994,1,a-vale-i1,2020-21,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.6, 14.1, 39.2, 23.4, 33.0 +-1.4799999999999998,1,a-vale-i1,2020-21,Springfield-Samuel Bowles,02810020, 93.0, 11.6, 40.4, 23.7, 35.5 +0.7200000000000003,1,a-vale-i1,2020-21,Springfield-Milton Bradley School,02810023, 94.0, 9.6, 30.9, 18.2, 23.1 -7.280000000000001,1,a-vale-i1,2020-21,Springfield-Springfield International Academy at Sci-Tech,02810700, 89.0, 16.3, 48.5, 38.2, 48.5 +-8.0,1,a-vale-i1,2020-21,Springfield-Brightwood,02810025, 90.5, 15.4, 56.6, 40.0, 50.9 +-2.3200000000000003,1,a-vale-i1,2020-21,Springfield-Elias Brookings,02810030, 92.6, 11.7, 40.3, 25.8, 33.5 +-1.5200000000000002,1,a-vale-i1,2020-21,Springfield-Daniel B Brunton,02810035, 93.4, 10.7, 37.3, 23.8, 36.2 +-8.959999999999999,1,a-vale-i1,2020-21,Springfield-William N. DeBerry,02810045, 88.2, 18.4, 56.9, 42.4, 53.6 +0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Mary M Lynch,02810140, 93.1, 11.4, 38.2, 19.3, 33.6 +-1.0400000000000005,1,a-vale-i1,2020-21,Springfield-Mary O Pottenger,02810145, 93.5, 10.2, 40.9, 22.6, 31.4 +-0.6799999999999997,1,a-vale-i1,2020-21,Springfield-Mary M Walsh,02810155, 92.3, 12.9, 42.1, 21.7, 34.1 +-4.4,1,a-vale-i1,2020-21,Springfield-Sumner Avenue,02810160, 90.1, 15.5, 45.0, 31.0, 42.2 -1.8,1,a-vale-i1,2020-21,Springfield-Arthur T Talmadge,02810165, 91.9, 13.4, 42.7, 24.5, 39.4 3.7600000000000002,3.76,a-vale-i1,2020-21,Springfield-Alice B Beal Elementary,02810175, 95.8, 6.7, 23.0, 10.6, 9.6 0.0,1,a-vale-i1,2020-21,Springfield-Warner,02810180, 93.9, 9.7, 34.4, 20.0, 18.8 -1.2400000000000007,1,a-vale-i1,2020-21,Springfield-Washington,02810185, 92.1, 12.5, 41.3, 23.1, 36.0 -1.4400000000000006,1,a-vale-i1,2020-21,Springfield-White Street,02810190, 92.4, 12.3, 43.6, 23.6, 43.1 --2.3200000000000003,1,a-vale-i1,2020-21,Springfield-Elias Brookings,02810030, 92.6, 11.7, 40.3, 25.8, 33.5 --1.5200000000000002,1,a-vale-i1,2020-21,Springfield-Daniel B Brunton,02810035, 93.4, 10.7, 37.3, 23.8, 36.2 --8.959999999999999,1,a-vale-i1,2020-21,Springfield-William N. DeBerry,02810045, 88.2, 18.4, 56.9, 42.4, 53.6 --0.5599999999999994,1,a-vale-i1,2020-21,Springfield-Hiram L Dorman,02810050, 93.4, 10.9, 38.7, 21.4, 37.4 --8.959999999999999,1,a-vale-i1,2020-21,Springfield-Rebecca M Johnson,02810055, 88.2, 18.7, 59.7, 42.4, 58.1 --0.8400000000000005,1,a-vale-i1,2020-21,Springfield-Margaret C Ells,02810060, 93.6, 9.1, 29.4, 22.1, 24.5 -1.5200000000000002,1.52,a-vale-i1,2020-21,Springfield-Glenwood,02810065, 94.6, 8.8, 32.0, 16.2, 17.3 -1.5599999999999994,1.56,a-vale-i1,2020-21,Springfield-Springfield Central High,02810500, 95.3, 7.8, 27.3, 16.1, 26.0 --4.159999999999999,1,a-vale-i1,2020-21,Springfield-High School Of Commerce,02810510, 90.4, 15.4, 41.3, 30.4, 38.4 --1.8,1,a-vale-i1,2020-21,Springfield-Springfield High School of Science and Technology,02810530, 92.9, 11.9, 37.9, 24.5, 35.4 --22.0,1,a-vale-i1,2020-21,Springfield-Springfield Public Day High School,02810550, 64.6, 53.7, 77.3, 75.0, 71.6 --9.16,1,a-vale-i1,2020-21,Springfield-Liberty Preparatory Academy,02810560, 88.2, 15.0, 42.9, 42.9, 42.9 --15.36,1,a-vale-i1,2020-21,Springfield-Springfield High School,02810570, 77.8, 33.5, 65.5, 58.4, 61.4 --1.4,1,a-vale-i1,2020-21,Springfield-Gateway to College at Holyoke Community College,02810575, 92.5, 9.9, 35.3, 23.5, 32.4 -2.4,1,a-vale-i1,2020-21,Springfield-German Gerena Community School,02810195, 93.0, 11.3, 42.3, 26.0, 27.1 1.7200000000000002,1.72,a-vale-i1,2020-21,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 94.5, 9.3, 23.9, 15.7, 19.9 -3.7599999999999993,1,a-vale-i1,2020-21,Springfield-Springfield International Academy at Johnson,02810215, 90.9, 13.8, 52.9, 29.4, 52.9 @@ -3358,275 +3327,341 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -0.3200000000000003,1,a-vale-i1,2020-21,Springfield-Forest Park Middle,02810325, 92.4, 12.3, 31.8, 20.8, 31.3 -9.6,1,a-vale-i1,2020-21,Springfield-John F Kennedy Middle,02810328, 86.8, 21.6, 61.3, 44.0, 59.2 -6.080000000000001,1,a-vale-i1,2020-21,Springfield-M Marcus Kiley Middle,02810330, 88.0, 19.8, 49.4, 35.2, 47.4 --13.12,1,a-vale-i1,2020-21,Springfield-Springfield Public Day Middle School,02810345, 82.6, 29.0, 66.0, 52.8, 54.7 +2.4,2.4,a-vale-i1,2020-21,Springfield-Early Childhood Education Center,02810001, 95.5, 6.2, 24.4, 14.0, 2.4 +-15.6,1,a-vale-i1,2020-21,Springfield-Springfield Public Day Elementary School,02810005, 85.3, 24.4, 71.8, 59.0, 56.4 +-3.9599999999999995,1,a-vale-i1,2020-21,Springfield-Edward P. Boland School,02810010, 91.5, 13.3, 42.1, 29.9, 33.0 +0.04000000000000057,1,a-vale-i1,2020-21,Springfield-Thomas M Balliet,02810015, 94.0, 9.4, 31.8, 19.9, 16.5 +-0.5599999999999994,1,a-vale-i1,2020-21,Springfield-Hiram L Dorman,02810050, 93.4, 10.9, 38.7, 21.4, 37.4 +-8.959999999999999,1,a-vale-i1,2020-21,Springfield-Rebecca M Johnson,02810055, 88.2, 18.7, 59.7, 42.4, 58.1 +-0.8400000000000005,1,a-vale-i1,2020-21,Springfield-Margaret C Ells,02810060, 93.6, 9.1, 29.4, 22.1, 24.5 +1.5200000000000002,1.52,a-vale-i1,2020-21,Springfield-Glenwood,02810065, 94.6, 8.8, 32.0, 16.2, 17.3 +-3.2,1,a-vale-i1,2020-21,Springfield-Glickman Elementary,02810068, 92.1, 13.0, 45.4, 28.0, 42.0 +0.15999999999999942,1,a-vale-i1,2020-21,Springfield-Frank H Freedman,02810075, 93.7, 10.4, 28.9, 19.6, 25.7 +-0.3200000000000003,1,a-vale-i1,2020-21,Springfield-Frederick Harris,02810080, 93.4, 10.7, 34.1, 20.8, 25.6 +0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Homer Street,02810085, 94.6, 8.8, 34.3, 19.3, 20.1 +5.6,5,a-vale-i1,2020-21,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 97.2, 4.6, 14.4, 6.0, 10.1 +-2.4,1,a-vale-i1,2020-21,Springfield-Indian Orchard Elementary,02810100, 93.0, 11.2, 40.7, 26.0, 38.7 +-2.0,1,a-vale-i1,2020-21,Springfield-Kensington International School,02810110, 92.6, 11.8, 40.8, 25.0, 32.7 +0.6400000000000006,1,a-vale-i1,2020-21,Springfield-Liberty,02810115, 93.8, 10.2, 37.2, 18.4, 36.1 +-2.0400000000000005,1,a-vale-i1,2020-21,Springfield-Lincoln,02810120, 92.7, 11.8, 40.8, 25.1, 36.2 +3.6,3.6,a-vale-i1,2020-21,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 95.4, 7.5, 27.4, 11.0, 12.6 +-5.840000000000001,1,a-vale-i1,2020-21,Springfield-Impact Prep at Chestnut,02810366, 89.7, 17.1, 48.3, 34.6, 45.3 +2.4,2.4,a-vale-i1,2020-21,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 95.9, 6.9, 23.7, 14.0, 21.8 +-0.2799999999999997,1,a-vale-i1,2020-21,Springfield-Conservatory of the Arts,02810475, 93.4, 11.2, 34.7, 20.7, 23.7 +-3.4400000000000004,1,a-vale-i1,2020-21,Springfield-Rise Academy at Van Sickle,02810480, 90.4, 15.4, 38.6, 28.6, 38.3 +-3.8,1,a-vale-i1,2020-21,Springfield-Van Sickle Academy,02810485, 92.1, 12.9, 38.6, 29.5, 36.8 +1.5599999999999994,1.56,a-vale-i1,2020-21,Springfield-Springfield Central High,02810500, 95.3, 7.8, 27.3, 16.1, 26.0 +-4.159999999999999,1,a-vale-i1,2020-21,Springfield-High School Of Commerce,02810510, 90.4, 15.4, 41.3, 30.4, 38.4 +-1.8,1,a-vale-i1,2020-21,Springfield-Springfield High School of Science and Technology,02810530, 92.9, 11.9, 37.9, 24.5, 35.4 +-22.0,1,a-vale-i1,2020-21,Springfield-Springfield Public Day High School,02810550, 64.6, 53.7, 77.3, 75.0, 71.6 +-9.16,1,a-vale-i1,2020-21,Springfield-Liberty Preparatory Academy,02810560, 88.2, 15.0, 42.9, 42.9, 42.9 +-15.36,1,a-vale-i1,2020-21,Springfield-Springfield High School,02810570, 77.8, 33.5, 65.5, 58.4, 61.4 +-1.4,1,a-vale-i1,2020-21,Springfield-Gateway to College at Holyoke Community College,02810575, 92.5, 9.9, 35.3, 23.5, 32.4 +-2.3599999999999994,1,a-vale-i1,2020-21,Springfield-Gateway to College at Springfield Technical Community College,02810580, 93.1, 10.0, 37.0, 25.9, 37.0 +-1.3599999999999994,1,a-vale-i1,2020-21,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.6, 14.1, 39.2, 23.4, 33.0 4.32,4.32,a-vale-i1,2020-21,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 96.0, 7.0, 23.6, 9.2, 13.6 -4.279999999999999,4.28,a-vale-i1,2020-21,Stoneham-South,02840030, 96.2, 6.3, 17.1, 9.3, 0.0 5.279999999999999,5,a-vale-i1,2020-21,Stoneham-Robin Hood,02840025, 96.7, 5.5, 14.6, 6.8, 0.0 4.96,4.96,a-vale-i1,2020-21,Stoneham-Colonial Park,02840005, 96.2, 6.3, 13.3, 7.6, 0.0 -0.2,1,a-vale-i1,2020-21,Stoneham-Stoneham High,02840505, 93.8, 10.2, 34.6, 19.5, 0.0 +4.279999999999999,4.28,a-vale-i1,2020-21,Stoneham-South,02840030, 96.2, 6.3, 17.1, 9.3, 0.0 3.5200000000000005,3.52,a-vale-i1,2020-21,Stoneham-Stoneham Central Middle School,02840405, 95.2, 7.9, 26.4, 11.2, 0.0 +0.2,1,a-vale-i1,2020-21,Stoneham-Stoneham High,02840505, 93.8, 10.2, 34.6, 19.5, 0.0 +-3.0400000000000005,1,a-vale-i1,2020-21,Stoughton-Edwin A Jones Early Childhood Center,02850012, 93.5, 7.6, 30.3, 27.6, 0.0 +3.04,3.04,a-vale-i1,2020-21,Stoughton-Helen Hansen Elementary,02850010, 95.8, 7.0, 22.9, 12.4, 0.0 +3.3600000000000003,3.36,a-vale-i1,2020-21,Stoughton-Joseph R Dawe Jr Elementary,02850014, 95.6, 7.2, 25.3, 11.6, 0.0 1.5200000000000002,1.52,a-vale-i1,2020-21,Stoughton-Stoughton High,02850505, 93.4, 11.1, 27.9, 16.2, 0.1 -3.6799999999999997,3.68,a-vale-i1,2020-21,Stoughton-O'Donnell Middle School,02850405, 95.9, 6.9, 24.4, 10.8, 0.1 +5.36,5,a-vale-i1,2020-21,Stoughton-South Elementary,02850015, 96.7, 5.5, 17.7, 6.6, 0.0 1.9600000000000002,1.96,a-vale-i1,2020-21,Stoughton-Richard L. Wilkins Elementary School,02850020, 94.5, 9.0, 33.8, 15.1, 0.0 0.9599999999999994,1,a-vale-i1,2020-21,Stoughton-Joseph H Gibbons,02850025, 94.2, 9.5, 29.3, 17.6, 0.0 -5.36,5,a-vale-i1,2020-21,Stoughton-South Elementary,02850015, 96.7, 5.5, 17.7, 6.6, 0.0 -3.04,3.04,a-vale-i1,2020-21,Stoughton-Helen Hansen Elementary,02850010, 95.8, 7.0, 22.9, 12.4, 0.0 --3.0400000000000005,1,a-vale-i1,2020-21,Stoughton-Edwin A Jones Early Childhood Center,02850012, 93.5, 7.6, 30.3, 27.6, 0.0 -3.3600000000000003,3.36,a-vale-i1,2020-21,Stoughton-Joseph R Dawe Jr Elementary,02850014, 95.6, 7.2, 25.3, 11.6, 0.0 +3.6799999999999997,3.68,a-vale-i1,2020-21,Stoughton-O'Donnell Middle School,02850405, 95.9, 6.9, 24.4, 10.8, 0.1 6.4,5,a-vale-i1,2020-21,Sturbridge-Burgess Elementary,02870005, 97.6, 3.9, 9.6, 4.0, 5.2 3.6799999999999997,3.68,a-vale-i1,2020-21,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 95.5, 7.6, 23.6, 10.8, 4.0 -7.4,5,a-vale-i1,2020-21,Sudbury-Josiah Haynes,02880010, 97.9, 3.6, 5.2, 1.5, 0.9 6.04,5,a-vale-i1,2020-21,Sudbury-Israel Loring School,02880015, 97.3, 4.6, 12.8, 4.9, 0.7 7.6,5,a-vale-i1,2020-21,Sudbury-General John Nixon Elementary,02880025, 98.2, 3.1, 5.2, 1.0, 0.3 7.159999999999999,5,a-vale-i1,2020-21,Sudbury-Peter Noyes,02880030, 97.8, 3.6, 7.7, 2.1, 0.9 6.68,5,a-vale-i1,2020-21,Sudbury-Ephraim Curtis Middle,02880305, 97.8, 3.7, 7.6, 3.3, 0.4 +7.4,5,a-vale-i1,2020-21,Sudbury-Josiah Haynes,02880010, 97.9, 3.6, 5.2, 1.5, 0.9 -1.2400000000000007,1,a-vale-i1,2020-21,Sunderland-Sunderland Elementary,02890005, 93.1, 10.7, 36.2, 23.1, 6.0 -5.6,5,a-vale-i1,2020-21,Sutton-Sutton High School,02900510, 97.0, 4.9, 14.7, 6.0, 2.2 3.6799999999999997,3.68,a-vale-i1,2020-21,Sutton-Sutton Early Learning,02900003, 95.5, 7.2, 23.7, 10.8, 0.0 5.5200000000000005,5,a-vale-i1,2020-21,Sutton-Sutton Elementary,02900005, 97.1, 4.7, 13.5, 6.2, 0.0 5.4,5,a-vale-i1,2020-21,Sutton-Sutton Middle School,02900305, 96.8, 5.4, 14.9, 6.5, 0.9 -2.0,2.0,a-vale-i1,2020-21,Swampscott-Swampscott Middle,02910305, 94.5, 9.1, 29.2, 15.0, 8.8 +5.6,5,a-vale-i1,2020-21,Sutton-Sutton High School,02900510, 97.0, 4.9, 14.7, 6.0, 2.2 7.12,5,a-vale-i1,2020-21,Swampscott-Stanley,02910020, 96.9, 5.1, 13.7, 2.2, 4.4 3.0799999999999996,3.08,a-vale-i1,2020-21,Swampscott-Hadley,02910010, 95.0, 8.3, 28.2, 12.3, 8.8 2.12,2.12,a-vale-i1,2020-21,Swampscott-Clarke,02910005, 94.6, 8.6, 30.7, 14.7, 9.6 -5.4,1,a-vale-i1,2020-21,Swampscott-Swampscott High,02910505, 89.0, 18.0, 53.4, 33.5, 18.7 --3.72,1,a-vale-i1,2020-21,Swansea-Joseph Case Jr High,02920305, 91.8, 13.7, 47.2, 29.3, 6.6 +2.0,2.0,a-vale-i1,2020-21,Swampscott-Swampscott Middle,02910305, 94.5, 9.1, 29.2, 15.0, 8.8 +-2.3599999999999994,1,a-vale-i1,2020-21,Swansea-Joseph Case High,02920505, 90.9, 15.2, 48.7, 25.9, 14.6 6.36,5,a-vale-i1,2020-21,Swansea-Joseph G Luther,02920020, 97.1, 4.9, 13.8, 4.1, 7.2 2.12,2.12,a-vale-i1,2020-21,Swansea-Mark G Hoyle Elementary,02920017, 95.1, 7.8, 23.7, 14.7, 10.9 6.640000000000001,5,a-vale-i1,2020-21,Swansea-Gardner,02920015, 97.0, 4.9, 12.2, 3.4, 1.5 6.279999999999999,5,a-vale-i1,2020-21,Swansea-Elizabeth S Brown,02920006, 96.7, 5.5, 14.7, 4.3, 2.5 --2.3599999999999994,1,a-vale-i1,2020-21,Swansea-Joseph Case High,02920505, 90.9, 15.2, 48.7, 25.9, 14.6 +-3.72,1,a-vale-i1,2020-21,Swansea-Joseph Case Jr High,02920305, 91.8, 13.7, 47.2, 29.3, 6.6 -2.6,1,a-vale-i1,2020-21,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 90.2, 15.5, 30.4, 26.5, 0.0 +3.6,3.6,a-vale-i1,2020-21,Tantasqua-Tantasqua Regional Sr High,07700505, 95.6, 7.2, 22.1, 11.0, 0.3 3.0,3.0,a-vale-i1,2020-21,Tantasqua-Tantasqua Regional Vocational,07700605, 95.2, 8.1, 25.1, 12.5, 0.2 4.64,4.64,a-vale-i1,2020-21,Tantasqua-Tantasqua Regional Jr High,07700405, 96.1, 6.4, 17.4, 8.4, 3.0 -3.6,3.6,a-vale-i1,2020-21,Tantasqua-Tantasqua Regional Sr High,07700505, 95.6, 7.2, 22.1, 11.0, 0.3 -0.7599999999999995,1,a-vale-i1,2020-21,Taunton-Joseph C Chamberlain,02930008, 93.8, 10.3, 28.6, 18.1, 10.9 -3.16,3.16,a-vale-i1,2020-21,Taunton-Edmund Hatch Bennett,02930007, 95.8, 7.0, 23.2, 12.1, 6.9 --0.7599999999999995,1,a-vale-i1,2020-21,Taunton-Benjamin Friedman Middle,02930315, 93.2, 11.3, 32.9, 21.9, 8.8 --6.4,1,a-vale-i1,2020-21,Taunton-John F Parker Middle,02930305, 89.6, 17.2, 49.3, 36.0, 9.7 -2.8,1,a-vale-i1,2020-21,Taunton-H H Galligan,02930057, 91.9, 13.3, 47.1, 27.0, 15.2 --18.04,1,a-vale-i1,2020-21,Taunton-Taunton Alternative High School,02930525, 71.8, 42.6, 69.8, 65.1, 35.8 --6.880000000000001,1,a-vale-i1,2020-21,Taunton-Taunton High,02930505, 86.9, 21.7, 50.7, 37.2, 9.5 -2.3200000000000003,2.32,a-vale-i1,2020-21,Taunton-East Taunton Elementary,02930010, 95.1, 8.1, 24.6, 14.2, 7.8 --1.2799999999999998,1,a-vale-i1,2020-21,Taunton-Mulcahey Elementary School,02930015, 92.9, 11.6, 38.4, 23.2, 10.7 --4.2,1,a-vale-i1,2020-21,Taunton-Edward F. Leddy Preschool,02930005, 91.1, 11.6, 38.6, 30.5, 17.9 -4.919999999999999,1,a-vale-i1,2020-21,Taunton-Joseph H Martin,02930042, 90.6, 15.6, 42.3, 32.3, 8.6 -2.72,1,a-vale-i1,2020-21,Taunton-Elizabeth Pole,02930027, 92.7, 11.8, 40.4, 26.8, 12.6 -7.5200000000000005,5,a-vale-i1,2020-21,Tewksbury-Louise Davy Trahan,02950025, 98.2, 3.0, 5.3, 1.2, 0.8 +-1.2799999999999998,1,a-vale-i1,2020-21,Taunton-Mulcahey Elementary School,02930015, 92.9, 11.6, 38.4, 23.2, 10.7 +2.3200000000000003,2.32,a-vale-i1,2020-21,Taunton-East Taunton Elementary,02930010, 95.1, 8.1, 24.6, 14.2, 7.8 +0.7599999999999995,1,a-vale-i1,2020-21,Taunton-Joseph C Chamberlain,02930008, 93.8, 10.3, 28.6, 18.1, 10.9 +3.16,3.16,a-vale-i1,2020-21,Taunton-Edmund Hatch Bennett,02930007, 95.8, 7.0, 23.2, 12.1, 6.9 +-18.04,1,a-vale-i1,2020-21,Taunton-Taunton Alternative High School,02930525, 71.8, 42.6, 69.8, 65.1, 35.8 +-0.7599999999999995,1,a-vale-i1,2020-21,Taunton-Benjamin Friedman Middle,02930315, 93.2, 11.3, 32.9, 21.9, 8.8 +-6.880000000000001,1,a-vale-i1,2020-21,Taunton-Taunton High,02930505, 86.9, 21.7, 50.7, 37.2, 9.5 +-4.2,1,a-vale-i1,2020-21,Taunton-Edward F. Leddy Preschool,02930005, 91.1, 11.6, 38.6, 30.5, 17.9 +-6.4,1,a-vale-i1,2020-21,Taunton-John F Parker Middle,02930305, 89.6, 17.2, 49.3, 36.0, 9.7 +5.0,5.0,a-vale-i1,2020-21,Tewksbury-Tewksbury Memorial High,02950505, 96.4, 6.0, 14.3, 7.5, 2.8 +5.84,5,a-vale-i1,2020-21,Tewksbury-John W. Wynn Middle,02950305, 96.9, 5.1, 14.2, 5.4, 2.5 +7.359999999999999,5,a-vale-i1,2020-21,Tewksbury-Heath-Brook,02950010, 97.8, 3.7, 6.3, 1.6, 3.5 6.6,5,a-vale-i1,2020-21,Tewksbury-John F. Ryan,02950023, 97.8, 3.6, 8.2, 3.5, 1.9 7.4,5,a-vale-i1,2020-21,Tewksbury-North Street,02950020, 98.7, 2.2, 3.4, 1.5, 0.7 -7.359999999999999,5,a-vale-i1,2020-21,Tewksbury-Heath-Brook,02950010, 97.8, 3.7, 6.3, 1.6, 3.5 +7.5200000000000005,5,a-vale-i1,2020-21,Tewksbury-Louise Davy Trahan,02950025, 98.2, 3.0, 5.3, 1.2, 0.8 4.4399999999999995,4.44,a-vale-i1,2020-21,Tewksbury-L F Dewing,02950001, 96.5, 5.6, 16.1, 8.9, 4.0 -5.84,5,a-vale-i1,2020-21,Tewksbury-John W. Wynn Middle,02950305, 96.9, 5.1, 14.2, 5.4, 2.5 -5.0,5.0,a-vale-i1,2020-21,Tewksbury-Tewksbury Memorial High,02950505, 96.4, 6.0, 14.3, 7.5, 2.8 -3.0799999999999996,1,a-vale-i1,2020-21,Tisbury-Tisbury Elementary,02960005, 92.8, 11.2, 43.3, 27.7, 0.0 7.359999999999999,5,a-vale-i1,2020-21,Topsfield-Proctor Elementary,02980005, 98.0, 3.3, 6.6, 1.6, 3.1 6.92,5,a-vale-i1,2020-21,Topsfield-Steward Elementary,02980010, 97.4, 4.3, 11.6, 2.7, 4.2 -3.8400000000000007,1,a-vale-i1,2020-21,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 90.4, 16.4, 54.9, 29.6, 0.0 -2.96,2.96,a-vale-i1,2020-21,Triton-Newbury Elementary,07730020, 95.3, 7.4, 23.3, 12.6, 9.4 --0.9599999999999994,1,a-vale-i1,2020-21,Triton-Triton Regional High School,07730505, 92.7, 12.0, 38.9, 22.4, 14.0 2.5200000000000005,2.52,a-vale-i1,2020-21,Triton-Triton Regional Middle School,07730405, 95.2, 8.0, 21.3, 13.7, 9.7 -3.56,3.56,a-vale-i1,2020-21,Triton-Pine Grove,07730025, 95.9, 6.4, 19.0, 11.1, 7.9 0.15999999999999942,1,a-vale-i1,2020-21,Triton-Salisbury Elementary,07730015, 93.9, 9.6, 36.3, 19.6, 8.9 +2.96,2.96,a-vale-i1,2020-21,Triton-Newbury Elementary,07730020, 95.3, 7.4, 23.3, 12.6, 9.4 +3.56,3.56,a-vale-i1,2020-21,Triton-Pine Grove,07730025, 95.9, 6.4, 19.0, 11.1, 7.9 +-0.9599999999999994,1,a-vale-i1,2020-21,Triton-Triton Regional High School,07730505, 92.7, 12.0, 38.9, 22.4, 14.0 3.16,3.16,a-vale-i1,2020-21,Truro-Truro Central,03000005, 94.3, 9.3, 31.0, 12.1, 24.1 2.7600000000000002,2.76,a-vale-i1,2020-21,Tyngsborough-Tyngsborough High School,03010505, 94.2, 9.7, 30.1, 13.1, 4.5 -5.279999999999999,5,a-vale-i1,2020-21,Tyngsborough-Tyngsborough Middle,03010305, 96.5, 5.8, 19.0, 6.8, 0.0 5.279999999999999,5,a-vale-i1,2020-21,Tyngsborough-Tyngsborough Elementary,03010020, 96.8, 5.3, 15.0, 6.8, 0.0 +5.279999999999999,5,a-vale-i1,2020-21,Tyngsborough-Tyngsborough Middle,03010305, 96.5, 5.8, 19.0, 6.8, 0.0 0.4,1,a-vale-i1,2020-21,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 93.9, 10.7, 28.9, 19.0, 0.6 0.2,1,a-vale-i1,2020-21,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 93.0, 12.5, 35.5, 19.5, 0.0 -3.6399999999999997,3.64,a-vale-i1,2020-21,Up-Island Regional-Chilmark Elementary,07740010, 94.4, 9.0, 41.8, 10.9, 41.8 -1.6,1,a-vale-i1,2020-21,Up-Island Regional-West Tisbury Elementary,07740020, 93.5, 10.6, 41.8, 24.0, 32.9 +3.6399999999999997,3.64,a-vale-i1,2020-21,Up-Island Regional-Chilmark Elementary,07740010, 94.4, 9.0, 41.8, 10.9, 41.8 -4.08,1,a-vale-i1,2020-21,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 91.4, 14.9, 52.4, 30.2, 5.5 -8.0,5,a-vale-i1,2020-21,Uxbridge-Gateway to College,03040515, 100.0, 0.0, 0.0, 0.0, 0.0 -5.6800000000000015,1,a-vale-i1,2020-21,Uxbridge-Uxbridge High,03040505, 91.2, 14.4, 54.2, 34.2, 8.6 +8.0,5,a-vale-i1,2020-21,Uxbridge-Gateway to College,03040515, 100.0, 0.0, 0.0, 0.0, 0.0 3.4,3.4,a-vale-i1,2020-21,Uxbridge-Taft Early Learning Center,03040005, 95.4, 7.3, 23.8, 11.5, 13.4 5.2,5,a-vale-i1,2020-21,Uxbridge-Whitin Intermediate,03040405, 96.0, 6.6, 20.6, 7.0, 8.0 -0.8799999999999997,1,a-vale-i1,2020-21,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 93.0, 12.2, 36.5, 22.2, 22.4 -1.4799999999999998,1.48,a-vale-i1,2020-21,Wachusett-Chocksett Middle School,07750315, 93.8, 10.2, 32.9, 16.3, 0.0 -5.08,5,a-vale-i1,2020-21,Wachusett-Central Tree Middle,07750310, 96.1, 6.5, 19.8, 7.3, 0.0 -6.08,5,a-vale-i1,2020-21,Wachusett-Mountview Middle,07750305, 97.3, 4.5, 10.9, 4.8, 0.0 6.279999999999999,5,a-vale-i1,2020-21,Wachusett-Glenwood Elementary School,07750060, 97.1, 4.9, 10.9, 4.3, 0.0 +6.4,5,a-vale-i1,2020-21,Wachusett-Thomas Prince,07750045, 97.5, 4.0, 8.3, 4.0, 0.0 +6.08,5,a-vale-i1,2020-21,Wachusett-Mountview Middle,07750305, 97.3, 4.5, 10.9, 4.8, 0.0 +5.08,5,a-vale-i1,2020-21,Wachusett-Central Tree Middle,07750310, 96.1, 6.5, 19.8, 7.3, 0.0 +1.4799999999999998,1.48,a-vale-i1,2020-21,Wachusett-Chocksett Middle School,07750315, 93.8, 10.2, 32.9, 16.3, 0.0 -6.919999999999999,1,a-vale-i1,2020-21,Wachusett-Wachusett Regional High,07750505, 89.5, 17.5, 54.4, 37.3, 0.0 -8.0,1,a-vale-i1,2020-21,Wachusett-Early Childhood Center,07750001, 88.0, 12.2, 44.4, 40.0, 0.0 -6.4,5,a-vale-i1,2020-21,Wachusett-Thomas Prince,07750045, 97.5, 4.0, 8.3, 4.0, 0.0 -7.0,5,a-vale-i1,2020-21,Wachusett-Davis Hill Elementary,07750018, 97.7, 3.8, 7.8, 2.5, 0.0 -6.16,5,a-vale-i1,2020-21,Wachusett-Dawson,07750020, 96.9, 5.0, 8.7, 4.6, 0.0 -6.2,5,a-vale-i1,2020-21,Wachusett-Houghton Elementary,07750027, 97.3, 4.5, 10.7, 4.5, 0.0 -7.0,5,a-vale-i1,2020-21,Wachusett-Leroy E.Mayo,07750032, 97.9, 3.4, 5.3, 2.5, 0.0 -2.12,2.12,a-vale-i1,2020-21,Wachusett-Paxton Center,07750040, 94.7, 8.9, 24.7, 14.7, 0.0 5.88,5,a-vale-i1,2020-21,Wachusett-Naquag Elementary School,07750005, 96.7, 5.5, 15.0, 5.3, 0.0 -2.72,2.72,a-vale-i1,2020-21,Wakefield-Galvin Middle School,03050310, 94.9, 8.6, 27.9, 13.2, 0.0 --0.2799999999999997,1,a-vale-i1,2020-21,Wakefield-Wakefield Memorial High,03050505, 93.7, 10.5, 38.4, 20.7, 6.9 -4.16,4.16,a-vale-i1,2020-21,Wakefield-Early Childhood Center at the Doyle School,03050001, 95.4, 7.0, 25.3, 9.6, 0.0 -3.6799999999999997,3.68,a-vale-i1,2020-21,Wakefield-Woodville School,03050015, 95.5, 7.6, 27.1, 10.8, 0.0 -4.4,4.4,a-vale-i1,2020-21,Wakefield-Dolbeare,03050005, 95.4, 7.7, 24.8, 9.0, 0.0 +7.0,5,a-vale-i1,2020-21,Wachusett-Davis Hill Elementary,07750018, 97.7, 3.8, 7.8, 2.5, 0.0 +2.12,2.12,a-vale-i1,2020-21,Wachusett-Paxton Center,07750040, 94.7, 8.9, 24.7, 14.7, 0.0 +7.0,5,a-vale-i1,2020-21,Wachusett-Leroy E.Mayo,07750032, 97.9, 3.4, 5.3, 2.5, 0.0 +6.2,5,a-vale-i1,2020-21,Wachusett-Houghton Elementary,07750027, 97.3, 4.5, 10.7, 4.5, 0.0 +6.16,5,a-vale-i1,2020-21,Wachusett-Dawson,07750020, 96.9, 5.0, 8.7, 4.6, 0.0 4.8,4.8,a-vale-i1,2020-21,Wakefield-Walton,03050040, 96.3, 6.3, 21.9, 8.0, 0.0 +4.16,4.16,a-vale-i1,2020-21,Wakefield-Early Childhood Center at the Doyle School,03050001, 95.4, 7.0, 25.3, 9.6, 0.0 +4.4,4.4,a-vale-i1,2020-21,Wakefield-Dolbeare,03050005, 95.4, 7.7, 24.8, 9.0, 0.0 5.96,5,a-vale-i1,2020-21,Wakefield-Greenwood,03050020, 96.9, 5.2, 16.2, 5.1, 0.0 +3.6799999999999997,3.68,a-vale-i1,2020-21,Wakefield-Woodville School,03050015, 95.5, 7.6, 27.1, 10.8, 0.0 +-0.2799999999999997,1,a-vale-i1,2020-21,Wakefield-Wakefield Memorial High,03050505, 93.7, 10.5, 38.4, 20.7, 6.9 +2.72,2.72,a-vale-i1,2020-21,Wakefield-Galvin Middle School,03050310, 94.9, 8.6, 27.9, 13.2, 0.0 6.16,5,a-vale-i1,2020-21,Wales-Wales Elementary,03060005, 96.8, 5.3, 16.9, 4.6, 10.0 -3.3200000000000003,3.32,a-vale-i1,2020-21,Walpole-Walpole High,03070505, 95.1, 8.3, 23.1, 11.7, 6.0 -1.7599999999999993,1,a-vale-i1,2020-21,Walpole-Bird Middle,03070305, 92.4, 13.0, 41.8, 24.4, 4.2 +3.3200000000000003,3.32,a-vale-i1,2020-21,Walpole-Walpole High,03070505, 95.1, 8.3, 23.1, 11.7, 6.0 2.2399999999999998,2.24,a-vale-i1,2020-21,Walpole-Eleanor N Johnson Middle,03070310, 94.8, 9.0, 27.1, 14.4, 6.6 6.720000000000001,5,a-vale-i1,2020-21,Walpole-Old Post Road,03070018, 97.4, 4.3, 12.9, 3.2, 1.7 5.24,5,a-vale-i1,2020-21,Walpole-Fisher,03070015, 96.1, 6.7, 24.0, 6.9, 1.3 4.36,4.36,a-vale-i1,2020-21,Walpole-Boyden,03070010, 96.4, 6.2, 18.4, 9.1, 4.2 6.92,5,a-vale-i1,2020-21,Walpole-Elm Street School,03070005, 97.4, 4.3, 11.4, 2.7, 6.8 1.7600000000000002,1.76,a-vale-i1,2020-21,Walpole-Daniel Feeney Preschool Center,03070002, 95.1, 7.8, 27.3, 15.6, 26.0 --0.2,1,a-vale-i1,2020-21,Waltham-William F. Stanley Elementary School,03080005, 93.9, 9.2, 30.2, 20.5, 13.1 5.24,5,a-vale-i1,2020-21,Waltham-Waltham Public Schools Dual Language Program,03080001, 96.9, 5.2, 14.3, 6.9, 4.6 --5.76,1,a-vale-i1,2020-21,Waltham-Waltham Sr High,03080505, 88.8, 18.1, 48.2, 34.4, 15.3 -3.84,3.84,a-vale-i1,2020-21,Waltham-John W. McDevitt Middle School,03080415, 95.6, 7.3, 20.8, 10.4, 4.2 +-0.2,1,a-vale-i1,2020-21,Waltham-William F. Stanley Elementary School,03080005, 93.9, 9.2, 30.2, 20.5, 13.1 -1.6799999999999997,1,a-vale-i1,2020-21,Waltham-Northeast Elementary School,03080040, 92.8, 10.5, 32.8, 24.2, 12.2 --2.2,1,a-vale-i1,2020-21,Waltham-Henry Whittemore Elementary School,03080065, 93.3, 10.9, 36.3, 25.5, 11.1 -4.32,4.32,a-vale-i1,2020-21,Waltham-James Fitzgerald Elementary School,03080060, 96.4, 5.8, 15.2, 9.2, 4.7 2.6399999999999997,2.64,a-vale-i1,2020-21,Waltham-Thomas R Plympton Elementary School,03080050, 95.8, 6.8, 21.5, 13.4, 5.8 +4.32,4.32,a-vale-i1,2020-21,Waltham-James Fitzgerald Elementary School,03080060, 96.4, 5.8, 15.2, 9.2, 4.7 +-2.2,1,a-vale-i1,2020-21,Waltham-Henry Whittemore Elementary School,03080065, 93.3, 10.9, 36.3, 25.5, 11.1 6.959999999999999,5,a-vale-i1,2020-21,Waltham-Douglas MacArthur Elementary School,03080032, 97.7, 3.8, 8.4, 2.6, 2.6 +3.84,3.84,a-vale-i1,2020-21,Waltham-John W. McDevitt Middle School,03080415, 95.6, 7.3, 20.8, 10.4, 4.2 +-5.76,1,a-vale-i1,2020-21,Waltham-Waltham Sr High,03080505, 88.8, 18.1, 48.2, 34.4, 15.3 4.5600000000000005,4.56,a-vale-i1,2020-21,Waltham-John F Kennedy Middle,03080404, 97.0, 4.9, 14.1, 8.6, 3.6 -0.3200000000000003,1,a-vale-i1,2020-21,Ware-Ware Middle School,03090305, 94.4, 9.1, 32.4, 20.8, 3.2 -11.0,1,a-vale-i1,2020-21,Ware-Ware Junior/Senior High School,03090505, 86.5, 21.8, 60.7, 47.5, 15.5 -4.56,1,a-vale-i1,2020-21,Ware-Stanley M Koziol Elementary School,03090020, 91.5, 13.0, 49.3, 31.4, 10.3 -3.6399999999999997,3.64,a-vale-i1,2020-21,Wareham-Wareham Senior High,03100505, 96.1, 6.4, 17.7, 10.9, 1.2 --22.28,1,a-vale-i1,2020-21,Wareham-Wareham Cooperative Alternative School,03100315, 80.2, 22.5, 78.4, 75.7, 0.0 --2.6,1,a-vale-i1,2020-21,Wareham-Minot Forest,03100017, 92.4, 12.4, 38.8, 26.5, 0.0 -0.8799999999999997,1,a-vale-i1,2020-21,Wareham-John William Decas,03100003, 93.0, 11.1, 35.5, 22.2, 0.0 -8.719999999999999,1,a-vale-i1,2020-21,Wareham-Wareham Middle,03100305, 88.0, 20.4, 71.5, 41.8, 0.0 +-2.6,1,a-vale-i1,2020-21,Wareham-Minot Forest,03100017, 92.4, 12.4, 38.8, 26.5, 0.0 +3.6399999999999997,3.64,a-vale-i1,2020-21,Wareham-Wareham Senior High,03100505, 96.1, 6.4, 17.7, 10.9, 1.2 +-22.28,1,a-vale-i1,2020-21,Wareham-Wareham Cooperative Alternative School,03100315, 80.2, 22.5, 78.4, 75.7, 0.0 5.12,5,a-vale-i1,2020-21,Watertown-James Russell Lowell,03140025, 96.3, 6.4, 17.1, 7.2, 6.5 -5.8,5,a-vale-i1,2020-21,Watertown-Cunniff,03140015, 97.3, 4.6, 12.2, 5.5, 0.0 1.6799999999999997,1.68,a-vale-i1,2020-21,Watertown-Watertown High,03140505, 94.2, 9.6, 27.6, 15.8, 0.0 -3.0799999999999996,3.08,a-vale-i1,2020-21,Watertown-Watertown Middle,03140305, 95.7, 7.4, 22.3, 12.3, 3.7 3.96,3.96,a-vale-i1,2020-21,Watertown-Hosmer,03140020, 96.2, 6.1, 18.7, 10.1, 4.9 -7.12,5,a-vale-i1,2020-21,Wayland-Claypit Hill School,03150005, 97.7, 3.8, 8.6, 2.2, 0.0 +5.8,5,a-vale-i1,2020-21,Watertown-Cunniff,03140015, 97.3, 4.6, 12.2, 5.5, 0.0 +3.0799999999999996,3.08,a-vale-i1,2020-21,Watertown-Watertown Middle,03140305, 95.7, 7.4, 22.3, 12.3, 3.7 6.44,5,a-vale-i1,2020-21,Wayland-Happy Hollow School,03150015, 97.6, 4.0, 8.4, 3.9, 0.0 +7.12,5,a-vale-i1,2020-21,Wayland-Claypit Hill School,03150005, 97.7, 3.8, 8.6, 2.2, 0.0 6.44,5,a-vale-i1,2020-21,Wayland-Loker School,03150020, 97.9, 3.5, 7.9, 3.9, 0.0 5.04,5,a-vale-i1,2020-21,Wayland-Wayland Middle School,03150305, 96.6, 5.7, 15.2, 7.4, 0.2 -32.0,1,a-vale-i1,2020-21,Wayland-Wayland High School,03150505, 77.0, 38.4, 100.0, 100.0, 0.7 --4.5200000000000005,1,a-vale-i1,2020-21,Webster-Webster Middle School,03160315, 91.0, 14.8, 44.2, 31.3, 0.0 --11.16,1,a-vale-i1,2020-21,Webster-Bartlett High School,03160505, 84.6, 24.4, 61.8, 47.9, 2.7 -2.88,1,a-vale-i1,2020-21,Webster-Park Avenue Elementary,03160015, 92.2, 12.3, 40.5, 27.2, 0.0 +-11.16,1,a-vale-i1,2020-21,Webster-Bartlett High School,03160505, 84.6, 24.4, 61.8, 47.9, 2.7 +-4.5200000000000005,1,a-vale-i1,2020-21,Webster-Webster Middle School,03160315, 91.0, 14.8, 44.2, 31.3, 0.0 +7.12,5,a-vale-i1,2020-21,Wellesley-Joseph E Fiske,03170015, 97.8, 3.6, 7.4, 2.2, 0.0 +7.4799999999999995,5,a-vale-i1,2020-21,Wellesley-John D Hardy,03170020, 98.5, 2.5, 6.0, 1.3, 0.0 6.6,5,a-vale-i1,2020-21,Wellesley-Hunnewell,03170025, 97.7, 3.9, 8.3, 3.5, 0.0 6.8,5,a-vale-i1,2020-21,Wellesley-Schofield,03170045, 97.8, 3.6, 6.9, 3.0, 0.0 -6.5200000000000005,5,a-vale-i1,2020-21,Wellesley-Ernest F Upham,03170050, 97.2, 4.8, 11.1, 3.7, 0.0 7.4799999999999995,5,a-vale-i1,2020-21,Wellesley-Sprague Elementary School,03170048, 98.1, 3.2, 5.1, 1.3, 0.0 -7.4799999999999995,5,a-vale-i1,2020-21,Wellesley-John D Hardy,03170020, 98.5, 2.5, 6.0, 1.3, 0.0 -7.12,5,a-vale-i1,2020-21,Wellesley-Joseph E Fiske,03170015, 97.8, 3.6, 7.4, 2.2, 0.0 -7.44,5,a-vale-i1,2020-21,Wellesley-Katharine Lee Bates,03170005, 98.0, 3.4, 7.1, 1.4, 0.0 -2.04,2.04,a-vale-i1,2020-21,Wellesley-Preschool at Wellesley Schools,03170001, 94.7, 8.1, 25.3, 14.9, 0.0 -7.12,5,a-vale-i1,2020-21,Wellesley-Wellesley Sr High,03170505, 98.5, 2.5, 5.0, 2.2, 0.0 +6.5200000000000005,5,a-vale-i1,2020-21,Wellesley-Ernest F Upham,03170050, 97.2, 4.8, 11.1, 3.7, 0.0 7.6,5,a-vale-i1,2020-21,Wellesley-Wellesley Middle,03170305, 98.6, 2.4, 3.5, 1.0, 0.0 +2.04,2.04,a-vale-i1,2020-21,Wellesley-Preschool at Wellesley Schools,03170001, 94.7, 8.1, 25.3, 14.9, 0.0 +7.44,5,a-vale-i1,2020-21,Wellesley-Katharine Lee Bates,03170005, 98.0, 3.4, 7.1, 1.4, 0.0 +7.12,5,a-vale-i1,2020-21,Wellesley-Wellesley Sr High,03170505, 98.5, 2.5, 5.0, 2.2, 0.0 -0.6799999999999997,1,a-vale-i1,2020-21,Wellfleet-Wellfleet Elementary,03180005, 93.5, 10.8, 43.4, 21.7, 19.8 -3.9200000000000004,3.92,a-vale-i1,2020-21,West Boylston-Major Edwards Elementary,03220005, 95.5, 7.3, 21.9, 10.2, 9.7 3.7600000000000002,3.76,a-vale-i1,2020-21,West Boylston-West Boylston Junior/Senior High,03220505, 95.1, 8.1, 25.2, 10.6, 6.3 -7.4799999999999995,5,a-vale-i1,2020-21,West Bridgewater-Howard School,03230305, 98.0, 3.4, 9.0, 1.3, 4.7 -5.12,5,a-vale-i1,2020-21,West Bridgewater-Spring Street School,03230005, 96.4, 6.0, 18.1, 7.2, 2.4 +3.9200000000000004,3.92,a-vale-i1,2020-21,West Boylston-Major Edwards Elementary,03220005, 95.5, 7.3, 21.9, 10.2, 9.7 7.040000000000001,5,a-vale-i1,2020-21,West Bridgewater-Rose L Macdonald,03230003, 96.9, 5.3, 16.3, 2.4, 0.0 +5.12,5,a-vale-i1,2020-21,West Bridgewater-Spring Street School,03230005, 96.4, 6.0, 18.1, 7.2, 2.4 +7.4799999999999995,5,a-vale-i1,2020-21,West Bridgewater-Howard School,03230305, 98.0, 3.4, 9.0, 1.3, 4.7 3.84,3.84,a-vale-i1,2020-21,West Bridgewater-West Bridgewater Junior/Senior,03230505, 95.3, 7.7, 23.3, 10.4, 3.8 --0.8799999999999997,1,a-vale-i1,2020-21,West Springfield-John Ashley,03320005, 92.7, 11.6, 37.9, 22.2, 0.0 --12.959999999999999,1,a-vale-i1,2020-21,West Springfield-Cowing Early Childhood,03320001, 82.1, 20.5, 56.3, 52.4, 0.0 -0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-West Springfield High,03320505, 93.3, 11.0, 27.1, 18.6, 0.0 -0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-West Springfield Middle,03320305, 93.5, 10.7, 28.5, 18.6, 0.1 4.4,4.4,a-vale-i1,2020-21,West Springfield-Tatham,03320040, 96.6, 5.7, 15.2, 9.0, 0.0 0.6400000000000006,1,a-vale-i1,2020-21,West Springfield-Mittineague,03320030, 94.1, 9.8, 27.6, 18.4, 0.0 +0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-West Springfield Middle,03320305, 93.5, 10.7, 28.5, 18.6, 0.1 +0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-West Springfield High,03320505, 93.3, 11.0, 27.1, 18.6, 0.0 3.3600000000000003,3.36,a-vale-i1,2020-21,West Springfield-John R Fausey,03320010, 95.2, 8.1, 24.1, 11.6, 0.0 -0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-Memorial,03320025, 93.6, 10.2, 34.0, 18.6, 0.0 0.44000000000000056,1,a-vale-i1,2020-21,West Springfield-Philip G Coburn,03320007, 93.7, 10.2, 30.5, 18.9, 0.0 -6.88,5,a-vale-i1,2020-21,Westborough-Annie E Fales,03210010, 95.7, 7.4, 16.9, 2.8, 0.0 -4.88,4.88,a-vale-i1,2020-21,Westborough-J Harding Armstrong,03210005, 94.9, 8.4, 26.7, 7.8, 0.0 -2.9200000000000004,2.92,a-vale-i1,2020-21,Westborough-Sarah W Gibbons Middle,03210305, 95.0, 8.4, 26.1, 12.7, 3.6 +0.5599999999999994,1,a-vale-i1,2020-21,West Springfield-Memorial,03320025, 93.6, 10.2, 34.0, 18.6, 0.0 +-12.959999999999999,1,a-vale-i1,2020-21,West Springfield-Cowing Early Childhood,03320001, 82.1, 20.5, 56.3, 52.4, 0.0 +-0.8799999999999997,1,a-vale-i1,2020-21,West Springfield-John Ashley,03320005, 92.7, 11.6, 37.9, 22.2, 0.0 4.04,4.04,a-vale-i1,2020-21,Westborough-Mill Pond School,03210045, 94.5, 9.3, 30.4, 9.9, 2.7 -0.04000000000000057,1,a-vale-i1,2020-21,Westborough-Elsie A Hastings Elementary,03210025, 92.9, 11.4, 39.8, 20.1, 0.0 +2.9200000000000004,2.92,a-vale-i1,2020-21,Westborough-Sarah W Gibbons Middle,03210305, 95.0, 8.4, 26.1, 12.7, 3.6 +4.88,4.88,a-vale-i1,2020-21,Westborough-J Harding Armstrong,03210005, 94.9, 8.4, 26.7, 7.8, 0.0 +6.88,5,a-vale-i1,2020-21,Westborough-Annie E Fales,03210010, 95.7, 7.4, 16.9, 2.8, 0.0 -5.880000000000001,1,a-vale-i1,2020-21,Westborough-Westborough High,03210505, 89.1, 18.4, 59.1, 34.7, 5.9 -2.84,2.84,a-vale-i1,2020-21,Westfield-Westfield High,03250505, 95.2, 7.9, 18.3, 12.9, 16.6 --3.2,1,a-vale-i1,2020-21,Westfield-Westfield Middle School,03250310, 91.8, 13.6, 40.5, 28.0, 10.2 -2.2399999999999998,2.24,a-vale-i1,2020-21,Westfield-Westfield Intermediate School,03250075, 95.0, 8.4, 23.9, 14.4, 0.0 4.0,4.0,a-vale-i1,2020-21,Westfield-Southampton Road,03250040, 96.1, 6.4, 23.4, 10.0, 20.6 +2.2399999999999998,2.24,a-vale-i1,2020-21,Westfield-Westfield Intermediate School,03250075, 95.0, 8.4, 23.9, 14.4, 0.0 +-3.2,1,a-vale-i1,2020-21,Westfield-Westfield Middle School,03250310, 91.8, 13.6, 40.5, 28.0, 10.2 +-9.52,1,a-vale-i1,2020-21,Westfield-Fort Meadow Early Childhood Center,03250003, 88.3, 15.7, 52.1, 43.8, 0.0 +2.84,2.84,a-vale-i1,2020-21,Westfield-Westfield High,03250505, 95.2, 7.9, 18.3, 12.9, 16.6 0.04000000000000057,1,a-vale-i1,2020-21,Westfield-Paper Mill,03250036, 93.7, 10.3, 35.9, 19.9, 31.3 3.6,3.6,a-vale-i1,2020-21,Westfield-Munger Hill,03250033, 95.7, 7.1, 26.0, 11.0, 19.9 2.7600000000000002,2.76,a-vale-i1,2020-21,Westfield-Highland,03250025, 95.4, 7.4, 25.6, 13.1, 21.3 -0.44000000000000056,1,a-vale-i1,2020-21,Westfield-Abner Gibbs,03250020, 93.5, 10.6, 34.8, 21.1, 31.4 -2.28,2.28,a-vale-i1,2020-21,Westfield-Westfield Technical Academy,03250605, 94.9, 8.5, 27.9, 14.3, 14.8 --9.52,1,a-vale-i1,2020-21,Westfield-Fort Meadow Early Childhood Center,03250003, 88.3, 15.7, 52.1, 43.8, 0.0 -0.6400000000000006,1,a-vale-i1,2020-21,Westfield-Franklin Ave,03250015, 93.4, 10.6, 40.7, 21.6, 36.2 -7.32,5,a-vale-i1,2020-21,Westford-John A. Crisafulli Elementary School,03260045, 98.0, 3.4, 5.3, 1.7, 0.0 -5.16,5,a-vale-i1,2020-21,Westford-Rita E. Miller Elementary School,03260055, 96.5, 5.6, 14.2, 7.1, 0.0 -6.04,5,a-vale-i1,2020-21,Westford-Blanchard Middle,03260310, 97.5, 4.3, 12.1, 4.9, 0.0 -7.08,5,a-vale-i1,2020-21,Westford-Stony Brook School,03260330, 97.8, 3.7, 8.1, 2.3, 0.0 -4.16,4.16,a-vale-i1,2020-21,Westford-Westford Academy,03260505, 96.1, 6.5, 20.4, 9.6, 1.1 +2.28,2.28,a-vale-i1,2020-21,Westfield-Westfield Technical Academy,03250605, 94.9, 8.5, 27.9, 14.3, 14.8 7.44,5,a-vale-i1,2020-21,Westford-Abbot Elementary,03260004, 97.9, 3.5, 9.1, 1.4, 0.0 7.4,5,a-vale-i1,2020-21,Westford-Day Elementary,03260007, 98.1, 3.1, 6.5, 1.5, 0.0 6.4,5,a-vale-i1,2020-21,Westford-Nabnasset,03260015, 97.4, 4.2, 8.5, 4.0, 0.0 7.08,5,a-vale-i1,2020-21,Westford-Col John Robinson,03260025, 97.6, 3.9, 7.6, 2.3, 0.0 +7.32,5,a-vale-i1,2020-21,Westford-John A. Crisafulli Elementary School,03260045, 98.0, 3.4, 5.3, 1.7, 0.0 +4.16,4.16,a-vale-i1,2020-21,Westford-Westford Academy,03260505, 96.1, 6.5, 20.4, 9.6, 1.1 +6.04,5,a-vale-i1,2020-21,Westford-Blanchard Middle,03260310, 97.5, 4.3, 12.1, 4.9, 0.0 +5.16,5,a-vale-i1,2020-21,Westford-Rita E. Miller Elementary School,03260055, 96.5, 5.6, 14.2, 7.1, 0.0 +7.08,5,a-vale-i1,2020-21,Westford-Stony Brook School,03260330, 97.8, 3.7, 8.1, 2.3, 0.0 3.2399999999999998,3.24,a-vale-i1,2020-21,Westhampton-Westhampton Elementary School,03270005, 95.7, 7.1, 22.0, 11.9, 0.0 -5.12,5,a-vale-i1,2020-21,Weston-Country,03300010, 96.6, 5.7, 16.6, 7.2, 14.8 -6.8,5,a-vale-i1,2020-21,Weston-Weston Middle,03300305, 97.7, 3.9, 9.7, 3.0, 1.5 -7.040000000000001,5,a-vale-i1,2020-21,Weston-Field Elementary School,03300012, 97.6, 4.1, 10.0, 2.4, 0.0 -7.0,5,a-vale-i1,2020-21,Weston-Woodland,03300015, 97.4, 4.4, 13.1, 2.5, 0.0 6.16,5,a-vale-i1,2020-21,Weston-Weston High,03300505, 96.8, 5.5, 13.3, 4.6, 1.3 +6.8,5,a-vale-i1,2020-21,Weston-Weston Middle,03300305, 97.7, 3.9, 9.7, 3.0, 1.5 +7.0,5,a-vale-i1,2020-21,Weston-Woodland,03300015, 97.4, 4.4, 13.1, 2.5, 0.0 +7.040000000000001,5,a-vale-i1,2020-21,Weston-Field Elementary School,03300012, 97.6, 4.1, 10.0, 2.4, 0.0 +5.12,5,a-vale-i1,2020-21,Weston-Country,03300010, 96.6, 5.7, 16.6, 7.2, 14.8 +3.16,3.16,a-vale-i1,2020-21,Westport-Alice A Macomber,03310015, 95.4, 7.6, 28.7, 12.1, 8.0 1.5599999999999994,1.56,a-vale-i1,2020-21,Westport-Westport Elementary,03310030, 94.7, 8.9, 32.0, 16.1, 5.9 1.0400000000000005,1.04,a-vale-i1,2020-21,Westport-Westport Junior/Senior High School,03310515, 93.8, 10.3, 27.1, 17.4, 1.8 -3.16,3.16,a-vale-i1,2020-21,Westport-Alice A Macomber,03310015, 95.4, 7.6, 28.7, 12.1, 8.0 -6.4799999999999995,5,a-vale-i1,2020-21,Westwood-Westwood High,03350505, 97.4, 4.3, 10.1, 3.8, 6.3 -6.76,5,a-vale-i1,2020-21,Westwood-E W Thurston Middle,03350305, 98.0, 3.3, 8.2, 3.1, 0.6 -7.88,5,a-vale-i1,2020-21,Westwood-William E Sheehan,03350025, 98.2, 3.0, 4.8, 0.3, 0.0 -6.4799999999999995,5,a-vale-i1,2020-21,Westwood-Westwood Integrated Preschool,03350050, 95.2, 6.2, 17.0, 3.8, 0.0 7.279999999999999,5,a-vale-i1,2020-21,Westwood-Martha Jones,03350017, 97.7, 3.9, 8.4, 1.8, 0.0 7.4,5,a-vale-i1,2020-21,Westwood-Paul Hanlon,03350015, 98.1, 3.1, 7.7, 1.5, 0.0 -6.92,5,a-vale-i1,2020-21,Westwood-Downey,03350012, 97.6, 4.0, 10.2, 2.7, 0.0 +6.4799999999999995,5,a-vale-i1,2020-21,Westwood-Westwood High,03350505, 97.4, 4.3, 10.1, 3.8, 6.3 6.56,5,a-vale-i1,2020-21,Westwood-Deerfield School,03350010, 98.0, 3.4, 7.8, 3.6, 0.0 -2.44,2.44,a-vale-i1,2020-21,Weymouth-Ralph Talbot,03360085, 94.9, 8.1, 23.2, 13.9, 8.9 --2.2,1,a-vale-i1,2020-21,Weymouth-William Seach,03360080, 91.6, 13.4, 41.3, 25.5, 11.5 -4.279999999999999,4.28,a-vale-i1,2020-21,Weymouth-Lawrence W Pingree,03360065, 96.3, 6.1, 16.0, 9.3, 8.0 -5.12,5,a-vale-i1,2020-21,Weymouth-Thomas V Nash,03360060, 96.9, 5.2, 13.9, 7.2, 8.2 --4.840000000000001,1,a-vale-i1,2020-21,Weymouth-Weymouth High School,03360505, 89.5, 17.0, 44.9, 32.1, 7.9 +7.88,5,a-vale-i1,2020-21,Westwood-William E Sheehan,03350025, 98.2, 3.0, 4.8, 0.3, 0.0 +6.4799999999999995,5,a-vale-i1,2020-21,Westwood-Westwood Integrated Preschool,03350050, 95.2, 6.2, 17.0, 3.8, 0.0 +6.76,5,a-vale-i1,2020-21,Westwood-E W Thurston Middle,03350305, 98.0, 3.3, 8.2, 3.1, 0.6 +6.92,5,a-vale-i1,2020-21,Westwood-Downey,03350012, 97.6, 4.0, 10.2, 2.7, 0.0 2.28,2.28,a-vale-i1,2020-21,Weymouth-Frederick C Murphy,03360050, 95.5, 7.2, 20.6, 14.3, 7.3 +5.12,5,a-vale-i1,2020-21,Weymouth-Thomas V Nash,03360060, 96.9, 5.2, 13.9, 7.2, 8.2 +4.279999999999999,4.28,a-vale-i1,2020-21,Weymouth-Lawrence W Pingree,03360065, 96.3, 6.1, 16.0, 9.3, 8.0 +-2.2,1,a-vale-i1,2020-21,Weymouth-William Seach,03360080, 91.6, 13.4, 41.3, 25.5, 11.5 +2.44,2.44,a-vale-i1,2020-21,Weymouth-Ralph Talbot,03360085, 94.9, 8.1, 23.2, 13.9, 8.9 +4.88,4.88,a-vale-i1,2020-21,Weymouth-Thomas W. Hamilton Primary School,03360105, 96.3, 6.1, 16.4, 7.8, 6.7 3.0,3.0,a-vale-i1,2020-21,Weymouth-Wessagusset,03360110, 95.4, 7.6, 24.7, 12.5, 7.6 -2.3200000000000003,1,a-vale-i1,2020-21,Weymouth-Abigail Adams Middle School,03360310, 92.3, 12.9, 38.9, 25.8, 4.5 -2.5599999999999996,1,a-vale-i1,2020-21,Weymouth-Johnson Early Childhood Center,03360003, 92.0, 8.7, 26.4, 26.4, 17.0 6.12,5,a-vale-i1,2020-21,Weymouth-Academy Avenue,03360005, 97.1, 4.9, 13.1, 4.7, 3.8 -4.88,4.88,a-vale-i1,2020-21,Weymouth-Thomas W. Hamilton Primary School,03360105, 96.3, 6.1, 16.4, 7.8, 6.7 +-4.840000000000001,1,a-vale-i1,2020-21,Weymouth-Weymouth High School,03360505, 89.5, 17.0, 44.9, 32.1, 7.9 5.64,5,a-vale-i1,2020-21,Whately-Whately Elementary,03370005, 96.2, 6.3, 17.6, 5.9, 1.7 +3.3600000000000003,3.36,a-vale-i1,2020-21,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 95.5, 7.0, 18.9, 11.6, 18.9 3.56,3.56,a-vale-i1,2020-21,Whitman-Hanson-Louise A Conley,07800010, 95.1, 8.2, 27.1, 11.1, 3.1 0.15999999999999942,1,a-vale-i1,2020-21,Whitman-Hanson-John H Duval,07800030, 94.1, 9.6, 34.2, 19.6, 5.9 4.2,4.2,a-vale-i1,2020-21,Whitman-Hanson-Indian Head,07800035, 95.6, 7.3, 25.1, 9.5, 5.6 +5.64,5,a-vale-i1,2020-21,Whitman-Hanson-Whitman Middle,07800310, 96.6, 5.7, 16.4, 5.9, 4.0 5.04,5,a-vale-i1,2020-21,Whitman-Hanson-Hanson Middle School,07800315, 96.5, 5.8, 20.2, 7.4, 0.9 -0.15999999999999942,1,a-vale-i1,2020-21,Whitman-Hanson-Whitman Hanson Regional,07800505, 92.1, 12.8, 35.6, 20.4, 17.3 -3.3600000000000003,3.36,a-vale-i1,2020-21,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 95.5, 7.0, 18.9, 11.6, 18.9 -5.64,5,a-vale-i1,2020-21,Whitman-Hanson-Whitman Middle,07800310, 96.6, 5.7, 16.4, 5.9, 4.0 2.7600000000000002,2.76,a-vale-i1,2020-21,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 94.7, 8.8, 32.5, 13.1, 9.1 3.04,3.04,a-vale-i1,2020-21,Williamsburg-Anne T. Dunphy School,03400020, 95.7, 7.1, 21.5, 12.4, 0.0 -3.3200000000000003,3.32,a-vale-i1,2020-21,Wilmington-Wildwood,03420015, 95.5, 7.3, 23.4, 11.7, 1.8 +2.9200000000000004,2.92,a-vale-i1,2020-21,Wilmington-Boutwell,03420005, 95.2, 7.7, 32.2, 12.7, 3.4 6.4799999999999995,5,a-vale-i1,2020-21,Wilmington-Woburn Street,03420020, 97.6, 4.1, 11.4, 3.8, 3.3 -0.6400000000000006,1,a-vale-i1,2020-21,Wilmington-Wilmington High,03420505, 93.1, 11.3, 33.2, 21.6, 8.9 6.4,5,a-vale-i1,2020-21,Wilmington-North Intermediate,03420060, 97.1, 4.9, 15.0, 4.0, 6.1 7.640000000000001,5,a-vale-i1,2020-21,Wilmington-West Intermediate,03420080, 98.5, 2.5, 3.6, 0.9, 0.5 1.4799999999999998,1.48,a-vale-i1,2020-21,Wilmington-Wilmington Middle School,03420330, 94.4, 9.5, 32.1, 16.3, 4.0 -2.9200000000000004,2.92,a-vale-i1,2020-21,Wilmington-Boutwell,03420005, 95.2, 7.7, 32.2, 12.7, 3.4 +3.3200000000000003,3.32,a-vale-i1,2020-21,Wilmington-Wildwood,03420015, 95.5, 7.3, 23.4, 11.7, 1.8 7.0,5,a-vale-i1,2020-21,Wilmington-Shawsheen Elementary,03420025, 97.8, 3.6, 8.2, 2.5, 1.3 -2.6799999999999997,2.68,a-vale-i1,2020-21,Winchendon-Winchendon PreSchool Program,03430010, 95.3, 7.0, 25.0, 13.3, 16.7 -0.07999999999999971,1,a-vale-i1,2020-21,Winchendon-Memorial,03430040, 93.1, 10.7, 33.7, 19.8, 12.5 -0.4,1,a-vale-i1,2020-21,Winchendon-Toy Town Elementary,03430050, 94.0, 9.6, 31.5, 21.0, 7.5 +0.07999999999999971,1,a-vale-i1,2020-21,Winchendon-Memorial,03430040, 93.1, 10.7, 33.7, 19.8, 12.5 +2.6799999999999997,2.68,a-vale-i1,2020-21,Winchendon-Winchendon PreSchool Program,03430010, 95.3, 7.0, 25.0, 13.3, 16.7 0.0,1,a-vale-i1,2020-21,Winchendon-Murdock Middle School,03430315, 93.3, 10.9, 31.9, 20.0, 7.7 --8.0,1,a-vale-i1,2020-21,Winchendon-Murdock Academy for Success,03430405, 90.2, 13.8, 51.4, 40.0, 0.0 -1.7599999999999993,1,a-vale-i1,2020-21,Winchendon-Murdock High School,03430515, 91.1, 14.6, 32.8, 24.4, 12.2 -6.16,5,a-vale-i1,2020-21,Winchester-Lynch Elementary,03440020, 97.4, 4.2, 11.9, 4.6, 5.4 +-8.0,1,a-vale-i1,2020-21,Winchendon-Murdock Academy for Success,03430405, 90.2, 13.8, 51.4, 40.0, 0.0 7.12,5,a-vale-i1,2020-21,Winchester-Lincoln Elementary,03440005, 97.7, 3.8, 8.7, 2.2, 0.0 +6.16,5,a-vale-i1,2020-21,Winchester-Lynch Elementary,03440020, 97.4, 4.2, 11.9, 4.6, 5.4 +6.8,5,a-vale-i1,2020-21,Winchester-Vinson-Owen Elementary,03440025, 97.5, 4.2, 10.0, 3.0, 6.0 +6.12,5,a-vale-i1,2020-21,Winchester-Muraco Elementary,03440040, 97.4, 4.3, 11.3, 4.7, 4.7 +6.24,5,a-vale-i1,2020-21,Winchester-Ambrose Elementary,03440045, 96.9, 5.0, 17.6, 4.4, 6.2 7.24,5,a-vale-i1,2020-21,Winchester-McCall Middle,03440305, 97.9, 3.5, 7.8, 1.9, 3.6 3.6,3.6,a-vale-i1,2020-21,Winchester-Winchester High School,03440505, 95.5, 7.6, 23.0, 11.0, 4.0 -6.12,5,a-vale-i1,2020-21,Winchester-Muraco Elementary,03440040, 97.4, 4.3, 11.3, 4.7, 4.7 -6.8,5,a-vale-i1,2020-21,Winchester-Vinson-Owen Elementary,03440025, 97.5, 4.2, 10.0, 3.0, 6.0 -6.24,5,a-vale-i1,2020-21,Winchester-Ambrose Elementary,03440045, 96.9, 5.0, 17.6, 4.4, 6.2 -1.2799999999999998,1.28,a-vale-i1,2020-21,Winthrop-Winthrop High School,03460505, 93.2, 11.3, 31.2, 16.8, 6.2 -2.0,2.0,a-vale-i1,2020-21,Winthrop-Winthrop Middle School,03460305, 94.4, 9.4, 34.7, 15.0, 0.0 2.56,2.56,a-vale-i1,2020-21,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 95.2, 8.0, 28.3, 13.6, 0.0 +2.0,2.0,a-vale-i1,2020-21,Winthrop-Winthrop Middle School,03460305, 94.4, 9.4, 34.7, 15.0, 0.0 4.84,4.84,a-vale-i1,2020-21,Winthrop-Arthur T. Cummings Elementary School,03460020, 96.1, 6.6, 22.5, 7.9, 0.0 +1.2799999999999998,1.28,a-vale-i1,2020-21,Winthrop-Winthrop High School,03460505, 93.2, 11.3, 31.2, 16.8, 6.2 +0.6,1,a-vale-i1,2020-21,Woburn-Daniel L Joyce Middle School,03470410, 94.4, 9.3, 32.5, 18.5, 10.6 1.7600000000000002,1.76,a-vale-i1,2020-21,Woburn-John F Kennedy Middle School,03470405, 94.5, 9.1, 28.2, 15.6, 10.5 2.0799999999999996,2.08,a-vale-i1,2020-21,Woburn-Mary D Altavesta,03470065, 95.1, 7.6, 26.2, 14.8, 0.0 1.0,1.0,a-vale-i1,2020-21,Woburn-Malcolm White,03470055, 94.7, 8.5, 28.2, 17.5, 6.9 -0.6,1,a-vale-i1,2020-21,Woburn-Daniel L Joyce Middle School,03470410, 94.4, 9.3, 32.5, 18.5, 10.6 -0.04000000000000057,1,a-vale-i1,2020-21,Woburn-Goodyear Elementary School,03470005, 94.4, 9.1, 27.9, 19.9, 6.0 -4.92,4.92,a-vale-i1,2020-21,Woburn-Hurld-Wyman Elementary School,03470020, 96.4, 5.9, 17.1, 7.7, 4.0 -12.24,1,a-vale-i1,2020-21,Woburn-Woburn High,03470505, 84.2, 26.2, 69.1, 50.6, 16.7 -1.2400000000000007,1.24,a-vale-i1,2020-21,Woburn-Shamrock,03470043, 94.8, 8.3, 29.4, 16.9, 15.5 4.64,4.64,a-vale-i1,2020-21,Woburn-Clyde Reeves,03470040, 96.4, 5.8, 17.0, 8.4, 5.2 3.96,3.96,a-vale-i1,2020-21,Woburn-Linscott-Rumford,03470025, 96.2, 6.1, 18.6, 10.1, 0.0 +4.92,4.92,a-vale-i1,2020-21,Woburn-Hurld-Wyman Elementary School,03470020, 96.4, 5.9, 17.1, 7.7, 4.0 +0.04000000000000057,1,a-vale-i1,2020-21,Woburn-Goodyear Elementary School,03470005, 94.4, 9.1, 27.9, 19.9, 6.0 +1.2400000000000007,1.24,a-vale-i1,2020-21,Woburn-Shamrock,03470043, 94.8, 8.3, 29.4, 16.9, 15.5 +3.88,3.88,a-vale-i1,2020-21,Worcester-Burncoat Middle School,03480405, 96.4, 6.0, 19.2, 10.3, 18.9 +2.84,2.84,a-vale-i1,2020-21,Worcester-Forest Grove Middle,03480415, 96.1, 6.4, 19.6, 12.9, 19.6 +0.4,1,a-vale-i1,2020-21,Worcester-Worcester East Middle,03480420, 93.9, 10.1, 26.5, 19.0, 26.5 +2.7600000000000002,2.76,a-vale-i1,2020-21,Worcester-Sullivan Middle,03480423, 96.0, 6.6, 22.0, 13.1, 21.9 +-0.44000000000000056,1,a-vale-i1,2020-21,Worcester-Burncoat Senior High,03480503, 93.9, 10.0, 30.4, 21.1, 30.1 +1.6799999999999997,1.68,a-vale-i1,2020-21,Worcester-Doherty Memorial High,03480512, 94.6, 8.9, 26.7, 15.8, 24.7 +-0.8400000000000005,1,a-vale-i1,2020-21,Worcester-North High,03480515, 92.9, 11.5, 32.1, 22.1, 30.6 +0.2,1,a-vale-i1,2020-21,Worcester-South High Community,03480520, 94.2, 9.4, 27.8, 19.5, 26.7 +5.76,5,a-vale-i1,2020-21,Worcester-Worcester Technical High,03480605, 97.3, 4.5, 13.3, 5.6, 12.1 +3.3600000000000003,3.36,a-vale-i1,2020-21,Worcester-Chandler Magnet,03480052, 96.7, 5.4, 18.2, 11.6, 17.8 +0.2799999999999997,1,a-vale-i1,2020-21,Worcester-City View,03480053, 93.9, 9.9, 30.4, 19.3, 30.0 +-0.12000000000000029,1,a-vale-i1,2020-21,Worcester-Clark St Community,03480055, 94.2, 9.6, 34.4, 20.3, 31.5 +-0.7599999999999995,1,a-vale-i1,2020-21,Worcester-Columbus Park,03480060, 93.3, 11.0, 32.1, 21.9, 32.1 +6.840000000000001,5,a-vale-i1,2020-21,Worcester-Flagg Street,03480090, 98.5, 2.4, 4.9, 2.9, 4.9 +-2.5599999999999996,1,a-vale-i1,2020-21,Worcester-Elm Park Community,03480095, 92.9, 11.6, 38.4, 26.4, 37.4 +2.3200000000000003,2.32,a-vale-i1,2020-21,Worcester-Goddard School/Science Technical,03480100, 96.1, 6.3, 21.0, 14.2, 21.0 +1.5599999999999994,1.56,a-vale-i1,2020-21,Worcester-Gates Lane,03480110, 95.0, 8.0, 23.6, 16.1, 23.6 +-2.9200000000000004,1,a-vale-i1,2020-21,Worcester-Claremont Academy,03480350, 91.7, 13.4, 36.3, 27.3, 35.7 +2.6,2.6,a-vale-i1,2020-21,Worcester-University Pk Campus School,03480285, 95.7, 7.2, 22.6, 13.5, 21.3 +0.7200000000000003,1,a-vale-i1,2020-21,Worcester-Vernon Hill School,03480280, 94.5, 9.0, 29.5, 18.2, 28.3 +4.96,4.96,a-vale-i1,2020-21,Worcester-West Tatnuck,03480260, 96.8, 5.3, 15.5, 7.6, 15.2 +-0.7200000000000003,1,a-vale-i1,2020-21,Worcester-Union Hill School,03480240, 94.1, 9.6, 33.5, 21.8, 33.3 +5.76,5,a-vale-i1,2020-21,Worcester-Thorndyke Road,03480235, 97.8, 3.6, 10.1, 5.6, 10.1 +5.5200000000000005,5,a-vale-i1,2020-21,Worcester-Tatnuck,03480230, 98.0, 3.3, 9.9, 6.2, 9.9 +5.0,5.0,a-vale-i1,2020-21,Worcester-Worcester Arts Magnet School,03480225, 97.5, 4.1, 11.3, 7.5, 11.3 +1.9200000000000004,1.92,a-vale-i1,2020-21,Worcester-Quinsigamond,03480210, 95.3, 7.7, 22.6, 15.2, 22.6 +3.0799999999999996,3.08,a-vale-i1,2020-21,Worcester-Rice Square,03480215, 96.0, 6.4, 21.5, 12.3, 21.5 +2.84,2.84,a-vale-i1,2020-21,Worcester-Roosevelt,03480220, 96.1, 6.4, 20.3, 12.9, 20.3 +5.4799999999999995,5,a-vale-i1,2020-21,Worcester-Head Start,03480002, 99.2, 1.3, 5.5, 6.3, 5.5 +1.0799999999999996,1.08,a-vale-i1,2020-21,Worcester-Belmont Street Community,03480020, 94.4, 9.1, 27.6, 17.3, 25.2 +4.68,4.68,a-vale-i1,2020-21,Worcester-Wawecus Road School,03480026, 96.4, 5.8, 18.8, 8.3, 18.8 +1.0,1.0,a-vale-i1,2020-21,Worcester-Woodland Academy,03480030, 95.2, 8.0, 26.5, 17.5, 26.3 +0.07999999999999971,1,a-vale-i1,2020-21,Worcester-Burncoat Street,03480035, 93.9, 10.1, 29.0, 19.8, 29.0 +2.5200000000000005,2.52,a-vale-i1,2020-21,Worcester-Canterbury,03480045, 95.6, 7.1, 22.8, 13.7, 22.5 +3.3200000000000003,3.32,a-vale-i1,2020-21,Worcester-Chandler Elementary Community,03480050, 96.9, 5.2, 20.4, 11.7, 20.0 1.2799999999999998,1.28,a-vale-i1,2020-21,Worcester-Grafton Street,03480115, 95.1, 7.8, 25.1, 16.8, 24.1 4.8,4.8,a-vale-i1,2020-21,Worcester-Heard Street,03480136, 97.5, 3.9, 12.2, 8.0, 11.8 5.5600000000000005,5,a-vale-i1,2020-21,Worcester-Jacob Hiatt Magnet,03480140, 97.9, 3.5, 10.5, 6.1, 10.5 @@ -3637,41 +3672,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.4799999999999995,5,a-vale-i1,2020-21,Worcester-Midland Street,03480185, 98.8, 2.0, 4.8, 3.8, 4.8 3.2,3.2,a-vale-i1,2020-21,Worcester-Nelson Place,03480200, 95.5, 7.5, 18.4, 12.0, 18.4 2.2,2.2,a-vale-i1,2020-21,Worcester-Norrback Avenue,03480202, 94.9, 8.3, 21.0, 14.5, 21.0 -1.9200000000000004,1.92,a-vale-i1,2020-21,Worcester-Quinsigamond,03480210, 95.3, 7.7, 22.6, 15.2, 22.6 -3.0799999999999996,3.08,a-vale-i1,2020-21,Worcester-Rice Square,03480215, 96.0, 6.4, 21.5, 12.3, 21.5 -2.84,2.84,a-vale-i1,2020-21,Worcester-Roosevelt,03480220, 96.1, 6.4, 20.3, 12.9, 20.3 -5.0,5.0,a-vale-i1,2020-21,Worcester-Worcester Arts Magnet School,03480225, 97.5, 4.1, 11.3, 7.5, 11.3 -0.4,1,a-vale-i1,2020-21,Worcester-Worcester East Middle,03480420, 93.9, 10.1, 26.5, 19.0, 26.5 -2.7600000000000002,2.76,a-vale-i1,2020-21,Worcester-Sullivan Middle,03480423, 96.0, 6.6, 22.0, 13.1, 21.9 --0.44000000000000056,1,a-vale-i1,2020-21,Worcester-Burncoat Senior High,03480503, 93.9, 10.0, 30.4, 21.1, 30.1 -1.6799999999999997,1.68,a-vale-i1,2020-21,Worcester-Doherty Memorial High,03480512, 94.6, 8.9, 26.7, 15.8, 24.7 --0.8400000000000005,1,a-vale-i1,2020-21,Worcester-North High,03480515, 92.9, 11.5, 32.1, 22.1, 30.6 -0.2,1,a-vale-i1,2020-21,Worcester-South High Community,03480520, 94.2, 9.4, 27.8, 19.5, 26.7 -5.76,5,a-vale-i1,2020-21,Worcester-Worcester Technical High,03480605, 97.3, 4.5, 13.3, 5.6, 12.1 -5.4799999999999995,5,a-vale-i1,2020-21,Worcester-Head Start,03480002, 99.2, 1.3, 5.5, 6.3, 5.5 -1.0799999999999996,1.08,a-vale-i1,2020-21,Worcester-Belmont Street Community,03480020, 94.4, 9.1, 27.6, 17.3, 25.2 -4.68,4.68,a-vale-i1,2020-21,Worcester-Wawecus Road School,03480026, 96.4, 5.8, 18.8, 8.3, 18.8 -1.0,1.0,a-vale-i1,2020-21,Worcester-Woodland Academy,03480030, 95.2, 8.0, 26.5, 17.5, 26.3 -0.07999999999999971,1,a-vale-i1,2020-21,Worcester-Burncoat Street,03480035, 93.9, 10.1, 29.0, 19.8, 29.0 -2.5200000000000005,2.52,a-vale-i1,2020-21,Worcester-Canterbury,03480045, 95.6, 7.1, 22.8, 13.7, 22.5 -3.3200000000000003,3.32,a-vale-i1,2020-21,Worcester-Chandler Elementary Community,03480050, 96.9, 5.2, 20.4, 11.7, 20.0 -3.3600000000000003,3.36,a-vale-i1,2020-21,Worcester-Chandler Magnet,03480052, 96.7, 5.4, 18.2, 11.6, 17.8 -0.2799999999999997,1,a-vale-i1,2020-21,Worcester-City View,03480053, 93.9, 9.9, 30.4, 19.3, 30.0 --0.12000000000000029,1,a-vale-i1,2020-21,Worcester-Clark St Community,03480055, 94.2, 9.6, 34.4, 20.3, 31.5 --0.7599999999999995,1,a-vale-i1,2020-21,Worcester-Columbus Park,03480060, 93.3, 11.0, 32.1, 21.9, 32.1 -6.840000000000001,5,a-vale-i1,2020-21,Worcester-Flagg Street,03480090, 98.5, 2.4, 4.9, 2.9, 4.9 --2.5599999999999996,1,a-vale-i1,2020-21,Worcester-Elm Park Community,03480095, 92.9, 11.6, 38.4, 26.4, 37.4 -1.5599999999999994,1.56,a-vale-i1,2020-21,Worcester-Gates Lane,03480110, 95.0, 8.0, 23.6, 16.1, 23.6 -2.3200000000000003,2.32,a-vale-i1,2020-21,Worcester-Goddard School/Science Technical,03480100, 96.1, 6.3, 21.0, 14.2, 21.0 -2.84,2.84,a-vale-i1,2020-21,Worcester-Forest Grove Middle,03480415, 96.1, 6.4, 19.6, 12.9, 19.6 -3.88,3.88,a-vale-i1,2020-21,Worcester-Burncoat Middle School,03480405, 96.4, 6.0, 19.2, 10.3, 18.9 --2.9200000000000004,1,a-vale-i1,2020-21,Worcester-Claremont Academy,03480350, 91.7, 13.4, 36.3, 27.3, 35.7 -2.6,2.6,a-vale-i1,2020-21,Worcester-University Pk Campus School,03480285, 95.7, 7.2, 22.6, 13.5, 21.3 -0.7200000000000003,1,a-vale-i1,2020-21,Worcester-Vernon Hill School,03480280, 94.5, 9.0, 29.5, 18.2, 28.3 -4.96,4.96,a-vale-i1,2020-21,Worcester-West Tatnuck,03480260, 96.8, 5.3, 15.5, 7.6, 15.2 --0.7200000000000003,1,a-vale-i1,2020-21,Worcester-Union Hill School,03480240, 94.1, 9.6, 33.5, 21.8, 33.3 -5.5200000000000005,5,a-vale-i1,2020-21,Worcester-Tatnuck,03480230, 98.0, 3.3, 9.9, 6.2, 9.9 -5.76,5,a-vale-i1,2020-21,Worcester-Thorndyke Road,03480235, 97.8, 3.6, 10.1, 5.6, 10.1 4.84,4.84,a-vale-i1,2020-21,Worthington-R. H. Conwell,03490010, 95.5, 7.4, 25.4, 7.9, 0.0 6.5200000000000005,5,a-vale-i1,2020-21,Wrentham-Charles E Roderick,03500010, 97.5, 4.2, 10.2, 3.7, 0.3 6.36,5,a-vale-i1,2020-21,Wrentham-Delaney,03500003, 97.7, 3.6, 8.7, 4.1, 0.8 @@ -9203,93 +9203,93 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 5.4,5,a-vale-i1,2017-18,Wrentham-Charles E Roderick,03500010, 95.7, 7.6, 28.9, 6.5, 0.0 5.36,5,a-vale-i1,2017-18,Wrentham-Delaney,03500003, 95.8, 7.1, 25.6, 6.6, 0.3 4.2,4.2,a-vale-i2,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 94.5, 9.8, 41.3, 15.3, 2.4, 40.5 -4.066666666666666,4.07,a-vale-i2,2021-22,Abington-Abington Middle School,00010405, 91.5, 14.7, 58.6, 28.5, 7.2, 25.0 -4.111111111111111,4.11,a-vale-i2,2021-22,Abington-Beaver Brook Elementary,00010020, 92.5, 13.0, 60.1, 26.0, 3.8, 19.1 4.137777777777777,4.14,a-vale-i2,2021-22,Abington-Woodsdale Elementary School,00010015, 93.1, 12.3, 56.9, 18.4, 2.2, 14.7 3.9955555555555557,4.0,a-vale-i2,2021-22,Abington-Abington Early Education Program,00010001, 89.9, 16.0, 57.1, 30.6, 11.2, 27.6 +4.111111111111111,4.11,a-vale-i2,2021-22,Abington-Beaver Brook Elementary,00010020, 92.5, 13.0, 60.1, 26.0, 3.8, 19.1 +4.066666666666666,4.07,a-vale-i2,2021-22,Abington-Abington Middle School,00010405, 91.5, 14.7, 58.6, 28.5, 7.2, 25.0 3.9288888888888893,3.93,a-vale-i2,2021-22,Abington-Abington High,00010505, 88.4, 19.7, 71.4, 41.5, 15.5, 49.4 3.9155555555555552,3.92,a-vale-i2,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 88.1, 20.6, 73.5, 46.0, 14.5, 0.2 -4.217777777777778,4.22,a-vale-i2,2021-22,Acton-Boxborough-Blanchard Memorial School,06000005, 94.9, 8.9, 38.5, 12.1, 0.6, 0.0 -4.213333333333333,4.21,a-vale-i2,2021-22,Acton-Boxborough-Merriam School,06000010, 94.8, 9.2, 36.9, 10.4, 0.6, 0.0 -4.088888888888889,4.09,a-vale-i2,2021-22,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 92.0, 13.4, 57.4, 27.1, 6.2, 0.0 4.2444444444444445,4.24,a-vale-i2,2021-22,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 95.5, 8.1, 28.7, 8.5, 2.6, 1.8 -4.204444444444444,4.2,a-vale-i2,2021-22,Acton-Boxborough-McCarthy-Towne School,06000015, 94.6, 9.4, 40.7, 10.9, 1.3, 0.0 4.262222222222222,4.26,a-vale-i2,2021-22,Acton-Boxborough-Raymond J Grey Junior High,06000405, 95.9, 7.3, 25.4, 7.9, 1.2, 0.9 4.1866666666666665,4.19,a-vale-i2,2021-22,Acton-Boxborough-Luther Conant School,06000030, 94.2, 10.1, 43.5, 13.3, 2.7, 0.0 4.2,4.2,a-vale-i2,2021-22,Acton-Boxborough-Paul P Gates Elementary School,06000025, 94.5, 9.6, 40.4, 12.9, 2.6, 0.0 4.217777777777778,4.22,a-vale-i2,2021-22,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 94.9, 8.8, 33.1, 12.3, 1.0, 0.0 +4.204444444444444,4.2,a-vale-i2,2021-22,Acton-Boxborough-McCarthy-Towne School,06000015, 94.6, 9.4, 40.7, 10.9, 1.3, 0.0 +4.213333333333333,4.21,a-vale-i2,2021-22,Acton-Boxborough-Merriam School,06000010, 94.8, 9.2, 36.9, 10.4, 0.6, 0.0 +4.088888888888889,4.09,a-vale-i2,2021-22,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 92.0, 13.4, 57.4, 27.1, 6.2, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Acton-Boxborough-Blanchard Memorial School,06000005, 94.9, 8.9, 38.5, 12.1, 0.6, 0.0 4.155555555555556,4.16,a-vale-i2,2021-22,Acushnet-Albert F Ford Middle School,00030305, 93.5, 11.6, 49.6, 18.4, 2.5, 25.2 4.177777777777778,4.18,a-vale-i2,2021-22,Acushnet-Acushnet Elementary School,00030025, 94.0, 10.6, 52.3, 13.6, 0.7, 25.0 4.231111111111111,4.23,a-vale-i2,2021-22,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 95.2, 8.4, 31.7, 10.1, 1.5, 17.3 -4.017777777777778,4.02,a-vale-i2,2021-22,Agawam-Agawam High,00050505, 90.4, 16.6, 63.3, 35.0, 9.8, 35.6 4.026666666666666,4.03,a-vale-i2,2021-22,Agawam-Agawam Early Childhood Center,00050003, 90.6, 14.9, 62.4, 34.2, 8.4, 59.4 -3.9066666666666667,3.91,a-vale-i2,2021-22,Agawam-Agawam Junior High,00050405, 87.9, 21.2, 74.2, 42.7, 14.4, 30.5 -4.075555555555556,4.08,a-vale-i2,2021-22,Agawam-Roberta G. Doering School,00050303, 91.7, 16.7, 72.8, 29.9, 4.1, 44.0 -4.062222222222222,4.06,a-vale-i2,2021-22,Agawam-James Clark School,00050030, 91.4, 15.2, 69.1, 30.6, 3.6, 0.0 -4.022222222222222,4.02,a-vale-i2,2021-22,Agawam-Robinson Park,00050025, 90.5, 17.0, 78.2, 37.9, 6.1, 8.2 +4.017777777777778,4.02,a-vale-i2,2021-22,Agawam-Agawam High,00050505, 90.4, 16.6, 63.3, 35.0, 9.8, 35.6 4.0311111111111115,4.03,a-vale-i2,2021-22,Agawam-Clifford M Granger,00050010, 90.7, 16.3, 78.0, 38.7, 4.0, 12.5 4.08,4.08,a-vale-i2,2021-22,Agawam-Benjamin J Phelps,00050020, 91.8, 14.5, 66.5, 28.8, 3.5, 11.8 +4.022222222222222,4.02,a-vale-i2,2021-22,Agawam-Robinson Park,00050025, 90.5, 17.0, 78.2, 37.9, 6.1, 8.2 +4.062222222222222,4.06,a-vale-i2,2021-22,Agawam-James Clark School,00050030, 91.4, 15.2, 69.1, 30.6, 3.6, 0.0 +4.075555555555556,4.08,a-vale-i2,2021-22,Agawam-Roberta G. Doering School,00050303, 91.7, 16.7, 72.8, 29.9, 4.1, 44.0 +3.9066666666666667,3.91,a-vale-i2,2021-22,Agawam-Agawam Junior High,00050405, 87.9, 21.2, 74.2, 42.7, 14.4, 30.5 4.133333333333334,4.13,a-vale-i2,2021-22,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 93.0, 12.5, 53.0, 22.8, 4.4, 33.1 4.1288888888888895,4.13,a-vale-i2,2021-22,Amesbury-Amesbury Elementary,00070005, 92.9, 12.3, 59.9, 20.7, 0.6, 35.6 4.137777777777777,4.14,a-vale-i2,2021-22,Amesbury-Charles C Cashman Elementary,00070010, 93.1, 12.3, 55.3, 16.0, 2.9, 3.5 4.093333333333333,4.09,a-vale-i2,2021-22,Amesbury-Amesbury Middle,00070013, 92.1, 14.1, 58.5, 23.7, 6.3, 8.7 4.084444444444444,4.08,a-vale-i2,2021-22,Amesbury-Amesbury High,00070505, 91.9, 14.2, 55.0, 26.5, 6.2, 7.3 3.8755555555555556,3.88,a-vale-i2,2021-22,Amesbury-Amesbury Innovation High School,00070515, 87.2, 21.1, 79.5, 50.0, 25.0, 27.3 +4.12,4.12,a-vale-i2,2021-22,Amherst-Crocker Farm Elementary,00080009, 92.7, 12.5, 48.9, 26.2, 5.8, 7.4 4.151111111111112,4.15,a-vale-i2,2021-22,Amherst-Fort River Elementary,00080020, 93.4, 11.4, 44.2, 23.9, 3.1, 6.5 4.164444444444444,4.16,a-vale-i2,2021-22,Amherst-Wildwood Elementary,00080050, 93.7, 10.9, 45.1, 19.2, 2.0, 7.0 -4.12,4.12,a-vale-i2,2021-22,Amherst-Crocker Farm Elementary,00080009, 92.7, 12.5, 48.9, 26.2, 5.8, 7.4 4.137777777777777,4.14,a-vale-i2,2021-22,Amherst-Pelham-Amherst Regional Middle School,06050405, 93.1, 12.1, 47.1, 22.5, 5.0, 8.9 4.097777777777778,4.1,a-vale-i2,2021-22,Amherst-Pelham-Amherst Regional High,06050505, 92.2, 13.7, 47.0, 25.0, 8.5, 9.2 +4.208888888888889,4.21,a-vale-i2,2021-22,Andover-Bancroft Elementary,00090003, 94.7, 9.3, 42.2, 9.1, 0.9, 6.8 +4.204444444444444,4.2,a-vale-i2,2021-22,Andover-High Plain Elementary,00090004, 94.6, 9.4, 43.2, 13.2, 1.6, 6.4 3.986666666666667,3.99,a-vale-i2,2021-22,Andover-Shawsheen School,00090005, 89.7, 15.2, 71.4, 46.4, 8.0, 9.8 +4.208888888888889,4.21,a-vale-i2,2021-22,Andover-Henry C Sanborn Elementary,00090010, 94.7, 9.4, 40.9, 12.2, 0.3, 2.4 +4.173333333333334,4.17,a-vale-i2,2021-22,Andover-Andover High,00090505, 93.9, 10.9, 38.9, 14.6, 4.6, 4.5 4.177777777777778,4.18,a-vale-i2,2021-22,Andover-West Elementary,00090025, 94.0, 10.5, 45.8, 15.8, 2.0, 7.2 4.2444444444444445,4.24,a-vale-i2,2021-22,Andover-Doherty Middle,00090305, 95.5, 8.0, 28.4, 10.1, 0.9, 3.1 4.24,4.24,a-vale-i2,2021-22,Andover-Andover West Middle,00090310, 95.4, 8.3, 31.3, 9.7, 1.3, 5.2 -4.173333333333334,4.17,a-vale-i2,2021-22,Andover-Andover High,00090505, 93.9, 10.9, 38.9, 14.6, 4.6, 4.5 -4.204444444444444,4.2,a-vale-i2,2021-22,Andover-High Plain Elementary,00090004, 94.6, 9.4, 43.2, 13.2, 1.6, 6.4 -4.208888888888889,4.21,a-vale-i2,2021-22,Andover-Bancroft Elementary,00090003, 94.7, 9.3, 42.2, 9.1, 0.9, 6.8 -4.208888888888889,4.21,a-vale-i2,2021-22,Andover-Henry C Sanborn Elementary,00090010, 94.7, 9.4, 40.9, 12.2, 0.3, 2.4 -4.208888888888889,4.21,a-vale-i2,2021-22,Andover-South Elementary,00090020, 94.7, 9.3, 43.7, 8.8, 0.7, 5.6 4.248888888888889,4.25,a-vale-i2,2021-22,Andover-Wood Hill Middle School,00090350, 95.6, 7.8, 30.1, 10.2, 1.1, 4.0 +4.208888888888889,4.21,a-vale-i2,2021-22,Andover-South Elementary,00090020, 94.7, 9.3, 43.7, 8.8, 0.7, 5.6 3.9422222222222225,3.94,a-vale-i2,2021-22,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 88.7, 19.0, 66.8, 42.4, 15.5, 48.3 +4.222222222222222,4.22,a-vale-i2,2021-22,Arlington-Brackett,00100010, 95.0, 9.0, 39.0, 9.1, 0.4, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Arlington-Cyrus E Dallin,00100025, 94.9, 9.0, 39.7, 11.0, 0.5, 0.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Arlington-Hardy,00100030, 94.3, 9.9, 44.2, 13.2, 1.2, 0.0 +4.093333333333333,4.09,a-vale-i2,2021-22,Arlington-Menotomy Preschool,00100038, 92.1, 12.3, 56.8, 20.0, 7.4, 2.1 4.1866666666666665,4.19,a-vale-i2,2021-22,Arlington-Thompson,00100050, 94.2, 10.2, 45.6, 13.0, 1.3, 0.0 4.217777777777778,4.22,a-vale-i2,2021-22,Arlington-M Norcross Stratton,00100055, 94.9, 8.9, 35.8, 10.6, 2.2, 0.0 4.231111111111111,4.23,a-vale-i2,2021-22,Arlington-Gibbs School,00100305, 95.2, 8.6, 34.9, 8.1, 1.3, 4.6 4.213333333333333,4.21,a-vale-i2,2021-22,Arlington-Ottoson Middle,00100410, 94.8, 9.3, 35.1, 11.0, 2.4, 2.2 4.12,4.12,a-vale-i2,2021-22,Arlington-Arlington High,00100505, 92.7, 12.6, 44.0, 18.4, 6.2, 0.8 4.191111111111111,4.19,a-vale-i2,2021-22,Arlington-John A Bishop,00100005, 94.3, 10.0, 45.2, 15.1, 0.7, 0.0 -4.222222222222222,4.22,a-vale-i2,2021-22,Arlington-Brackett,00100010, 95.0, 9.0, 39.0, 9.1, 0.4, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Arlington-Cyrus E Dallin,00100025, 94.9, 9.0, 39.7, 11.0, 0.5, 0.0 -4.191111111111111,4.19,a-vale-i2,2021-22,Arlington-Hardy,00100030, 94.3, 9.9, 44.2, 13.2, 1.2, 0.0 -4.093333333333333,4.09,a-vale-i2,2021-22,Arlington-Menotomy Preschool,00100038, 92.1, 12.3, 56.8, 20.0, 7.4, 2.1 4.208888888888889,4.21,a-vale-i2,2021-22,Arlington-Peirce,00100045, 94.7, 9.2, 37.3, 11.8, 1.8, 0.0 4.173333333333334,4.17,a-vale-i2,2021-22,Ashburnham-Westminster-Westminster Elementary,06100005, 93.9, 10.7, 48.6, 13.2, 0.3, 23.3 -4.1866666666666665,4.19,a-vale-i2,2021-22,Ashburnham-Westminster-Meetinghouse School,06100010, 94.2, 10.2, 45.0, 11.1, 0.6, 32.2 -4.142222222222222,4.14,a-vale-i2,2021-22,Ashburnham-Westminster-Briggs Elementary,06100025, 93.2, 11.2, 52.3, 20.3, 1.4, 30.9 -4.231111111111111,4.23,a-vale-i2,2021-22,Ashburnham-Westminster-Overlook Middle School,06100305, 95.2, 8.5, 33.3, 10.3, 0.7, 28.4 4.1288888888888895,4.13,a-vale-i2,2021-22,Ashburnham-Westminster-Oakmont Regional High School,06100505, 92.9, 12.5, 53.8, 18.9, 3.8, 40.9 +4.231111111111111,4.23,a-vale-i2,2021-22,Ashburnham-Westminster-Overlook Middle School,06100305, 95.2, 8.5, 33.3, 10.3, 0.7, 28.4 +4.142222222222222,4.14,a-vale-i2,2021-22,Ashburnham-Westminster-Briggs Elementary,06100025, 93.2, 11.2, 52.3, 20.3, 1.4, 30.9 +4.1866666666666665,4.19,a-vale-i2,2021-22,Ashburnham-Westminster-Meetinghouse School,06100010, 94.2, 10.2, 45.0, 11.1, 0.6, 32.2 4.168888888888889,4.17,a-vale-i2,2021-22,Ashland-Ashland High,00140505, 93.8, 10.6, 38.3, 16.4, 3.9, 24.1 4.16,4.16,a-vale-i2,2021-22,Ashland-Ashland Middle,00140405, 93.6, 11.2, 44.2, 18.3, 2.8, 0.0 4.16,4.16,a-vale-i2,2021-22,Ashland-David Mindess,00140015, 93.6, 11.0, 51.6, 17.8, 1.3, 0.0 -3.9066666666666667,3.91,a-vale-i2,2021-22,Ashland-William Pittaway Elementary,00140005, 87.9, 20.0, 80.5, 56.3, 12.6, 0.0 4.102222222222222,4.1,a-vale-i2,2021-22,Ashland-Henry E Warren Elementary,00140010, 92.3, 13.3, 57.2, 26.1, 4.1, 3.7 +3.9066666666666667,3.91,a-vale-i2,2021-22,Ashland-William Pittaway Elementary,00140005, 87.9, 20.0, 80.5, 56.3, 12.6, 0.0 4.057777777777778,4.06,a-vale-i2,2021-22,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 91.3, 15.4, 55.8, 27.2, 8.1, 40.8 3.911111111111111,3.91,a-vale-i2,2021-22,Athol-Royalston-Athol High,06150505, 88.0, 20.1, 68.5, 43.9, 19.0, 53.6 3.9422222222222225,3.94,a-vale-i2,2021-22,Athol-Royalston-Athol-Royalston Middle School,06150305, 88.7, 19.2, 75.8, 46.4, 14.4, 51.9 4.035555555555556,4.04,a-vale-i2,2021-22,Athol-Royalston-Royalston Community School,06150050, 90.8, 15.8, 76.4, 36.8, 6.9, 41.7 4.0,4.0,a-vale-i2,2021-22,Athol-Royalston-Athol Community Elementary School,06150020, 90.0, 17.1, 72.5, 40.0, 8.5, 39.3 4.026666666666666,4.03,a-vale-i2,2021-22,Atlantis Charter (District)-Atlantis Charter School,04910550, 90.6, 16.6, 69.2, 36.3, 8.7, 37.4 +4.057777777777778,4.06,a-vale-i2,2021-22,Attleboro-Peter Thacher Elementary School,00160050, 91.3, 14.7, 58.9, 29.1, 6.9, 31.2 +4.124444444444444,4.12,a-vale-i2,2021-22,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 12.7, 52.7, 23.7, 4.2, 30.7 +4.075555555555556,4.08,a-vale-i2,2021-22,Attleboro-Cyril K. Brennan Middle School,00160315, 91.7, 14.3, 58.6, 33.4, 7.0, 46.7 +4.111111111111111,4.11,a-vale-i2,2021-22,Attleboro-Wamsutta Middle School,00160320, 92.5, 13.1, 51.9, 25.6, 4.7, 19.0 +4.035555555555556,4.04,a-vale-i2,2021-22,Attleboro-Attleboro High,00160505, 90.8, 15.9, 58.2, 31.4, 10.1, 36.8 +3.924444444444444,3.92,a-vale-i2,2021-22,Attleboro-Attleboro Community Academy,00160515, 88.3, 12.9, 52.6, 49.1, 14.0, 52.6 +4.115555555555555,4.12,a-vale-i2,2021-22,Attleboro-Hill-Roberts Elementary School,00160045, 92.6, 12.6, 58.5, 22.3, 3.9, 13.1 +3.991111111111111,3.99,a-vale-i2,2021-22,Attleboro-Attleboro Virtual Academy,00160705, 89.8, 16.3, 42.2, 28.9, 17.8, 2.2 4.097777777777778,4.1,a-vale-i2,2021-22,Attleboro-Thomas Willett Elementary School,00160035, 92.2, 13.0, 59.5, 30.5, 4.7, 56.1 3.8577777777777778,3.86,a-vale-i2,2021-22,Attleboro-Early Learning Center,00160008, 86.8, 17.3, 71.6, 56.9, 13.3, 30.3 -3.991111111111111,3.99,a-vale-i2,2021-22,Attleboro-Attleboro Virtual Academy,00160705, 89.8, 16.3, 42.2, 28.9, 17.8, 2.2 -3.924444444444444,3.92,a-vale-i2,2021-22,Attleboro-Attleboro Community Academy,00160515, 88.3, 12.9, 52.6, 49.1, 14.0, 52.6 -4.035555555555556,4.04,a-vale-i2,2021-22,Attleboro-Attleboro High,00160505, 90.8, 15.9, 58.2, 31.4, 10.1, 36.8 -4.111111111111111,4.11,a-vale-i2,2021-22,Attleboro-Wamsutta Middle School,00160320, 92.5, 13.1, 51.9, 25.6, 4.7, 19.0 -4.075555555555556,4.08,a-vale-i2,2021-22,Attleboro-Cyril K. Brennan Middle School,00160315, 91.7, 14.3, 58.6, 33.4, 7.0, 46.7 -4.124444444444444,4.12,a-vale-i2,2021-22,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 12.7, 52.7, 23.7, 4.2, 30.7 -4.057777777777778,4.06,a-vale-i2,2021-22,Attleboro-Peter Thacher Elementary School,00160050, 91.3, 14.7, 58.9, 29.1, 6.9, 31.2 -4.115555555555555,4.12,a-vale-i2,2021-22,Attleboro-Hill-Roberts Elementary School,00160045, 92.6, 12.6, 58.5, 22.3, 3.9, 13.1 -4.106666666666667,4.11,a-vale-i2,2021-22,Attleboro-Hyman Fine Elementary School,00160040, 92.4, 13.0, 61.9, 26.6, 4.2, 38.1 4.124444444444444,4.12,a-vale-i2,2021-22,Attleboro-A. Irvin Studley Elementary School,00160001, 92.8, 12.0, 57.5, 24.9, 1.4, 5.8 +4.106666666666667,4.11,a-vale-i2,2021-22,Attleboro-Hyman Fine Elementary School,00160040, 92.4, 13.0, 61.9, 26.6, 4.2, 38.1 4.097777777777778,4.1,a-vale-i2,2021-22,Auburn-Bryn Mawr,00170010, 92.2, 13.8, 63.5, 28.8, 2.6, 44.6 4.115555555555555,4.12,a-vale-i2,2021-22,Auburn-Pakachoag School,00170025, 92.6, 12.9, 62.0, 23.3, 1.9, 15.4 4.04,4.04,a-vale-i2,2021-22,Auburn-Auburn Senior High,00170505, 90.9, 15.9, 61.6, 32.8, 9.5, 17.1 @@ -9297,60 +9297,60 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.1466666666666665,4.15,a-vale-i2,2021-22,Auburn-Swanson Road Intermediate School,00170030, 93.3, 11.9, 58.2, 18.0, 1.4, 17.5 4.071111111111111,4.07,a-vale-i2,2021-22,Avon-Avon Middle High School,00180510, 91.6, 14.4, 52.6, 28.0, 8.0, 33.5 4.16,4.16,a-vale-i2,2021-22,Avon-Ralph D Butler,00180010, 93.6, 10.8, 47.1, 20.1, 2.2, 22.6 -4.1288888888888895,4.13,a-vale-i2,2021-22,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 92.9, 12.6, 51.5, 22.1, 3.6, 33.2 -4.035555555555556,4.04,a-vale-i2,2021-22,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 90.8, 15.8, 58.8, 31.5, 10.5, 48.8 4.137777777777777,4.14,a-vale-i2,2021-22,Ayer Shirley School District-Lura A. White Elementary School,06160001, 93.1, 12.2, 57.3, 18.6, 1.8, 17.4 +4.035555555555556,4.04,a-vale-i2,2021-22,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 90.8, 15.8, 58.8, 31.5, 10.5, 48.8 +4.1288888888888895,4.13,a-vale-i2,2021-22,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 92.9, 12.6, 51.5, 22.1, 3.6, 33.2 4.1466666666666665,4.15,a-vale-i2,2021-22,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 93.3, 11.5, 50.5, 18.8, 2.5, 50.0 -4.075555555555556,4.08,a-vale-i2,2021-22,Barnstable-Barnstable United Elementary School,00200050, 91.7, 14.3, 63.5, 33.0, 5.6, 24.8 -4.0311111111111115,4.03,a-vale-i2,2021-22,Barnstable-Barnstable Intermediate School,00200315, 90.7, 15.7, 67.0, 37.7, 7.8, 52.5 3.8577777777777778,3.86,a-vale-i2,2021-22,Barnstable-Barnstable High,00200505, 86.8, 22.2, 72.6, 48.3, 20.9, 61.1 -4.071111111111111,4.07,a-vale-i2,2021-22,Barnstable-Hyannis West Elementary,00200025, 91.6, 13.3, 61.3, 29.8, 4.6, 27.5 -4.115555555555555,4.12,a-vale-i2,2021-22,Barnstable-West Villages Elementary School,00200045, 92.6, 13.0, 58.7, 24.2, 2.6, 22.6 +4.071111111111111,4.07,a-vale-i2,2021-22,Barnstable-Centerville Elementary,00200010, 91.6, 14.5, 66.8, 34.8, 4.7, 49.2 3.7688888888888887,3.77,a-vale-i2,2021-22,Barnstable-Enoch Cobb Early Learning Center,00200001, 84.8, 20.1, 80.2, 66.8, 28.9, 80.2 4.075555555555556,4.08,a-vale-i2,2021-22,Barnstable-West Barnstable Elementary,00200005, 91.7, 14.2, 64.6, 30.0, 6.2, 26.1 -4.071111111111111,4.07,a-vale-i2,2021-22,Barnstable-Centerville Elementary,00200010, 91.6, 14.5, 66.8, 34.8, 4.7, 49.2 +4.0311111111111115,4.03,a-vale-i2,2021-22,Barnstable-Barnstable Intermediate School,00200315, 90.7, 15.7, 67.0, 37.7, 7.8, 52.5 4.093333333333333,4.09,a-vale-i2,2021-22,Barnstable-Barnstable Community Innovation School,00200012, 92.1, 13.6, 68.8, 32.6, 1.0, 47.0 +4.071111111111111,4.07,a-vale-i2,2021-22,Barnstable-Hyannis West Elementary,00200025, 91.6, 13.3, 61.3, 29.8, 4.6, 27.5 +4.115555555555555,4.12,a-vale-i2,2021-22,Barnstable-West Villages Elementary School,00200045, 92.6, 13.0, 58.7, 24.2, 2.6, 22.6 +4.075555555555556,4.08,a-vale-i2,2021-22,Barnstable-Barnstable United Elementary School,00200050, 91.7, 14.3, 63.5, 33.0, 5.6, 24.8 4.115555555555555,4.12,a-vale-i2,2021-22,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 92.6, 13.1, 47.6, 22.3, 9.2, 0.0 -4.1866666666666665,4.19,a-vale-i2,2021-22,Bedford-Lt Elezer Davis,00230010, 94.2, 10.1, 42.1, 15.3, 1.4, 0.5 4.2,4.2,a-vale-i2,2021-22,Bedford-Bedford High,00230505, 94.5, 9.7, 38.0, 12.8, 2.8, 6.0 4.217777777777778,4.22,a-vale-i2,2021-22,Bedford-John Glenn Middle,00230305, 94.9, 9.0, 34.4, 11.5, 1.9, 2.7 4.217777777777778,4.22,a-vale-i2,2021-22,Bedford-Lt Job Lane School,00230012, 94.9, 9.1, 38.8, 9.0, 0.7, 0.5 +4.1866666666666665,4.19,a-vale-i2,2021-22,Bedford-Lt Elezer Davis,00230010, 94.2, 10.1, 42.1, 15.3, 1.4, 0.5 +4.066666666666666,4.07,a-vale-i2,2021-22,Belchertown-Cold Spring,00240005, 91.5, 13.8, 65.5, 27.0, 4.9, 21.7 4.1466666666666665,4.15,a-vale-i2,2021-22,Belchertown-Chestnut Hill Community School,00240006, 93.3, 11.9, 55.9, 21.7, 1.4, 26.4 4.133333333333334,4.13,a-vale-i2,2021-22,Belchertown-Swift River Elementary,00240018, 93.0, 12.3, 59.9, 22.6, 2.6, 10.0 4.115555555555555,4.12,a-vale-i2,2021-22,Belchertown-Jabish Middle School,00240025, 92.6, 13.2, 51.3, 20.1, 4.7, 29.7 -4.066666666666666,4.07,a-vale-i2,2021-22,Belchertown-Cold Spring,00240005, 91.5, 13.8, 65.5, 27.0, 4.9, 21.7 4.035555555555556,4.04,a-vale-i2,2021-22,Belchertown-Belchertown High,00240505, 90.8, 16.0, 58.9, 32.0, 9.7, 32.5 3.404444444444444,3.4,a-vale-i2,2021-22,Bellingham-Keough Memorial Academy,00250510, 76.6, 34.5, 76.0, 64.0, 64.0, 56.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Bellingham-Bellingham High School,00250505, 92.3, 13.4, 56.1, 23.4, 6.3, 27.6 +4.168888888888889,4.17,a-vale-i2,2021-22,Bellingham-Bellingham Early Childhood Center,00250003, 93.8, 10.6, 37.0, 16.0, 2.0, 37.0 +4.142222222222222,4.14,a-vale-i2,2021-22,Bellingham-Joseph F DiPietro Elementary School,00250020, 93.2, 11.4, 50.2, 21.8, 2.2, 25.2 4.133333333333334,4.13,a-vale-i2,2021-22,Bellingham-Stall Brook,00250025, 93.0, 11.9, 55.8, 20.9, 4.0, 29.7 4.124444444444444,4.12,a-vale-i2,2021-22,Bellingham-Bellingham Memorial School,00250315, 92.8, 12.6, 54.4, 23.8, 4.6, 47.1 -4.142222222222222,4.14,a-vale-i2,2021-22,Bellingham-Joseph F DiPietro Elementary School,00250020, 93.2, 11.4, 50.2, 21.8, 2.2, 25.2 -4.168888888888889,4.17,a-vale-i2,2021-22,Bellingham-Bellingham Early Childhood Center,00250003, 93.8, 10.6, 37.0, 16.0, 2.0, 37.0 -4.231111111111111,4.23,a-vale-i2,2021-22,Belmont-Mary Lee Burbank,00260010, 95.2, 8.4, 34.3, 8.4, 0.5, 3.5 -4.253333333333334,4.25,a-vale-i2,2021-22,Belmont-Winthrop L Chenery Middle,00260305, 95.7, 7.5, 27.2, 7.8, 1.3, 5.4 -4.226666666666667,4.23,a-vale-i2,2021-22,Belmont-Roger E Wellington,00260035, 95.1, 8.3, 34.3, 11.4, 1.0, 5.5 +4.102222222222222,4.1,a-vale-i2,2021-22,Bellingham-Bellingham High School,00250505, 92.3, 13.4, 56.1, 23.4, 6.3, 27.6 4.191111111111111,4.19,a-vale-i2,2021-22,Belmont-Belmont High,00260505, 94.3, 9.8, 35.5, 16.4, 4.4, 7.8 -4.235555555555555,4.24,a-vale-i2,2021-22,Belmont-Winn Brook,00260005, 95.3, 8.2, 30.2, 8.8, 1.6, 7.8 +4.253333333333334,4.25,a-vale-i2,2021-22,Belmont-Winthrop L Chenery Middle,00260305, 95.7, 7.5, 27.2, 7.8, 1.3, 5.4 4.235555555555555,4.24,a-vale-i2,2021-22,Belmont-Daniel Butler,00260015, 95.3, 8.3, 34.6, 10.0, 0.3, 6.7 +4.226666666666667,4.23,a-vale-i2,2021-22,Belmont-Roger E Wellington,00260035, 95.1, 8.3, 34.3, 11.4, 1.0, 5.5 +4.231111111111111,4.23,a-vale-i2,2021-22,Belmont-Mary Lee Burbank,00260010, 95.2, 8.4, 34.3, 8.4, 0.5, 3.5 +4.235555555555555,4.24,a-vale-i2,2021-22,Belmont-Winn Brook,00260005, 95.3, 8.2, 30.2, 8.8, 1.6, 7.8 4.142222222222222,4.14,a-vale-i2,2021-22,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 93.2, 12.5, 53.3, 22.6, 1.8, 11.1 4.164444444444444,4.16,a-vale-i2,2021-22,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 93.7, 11.1, 52.2, 15.7, 1.3, 52.1 4.155555555555556,4.16,a-vale-i2,2021-22,Berkley-Berkley Community School,00270010, 93.5, 11.5, 54.6, 16.4, 1.9, 34.7 4.16,4.16,a-vale-i2,2021-22,Berkley-Berkley Middle School,00270305, 93.6, 11.3, 54.3, 18.3, 2.9, 47.9 3.982222222222222,3.98,a-vale-i2,2021-22,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 89.6, 18.2, 65.2, 36.4, 12.1, 44.3 -3.848888888888889,3.85,a-vale-i2,2021-22,Berkshire Hills-Monument Mt Regional High,06180505, 86.6, 22.6, 69.8, 46.4, 19.1, 48.7 -4.124444444444444,4.12,a-vale-i2,2021-22,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.8, 12.5, 54.4, 23.4, 4.1, 7.7 4.102222222222222,4.1,a-vale-i2,2021-22,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 92.3, 13.5, 62.1, 28.2, 3.8, 0.0 -4.124444444444444,4.12,a-vale-i2,2021-22,Berlin-Boylston-Berlin Memorial School,06200005, 92.8, 11.7, 58.0, 26.1, 3.5, 46.0 -4.026666666666666,4.03,a-vale-i2,2021-22,Berlin-Boylston-Tahanto Regional High,06200505, 90.6, 16.6, 65.1, 33.2, 8.3, 11.9 +4.124444444444444,4.12,a-vale-i2,2021-22,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.8, 12.5, 54.4, 23.4, 4.1, 7.7 +3.848888888888889,3.85,a-vale-i2,2021-22,Berkshire Hills-Monument Mt Regional High,06180505, 86.6, 22.6, 69.8, 46.4, 19.1, 48.7 4.16,4.16,a-vale-i2,2021-22,Berlin-Boylston-Boylston Elementary School,06200010, 93.6, 10.6, 49.7, 18.5, 0.3, 43.9 +4.026666666666666,4.03,a-vale-i2,2021-22,Berlin-Boylston-Tahanto Regional High,06200505, 90.6, 16.6, 65.1, 33.2, 8.3, 11.9 +4.124444444444444,4.12,a-vale-i2,2021-22,Berlin-Boylston-Berlin Memorial School,06200005, 92.8, 11.7, 58.0, 26.1, 3.5, 46.0 +4.1288888888888895,4.13,a-vale-i2,2021-22,Beverly-Beverly Middle School,00300305, 92.9, 12.5, 49.5, 22.3, 5.3, 36.9 +4.2,4.2,a-vale-i2,2021-22,Beverly-Ayers/Ryal Side School,00300055, 94.5, 9.6, 41.9, 11.5, 1.8, 7.0 3.8533333333333335,3.85,a-vale-i2,2021-22,Beverly-McKeown School,00300002, 86.7, 21.2, 75.6, 55.1, 18.6, 75.0 4.1288888888888895,4.13,a-vale-i2,2021-22,Beverly-Centerville Elementary,00300010, 92.9, 12.4, 57.8, 25.6, 2.7, 9.0 4.137777777777777,4.14,a-vale-i2,2021-22,Beverly-Cove Elementary,00300015, 93.1, 12.0, 55.0, 19.9, 2.8, 10.8 +4.04,4.04,a-vale-i2,2021-22,Beverly-Beverly High,00300505, 90.9, 15.6, 50.4, 28.5, 11.4, 36.1 4.1466666666666665,4.15,a-vale-i2,2021-22,Beverly-North Beverly Elementary,00300040, 93.3, 11.9, 52.8, 19.5, 3.4, 11.9 4.16,4.16,a-vale-i2,2021-22,Beverly-Hannah Elementary,00300033, 93.6, 11.5, 56.4, 17.0, 1.5, 19.3 -4.04,4.04,a-vale-i2,2021-22,Beverly-Beverly High,00300505, 90.9, 15.6, 50.4, 28.5, 11.4, 36.1 -4.1288888888888895,4.13,a-vale-i2,2021-22,Beverly-Beverly Middle School,00300305, 92.9, 12.5, 49.5, 22.3, 5.3, 36.9 -4.2,4.2,a-vale-i2,2021-22,Beverly-Ayers/Ryal Side School,00300055, 94.5, 9.6, 41.9, 11.5, 1.8, 7.0 4.16,4.16,a-vale-i2,2021-22,Billerica-Thomas Ditson,00310005, 93.6, 11.3, 53.4, 17.5, 1.7, 34.8 4.2,4.2,a-vale-i2,2021-22,Billerica-Frederick J Dutile,00310007, 94.5, 9.6, 41.1, 11.9, 3.0, 20.0 4.16,4.16,a-vale-i2,2021-22,Billerica-John F Kennedy,00310012, 93.6, 11.4, 58.1, 14.1, 1.3, 34.4 @@ -9361,272 +9361,272 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.16,4.16,a-vale-i2,2021-22,Billerica-Parker,00310015, 93.6, 11.0, 48.8, 20.4, 1.4, 6.3 4.2,4.2,a-vale-i2,2021-22,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 94.5, 10.3, 43.7, 12.2, 2.3, 9.1 4.026666666666666,4.03,a-vale-i2,2021-22,Blackstone-Millville-Millville Elementary,06220010, 90.6, 14.4, 64.7, 39.8, 7.4, 35.3 -4.097777777777778,4.1,a-vale-i2,2021-22,Blackstone-Millville-John F Kennedy Elementary,06220008, 92.2, 13.6, 61.0, 17.1, 1.9, 19.0 4.155555555555556,4.16,a-vale-i2,2021-22,Blackstone-Millville-A F Maloney,06220015, 93.5, 11.5, 54.6, 16.6, 1.4, 22.0 -4.08,4.08,a-vale-i2,2021-22,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 91.8, 14.6, 59.0, 25.8, 6.6, 25.6 4.057777777777778,4.06,a-vale-i2,2021-22,Blackstone-Millville-Blackstone Millville RHS,06220505, 91.3, 15.0, 55.3, 27.8, 9.2, 22.5 +4.097777777777778,4.1,a-vale-i2,2021-22,Blackstone-Millville-John F Kennedy Elementary,06220008, 92.2, 13.6, 61.0, 17.1, 1.9, 19.0 +4.08,4.08,a-vale-i2,2021-22,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 91.8, 14.6, 59.0, 25.8, 6.6, 25.6 4.137777777777777,4.14,a-vale-i2,2021-22,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 93.1, 12.3, 57.5, 16.6, 2.8, 47.4 -3.924444444444444,3.92,a-vale-i2,2021-22,Boston-Clap Elementary School,00350298, 88.3, 19.0, 74.2, 55.5, 15.6, 46.1 +3.8,3.8,a-vale-i2,2021-22,Boston-Boston Arts Academy,00350546, 85.5, 25.2, 72.8, 49.4, 23.4, 56.6 +2.848888888888889,2.85,a-vale-i2,2021-22,Boston-Boston Adult Tech Academy,00350548, 64.1, 46.4, 82.4, 80.7, 61.9, 81.3 +3.7688888888888887,3.77,a-vale-i2,2021-22,Boston-King K-8 School,00350376, 84.8, 26.0, 80.0, 59.2, 28.2, 73.2 +3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Higginson-Lewis K-8 School,00350377, 86.9, 22.2, 79.0, 51.3, 22.6, 65.6 +4.111111111111111,4.11,a-vale-i2,2021-22,Boston-Mildred Avenue K-8 School,00350378, 92.5, 12.6, 44.1, 25.8, 7.9, 40.8 +3.728888888888889,3.73,a-vale-i2,2021-22,Boston-Young Achievers K-8 School,00350380, 83.9, 27.0, 86.0, 66.4, 30.0, 77.2 +4.017777777777778,4.02,a-vale-i2,2021-22,Boston-Mission Hill K-8 School,00350382, 90.4, 16.8, 64.5, 38.8, 13.1, 43.5 3.9555555555555557,3.96,a-vale-i2,2021-22,Boston-Frederick Pilot Middle School,00350383, 89.0, 17.9, 60.9, 40.1, 14.1, 50.1 3.8222222222222224,3.82,a-vale-i2,2021-22,Boston-Blackstone Elementary School,00350390, 86.0, 23.2, 79.6, 58.5, 21.8, 61.9 -3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Adams Elementary School,00350302, 89.8, 17.0, 72.3, 42.0, 10.2, 40.2 -4.08,4.08,a-vale-i2,2021-22,Boston-Mason Elementary School,00350304, 91.8, 14.3, 60.1, 33.3, 3.5, 11.1 +3.8444444444444446,3.84,a-vale-i2,2021-22,Boston-West Zone Early Learning Center,00350006, 86.5, 22.7, 81.9, 58.5, 18.1, 68.1 +4.04,4.04,a-vale-i2,2021-22,Boston-Ellison-Parks Early Education School,00350008, 90.9, 15.5, 61.1, 38.9, 5.4, 53.5 +3.9955555555555557,4.0,a-vale-i2,2021-22,Boston-East Boston Early Education Center,00350009, 89.9, 17.4, 74.7, 37.4, 8.9, 32.6 +3.933333333333333,3.93,a-vale-i2,2021-22,Boston-Haynes Early Education Center,00350010, 88.5, 19.2, 73.5, 44.5, 14.5, 47.0 +4.097777777777778,4.1,a-vale-i2,2021-22,Boston-Boston Teachers Union K-8 Pilot,00350012, 92.2, 13.6, 53.7, 22.5, 5.4, 28.9 +3.96,3.96,a-vale-i2,2021-22,Boston-Jackson-Mann K-8 School,00350013, 89.1, 18.9, 67.4, 40.9, 11.4, 42.6 +3.88,3.88,a-vale-i2,2021-22,Boston-Shaw Elementary School,00350014, 87.3, 21.2, 77.6, 55.3, 18.6, 64.6 +3.8755555555555556,3.88,a-vale-i2,2021-22,Boston-Higginson Inclusion K0-2 School,00350015, 87.2, 21.9, 75.4, 53.2, 18.3, 69.8 +3.902222222222222,3.9,a-vale-i2,2021-22,Boston-Mattahunt Elementary School,00350016, 87.8, 20.6, 71.3, 47.4, 18.7, 60.4 3.9644444444444447,3.96,a-vale-i2,2021-22,Boston-Curley K-8 School,00350020, 89.2, 19.1, 75.1, 40.4, 11.7, 49.7 +4.0,4.0,a-vale-i2,2021-22,Boston-Beethoven Elementary School,00350021, 90.0, 16.7, 68.2, 38.2, 12.1, 40.0 +3.208888888888889,3.21,a-vale-i2,2021-22,Boston-Carter School,00350036, 72.2, 48.1, 81.3, 68.8, 50.0, 0.0 +4.017777777777778,4.02,a-vale-i2,2021-22,Boston-Sumner Elementary School,00350052, 90.4, 16.5, 66.0, 35.4, 9.3, 52.7 +4.093333333333333,4.09,a-vale-i2,2021-22,Boston-Taylor Elementary School,00350054, 92.1, 12.9, 49.0, 29.7, 10.1, 38.9 +4.137777777777777,4.14,a-vale-i2,2021-22,Boston-Guild Elementary School,00350062, 93.1, 11.6, 44.8, 25.0, 6.3, 32.8 +4.097777777777778,4.1,a-vale-i2,2021-22,Boston-Alighieri Dante Montessori School,00350066, 92.2, 14.0, 66.3, 30.8, 1.0, 21.2 +3.897777777777778,3.9,a-vale-i2,2021-22,Boston-Ellis Elementary School,00350072, 87.7, 20.5, 78.4, 53.8, 17.3, 60.2 +3.826666666666666,3.83,a-vale-i2,2021-22,Boston-Dearborn 6-12 STEM Academy,00350074, 86.1, 24.0, 71.6, 48.5, 21.9, 60.9 +4.088888888888889,4.09,a-vale-i2,2021-22,Boston-Haley Pilot School,00350077, 92.0, 13.7, 53.6, 29.0, 8.5, 45.6 +4.075555555555556,4.08,a-vale-i2,2021-22,Boston-McKay K-8 School,00350080, 91.7, 14.2, 60.6, 31.1, 6.0, 33.9 3.871111111111111,3.87,a-vale-i2,2021-22,Boston-Henderson K-12 Inclusion School Upper,00350426, 87.1, 21.2, 72.2, 51.4, 18.6, 50.2 3.8666666666666667,3.87,a-vale-i2,2021-22,Boston-Irving Middle School,00350445, 87.0, 22.2, 73.8, 53.8, 22.3, 62.3 3.804444444444444,3.8,a-vale-i2,2021-22,Boston-Timilty Middle School,00350485, 85.6, 24.5, 86.3, 61.6, 23.2, 70.5 3.4622222222222225,3.46,a-vale-i2,2021-22,Boston-Brighton High School,00350505, 77.9, 33.9, 77.1, 69.1, 40.3, 74.3 +3.826666666666666,3.83,a-vale-i2,2021-22,Boston-Boston International High School & Newcomers Academy,00350507, 86.1, 20.8, 58.9, 47.6, 25.0, 51.3 +3.391111111111111,3.39,a-vale-i2,2021-22,Boston-Charlestown High School,00350515, 76.3, 39.2, 82.9, 70.9, 48.7, 78.4 +2.471111111111111,2.47,a-vale-i2,2021-22,Boston-Community Academy,00350518, 55.6, 69.5, 93.3, 91.1, 77.8, 91.1 +3.2844444444444445,3.28,a-vale-i2,2021-22,Boston-Excel High School,00350522, 73.9, 42.6, 83.0, 73.1, 53.4, 76.2 +3.8666666666666667,3.87,a-vale-i2,2021-22,Boston-Burke High School,00350525, 87.0, 20.9, 64.9, 44.1, 21.3, 61.5 +3.986666666666667,3.99,a-vale-i2,2021-22,Boston-East Boston High School,00350530, 89.7, 17.1, 56.6, 37.7, 14.1, 47.3 +3.488888888888889,3.49,a-vale-i2,2021-22,Boston-English High School,00350535, 78.5, 34.2, 82.2, 67.5, 40.4, 75.3 +3.5511111111111116,3.55,a-vale-i2,2021-22,Boston-Madison Park Technical Vocational High School,00350537, 79.9, 34.6, 80.2, 63.4, 38.4, 75.4 +3.8355555555555556,3.84,a-vale-i2,2021-22,Boston-Fenway High School,00350540, 86.3, 23.7, 74.3, 49.5, 22.3, 63.9 +3.315555555555555,3.32,a-vale-i2,2021-22,Boston-Another Course To College,00350541, 74.6, 40.8, 83.9, 70.9, 51.2, 76.4 +3.9155555555555552,3.92,a-vale-i2,2021-22,Boston-New Mission High School,00350542, 88.1, 20.3, 73.9, 47.0, 16.3, 61.5 +1.96,1.96,a-vale-i2,2021-22,Boston-Greater Egleston High School,00350543, 44.1, 82.3, 100.0, 99.0, 93.8, 97.9 +4.053333333333334,4.05,a-vale-i2,2021-22,Boston-Boston Latin Academy,00350545, 91.2, 15.5, 58.9, 30.9, 8.6, 33.2 +3.9644444444444447,3.96,a-vale-i2,2021-22,Boston-Hale Elementary School,00350243, 89.2, 18.5, 69.2, 36.3, 16.5, 60.4 +4.035555555555556,4.04,a-vale-i2,2021-22,Boston-Perry K-8 School,00350255, 90.8, 15.8, 61.8, 39.8, 9.1, 54.8 +4.013333333333334,4.01,a-vale-i2,2021-22,Boston-Orchard Gardens K-8 School,00350257, 90.3, 16.6, 63.6, 37.9, 9.3, 51.2 +4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Ohrenberger School,00350258, 90.1, 16.9, 61.7, 37.9, 10.7, 44.7 +4.182222222222222,4.18,a-vale-i2,2021-22,Boston-Lyndon K-8 School,00350262, 94.1, 10.4, 41.2, 14.8, 3.2, 21.4 +4.102222222222222,4.1,a-vale-i2,2021-22,Boston-Kennedy Patrick J Elementary School,00350264, 92.3, 13.0, 63.0, 28.5, 4.9, 42.6 +3.92,3.92,a-vale-i2,2021-22,Boston-Henderson K-12 Inclusion School Lower,00350266, 88.2, 20.1, 78.6, 50.2, 16.3, 22.3 +3.9288888888888893,3.93,a-vale-i2,2021-22,Boston-Dever Elementary School,00350268, 88.4, 19.8, 73.1, 46.7, 17.2, 58.2 +4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Bates Elementary School,00350278, 90.1, 16.9, 68.9, 42.5, 9.2, 32.9 +4.24,4.24,a-vale-i2,2021-22,Boston-Quincy Elementary School,00350286, 95.4, 8.1, 28.7, 11.0, 3.0, 7.4 +3.924444444444444,3.92,a-vale-i2,2021-22,Boston-Clap Elementary School,00350298, 88.3, 19.0, 74.2, 55.5, 15.6, 46.1 +4.04,4.04,a-vale-i2,2021-22,Boston-Lee Academy,00350001, 90.9, 15.6, 61.3, 38.1, 9.4, 48.1 +3.977777777777778,3.98,a-vale-i2,2021-22,Boston-Baldwin Early Learning Pilot Academy,00350003, 89.5, 17.6, 69.2, 38.5, 15.4, 26.9 +3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Lyon K-8 School,00350004, 89.8, 17.3, 68.7, 31.3, 14.9, 33.6 +3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Adams Elementary School,00350302, 89.8, 17.0, 72.3, 42.0, 10.2, 40.2 +4.08,4.08,a-vale-i2,2021-22,Boston-Mason Elementary School,00350304, 91.8, 14.3, 60.1, 33.3, 3.5, 11.1 3.9644444444444447,3.96,a-vale-i2,2021-22,Boston-Greenwood Sarah K-8 School,00350308, 89.2, 18.3, 68.8, 43.0, 13.4, 60.5 4.093333333333333,4.09,a-vale-i2,2021-22,Boston-Gardner Pilot Academy,00350326, 92.1, 13.8, 57.4, 28.7, 6.5, 21.9 4.075555555555556,4.08,a-vale-i2,2021-22,Boston-Kenny Elementary School,00350328, 91.7, 14.1, 57.1, 30.0, 10.4, 45.0 4.195555555555556,4.2,a-vale-i2,2021-22,Boston-Warren-Prescott K-8 School,00350346, 94.4, 9.9, 38.1, 15.6, 3.2, 25.0 3.8533333333333335,3.85,a-vale-i2,2021-22,Boston-Channing Elementary School,00350360, 86.7, 22.2, 79.7, 54.1, 17.9, 76.8 3.022222222222222,3.02,a-vale-i2,2021-22,Boston-McKinley Schools,00350363, 68.0, 53.0, 87.3, 77.0, 54.4, 70.6 -3.897777777777778,3.9,a-vale-i2,2021-22,Boston-Ellis Elementary School,00350072, 87.7, 20.5, 78.4, 53.8, 17.3, 60.2 -3.826666666666666,3.83,a-vale-i2,2021-22,Boston-Dearborn 6-12 STEM Academy,00350074, 86.1, 24.0, 71.6, 48.5, 21.9, 60.9 -4.088888888888889,4.09,a-vale-i2,2021-22,Boston-Haley Pilot School,00350077, 92.0, 13.7, 53.6, 29.0, 8.5, 45.6 -4.075555555555556,4.08,a-vale-i2,2021-22,Boston-McKay K-8 School,00350080, 91.7, 14.2, 60.6, 31.1, 6.0, 33.9 -4.124444444444444,4.12,a-vale-i2,2021-22,Boston-Manning Elementary School,00350184, 92.8, 12.8, 60.9, 29.2, 1.9, 14.3 -4.102222222222222,4.1,a-vale-i2,2021-22,Boston-Kilmer K-8 School,00350190, 92.3, 13.1, 50.8, 26.1, 7.6, 32.1 -4.088888888888889,4.09,a-vale-i2,2021-22,Boston-Harvard-Kent Elementary School,00350200, 92.0, 14.0, 57.2, 28.7, 4.5, 29.3 -4.137777777777777,4.14,a-vale-i2,2021-22,Boston-Everett Elementary School,00350088, 93.1, 11.2, 49.8, 24.3, 5.3, 26.6 -4.226666666666667,4.23,a-vale-i2,2021-22,Boston-Eliot K-8 Innovation School,00350096, 95.1, 8.7, 34.0, 10.4, 1.6, 26.8 -3.5511111111111116,3.55,a-vale-i2,2021-22,Boston-Madison Park Technical Vocational High School,00350537, 79.9, 34.6, 80.2, 63.4, 38.4, 75.4 -3.8355555555555556,3.84,a-vale-i2,2021-22,Boston-Fenway High School,00350540, 86.3, 23.7, 74.3, 49.5, 22.3, 63.9 -3.315555555555555,3.32,a-vale-i2,2021-22,Boston-Another Course To College,00350541, 74.6, 40.8, 83.9, 70.9, 51.2, 76.4 -3.9155555555555552,3.92,a-vale-i2,2021-22,Boston-New Mission High School,00350542, 88.1, 20.3, 73.9, 47.0, 16.3, 61.5 -4.075555555555556,4.08,a-vale-i2,2021-22,Boston-Bradley Elementary School,00350215, 91.7, 14.4, 65.0, 34.0, 4.7, 33.0 -4.013333333333334,4.01,a-vale-i2,2021-22,Boston-Mather Elementary School,00350227, 90.3, 17.0, 62.0, 39.0, 12.3, 51.3 -4.04,4.04,a-vale-i2,2021-22,Boston-Lee Academy,00350001, 90.9, 15.6, 61.3, 38.1, 9.4, 48.1 -3.977777777777778,3.98,a-vale-i2,2021-22,Boston-Baldwin Early Learning Pilot Academy,00350003, 89.5, 17.6, 69.2, 38.5, 15.4, 26.9 3.902222222222222,3.9,a-vale-i2,2021-22,Boston-Russell Elementary School,00350366, 87.8, 20.8, 72.9, 46.8, 17.9, 60.4 3.7644444444444445,3.76,a-vale-i2,2021-22,Boston-Trotter K-8 School,00350370, 84.7, 26.2, 81.8, 60.7, 25.3, 78.6 4.088888888888889,4.09,a-vale-i2,2021-22,Boston-Winship Elementary School,00350374, 92.0, 13.7, 58.3, 26.4, 6.9, 34.4 3.9733333333333336,3.97,a-vale-i2,2021-22,Boston-Edison K-8 School,00350375, 89.4, 17.2, 63.7, 45.6, 13.9, 56.2 -3.7688888888888887,3.77,a-vale-i2,2021-22,Boston-King K-8 School,00350376, 84.8, 26.0, 80.0, 59.2, 28.2, 73.2 -3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Lyon K-8 School,00350004, 89.8, 17.3, 68.7, 31.3, 14.9, 33.6 -3.8444444444444446,3.84,a-vale-i2,2021-22,Boston-West Zone Early Learning Center,00350006, 86.5, 22.7, 81.9, 58.5, 18.1, 68.1 -4.04,4.04,a-vale-i2,2021-22,Boston-Ellison-Parks Early Education School,00350008, 90.9, 15.5, 61.1, 38.9, 5.4, 53.5 -3.9955555555555557,4.0,a-vale-i2,2021-22,Boston-East Boston Early Education Center,00350009, 89.9, 17.4, 74.7, 37.4, 8.9, 32.6 -3.826666666666666,3.83,a-vale-i2,2021-22,Boston-Boston International High School & Newcomers Academy,00350507, 86.1, 20.8, 58.9, 47.6, 25.0, 51.3 -3.933333333333333,3.93,a-vale-i2,2021-22,Boston-Haynes Early Education Center,00350010, 88.5, 19.2, 73.5, 44.5, 14.5, 47.0 -4.097777777777778,4.1,a-vale-i2,2021-22,Boston-Boston Teachers Union K-8 Pilot,00350012, 92.2, 13.6, 53.7, 22.5, 5.4, 28.9 -3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Higginson-Lewis K-8 School,00350377, 86.9, 22.2, 79.0, 51.3, 22.6, 65.6 -4.111111111111111,4.11,a-vale-i2,2021-22,Boston-Mildred Avenue K-8 School,00350378, 92.5, 12.6, 44.1, 25.8, 7.9, 40.8 -3.728888888888889,3.73,a-vale-i2,2021-22,Boston-Young Achievers K-8 School,00350380, 83.9, 27.0, 86.0, 66.4, 30.0, 77.2 -4.017777777777778,4.02,a-vale-i2,2021-22,Boston-Mission Hill K-8 School,00350382, 90.4, 16.8, 64.5, 38.8, 13.1, 43.5 -3.96,3.96,a-vale-i2,2021-22,Boston-Jackson-Mann K-8 School,00350013, 89.1, 18.9, 67.4, 40.9, 11.4, 42.6 -3.88,3.88,a-vale-i2,2021-22,Boston-Shaw Elementary School,00350014, 87.3, 21.2, 77.6, 55.3, 18.6, 64.6 -3.8755555555555556,3.88,a-vale-i2,2021-22,Boston-Higginson Inclusion K0-2 School,00350015, 87.2, 21.9, 75.4, 53.2, 18.3, 69.8 +3.813333333333333,3.81,a-vale-i2,2021-22,Boston-Holmes Elementary School,00350138, 85.8, 24.3, 83.4, 56.2, 23.4, 68.7 +3.933333333333333,3.93,a-vale-i2,2021-22,Boston-O'Donnell Elementary School,00350141, 88.5, 18.8, 75.8, 52.0, 14.2, 28.8 +3.8577777777777778,3.86,a-vale-i2,2021-22,Boston-Condon K-8 School,00350146, 86.8, 22.3, 74.1, 49.9, 18.1, 50.4 +3.9288888888888893,3.93,a-vale-i2,2021-22,Boston-Hennigan K-8 School,00350153, 88.4, 19.2, 68.6, 48.0, 16.1, 51.3 +4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Chittick Elementary School,00350154, 90.1, 16.8, 62.1, 33.9, 11.0, 37.9 +4.124444444444444,4.12,a-vale-i2,2021-22,Boston-Otis Elementary School,00350156, 92.8, 12.5, 52.8, 22.1, 5.4, 24.1 +4.062222222222222,4.06,a-vale-i2,2021-22,Boston-Kennedy John F Elementary School,00350166, 91.4, 14.4, 59.9, 34.6, 6.9, 50.7 3.893333333333333,3.89,a-vale-i2,2021-22,Boston-UP Academy Holland,00350167, 87.6, 21.2, 70.9, 49.7, 23.0, 65.7 4.111111111111111,4.11,a-vale-i2,2021-22,Boston-Philbrick Elementary School,00350172, 92.5, 12.8, 52.9, 26.0, 7.7, 28.8 3.9644444444444447,3.96,a-vale-i2,2021-22,Boston-Winthrop Elementary School,00350180, 89.2, 18.8, 72.0, 48.6, 11.7, 64.5 3.8666666666666667,3.87,a-vale-i2,2021-22,Boston-Tynan Elementary School,00350181, 87.0, 21.9, 78.8, 58.6, 14.9, 60.8 -4.137777777777777,4.14,a-vale-i2,2021-22,Boston-Guild Elementary School,00350062, 93.1, 11.6, 44.8, 25.0, 6.3, 32.8 -4.097777777777778,4.1,a-vale-i2,2021-22,Boston-Alighieri Dante Montessori School,00350066, 92.2, 14.0, 66.3, 30.8, 1.0, 21.2 -3.391111111111111,3.39,a-vale-i2,2021-22,Boston-Charlestown High School,00350515, 76.3, 39.2, 82.9, 70.9, 48.7, 78.4 -2.471111111111111,2.47,a-vale-i2,2021-22,Boston-Community Academy,00350518, 55.6, 69.5, 93.3, 91.1, 77.8, 91.1 -3.2844444444444445,3.28,a-vale-i2,2021-22,Boston-Excel High School,00350522, 73.9, 42.6, 83.0, 73.1, 53.4, 76.2 -3.8666666666666667,3.87,a-vale-i2,2021-22,Boston-Burke High School,00350525, 87.0, 20.9, 64.9, 44.1, 21.3, 61.5 3.9288888888888893,3.93,a-vale-i2,2021-22,Boston-Hurley K-8 School,00350182, 88.4, 20.6, 77.7, 46.0, 14.7, 69.8 3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Lee K-8 School,00350183, 86.9, 22.5, 74.3, 52.1, 20.6, 62.2 -3.3866666666666667,3.39,a-vale-i2,2021-22,Boston-Snowden International High School,00350690, 76.2, 41.5, 91.2, 76.4, 49.9, 78.7 -4.115555555555555,4.12,a-vale-i2,2021-22,Boston-Hernandez K-8 School,00350691, 92.6, 13.1, 60.2, 26.6, 3.5, 37.9 -3.88,3.88,a-vale-i2,2021-22,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 87.3, 21.9, 75.4, 49.3, 15.9, 39.1 -3.986666666666667,3.99,a-vale-i2,2021-22,Boston-East Boston High School,00350530, 89.7, 17.1, 56.6, 37.7, 14.1, 47.3 -3.488888888888889,3.49,a-vale-i2,2021-22,Boston-English High School,00350535, 78.5, 34.2, 82.2, 67.5, 40.4, 75.3 -3.6666666666666665,3.67,a-vale-i2,2021-22,Boston-Boston Collaborative High School,00350755, 82.5, 25.5, 50.8, 46.8, 33.3, 50.8 -4.0,4.0,a-vale-i2,2021-22,Boston-Beethoven Elementary School,00350021, 90.0, 16.7, 68.2, 38.2, 12.1, 40.0 -3.208888888888889,3.21,a-vale-i2,2021-22,Boston-Carter School,00350036, 72.2, 48.1, 81.3, 68.8, 50.0, 0.0 -4.017777777777778,4.02,a-vale-i2,2021-22,Boston-Sumner Elementary School,00350052, 90.4, 16.5, 66.0, 35.4, 9.3, 52.7 -4.093333333333333,4.09,a-vale-i2,2021-22,Boston-Taylor Elementary School,00350054, 92.1, 12.9, 49.0, 29.7, 10.1, 38.9 -1.96,1.96,a-vale-i2,2021-22,Boston-Greater Egleston High School,00350543, 44.1, 82.3, 100.0, 99.0, 93.8, 97.9 -4.053333333333334,4.05,a-vale-i2,2021-22,Boston-Boston Latin Academy,00350545, 91.2, 15.5, 58.9, 30.9, 8.6, 33.2 -4.057777777777778,4.06,a-vale-i2,2021-22,Boston-Mendell Elementary School,00350100, 91.3, 14.6, 65.4, 31.1, 9.2, 29.3 -4.12,4.12,a-vale-i2,2021-22,Boston-Roosevelt K-8 School,00350116, 92.7, 12.8, 53.9, 26.4, 5.2, 31.0 -3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Conley Elementary School,00350122, 89.8, 17.6, 61.5, 34.8, 9.1, 49.2 -4.062222222222222,4.06,a-vale-i2,2021-22,Boston-Grew Elementary School,00350135, 91.4, 14.6, 62.6, 38.8, 6.8, 36.9 -3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Tobin K-8 School,00350229, 86.9, 22.1, 81.6, 58.9, 19.1, 64.3 -3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Perkins Elementary School,00350231, 86.9, 21.8, 76.4, 52.9, 21.8, 58.6 -4.133333333333334,4.13,a-vale-i2,2021-22,Boston-Mozart Elementary School,00350237, 93.0, 12.1, 54.5, 23.0, 4.2, 34.5 -4.057777777777778,4.06,a-vale-i2,2021-22,Boston-Murphy K-8 School,00350240, 91.3, 15.3, 57.1, 30.3, 9.5, 35.7 -3.813333333333333,3.81,a-vale-i2,2021-22,Boston-Holmes Elementary School,00350138, 85.8, 24.3, 83.4, 56.2, 23.4, 68.7 -3.933333333333333,3.93,a-vale-i2,2021-22,Boston-O'Donnell Elementary School,00350141, 88.5, 18.8, 75.8, 52.0, 14.2, 28.8 -3.8,3.8,a-vale-i2,2021-22,Boston-Boston Arts Academy,00350546, 85.5, 25.2, 72.8, 49.4, 23.4, 56.6 -2.848888888888889,2.85,a-vale-i2,2021-22,Boston-Boston Adult Tech Academy,00350548, 64.1, 46.4, 82.4, 80.7, 61.9, 81.3 -3.8400000000000003,3.84,a-vale-i2,2021-22,Boston-Margarita Muniz Academy,00350549, 86.4, 22.8, 70.5, 48.3, 21.8, 55.7 -3.9644444444444447,3.96,a-vale-i2,2021-22,Boston-Hale Elementary School,00350243, 89.2, 18.5, 69.2, 36.3, 16.5, 60.4 -4.035555555555556,4.04,a-vale-i2,2021-22,Boston-Perry K-8 School,00350255, 90.8, 15.8, 61.8, 39.8, 9.1, 54.8 3.595555555555556,3.6,a-vale-i2,2021-22,Boston-Boston Community Leadership Academy,00350558, 80.9, 31.6, 83.1, 67.7, 35.5, 74.3 4.164444444444444,4.16,a-vale-i2,2021-22,Boston-Boston Latin School,00350560, 93.7, 11.1, 45.9, 16.8, 3.1, 5.8 -3.8577777777777778,3.86,a-vale-i2,2021-22,Boston-Condon K-8 School,00350146, 86.8, 22.3, 74.1, 49.9, 18.1, 50.4 -3.9288888888888893,3.93,a-vale-i2,2021-22,Boston-Hennigan K-8 School,00350153, 88.4, 19.2, 68.6, 48.0, 16.1, 51.3 -4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Chittick Elementary School,00350154, 90.1, 16.8, 62.1, 33.9, 11.0, 37.9 -4.013333333333334,4.01,a-vale-i2,2021-22,Boston-Orchard Gardens K-8 School,00350257, 90.3, 16.6, 63.6, 37.9, 9.3, 51.2 -4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Ohrenberger School,00350258, 90.1, 16.9, 61.7, 37.9, 10.7, 44.7 -4.182222222222222,4.18,a-vale-i2,2021-22,Boston-Lyndon K-8 School,00350262, 94.1, 10.4, 41.2, 14.8, 3.2, 21.4 -4.124444444444444,4.12,a-vale-i2,2021-22,Boston-Otis Elementary School,00350156, 92.8, 12.5, 52.8, 22.1, 5.4, 24.1 -4.062222222222222,4.06,a-vale-i2,2021-22,Boston-Kennedy John F Elementary School,00350166, 91.4, 14.4, 59.9, 34.6, 6.9, 50.7 4.017777777777778,4.02,a-vale-i2,2021-22,Boston-Quincy Upper School,00350565, 90.4, 16.9, 49.4, 31.0, 11.8, 33.8 4.12,4.12,a-vale-i2,2021-22,Boston-O'Bryant School of Math & Science,00350575, 92.7, 12.8, 49.9, 23.9, 6.0, 38.3 3.4844444444444447,3.48,a-vale-i2,2021-22,Boston-Community Academy of Science and Health,00350581, 78.4, 35.2, 73.2, 61.1, 36.7, 65.1 3.7466666666666666,3.75,a-vale-i2,2021-22,Boston-Lyon High School,00350655, 84.3, 26.3, 73.1, 59.2, 30.0, 69.2 -4.102222222222222,4.1,a-vale-i2,2021-22,Boston-Kennedy Patrick J Elementary School,00350264, 92.3, 13.0, 63.0, 28.5, 4.9, 42.6 -3.92,3.92,a-vale-i2,2021-22,Boston-Henderson K-12 Inclusion School Lower,00350266, 88.2, 20.1, 78.6, 50.2, 16.3, 22.3 4.075555555555556,4.08,a-vale-i2,2021-22,Boston-Mario Umana Academy,00350656, 91.7, 13.9, 59.4, 31.0, 6.0, 26.7 3.6488888888888886,3.65,a-vale-i2,2021-22,Boston-TechBoston Academy,00350657, 82.1, 30.3, 81.2, 62.5, 34.3, 72.7 -3.902222222222222,3.9,a-vale-i2,2021-22,Boston-Mattahunt Elementary School,00350016, 87.8, 20.6, 71.3, 47.4, 18.7, 60.4 -3.9288888888888893,3.93,a-vale-i2,2021-22,Boston-Dever Elementary School,00350268, 88.4, 19.8, 73.1, 46.7, 17.2, 58.2 -4.004444444444444,4.0,a-vale-i2,2021-22,Boston-Bates Elementary School,00350278, 90.1, 16.9, 68.9, 42.5, 9.2, 32.9 -4.24,4.24,a-vale-i2,2021-22,Boston-Quincy Elementary School,00350286, 95.4, 8.1, 28.7, 11.0, 3.0, 7.4 +3.3866666666666667,3.39,a-vale-i2,2021-22,Boston-Snowden International High School,00350690, 76.2, 41.5, 91.2, 76.4, 49.9, 78.7 +4.115555555555555,4.12,a-vale-i2,2021-22,Boston-Hernandez K-8 School,00350691, 92.6, 13.1, 60.2, 26.6, 3.5, 37.9 +3.88,3.88,a-vale-i2,2021-22,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 87.3, 21.9, 75.4, 49.3, 15.9, 39.1 +3.6666666666666665,3.67,a-vale-i2,2021-22,Boston-Boston Collaborative High School,00350755, 82.5, 25.5, 50.8, 46.8, 33.3, 50.8 +4.124444444444444,4.12,a-vale-i2,2021-22,Boston-Manning Elementary School,00350184, 92.8, 12.8, 60.9, 29.2, 1.9, 14.3 +4.102222222222222,4.1,a-vale-i2,2021-22,Boston-Kilmer K-8 School,00350190, 92.3, 13.1, 50.8, 26.1, 7.6, 32.1 +4.088888888888889,4.09,a-vale-i2,2021-22,Boston-Harvard-Kent Elementary School,00350200, 92.0, 14.0, 57.2, 28.7, 4.5, 29.3 +4.075555555555556,4.08,a-vale-i2,2021-22,Boston-Bradley Elementary School,00350215, 91.7, 14.4, 65.0, 34.0, 4.7, 33.0 +4.013333333333334,4.01,a-vale-i2,2021-22,Boston-Mather Elementary School,00350227, 90.3, 17.0, 62.0, 39.0, 12.3, 51.3 +3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Tobin K-8 School,00350229, 86.9, 22.1, 81.6, 58.9, 19.1, 64.3 +3.8622222222222224,3.86,a-vale-i2,2021-22,Boston-Perkins Elementary School,00350231, 86.9, 21.8, 76.4, 52.9, 21.8, 58.6 +4.133333333333334,4.13,a-vale-i2,2021-22,Boston-Mozart Elementary School,00350237, 93.0, 12.1, 54.5, 23.0, 4.2, 34.5 +4.057777777777778,4.06,a-vale-i2,2021-22,Boston-Murphy K-8 School,00350240, 91.3, 15.3, 57.1, 30.3, 9.5, 35.7 +3.8400000000000003,3.84,a-vale-i2,2021-22,Boston-Margarita Muniz Academy,00350549, 86.4, 22.8, 70.5, 48.3, 21.8, 55.7 +4.137777777777777,4.14,a-vale-i2,2021-22,Boston-Everett Elementary School,00350088, 93.1, 11.2, 49.8, 24.3, 5.3, 26.6 +4.226666666666667,4.23,a-vale-i2,2021-22,Boston-Eliot K-8 Innovation School,00350096, 95.1, 8.7, 34.0, 10.4, 1.6, 26.8 +4.057777777777778,4.06,a-vale-i2,2021-22,Boston-Mendell Elementary School,00350100, 91.3, 14.6, 65.4, 31.1, 9.2, 29.3 +4.12,4.12,a-vale-i2,2021-22,Boston-Roosevelt K-8 School,00350116, 92.7, 12.8, 53.9, 26.4, 5.2, 31.0 +3.991111111111111,3.99,a-vale-i2,2021-22,Boston-Conley Elementary School,00350122, 89.8, 17.6, 61.5, 34.8, 9.1, 49.2 +4.062222222222222,4.06,a-vale-i2,2021-22,Boston-Grew Elementary School,00350135, 91.4, 14.6, 62.6, 38.8, 6.8, 36.9 4.062222222222222,4.06,a-vale-i2,2021-22,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 91.4, 15.3, 57.9, 27.2, 7.8, 27.9 1.8711111111111112,1.87,a-vale-i2,2021-22,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 42.1, 81.7, 97.4, 97.9, 93.1, 0.0 3.688888888888889,3.69,a-vale-i2,2021-22,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 83.0, 28.9, 80.6, 61.0, 34.9, 73.3 3.968888888888889,3.97,a-vale-i2,2021-22,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 89.3, 19.1, 65.4, 37.2, 12.7, 42.0 3.991111111111111,3.99,a-vale-i2,2021-22,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 89.8, 17.6, 65.4, 42.8, 12.2, 61.3 -4.173333333333334,4.17,a-vale-i2,2021-22,Bourne-Bourne Middle School,00360325, 93.9, 10.7, 42.3, 19.0, 2.2, 0.2 -4.097777777777778,4.1,a-vale-i2,2021-22,Bourne-Bournedale Elementary School,00360005, 92.2, 13.1, 55.5, 31.3, 4.2, 46.7 -4.12,4.12,a-vale-i2,2021-22,Bourne-Bourne Intermediate School,00360030, 92.7, 12.8, 62.4, 25.7, 0.5, 6.6 3.9155555555555552,3.92,a-vale-i2,2021-22,Bourne-Bourne High School,00360505, 88.1, 20.3, 63.5, 37.3, 14.2, 45.9 -4.182222222222222,4.18,a-vale-i2,2021-22,Boxford-Spofford Pond,00380013, 94.1, 10.0, 44.1, 12.4, 0.5, 9.4 +4.173333333333334,4.17,a-vale-i2,2021-22,Bourne-Bourne Middle School,00360325, 93.9, 10.7, 42.3, 19.0, 2.2, 0.2 +4.12,4.12,a-vale-i2,2021-22,Bourne-Bourne Intermediate School,00360030, 92.7, 12.8, 62.4, 25.7, 0.5, 6.6 +4.097777777777778,4.1,a-vale-i2,2021-22,Bourne-Bournedale Elementary School,00360005, 92.2, 13.1, 55.5, 31.3, 4.2, 46.7 4.191111111111111,4.19,a-vale-i2,2021-22,Boxford-Harry Lee Cole,00380005, 94.3, 9.6, 42.1, 11.9, 0.3, 42.1 -4.208888888888889,4.21,a-vale-i2,2021-22,Braintree-South Middle School,00400310, 94.7, 9.4, 35.1, 11.3, 2.7, 0.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Braintree-Archie T Morrison,00400033, 94.4, 9.9, 40.2, 15.8, 2.3, 0.0 -4.2,4.2,a-vale-i2,2021-22,Braintree-Liberty,00400025, 94.5, 9.6, 47.3, 12.6, 0.5, 0.0 -4.208888888888889,4.21,a-vale-i2,2021-22,Braintree-Mary E Flaherty School,00400020, 94.7, 9.2, 35.1, 12.9, 3.6, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Braintree-Highlands,00400015, 94.9, 9.1, 39.7, 8.4, 0.7, 0.0 -4.088888888888889,4.09,a-vale-i2,2021-22,Braintree-Monatiquot Kindergarten Center,00400009, 92.0, 13.9, 61.6, 31.2, 6.1, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Boxford-Spofford Pond,00380013, 94.1, 10.0, 44.1, 12.4, 0.5, 9.4 4.208888888888889,4.21,a-vale-i2,2021-22,Braintree-Hollis,00400005, 94.7, 9.3, 42.2, 13.1, 1.0, 0.0 -4.191111111111111,4.19,a-vale-i2,2021-22,Braintree-East Middle School,00400305, 94.3, 10.1, 41.9, 16.4, 3.2, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Braintree-Braintree High,00400505, 93.0, 12.3, 47.3, 21.7, 6.3, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Braintree-Highlands,00400015, 94.9, 9.1, 39.7, 8.4, 0.7, 0.0 +4.2,4.2,a-vale-i2,2021-22,Braintree-Liberty,00400025, 94.5, 9.6, 47.3, 12.6, 0.5, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Braintree-Archie T Morrison,00400033, 94.4, 9.9, 40.2, 15.8, 2.3, 0.0 4.168888888888889,4.17,a-vale-i2,2021-22,Braintree-Donald Ross,00400050, 93.8, 10.7, 46.6, 14.7, 3.9, 0.0 -4.12,4.12,a-vale-i2,2021-22,Brewster-Eddy Elementary,00410010, 92.7, 13.2, 61.6, 21.8, 1.9, 14.4 +4.191111111111111,4.19,a-vale-i2,2021-22,Braintree-East Middle School,00400305, 94.3, 10.1, 41.9, 16.4, 3.2, 0.0 +4.208888888888889,4.21,a-vale-i2,2021-22,Braintree-South Middle School,00400310, 94.7, 9.4, 35.1, 11.3, 2.7, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Braintree-Braintree High,00400505, 93.0, 12.3, 47.3, 21.7, 6.3, 0.0 +4.208888888888889,4.21,a-vale-i2,2021-22,Braintree-Mary E Flaherty School,00400020, 94.7, 9.2, 35.1, 12.9, 3.6, 0.0 +4.088888888888889,4.09,a-vale-i2,2021-22,Braintree-Monatiquot Kindergarten Center,00400009, 92.0, 13.9, 61.6, 31.2, 6.1, 0.0 4.093333333333333,4.09,a-vale-i2,2021-22,Brewster-Stony Brook Elementary,00410005, 92.1, 13.5, 60.7, 29.1, 3.4, 14.5 +4.12,4.12,a-vale-i2,2021-22,Brewster-Eddy Elementary,00410010, 92.7, 13.2, 61.6, 21.8, 1.9, 14.4 4.062222222222222,4.06,a-vale-i2,2021-22,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 91.4, 15.2, 65.7, 34.3, 5.6, 45.7 -4.106666666666667,4.11,a-vale-i2,2021-22,Bridgewater-Raynham-Merrill Elementary School,06250020, 92.4, 13.4, 67.0, 24.6, 3.3, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.0, 12.4, 57.1, 20.3, 1.9, 0.0 4.088888888888889,4.09,a-vale-i2,2021-22,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 92.0, 14.1, 54.1, 22.7, 6.3, 0.6 -4.168888888888889,4.17,a-vale-i2,2021-22,Bridgewater-Raynham-Laliberte Elementary School,06250050, 93.8, 10.9, 52.2, 16.7, 0.9, 0.0 -4.111111111111111,4.11,a-vale-i2,2021-22,Bridgewater-Raynham-Williams Intermediate School,06250300, 92.5, 13.1, 63.3, 26.2, 2.4, 0.0 -4.16,4.16,a-vale-i2,2021-22,Bridgewater-Raynham-Raynham Middle School,06250315, 93.6, 11.6, 53.4, 17.0, 1.5, 0.0 3.6711111111111108,3.67,a-vale-i2,2021-22,Bridgewater-Raynham-Therapeutic Day School,06250415, 82.6, 30.5, 46.2, 30.8, 23.1, 0.0 +4.111111111111111,4.11,a-vale-i2,2021-22,Bridgewater-Raynham-Williams Intermediate School,06250300, 92.5, 13.1, 63.3, 26.2, 2.4, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.0, 12.4, 57.1, 20.3, 1.9, 0.0 4.12,4.12,a-vale-i2,2021-22,Bridgewater-Raynham-Mitchell Elementary School,06250002, 92.7, 12.7, 58.7, 25.8, 2.9, 0.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Bridgewater-Raynham-Merrill Elementary School,06250020, 92.4, 13.4, 67.0, 24.6, 3.3, 0.0 +4.16,4.16,a-vale-i2,2021-22,Bridgewater-Raynham-Raynham Middle School,06250315, 93.6, 11.6, 53.4, 17.0, 1.5, 0.0 +4.168888888888889,4.17,a-vale-i2,2021-22,Bridgewater-Raynham-Laliberte Elementary School,06250050, 93.8, 10.9, 52.2, 16.7, 0.9, 0.0 4.177777777777778,4.18,a-vale-i2,2021-22,Brimfield-Brimfield Elementary,00430005, 94.0, 10.3, 46.0, 18.8, 1.7, 4.9 4.124444444444444,4.12,a-vale-i2,2021-22,Bristol County Agricultural-Bristol County Agricultural High,09100705, 92.8, 12.8, 51.7, 21.2, 5.2, 31.1 4.097777777777778,4.1,a-vale-i2,2021-22,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 92.2, 13.6, 61.0, 25.9, 4.6, 35.7 +4.124444444444444,4.12,a-vale-i2,2021-22,Brockton-Manthala George Jr. School,00440003, 92.8, 12.5, 56.2, 25.8, 2.3, 12.7 +4.04,4.04,a-vale-i2,2021-22,Brockton-Mary E. Baker School,00440002, 90.9, 15.2, 61.4, 35.1, 9.3, 36.7 +3.9733333333333336,3.97,a-vale-i2,2021-22,Brockton-Dr W Arnone Community School,00440001, 89.4, 18.2, 68.6, 43.4, 13.0, 37.7 +3.186666666666667,3.19,a-vale-i2,2021-22,Brockton-Edison Academy,00440520, 71.7, 23.5, 74.7, 80.4, 60.8, 3.0 +2.8844444444444446,2.88,a-vale-i2,2021-22,Brockton-Brockton Champion High School,00440515, 64.9, 49.4, 96.4, 89.3, 79.8, 56.0 +3.7688888888888887,3.77,a-vale-i2,2021-22,Brockton-Brockton High,00440505, 84.8, 25.2, 74.6, 54.6, 26.2, 64.8 +4.057777777777778,4.06,a-vale-i2,2021-22,Brockton-Joseph F. Plouffe Academy,00440422, 91.3, 15.2, 58.0, 31.1, 8.7, 25.6 +4.115555555555555,4.12,a-vale-i2,2021-22,Brockton-Ashfield Middle School,00440421, 92.6, 12.7, 53.4, 28.1, 5.1, 18.3 4.071111111111111,4.07,a-vale-i2,2021-22,Brockton-West Middle School,00440420, 91.6, 14.6, 57.4, 28.7, 8.8, 27.2 +4.062222222222222,4.06,a-vale-i2,2021-22,Brockton-South Middle School,00440415, 91.4, 14.7, 60.9, 31.3, 9.8, 28.2 +4.0488888888888885,4.05,a-vale-i2,2021-22,Brockton-North Middle School,00440410, 91.1, 15.2, 61.3, 32.3, 8.7, 30.3 +4.066666666666666,4.07,a-vale-i2,2021-22,Brockton-East Middle School,00440405, 91.5, 14.4, 54.9, 32.2, 8.3, 30.3 +3.5377777777777775,3.54,a-vale-i2,2021-22,Brockton-Huntington Therapeutic Day School,00440400, 79.6, 31.8, 85.5, 69.4, 45.2, 51.6 +3.8533333333333335,3.85,a-vale-i2,2021-22,Brockton-Downey,00440110, 86.7, 22.0, 79.8, 58.3, 19.5, 59.0 +3.28,3.28,a-vale-i2,2021-22,Brockton-Frederick Douglass Academy,00440080, 73.8, 28.3, 83.3, 83.3, 66.7, 50.0 +4.035555555555556,4.04,a-vale-i2,2021-22,Brockton-Oscar F Raymond,00440078, 90.8, 15.6, 61.1, 36.3, 9.5, 28.8 4.022222222222222,4.02,a-vale-i2,2021-22,Brockton-Louis F Angelo Elementary,00440065, 90.5, 15.9, 64.8, 38.3, 9.5, 35.5 4.062222222222222,4.06,a-vale-i2,2021-22,Brockton-Gilmore Elementary School,00440055, 91.4, 14.6, 60.0, 35.4, 6.8, 43.2 4.035555555555556,4.04,a-vale-i2,2021-22,Brockton-Hancock,00440045, 90.8, 15.7, 64.7, 34.3, 7.0, 31.7 4.026666666666666,4.03,a-vale-i2,2021-22,Brockton-Edgar B Davis,00440023, 90.6, 16.2, 63.8, 35.6, 11.4, 35.0 4.102222222222222,4.1,a-vale-i2,2021-22,Brockton-John F Kennedy,00440017, 92.3, 13.0, 52.9, 29.1, 6.3, 17.6 -4.053333333333334,4.05,a-vale-i2,2021-22,Brockton-Brookfield,00440010, 91.2, 14.7, 60.1, 33.5, 7.0, 46.4 3.6666666666666665,3.67,a-vale-i2,2021-22,Brockton-Barrett Russell Early Childhood Center,00440008, 82.5, 25.9, 84.5, 69.5, 32.6, 84.5 -4.124444444444444,4.12,a-vale-i2,2021-22,Brockton-Manthala George Jr. School,00440003, 92.8, 12.5, 56.2, 25.8, 2.3, 12.7 -4.04,4.04,a-vale-i2,2021-22,Brockton-Mary E. Baker School,00440002, 90.9, 15.2, 61.4, 35.1, 9.3, 36.7 -3.9733333333333336,3.97,a-vale-i2,2021-22,Brockton-Dr W Arnone Community School,00440001, 89.4, 18.2, 68.6, 43.4, 13.0, 37.7 +4.053333333333334,4.05,a-vale-i2,2021-22,Brockton-Brookfield,00440010, 91.2, 14.7, 60.1, 33.5, 7.0, 46.4 3.8400000000000003,3.84,a-vale-i2,2021-22,Brockton-Brockton Virtual Learning Academy,00440705, 86.4, 22.6, 59.9, 46.3, 24.7, 1.9 -3.186666666666667,3.19,a-vale-i2,2021-22,Brockton-Edison Academy,00440520, 71.7, 23.5, 74.7, 80.4, 60.8, 3.0 -2.8844444444444446,2.88,a-vale-i2,2021-22,Brockton-Brockton Champion High School,00440515, 64.9, 49.4, 96.4, 89.3, 79.8, 56.0 -3.7688888888888887,3.77,a-vale-i2,2021-22,Brockton-Brockton High,00440505, 84.8, 25.2, 74.6, 54.6, 26.2, 64.8 -3.28,3.28,a-vale-i2,2021-22,Brockton-Frederick Douglass Academy,00440080, 73.8, 28.3, 83.3, 83.3, 66.7, 50.0 -3.8533333333333335,3.85,a-vale-i2,2021-22,Brockton-Downey,00440110, 86.7, 22.0, 79.8, 58.3, 19.5, 59.0 -3.5377777777777775,3.54,a-vale-i2,2021-22,Brockton-Huntington Therapeutic Day School,00440400, 79.6, 31.8, 85.5, 69.4, 45.2, 51.6 -4.066666666666666,4.07,a-vale-i2,2021-22,Brockton-East Middle School,00440405, 91.5, 14.4, 54.9, 32.2, 8.3, 30.3 -4.0488888888888885,4.05,a-vale-i2,2021-22,Brockton-North Middle School,00440410, 91.1, 15.2, 61.3, 32.3, 8.7, 30.3 -4.062222222222222,4.06,a-vale-i2,2021-22,Brockton-South Middle School,00440415, 91.4, 14.7, 60.9, 31.3, 9.8, 28.2 -4.035555555555556,4.04,a-vale-i2,2021-22,Brockton-Oscar F Raymond,00440078, 90.8, 15.6, 61.1, 36.3, 9.5, 28.8 -4.115555555555555,4.12,a-vale-i2,2021-22,Brockton-Ashfield Middle School,00440421, 92.6, 12.7, 53.4, 28.1, 5.1, 18.3 -4.057777777777778,4.06,a-vale-i2,2021-22,Brockton-Joseph F. Plouffe Academy,00440422, 91.3, 15.2, 58.0, 31.1, 8.7, 25.6 4.093333333333333,4.09,a-vale-i2,2021-22,Brooke Charter School (District)-Brooke Charter School,04280305, 92.1, 14.3, 58.2, 27.4, 5.4, 35.6 4.106666666666667,4.11,a-vale-i2,2021-22,Brookfield-Brookfield Elementary,00450005, 92.4, 12.9, 58.2, 28.2, 4.1, 20.4 -4.1866666666666665,4.19,a-vale-i2,2021-22,Brookline-Michael Driscoll,00460020, 94.2, 9.9, 43.3, 13.8, 1.6, 29.5 -4.16,4.16,a-vale-i2,2021-22,Brookline-Brookline Early Education Program at Beacon,00460001, 93.6, 10.8, 45.6, 22.8, 7.0, 38.6 -4.208888888888889,4.21,a-vale-i2,2021-22,Brookline-Lawrence,00460030, 94.7, 9.0, 36.7, 11.7, 1.3, 9.4 -4.1866666666666665,4.19,a-vale-i2,2021-22,Brookline-William H Lincoln,00460035, 94.2, 10.0, 38.9, 15.3, 2.7, 13.7 -4.208888888888889,4.21,a-vale-i2,2021-22,Brookline-Pierce,00460040, 94.7, 9.3, 36.5, 11.9, 1.9, 9.6 -4.155555555555556,4.16,a-vale-i2,2021-22,Brookline-John D Runkle,00460045, 93.5, 11.4, 44.4, 17.8, 4.2, 14.1 4.151111111111112,4.15,a-vale-i2,2021-22,Brookline-Brookline Early Education Program at Putterham,00460002, 93.4, 10.7, 54.1, 23.0, 0.0, 54.1 4.017777777777778,4.02,a-vale-i2,2021-22,Brookline-Brookline Early Education Program at Clark Road,00460003, 90.4, 15.9, 65.4, 38.3, 9.9, 65.4 4.1866666666666665,4.19,a-vale-i2,2021-22,Brookline-Edith C Baker,00460005, 94.2, 9.9, 39.1, 15.2, 3.6, 21.0 4.142222222222222,4.14,a-vale-i2,2021-22,Brookline-Florida Ruffin Ridley School,00460015, 93.2, 11.8, 50.1, 20.1, 3.2, 32.0 4.173333333333334,4.17,a-vale-i2,2021-22,Brookline-Heath,00460025, 93.9, 10.8, 42.3, 15.4, 1.5, 21.2 -3.8400000000000003,3.84,a-vale-i2,2021-22,Brookline-The Lynch Center,00460060, 86.4, 24.3, 61.9, 41.3, 19.0, 61.9 +4.208888888888889,4.21,a-vale-i2,2021-22,Brookline-Lawrence,00460030, 94.7, 9.0, 36.7, 11.7, 1.3, 9.4 +4.1866666666666665,4.19,a-vale-i2,2021-22,Brookline-William H Lincoln,00460035, 94.2, 10.0, 38.9, 15.3, 2.7, 13.7 +4.208888888888889,4.21,a-vale-i2,2021-22,Brookline-Pierce,00460040, 94.7, 9.3, 36.5, 11.9, 1.9, 9.6 +4.155555555555556,4.16,a-vale-i2,2021-22,Brookline-John D Runkle,00460045, 93.5, 11.4, 44.4, 17.8, 4.2, 14.1 4.191111111111111,4.19,a-vale-i2,2021-22,Brookline-Brookline High,00460505, 94.3, 9.8, 34.6, 11.8, 3.6, 3.2 +4.16,4.16,a-vale-i2,2021-22,Brookline-Brookline Early Education Program at Beacon,00460001, 93.6, 10.8, 45.6, 22.8, 7.0, 38.6 +3.8400000000000003,3.84,a-vale-i2,2021-22,Brookline-The Lynch Center,00460060, 86.4, 24.3, 61.9, 41.3, 19.0, 61.9 +4.1866666666666665,4.19,a-vale-i2,2021-22,Brookline-Michael Driscoll,00460020, 94.2, 9.9, 43.3, 13.8, 1.6, 29.5 4.168888888888889,4.17,a-vale-i2,2021-22,Burlington-Fox Hill,00480007, 93.8, 10.7, 47.1, 16.4, 1.2, 7.1 4.1466666666666665,4.15,a-vale-i2,2021-22,Burlington-Memorial,00480015, 93.3, 11.4, 49.8, 19.0, 2.8, 17.5 4.1466666666666665,4.15,a-vale-i2,2021-22,Burlington-Burlington High,00480505, 93.3, 11.4, 44.5, 20.7, 5.7, 16.2 4.115555555555555,4.12,a-vale-i2,2021-22,Burlington-Francis Wyman Elementary,00480035, 92.6, 12.8, 55.3, 24.8, 3.8, 9.6 4.155555555555556,4.16,a-vale-i2,2021-22,Burlington-Marshall Simonds Middle,00480303, 93.5, 11.5, 46.4, 18.9, 3.4, 9.2 4.168888888888889,4.17,a-vale-i2,2021-22,Burlington-Pine Glen Elementary,00480020, 93.8, 10.7, 43.5, 17.3, 2.1, 7.8 -4.155555555555556,4.16,a-vale-i2,2021-22,Cambridge-Maria L. Baldwin,00490005, 93.5, 11.3, 48.3, 20.9, 3.1, 2.8 +4.12,4.12,a-vale-i2,2021-22,Cambridge-Peabody,00490050, 92.7, 12.7, 52.6, 24.8, 5.5, 15.9 +4.022222222222222,4.02,a-vale-i2,2021-22,Cambridge-John M Tobin,00490065, 90.5, 16.5, 65.3, 33.4, 8.2, 5.2 +4.182222222222222,4.18,a-vale-i2,2021-22,Cambridge-Graham and Parks,00490080, 94.1, 9.8, 41.2, 14.8, 3.2, 6.3 +4.088888888888889,4.09,a-vale-i2,2021-22,Cambridge-Fletcher/Maynard Academy,00490090, 92.0, 13.7, 60.6, 27.8, 6.6, 9.7 +4.066666666666666,4.07,a-vale-i2,2021-22,Cambridge-Cambridge Street Upper School,00490305, 91.5, 15.2, 53.0, 29.7, 8.2, 17.6 +4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Putnam Avenue Upper School,00490310, 92.3, 13.6, 56.3, 27.2, 6.1, 14.6 4.12,4.12,a-vale-i2,2021-22,Cambridge-Rindge Avenue Upper School,00490315, 92.7, 12.5, 43.1, 22.3, 8.4, 12.0 +4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Vassal Lane Upper School,00490320, 92.3, 13.5, 51.7, 25.2, 6.5, 21.8 +3.991111111111111,3.99,a-vale-i2,2021-22,Cambridge-Cambridge Rindge and Latin,00490506, 89.8, 17.4, 59.3, 34.6, 12.9, 16.7 +4.155555555555556,4.16,a-vale-i2,2021-22,Cambridge-Maria L. Baldwin,00490005, 93.5, 11.3, 48.3, 20.9, 3.1, 2.8 +4.137777777777777,4.14,a-vale-i2,2021-22,Cambridge-Amigos School,00490006, 93.1, 12.2, 50.7, 24.5, 2.2, 5.9 4.164444444444444,4.16,a-vale-i2,2021-22,Cambridge-Cambridgeport,00490007, 93.7, 10.8, 45.0, 19.3, 3.7, 10.8 4.16,4.16,a-vale-i2,2021-22,Cambridge-Haggerty,00490020, 93.6, 10.9, 42.8, 21.0, 4.1, 6.2 -4.137777777777777,4.14,a-vale-i2,2021-22,Cambridge-Amigos School,00490006, 93.1, 12.2, 50.7, 24.5, 2.2, 5.9 -4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Putnam Avenue Upper School,00490310, 92.3, 13.6, 56.3, 27.2, 6.1, 14.6 -4.066666666666666,4.07,a-vale-i2,2021-22,Cambridge-Cambridge Street Upper School,00490305, 91.5, 15.2, 53.0, 29.7, 8.2, 17.6 -4.088888888888889,4.09,a-vale-i2,2021-22,Cambridge-Fletcher/Maynard Academy,00490090, 92.0, 13.7, 60.6, 27.8, 6.6, 9.7 -4.182222222222222,4.18,a-vale-i2,2021-22,Cambridge-Graham and Parks,00490080, 94.1, 9.8, 41.2, 14.8, 3.2, 6.3 -4.022222222222222,4.02,a-vale-i2,2021-22,Cambridge-John M Tobin,00490065, 90.5, 16.5, 65.3, 33.4, 8.2, 5.2 -4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Morse,00490045, 92.3, 13.0, 57.2, 24.5, 5.9, 7.2 -4.035555555555556,4.04,a-vale-i2,2021-22,Cambridge-Kennedy-Longfellow,00490040, 90.8, 14.1, 53.8, 35.7, 6.4, 23.3 -4.093333333333333,4.09,a-vale-i2,2021-22,Cambridge-King Open,00490035, 92.1, 13.7, 58.7, 29.2, 7.4, 14.6 4.164444444444444,4.16,a-vale-i2,2021-22,Cambridge-Martin Luther King Jr.,00490030, 93.7, 11.1, 40.9, 17.3, 3.7, 9.3 -4.12,4.12,a-vale-i2,2021-22,Cambridge-Peabody,00490050, 92.7, 12.7, 52.6, 24.8, 5.5, 15.9 -3.991111111111111,3.99,a-vale-i2,2021-22,Cambridge-Cambridge Rindge and Latin,00490506, 89.8, 17.4, 59.3, 34.6, 12.9, 16.7 -4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Vassal Lane Upper School,00490320, 92.3, 13.5, 51.7, 25.2, 6.5, 21.8 -4.213333333333333,4.21,a-vale-i2,2021-22,Canton-John F Kennedy,00500017, 94.8, 9.3, 39.9, 11.2, 1.1, 0.0 -4.164444444444444,4.16,a-vale-i2,2021-22,Canton-Wm H Galvin Middle,00500305, 93.7, 11.2, 45.1, 17.3, 3.9, 6.7 -4.1288888888888895,4.13,a-vale-i2,2021-22,Canton-Canton High,00500505, 92.9, 12.4, 44.6, 21.4, 5.2, 8.4 +4.093333333333333,4.09,a-vale-i2,2021-22,Cambridge-King Open,00490035, 92.1, 13.7, 58.7, 29.2, 7.4, 14.6 +4.035555555555556,4.04,a-vale-i2,2021-22,Cambridge-Kennedy-Longfellow,00490040, 90.8, 14.1, 53.8, 35.7, 6.4, 23.3 +4.102222222222222,4.1,a-vale-i2,2021-22,Cambridge-Morse,00490045, 92.3, 13.0, 57.2, 24.5, 5.9, 7.2 3.911111111111111,3.91,a-vale-i2,2021-22,Canton-Rodman Early Childhood Center,00500010, 88.0, 14.5, 60.6, 52.5, 12.1, 0.0 4.16,4.16,a-vale-i2,2021-22,Canton-Lt Peter M Hansen,00500012, 93.6, 11.1, 48.3, 18.0, 2.7, 48.1 +4.213333333333333,4.21,a-vale-i2,2021-22,Canton-John F Kennedy,00500017, 94.8, 9.3, 39.9, 11.2, 1.1, 0.0 4.226666666666667,4.23,a-vale-i2,2021-22,Canton-Dean S Luce,00500020, 95.1, 8.6, 33.1, 10.1, 1.7, 0.0 +4.164444444444444,4.16,a-vale-i2,2021-22,Canton-Wm H Galvin Middle,00500305, 93.7, 11.2, 45.1, 17.3, 3.9, 6.7 +4.1288888888888895,4.13,a-vale-i2,2021-22,Canton-Canton High,00500505, 92.9, 12.4, 44.6, 21.4, 5.2, 8.4 4.106666666666667,4.11,a-vale-i2,2021-22,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 92.4, 13.5, 64.0, 23.7, 2.8, 0.0 4.053333333333334,4.05,a-vale-i2,2021-22,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 91.2, 15.0, 59.5, 28.6, 8.0, 10.7 4.217777777777778,4.22,a-vale-i2,2021-22,Carlisle-Carlisle School,00510025, 94.9, 9.1, 38.5, 10.1, 1.1, 0.5 -4.0488888888888885,4.05,a-vale-i2,2021-22,Carver-Carver Middle/High School,00520405, 91.1, 15.6, 61.8, 28.7, 7.8, 37.5 4.102222222222222,4.1,a-vale-i2,2021-22,Carver-Carver Elementary School,00520015, 92.3, 13.5, 61.9, 27.1, 2.7, 37.8 -4.151111111111112,4.15,a-vale-i2,2021-22,Central Berkshire-Kittredge,06350035, 93.4, 11.4, 49.1, 20.0, 1.8, 0.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Central Berkshire-Nessacus Regional Middle School,06350305, 92.3, 13.3, 53.9, 23.5, 6.8, 0.0 +4.0488888888888885,4.05,a-vale-i2,2021-22,Carver-Carver Middle/High School,00520405, 91.1, 15.6, 61.8, 28.7, 7.8, 37.5 4.088888888888889,4.09,a-vale-i2,2021-22,Central Berkshire-Becket Washington School,06350005, 92.0, 13.6, 63.2, 27.2, 4.4, 0.0 4.137777777777777,4.14,a-vale-i2,2021-22,Central Berkshire-Craneville,06350025, 93.1, 12.1, 56.5, 20.7, 2.3, 0.0 4.026666666666666,4.03,a-vale-i2,2021-22,Central Berkshire-Wahconah Regional High,06350505, 90.6, 16.5, 59.3, 32.0, 10.2, 0.6 +4.102222222222222,4.1,a-vale-i2,2021-22,Central Berkshire-Nessacus Regional Middle School,06350305, 92.3, 13.3, 53.9, 23.5, 6.8, 0.0 +4.151111111111112,4.15,a-vale-i2,2021-22,Central Berkshire-Kittredge,06350035, 93.4, 11.4, 49.1, 20.0, 1.8, 0.0 +4.08,4.08,a-vale-i2,2021-22,Chelmsford-Community Education Center,00560001, 91.8, 12.0, 45.2, 23.1, 6.5, 41.4 +4.2,4.2,a-vale-i2,2021-22,Chelmsford-Center Elementary School,00560005, 94.5, 9.8, 44.0, 10.3, 0.4, 9.3 +4.208888888888889,4.21,a-vale-i2,2021-22,Chelmsford-South Row,00560015, 94.7, 9.5, 40.9, 10.1, 0.2, 3.5 4.164444444444444,4.16,a-vale-i2,2021-22,Chelmsford-Charles D Harrington,00560025, 93.7, 11.0, 50.5, 15.7, 2.3, 16.1 4.142222222222222,4.14,a-vale-i2,2021-22,Chelmsford-Byam School,00560030, 93.2, 11.9, 53.5, 19.2, 2.5, 31.7 4.168888888888889,4.17,a-vale-i2,2021-22,Chelmsford-Col Moses Parker School,00560305, 93.8, 11.0, 44.3, 17.3, 3.7, 9.6 4.1866666666666665,4.19,a-vale-i2,2021-22,Chelmsford-McCarthy Middle School,00560310, 94.2, 10.3, 43.1, 13.1, 2.4, 35.7 4.1288888888888895,4.13,a-vale-i2,2021-22,Chelmsford-Chelmsford High,00560505, 92.9, 12.4, 44.2, 19.3, 5.9, 11.5 -4.08,4.08,a-vale-i2,2021-22,Chelmsford-Community Education Center,00560001, 91.8, 12.0, 45.2, 23.1, 6.5, 41.4 -4.2,4.2,a-vale-i2,2021-22,Chelmsford-Center Elementary School,00560005, 94.5, 9.8, 44.0, 10.3, 0.4, 9.3 -4.208888888888889,4.21,a-vale-i2,2021-22,Chelmsford-South Row,00560015, 94.7, 9.5, 40.9, 10.1, 0.2, 3.5 -4.16,4.16,a-vale-i2,2021-22,Chelsea-George F. Kelly Elementary,00570035, 93.6, 11.3, 50.1, 18.7, 2.0, 49.7 -4.08,4.08,a-vale-i2,2021-22,Chelsea-William A Berkowitz Elementary,00570025, 91.8, 14.0, 56.4, 30.0, 5.7, 56.4 3.982222222222222,3.98,a-vale-i2,2021-22,Chelsea-Shurtleff Early Childhood,00570003, 89.6, 16.1, 69.4, 45.6, 10.9, 69.4 +3.804444444444444,3.8,a-vale-i2,2021-22,Chelsea-Chelsea High,00570505, 85.6, 23.6, 62.5, 45.2, 25.6, 46.4 3.7111111111111112,3.71,a-vale-i2,2021-22,Chelsea-Chelsea Virtual Learning Academy,00570705, 83.5, 25.5, 60.0, 53.3, 40.0, 20.0 1.3244444444444445,1.32,a-vale-i2,2021-22,Chelsea-Chelsea Opportunity Academy,00570515, 29.8, 93.9, 99.3, 100.0, 99.3, 99.3 -4.071111111111111,4.07,a-vale-i2,2021-22,Chelsea-Edgar A Hooks Elementary,00570030, 91.6, 14.3, 60.7, 31.8, 4.7, 60.5 4.08,4.08,a-vale-i2,2021-22,Chelsea-Joseph A. Browne School,00570055, 91.8, 13.6, 54.7, 30.7, 7.5, 54.7 4.0488888888888885,4.05,a-vale-i2,2021-22,Chelsea-Clark Avenue School,00570050, 91.1, 15.4, 59.7, 32.6, 8.6, 59.7 4.026666666666666,4.03,a-vale-i2,2021-22,Chelsea-Eugene Wright Science and Technology Academy,00570045, 90.6, 16.1, 59.0, 35.7, 12.0, 56.3 4.053333333333334,4.05,a-vale-i2,2021-22,Chelsea-Frank M Sokolowski Elementary,00570040, 91.2, 14.9, 66.7, 35.3, 6.4, 66.7 -3.804444444444444,3.8,a-vale-i2,2021-22,Chelsea-Chelsea High,00570505, 85.6, 23.6, 62.5, 45.2, 25.6, 46.4 +4.16,4.16,a-vale-i2,2021-22,Chelsea-George F. Kelly Elementary,00570035, 93.6, 11.3, 50.1, 18.7, 2.0, 49.7 +4.071111111111111,4.07,a-vale-i2,2021-22,Chelsea-Edgar A Hooks Elementary,00570030, 91.6, 14.3, 60.7, 31.8, 4.7, 60.5 +4.08,4.08,a-vale-i2,2021-22,Chelsea-William A Berkowitz Elementary,00570025, 91.8, 14.0, 56.4, 30.0, 5.7, 56.4 4.097777777777778,4.1,a-vale-i2,2021-22,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 92.2, 13.6, 64.1, 29.4, 3.3, 1.3 -4.08,4.08,a-vale-i2,2021-22,Chicopee-Chicopee Comprehensive High School,00610510, 91.8, 14.2, 55.2, 27.5, 8.9, 34.2 -4.084444444444444,4.08,a-vale-i2,2021-22,Chicopee-Bowie,00610020, 91.9, 14.1, 62.3, 29.9, 2.8, 40.9 -3.9155555555555552,3.92,a-vale-i2,2021-22,Chicopee-Bowe,00610015, 88.1, 19.6, 77.2, 53.7, 12.7, 65.6 -3.9288888888888893,3.93,a-vale-i2,2021-22,Chicopee-Belcher,00610010, 88.4, 19.5, 72.1, 51.3, 16.7, 57.1 4.053333333333334,4.05,a-vale-i2,2021-22,Chicopee-Barry,00610003, 91.2, 15.1, 63.2, 35.5, 7.8, 48.6 +3.9288888888888893,3.93,a-vale-i2,2021-22,Chicopee-Belcher,00610010, 88.4, 19.5, 72.1, 51.3, 16.7, 57.1 +3.9155555555555552,3.92,a-vale-i2,2021-22,Chicopee-Bowe,00610015, 88.1, 19.6, 77.2, 53.7, 12.7, 65.6 +4.084444444444444,4.08,a-vale-i2,2021-22,Chicopee-Bowie,00610020, 91.9, 14.1, 62.3, 29.9, 2.8, 40.9 +3.0577777777777775,3.06,a-vale-i2,2021-22,Chicopee-Chicopee Academy,00610021, 68.8, 47.0, 94.0, 90.5, 77.4, 86.9 +3.8577777777777778,3.86,a-vale-i2,2021-22,Chicopee-Chicopee High,00610505, 86.8, 21.9, 73.7, 52.8, 21.8, 64.0 +4.08,4.08,a-vale-i2,2021-22,Chicopee-Chicopee Comprehensive High School,00610510, 91.8, 14.2, 55.2, 27.5, 8.9, 34.2 3.804444444444444,3.8,a-vale-i2,2021-22,Chicopee-Szetela Early Childhood Center,00610001, 85.6, 21.3, 76.8, 64.1, 26.1, 75.7 +3.9155555555555552,3.92,a-vale-i2,2021-22,Chicopee-Dupont Middle,00610310, 88.1, 20.0, 72.9, 48.5, 15.7, 63.3 +4.022222222222222,4.02,a-vale-i2,2021-22,Chicopee-Bellamy Middle,00610305, 90.5, 16.1, 64.2, 36.6, 8.9, 49.5 +4.022222222222222,4.02,a-vale-i2,2021-22,Chicopee-Gen John J Stefanik,00610090, 90.5, 16.4, 70.5, 38.9, 8.8, 49.7 4.093333333333333,4.09,a-vale-i2,2021-22,Chicopee-Streiber Memorial School,00610065, 92.1, 13.8, 59.7, 29.6, 4.7, 33.0 3.977777777777778,3.98,a-vale-i2,2021-22,Chicopee-Fairview Elementary,00610050, 89.5, 17.6, 71.7, 43.5, 8.5, 60.4 4.093333333333333,4.09,a-vale-i2,2021-22,Chicopee-Lambert-Lavoie,00610040, 92.1, 13.8, 57.0, 27.7, 4.7, 32.0 4.075555555555556,4.08,a-vale-i2,2021-22,Chicopee-Litwin,00610022, 91.7, 14.4, 64.9, 33.0, 5.2, 59.7 -3.0577777777777775,3.06,a-vale-i2,2021-22,Chicopee-Chicopee Academy,00610021, 68.8, 47.0, 94.0, 90.5, 77.4, 86.9 -3.8577777777777778,3.86,a-vale-i2,2021-22,Chicopee-Chicopee High,00610505, 86.8, 21.9, 73.7, 52.8, 21.8, 64.0 -3.9155555555555552,3.92,a-vale-i2,2021-22,Chicopee-Dupont Middle,00610310, 88.1, 20.0, 72.9, 48.5, 15.7, 63.3 -4.022222222222222,4.02,a-vale-i2,2021-22,Chicopee-Bellamy Middle,00610305, 90.5, 16.1, 64.2, 36.6, 8.9, 49.5 -4.022222222222222,4.02,a-vale-i2,2021-22,Chicopee-Gen John J Stefanik,00610090, 90.5, 16.4, 70.5, 38.9, 8.8, 49.7 4.231111111111111,4.23,a-vale-i2,2021-22,Christa McAuliffe Charter Public (District)-Christa McAuliffe Charter Public School,04180305, 95.2, 8.3, 29.2, 10.2, 2.8, 10.4 3.6533333333333333,3.65,a-vale-i2,2021-22,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 82.2, 29.9, 79.1, 63.0, 28.1, 0.9 4.142222222222222,4.14,a-vale-i2,2021-22,Clarksburg-Clarksburg Elementary,00630010, 93.2, 12.1, 57.3, 21.8, 2.4, 3.3 @@ -9634,8 +9634,8 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.008888888888889,4.01,a-vale-i2,2021-22,Clinton-Clinton Senior High,00640505, 90.2, 16.6, 58.7, 36.1, 12.3, 0.0 4.102222222222222,4.1,a-vale-i2,2021-22,Clinton-Clinton Elementary,00640050, 92.3, 13.1, 59.8, 26.4, 3.2, 0.0 4.026666666666666,4.03,a-vale-i2,2021-22,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 90.6, 16.0, 64.4, 37.0, 10.4, 40.9 -4.222222222222222,4.22,a-vale-i2,2021-22,Cohasset-Cohasset Middle School,00650305, 95.0, 8.9, 35.5, 7.9, 1.9, 21.4 4.177777777777778,4.18,a-vale-i2,2021-22,Cohasset-Cohasset High School,00650505, 94.0, 10.5, 43.9, 14.7, 2.6, 18.9 +4.222222222222222,4.22,a-vale-i2,2021-22,Cohasset-Cohasset Middle School,00650305, 95.0, 8.9, 35.5, 7.9, 1.9, 21.4 4.177777777777778,4.18,a-vale-i2,2021-22,Cohasset-Joseph Osgood,00650010, 94.0, 10.7, 55.5, 11.3, 0.3, 53.9 4.208888888888889,4.21,a-vale-i2,2021-22,Cohasset-Deer Hill,00650005, 94.7, 9.5, 43.5, 8.8, 0.6, 11.4 4.155555555555556,4.16,a-vale-i2,2021-22,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 93.5, 11.2, 46.7, 21.4, 4.3, 20.7 @@ -9644,148 +9644,149 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.164444444444444,4.16,a-vale-i2,2021-22,Community Day Charter Public School - Prospect (District)-Community Day Charter Public School - Prospect,04400205, 93.7, 11.5, 52.1, 17.0, 1.7, 4.2 4.115555555555555,4.12,a-vale-i2,2021-22,Community Day Charter Public School - R. Kingman Webster (District)-Community Day Charter Public School - R. Kingman Webster,04310205, 92.6, 13.4, 61.1, 23.5, 4.2, 6.4 4.191111111111111,4.19,a-vale-i2,2021-22,Concord-Alcott,00670005, 94.3, 9.9, 42.7, 15.5, 0.7, 9.4 +4.191111111111111,4.19,a-vale-i2,2021-22,Concord-Concord Middle,00670305, 94.3, 10.1, 41.8, 12.4, 1.7, 2.4 4.213333333333333,4.21,a-vale-i2,2021-22,Concord-Willard,00670030, 94.8, 9.1, 39.5, 10.4, 0.7, 5.1 4.208888888888889,4.21,a-vale-i2,2021-22,Concord-Thoreau,00670020, 94.7, 9.3, 42.3, 10.9, 0.7, 5.2 -4.191111111111111,4.19,a-vale-i2,2021-22,Concord-Concord Middle,00670305, 94.3, 10.1, 41.8, 12.4, 1.7, 2.4 4.168888888888889,4.17,a-vale-i2,2021-22,Concord-Carlisle-Concord Carlisle High,06400505, 93.8, 11.0, 41.5, 15.7, 4.0, 1.7 4.004444444444444,4.0,a-vale-i2,2021-22,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 90.1, 16.7, 68.9, 36.1, 8.7, 39.1 4.195555555555556,4.2,a-vale-i2,2021-22,Conway-Conway Grammar,00680005, 94.4, 10.1, 46.3, 9.5, 2.0, 45.6 -4.1288888888888895,4.13,a-vale-i2,2021-22,Danvers-Highlands,00710010, 92.9, 12.0, 55.8, 23.9, 1.8, 0.0 4.124444444444444,4.12,a-vale-i2,2021-22,Danvers-Willis E Thorpe,00710045, 92.8, 12.1, 56.7, 22.6, 3.4, 0.0 -4.137777777777777,4.14,a-vale-i2,2021-22,Danvers-Great Oak,00710015, 93.1, 11.9, 56.3, 19.0, 1.8, 0.0 -4.1288888888888895,4.13,a-vale-i2,2021-22,Danvers-Riverside,00710030, 92.9, 11.6, 53.7, 20.7, 4.6, 0.0 -4.142222222222222,4.14,a-vale-i2,2021-22,Danvers-Ivan G Smith,00710032, 93.2, 11.9, 61.7, 18.2, 0.6, 0.0 4.231111111111111,4.23,a-vale-i2,2021-22,Danvers-Holten Richmond Middle School,00710305, 95.2, 8.4, 25.9, 11.0, 4.1, 0.0 +4.1288888888888895,4.13,a-vale-i2,2021-22,Danvers-Riverside,00710030, 92.9, 11.6, 53.7, 20.7, 4.6, 0.0 +4.137777777777777,4.14,a-vale-i2,2021-22,Danvers-Great Oak,00710015, 93.1, 11.9, 56.3, 19.0, 1.8, 0.0 +4.1288888888888895,4.13,a-vale-i2,2021-22,Danvers-Highlands,00710010, 92.9, 12.0, 55.8, 23.9, 1.8, 0.0 +4.142222222222222,4.14,a-vale-i2,2021-22,Danvers-Ivan G Smith,00710032, 93.2, 11.9, 61.7, 18.2, 0.6, 0.0 4.017777777777778,4.02,a-vale-i2,2021-22,Danvers-Danvers High,00710505, 90.4, 16.5, 58.9, 33.0, 10.7, 13.8 +4.062222222222222,4.06,a-vale-i2,2021-22,Dartmouth-Dartmouth High,00720505, 91.4, 14.8, 54.4, 28.1, 9.0, 35.3 +4.044444444444444,4.04,a-vale-i2,2021-22,Dartmouth-Andrew B. Cushman School,00720005, 91.0, 15.4, 67.1, 36.2, 4.7, 32.9 +4.133333333333334,4.13,a-vale-i2,2021-22,Dartmouth-Joseph Demello,00720015, 93.0, 12.1, 59.3, 20.6, 1.8, 24.2 +4.16,4.16,a-vale-i2,2021-22,Dartmouth-George H Potter,00720030, 93.6, 11.2, 50.5, 16.1, 1.5, 22.4 4.093333333333333,4.09,a-vale-i2,2021-22,Dartmouth-James M. Quinn School,00720040, 92.1, 13.8, 66.6, 26.3, 3.4, 34.2 4.111111111111111,4.11,a-vale-i2,2021-22,Dartmouth-Dartmouth Middle,00720050, 92.5, 13.1, 55.8, 23.6, 3.5, 23.7 -4.16,4.16,a-vale-i2,2021-22,Dartmouth-George H Potter,00720030, 93.6, 11.2, 50.5, 16.1, 1.5, 22.4 -4.133333333333334,4.13,a-vale-i2,2021-22,Dartmouth-Joseph Demello,00720015, 93.0, 12.1, 59.3, 20.6, 1.8, 24.2 -4.044444444444444,4.04,a-vale-i2,2021-22,Dartmouth-Andrew B. Cushman School,00720005, 91.0, 15.4, 67.1, 36.2, 4.7, 32.9 -4.062222222222222,4.06,a-vale-i2,2021-22,Dartmouth-Dartmouth High,00720505, 91.4, 14.8, 54.4, 28.1, 9.0, 35.3 3.902222222222222,3.9,a-vale-i2,2021-22,Dedham-Dedham High,00730505, 87.8, 20.6, 86.8, 46.4, 12.7, 7.3 -4.133333333333334,4.13,a-vale-i2,2021-22,Dedham-Dedham Middle School,00730305, 93.0, 12.4, 45.8, 22.9, 6.2, 22.7 4.115555555555555,4.12,a-vale-i2,2021-22,Dedham-Early Childhood Center,00730005, 92.6, 12.9, 56.1, 24.7, 3.8, 33.4 4.111111111111111,4.11,a-vale-i2,2021-22,Dedham-Avery,00730010, 92.5, 13.1, 60.1, 25.8, 4.5, 38.1 4.213333333333333,4.21,a-vale-i2,2021-22,Dedham-Greenlodge,00730025, 94.8, 9.3, 43.9, 9.9, 0.0, 20.2 4.2,4.2,a-vale-i2,2021-22,Dedham-Oakdale,00730030, 94.5, 9.8, 42.6, 10.4, 2.0, 18.1 4.191111111111111,4.19,a-vale-i2,2021-22,Dedham-Riverdale,00730045, 94.3, 10.2, 41.9, 15.7, 0.6, 19.8 +4.133333333333334,4.13,a-vale-i2,2021-22,Dedham-Dedham Middle School,00730305, 93.0, 12.4, 45.8, 22.9, 6.2, 22.7 4.102222222222222,4.1,a-vale-i2,2021-22,Deerfield-Deerfield Elementary,00740015, 92.3, 13.7, 52.2, 15.2, 6.3, 4.5 3.92,3.92,a-vale-i2,2021-22,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 88.2, 19.9, 71.0, 44.4, 15.7, 49.3 4.066666666666666,4.07,a-vale-i2,2021-22,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.4, 61.1, 32.0, 6.4, 13.3 4.12,4.12,a-vale-i2,2021-22,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 92.7, 12.5, 60.2, 24.4, 3.4, 42.6 4.111111111111111,4.11,a-vale-i2,2021-22,Dennis-Yarmouth-Station Avenue Elementary,06450025, 92.5, 12.9, 61.3, 29.4, 1.5, 15.9 -4.093333333333333,4.09,a-vale-i2,2021-22,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.1, 12.8, 59.5, 25.3, 7.4, 20.5 3.968888888888889,3.97,a-vale-i2,2021-22,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 89.3, 17.3, 72.9, 48.4, 13.4, 53.9 -3.9955555555555557,4.0,a-vale-i2,2021-22,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 89.9, 17.5, 67.8, 38.2, 10.0, 50.6 -4.12,4.12,a-vale-i2,2021-22,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 92.7, 12.9, 58.4, 22.0, 2.4, 38.6 -4.124444444444444,4.12,a-vale-i2,2021-22,Dighton-Rehoboth-Dighton Middle School,06500305, 92.8, 12.7, 59.4, 23.4, 2.1, 41.9 -4.16,4.16,a-vale-i2,2021-22,Dighton-Rehoboth-Palmer River,06500010, 93.6, 11.3, 53.3, 17.5, 1.5, 51.1 +4.093333333333333,4.09,a-vale-i2,2021-22,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.1, 12.8, 59.5, 25.3, 7.4, 20.5 4.124444444444444,4.12,a-vale-i2,2021-22,Dighton-Rehoboth-Dighton Elementary,06500005, 92.8, 12.6, 59.7, 21.0, 2.4, 58.8 +4.16,4.16,a-vale-i2,2021-22,Dighton-Rehoboth-Palmer River,06500010, 93.6, 11.3, 53.3, 17.5, 1.5, 51.1 +4.124444444444444,4.12,a-vale-i2,2021-22,Dighton-Rehoboth-Dighton Middle School,06500305, 92.8, 12.7, 59.4, 23.4, 2.1, 41.9 +4.12,4.12,a-vale-i2,2021-22,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 92.7, 12.9, 58.4, 22.0, 2.4, 38.6 +3.9955555555555557,4.0,a-vale-i2,2021-22,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 89.9, 17.5, 67.8, 38.2, 10.0, 50.6 4.111111111111111,4.11,a-vale-i2,2021-22,Douglas-Douglas Middle School,00770305, 92.5, 12.9, 53.9, 23.2, 4.6, 8.6 4.084444444444444,4.08,a-vale-i2,2021-22,Douglas-Douglas High School,00770505, 91.9, 14.3, 57.8, 25.0, 6.1, 29.9 -4.062222222222222,4.06,a-vale-i2,2021-22,Douglas-Douglas Primary School,00770005, 91.4, 13.8, 66.2, 39.1, 4.3, 11.6 4.111111111111111,4.11,a-vale-i2,2021-22,Douglas-Douglas Elementary School,00770015, 92.5, 13.3, 61.7, 23.1, 3.1, 4.5 +4.062222222222222,4.06,a-vale-i2,2021-22,Douglas-Douglas Primary School,00770005, 91.4, 13.8, 66.2, 39.1, 4.3, 11.6 4.191111111111111,4.19,a-vale-i2,2021-22,Dover-Chickering,00780005, 94.3, 10.3, 48.3, 14.6, 1.2, 36.3 4.204444444444444,4.2,a-vale-i2,2021-22,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 94.6, 9.7, 39.8, 8.3, 1.0, 30.1 4.168888888888889,4.17,a-vale-i2,2021-22,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 93.8, 11.0, 47.0, 12.9, 2.0, 19.1 +4.102222222222222,4.1,a-vale-i2,2021-22,Dracut-Justus C. Richardson Middle School,00790410, 92.3, 13.5, 57.6, 23.6, 5.4, 35.5 +4.115555555555555,4.12,a-vale-i2,2021-22,Dracut-Joseph A Campbell Elementary,00790020, 92.6, 13.1, 61.0, 23.2, 4.2, 61.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Dracut-George H. Englesby Elementary School,00790045, 92.6, 13.0, 61.4, 26.1, 2.6, 61.4 +4.1288888888888895,4.13,a-vale-i2,2021-22,Dracut-Brookside Elementary,00790035, 92.9, 12.4, 57.8, 23.6, 1.4, 57.6 4.12,4.12,a-vale-i2,2021-22,Dracut-Greenmont Avenue,00790030, 92.7, 12.5, 54.2, 23.2, 4.8, 54.2 4.013333333333334,4.01,a-vale-i2,2021-22,Dracut-Dracut Senior High,00790505, 90.3, 16.5, 56.3, 32.2, 12.9, 43.8 -4.102222222222222,4.1,a-vale-i2,2021-22,Dracut-Justus C. Richardson Middle School,00790410, 92.3, 13.5, 57.6, 23.6, 5.4, 35.5 -4.1288888888888895,4.13,a-vale-i2,2021-22,Dracut-Brookside Elementary,00790035, 92.9, 12.4, 57.8, 23.6, 1.4, 57.6 -4.115555555555555,4.12,a-vale-i2,2021-22,Dracut-George H. Englesby Elementary School,00790045, 92.6, 13.0, 61.4, 26.1, 2.6, 61.4 -4.115555555555555,4.12,a-vale-i2,2021-22,Dracut-Joseph A Campbell Elementary,00790020, 92.6, 13.1, 61.0, 23.2, 4.2, 61.0 4.088888888888889,4.09,a-vale-i2,2021-22,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 92.0, 14.3, 58.3, 29.0, 5.2, 14.8 +4.1288888888888895,4.13,a-vale-i2,2021-22,Dudley-Charlton Reg-Dudley Elementary,06580005, 92.9, 12.4, 58.4, 24.6, 2.8, 34.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Dudley-Charlton Reg-Mason Road School,06580010, 92.6, 12.5, 57.5, 24.3, 3.6, 32.5 +4.111111111111111,4.11,a-vale-i2,2021-22,Dudley-Charlton Reg-Charlton Elementary,06580020, 92.5, 12.8, 61.7, 25.1, 2.9, 30.7 +4.1466666666666665,4.15,a-vale-i2,2021-22,Dudley-Charlton Reg-Heritage School,06580030, 93.3, 11.8, 57.3, 20.8, 1.6, 10.5 4.062222222222222,4.06,a-vale-i2,2021-22,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.4, 14.8, 58.3, 27.3, 8.1, 32.1 4.12,4.12,a-vale-i2,2021-22,Dudley-Charlton Reg-Charlton Middle School,06580310, 92.7, 13.0, 59.5, 23.7, 3.8, 29.7 4.106666666666667,4.11,a-vale-i2,2021-22,Dudley-Charlton Reg-Dudley Middle School,06580305, 92.4, 13.4, 57.7, 26.1, 4.9, 28.0 -4.1466666666666665,4.15,a-vale-i2,2021-22,Dudley-Charlton Reg-Heritage School,06580030, 93.3, 11.8, 57.3, 20.8, 1.6, 10.5 -4.111111111111111,4.11,a-vale-i2,2021-22,Dudley-Charlton Reg-Charlton Elementary,06580020, 92.5, 12.8, 61.7, 25.1, 2.9, 30.7 -4.1288888888888895,4.13,a-vale-i2,2021-22,Dudley-Charlton Reg-Dudley Elementary,06580005, 92.9, 12.4, 58.4, 24.6, 2.8, 34.0 -4.115555555555555,4.12,a-vale-i2,2021-22,Dudley-Charlton Reg-Mason Road School,06580010, 92.6, 12.5, 57.5, 24.3, 3.6, 32.5 4.191111111111111,4.19,a-vale-i2,2021-22,Duxbury-Alden School,00820004, 94.3, 10.1, 43.1, 9.7, 0.7, 11.2 4.168888888888889,4.17,a-vale-i2,2021-22,Duxbury-Chandler Elementary,00820006, 93.8, 10.7, 48.4, 15.1, 1.4, 23.0 4.204444444444444,4.2,a-vale-i2,2021-22,Duxbury-Duxbury Middle,00820305, 94.6, 9.7, 40.6, 12.0, 0.9, 20.4 4.204444444444444,4.2,a-vale-i2,2021-22,Duxbury-Duxbury High,00820505, 94.6, 9.5, 34.8, 10.0, 2.5, 9.7 -4.062222222222222,4.06,a-vale-i2,2021-22,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 91.4, 15.0, 58.2, 29.7, 8.1, 50.2 4.137777777777777,4.14,a-vale-i2,2021-22,East Bridgewater-Central,00830005, 93.1, 12.1, 56.9, 22.0, 0.5, 22.9 +4.062222222222222,4.06,a-vale-i2,2021-22,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 91.4, 15.0, 58.2, 29.7, 8.1, 50.2 4.137777777777777,4.14,a-vale-i2,2021-22,East Bridgewater-Gordon W. Mitchell School,00830010, 93.1, 11.9, 53.8, 22.6, 1.9, 44.7 -4.182222222222222,4.18,a-vale-i2,2021-22,East Longmeadow-Birchland Park,00870305, 94.1, 10.5, 42.9, 14.4, 2.3, 0.0 -4.1466666666666665,4.15,a-vale-i2,2021-22,East Longmeadow-Mountain View,00870015, 93.3, 12.0, 58.8, 22.5, 0.7, 0.0 4.137777777777777,4.14,a-vale-i2,2021-22,East Longmeadow-East Longmeadow High,00870505, 93.1, 12.4, 47.6, 21.1, 5.5, 0.0 +4.1466666666666665,4.15,a-vale-i2,2021-22,East Longmeadow-Mountain View,00870015, 93.3, 12.0, 58.8, 22.5, 0.7, 0.0 4.102222222222222,4.1,a-vale-i2,2021-22,East Longmeadow-Meadow Brook,00870013, 92.3, 13.5, 65.0, 27.4, 2.1, 0.0 4.164444444444444,4.16,a-vale-i2,2021-22,East Longmeadow-Mapleshade,00870010, 93.7, 11.1, 49.5, 17.9, 1.1, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,East Longmeadow-Birchland Park,00870305, 94.1, 10.5, 42.9, 14.4, 2.3, 0.0 4.062222222222222,4.06,a-vale-i2,2021-22,Eastham-Eastham Elementary,00850005, 91.4, 14.9, 69.8, 27.6, 5.5, 21.1 4.133333333333334,4.13,a-vale-i2,2021-22,Easthampton-Center School,00860005, 93.0, 12.4, 58.2, 25.9, 1.1, 15.3 4.097777777777778,4.1,a-vale-i2,2021-22,Easthampton-Maple,00860010, 92.2, 13.3, 60.6, 28.5, 5.7, 5.7 4.097777777777778,4.1,a-vale-i2,2021-22,Easthampton-Neil A Pepin,00860020, 92.2, 13.7, 61.3, 31.5, 2.8, 24.3 -4.075555555555556,4.08,a-vale-i2,2021-22,Easthampton-White Brook Middle School,00860305, 91.7, 14.6, 61.5, 29.8, 6.0, 4.8 4.1288888888888895,4.13,a-vale-i2,2021-22,Easthampton-Easthampton High,00860505, 92.9, 12.4, 51.0, 20.9, 6.4, 6.7 +4.075555555555556,4.08,a-vale-i2,2021-22,Easthampton-White Brook Middle School,00860305, 91.7, 14.6, 61.5, 29.8, 6.0, 4.8 4.1466666666666665,4.15,a-vale-i2,2021-22,Easton-Oliver Ames High,00880505, 93.3, 11.8, 46.5, 19.5, 3.8, 8.6 -4.155555555555556,4.16,a-vale-i2,2021-22,Easton-Center School,00880003, 93.5, 11.2, 50.7, 15.7, 4.0, 3.6 -4.155555555555556,4.16,a-vale-i2,2021-22,Easton-Moreau Hall,00880020, 93.5, 11.1, 48.7, 17.5, 2.2, 4.8 -4.1866666666666665,4.19,a-vale-i2,2021-22,Easton-Richardson Olmsted School,00880025, 94.2, 10.3, 44.7, 14.5, 1.4, 4.3 4.16,4.16,a-vale-i2,2021-22,Easton-Easton Middle School,00880405, 93.6, 11.3, 48.5, 18.8, 2.8, 9.2 +4.1866666666666665,4.19,a-vale-i2,2021-22,Easton-Richardson Olmsted School,00880025, 94.2, 10.3, 44.7, 14.5, 1.4, 4.3 +4.155555555555556,4.16,a-vale-i2,2021-22,Easton-Moreau Hall,00880020, 93.5, 11.1, 48.7, 17.5, 2.2, 4.8 4.173333333333334,4.17,a-vale-i2,2021-22,Easton-Parkview Elementary,00880015, 93.9, 10.5, 50.6, 15.8, 1.6, 1.3 +4.155555555555556,4.16,a-vale-i2,2021-22,Easton-Center School,00880003, 93.5, 11.2, 50.7, 15.7, 4.0, 3.6 4.071111111111111,4.07,a-vale-i2,2021-22,Edgartown-Edgartown Elementary,00890005, 91.6, 14.1, 66.0, 32.4, 5.9, 20.3 3.813333333333333,3.81,a-vale-i2,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District)-Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 85.8, 24.1, 77.2, 55.2, 25.8, 56.7 4.053333333333334,4.05,a-vale-i2,2021-22,Erving-Erving Elementary,00910030, 91.2, 15.7, 64.4, 31.1, 11.1, 15.6 4.133333333333334,4.13,a-vale-i2,2021-22,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 93.0, 12.3, 50.9, 21.8, 4.4, 11.8 -3.4844444444444447,3.48,a-vale-i2,2021-22,Everett-Devens School,00930030, 78.4, 35.6, 83.3, 71.4, 50.0, 76.2 -4.0,4.0,a-vale-i2,2021-22,Everett-George Keverian School,00930028, 90.0, 17.2, 67.2, 40.0, 10.3, 66.0 -4.0488888888888885,4.05,a-vale-i2,2021-22,Everett-Madeline English School,00930018, 91.1, 15.0, 62.5, 33.8, 7.6, 62.5 -4.071111111111111,4.07,a-vale-i2,2021-22,Everett-Webster School,00930015, 91.6, 14.5, 59.1, 31.1, 6.6, 58.0 -4.053333333333334,4.05,a-vale-i2,2021-22,Everett-Parlin School,00930058, 91.2, 14.9, 60.4, 33.8, 6.7, 58.6 -3.5555555555555554,3.56,a-vale-i2,2021-22,Everett-Adams School,00930003, 80.0, 31.2, 81.6, 70.4, 42.5, 81.6 3.791111111111111,3.79,a-vale-i2,2021-22,Everett-Webster Extension,00930001, 85.3, 23.9, 82.5, 64.1, 27.2, 82.5 +3.5555555555555554,3.56,a-vale-i2,2021-22,Everett-Adams School,00930003, 80.0, 31.2, 81.6, 70.4, 42.5, 81.6 3.7466666666666666,3.75,a-vale-i2,2021-22,Everett-Everett High,00930505, 84.3, 26.1, 75.5, 53.5, 25.4, 64.9 -4.062222222222222,4.06,a-vale-i2,2021-22,Everett-Lafayette School,00930038, 91.4, 14.7, 60.9, 34.2, 8.0, 60.9 +4.071111111111111,4.07,a-vale-i2,2021-22,Everett-Webster School,00930015, 91.6, 14.5, 59.1, 31.1, 6.6, 58.0 4.066666666666666,4.07,a-vale-i2,2021-22,Everett-Sumner G. Whittier School,00930010, 91.5, 14.2, 58.0, 34.1, 7.2, 51.5 +4.0488888888888885,4.05,a-vale-i2,2021-22,Everett-Madeline English School,00930018, 91.1, 15.0, 62.5, 33.8, 7.6, 62.5 +4.0,4.0,a-vale-i2,2021-22,Everett-George Keverian School,00930028, 90.0, 17.2, 67.2, 40.0, 10.3, 66.0 +3.4844444444444447,3.48,a-vale-i2,2021-22,Everett-Devens School,00930030, 78.4, 35.6, 83.3, 71.4, 50.0, 76.2 +4.062222222222222,4.06,a-vale-i2,2021-22,Everett-Lafayette School,00930038, 91.4, 14.7, 60.9, 34.2, 8.0, 60.9 +4.053333333333334,4.05,a-vale-i2,2021-22,Everett-Parlin School,00930058, 91.2, 14.9, 60.4, 33.8, 6.7, 58.6 4.053333333333334,4.05,a-vale-i2,2021-22,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 91.2, 15.4, 59.2, 31.0, 9.1, 45.1 -4.093333333333333,4.09,a-vale-i2,2021-22,Fairhaven-East Fairhaven,00940010, 92.1, 13.8, 64.1, 28.5, 3.7, 25.4 4.0488888888888885,4.05,a-vale-i2,2021-22,Fairhaven-Fairhaven High,00940505, 91.1, 15.3, 56.8, 27.7, 12.2, 32.9 -4.12,4.12,a-vale-i2,2021-22,Fairhaven-Leroy Wood,00940030, 92.7, 12.8, 62.3, 19.8, 2.3, 27.7 4.102222222222222,4.1,a-vale-i2,2021-22,Fairhaven-Hastings Middle,00940305, 92.3, 13.8, 54.2, 25.2, 4.8, 22.6 +4.12,4.12,a-vale-i2,2021-22,Fairhaven-Leroy Wood,00940030, 92.7, 12.8, 62.3, 19.8, 2.3, 27.7 +4.093333333333333,4.09,a-vale-i2,2021-22,Fairhaven-East Fairhaven,00940010, 92.1, 13.8, 64.1, 28.5, 3.7, 25.4 +3.9733333333333336,3.97,a-vale-i2,2021-22,Fall River-Carlton M. Viveiros Elementary School,00950009, 89.4, 17.5, 71.4, 45.3, 9.6, 49.9 +3.9955555555555557,4.0,a-vale-i2,2021-22,Fall River-Mary Fonseca Elementary School,00950011, 89.9, 16.8, 70.1, 45.3, 8.2, 45.1 +3.986666666666667,3.99,a-vale-i2,2021-22,Fall River-Letourneau Elementary School,00950013, 89.7, 17.0, 71.3, 41.2, 11.2, 52.7 +3.96,3.96,a-vale-i2,2021-22,Fall River-Henry Lord Community School,00950017, 89.1, 18.4, 71.4, 47.7, 12.6, 49.1 +3.897777777777778,3.9,a-vale-i2,2021-22,Fall River-John J Doran,00950045, 87.7, 20.5, 75.8, 53.3, 17.5, 51.6 +3.977777777777778,3.98,a-vale-i2,2021-22,Fall River-William S Greene,00950065, 89.5, 17.6, 72.1, 45.2, 10.5, 54.8 4.017777777777778,4.02,a-vale-i2,2021-22,Fall River-Spencer Borden,00950130, 90.4, 16.6, 67.7, 35.3, 8.1, 36.0 4.0311111111111115,4.03,a-vale-i2,2021-22,Fall River-James Tansey,00950140, 90.7, 16.5, 74.6, 35.9, 6.7, 31.7 3.982222222222222,3.98,a-vale-i2,2021-22,Fall River-Samuel Watson,00950145, 89.6, 16.9, 72.8, 48.0, 8.8, 49.6 3.968888888888889,3.97,a-vale-i2,2021-22,Fall River-Talbot Innovation School,00950305, 89.3, 17.8, 72.7, 45.3, 11.1, 48.4 3.982222222222222,3.98,a-vale-i2,2021-22,Fall River-Morton Middle,00950315, 89.6, 17.9, 69.2, 42.1, 12.2, 49.4 -3.968888888888889,3.97,a-vale-i2,2021-22,Fall River-Matthew J Kuss Middle,00950320, 89.3, 18.4, 69.1, 44.1, 12.1, 44.6 -3.6044444444444443,3.6,a-vale-i2,2021-22,Fall River-Stone PK-12 School,00950340, 81.1, 31.0, 83.6, 71.6, 38.8, 64.2 -3.72,3.72,a-vale-i2,2021-22,Fall River-B M C Durfee High,00950505, 83.7, 27.0, 76.5, 56.6, 28.3, 60.1 -2.8355555555555556,2.84,a-vale-i2,2021-22,Fall River-Resiliency Preparatory Academy,00950525, 63.8, 48.7, 90.6, 91.9, 80.5, 86.6 -3.977777777777778,3.98,a-vale-i2,2021-22,Fall River-William S Greene,00950065, 89.5, 17.6, 72.1, 45.2, 10.5, 54.8 -3.897777777777778,3.9,a-vale-i2,2021-22,Fall River-John J Doran,00950045, 87.7, 20.5, 75.8, 53.3, 17.5, 51.6 -3.9955555555555557,4.0,a-vale-i2,2021-22,Fall River-Mary Fonseca Elementary School,00950011, 89.9, 16.8, 70.1, 45.3, 8.2, 45.1 -3.986666666666667,3.99,a-vale-i2,2021-22,Fall River-Letourneau Elementary School,00950013, 89.7, 17.0, 71.3, 41.2, 11.2, 52.7 -3.96,3.96,a-vale-i2,2021-22,Fall River-Henry Lord Community School,00950017, 89.1, 18.4, 71.4, 47.7, 12.6, 49.1 -3.9733333333333336,3.97,a-vale-i2,2021-22,Fall River-Carlton M. Viveiros Elementary School,00950009, 89.4, 17.5, 71.4, 45.3, 9.6, 49.9 3.977777777777778,3.98,a-vale-i2,2021-22,Fall River-North End Elementary,00950005, 89.5, 17.8, 74.2, 46.2, 9.8, 51.0 +2.8355555555555556,2.84,a-vale-i2,2021-22,Fall River-Resiliency Preparatory Academy,00950525, 63.8, 48.7, 90.6, 91.9, 80.5, 86.6 +3.968888888888889,3.97,a-vale-i2,2021-22,Fall River-Matthew J Kuss Middle,00950320, 89.3, 18.4, 69.1, 44.1, 12.1, 44.6 +3.72,3.72,a-vale-i2,2021-22,Fall River-B M C Durfee High,00950505, 83.7, 27.0, 76.5, 56.6, 28.3, 60.1 +3.6044444444444443,3.6,a-vale-i2,2021-22,Fall River-Stone PK-12 School,00950340, 81.1, 31.0, 83.6, 71.6, 38.8, 64.2 +4.057777777777778,4.06,a-vale-i2,2021-22,Falmouth-Morse Pond School,00960305, 91.3, 15.1, 65.4, 31.7, 6.0, 45.7 +4.008888888888889,4.01,a-vale-i2,2021-22,Falmouth-Lawrence,00960405, 90.2, 17.2, 66.9, 38.4, 10.5, 48.0 +3.982222222222222,3.98,a-vale-i2,2021-22,Falmouth-Falmouth High,00960505, 89.6, 18.1, 67.0, 38.2, 12.4, 37.6 +4.0311111111111115,4.03,a-vale-i2,2021-22,Falmouth-East Falmouth Elementary,00960005, 90.7, 15.2, 67.6, 40.1, 5.5, 66.0 4.08,4.08,a-vale-i2,2021-22,Falmouth-Teaticket,00960015, 91.8, 14.3, 64.7, 31.0, 3.9, 47.7 4.075555555555556,4.08,a-vale-i2,2021-22,Falmouth-Mullen-Hall,00960020, 91.7, 14.4, 64.8, 31.6, 3.6, 43.1 -3.982222222222222,3.98,a-vale-i2,2021-22,Falmouth-Falmouth High,00960505, 89.6, 18.1, 67.0, 38.2, 12.4, 37.6 4.084444444444444,4.08,a-vale-i2,2021-22,Falmouth-North Falmouth Elementary,00960030, 91.9, 14.4, 66.8, 29.5, 2.6, 61.3 -4.057777777777778,4.06,a-vale-i2,2021-22,Falmouth-Morse Pond School,00960305, 91.3, 15.1, 65.4, 31.7, 6.0, 45.7 -4.0311111111111115,4.03,a-vale-i2,2021-22,Falmouth-East Falmouth Elementary,00960005, 90.7, 15.2, 67.6, 40.1, 5.5, 66.0 -4.008888888888889,4.01,a-vale-i2,2021-22,Falmouth-Lawrence,00960405, 90.2, 17.2, 66.9, 38.4, 10.5, 48.0 4.075555555555556,4.08,a-vale-i2,2021-22,Farmington River Reg-Farmington River Elementary,06620020, 91.7, 14.4, 67.8, 34.7, 3.4, 9.3 +3.88,3.88,a-vale-i2,2021-22,Fitchburg-Fitchburg High,00970505, 87.3, 21.0, 70.5, 51.5, 19.9, 48.1 +4.102222222222222,4.1,a-vale-i2,2021-22,Fitchburg-Goodrich Academy,00970510, 92.3, 9.5, 35.5, 28.0, 8.5, 27.5 +3.902222222222222,3.9,a-vale-i2,2021-22,Fitchburg-Crocker Elementary,00970016, 87.8, 20.1, 77.3, 50.7, 17.6, 35.2 4.004444444444444,4.0,a-vale-i2,2021-22,Fitchburg-Reingold Elementary,00970043, 90.1, 16.5, 70.6, 43.5, 8.2, 35.4 3.977777777777778,3.98,a-vale-i2,2021-22,Fitchburg-Memorial Middle School,00970048, 89.5, 18.0, 70.6, 44.6, 9.3, 34.6 -4.102222222222222,4.1,a-vale-i2,2021-22,Fitchburg-Goodrich Academy,00970510, 92.3, 9.5, 35.5, 28.0, 8.5, 27.5 -3.88,3.88,a-vale-i2,2021-22,Fitchburg-Fitchburg High,00970505, 87.3, 21.0, 70.5, 51.5, 19.9, 48.1 -3.933333333333333,3.93,a-vale-i2,2021-22,Fitchburg-McKay Arts Academy,00970340, 88.5, 18.9, 71.9, 48.4, 15.9, 36.7 -3.888888888888889,3.89,a-vale-i2,2021-22,Fitchburg-Arthur M Longsjo Middle School,00970315, 87.5, 21.5, 74.2, 51.2, 18.0, 59.4 3.893333333333333,3.89,a-vale-i2,2021-22,Fitchburg-South Street Elementary,00970060, 87.6, 20.5, 81.5, 57.0, 15.5, 58.0 -3.902222222222222,3.9,a-vale-i2,2021-22,Fitchburg-Crocker Elementary,00970016, 87.8, 20.1, 77.3, 50.7, 17.6, 35.2 +3.888888888888889,3.89,a-vale-i2,2021-22,Fitchburg-Arthur M Longsjo Middle School,00970315, 87.5, 21.5, 74.2, 51.2, 18.0, 59.4 +3.933333333333333,3.93,a-vale-i2,2021-22,Fitchburg-McKay Arts Academy,00970340, 88.5, 18.9, 71.9, 48.4, 15.9, 36.7 4.137777777777777,4.14,a-vale-i2,2021-22,Florida-Abbott Memorial,00980005, 93.1, 12.3, 58.1, 23.8, 3.8, 0.0 3.8622222222222224,3.86,a-vale-i2,2021-22,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 86.9, 22.7, 85.0, 48.5, 16.7, 42.7 -4.16,4.16,a-vale-i2,2021-22,Foxborough-Charles Taylor Elementary,00990050, 93.6, 11.2, 50.6, 16.2, 1.2, 0.0 -4.168888888888889,4.17,a-vale-i2,2021-22,Foxborough-Vincent M Igo Elementary,00990020, 93.8, 10.8, 46.6, 17.3, 1.4, 0.6 4.195555555555556,4.2,a-vale-i2,2021-22,Foxborough-Mabelle M Burrell,00990015, 94.4, 9.6, 38.4, 13.2, 1.4, 0.3 -4.097777777777778,4.1,a-vale-i2,2021-22,Foxborough-Foxborough High,00990505, 92.2, 13.8, 54.0, 23.3, 5.7, 5.8 +4.168888888888889,4.17,a-vale-i2,2021-22,Foxborough-Vincent M Igo Elementary,00990020, 93.8, 10.8, 46.6, 17.3, 1.4, 0.6 +4.16,4.16,a-vale-i2,2021-22,Foxborough-Charles Taylor Elementary,00990050, 93.6, 11.2, 50.6, 16.2, 1.2, 0.0 4.142222222222222,4.14,a-vale-i2,2021-22,Foxborough-John J Ahern,00990405, 93.2, 11.9, 47.2, 17.1, 4.5, 4.3 +4.097777777777778,4.1,a-vale-i2,2021-22,Foxborough-Foxborough High,00990505, 92.2, 13.8, 54.0, 23.3, 5.7, 5.8 4.133333333333334,4.13,a-vale-i2,2021-22,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 93.0, 12.2, 52.0, 23.4, 4.3, 30.9 +4.035555555555556,4.04,a-vale-i2,2021-22,Framingham-Brophy,01000006, 90.8, 15.4, 62.3, 38.3, 7.8, 21.0 4.102222222222222,4.1,a-vale-i2,2021-22,Framingham-Charlotte A Dunning,01000007, 92.3, 13.2, 55.4, 27.8, 3.4, 17.2 4.093333333333333,4.09,a-vale-i2,2021-22,Framingham-Hemenway,01000015, 92.1, 13.7, 59.6, 30.8, 4.1, 48.5 3.986666666666667,3.99,a-vale-i2,2021-22,Framingham-Barbieri Elementary,01000035, 89.7, 17.8, 70.2, 40.4, 11.7, 38.9 @@ -9799,18 +9800,17 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 3.8533333333333335,3.85,a-vale-i2,2021-22,Framingham-Framingham High School,01000515, 86.7, 21.8, 63.5, 43.8, 21.5, 47.7 3.7555555555555555,3.76,a-vale-i2,2021-22,Framingham-Juniper Hill School,01000001, 84.5, 19.0, 73.5, 67.1, 28.6, 25.1 4.004444444444444,4.0,a-vale-i2,2021-22,Framingham-King Elementary School,01000005, 90.1, 16.0, 67.2, 43.6, 13.4, 27.3 -4.035555555555556,4.04,a-vale-i2,2021-22,Framingham-Brophy,01000006, 90.8, 15.4, 62.3, 38.3, 7.8, 21.0 4.115555555555555,4.12,a-vale-i2,2021-22,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 92.6, 13.0, 47.2, 21.1, 4.1, 0.3 -4.1866666666666665,4.19,a-vale-i2,2021-22,Franklin-Franklin High,01010505, 94.2, 10.1, 38.3, 13.9, 3.3, 19.4 -4.177777777777778,4.18,a-vale-i2,2021-22,Franklin-Remington Middle,01010310, 94.0, 10.6, 42.6, 13.8, 2.9, 27.7 +3.986666666666667,3.99,a-vale-i2,2021-22,Franklin-Franklin Early Childhood Development Center,01010003, 89.7, 12.0, 46.0, 43.3, 11.3, 46.0 4.2,4.2,a-vale-i2,2021-22,Franklin-Horace Mann,01010405, 94.5, 9.8, 42.7, 14.1, 1.1, 23.4 +4.177777777777778,4.18,a-vale-i2,2021-22,Franklin-Remington Middle,01010310, 94.0, 10.6, 42.6, 13.8, 2.9, 27.7 4.204444444444444,4.2,a-vale-i2,2021-22,Franklin-Annie Sullivan Middle School,01010040, 94.6, 9.5, 41.0, 11.7, 0.6, 28.6 4.191111111111111,4.19,a-vale-i2,2021-22,Franklin-Parmenter,01010032, 94.3, 9.9, 48.2, 15.1, 1.3, 16.7 4.191111111111111,4.19,a-vale-i2,2021-22,Franklin-Oak Street Elementary,01010030, 94.3, 10.1, 48.6, 11.9, 1.3, 25.2 4.204444444444444,4.2,a-vale-i2,2021-22,Franklin-J F Kennedy Memorial,01010013, 94.6, 9.5, 43.9, 11.0, 0.3, 13.6 -4.182222222222222,4.18,a-vale-i2,2021-22,Franklin-Helen Keller Elementary,01010012, 94.1, 10.3, 45.4, 15.8, 1.4, 35.1 -3.986666666666667,3.99,a-vale-i2,2021-22,Franklin-Franklin Early Childhood Development Center,01010003, 89.7, 12.0, 46.0, 43.3, 11.3, 46.0 +4.1866666666666665,4.19,a-vale-i2,2021-22,Franklin-Franklin High,01010505, 94.2, 10.1, 38.3, 13.9, 3.3, 19.4 4.204444444444444,4.2,a-vale-i2,2021-22,Franklin-Jefferson Elementary,01010010, 94.6, 9.5, 38.0, 13.3, 1.2, 16.2 +4.182222222222222,4.18,a-vale-i2,2021-22,Franklin-Helen Keller Elementary,01010012, 94.1, 10.3, 45.4, 15.8, 1.4, 35.1 4.066666666666666,4.07,a-vale-i2,2021-22,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 91.5, 14.8, 62.8, 31.6, 6.5, 33.8 4.16,4.16,a-vale-i2,2021-22,Freetown-Lakeville-Apponequet Regional High,06650505, 93.6, 11.2, 41.1, 19.3, 5.8, 0.0 4.177777777777778,4.18,a-vale-i2,2021-22,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 94.0, 10.6, 46.0, 18.5, 2.5, 0.7 @@ -9818,91 +9818,93 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.111111111111111,4.11,a-vale-i2,2021-22,Freetown-Lakeville-Assawompset Elementary School,06650002, 92.5, 13.3, 59.7, 24.9, 3.3, 6.1 4.093333333333333,4.09,a-vale-i2,2021-22,Freetown-Lakeville-Freetown Elementary School,06650001, 92.1, 14.0, 65.4, 30.6, 1.8, 10.6 4.093333333333333,4.09,a-vale-i2,2021-22,Frontier-Frontier Regional,06700505, 92.1, 13.8, 55.8, 26.4, 7.5, 24.6 -3.9422222222222225,3.94,a-vale-i2,2021-22,Gardner-Gardner Academy for Learning and Technology,01030515, 88.7, 18.1, 33.0, 30.3, 24.8, 29.4 +4.008888888888889,4.01,a-vale-i2,2021-22,Gardner-Gardner Middle School,01030405, 90.2, 16.9, 68.1, 37.7, 10.0, 41.0 +3.991111111111111,3.99,a-vale-i2,2021-22,Gardner-Elm Street School,01030001, 89.8, 17.7, 74.6, 44.2, 8.3, 46.3 3.893333333333333,3.89,a-vale-i2,2021-22,Gardner-Waterford Street,01030020, 87.6, 20.9, 79.2, 51.3, 15.6, 75.6 4.017777777777778,4.02,a-vale-i2,2021-22,Gardner-Gardner High,01030505, 90.4, 16.6, 61.4, 38.1, 12.1, 34.4 -3.991111111111111,3.99,a-vale-i2,2021-22,Gardner-Elm Street School,01030001, 89.8, 17.7, 74.6, 44.2, 8.3, 46.3 -4.008888888888889,4.01,a-vale-i2,2021-22,Gardner-Gardner Middle School,01030405, 90.2, 16.9, 68.1, 37.7, 10.0, 41.0 -4.0488888888888885,4.05,a-vale-i2,2021-22,Gateway-Littleville Elementary School,06720143, 91.1, 14.9, 67.4, 36.1, 5.9, 52.8 +3.9422222222222225,3.94,a-vale-i2,2021-22,Gardner-Gardner Academy for Learning and Technology,01030515, 88.7, 18.1, 33.0, 30.3, 24.8, 29.4 4.022222222222222,4.02,a-vale-i2,2021-22,Gateway-Gateway Regional High,06720505, 90.5, 16.2, 61.4, 34.1, 9.7, 34.1 -4.062222222222222,4.06,a-vale-i2,2021-22,Gateway-Chester Elementary,06720059, 91.4, 14.5, 66.1, 37.3, 2.5, 35.6 4.08,4.08,a-vale-i2,2021-22,Gateway-Gateway Regional Middle School,06720405, 91.8, 14.5, 58.6, 30.0, 6.4, 37.9 -4.16,4.16,a-vale-i2,2021-22,Georgetown-Penn Brook,01050010, 93.6, 11.4, 57.3, 15.9, 1.0, 0.0 +4.0488888888888885,4.05,a-vale-i2,2021-22,Gateway-Littleville Elementary School,06720143, 91.1, 14.9, 67.4, 36.1, 5.9, 52.8 +4.062222222222222,4.06,a-vale-i2,2021-22,Gateway-Chester Elementary,06720059, 91.4, 14.5, 66.1, 37.3, 2.5, 35.6 4.151111111111112,4.15,a-vale-i2,2021-22,Georgetown-Georgetown Middle School,01050305, 93.4, 11.7, 51.0, 15.2, 2.0, 2.9 +4.16,4.16,a-vale-i2,2021-22,Georgetown-Penn Brook,01050010, 93.6, 11.4, 57.3, 15.9, 1.0, 0.0 4.097777777777778,4.1,a-vale-i2,2021-22,Georgetown-Georgetown High School,01050505, 92.2, 13.6, 50.5, 22.6, 6.2, 4.6 4.066666666666666,4.07,a-vale-i2,2021-22,Georgetown-Perley Elementary,01050005, 91.5, 10.6, 44.4, 34.6, 3.7, 0.0 -4.164444444444444,4.16,a-vale-i2,2021-22,Gill-Montague-Gill Elementary,06740005, 93.7, 10.7, 49.6, 20.7, 1.7, 20.7 3.8311111111111114,3.83,a-vale-i2,2021-22,Gill-Montague-Turners Fall High,06740505, 86.2, 23.9, 66.1, 44.8, 23.5, 50.3 -3.9466666666666663,3.95,a-vale-i2,2021-22,Gill-Montague-Great Falls Middle,06740310, 88.8, 19.2, 58.9, 33.0, 17.3, 34.5 4.044444444444444,4.04,a-vale-i2,2021-22,Gill-Montague-Sheffield Elementary School,06740050, 91.0, 15.5, 64.7, 30.7, 7.9, 15.8 +3.9466666666666663,3.95,a-vale-i2,2021-22,Gill-Montague-Great Falls Middle,06740310, 88.8, 19.2, 58.9, 33.0, 17.3, 34.5 +4.164444444444444,4.16,a-vale-i2,2021-22,Gill-Montague-Gill Elementary,06740005, 93.7, 10.7, 49.6, 20.7, 1.7, 20.7 3.9422222222222225,3.94,a-vale-i2,2021-22,Gill-Montague-Hillcrest Elementary School,06740015, 88.7, 19.2, 70.4, 48.0, 15.1, 13.2 4.12,4.12,a-vale-i2,2021-22,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 92.7, 12.8, 57.1, 23.6, 3.7, 17.7 4.142222222222222,4.14,a-vale-i2,2021-22,Gloucester-Plum Cove School,01070042, 93.2, 12.1, 61.6, 18.7, 0.9, 38.4 4.071111111111111,4.07,a-vale-i2,2021-22,Gloucester-Beeman Memorial,01070010, 91.6, 14.8, 65.0, 30.7, 6.1, 47.4 -4.071111111111111,4.07,a-vale-i2,2021-22,Gloucester-Ralph B O'Maley Middle,01070305, 91.6, 14.8, 60.9, 31.4, 6.4, 43.5 -4.097777777777778,4.1,a-vale-i2,2021-22,Gloucester-East Gloucester Elementary,01070020, 92.2, 13.7, 65.9, 32.4, 0.6, 53.2 -3.911111111111111,3.91,a-vale-i2,2021-22,Gloucester-Gloucester PreSchool,01070025, 88.0, 18.2, 72.3, 48.2, 17.0, 72.3 +3.8444444444444446,3.84,a-vale-i2,2021-22,Gloucester-Gloucester High,01070505, 86.5, 23.3, 70.6, 46.4, 19.7, 57.1 4.053333333333334,4.05,a-vale-i2,2021-22,Gloucester-Veterans Memorial,01070045, 91.2, 15.1, 65.8, 37.3, 3.6, 64.9 4.115555555555555,4.12,a-vale-i2,2021-22,Gloucester-West Parish,01070050, 92.6, 13.1, 58.5, 23.5, 3.2, 38.0 -3.8444444444444446,3.84,a-vale-i2,2021-22,Gloucester-Gloucester High,01070505, 86.5, 23.3, 70.6, 46.4, 19.7, 57.1 -4.053333333333334,4.05,a-vale-i2,2021-22,Grafton-Grafton High School,01100505, 91.2, 15.1, 59.7, 30.5, 8.2, 32.6 +4.097777777777778,4.1,a-vale-i2,2021-22,Gloucester-East Gloucester Elementary,01070020, 92.2, 13.7, 65.9, 32.4, 0.6, 53.2 +3.911111111111111,3.91,a-vale-i2,2021-22,Gloucester-Gloucester PreSchool,01070025, 88.0, 18.2, 72.3, 48.2, 17.0, 72.3 +4.071111111111111,4.07,a-vale-i2,2021-22,Gloucester-Ralph B O'Maley Middle,01070305, 91.6, 14.8, 60.9, 31.4, 6.4, 43.5 4.168888888888889,4.17,a-vale-i2,2021-22,Grafton-North Street Elementary School,01100030, 93.8, 10.9, 46.7, 15.0, 2.5, 22.0 +4.164444444444444,4.16,a-vale-i2,2021-22,Grafton-Grafton Middle,01100305, 93.7, 11.3, 45.0, 17.6, 3.2, 15.7 +4.053333333333334,4.05,a-vale-i2,2021-22,Grafton-Grafton High School,01100505, 91.2, 15.1, 59.7, 30.5, 8.2, 32.6 4.155555555555556,4.16,a-vale-i2,2021-22,Grafton-Millbury Street Elementary School,01100200, 93.5, 11.6, 51.7, 16.7, 2.4, 25.2 4.12,4.12,a-vale-i2,2021-22,Grafton-North Grafton Elementary,01100025, 92.7, 12.7, 58.1, 20.2, 2.9, 54.2 4.115555555555555,4.12,a-vale-i2,2021-22,Grafton-South Grafton Elementary,01100005, 92.6, 13.0, 54.4, 25.4, 3.5, 51.9 -4.164444444444444,4.16,a-vale-i2,2021-22,Grafton-Grafton Middle,01100305, 93.7, 11.3, 45.0, 17.6, 3.2, 15.7 -4.213333333333333,4.21,a-vale-i2,2021-22,Granby-Granby Jr Sr High School,01110505, 94.8, 9.1, 34.5, 11.3, 2.3, 14.8 4.182222222222222,4.18,a-vale-i2,2021-22,Granby-East Meadow,01110004, 94.1, 10.3, 45.2, 16.4, 3.1, 41.3 +4.213333333333333,4.21,a-vale-i2,2021-22,Granby-Granby Jr Sr High School,01110505, 94.8, 9.1, 34.5, 11.3, 2.3, 14.8 4.2844444444444445,4.28,a-vale-i2,2021-22,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 96.4, 5.1, 13.6, 12.8, 4.2, 2.1 4.217777777777778,4.22,a-vale-i2,2021-22,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 94.9, 9.1, 33.4, 9.8, 3.0, 10.1 4.1466666666666665,4.15,a-vale-i2,2021-22,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 93.3, 11.8, 49.3, 21.4, 4.1, 49.3 4.133333333333334,4.13,a-vale-i2,2021-22,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 93.0, 12.3, 49.5, 21.0, 4.9, 18.3 4.173333333333334,4.17,a-vale-i2,2021-22,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 93.9, 10.7, 43.6, 17.7, 3.6, 14.5 +3.92,3.92,a-vale-i2,2021-22,Greenfield-Greenfield Middle,01140305, 88.2, 19.7, 71.0, 46.0, 17.5, 52.2 3.8622222222222224,3.86,a-vale-i2,2021-22,Greenfield-Greenfield High,01140505, 86.9, 22.0, 70.4, 48.9, 21.5, 58.9 3.911111111111111,3.91,a-vale-i2,2021-22,Greenfield-Newton School,01140035, 88.0, 20.9, 77.4, 49.1, 16.5, 46.7 -3.92,3.92,a-vale-i2,2021-22,Greenfield-Greenfield Middle,01140305, 88.2, 19.7, 71.0, 46.0, 17.5, 52.2 4.088888888888889,4.09,a-vale-i2,2021-22,Greenfield-Discovery School at Four Corners,01140025, 92.0, 14.2, 64.9, 28.9, 3.3, 37.2 3.9422222222222225,3.94,a-vale-i2,2021-22,Greenfield-Federal Street School,01140010, 88.7, 19.3, 69.0, 46.5, 17.8, 64.3 3.9377777777777774,3.94,a-vale-i2,2021-22,Greenfield-The Academy of Early Learning at North Parish,01140005, 88.6, 17.3, 67.7, 50.0, 14.6, 67.7 -4.213333333333333,4.21,a-vale-i2,2021-22,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 94.8, 9.3, 35.4, 11.4, 1.4, 12.5 -4.191111111111111,4.19,a-vale-i2,2021-22,Groton-Dunstable-Florence Roche School,06730010, 94.3, 10.1, 44.4, 12.2, 1.1, 18.4 4.204444444444444,4.2,a-vale-i2,2021-22,Groton-Dunstable-Swallow/Union School,06730005, 94.6, 9.4, 40.3, 11.0, 1.3, 21.1 -4.44,4.44,a-vale-i2,2021-22,Groton-Dunstable-Boutwell School,06730001, 99.9, 0.1, 0.0, 0.0, 0.0, 0.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Groton-Dunstable-Florence Roche School,06730010, 94.3, 10.1, 44.4, 12.2, 1.1, 18.4 +4.213333333333333,4.21,a-vale-i2,2021-22,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 94.8, 9.3, 35.4, 11.4, 1.4, 12.5 4.195555555555556,4.2,a-vale-i2,2021-22,Groton-Dunstable-Groton Dunstable Regional,06730505, 94.4, 9.9, 39.5, 13.0, 2.3, 17.1 -4.16,4.16,a-vale-i2,2021-22,Hadley-Hadley Elementary,01170015, 93.6, 11.3, 49.8, 17.8, 2.5, 2.5 +4.44,4.44,a-vale-i2,2021-22,Groton-Dunstable-Boutwell School,06730001, 99.9, 0.1, 0.0, 0.0, 0.0, 0.0 4.208888888888889,4.21,a-vale-i2,2021-22,Hadley-Hopkins Academy,01170505, 94.7, 9.3, 37.8, 12.0, 3.3, 4.6 +4.16,4.16,a-vale-i2,2021-22,Hadley-Hadley Elementary,01170015, 93.6, 11.3, 49.8, 17.8, 2.5, 2.5 4.164444444444444,4.16,a-vale-i2,2021-22,Halifax-Halifax Elementary,01180005, 93.7, 11.3, 54.7, 17.1, 1.0, 33.9 4.191111111111111,4.19,a-vale-i2,2021-22,Hamilton-Wenham-Bessie Buker Elementary,06750007, 94.3, 10.2, 45.4, 11.6, 0.4, 9.2 4.204444444444444,4.2,a-vale-i2,2021-22,Hamilton-Wenham-Cutler School,06750010, 94.6, 9.7, 43.1, 11.9, 0.0, 5.9 +4.204444444444444,4.2,a-vale-i2,2021-22,Hamilton-Wenham-Miles River Middle,06750310, 94.6, 9.7, 40.5, 8.7, 1.3, 9.5 4.177777777777778,4.18,a-vale-i2,2021-22,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 94.0, 10.4, 38.1, 13.9, 4.4, 13.5 4.204444444444444,4.2,a-vale-i2,2021-22,Hamilton-Wenham-Winthrop School,06750015, 94.6, 9.4, 44.0, 10.1, 0.6, 3.8 -4.204444444444444,4.2,a-vale-i2,2021-22,Hamilton-Wenham-Miles River Middle,06750310, 94.6, 9.7, 40.5, 8.7, 1.3, 9.5 4.12,4.12,a-vale-i2,2021-22,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 92.7, 12.8, 46.5, 21.6, 5.5, 7.2 4.088888888888889,4.09,a-vale-i2,2021-22,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 92.0, 14.0, 54.3, 25.3, 7.1, 19.8 -4.12,4.12,a-vale-i2,2021-22,Hampden-Wilbraham-Minnechaug Regional High,06800505, 92.7, 12.9, 48.0, 23.5, 6.4, 44.6 4.177777777777778,4.18,a-vale-i2,2021-22,Hampden-Wilbraham-Wilbraham Middle,06800310, 94.0, 10.6, 41.4, 15.8, 2.7, 0.3 +4.12,4.12,a-vale-i2,2021-22,Hampden-Wilbraham-Minnechaug Regional High,06800505, 92.7, 12.9, 48.0, 23.5, 6.4, 44.6 4.177777777777778,4.18,a-vale-i2,2021-22,Hampden-Wilbraham-Stony Hill School,06800050, 94.0, 10.5, 46.8, 15.0, 1.0, 46.5 4.217777777777778,4.22,a-vale-i2,2021-22,Hampden-Wilbraham-Soule Road,06800030, 94.9, 9.1, 40.8, 9.0, 0.6, 38.6 -4.151111111111112,4.15,a-vale-i2,2021-22,Hampden-Wilbraham-Green Meadows Elementary,06800005, 93.4, 11.5, 54.4, 20.0, 0.6, 53.0 4.08,4.08,a-vale-i2,2021-22,Hampden-Wilbraham-Mile Tree Elementary,06800025, 91.8, 14.3, 64.2, 25.8, 4.9, 63.9 +4.151111111111112,4.15,a-vale-i2,2021-22,Hampden-Wilbraham-Green Meadows Elementary,06800005, 93.4, 11.5, 54.4, 20.0, 0.6, 53.0 4.133333333333334,4.13,a-vale-i2,2021-22,Hampshire-Hampshire Regional High,06830505, 93.0, 12.4, 52.5, 23.8, 4.8, 0.0 4.151111111111112,4.15,a-vale-i2,2021-22,Hancock-Hancock Elementary,01210005, 93.4, 11.3, 52.5, 28.8, 3.4, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Hanover-Hanover High,01220505, 93.0, 12.6, 57.0, 19.4, 2.8, 22.5 +4.1466666666666665,4.15,a-vale-i2,2021-22,Hanover-Cedar Elementary,01220004, 93.3, 11.9, 58.6, 15.6, 0.8, 27.0 4.1866666666666665,4.19,a-vale-i2,2021-22,Hanover-Center Elementary,01220005, 94.2, 10.5, 48.3, 10.1, 0.8, 17.7 4.182222222222222,4.18,a-vale-i2,2021-22,Hanover-Hanover Middle,01220305, 94.1, 10.7, 49.8, 10.6, 1.9, 27.4 -4.1466666666666665,4.15,a-vale-i2,2021-22,Hanover-Cedar Elementary,01220004, 93.3, 11.9, 58.6, 15.6, 0.8, 27.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Hanover-Hanover High,01220505, 93.0, 12.6, 57.0, 19.4, 2.8, 22.5 4.253333333333334,4.25,a-vale-i2,2021-22,Harvard-Hildreth Elementary School,01250005, 95.7, 7.5, 27.1, 8.9, 1.5, 1.5 4.177777777777778,4.18,a-vale-i2,2021-22,Harvard-Bromfield,01250505, 94.0, 10.7, 42.0, 17.0, 2.4, 3.9 4.142222222222222,4.14,a-vale-i2,2021-22,Hatfield-Hatfield Elementary,01270005, 93.2, 12.0, 52.5, 20.1, 2.7, 0.0 4.164444444444444,4.16,a-vale-i2,2021-22,Hatfield-Smith Academy,01270505, 93.7, 10.9, 47.7, 18.8, 3.4, 0.0 -3.7777777777777777,3.78,a-vale-i2,2021-22,Haverhill-Haverhill High,01280505, 85.0, 25.5, 71.4, 50.9, 25.8, 61.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Haverhill-Moody,01280045, 94.1, 9.1, 39.5, 14.5, 0.0, 25.0 +3.986666666666667,3.99,a-vale-i2,2021-22,Haverhill-Tilton Upper Middle School,01280105, 89.7, 18.1, 74.1, 41.4, 11.1, 51.9 +3.982222222222222,3.98,a-vale-i2,2021-22,Haverhill-Consentino Middle School,01280100, 89.6, 17.9, 64.6, 41.5, 12.0, 47.2 2.2311111111111113,2.23,a-vale-i2,2021-22,Haverhill-Crowell,01280515, 50.2, 72.8, 100.0, 100.0, 95.5, 100.0 3.92,3.92,a-vale-i2,2021-22,Haverhill-Moody Preschool Extension,01280001, 88.2, 16.4, 62.8, 48.7, 19.5, 60.2 3.933333333333333,3.93,a-vale-i2,2021-22,Haverhill-Bradford Elementary,01280008, 88.5, 19.6, 71.7, 48.5, 14.4, 54.3 4.0488888888888885,4.05,a-vale-i2,2021-22,Haverhill-Golden Hill,01280026, 91.1, 15.2, 66.5, 37.7, 5.6, 43.5 4.084444444444444,4.08,a-vale-i2,2021-22,Haverhill-Caleb Dustin Hunking School,01280030, 91.9, 14.2, 59.5, 28.1, 5.3, 38.6 3.36,3.36,a-vale-i2,2021-22,Haverhill-Greenleaf Academy,01280033, 75.6, 37.8, 82.8, 75.9, 48.3, 69.0 -4.182222222222222,4.18,a-vale-i2,2021-22,Haverhill-Moody,01280045, 94.1, 9.1, 39.5, 14.5, 0.0, 25.0 +3.7777777777777777,3.78,a-vale-i2,2021-22,Haverhill-Haverhill High,01280505, 85.0, 25.5, 71.4, 50.9, 25.8, 61.0 4.004444444444444,4.0,a-vale-i2,2021-22,Haverhill-Dr Paul Nettle,01280050, 90.1, 16.9, 67.1, 40.1, 9.3, 46.6 4.004444444444444,4.0,a-vale-i2,2021-22,Haverhill-Pentucket Lake Elementary,01280054, 90.1, 17.1, 72.4, 39.8, 8.8, 49.8 4.035555555555556,4.04,a-vale-i2,2021-22,Haverhill-Silver Hill Elementary School,01280067, 90.8, 15.6, 65.6, 34.6, 9.1, 44.2 @@ -9910,161 +9912,142 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.035555555555556,4.04,a-vale-i2,2021-22,Haverhill-Tilton,01280075, 90.8, 15.7, 67.2, 42.2, 8.8, 44.7 4.04,4.04,a-vale-i2,2021-22,Haverhill-Walnut Square,01280080, 90.9, 15.6, 63.9, 38.5, 4.9, 42.6 4.0311111111111115,4.03,a-vale-i2,2021-22,Haverhill-John G Whittier,01280085, 90.7, 16.0, 65.6, 35.0, 8.5, 39.8 -3.982222222222222,3.98,a-vale-i2,2021-22,Haverhill-Consentino Middle School,01280100, 89.6, 17.9, 64.6, 41.5, 12.0, 47.2 -3.986666666666667,3.99,a-vale-i2,2021-22,Haverhill-Tilton Upper Middle School,01280105, 89.7, 18.1, 74.1, 41.4, 11.1, 51.9 4.097777777777778,4.1,a-vale-i2,2021-22,Hawlemont-Hawlemont Regional,06850005, 92.2, 13.0, 64.1, 18.8, 4.7, 32.8 3.88,3.88,a-vale-i2,2021-22,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 87.3, 19.1, 74.5, 59.2, 23.6, 19.7 4.088888888888889,4.09,a-vale-i2,2021-22,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 92.0, 13.5, 61.6, 32.8, 3.4, 28.8 4.217777777777778,4.22,a-vale-i2,2021-22,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 94.9, 9.2, 38.5, 9.6, 0.5, 2.3 -4.191111111111111,4.19,a-vale-i2,2021-22,Hingham-Hingham High,01310505, 94.3, 10.1, 38.3, 13.2, 2.2, 14.3 -4.213333333333333,4.21,a-vale-i2,2021-22,Hingham-South Elementary,01310020, 94.8, 9.4, 42.0, 10.6, 0.2, 0.2 -4.2,4.2,a-vale-i2,2021-22,Hingham-Plymouth River,01310019, 94.5, 9.8, 45.8, 9.5, 0.8, 6.9 -4.195555555555556,4.2,a-vale-i2,2021-22,Hingham-Wm L Foster Elementary,01310010, 94.4, 9.9, 45.9, 10.5, 0.5, 5.2 4.115555555555555,4.12,a-vale-i2,2021-22,Hingham-East Elementary School,01310005, 92.6, 12.5, 50.1, 17.8, 5.4, 15.6 +4.195555555555556,4.2,a-vale-i2,2021-22,Hingham-Wm L Foster Elementary,01310010, 94.4, 9.9, 45.9, 10.5, 0.5, 5.2 +4.2,4.2,a-vale-i2,2021-22,Hingham-Plymouth River,01310019, 94.5, 9.8, 45.8, 9.5, 0.8, 6.9 +4.213333333333333,4.21,a-vale-i2,2021-22,Hingham-South Elementary,01310020, 94.8, 9.4, 42.0, 10.6, 0.2, 0.2 4.177777777777778,4.18,a-vale-i2,2021-22,Hingham-Hingham Middle School,01310410, 94.0, 10.6, 40.6, 15.4, 2.7, 27.6 -4.1466666666666665,4.15,a-vale-i2,2021-22,Holbrook-Holbrook Middle High School,01330505, 93.3, 11.6, 47.1, 19.4, 4.7, 19.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Hingham-Hingham High,01310505, 94.3, 10.1, 38.3, 13.2, 2.2, 14.3 4.1288888888888895,4.13,a-vale-i2,2021-22,Holbrook-John F Kennedy,01330018, 92.9, 12.2, 57.6, 23.7, 2.6, 28.9 +4.1466666666666665,4.15,a-vale-i2,2021-22,Holbrook-Holbrook Middle High School,01330505, 93.3, 11.6, 47.1, 19.4, 4.7, 19.0 4.142222222222222,4.14,a-vale-i2,2021-22,Holland-Holland Elementary,01350005, 93.2, 11.5, 53.5, 22.4, 1.6, 53.5 -4.133333333333334,4.13,a-vale-i2,2021-22,Holliston-Placentino Elementary,01360010, 93.0, 12.5, 57.0, 19.6, 2.3, 0.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Holliston-Holliston High,01360505, 92.3, 13.4, 52.6, 20.1, 5.8, 9.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Holliston-Robert H. Adams Middle School,01360305, 94.4, 9.9, 39.2, 12.5, 1.9, 0.0 4.195555555555556,4.2,a-vale-i2,2021-22,Holliston-Miller School,01360007, 94.4, 9.9, 43.5, 11.0, 0.8, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Holliston-Placentino Elementary,01360010, 93.0, 12.5, 57.0, 19.6, 2.3, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Holliston-Robert H. Adams Middle School,01360305, 94.4, 9.9, 39.2, 12.5, 1.9, 0.0 +4.102222222222222,4.1,a-vale-i2,2021-22,Holliston-Holliston High,01360505, 92.3, 13.4, 52.6, 20.1, 5.8, 9.0 +3.688888888888889,3.69,a-vale-i2,2021-22,Holyoke-William R. Peck School,01370030, 83.0, 28.6, 86.4, 69.7, 31.6, 73.2 +3.8355555555555556,3.84,a-vale-i2,2021-22,Holyoke-Kelly Elementary,01370040, 86.3, 22.7, 81.6, 58.1, 20.0, 60.3 +3.9511111111111115,3.95,a-vale-i2,2021-22,Holyoke-E N White Elementary,01370045, 88.9, 19.0, 73.4, 50.8, 12.1, 45.9 +3.924444444444444,3.92,a-vale-i2,2021-22,Holyoke-Lt Clayre Sullivan Elementary,01370055, 88.3, 20.2, 73.9, 45.4, 16.1, 48.4 +3.924444444444444,3.92,a-vale-i2,2021-22,Holyoke-Maurice A Donahue Elementary,01370060, 88.3, 19.7, 75.5, 51.8, 13.3, 52.5 +3.7555555555555555,3.76,a-vale-i2,2021-22,Holyoke-H.B. Lawrence School,01370070, 84.5, 24.1, 78.4, 64.9, 30.3, 51.9 +3.6488888888888886,3.65,a-vale-i2,2021-22,Holyoke-Veritas Prep Holyoke,01370075, 82.1, 30.0, 85.2, 70.2, 32.3, 76.7 +3.782222222222222,3.78,a-vale-i2,2021-22,Holyoke-Holyoke STEM Academy,01370320, 85.1, 25.1, 82.4, 57.4, 23.5, 57.4 +3.688888888888889,3.69,a-vale-i2,2021-22,Holyoke-Holyoke High,01370505, 83.0, 28.2, 77.2, 53.8, 24.3, 55.4 4.013333333333334,4.01,a-vale-i2,2021-22,Holyoke-Joseph Metcalf School,01370003, 90.3, 16.5, 67.7, 42.1, 8.4, 38.3 4.0,4.0,a-vale-i2,2021-22,Holyoke-Lt Elmer J McMahon Elementary,01370015, 90.0, 16.8, 70.3, 42.4, 8.6, 42.4 -3.782222222222222,3.78,a-vale-i2,2021-22,Holyoke-Holyoke STEM Academy,01370320, 85.1, 25.1, 82.4, 57.4, 23.5, 57.4 -3.7555555555555555,3.76,a-vale-i2,2021-22,Holyoke-H.B. Lawrence School,01370070, 84.5, 24.1, 78.4, 64.9, 30.3, 51.9 -3.688888888888889,3.69,a-vale-i2,2021-22,Holyoke-Holyoke High,01370505, 83.0, 28.2, 77.2, 53.8, 24.3, 55.4 -3.6488888888888886,3.65,a-vale-i2,2021-22,Holyoke-Veritas Prep Holyoke,01370075, 82.1, 30.0, 85.2, 70.2, 32.3, 76.7 3.7866666666666666,3.79,a-vale-i2,2021-22,Holyoke-Morgan Full Service Community School,01370025, 85.2, 23.7, 77.8, 60.4, 25.3, 58.5 -3.924444444444444,3.92,a-vale-i2,2021-22,Holyoke-Maurice A Donahue Elementary,01370060, 88.3, 19.7, 75.5, 51.8, 13.3, 52.5 -3.924444444444444,3.92,a-vale-i2,2021-22,Holyoke-Lt Clayre Sullivan Elementary,01370055, 88.3, 20.2, 73.9, 45.4, 16.1, 48.4 -3.9511111111111115,3.95,a-vale-i2,2021-22,Holyoke-E N White Elementary,01370045, 88.9, 19.0, 73.4, 50.8, 12.1, 45.9 -3.8355555555555556,3.84,a-vale-i2,2021-22,Holyoke-Kelly Elementary,01370040, 86.3, 22.7, 81.6, 58.1, 20.0, 60.3 -3.688888888888889,3.69,a-vale-i2,2021-22,Holyoke-William R. Peck School,01370030, 83.0, 28.6, 86.4, 69.7, 31.6, 73.2 4.0311111111111115,4.03,a-vale-i2,2021-22,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 90.7, 16.0, 66.5, 36.0, 9.0, 21.6 -3.8533333333333335,3.85,a-vale-i2,2021-22,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 86.7, 23.1, 77.3, 52.0, 16.5, 3.4 3.92,3.92,a-vale-i2,2021-22,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 88.2, 20.3, 76.7, 51.6, 13.6, 29.3 +3.8533333333333335,3.85,a-vale-i2,2021-22,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 86.7, 23.1, 77.3, 52.0, 16.5, 3.4 3.9644444444444447,3.96,a-vale-i2,2021-22,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.2, 17.8, 67.0, 41.8, 14.1, 0.0 4.1466666666666665,4.15,a-vale-i2,2021-22,Hopedale-Hopedale Jr Sr High,01380505, 93.3, 11.8, 44.9, 17.1, 4.8, 22.5 -4.1288888888888895,4.13,a-vale-i2,2021-22,Hopedale-Memorial,01380010, 92.9, 12.5, 58.0, 24.2, 2.2, 13.8 4.191111111111111,4.19,a-vale-i2,2021-22,Hopedale-Park Street School,01380003, 94.3, 10.0, 40.2, 13.1, 0.9, 40.2 -3.9155555555555552,3.92,a-vale-i2,2021-22,Hopkinton-Hopkinton Pre-School,01390003, 88.1, 17.5, 71.6, 47.1, 16.7, 28.4 +4.1288888888888895,4.13,a-vale-i2,2021-22,Hopedale-Memorial,01380010, 92.9, 12.5, 58.0, 24.2, 2.2, 13.8 4.208888888888889,4.21,a-vale-i2,2021-22,Hopkinton-Hopkinton Middle School,01390305, 94.7, 9.3, 37.8, 12.2, 2.0, 6.5 4.151111111111112,4.15,a-vale-i2,2021-22,Hopkinton-Hopkinton High,01390505, 93.4, 11.7, 48.8, 18.3, 3.5, 23.7 4.168888888888889,4.17,a-vale-i2,2021-22,Hopkinton-Elmwood,01390010, 93.8, 11.1, 46.8, 18.5, 2.2, 9.2 -4.208888888888889,4.21,a-vale-i2,2021-22,Hopkinton-Hopkins Elementary School,01390015, 94.7, 9.4, 42.5, 10.2, 0.3, 10.7 4.1288888888888895,4.13,a-vale-i2,2021-22,Hopkinton-Marathon Elementary School,01390005, 92.9, 12.4, 55.7, 23.3, 3.8, 5.7 +3.9155555555555552,3.92,a-vale-i2,2021-22,Hopkinton-Hopkinton Pre-School,01390003, 88.1, 17.5, 71.6, 47.1, 16.7, 28.4 +4.208888888888889,4.21,a-vale-i2,2021-22,Hopkinton-Hopkins Elementary School,01390015, 94.7, 9.4, 42.5, 10.2, 0.3, 10.7 +4.102222222222222,4.1,a-vale-i2,2021-22,Hudson-Mulready Elementary,01410007, 92.3, 13.3, 58.1, 31.3, 2.8, 43.1 +4.04,4.04,a-vale-i2,2021-22,Hudson-Hudson High,01410505, 90.9, 15.6, 54.0, 31.9, 9.9, 13.9 +4.133333333333334,4.13,a-vale-i2,2021-22,Hudson-David J. Quinn Middle School,01410410, 93.0, 12.3, 50.4, 22.7, 4.4, 33.3 4.16,4.16,a-vale-i2,2021-22,Hudson-Forest Avenue Elementary,01410015, 93.6, 11.2, 51.2, 17.8, 2.1, 18.1 4.133333333333334,4.13,a-vale-i2,2021-22,Hudson-C A Farley,01410030, 93.0, 12.1, 54.9, 25.1, 3.4, 29.7 -4.133333333333334,4.13,a-vale-i2,2021-22,Hudson-David J. Quinn Middle School,01410410, 93.0, 12.3, 50.4, 22.7, 4.4, 33.3 -4.04,4.04,a-vale-i2,2021-22,Hudson-Hudson High,01410505, 90.9, 15.6, 54.0, 31.9, 9.9, 13.9 -4.102222222222222,4.1,a-vale-i2,2021-22,Hudson-Mulready Elementary,01410007, 92.3, 13.3, 58.1, 31.3, 2.8, 43.1 -4.115555555555555,4.12,a-vale-i2,2021-22,Hull-Hull High,01420505, 92.6, 13.1, 48.2, 22.9, 4.8, 27.7 4.133333333333334,4.13,a-vale-i2,2021-22,Hull-Memorial Middle,01420305, 93.0, 12.3, 59.1, 19.9, 3.3, 22.7 4.044444444444444,4.04,a-vale-i2,2021-22,Hull-Lillian M Jacobs,01420015, 91.0, 15.4, 68.5, 37.8, 5.8, 32.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Hull-Hull High,01420505, 92.6, 13.1, 48.2, 22.9, 4.8, 27.7 4.088888888888889,4.09,a-vale-i2,2021-22,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 92.0, 14.1, 58.1, 25.7, 4.4, 13.5 -4.195555555555556,4.2,a-vale-i2,2021-22,Ipswich-Winthrop,01440015, 94.4, 9.7, 44.9, 10.7, 0.2, 0.5 4.226666666666667,4.23,a-vale-i2,2021-22,Ipswich-Ipswich High,01440505, 95.1, 8.6, 28.8, 9.8, 2.3, 1.9 -4.204444444444444,4.2,a-vale-i2,2021-22,Ipswich-Paul F Doyon Memorial,01440007, 94.6, 9.5, 42.4, 11.0, 0.8, 0.0 4.182222222222222,4.18,a-vale-i2,2021-22,Ipswich-Ipswich Middle School,01440305, 94.1, 10.5, 45.5, 11.2, 2.2, 22.1 +4.204444444444444,4.2,a-vale-i2,2021-22,Ipswich-Paul F Doyon Memorial,01440007, 94.6, 9.5, 42.4, 11.0, 0.8, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Ipswich-Winthrop,01440015, 94.4, 9.7, 44.9, 10.7, 0.2, 0.5 4.008888888888889,4.01,a-vale-i2,2021-22,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 90.2, 16.9, 64.3, 41.6, 10.8, 50.2 4.097777777777778,4.1,a-vale-i2,2021-22,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 92.2, 14.1, 56.6, 22.9, 5.6, 20.9 -4.111111111111111,4.11,a-vale-i2,2021-22,King Philip-King Philip Middle School,06900510, 92.5, 13.4, 47.9, 20.5, 4.8, 26.4 4.075555555555556,4.08,a-vale-i2,2021-22,King Philip-King Philip Regional High,06900505, 91.7, 14.6, 59.5, 23.2, 6.1, 33.9 +4.111111111111111,4.11,a-vale-i2,2021-22,King Philip-King Philip Middle School,06900510, 92.5, 13.4, 47.9, 20.5, 4.8, 26.4 4.1288888888888895,4.13,a-vale-i2,2021-22,Kingston-Kingston Elementary,01450005, 92.9, 12.4, 61.2, 21.3, 2.1, 39.0 4.155555555555556,4.16,a-vale-i2,2021-22,Kingston-Kingston Intermediate,01450020, 93.5, 11.6, 55.7, 18.3, 1.2, 0.0 3.782222222222222,3.78,a-vale-i2,2021-22,Lawrence-Lawrence High School,01490515, 85.1, 24.8, 60.3, 43.3, 24.4, 27.3 -3.9377777777777774,3.94,a-vale-i2,2021-22,Lawrence-UP Academy Oliver Middle School,01490049, 88.6, 19.3, 73.3, 42.3, 13.9, 0.0 -3.8844444444444446,3.88,a-vale-i2,2021-22,Lawrence-UP Academy Leonard Middle School,01490090, 87.4, 22.0, 69.8, 44.5, 16.9, 0.0 -3.9511111111111115,3.95,a-vale-i2,2021-22,Lawrence-Spark Academy,01490085, 88.9, 19.4, 68.5, 40.7, 13.0, 0.0 -4.035555555555556,4.04,a-vale-i2,2021-22,Lawrence-Emily G Wetherbee,01490080, 90.8, 15.8, 67.0, 36.8, 6.1, 0.0 -4.017777777777778,4.02,a-vale-i2,2021-22,Lawrence-John K Tarbox,01490075, 90.4, 17.0, 68.4, 34.7, 10.2, 0.0 -3.9733333333333336,3.97,a-vale-i2,2021-22,Lawrence-Robert Frost,01490018, 89.4, 18.1, 76.6, 44.8, 7.7, 0.0 -3.8444444444444446,3.84,a-vale-i2,2021-22,Lawrence-James F Hennessey,01490020, 86.5, 22.3, 77.9, 57.6, 20.3, 0.0 -3.5555555555555554,3.56,a-vale-i2,2021-22,Lawrence-RISE Academy,01490615, 80.0, 31.6, 75.3, 67.1, 42.5, 0.0 -3.7155555555555555,3.72,a-vale-i2,2021-22,Lawrence-School for Exceptional Studies,01490537, 83.6, 27.9, 73.1, 57.0, 26.9, 0.0 +3.8355555555555556,3.84,a-vale-i2,2021-22,Lawrence-Lawlor Early Childhood Center,01490002, 86.3, 21.6, 83.2, 60.9, 20.1, 0.0 3.6133333333333333,3.61,a-vale-i2,2021-22,Lawrence-High School Learning Center,01490536, 81.3, 30.8, 46.0, 41.2, 35.4, 1.3 -3.933333333333333,3.93,a-vale-i2,2021-22,Lawrence-South Lawrence East Elementary School,01490004, 88.5, 19.8, 76.2, 48.6, 12.3, 0.0 +3.7155555555555555,3.72,a-vale-i2,2021-22,Lawrence-School for Exceptional Studies,01490537, 83.6, 27.9, 73.1, 57.0, 26.9, 0.0 +3.5555555555555554,3.56,a-vale-i2,2021-22,Lawrence-RISE Academy,01490615, 80.0, 31.6, 75.3, 67.1, 42.5, 0.0 3.8,3.8,a-vale-i2,2021-22,Lawrence-John Breen School,01490003, 85.5, 21.7, 84.5, 63.0, 24.0, 0.0 +3.933333333333333,3.93,a-vale-i2,2021-22,Lawrence-South Lawrence East Elementary School,01490004, 88.5, 19.8, 76.2, 48.6, 12.3, 0.0 3.977777777777778,3.98,a-vale-i2,2021-22,Lawrence-Arlington Elementary,01490009, 89.5, 17.9, 71.3, 42.5, 13.6, 0.0 3.7555555555555555,3.76,a-vale-i2,2021-22,Lawrence-Lawrence Family Public Academy,01490011, 84.5, 24.1, 82.2, 64.0, 26.2, 0.0 4.0311111111111115,4.03,a-vale-i2,2021-22,Lawrence-Alexander B Bruce,01490015, 90.7, 15.8, 61.4, 34.4, 10.0, 0.0 4.026666666666666,4.03,a-vale-i2,2021-22,Lawrence-Arlington Middle School,01490017, 90.6, 16.4, 57.8, 32.6, 10.9, 0.0 -4.115555555555555,4.12,a-vale-i2,2021-22,Lawrence-Frost Middle School,01490525, 92.6, 12.9, 49.7, 23.0, 4.3, 0.0 +3.9733333333333336,3.97,a-vale-i2,2021-22,Lawrence-Robert Frost,01490018, 89.4, 18.1, 76.6, 44.8, 7.7, 0.0 +3.8444444444444446,3.84,a-vale-i2,2021-22,Lawrence-James F Hennessey,01490020, 86.5, 22.3, 77.9, 57.6, 20.3, 0.0 3.911111111111111,3.91,a-vale-i2,2021-22,Lawrence-Gerard A. Guilmette,01490022, 88.0, 20.3, 78.1, 46.4, 14.7, 0.0 4.04,4.04,a-vale-i2,2021-22,Lawrence-Guilmette Middle School,01490025, 90.9, 15.6, 64.5, 32.5, 7.1, 0.0 4.115555555555555,4.12,a-vale-i2,2021-22,Lawrence-Parthum Middle School,01490027, 92.6, 12.7, 55.9, 24.1, 3.9, 0.0 3.933333333333333,3.93,a-vale-i2,2021-22,Lawrence-Francis M Leahy,01490040, 88.5, 19.6, 70.7, 45.8, 15.5, 0.0 3.933333333333333,3.93,a-vale-i2,2021-22,Lawrence-Oliver Partnership School,01490048, 88.5, 19.7, 76.8, 48.4, 12.8, 0.0 -3.8355555555555556,3.84,a-vale-i2,2021-22,Lawrence-Lawlor Early Childhood Center,01490002, 86.3, 21.6, 83.2, 60.9, 20.1, 0.0 -3.6799999999999997,3.68,a-vale-i2,2021-22,Lawrence-Rollins Early Childhood Center,01490001, 82.8, 27.1, 92.2, 74.8, 34.3, 0.0 +3.9377777777777774,3.94,a-vale-i2,2021-22,Lawrence-UP Academy Oliver Middle School,01490049, 88.6, 19.3, 73.3, 42.3, 13.9, 0.0 3.977777777777778,3.98,a-vale-i2,2021-22,Lawrence-Edward F. Parthum,01490053, 89.5, 18.4, 75.6, 43.0, 10.0, 0.0 +4.017777777777778,4.02,a-vale-i2,2021-22,Lawrence-John K Tarbox,01490075, 90.4, 17.0, 68.4, 34.7, 10.2, 0.0 +4.035555555555556,4.04,a-vale-i2,2021-22,Lawrence-Emily G Wetherbee,01490080, 90.8, 15.8, 67.0, 36.8, 6.1, 0.0 +3.9511111111111115,3.95,a-vale-i2,2021-22,Lawrence-Spark Academy,01490085, 88.9, 19.4, 68.5, 40.7, 13.0, 0.0 +3.8844444444444446,3.88,a-vale-i2,2021-22,Lawrence-UP Academy Leonard Middle School,01490090, 87.4, 22.0, 69.8, 44.5, 16.9, 0.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Lawrence-Frost Middle School,01490525, 92.6, 12.9, 49.7, 23.0, 4.3, 0.0 +3.6799999999999997,3.68,a-vale-i2,2021-22,Lawrence-Rollins Early Childhood Center,01490001, 82.8, 27.1, 92.2, 74.8, 34.3, 0.0 4.24,4.24,a-vale-i2,2021-22,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 95.4, 8.2, 34.1, 7.4, 0.2, 6.0 4.088888888888889,4.09,a-vale-i2,2021-22,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 92.0, 14.0, 60.9, 31.2, 6.1, 37.8 4.08,4.08,a-vale-i2,2021-22,Lee-Lee Middle/High School,01500505, 91.8, 14.3, 52.7, 25.6, 5.4, 15.7 4.137777777777777,4.14,a-vale-i2,2021-22,Lee-Lee Elementary,01500025, 93.1, 12.0, 53.9, 22.4, 2.3, 1.5 4.137777777777777,4.14,a-vale-i2,2021-22,Leicester-Leicester Integrated Preschool,01510001, 93.1, 10.7, 45.5, 20.0, 3.6, 0.0 +4.035555555555556,4.04,a-vale-i2,2021-22,Leicester-Leicester High,01510505, 90.8, 15.9, 65.3, 32.0, 9.4, 47.0 4.071111111111111,4.07,a-vale-i2,2021-22,Leicester-Leicester Elementary,01510005, 91.6, 14.5, 67.1, 32.1, 4.2, 44.1 4.062222222222222,4.06,a-vale-i2,2021-22,Leicester-Leicester Middle,01510015, 91.4, 15.1, 65.1, 32.1, 5.7, 0.7 -4.035555555555556,4.04,a-vale-i2,2021-22,Leicester-Leicester High,01510505, 90.8, 15.9, 65.3, 32.0, 9.4, 47.0 -4.1466666666666665,4.15,a-vale-i2,2021-22,Lenox-Morris,01520015, 93.3, 11.9, 56.6, 20.6, 1.6, 0.0 4.204444444444444,4.2,a-vale-i2,2021-22,Lenox-Lenox Memorial High,01520505, 94.6, 9.5, 32.9, 15.7, 2.1, 2.8 +4.1466666666666665,4.15,a-vale-i2,2021-22,Lenox-Morris,01520015, 93.3, 11.9, 56.6, 20.6, 1.6, 0.0 +4.062222222222222,4.06,a-vale-i2,2021-22,Leominster-Northwest,01530030, 91.4, 15.0, 64.2, 31.1, 7.1, 52.3 +4.111111111111111,4.11,a-vale-i2,2021-22,Leominster-Johnny Appleseed,01530025, 92.5, 13.4, 59.1, 26.1, 4.2, 58.7 4.088888888888889,4.09,a-vale-i2,2021-22,Leominster-Frances Drake School,01530010, 92.0, 13.8, 61.4, 27.9, 4.7, 50.8 4.168888888888889,4.17,a-vale-i2,2021-22,Leominster-Fall Brook,01530007, 93.8, 11.0, 54.2, 14.6, 0.7, 42.8 -4.111111111111111,4.11,a-vale-i2,2021-22,Leominster-Johnny Appleseed,01530025, 92.5, 13.4, 59.1, 26.1, 4.2, 58.7 -4.062222222222222,4.06,a-vale-i2,2021-22,Leominster-Northwest,01530030, 91.4, 15.0, 64.2, 31.1, 7.1, 52.3 4.124444444444444,4.12,a-vale-i2,2021-22,Leominster-Lincoln School,01530005, 92.8, 11.4, 55.6, 16.7, 2.8, 55.6 3.9466666666666663,3.95,a-vale-i2,2021-22,Leominster-Bennett,01530003, 88.8, 14.1, 63.2, 49.1, 12.3, 0.0 -4.106666666666667,4.11,a-vale-i2,2021-22,Leominster-Samoset School,01530045, 92.4, 13.5, 59.1, 25.1, 4.9, 41.7 4.013333333333334,4.01,a-vale-i2,2021-22,Leominster-Priest Street,01530040, 90.3, 16.5, 71.6, 38.3, 7.4, 58.6 -4.062222222222222,4.06,a-vale-i2,2021-22,Leominster-Sky View Middle School,01530320, 91.4, 15.2, 60.6, 32.9, 6.4, 49.6 4.08,4.08,a-vale-i2,2021-22,Leominster-Center For Technical Education Innovation,01530605, 91.8, 14.7, 61.9, 30.2, 6.3, 41.3 3.826666666666666,3.83,a-vale-i2,2021-22,Leominster-Leominster Center for Excellence,01530515, 86.1, 23.0, 76.7, 58.1, 27.9, 67.4 3.991111111111111,3.99,a-vale-i2,2021-22,Leominster-Leominster High School,01530505, 89.8, 17.7, 65.5, 37.7, 12.6, 47.9 +4.062222222222222,4.06,a-vale-i2,2021-22,Leominster-Sky View Middle School,01530320, 91.4, 15.2, 60.6, 32.9, 6.4, 49.6 +4.106666666666667,4.11,a-vale-i2,2021-22,Leominster-Samoset School,01530045, 92.4, 13.5, 59.1, 25.1, 4.9, 41.7 4.111111111111111,4.11,a-vale-i2,2021-22,Leverett-Leverett Elementary,01540005, 92.5, 13.1, 60.3, 21.2, 4.1, 6.2 -4.24,4.24,a-vale-i2,2021-22,Lexington-Joseph Estabrook,01550010, 95.4, 8.3, 33.5, 7.4, 0.0, 10.6 -4.266666666666667,4.27,a-vale-i2,2021-22,Lexington-Fiske,01550015, 96.0, 7.1, 26.7, 5.0, 0.3, 4.2 -4.257777777777777,4.26,a-vale-i2,2021-22,Lexington-Harrington,01550030, 95.8, 7.5, 29.8, 7.0, 0.5, 7.5 -4.262222222222222,4.26,a-vale-i2,2021-22,Lexington-Maria Hastings,01550035, 95.9, 7.3, 27.9, 5.0, 0.8, 6.3 -4.302222222222222,4.3,a-vale-i2,2021-22,Lexington-Jonas Clarke Middle,01550305, 96.8, 5.6, 17.3, 5.5, 0.4, 3.9 -4.248888888888889,4.25,a-vale-i2,2021-22,Lexington-Wm Diamond Middle,01550310, 95.6, 7.8, 28.7, 8.5, 1.6, 5.7 -4.248888888888889,4.25,a-vale-i2,2021-22,Lexington-Lexington High,01550505, 95.6, 7.8, 26.9, 9.1, 1.9, 2.0 -4.08,4.08,a-vale-i2,2021-22,Lexington-Lexington Children's Place,01550001, 91.8, 13.8, 50.6, 25.3, 6.0, 1.2 4.24,4.24,a-vale-i2,2021-22,Lexington-Bridge,01550006, 95.4, 7.9, 27.3, 9.4, 2.3, 6.8 4.262222222222222,4.26,a-vale-i2,2021-22,Lexington-Bowman,01550008, 95.9, 7.2, 27.2, 5.6, 0.4, 3.7 +4.24,4.24,a-vale-i2,2021-22,Lexington-Joseph Estabrook,01550010, 95.4, 8.3, 33.5, 7.4, 0.0, 10.6 +4.248888888888889,4.25,a-vale-i2,2021-22,Lexington-Lexington High,01550505, 95.6, 7.8, 26.9, 9.1, 1.9, 2.0 +4.302222222222222,4.3,a-vale-i2,2021-22,Lexington-Jonas Clarke Middle,01550305, 96.8, 5.6, 17.3, 5.5, 0.4, 3.9 +4.262222222222222,4.26,a-vale-i2,2021-22,Lexington-Maria Hastings,01550035, 95.9, 7.3, 27.9, 5.0, 0.8, 6.3 +4.257777777777777,4.26,a-vale-i2,2021-22,Lexington-Harrington,01550030, 95.8, 7.5, 29.8, 7.0, 0.5, 7.5 +4.266666666666667,4.27,a-vale-i2,2021-22,Lexington-Fiske,01550015, 96.0, 7.1, 26.7, 5.0, 0.3, 4.2 +4.08,4.08,a-vale-i2,2021-22,Lexington-Lexington Children's Place,01550001, 91.8, 13.8, 50.6, 25.3, 6.0, 1.2 +4.248888888888889,4.25,a-vale-i2,2021-22,Lexington-Wm Diamond Middle,01550310, 95.6, 7.8, 28.7, 8.5, 1.6, 5.7 4.155555555555556,4.16,a-vale-i2,2021-22,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 93.5, 10.7, 41.1, 17.1, 5.7, 38.6 -4.062222222222222,4.06,a-vale-i2,2021-22,Lincoln-Hanscom Primary,01570006, 91.4, 13.7, 61.3, 33.9, 6.7, 61.0 -4.164444444444444,4.16,a-vale-i2,2021-22,Lincoln-Lincoln School,01570025, 93.7, 11.0, 51.2, 17.2, 1.1, 50.1 4.133333333333334,4.13,a-vale-i2,2021-22,Lincoln-Hanscom Middle,01570305, 93.0, 11.5, 49.4, 23.9, 3.7, 49.4 +4.164444444444444,4.16,a-vale-i2,2021-22,Lincoln-Lincoln School,01570025, 93.7, 11.0, 51.2, 17.2, 1.1, 50.1 +4.062222222222222,4.06,a-vale-i2,2021-22,Lincoln-Hanscom Primary,01570006, 91.4, 13.7, 61.3, 33.9, 6.7, 61.0 4.226666666666667,4.23,a-vale-i2,2021-22,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 95.1, 8.6, 28.4, 9.0, 1.8, 0.3 +4.115555555555555,4.12,a-vale-i2,2021-22,Littleton-Littleton High School,01580505, 92.6, 13.0, 40.2, 18.0, 6.0, 6.7 +4.1466666666666665,4.15,a-vale-i2,2021-22,Littleton-Shaker Lane Elementary,01580005, 93.3, 11.7, 51.4, 20.0, 3.2, 31.3 4.168888888888889,4.17,a-vale-i2,2021-22,Littleton-Littleton Middle School,01580305, 93.8, 11.1, 38.7, 16.4, 3.2, 2.5 4.168888888888889,4.17,a-vale-i2,2021-22,Littleton-Russell St Elementary,01580015, 93.8, 11.0, 51.4, 16.4, 1.0, 2.1 -4.1466666666666665,4.15,a-vale-i2,2021-22,Littleton-Shaker Lane Elementary,01580005, 93.3, 11.7, 51.4, 20.0, 3.2, 31.3 -4.115555555555555,4.12,a-vale-i2,2021-22,Littleton-Littleton High School,01580505, 92.6, 13.0, 40.2, 18.0, 6.0, 6.7 -4.222222222222222,4.22,a-vale-i2,2021-22,Longmeadow-Center,01590010, 95.0, 9.0, 38.5, 9.1, 0.7, 0.7 -4.182222222222222,4.18,a-vale-i2,2021-22,Longmeadow-Blueberry Hill,01590005, 94.1, 10.5, 44.4, 14.1, 1.7, 1.0 -4.231111111111111,4.23,a-vale-i2,2021-22,Longmeadow-Williams Middle,01590305, 95.2, 8.5, 32.8, 10.2, 0.6, 0.0 -4.182222222222222,4.18,a-vale-i2,2021-22,Longmeadow-Wolf Swamp Road,01590025, 94.1, 10.2, 45.2, 13.6, 1.2, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Longmeadow-Glenbrook Middle,01590017, 94.9, 9.0, 36.8, 10.9, 1.8, 2.1 4.191111111111111,4.19,a-vale-i2,2021-22,Longmeadow-Longmeadow High,01590505, 94.3, 9.9, 38.4, 16.0, 4.3, 1.3 -2.7377777777777776,2.74,a-vale-i2,2021-22,Lowell-Leblanc Therapeutic Day School,01600320, 61.6, 62.3, 85.4, 82.9, 70.7, 75.6 -4.151111111111112,4.15,a-vale-i2,2021-22,Lowell-James S Daley Middle School,01600315, 93.4, 11.3, 46.3, 22.6, 3.8, 28.2 +4.182222222222222,4.18,a-vale-i2,2021-22,Longmeadow-Blueberry Hill,01590005, 94.1, 10.5, 44.4, 14.1, 1.7, 1.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Longmeadow-Center,01590010, 95.0, 9.0, 38.5, 9.1, 0.7, 0.7 +4.217777777777778,4.22,a-vale-i2,2021-22,Longmeadow-Glenbrook Middle,01590017, 94.9, 9.0, 36.8, 10.9, 1.8, 2.1 +4.182222222222222,4.18,a-vale-i2,2021-22,Longmeadow-Wolf Swamp Road,01590025, 94.1, 10.2, 45.2, 13.6, 1.2, 0.0 +4.231111111111111,4.23,a-vale-i2,2021-22,Longmeadow-Williams Middle,01590305, 95.2, 8.5, 32.8, 10.2, 0.6, 0.0 3.933333333333333,3.93,a-vale-i2,2021-22,Lowell-Cardinal O'Connell Early Learning Center,01600001, 88.5, 17.2, 67.6, 48.1, 13.0, 66.7 -3.911111111111111,3.91,a-vale-i2,2021-22,Lowell-Henry J Robinson Middle,01600330, 88.0, 20.3, 75.1, 51.9, 14.5, 53.1 -3.9511111111111115,3.95,a-vale-i2,2021-22,Lowell-Bartlett Community Partnership,01600090, 88.9, 17.9, 66.2, 44.7, 14.1, 47.7 -4.088888888888889,4.09,a-vale-i2,2021-22,Lowell-Charles W Morey,01600030, 92.0, 13.6, 58.6, 30.9, 3.8, 38.2 -4.08,4.08,a-vale-i2,2021-22,Lowell-Pawtucketville Memorial,01600036, 91.8, 13.8, 61.0, 30.4, 4.4, 34.0 -4.053333333333334,4.05,a-vale-i2,2021-22,Lowell-Peter W Reilly,01600040, 91.2, 14.9, 59.2, 32.7, 8.5, 42.4 -4.008888888888889,4.01,a-vale-i2,2021-22,Lowell-John J Shaughnessy,01600050, 90.2, 16.1, 64.6, 37.6, 7.9, 50.6 -3.986666666666667,3.99,a-vale-i2,2021-22,Lowell-Washington,01600055, 89.7, 17.2, 74.8, 43.9, 8.4, 53.8 -3.9644444444444447,3.96,a-vale-i2,2021-22,Lowell-S Christa McAuliffe Elementary,01600075, 89.2, 17.8, 77.3, 47.5, 9.6, 54.0 -4.066666666666666,4.07,a-vale-i2,2021-22,Lowell-B.F. Butler Middle School,01600310, 91.5, 14.5, 58.6, 32.3, 6.9, 39.6 -4.004444444444444,4.0,a-vale-i2,2021-22,Lowell-James Sullivan Middle School,01600340, 90.1, 17.0, 67.2, 39.3, 10.6, 47.5 -4.093333333333333,4.09,a-vale-i2,2021-22,Lowell-Dr An Wang School,01600345, 92.1, 13.7, 55.8, 28.1, 5.8, 34.8 -4.08,4.08,a-vale-i2,2021-22,Lowell-Kathryn P. Stoklosa Middle School,01600360, 91.8, 14.3, 57.3, 29.5, 6.4, 31.2 -3.871111111111111,3.87,a-vale-i2,2021-22,Lowell-Lowell High,01600505, 87.1, 21.3, 63.2, 42.0, 19.7, 48.9 -3.1155555555555554,3.12,a-vale-i2,2021-22,Lowell-The Career Academy,01600515, 70.1, 46.4, 67.4, 63.2, 49.5, 62.1 -3.897777777777778,3.9,a-vale-i2,2021-22,Lowell-Dr. Janice Adie Day School,01600605, 87.7, 22.0, 70.0, 46.0, 14.0, 54.0 4.053333333333334,4.05,a-vale-i2,2021-22,Lowell-Dr Gertrude Bailey,01600002, 91.2, 15.0, 65.3, 35.1, 6.5, 31.7 3.991111111111111,3.99,a-vale-i2,2021-22,Lowell-Rogers STEM Academy,01600005, 89.8, 17.4, 65.2, 38.8, 11.4, 51.4 3.9955555555555557,4.0,a-vale-i2,2021-22,Lowell-Joseph McAvinnue,01600010, 89.9, 17.0, 69.9, 42.7, 9.6, 49.5 @@ -10072,31 +10055,46 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.08,4.08,a-vale-i2,2021-22,Lowell-Pyne Arts,01600018, 91.8, 13.5, 57.5, 30.3, 5.1, 34.8 4.062222222222222,4.06,a-vale-i2,2021-22,Lowell-Abraham Lincoln,01600020, 91.4, 14.4, 68.3, 35.6, 3.8, 44.4 4.004444444444444,4.0,a-vale-i2,2021-22,Lowell-Moody Elementary,01600027, 90.1, 16.5, 67.9, 43.1, 9.2, 44.7 +4.088888888888889,4.09,a-vale-i2,2021-22,Lowell-Charles W Morey,01600030, 92.0, 13.6, 58.6, 30.9, 3.8, 38.2 +4.08,4.08,a-vale-i2,2021-22,Lowell-Pawtucketville Memorial,01600036, 91.8, 13.8, 61.0, 30.4, 4.4, 34.0 +4.053333333333334,4.05,a-vale-i2,2021-22,Lowell-Peter W Reilly,01600040, 91.2, 14.9, 59.2, 32.7, 8.5, 42.4 +4.008888888888889,4.01,a-vale-i2,2021-22,Lowell-John J Shaughnessy,01600050, 90.2, 16.1, 64.6, 37.6, 7.9, 50.6 +3.986666666666667,3.99,a-vale-i2,2021-22,Lowell-Washington,01600055, 89.7, 17.2, 74.8, 43.9, 8.4, 53.8 +3.9644444444444447,3.96,a-vale-i2,2021-22,Lowell-S Christa McAuliffe Elementary,01600075, 89.2, 17.8, 77.3, 47.5, 9.6, 54.0 4.04,4.04,a-vale-i2,2021-22,Lowell-Charlotte M Murkland Elementary,01600080, 90.9, 15.2, 63.2, 36.4, 7.4, 47.9 3.591111111111111,3.59,a-vale-i2,2021-22,Lowell-Laura Lee Therapeutic Day School,01600085, 80.8, 32.7, 68.4, 63.2, 31.6, 42.1 +3.9511111111111115,3.95,a-vale-i2,2021-22,Lowell-Bartlett Community Partnership,01600090, 88.9, 17.9, 66.2, 44.7, 14.1, 47.7 +4.066666666666666,4.07,a-vale-i2,2021-22,Lowell-B.F. Butler Middle School,01600310, 91.5, 14.5, 58.6, 32.3, 6.9, 39.6 +4.151111111111112,4.15,a-vale-i2,2021-22,Lowell-James S Daley Middle School,01600315, 93.4, 11.3, 46.3, 22.6, 3.8, 28.2 +2.7377777777777776,2.74,a-vale-i2,2021-22,Lowell-Leblanc Therapeutic Day School,01600320, 61.6, 62.3, 85.4, 82.9, 70.7, 75.6 +3.911111111111111,3.91,a-vale-i2,2021-22,Lowell-Henry J Robinson Middle,01600330, 88.0, 20.3, 75.1, 51.9, 14.5, 53.1 +4.004444444444444,4.0,a-vale-i2,2021-22,Lowell-James Sullivan Middle School,01600340, 90.1, 17.0, 67.2, 39.3, 10.6, 47.5 +4.093333333333333,4.09,a-vale-i2,2021-22,Lowell-Dr An Wang School,01600345, 92.1, 13.7, 55.8, 28.1, 5.8, 34.8 +4.08,4.08,a-vale-i2,2021-22,Lowell-Kathryn P. Stoklosa Middle School,01600360, 91.8, 14.3, 57.3, 29.5, 6.4, 31.2 +3.871111111111111,3.87,a-vale-i2,2021-22,Lowell-Lowell High,01600505, 87.1, 21.3, 63.2, 42.0, 19.7, 48.9 +3.1155555555555554,3.12,a-vale-i2,2021-22,Lowell-The Career Academy,01600515, 70.1, 46.4, 67.4, 63.2, 49.5, 62.1 +3.897777777777778,3.9,a-vale-i2,2021-22,Lowell-Dr. Janice Adie Day School,01600605, 87.7, 22.0, 70.0, 46.0, 14.0, 54.0 4.177777777777778,4.18,a-vale-i2,2021-22,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 94.0, 10.9, 44.2, 15.7, 2.7, 16.5 2.088888888888889,2.09,a-vale-i2,2021-22,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 47.0, 65.1, 96.0, 95.2, 82.5, 0.0 4.062222222222222,4.06,a-vale-i2,2021-22,Ludlow-East Street Elementary School,01610010, 91.4, 14.4, 67.1, 30.2, 3.7, 42.0 4.106666666666667,4.11,a-vale-i2,2021-22,Ludlow-Paul R Baird Middle,01610305, 92.4, 13.6, 58.5, 25.5, 5.6, 32.8 -4.115555555555555,4.12,a-vale-i2,2021-22,Ludlow-Ludlow Senior High,01610505, 92.6, 13.1, 54.9, 22.7, 5.2, 19.9 4.16,4.16,a-vale-i2,2021-22,Ludlow-Harris Brook Elementary School,01610665, 93.6, 11.4, 53.1, 16.9, 1.9, 29.3 +4.115555555555555,4.12,a-vale-i2,2021-22,Ludlow-Ludlow Senior High,01610505, 92.6, 13.1, 54.9, 22.7, 5.2, 19.9 +4.124444444444444,4.12,a-vale-i2,2021-22,Lunenburg-Lunenburg High,01620505, 92.8, 12.5, 51.9, 22.0, 5.0, 11.4 +4.164444444444444,4.16,a-vale-i2,2021-22,Lunenburg-Lunenburg Middle School,01620305, 93.7, 11.2, 47.7, 18.9, 2.2, 7.4 4.124444444444444,4.12,a-vale-i2,2021-22,Lunenburg-Lunenburg Primary School,01620010, 92.8, 12.4, 54.0, 21.2, 4.5, 1.5 4.168888888888889,4.17,a-vale-i2,2021-22,Lunenburg-Turkey Hill Elementary School,01620025, 93.8, 10.8, 51.2, 16.4, 0.5, 2.2 -4.164444444444444,4.16,a-vale-i2,2021-22,Lunenburg-Lunenburg Middle School,01620305, 93.7, 11.2, 47.7, 18.9, 2.2, 7.4 -4.124444444444444,4.12,a-vale-i2,2021-22,Lunenburg-Lunenburg High,01620505, 92.8, 12.5, 51.9, 22.0, 5.0, 11.4 -4.0311111111111115,4.03,a-vale-i2,2021-22,Lynn-Capt William G Shoemaker,01630090, 90.7, 16.4, 68.8, 37.9, 9.6, 0.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Lynn-Sewell-Anderson,01630085, 92.3, 13.3, 60.6, 29.4, 3.8, 0.0 +4.035555555555556,4.04,a-vale-i2,2021-22,Lynn-Wm P Connery,01630040, 90.8, 15.7, 60.1, 35.9, 7.4, 0.0 +3.8666666666666667,3.87,a-vale-i2,2021-22,Lynn-Julia F Callahan,01630030, 87.0, 22.3, 73.7, 50.3, 16.4, 0.0 +4.08,4.08,a-vale-i2,2021-22,Lynn-Robert L Ford,01630050, 91.8, 14.3, 58.2, 31.3, 7.8, 0.0 3.982222222222222,3.98,a-vale-i2,2021-22,Lynn-Hood,01630055, 89.6, 17.9, 66.2, 40.2, 11.7, 0.0 4.004444444444444,4.0,a-vale-i2,2021-22,Lynn-Ingalls,01630060, 90.1, 16.8, 67.7, 42.8, 10.6, 0.0 -3.9066666666666667,3.91,a-vale-i2,2021-22,Lynn-Washington Elementary School,01630005, 87.9, 20.9, 69.1, 47.4, 15.2, 0.0 -4.124444444444444,4.12,a-vale-i2,2021-22,Lynn-Aborn,01630011, 92.8, 12.3, 52.5, 22.1, 3.3, 0.0 -4.093333333333333,4.09,a-vale-i2,2021-22,Lynn-A Drewicz Elementary,01630016, 92.1, 13.6, 57.6, 32.1, 3.2, 0.0 -4.022222222222222,4.02,a-vale-i2,2021-22,Lynn-Brickett Elementary,01630020, 90.5, 16.4, 71.0, 42.3, 8.0, 0.0 -3.8666666666666667,3.87,a-vale-i2,2021-22,Lynn-Julia F Callahan,01630030, 87.0, 22.3, 73.7, 50.3, 16.4, 0.0 -4.04,4.04,a-vale-i2,2021-22,Lynn-Cobbet Elementary,01630035, 90.9, 15.7, 63.0, 36.0, 9.0, 0.0 -4.035555555555556,4.04,a-vale-i2,2021-22,Lynn-Wm P Connery,01630040, 90.8, 15.7, 60.1, 35.9, 7.4, 0.0 -3.9066666666666667,3.91,a-vale-i2,2021-22,Lynn-E J Harrington,01630045, 87.9, 20.3, 75.8, 50.2, 17.3, 0.0 -4.08,4.08,a-vale-i2,2021-22,Lynn-Robert L Ford,01630050, 91.8, 14.3, 58.2, 31.3, 7.8, 0.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Lynn-Lincoln-Thomson,01630070, 92.6, 12.5, 50.9, 26.2, 3.7, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Lynn-Lynn Woods,01630075, 93.0, 12.3, 55.0, 23.8, 2.5, 0.0 +4.013333333333334,4.01,a-vale-i2,2021-22,Lynn-William R Fallon,01630080, 90.3, 16.2, 72.0, 44.0, 4.0, 0.0 +4.102222222222222,4.1,a-vale-i2,2021-22,Lynn-Sewell-Anderson,01630085, 92.3, 13.3, 60.6, 29.4, 3.8, 0.0 +4.0311111111111115,4.03,a-vale-i2,2021-22,Lynn-Capt William G Shoemaker,01630090, 90.7, 16.4, 68.8, 37.9, 9.6, 0.0 +4.066666666666666,4.07,a-vale-i2,2021-22,Lynn-Edward A Sisson,01630095, 91.5, 14.8, 58.5, 28.5, 6.6, 0.0 4.097777777777778,4.1,a-vale-i2,2021-22,Lynn-Tracy,01630100, 92.2, 13.6, 57.7, 32.6, 3.8, 0.0 4.0488888888888885,4.05,a-vale-i2,2021-22,Lynn-Thurgood Marshall Mid,01630305, 91.1, 15.4, 57.1, 33.6, 9.8, 0.0 4.053333333333334,4.05,a-vale-i2,2021-22,Lynn-Breed Middle School,01630405, 91.2, 15.2, 58.2, 33.7, 8.9, 0.0 @@ -10105,10 +10103,12 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 3.591111111111111,3.59,a-vale-i2,2021-22,Lynn-Lynn English High,01630510, 80.8, 32.2, 79.1, 62.9, 37.8, 0.0 2.9733333333333336,2.97,a-vale-i2,2021-22,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 66.9, 53.5, 90.1, 85.7, 70.3, 0.0 4.04,4.04,a-vale-i2,2021-22,Lynn-Lynn Vocational Technical Institute,01630605, 90.9, 16.2, 55.1, 30.5, 9.9, 0.0 -4.066666666666666,4.07,a-vale-i2,2021-22,Lynn-Edward A Sisson,01630095, 91.5, 14.8, 58.5, 28.5, 6.6, 0.0 -4.013333333333334,4.01,a-vale-i2,2021-22,Lynn-William R Fallon,01630080, 90.3, 16.2, 72.0, 44.0, 4.0, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Lynn-Lynn Woods,01630075, 93.0, 12.3, 55.0, 23.8, 2.5, 0.0 -4.115555555555555,4.12,a-vale-i2,2021-22,Lynn-Lincoln-Thomson,01630070, 92.6, 12.5, 50.9, 26.2, 3.7, 0.0 +3.9066666666666667,3.91,a-vale-i2,2021-22,Lynn-E J Harrington,01630045, 87.9, 20.3, 75.8, 50.2, 17.3, 0.0 +4.04,4.04,a-vale-i2,2021-22,Lynn-Cobbet Elementary,01630035, 90.9, 15.7, 63.0, 36.0, 9.0, 0.0 +3.9066666666666667,3.91,a-vale-i2,2021-22,Lynn-Washington Elementary School,01630005, 87.9, 20.9, 69.1, 47.4, 15.2, 0.0 +4.124444444444444,4.12,a-vale-i2,2021-22,Lynn-Aborn,01630011, 92.8, 12.3, 52.5, 22.1, 3.3, 0.0 +4.093333333333333,4.09,a-vale-i2,2021-22,Lynn-A Drewicz Elementary,01630016, 92.1, 13.6, 57.6, 32.1, 3.2, 0.0 +4.022222222222222,4.02,a-vale-i2,2021-22,Lynn-Brickett Elementary,01630020, 90.5, 16.4, 71.0, 42.3, 8.0, 0.0 4.133333333333334,4.13,a-vale-i2,2021-22,Lynnfield-Lynnfield High,01640505, 93.0, 12.4, 54.0, 20.0, 3.0, 46.0 4.204444444444444,4.2,a-vale-i2,2021-22,Lynnfield-Lynnfield Middle School,01640405, 94.6, 9.7, 42.9, 11.2, 0.9, 24.2 4.168888888888889,4.17,a-vale-i2,2021-22,Lynnfield-Summer Street,01640020, 93.8, 11.1, 55.7, 14.7, 0.5, 0.0 @@ -10116,201 +10116,202 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 3.986666666666667,3.99,a-vale-i2,2021-22,Lynnfield-Lynnfield Preschool,01640005, 89.7, 14.4, 48.9, 28.9, 8.9, 0.0 3.977777777777778,3.98,a-vale-i2,2021-22,MATCH Charter Public School (District)-MATCH Charter Public School,04690505, 89.5, 18.4, 68.1, 39.6, 11.7, 44.8 4.426666666666667,4.43,a-vale-i2,2021-22,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 99.6, 0.7, 0.0, 0.0, 0.0, 0.0 -4.084444444444444,4.08,a-vale-i2,2021-22,Malden-Forestdale,01650027, 91.9, 13.6, 56.5, 29.8, 6.5, 30.8 -4.017777777777778,4.02,a-vale-i2,2021-22,Malden-Salemwood,01650057, 90.4, 15.9, 60.7, 38.1, 11.1, 47.3 -4.084444444444444,4.08,a-vale-i2,2021-22,Malden-Ferryway,01650013, 91.9, 13.4, 49.4, 28.5, 8.0, 42.1 4.12,4.12,a-vale-i2,2021-22,Malden-Beebe,01650003, 92.7, 12.3, 49.9, 27.0, 5.4, 33.5 -3.804444444444444,3.8,a-vale-i2,2021-22,Malden-Malden High,01650505, 85.6, 23.8, 63.6, 46.4, 25.7, 51.4 +4.084444444444444,4.08,a-vale-i2,2021-22,Malden-Ferryway,01650013, 91.9, 13.4, 49.4, 28.5, 8.0, 42.1 +4.084444444444444,4.08,a-vale-i2,2021-22,Malden-Forestdale,01650027, 91.9, 13.6, 56.5, 29.8, 6.5, 30.8 4.053333333333334,4.05,a-vale-i2,2021-22,Malden-Linden,01650047, 91.2, 14.6, 56.1, 32.9, 9.8, 41.9 3.8755555555555556,3.88,a-vale-i2,2021-22,Malden-Malden Early Learning Center,01650049, 87.2, 14.1, 52.8, 51.9, 19.3, 52.8 -4.182222222222222,4.18,a-vale-i2,2021-22,Manchester Essex Regional-Essex Elementary,06980020, 94.1, 10.5, 50.9, 11.2, 0.4, 8.5 -4.097777777777778,4.1,a-vale-i2,2021-22,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 92.2, 13.8, 59.4, 23.8, 5.1, 6.2 +4.017777777777778,4.02,a-vale-i2,2021-22,Malden-Salemwood,01650057, 90.4, 15.9, 60.7, 38.1, 11.1, 47.3 +3.804444444444444,3.8,a-vale-i2,2021-22,Malden-Malden High,01650505, 85.6, 23.8, 63.6, 46.4, 25.7, 51.4 4.182222222222222,4.18,a-vale-i2,2021-22,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 94.1, 10.3, 49.7, 10.6, 1.6, 6.1 +4.097777777777778,4.1,a-vale-i2,2021-22,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 92.2, 13.8, 59.4, 23.8, 5.1, 6.2 4.155555555555556,4.16,a-vale-i2,2021-22,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 93.5, 11.8, 51.2, 14.0, 3.2, 4.6 -4.2,4.2,a-vale-i2,2021-22,Mansfield-Jordan/Jackson Elementary,01670014, 94.5, 9.7, 39.0, 13.1, 1.8, 22.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Mansfield-Harold L Qualters Middle,01670035, 94.4, 9.9, 37.9, 13.7, 2.7, 18.5 +4.182222222222222,4.18,a-vale-i2,2021-22,Manchester Essex Regional-Essex Elementary,06980020, 94.1, 10.5, 50.9, 11.2, 0.4, 8.5 4.022222222222222,4.02,a-vale-i2,2021-22,Mansfield-Roland Green School,01670003, 90.5, 13.3, 70.3, 38.7, 3.6, 70.3 4.1466666666666665,4.15,a-vale-i2,2021-22,Mansfield-Mansfield High,01670505, 93.3, 11.8, 41.4, 16.9, 6.1, 15.6 +4.195555555555556,4.2,a-vale-i2,2021-22,Mansfield-Harold L Qualters Middle,01670035, 94.4, 9.9, 37.9, 13.7, 2.7, 18.5 4.182222222222222,4.18,a-vale-i2,2021-22,Mansfield-Everett W Robinson,01670007, 94.1, 10.4, 48.3, 13.2, 1.6, 15.0 +4.2,4.2,a-vale-i2,2021-22,Mansfield-Jordan/Jackson Elementary,01670014, 94.5, 9.7, 39.0, 13.1, 1.8, 22.0 1.9866666666666668,1.99,a-vale-i2,2021-22,Map Academy Charter School (District)-Map Academy Charter School,35170505, 44.7, 84.7, 96.9, 93.1, 83.9, 0.0 -4.16,4.16,a-vale-i2,2021-22,Marblehead-Marblehead Veterans Middle School,01680300, 93.6, 11.6, 49.5, 16.2, 2.3, 8.4 4.08,4.08,a-vale-i2,2021-22,Marblehead-Marblehead High,01680505, 91.8, 14.4, 58.7, 24.3, 5.9, 13.8 +4.16,4.16,a-vale-i2,2021-22,Marblehead-Marblehead Veterans Middle School,01680300, 93.6, 11.6, 49.5, 16.2, 2.3, 8.4 4.151111111111112,4.15,a-vale-i2,2021-22,Marblehead-Lucretia and Joseph Brown School,01680030, 93.4, 11.6, 56.2, 19.1, 0.9, 3.2 -4.204444444444444,4.2,a-vale-i2,2021-22,Marblehead-Glover,01680020, 94.6, 9.5, 45.8, 7.4, 0.3, 1.3 4.164444444444444,4.16,a-vale-i2,2021-22,Marblehead-Village School,01680016, 93.7, 11.2, 53.5, 14.0, 1.2, 5.2 +4.204444444444444,4.2,a-vale-i2,2021-22,Marblehead-Glover,01680020, 94.6, 9.5, 45.8, 7.4, 0.3, 1.3 4.142222222222222,4.14,a-vale-i2,2021-22,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 93.2, 12.2, 58.3, 16.7, 2.1, 5.0 4.16,4.16,a-vale-i2,2021-22,Marion-Sippican,01690005, 93.6, 11.1, 54.4, 18.5, 1.2, 1.7 -4.12,4.12,a-vale-i2,2021-22,Marlborough-Francis J Kane,01700008, 92.7, 12.7, 55.9, 28.5, 2.7, 32.4 4.093333333333333,4.09,a-vale-i2,2021-22,Marlborough-Charles Jaworek School,01700030, 92.1, 13.0, 56.9, 27.6, 6.1, 41.7 -4.057777777777778,4.06,a-vale-i2,2021-22,Marlborough-Richer,01700025, 91.3, 14.6, 64.2, 35.1, 5.7, 33.1 -4.084444444444444,4.08,a-vale-i2,2021-22,Marlborough-Goodnow Brothers Elementary School,01700020, 91.9, 13.5, 58.6, 30.6, 7.2, 45.4 +4.08,4.08,a-vale-i2,2021-22,Marlborough-1 LT Charles W. Whitcomb School,01700045, 91.8, 13.8, 53.1, 25.7, 6.6, 37.5 3.76,3.76,a-vale-i2,2021-22,Marlborough-Marlborough High,01700505, 84.6, 24.6, 69.0, 51.4, 24.5, 54.5 3.991111111111111,3.99,a-vale-i2,2021-22,Marlborough-Early Childhood Center,01700006, 89.8, 16.0, 66.8, 41.9, 14.7, 66.8 -4.08,4.08,a-vale-i2,2021-22,Marlborough-1 LT Charles W. Whitcomb School,01700045, 91.8, 13.8, 53.1, 25.7, 6.6, 37.5 -4.191111111111111,4.19,a-vale-i2,2021-22,Marshfield-Eames Way School,01710005, 94.3, 10.3, 51.4, 12.4, 0.0, 16.5 +4.12,4.12,a-vale-i2,2021-22,Marlborough-Francis J Kane,01700008, 92.7, 12.7, 55.9, 28.5, 2.7, 32.4 +4.084444444444444,4.08,a-vale-i2,2021-22,Marlborough-Goodnow Brothers Elementary School,01700020, 91.9, 13.5, 58.6, 30.6, 7.2, 45.4 +4.057777777777778,4.06,a-vale-i2,2021-22,Marlborough-Richer,01700025, 91.3, 14.6, 64.2, 35.1, 5.7, 33.1 4.168888888888889,4.17,a-vale-i2,2021-22,Marshfield-Furnace Brook Middle,01710310, 93.8, 11.1, 48.0, 16.5, 2.2, 20.2 -4.182222222222222,4.18,a-vale-i2,2021-22,Marshfield-Marshfield High,01710505, 94.1, 10.2, 37.2, 13.6, 3.5, 14.0 -4.191111111111111,4.19,a-vale-i2,2021-22,Marshfield-South River,01710010, 94.3, 10.1, 46.0, 10.6, 0.8, 17.4 -4.1288888888888895,4.13,a-vale-i2,2021-22,Marshfield-Daniel Webster,01710015, 92.9, 12.1, 58.8, 22.5, 4.0, 20.0 -4.168888888888889,4.17,a-vale-i2,2021-22,Marshfield-Gov Edward Winslow,01710020, 93.8, 11.1, 55.8, 11.9, 1.1, 24.7 4.1466666666666665,4.15,a-vale-i2,2021-22,Marshfield-Martinson Elementary,01710025, 93.3, 11.6, 51.3, 19.3, 1.5, 25.7 +4.1288888888888895,4.13,a-vale-i2,2021-22,Marshfield-Daniel Webster,01710015, 92.9, 12.1, 58.8, 22.5, 4.0, 20.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Marshfield-Marshfield High,01710505, 94.1, 10.2, 37.2, 13.6, 3.5, 14.0 +4.168888888888889,4.17,a-vale-i2,2021-22,Marshfield-Gov Edward Winslow,01710020, 93.8, 11.1, 55.8, 11.9, 1.1, 24.7 +4.191111111111111,4.19,a-vale-i2,2021-22,Marshfield-Eames Way School,01710005, 94.3, 10.3, 51.4, 12.4, 0.0, 16.5 +4.191111111111111,4.19,a-vale-i2,2021-22,Marshfield-South River,01710010, 94.3, 10.1, 46.0, 10.6, 0.8, 17.4 4.053333333333334,4.05,a-vale-i2,2021-22,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 91.2, 15.4, 58.1, 26.2, 7.8, 22.4 3.8577777777777778,3.86,a-vale-i2,2021-22,Martha's Vineyard Charter (District)-Martha's Vineyard Charter School,04660550, 86.8, 21.6, 80.8, 54.4, 17.6, 76.4 4.075555555555556,4.08,a-vale-i2,2021-22,Martin Luther King Jr. Charter School of Excellence (District)-Martin Luther King Jr. Charter School of Excellence,04920005, 91.7, 14.2, 66.0, 33.5, 2.4, 2.1 -4.164444444444444,4.16,a-vale-i2,2021-22,Masconomet-Masconomet Regional High School,07050505, 93.7, 10.9, 41.2, 15.5, 4.3, 6.2 4.173333333333334,4.17,a-vale-i2,2021-22,Masconomet-Masconomet Regional Middle School,07050405, 93.9, 10.9, 45.2, 15.3, 3.3, 4.5 -4.12,4.12,a-vale-i2,2021-22,Mashpee-Mashpee High,01720505, 92.7, 12.5, 45.9, 21.4, 6.4, 0.2 -4.1866666666666665,4.19,a-vale-i2,2021-22,Mashpee-Mashpee Middle School,01720020, 94.2, 10.1, 39.7, 16.5, 4.2, 0.0 +4.164444444444444,4.16,a-vale-i2,2021-22,Masconomet-Masconomet Regional High School,07050505, 93.7, 10.9, 41.2, 15.5, 4.3, 6.2 4.008888888888889,4.01,a-vale-i2,2021-22,Mashpee-Kenneth Coombs School,01720005, 90.2, 17.0, 73.2, 43.0, 7.0, 0.0 +4.1866666666666665,4.19,a-vale-i2,2021-22,Mashpee-Mashpee Middle School,01720020, 94.2, 10.1, 39.7, 16.5, 4.2, 0.0 4.0311111111111115,4.03,a-vale-i2,2021-22,Mashpee-Quashnet School,01720035, 90.7, 16.2, 69.9, 37.0, 6.4, 0.0 +4.12,4.12,a-vale-i2,2021-22,Mashpee-Mashpee High,01720505, 92.7, 12.5, 45.9, 21.4, 6.4, 0.2 4.111111111111111,4.11,a-vale-i2,2021-22,Mattapoisett-Center,01730005, 92.5, 12.4, 57.5, 27.0, 3.5, 1.2 4.124444444444444,4.12,a-vale-i2,2021-22,Mattapoisett-Old Hammondtown,01730010, 92.8, 13.0, 61.7, 22.9, 4.3, 0.5 4.151111111111112,4.15,a-vale-i2,2021-22,Maynard-Fowler School,01740305, 93.4, 11.6, 51.7, 20.6, 1.9, 51.5 -4.115555555555555,4.12,a-vale-i2,2021-22,Maynard-Maynard High,01740505, 92.6, 12.6, 43.8, 23.3, 6.9, 26.3 4.115555555555555,4.12,a-vale-i2,2021-22,Maynard-Green Meadow,01740010, 92.6, 12.8, 60.6, 25.5, 3.9, 8.3 -4.235555555555555,4.24,a-vale-i2,2021-22,Medfield-Medfield Senior High,01750505, 95.3, 8.2, 31.0, 7.1, 1.6, 15.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Maynard-Maynard High,01740505, 92.6, 12.6, 43.8, 23.3, 6.9, 26.3 +4.208888888888889,4.21,a-vale-i2,2021-22,Medfield-Memorial School,01750003, 94.7, 9.0, 40.1, 11.3, 0.7, 3.6 4.226666666666667,4.23,a-vale-i2,2021-22,Medfield-Dale Street,01750005, 95.1, 8.8, 35.8, 7.6, 0.5, 4.3 4.213333333333333,4.21,a-vale-i2,2021-22,Medfield-Ralph Wheelock School,01750007, 94.8, 9.2, 41.4, 8.9, 0.7, 2.7 4.222222222222222,4.22,a-vale-i2,2021-22,Medfield-Thomas Blake Middle,01750305, 95.0, 8.9, 33.3, 8.6, 1.6, 4.6 -4.208888888888889,4.21,a-vale-i2,2021-22,Medfield-Memorial School,01750003, 94.7, 9.0, 40.1, 11.3, 0.7, 3.6 -4.088888888888889,4.09,a-vale-i2,2021-22,Medford-Madeleine Dugger Andrews,01760315, 92.0, 14.0, 55.6, 27.8, 6.8, 36.1 -4.106666666666667,4.11,a-vale-i2,2021-22,Medford-Milton Fuller Roberts,01760150, 92.4, 13.4, 57.2, 25.7, 4.3, 53.5 -4.035555555555556,4.04,a-vale-i2,2021-22,Medford-Missituk Elementary School,01760140, 90.8, 14.8, 65.6, 35.4, 7.8, 47.6 -4.115555555555555,4.12,a-vale-i2,2021-22,Medford-John J. McGlynn Middle School,01760320, 92.6, 12.3, 56.2, 26.1, 3.3, 29.1 -3.9955555555555557,4.0,a-vale-i2,2021-22,Medford-Medford High,01760505, 89.9, 17.2, 64.7, 39.5, 11.7, 48.0 +4.235555555555555,4.24,a-vale-i2,2021-22,Medfield-Medfield Senior High,01750505, 95.3, 8.2, 31.0, 7.1, 1.6, 15.0 2.0044444444444447,2.0,a-vale-i2,2021-22,Medford-Curtis-Tufts,01760510, 45.1, 87.8, 100.0, 92.3, 76.9, 92.3 +3.9955555555555557,4.0,a-vale-i2,2021-22,Medford-Medford High,01760505, 89.9, 17.2, 64.7, 39.5, 11.7, 48.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Medford-Milton Fuller Roberts,01760150, 92.4, 13.4, 57.2, 25.7, 4.3, 53.5 +4.088888888888889,4.09,a-vale-i2,2021-22,Medford-Madeleine Dugger Andrews,01760315, 92.0, 14.0, 55.6, 27.8, 6.8, 36.1 +4.115555555555555,4.12,a-vale-i2,2021-22,Medford-John J. McGlynn Middle School,01760320, 92.6, 12.3, 56.2, 26.1, 3.3, 29.1 +4.035555555555556,4.04,a-vale-i2,2021-22,Medford-Missituk Elementary School,01760140, 90.8, 14.8, 65.6, 35.4, 7.8, 47.6 4.151111111111112,4.15,a-vale-i2,2021-22,Medford-Brooks School,01760130, 93.4, 11.4, 52.2, 17.3, 2.9, 36.8 4.106666666666667,4.11,a-vale-i2,2021-22,Medford-John J McGlynn Elementary School,01760068, 92.4, 12.7, 60.0, 24.8, 4.5, 35.7 4.1288888888888895,4.13,a-vale-i2,2021-22,Medway-Medway High,01770505, 92.9, 12.6, 43.8, 16.4, 4.5, 24.2 4.182222222222222,4.18,a-vale-i2,2021-22,Medway-Medway Middle,01770305, 94.1, 10.4, 41.9, 15.4, 1.3, 17.5 -4.328888888888889,4.33,a-vale-i2,2021-22,Medway-John D Mc Govern Elementary,01770013, 97.4, 4.5, 11.4, 3.6, 0.3, 2.2 4.208888888888889,4.21,a-vale-i2,2021-22,Medway-Burke/Memorial Elementary School,01770015, 94.7, 9.2, 40.2, 10.9, 1.0, 10.5 +4.328888888888889,4.33,a-vale-i2,2021-22,Medway-John D Mc Govern Elementary,01770013, 97.4, 4.5, 11.4, 3.6, 0.3, 2.2 +4.1466666666666665,4.15,a-vale-i2,2021-22,Melrose-Melrose High,01780505, 93.3, 11.6, 46.0, 18.6, 5.3, 26.0 +4.168888888888889,4.17,a-vale-i2,2021-22,Melrose-Herbert Clark Hoover,01780017, 93.8, 10.9, 51.6, 17.7, 1.9, 13.2 +4.1866666666666665,4.19,a-vale-i2,2021-22,Melrose-Winthrop,01780050, 94.2, 10.3, 43.6, 10.9, 1.2, 6.9 +4.151111111111112,4.15,a-vale-i2,2021-22,Melrose-Melrose Middle,01780305, 93.4, 11.6, 48.4, 18.4, 4.7, 31.4 4.1466666666666665,4.15,a-vale-i2,2021-22,Melrose-Lincoln,01780020, 93.3, 11.6, 49.9, 19.7, 3.5, 12.4 4.217777777777778,4.22,a-vale-i2,2021-22,Melrose-Horace Mann,01780025, 94.9, 9.1, 42.2, 8.2, 0.0, 8.2 4.16,4.16,a-vale-i2,2021-22,Melrose-Roosevelt,01780035, 93.6, 11.3, 44.8, 14.2, 1.6, 4.2 -4.151111111111112,4.15,a-vale-i2,2021-22,Melrose-Melrose Middle,01780305, 93.4, 11.6, 48.4, 18.4, 4.7, 31.4 -4.1866666666666665,4.19,a-vale-i2,2021-22,Melrose-Winthrop,01780050, 94.2, 10.3, 43.6, 10.9, 1.2, 6.9 -4.1466666666666665,4.15,a-vale-i2,2021-22,Melrose-Melrose High,01780505, 93.3, 11.6, 46.0, 18.6, 5.3, 26.0 4.066666666666666,4.07,a-vale-i2,2021-22,Melrose-Early Childhood Center,01780003, 91.5, 14.8, 65.4, 34.6, 4.2, 63.5 -4.168888888888889,4.17,a-vale-i2,2021-22,Melrose-Herbert Clark Hoover,01780017, 93.8, 10.9, 51.6, 17.7, 1.9, 13.2 -4.164444444444444,4.16,a-vale-i2,2021-22,Mendon-Upton-Henry P Clough,07100179, 93.7, 11.0, 52.5, 16.9, 1.7, 26.9 4.111111111111111,4.11,a-vale-i2,2021-22,Mendon-Upton-Nipmuc Regional High,07100510, 92.5, 13.0, 52.2, 25.9, 5.8, 0.0 4.137777777777777,4.14,a-vale-i2,2021-22,Mendon-Upton-Memorial School,07100001, 93.1, 12.0, 53.3, 19.3, 2.5, 23.2 4.191111111111111,4.19,a-vale-i2,2021-22,Mendon-Upton-Miscoe Hill School,07100015, 94.3, 10.1, 42.9, 13.7, 1.3, 0.0 -4.04,4.04,a-vale-i2,2021-22,Methuen-Tenney Grammar School,01810055, 90.9, 15.6, 64.3, 34.7, 8.0, 35.2 -4.115555555555555,4.12,a-vale-i2,2021-22,Methuen-Comprehensive Grammar School,01810050, 92.6, 12.5, 52.8, 24.5, 5.2, 31.0 -4.12,4.12,a-vale-i2,2021-22,Methuen-Marsh Grammar School,01810030, 92.7, 12.6, 58.3, 24.5, 2.7, 33.3 +4.164444444444444,4.16,a-vale-i2,2021-22,Mendon-Upton-Henry P Clough,07100179, 93.7, 11.0, 52.5, 16.9, 1.7, 26.9 3.826666666666666,3.83,a-vale-i2,2021-22,Methuen-Methuen High,01810505, 86.1, 23.6, 69.3, 48.2, 22.4, 56.6 +4.115555555555555,4.12,a-vale-i2,2021-22,Methuen-Comprehensive Grammar School,01810050, 92.6, 12.5, 52.8, 24.5, 5.2, 31.0 +4.04,4.04,a-vale-i2,2021-22,Methuen-Tenney Grammar School,01810055, 90.9, 15.6, 64.3, 34.7, 8.0, 35.2 4.075555555555556,4.08,a-vale-i2,2021-22,Methuen-Donald P Timony Grammar,01810060, 91.7, 14.2, 57.9, 31.3, 6.2, 44.1 +4.12,4.12,a-vale-i2,2021-22,Methuen-Marsh Grammar School,01810030, 92.7, 12.6, 58.3, 24.5, 2.7, 33.3 +4.102222222222222,4.1,a-vale-i2,2021-22,Middleborough-Henry B. Burkland Elementary School,01820008, 92.3, 13.7, 63.3, 29.3, 2.5, 35.6 4.142222222222222,4.14,a-vale-i2,2021-22,Middleborough-Mary K. Goode Elementary School,01820010, 93.2, 12.0, 56.7, 18.4, 2.3, 31.2 4.057777777777778,4.06,a-vale-i2,2021-22,Middleborough-Memorial Early Childhood Center,01820011, 91.3, 15.0, 65.6, 32.1, 4.3, 42.0 4.062222222222222,4.06,a-vale-i2,2021-22,Middleborough-John T. Nichols Middle,01820305, 91.4, 15.3, 67.0, 32.6, 5.4, 45.5 4.008888888888889,4.01,a-vale-i2,2021-22,Middleborough-Middleborough High,01820505, 90.2, 16.7, 54.4, 29.4, 11.7, 29.2 -4.102222222222222,4.1,a-vale-i2,2021-22,Middleborough-Henry B. Burkland Elementary School,01820008, 92.3, 13.7, 63.3, 29.3, 2.5, 35.6 -4.133333333333334,4.13,a-vale-i2,2021-22,Middleton-Howe-Manning,01840005, 93.0, 11.8, 56.5, 18.9, 2.3, 56.1 4.12,4.12,a-vale-i2,2021-22,Middleton-Fuller Meadow,01840003, 92.7, 12.4, 63.2, 23.0, 0.3, 62.9 -3.9377777777777774,3.94,a-vale-i2,2021-22,Milford-Milford High,01850505, 88.6, 18.8, 58.2, 37.8, 18.1, 36.2 +4.133333333333334,4.13,a-vale-i2,2021-22,Middleton-Howe-Manning,01840005, 93.0, 11.8, 56.5, 18.9, 2.3, 56.1 4.066666666666666,4.07,a-vale-i2,2021-22,Milford-Memorial,01850010, 91.5, 14.1, 61.9, 33.2, 5.6, 17.3 +3.9377777777777774,3.94,a-vale-i2,2021-22,Milford-Milford High,01850505, 88.6, 18.8, 58.2, 37.8, 18.1, 36.2 +4.084444444444444,4.08,a-vale-i2,2021-22,Milford-Stacy Middle,01850305, 91.9, 13.7, 53.0, 27.1, 8.1, 39.4 4.08,4.08,a-vale-i2,2021-22,Milford-Brookside,01850065, 91.8, 13.7, 62.2, 27.2, 6.7, 37.8 3.848888888888889,3.85,a-vale-i2,2021-22,Milford-Shining Star Early Childhood Center,01850075, 86.6, 17.3, 67.4, 51.7, 16.3, 67.4 4.124444444444444,4.12,a-vale-i2,2021-22,Milford-Woodland,01850090, 92.8, 12.2, 55.1, 25.9, 4.1, 29.4 -4.084444444444444,4.08,a-vale-i2,2021-22,Milford-Stacy Middle,01850305, 91.9, 13.7, 53.0, 27.1, 8.1, 39.4 +4.097777777777778,4.1,a-vale-i2,2021-22,Millbury-Elmwood Street,01860017, 92.2, 13.7, 63.7, 25.3, 3.6, 34.1 4.173333333333334,4.17,a-vale-i2,2021-22,Millbury-Raymond E. Shaw Elementary,01860025, 93.9, 11.0, 48.4, 15.8, 1.1, 16.3 4.062222222222222,4.06,a-vale-i2,2021-22,Millbury-Millbury Junior/Senior High,01860505, 91.4, 15.2, 57.2, 27.6, 9.1, 31.5 -4.097777777777778,4.1,a-vale-i2,2021-22,Millbury-Elmwood Street,01860017, 92.2, 13.7, 63.7, 25.3, 3.6, 34.1 +4.16,4.16,a-vale-i2,2021-22,Millis-Millis High School,01870505, 93.6, 11.3, 42.2, 16.0, 4.2, 0.0 4.1866666666666665,4.19,a-vale-i2,2021-22,Millis-Clyde F Brown,01870005, 94.2, 10.0, 44.3, 14.8, 1.7, 0.0 4.155555555555556,4.16,a-vale-i2,2021-22,Millis-Millis Middle,01870020, 93.5, 11.5, 43.2, 13.7, 3.3, 0.0 -4.16,4.16,a-vale-i2,2021-22,Millis-Millis High School,01870505, 93.6, 11.3, 42.2, 16.0, 4.2, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Milton-Collicot,01890005, 94.9, 9.2, 41.7, 8.1, 0.5, 0.2 +4.164444444444444,4.16,a-vale-i2,2021-22,Milton-Milton High,01890505, 93.7, 11.2, 39.7, 15.4, 3.8, 8.7 4.195555555555556,4.2,a-vale-i2,2021-22,Milton-Cunningham School,01890007, 94.4, 9.8, 37.6, 13.8, 2.2, 4.0 4.195555555555556,4.2,a-vale-i2,2021-22,Milton-Glover,01890010, 94.4, 10.0, 44.4, 12.2, 0.9, 9.1 4.164444444444444,4.16,a-vale-i2,2021-22,Milton-Tucker,01890020, 93.7, 11.2, 48.8, 15.4, 2.5, 14.2 4.177777777777778,4.18,a-vale-i2,2021-22,Milton-Charles S Pierce Middle,01890410, 94.0, 10.7, 46.5, 16.1, 1.3, 15.7 -4.164444444444444,4.16,a-vale-i2,2021-22,Milton-Milton High,01890505, 93.7, 11.2, 39.7, 15.4, 3.8, 8.7 -4.217777777777778,4.22,a-vale-i2,2021-22,Milton-Collicot,01890005, 94.9, 9.2, 41.7, 8.1, 0.5, 0.2 4.155555555555556,4.16,a-vale-i2,2021-22,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 93.5, 11.4, 43.8, 16.7, 6.1, 20.8 +4.013333333333334,4.01,a-vale-i2,2021-22,Mohawk Trail-Mohawk Trail Regional School,07170505, 90.3, 16.6, 62.3, 32.2, 9.1, 34.8 4.0488888888888885,4.05,a-vale-i2,2021-22,Mohawk Trail-Sanderson Academy,07170020, 91.1, 15.1, 65.7, 33.6, 5.2, 18.7 4.084444444444444,4.08,a-vale-i2,2021-22,Mohawk Trail-Colrain Central,07170010, 91.9, 13.5, 66.4, 24.5, 4.5, 21.8 4.084444444444444,4.08,a-vale-i2,2021-22,Mohawk Trail-Buckland-Shelburne Regional,07170005, 91.9, 14.3, 67.6, 27.6, 3.6, 36.4 -4.013333333333334,4.01,a-vale-i2,2021-22,Mohawk Trail-Mohawk Trail Regional School,07170505, 90.3, 16.6, 62.3, 32.2, 9.1, 34.8 -4.124444444444444,4.12,a-vale-i2,2021-22,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 92.8, 12.8, 60.1, 21.3, 2.2, 34.5 4.1466666666666665,4.15,a-vale-i2,2021-22,Monomoy Regional School District-Chatham Elementary School,07120001, 93.3, 11.7, 55.3, 18.7, 0.7, 39.3 4.084444444444444,4.08,a-vale-i2,2021-22,Monomoy Regional School District-Harwich Elementary School,07120002, 91.9, 13.7, 61.8, 29.2, 1.9, 46.8 +4.124444444444444,4.12,a-vale-i2,2021-22,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 92.8, 12.8, 60.1, 21.3, 2.2, 34.5 4.044444444444444,4.04,a-vale-i2,2021-22,Monomoy Regional School District-Monomoy Regional High School,07120515, 91.0, 15.5, 62.9, 29.2, 8.0, 42.8 4.173333333333334,4.17,a-vale-i2,2021-22,Monson-Granite Valley School,01910030, 93.9, 10.5, 45.3, 16.5, 1.9, 38.4 4.124444444444444,4.12,a-vale-i2,2021-22,Monson-Monson High School,01910505, 92.8, 12.4, 45.9, 22.1, 4.5, 26.3 4.022222222222222,4.02,a-vale-i2,2021-22,Monson-Quarry Hill Community School,01910010, 90.5, 16.6, 75.7, 34.6, 5.6, 65.4 4.151111111111112,4.15,a-vale-i2,2021-22,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 93.4, 11.4, 48.3, 19.5, 3.7, 14.9 -4.1466666666666665,4.15,a-vale-i2,2021-22,Mount Greylock-Mt Greylock Regional High,07150505, 93.3, 11.7, 45.8, 17.9, 5.0, 11.8 4.111111111111111,4.11,a-vale-i2,2021-22,Mount Greylock-Lanesborough Elementary,07150005, 92.5, 13.4, 64.6, 23.6, 1.4, 9.9 4.182222222222222,4.18,a-vale-i2,2021-22,Mount Greylock-Williamstown Elementary,07150010, 94.1, 10.3, 43.5, 15.9, 2.7, 16.6 +4.1466666666666665,4.15,a-vale-i2,2021-22,Mount Greylock-Mt Greylock Regional High,07150505, 93.3, 11.7, 45.8, 17.9, 5.0, 11.8 4.231111111111111,4.23,a-vale-i2,2021-22,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 95.2, 9.4, 42.5, 8.3, 0.6, 0.4 4.102222222222222,4.1,a-vale-i2,2021-22,Nahant-Johnson,01960010, 92.3, 13.0, 55.4, 21.5, 3.4, 10.7 -4.124444444444444,4.12,a-vale-i2,2021-22,Nantucket-Nantucket Intermediate School,01970020, 92.8, 12.5, 63.7, 22.9, 0.9, 17.3 4.1466666666666665,4.15,a-vale-i2,2021-22,Nantucket-Cyrus Peirce,01970010, 93.3, 11.7, 51.1, 20.1, 1.8, 18.3 -4.071111111111111,4.07,a-vale-i2,2021-22,Nantucket-Nantucket High,01970505, 91.6, 14.4, 61.8, 26.7, 5.6, 24.8 4.026666666666666,4.03,a-vale-i2,2021-22,Nantucket-Nantucket Elementary,01970005, 90.6, 15.4, 69.4, 40.3, 6.5, 27.4 -4.088888888888889,4.09,a-vale-i2,2021-22,Narragansett-Narragansett Middle,07200305, 92.0, 13.9, 60.1, 28.3, 4.7, 24.1 +4.071111111111111,4.07,a-vale-i2,2021-22,Nantucket-Nantucket High,01970505, 91.6, 14.4, 61.8, 26.7, 5.6, 24.8 +4.124444444444444,4.12,a-vale-i2,2021-22,Nantucket-Nantucket Intermediate School,01970020, 92.8, 12.5, 63.7, 22.9, 0.9, 17.3 4.057777777777778,4.06,a-vale-i2,2021-22,Narragansett-Narragansett Regional High,07200505, 91.3, 15.0, 62.2, 29.7, 8.1, 28.3 4.08,4.08,a-vale-i2,2021-22,Narragansett-Templeton Elementary School,07200020, 91.8, 14.2, 65.9, 28.6, 4.9, 35.2 -4.1466666666666665,4.15,a-vale-i2,2021-22,Nashoba-Center School,07250020, 93.3, 11.7, 52.6, 21.1, 1.6, 0.0 -4.182222222222222,4.18,a-vale-i2,2021-22,Nashoba-Mary Rowlandson Elementary,07250010, 94.1, 10.3, 48.9, 15.0, 1.0, 0.0 +4.088888888888889,4.09,a-vale-i2,2021-22,Narragansett-Narragansett Middle,07200305, 92.0, 13.9, 60.1, 28.3, 4.7, 24.1 4.177777777777778,4.18,a-vale-i2,2021-22,Nashoba-Luther Burbank Middle School,07250305, 94.0, 10.6, 43.9, 16.1, 3.5, 0.0 4.053333333333334,4.05,a-vale-i2,2021-22,Nashoba-Nashoba Regional,07250505, 91.2, 15.6, 56.6, 27.7, 8.5, 8.6 -4.222222222222222,4.22,a-vale-i2,2021-22,Nashoba-Hale,07250310, 95.0, 8.8, 37.1, 8.8, 1.1, 0.0 4.217777777777778,4.22,a-vale-i2,2021-22,Nashoba-Florence Sawyer School,07250025, 94.9, 9.0, 37.6, 11.0, 0.7, 0.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Nashoba-Hale,07250310, 95.0, 8.8, 37.1, 8.8, 1.1, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Nashoba-Mary Rowlandson Elementary,07250010, 94.1, 10.3, 48.9, 15.0, 1.0, 0.0 +4.1466666666666665,4.15,a-vale-i2,2021-22,Nashoba-Center School,07250020, 93.3, 11.7, 52.6, 21.1, 1.6, 0.0 4.253333333333334,4.25,a-vale-i2,2021-22,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 95.7, 7.5, 26.0, 5.4, 1.1, 19.0 -4.115555555555555,4.12,a-vale-i2,2021-22,Natick-Natick High,01980505, 92.6, 12.7, 47.4, 21.3, 6.2, 0.0 -4.213333333333333,4.21,a-vale-i2,2021-22,Natick-Wilson Middle,01980310, 94.8, 9.2, 36.7, 11.5, 1.2, 0.0 4.235555555555555,4.24,a-vale-i2,2021-22,Natick-J F Kennedy Middle School,01980305, 95.3, 8.3, 32.1, 9.2, 0.9, 0.0 +4.213333333333333,4.21,a-vale-i2,2021-22,Natick-Wilson Middle,01980310, 94.8, 9.2, 36.7, 11.5, 1.2, 0.0 4.213333333333333,4.21,a-vale-i2,2021-22,Natick-Memorial,01980043, 94.8, 9.3, 41.2, 8.3, 0.3, 0.0 +4.115555555555555,4.12,a-vale-i2,2021-22,Natick-Natick High,01980505, 92.6, 12.7, 47.4, 21.3, 6.2, 0.0 4.226666666666667,4.23,a-vale-i2,2021-22,Natick-Lilja Elementary,01980035, 95.1, 8.7, 36.3, 7.9, 0.5, 0.0 -4.262222222222222,4.26,a-vale-i2,2021-22,Natick-Johnson,01980031, 95.9, 7.4, 23.5, 3.2, 0.5, 0.0 4.235555555555555,4.24,a-vale-i2,2021-22,Natick-Bennett-Hemenway,01980005, 95.3, 8.3, 32.6, 8.9, 1.2, 0.0 4.222222222222222,4.22,a-vale-i2,2021-22,Natick-Brown,01980010, 95.0, 8.6, 37.4, 10.3, 1.1, 0.0 +4.262222222222222,4.26,a-vale-i2,2021-22,Natick-Johnson,01980031, 95.9, 7.4, 23.5, 3.2, 0.5, 0.0 4.075555555555556,4.08,a-vale-i2,2021-22,Nauset-Nauset Regional Middle,06600305, 91.7, 14.9, 60.9, 26.7, 6.5, 47.2 4.062222222222222,4.06,a-vale-i2,2021-22,Nauset-Nauset Regional High,06600505, 91.4, 14.9, 61.3, 29.5, 6.7, 42.1 +4.2,4.2,a-vale-i2,2021-22,Needham-Sunita L. Williams Elementary,01990035, 94.5, 9.8, 42.9, 11.2, 1.2, 0.0 +4.008888888888889,4.01,a-vale-i2,2021-22,Needham-Needham High,01990505, 90.2, 17.5, 57.9, 31.8, 13.1, 0.8 +4.2444444444444445,4.24,a-vale-i2,2021-22,Needham-High Rock School,01990410, 95.5, 8.0, 31.1, 5.5, 0.4, 0.0 4.217777777777778,4.22,a-vale-i2,2021-22,Needham-Pollard Middle,01990405, 94.9, 9.1, 33.3, 9.2, 2.0, 0.0 4.213333333333333,4.21,a-vale-i2,2021-22,Needham-Newman Elementary,01990050, 94.8, 9.1, 36.1, 11.2, 1.6, 0.0 -4.2,4.2,a-vale-i2,2021-22,Needham-Sunita L. Williams Elementary,01990035, 94.5, 9.8, 42.9, 11.2, 1.2, 0.0 +4.248888888888889,4.25,a-vale-i2,2021-22,Needham-William Mitchell,01990040, 95.6, 7.9, 32.0, 7.1, 0.9, 0.0 4.213333333333333,4.21,a-vale-i2,2021-22,Needham-John Eliot,01990020, 94.8, 9.2, 39.8, 11.4, 0.9, 0.0 4.226666666666667,4.23,a-vale-i2,2021-22,Needham-Broadmeadow,01990005, 95.1, 8.7, 34.5, 9.2, 0.4, 0.0 -4.2444444444444445,4.24,a-vale-i2,2021-22,Needham-High Rock School,01990410, 95.5, 8.0, 31.1, 5.5, 0.4, 0.0 -4.008888888888889,4.01,a-vale-i2,2021-22,Needham-Needham High,01990505, 90.2, 17.5, 57.9, 31.8, 13.1, 0.8 -4.248888888888889,4.25,a-vale-i2,2021-22,Needham-William Mitchell,01990040, 95.6, 7.9, 32.0, 7.1, 0.9, 0.0 3.9955555555555557,4.0,a-vale-i2,2021-22,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 89.9, 17.0, 63.1, 35.9, 10.9, 15.1 -4.08,4.08,a-vale-i2,2021-22,New Bedford-Betsey B Winslow,02010140, 91.8, 14.6, 65.1, 29.4, 3.8, 31.9 -3.911111111111111,3.91,a-vale-i2,2021-22,New Bedford-Keith Middle School,02010405, 88.0, 20.9, 72.3, 47.1, 17.0, 64.3 -4.04,4.04,a-vale-i2,2021-22,New Bedford-Normandin Middle School,02010410, 90.9, 16.0, 65.1, 34.6, 7.9, 45.4 -3.893333333333333,3.89,a-vale-i2,2021-22,New Bedford-Roosevelt Middle School,02010415, 87.6, 21.5, 70.8, 47.0, 19.0, 58.8 +4.0,4.0,a-vale-i2,2021-22,New Bedford-Abraham Lincoln,02010095, 90.0, 17.2, 72.0, 38.6, 9.4, 51.2 4.044444444444444,4.04,a-vale-i2,2021-22,New Bedford-Charles S Ashley,02010010, 91.0, 15.8, 70.6, 37.2, 6.0, 36.2 -3.577777777777778,3.58,a-vale-i2,2021-22,New Bedford-New Bedford High,02010505, 80.5, 32.2, 84.7, 69.7, 40.4, 78.7 -3.4488888888888884,3.45,a-vale-i2,2021-22,New Bedford-Trinity Day Academy,02010510, 77.6, 37.0, 76.5, 64.7, 38.8, 67.1 4.035555555555556,4.04,a-vale-i2,2021-22,New Bedford-Elizabeth Carter Brooks,02010015, 90.8, 16.3, 67.6, 35.5, 6.0, 41.1 3.897777777777778,3.9,a-vale-i2,2021-22,New Bedford-Elwyn G Campbell,02010020, 87.7, 20.6, 75.1, 54.9, 16.8, 55.2 4.066666666666666,4.07,a-vale-i2,2021-22,New Bedford-James B Congdon,02010040, 91.5, 15.1, 66.2, 33.1, 3.9, 28.9 3.848888888888889,3.85,a-vale-i2,2021-22,New Bedford-Sgt Wm H Carney Academy,02010045, 86.6, 23.1, 80.0, 54.9, 23.3, 61.0 4.022222222222222,4.02,a-vale-i2,2021-22,New Bedford-John B Devalles,02010050, 90.5, 16.5, 68.3, 36.6, 6.4, 47.3 3.991111111111111,3.99,a-vale-i2,2021-22,New Bedford-Alfred J Gomes,02010063, 89.8, 18.3, 73.1, 40.4, 9.9, 56.7 -3.493333333333333,3.49,a-vale-i2,2021-22,New Bedford-Whaling City Junior/Senior High School,02010515, 78.6, 30.9, 65.2, 54.5, 39.4, 59.1 3.924444444444444,3.92,a-vale-i2,2021-22,New Bedford-Irwin M. Jacobs Elementary School,02010070, 88.3, 19.4, 69.2, 43.6, 16.7, 57.1 3.991111111111111,3.99,a-vale-i2,2021-22,New Bedford-Ellen R Hathaway,02010075, 89.8, 16.5, 68.5, 44.2, 10.7, 53.9 3.991111111111111,3.99,a-vale-i2,2021-22,New Bedford-Hayden/McFadden,02010078, 89.8, 17.8, 69.5, 44.4, 10.7, 49.6 -4.0,4.0,a-vale-i2,2021-22,New Bedford-Abraham Lincoln,02010095, 90.0, 17.2, 72.0, 38.6, 9.4, 51.2 +3.493333333333333,3.49,a-vale-i2,2021-22,New Bedford-Whaling City Junior/Senior High School,02010515, 78.6, 30.9, 65.2, 54.5, 39.4, 59.1 3.9644444444444447,3.96,a-vale-i2,2021-22,New Bedford-Carlos Pacheco,02010105, 89.2, 18.8, 72.9, 43.8, 13.6, 58.0 +4.04,4.04,a-vale-i2,2021-22,New Bedford-Normandin Middle School,02010410, 90.9, 16.0, 65.1, 34.6, 7.9, 45.4 +3.4488888888888884,3.45,a-vale-i2,2021-22,New Bedford-Trinity Day Academy,02010510, 77.6, 37.0, 76.5, 64.7, 38.8, 67.1 +3.911111111111111,3.91,a-vale-i2,2021-22,New Bedford-Keith Middle School,02010405, 88.0, 20.9, 72.3, 47.1, 17.0, 64.3 +4.08,4.08,a-vale-i2,2021-22,New Bedford-Betsey B Winslow,02010140, 91.8, 14.6, 65.1, 29.4, 3.8, 31.9 +4.022222222222222,4.02,a-vale-i2,2021-22,New Bedford-William H Taylor,02010135, 90.5, 16.6, 72.2, 33.1, 7.6, 41.8 +4.057777777777778,4.06,a-vale-i2,2021-22,New Bedford-Jireh Swift,02010130, 91.3, 15.2, 63.2, 34.1, 6.8, 46.8 4.022222222222222,4.02,a-vale-i2,2021-22,New Bedford-John Avery Parker,02010115, 90.5, 16.8, 76.7, 40.3, 4.3, 43.5 4.062222222222222,4.06,a-vale-i2,2021-22,New Bedford-Casimir Pulaski,02010123, 91.4, 15.1, 61.5, 31.3, 5.9, 39.8 +3.893333333333333,3.89,a-vale-i2,2021-22,New Bedford-Roosevelt Middle School,02010415, 87.6, 21.5, 70.8, 47.0, 19.0, 58.8 3.902222222222222,3.9,a-vale-i2,2021-22,New Bedford-Renaissance Community Innovation School,02010124, 87.8, 20.9, 75.6, 45.2, 16.1, 53.0 4.004444444444444,4.0,a-vale-i2,2021-22,New Bedford-Thomas R Rodman,02010125, 90.1, 17.4, 70.0, 35.4, 8.1, 42.6 -4.057777777777778,4.06,a-vale-i2,2021-22,New Bedford-Jireh Swift,02010130, 91.3, 15.2, 63.2, 34.1, 6.8, 46.8 -4.022222222222222,4.02,a-vale-i2,2021-22,New Bedford-William H Taylor,02010135, 90.5, 16.6, 72.2, 33.1, 7.6, 41.8 +3.577777777777778,3.58,a-vale-i2,2021-22,New Bedford-New Bedford High,02010505, 80.5, 32.2, 84.7, 69.7, 40.4, 78.7 4.08,4.08,a-vale-i2,2021-22,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 91.8, 15.0, 58.2, 28.8, 8.4, 41.8 4.08,4.08,a-vale-i2,2021-22,New Salem-Wendell-Swift River,07280015, 91.8, 14.7, 69.7, 18.2, 3.8, 12.9 -4.164444444444444,4.16,a-vale-i2,2021-22,Newburyport-Rupert A Nock Middle,02040305, 93.7, 11.1, 45.0, 16.5, 2.9, 0.0 -4.16,4.16,a-vale-i2,2021-22,Newburyport-Edward G. Molin Elementary School,02040030, 93.6, 11.3, 49.5, 16.7, 2.1, 0.0 4.151111111111112,4.15,a-vale-i2,2021-22,Newburyport-Francis T Bresnahan Elementary,02040005, 93.4, 11.5, 50.3, 15.4, 2.8, 0.0 +4.16,4.16,a-vale-i2,2021-22,Newburyport-Edward G. Molin Elementary School,02040030, 93.6, 11.3, 49.5, 16.7, 2.1, 0.0 +4.164444444444444,4.16,a-vale-i2,2021-22,Newburyport-Rupert A Nock Middle,02040305, 93.7, 11.1, 45.0, 16.5, 2.9, 0.0 4.137777777777777,4.14,a-vale-i2,2021-22,Newburyport-Newburyport High,02040505, 93.1, 12.0, 50.1, 19.7, 3.6, 0.0 -4.2,4.2,a-vale-i2,2021-22,Newton-Bowen,02070015, 94.5, 9.7, 37.9, 14.2, 2.0, 0.9 -4.191111111111111,4.19,a-vale-i2,2021-22,Newton-Bigelow Middle,02070305, 94.3, 10.0, 37.6, 14.0, 3.5, 4.6 +4.231111111111111,4.23,a-vale-i2,2021-22,Newton-A E Angier,02070005, 95.2, 8.5, 36.5, 9.2, 0.2, 0.7 +4.155555555555556,4.16,a-vale-i2,2021-22,Newton-Newton South High,02070510, 93.5, 11.3, 40.5, 18.0, 5.9, 8.7 +4.222222222222222,4.22,a-vale-i2,2021-22,Newton-C C Burr,02070020, 95.0, 8.8, 33.5, 10.2, 1.9, 4.1 4.208888888888889,4.21,a-vale-i2,2021-22,Newton-Cabot,02070025, 94.7, 9.4, 37.1, 12.0, 1.4, 9.6 4.2,4.2,a-vale-i2,2021-22,Newton-Countryside,02070040, 94.5, 9.7, 42.0, 13.7, 1.0, 0.8 4.204444444444444,4.2,a-vale-i2,2021-22,Newton-Franklin,02070055, 94.6, 9.7, 42.5, 10.8, 1.2, 0.0 @@ -10324,50 +10325,49 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.235555555555555,4.24,a-vale-i2,2021-22,Newton-John Ward,02070120, 95.3, 8.3, 34.9, 5.5, 0.5, 0.0 4.1866666666666665,4.19,a-vale-i2,2021-22,Newton-Williams,02070125, 94.2, 10.1, 42.1, 14.6, 0.4, 5.2 4.213333333333333,4.21,a-vale-i2,2021-22,Newton-Zervas,02070130, 94.8, 9.0, 33.3, 11.5, 2.5, 1.4 -4.231111111111111,4.23,a-vale-i2,2021-22,Newton-A E Angier,02070005, 95.2, 8.5, 36.5, 9.2, 0.2, 0.7 -4.155555555555556,4.16,a-vale-i2,2021-22,Newton-Newton South High,02070510, 93.5, 11.3, 40.5, 18.0, 5.9, 8.7 -4.097777777777778,4.1,a-vale-i2,2021-22,Newton-Newton North High,02070505, 92.2, 13.7, 48.6, 24.6, 8.1, 10.4 -4.204444444444444,4.2,a-vale-i2,2021-22,Newton-Oak Hill Middle,02070320, 94.6, 9.5, 39.4, 12.4, 1.6, 2.8 -4.182222222222222,4.18,a-vale-i2,2021-22,Newton-F A Day Middle,02070315, 94.1, 10.5, 42.7, 14.1, 2.5, 5.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Newton-Bigelow Middle,02070305, 94.3, 10.0, 37.6, 14.0, 3.5, 4.6 4.217777777777778,4.22,a-vale-i2,2021-22,Newton-Charles E Brown Middle,02070310, 94.9, 9.1, 34.8, 11.2, 2.3, 1.3 -4.222222222222222,4.22,a-vale-i2,2021-22,Newton-C C Burr,02070020, 95.0, 8.8, 33.5, 10.2, 1.9, 4.1 -4.191111111111111,4.19,a-vale-i2,2021-22,Norfolk-H Olive Day,02080015, 94.3, 10.3, 46.9, 15.7, 0.2, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Newton-F A Day Middle,02070315, 94.1, 10.5, 42.7, 14.1, 2.5, 5.0 +4.204444444444444,4.2,a-vale-i2,2021-22,Newton-Oak Hill Middle,02070320, 94.6, 9.5, 39.4, 12.4, 1.6, 2.8 +4.097777777777778,4.1,a-vale-i2,2021-22,Newton-Newton North High,02070505, 92.2, 13.7, 48.6, 24.6, 8.1, 10.4 +4.2,4.2,a-vale-i2,2021-22,Newton-Bowen,02070015, 94.5, 9.7, 37.9, 14.2, 2.0, 0.9 4.226666666666667,4.23,a-vale-i2,2021-22,Norfolk-Freeman-Kennedy School,02080005, 95.1, 8.7, 34.8, 9.8, 0.4, 0.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Norfolk-H Olive Day,02080015, 94.3, 10.3, 46.9, 15.7, 0.2, 0.0 4.093333333333333,4.09,a-vale-i2,2021-22,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 92.1, 13.8, 58.9, 25.7, 5.8, 44.0 -3.9422222222222225,3.94,a-vale-i2,2021-22,North Adams-Brayton,02090035, 88.7, 18.7, 74.3, 45.1, 15.0, 41.5 -3.968888888888889,3.97,a-vale-i2,2021-22,North Adams-Colegrove Park Elementary,02090008, 89.3, 18.9, 73.2, 40.9, 9.3, 40.9 3.7511111111111113,3.75,a-vale-i2,2021-22,North Adams-Drury High,02090505, 84.4, 26.2, 76.9, 53.7, 28.9, 71.1 +3.9422222222222225,3.94,a-vale-i2,2021-22,North Adams-Brayton,02090035, 88.7, 18.7, 74.3, 45.1, 15.0, 41.5 4.004444444444444,4.0,a-vale-i2,2021-22,North Adams-Greylock,02090015, 90.1, 17.3, 73.3, 39.6, 10.4, 64.8 -4.164444444444444,4.16,a-vale-i2,2021-22,North Andover-Kittredge,02110015, 93.7, 11.2, 56.4, 13.7, 0.4, 2.2 -4.1866666666666665,4.19,a-vale-i2,2021-22,North Andover-Franklin,02110010, 94.2, 10.2, 48.4, 12.4, 0.3, 3.1 +3.968888888888889,3.97,a-vale-i2,2021-22,North Adams-Colegrove Park Elementary,02090008, 89.3, 18.9, 73.2, 40.9, 9.3, 40.9 4.093333333333333,4.09,a-vale-i2,2021-22,North Andover-North Andover High,02110505, 92.1, 13.9, 50.9, 23.2, 7.0, 12.4 -4.173333333333334,4.17,a-vale-i2,2021-22,North Andover-Annie L Sargent School,02110018, 93.9, 10.8, 50.7, 15.4, 1.7, 1.9 4.075555555555556,4.08,a-vale-i2,2021-22,North Andover-Anne Bradstreet Early Childhood Center,02110005, 91.7, 14.2, 62.2, 30.5, 6.6, 0.0 -4.16,4.16,a-vale-i2,2021-22,North Andover-Atkinson,02110001, 93.6, 11.1, 52.0, 17.3, 1.0, 5.4 -4.311111111111111,4.31,a-vale-i2,2021-22,North Andover-North Andover Middle,02110305, 97.0, 5.3, 15.6, 5.6, 1.0, 9.5 +4.1866666666666665,4.19,a-vale-i2,2021-22,North Andover-Franklin,02110010, 94.2, 10.2, 48.4, 12.4, 0.3, 3.1 +4.164444444444444,4.16,a-vale-i2,2021-22,North Andover-Kittredge,02110015, 93.7, 11.2, 56.4, 13.7, 0.4, 2.2 +4.173333333333334,4.17,a-vale-i2,2021-22,North Andover-Annie L Sargent School,02110018, 93.9, 10.8, 50.7, 15.4, 1.7, 1.9 4.155555555555556,4.16,a-vale-i2,2021-22,North Andover-Thomson,02110020, 93.5, 11.6, 55.6, 16.8, 2.5, 6.7 -4.137777777777777,4.14,a-vale-i2,2021-22,North Attleborough-North Attleborough Middle,02120305, 93.1, 12.2, 51.1, 21.3, 4.7, 31.9 +4.311111111111111,4.31,a-vale-i2,2021-22,North Andover-North Andover Middle,02110305, 97.0, 5.3, 15.6, 5.6, 1.0, 9.5 +4.16,4.16,a-vale-i2,2021-22,North Andover-Atkinson,02110001, 93.6, 11.1, 52.0, 17.3, 1.0, 5.4 4.084444444444444,4.08,a-vale-i2,2021-22,North Attleborough-North Attleboro High,02120505, 91.9, 14.1, 48.2, 23.2, 8.7, 27.6 -4.124444444444444,4.12,a-vale-i2,2021-22,North Attleborough-Amvet Boulevard,02120007, 92.8, 12.4, 57.5, 23.2, 4.2, 29.9 -4.16,4.16,a-vale-i2,2021-22,North Attleborough-Falls,02120010, 93.6, 11.3, 54.5, 15.6, 0.9, 18.8 -4.173333333333334,4.17,a-vale-i2,2021-22,North Attleborough-Joseph W Martin Jr Elementary,02120013, 93.9, 10.7, 49.2, 13.8, 1.3, 20.0 4.177777777777778,4.18,a-vale-i2,2021-22,North Attleborough-Roosevelt Avenue,02120015, 94.0, 10.7, 52.5, 15.1, 0.0, 4.6 -4.035555555555556,4.04,a-vale-i2,2021-22,North Attleborough-North Attleborough Early Learning Center,02120020, 90.8, 13.5, 60.7, 35.6, 9.9, 17.3 +4.137777777777777,4.14,a-vale-i2,2021-22,North Attleborough-North Attleborough Middle,02120305, 93.1, 12.2, 51.1, 21.3, 4.7, 31.9 4.084444444444444,4.08,a-vale-i2,2021-22,North Attleborough-Community,02120030, 91.9, 14.0, 65.9, 29.0, 3.1, 45.5 +4.173333333333334,4.17,a-vale-i2,2021-22,North Attleborough-Joseph W Martin Jr Elementary,02120013, 93.9, 10.7, 49.2, 13.8, 1.3, 20.0 +4.124444444444444,4.12,a-vale-i2,2021-22,North Attleborough-Amvet Boulevard,02120007, 92.8, 12.4, 57.5, 23.2, 4.2, 29.9 +4.035555555555556,4.04,a-vale-i2,2021-22,North Attleborough-North Attleborough Early Learning Center,02120020, 90.8, 13.5, 60.7, 35.6, 9.9, 17.3 +4.16,4.16,a-vale-i2,2021-22,North Attleborough-Falls,02120010, 93.6, 11.3, 54.5, 15.6, 0.9, 18.8 4.164444444444444,4.16,a-vale-i2,2021-22,North Brookfield-North Brookfield Elementary,02150015, 93.7, 11.0, 46.7, 17.3, 1.6, 46.7 4.053333333333334,4.05,a-vale-i2,2021-22,North Brookfield-North Brookfield High,02150505, 91.2, 14.7, 51.4, 26.8, 10.4, 51.4 -4.102222222222222,4.1,a-vale-i2,2021-22,North Middlesex-Ashby Elementary,07350010, 92.3, 13.7, 60.8, 30.8, 1.4, 30.1 -4.084444444444444,4.08,a-vale-i2,2021-22,North Middlesex-Hawthorne Brook,07350030, 91.9, 14.1, 60.0, 28.2, 6.5, 35.1 -4.133333333333334,4.13,a-vale-i2,2021-22,North Middlesex-Varnum Brook,07350035, 93.0, 12.2, 55.1, 23.1, 2.6, 31.2 -4.137777777777777,4.14,a-vale-i2,2021-22,North Middlesex-Spaulding Memorial,07350005, 93.1, 12.0, 56.6, 19.8, 1.3, 26.2 -4.08,4.08,a-vale-i2,2021-22,North Middlesex-Squannacook Early Childhood Center,07350002, 91.8, 9.6, 43.0, 28.9, 6.1, 42.1 4.04,4.04,a-vale-i2,2021-22,North Middlesex-North Middlesex Regional,07350505, 90.9, 15.8, 57.7, 27.4, 8.5, 35.4 4.124444444444444,4.12,a-vale-i2,2021-22,North Middlesex-Nissitissit Middle School,07350310, 92.8, 12.6, 55.3, 23.4, 3.5, 29.7 -4.155555555555556,4.16,a-vale-i2,2021-22,North Reading-North Reading High,02170505, 93.5, 11.4, 42.2, 17.0, 4.7, 0.5 +4.133333333333334,4.13,a-vale-i2,2021-22,North Middlesex-Varnum Brook,07350035, 93.0, 12.2, 55.1, 23.1, 2.6, 31.2 +4.084444444444444,4.08,a-vale-i2,2021-22,North Middlesex-Hawthorne Brook,07350030, 91.9, 14.1, 60.0, 28.2, 6.5, 35.1 +4.102222222222222,4.1,a-vale-i2,2021-22,North Middlesex-Ashby Elementary,07350010, 92.3, 13.7, 60.8, 30.8, 1.4, 30.1 +4.137777777777777,4.14,a-vale-i2,2021-22,North Middlesex-Spaulding Memorial,07350005, 93.1, 12.0, 56.6, 19.8, 1.3, 26.2 +4.08,4.08,a-vale-i2,2021-22,North Middlesex-Squannacook Early Childhood Center,07350002, 91.8, 9.6, 43.0, 28.9, 6.1, 42.1 4.177777777777778,4.18,a-vale-i2,2021-22,North Reading-North Reading Middle,02170305, 94.0, 10.7, 42.7, 14.9, 2.1, 1.9 4.195555555555556,4.2,a-vale-i2,2021-22,North Reading-J Turner Hood,02170010, 94.4, 9.8, 46.2, 11.5, 0.5, 0.0 4.182222222222222,4.18,a-vale-i2,2021-22,North Reading-L D Batchelder,02170005, 94.1, 10.5, 52.1, 13.7, 0.2, 0.0 4.195555555555556,4.2,a-vale-i2,2021-22,North Reading-E Ethel Little School,02170003, 94.4, 10.0, 47.7, 12.6, 0.0, 46.7 +4.155555555555556,4.16,a-vale-i2,2021-22,North Reading-North Reading High,02170505, 93.5, 11.4, 42.2, 17.0, 4.7, 0.5 4.08,4.08,a-vale-i2,2021-22,Northampton-Northampton High,02100505, 91.8, 14.4, 51.0, 21.3, 7.4, 29.5 4.097777777777778,4.1,a-vale-i2,2021-22,Northampton-John F Kennedy Middle School,02100410, 92.2, 13.7, 54.3, 26.7, 6.6, 39.4 4.124444444444444,4.12,a-vale-i2,2021-22,Northampton-R. K. Finn Ryan Road,02100029, 92.8, 12.7, 56.0, 20.4, 4.0, 9.2 @@ -10376,286 +10376,334 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.008888888888889,4.01,a-vale-i2,2021-22,Northampton-Bridge Street,02100005, 90.2, 16.2, 65.6, 40.5, 11.9, 54.1 4.08,4.08,a-vale-i2,2021-22,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 91.8, 14.4, 54.2, 24.2, 8.3, 29.1 4.1466666666666665,4.15,a-vale-i2,2021-22,Northboro-Southboro-Algonquin Regional High,07300505, 93.3, 11.8, 44.2, 21.4, 5.0, 8.7 -4.168888888888889,4.17,a-vale-i2,2021-22,Northborough-Robert E. Melican Middle School,02130305, 93.8, 10.9, 46.2, 17.3, 2.4, 0.0 -4.16,4.16,a-vale-i2,2021-22,Northborough-Lincoln Street,02130003, 93.6, 11.2, 50.9, 19.5, 1.1, 0.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Northborough-Marion E Zeh,02130020, 94.4, 9.9, 44.5, 14.2, 0.0, 0.0 4.106666666666667,4.11,a-vale-i2,2021-22,Northborough-Fannie E Proctor,02130015, 92.4, 13.1, 64.2, 24.9, 2.3, 0.0 4.168888888888889,4.17,a-vale-i2,2021-22,Northborough-Marguerite E Peaslee,02130014, 93.8, 10.8, 47.3, 16.8, 0.8, 5.7 +4.16,4.16,a-vale-i2,2021-22,Northborough-Lincoln Street,02130003, 93.6, 11.2, 50.9, 19.5, 1.1, 0.0 +4.168888888888889,4.17,a-vale-i2,2021-22,Northborough-Robert E. Melican Middle School,02130305, 93.8, 10.9, 46.2, 17.3, 2.4, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Northborough-Marion E Zeh,02130020, 94.4, 9.9, 44.5, 14.2, 0.0, 0.0 4.075555555555556,4.08,a-vale-i2,2021-22,Northbridge-Northbridge Middle,02140305, 91.7, 14.5, 52.7, 29.2, 6.9, 30.0 -4.053333333333334,4.05,a-vale-i2,2021-22,Northbridge-Northbridge Elementary School,02140001, 91.2, 14.9, 65.3, 34.3, 7.4, 31.1 3.9955555555555557,4.0,a-vale-i2,2021-22,Northbridge-Northbridge High,02140505, 89.9, 17.0, 59.2, 35.6, 13.3, 41.1 +4.053333333333334,4.05,a-vale-i2,2021-22,Northbridge-Northbridge Elementary School,02140001, 91.2, 14.9, 65.3, 34.3, 7.4, 31.1 4.106666666666667,4.11,a-vale-i2,2021-22,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 92.4, 13.1, 53.1, 23.8, 5.7, 36.8 4.0488888888888885,4.05,a-vale-i2,2021-22,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 91.1, 15.8, 66.5, 32.8, 6.6, 49.4 4.155555555555556,4.16,a-vale-i2,2021-22,Norton-Henri A. Yelle,02180060, 93.5, 11.5, 49.7, 15.5, 2.2, 38.7 -4.137777777777777,4.14,a-vale-i2,2021-22,Norton-J C Solmonese,02180015, 93.1, 12.0, 54.9, 20.4, 2.6, 36.2 4.1288888888888895,4.13,a-vale-i2,2021-22,Norton-Norton Middle,02180305, 92.9, 12.5, 52.2, 21.3, 5.1, 32.9 4.115555555555555,4.12,a-vale-i2,2021-22,Norton-Norton High,02180505, 92.6, 12.9, 47.6, 21.2, 6.1, 14.1 4.106666666666667,4.11,a-vale-i2,2021-22,Norton-L G Nourse Elementary,02180010, 92.4, 13.3, 63.1, 23.8, 4.3, 39.0 +4.137777777777777,4.14,a-vale-i2,2021-22,Norton-J C Solmonese,02180015, 93.1, 12.0, 54.9, 20.4, 2.6, 36.2 4.195555555555556,4.2,a-vale-i2,2021-22,Norwell-Norwell Middle School,02190405, 94.4, 10.0, 43.4, 12.0, 1.4, 28.5 -4.182222222222222,4.18,a-vale-i2,2021-22,Norwell-Grace Farrar Cole,02190005, 94.1, 10.3, 48.9, 13.5, 0.7, 26.4 4.155555555555556,4.16,a-vale-i2,2021-22,Norwell-William G Vinal,02190020, 93.5, 11.5, 56.6, 18.7, 1.1, 35.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Norwell-Grace Farrar Cole,02190005, 94.1, 10.3, 48.9, 13.5, 0.7, 26.4 4.1466666666666665,4.15,a-vale-i2,2021-22,Norwell-Norwell High,02190505, 93.3, 11.7, 48.3, 19.0, 2.2, 24.6 +4.106666666666667,4.11,a-vale-i2,2021-22,Norwood-Charles J Prescott,02200025, 92.4, 12.8, 52.2, 29.9, 4.1, 52.2 3.982222222222222,3.98,a-vale-i2,2021-22,Norwood-George F. Willett,02200075, 89.6, 16.6, 58.3, 40.3, 13.1, 56.2 4.075555555555556,4.08,a-vale-i2,2021-22,Norwood-Dr. Philip O. Coakley Middle School,02200305, 91.7, 14.3, 55.1, 29.9, 6.2, 42.3 -4.106666666666667,4.11,a-vale-i2,2021-22,Norwood-Charles J Prescott,02200025, 92.4, 12.8, 52.2, 29.9, 4.1, 52.2 4.164444444444444,4.16,a-vale-i2,2021-22,Norwood-John P Oldham,02200020, 93.7, 10.9, 41.8, 18.9, 4.7, 30.9 -4.0488888888888885,4.05,a-vale-i2,2021-22,Norwood-Norwood High,02200505, 91.1, 15.3, 49.3, 28.2, 11.0, 36.0 -4.168888888888889,4.17,a-vale-i2,2021-22,Norwood-Cornelius M Callahan,02200010, 93.8, 10.7, 45.5, 17.4, 3.0, 45.5 4.1288888888888895,4.13,a-vale-i2,2021-22,Norwood-F A Cleveland,02200015, 92.9, 12.4, 52.1, 22.0, 3.2, 51.8 +4.0488888888888885,4.05,a-vale-i2,2021-22,Norwood-Norwood High,02200505, 91.1, 15.3, 49.3, 28.2, 11.0, 36.0 4.097777777777778,4.1,a-vale-i2,2021-22,Norwood-Balch,02200005, 92.2, 13.5, 57.0, 29.3, 5.2, 57.0 +4.168888888888889,4.17,a-vale-i2,2021-22,Norwood-Cornelius M Callahan,02200010, 93.8, 10.7, 45.5, 17.4, 3.0, 45.5 4.115555555555555,4.12,a-vale-i2,2021-22,Oak Bluffs-Oak Bluffs Elementary,02210005, 92.6, 12.3, 55.8, 27.7, 2.1, 10.7 4.16,4.16,a-vale-i2,2021-22,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 93.6, 11.2, 44.6, 19.5, 2.8, 15.5 4.182222222222222,4.18,a-vale-i2,2021-22,Old Rochester-Old Rochester Regional Jr High,07400405, 94.1, 10.6, 47.1, 17.3, 1.4, 0.7 4.017777777777778,4.02,a-vale-i2,2021-22,Old Rochester-Old Rochester Regional High,07400505, 90.4, 16.9, 71.5, 39.1, 6.7, 2.3 4.111111111111111,4.11,a-vale-i2,2021-22,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 92.5, 13.5, 66.5, 24.4, 0.9, 20.7 -4.084444444444444,4.08,a-vale-i2,2021-22,Orange-Fisher Hill,02230015, 91.9, 13.6, 44.0, 33.5, 12.8, 0.0 4.306666666666667,4.31,a-vale-i2,2021-22,Orange-Dexter Park,02230010, 96.9, 5.4, 14.0, 5.1, 0.7, 0.0 +4.084444444444444,4.08,a-vale-i2,2021-22,Orange-Fisher Hill,02230015, 91.9, 13.6, 44.0, 33.5, 12.8, 0.0 4.097777777777778,4.1,a-vale-i2,2021-22,Orleans-Orleans Elementary,02240005, 92.2, 13.8, 64.9, 23.8, 3.0, 30.4 -3.92,3.92,a-vale-i2,2021-22,Oxford-Oxford High,02260505, 88.2, 20.1, 63.7, 39.0, 16.5, 4.5 4.102222222222222,4.1,a-vale-i2,2021-22,Oxford-Clara Barton,02260005, 92.3, 13.4, 60.2, 26.9, 4.5, 1.5 4.102222222222222,4.1,a-vale-i2,2021-22,Oxford-Alfred M Chaffee,02260010, 92.3, 13.6, 63.9, 20.4, 2.7, 1.0 4.0311111111111115,4.03,a-vale-i2,2021-22,Oxford-Oxford Middle,02260405, 90.7, 16.5, 73.9, 34.1, 4.8, 1.2 +3.92,3.92,a-vale-i2,2021-22,Oxford-Oxford High,02260505, 88.2, 20.1, 63.7, 39.0, 16.5, 4.5 4.053333333333334,4.05,a-vale-i2,2021-22,Palmer-Palmer High,02270505, 91.2, 14.8, 53.7, 29.3, 9.9, 35.2 4.106666666666667,4.11,a-vale-i2,2021-22,Palmer-Old Mill Pond,02270008, 92.4, 12.7, 56.5, 29.1, 4.7, 31.7 4.08,4.08,a-vale-i2,2021-22,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 91.8, 14.3, 57.1, 27.4, 7.9, 23.6 3.088888888888889,3.09,a-vale-i2,2021-22,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 69.5, 50.1, 83.8, 73.8, 51.7, 73.8 +4.0311111111111115,4.03,a-vale-i2,2021-22,Peabody-John E. McCarthy,02290016, 90.7, 15.4, 67.2, 33.3, 9.0, 67.2 +4.084444444444444,4.08,a-vale-i2,2021-22,Peabody-Thomas Carroll,02290010, 91.9, 13.7, 64.9, 33.9, 2.2, 64.9 +4.1288888888888895,4.13,a-vale-i2,2021-22,Peabody-John E Burke,02290007, 92.9, 12.7, 62.8, 25.5, 0.8, 62.8 +4.12,4.12,a-vale-i2,2021-22,Peabody-Captain Samuel Brown,02290005, 92.7, 13.0, 61.4, 22.2, 4.1, 61.4 4.12,4.12,a-vale-i2,2021-22,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 92.7, 12.3, 33.3, 19.4, 9.3, 0.0 3.88,3.88,a-vale-i2,2021-22,Peabody-Peabody Veterans Memorial High,02290510, 87.3, 21.6, 66.8, 46.4, 20.9, 66.7 4.097777777777778,4.1,a-vale-i2,2021-22,Peabody-J Henry Higgins Middle,02290305, 92.2, 13.6, 56.9, 28.2, 5.2, 56.6 4.142222222222222,4.14,a-vale-i2,2021-22,Peabody-West Memorial,02290045, 93.2, 11.8, 57.5, 21.1, 0.8, 57.1 4.16,4.16,a-vale-i2,2021-22,Peabody-South Memorial,02290035, 93.6, 11.4, 54.2, 18.4, 1.2, 54.2 -4.084444444444444,4.08,a-vale-i2,2021-22,Peabody-Thomas Carroll,02290010, 91.9, 13.7, 64.9, 33.9, 2.2, 64.9 -4.0311111111111115,4.03,a-vale-i2,2021-22,Peabody-John E. McCarthy,02290016, 90.7, 15.4, 67.2, 33.3, 9.0, 67.2 -4.053333333333334,4.05,a-vale-i2,2021-22,Peabody-Center,02290015, 91.2, 15.1, 70.1, 34.9, 3.9, 70.1 -4.12,4.12,a-vale-i2,2021-22,Peabody-Captain Samuel Brown,02290005, 92.7, 13.0, 61.4, 22.2, 4.1, 61.4 -4.1288888888888895,4.13,a-vale-i2,2021-22,Peabody-John E Burke,02290007, 92.9, 12.7, 62.8, 25.5, 0.8, 62.8 4.04,4.04,a-vale-i2,2021-22,Peabody-William A Welch Sr,02290027, 90.9, 15.2, 68.3, 36.0, 8.9, 68.3 +4.053333333333334,4.05,a-vale-i2,2021-22,Peabody-Center,02290015, 91.2, 15.1, 70.1, 34.9, 3.9, 70.1 4.235555555555555,4.24,a-vale-i2,2021-22,Pelham-Pelham Elementary,02300005, 95.3, 8.3, 38.5, 9.8, 0.0, 0.8 -4.106666666666667,4.11,a-vale-i2,2021-22,Pembroke-Hobomock Elementary,02310010, 92.4, 13.5, 67.1, 25.7, 2.7, 0.0 -4.137777777777777,4.14,a-vale-i2,2021-22,Pembroke-North Pembroke Elementary,02310015, 93.1, 12.1, 58.9, 19.0, 2.1, 0.0 -4.155555555555556,4.16,a-vale-i2,2021-22,Pembroke-Bryantville Elementary,02310003, 93.5, 11.6, 51.6, 19.5, 2.0, 0.0 4.084444444444444,4.08,a-vale-i2,2021-22,Pembroke-Pembroke High School,02310505, 91.9, 14.3, 59.0, 27.1, 7.0, 0.0 +4.155555555555556,4.16,a-vale-i2,2021-22,Pembroke-Bryantville Elementary,02310003, 93.5, 11.6, 51.6, 19.5, 2.0, 0.0 4.093333333333333,4.09,a-vale-i2,2021-22,Pembroke-Pembroke Community Middle School,02310305, 92.1, 14.1, 59.0, 26.6, 5.3, 0.0 -4.173333333333334,4.17,a-vale-i2,2021-22,Pentucket-Elmer S Bagnall,07450005, 93.9, 10.8, 49.6, 15.2, 1.0, 7.1 -4.142222222222222,4.14,a-vale-i2,2021-22,Pentucket-Helen R Donaghue School,07450010, 93.2, 11.9, 58.9, 19.0, 1.2, 2.3 -4.2,4.2,a-vale-i2,2021-22,Pentucket-Dr John C Page School,07450015, 94.5, 9.7, 41.7, 13.7, 1.0, 4.8 +4.137777777777777,4.14,a-vale-i2,2021-22,Pembroke-North Pembroke Elementary,02310015, 93.1, 12.1, 58.9, 19.0, 2.1, 0.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Pembroke-Hobomock Elementary,02310010, 92.4, 13.5, 67.1, 25.7, 2.7, 0.0 4.102222222222222,4.1,a-vale-i2,2021-22,Pentucket-Pentucket Regional Sr High,07450505, 92.3, 13.5, 50.4, 23.5, 5.8, 6.6 +4.2,4.2,a-vale-i2,2021-22,Pentucket-Dr John C Page School,07450015, 94.5, 9.7, 41.7, 13.7, 1.0, 4.8 4.164444444444444,4.16,a-vale-i2,2021-22,Pentucket-Pentucket Regional Middle,07450405, 93.7, 11.2, 47.8, 15.7, 3.3, 7.4 4.111111111111111,4.11,a-vale-i2,2021-22,Pentucket-Dr Frederick N Sweetsir,07450020, 92.5, 13.0, 59.5, 26.8, 2.3, 3.6 +4.173333333333334,4.17,a-vale-i2,2021-22,Pentucket-Elmer S Bagnall,07450005, 93.9, 10.8, 49.6, 15.2, 1.0, 7.1 +4.142222222222222,4.14,a-vale-i2,2021-22,Pentucket-Helen R Donaghue School,07450010, 93.2, 11.9, 58.9, 19.0, 1.2, 2.3 4.426666666666667,4.43,a-vale-i2,2021-22,Petersham-Petersham Center,02340005, 99.6, 0.7, 0.0, 0.0, 0.0, 0.0 1.4044444444444446,1.4,a-vale-i2,2021-22,Phoenix Academy Public Charter High School Lawrence (District)-Phoenix Academy Public Charter High School Lawrence,35180505, 31.6, 83.3, 98.4, 99.5, 97.4, 5.8 1.5244444444444443,1.52,a-vale-i2,2021-22,Phoenix Academy Public Charter High School Springfield (District)-Phoenix Academy Public Charter High School Springfield,35080505, 34.3, 81.1, 97.0, 98.7, 94.0, 0.9 1.68,1.68,a-vale-i2,2021-22,Phoenix Charter Academy (District)-Phoenix Charter Academy,04930505, 37.8, 82.1, 97.6, 94.0, 88.7, 0.8 4.213333333333333,4.21,a-vale-i2,2021-22,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 94.8, 9.9, 44.5, 8.7, 0.8, 13.6 4.231111111111111,4.23,a-vale-i2,2021-22,Pioneer Charter School of Science II (PCSS-II) (District)-Pioneer Charter School of Science II (PCSS-II),35060505, 95.2, 9.1, 41.2, 8.2, 1.0, 10.8 -4.12,4.12,a-vale-i2,2021-22,Pioneer Valley-Pioneer Valley Regional,07500505, 92.7, 12.6, 42.3, 18.0, 7.7, 17.3 4.133333333333334,4.13,a-vale-i2,2021-22,Pioneer Valley-Northfield Elementary,07500008, 93.0, 12.2, 61.8, 19.8, 1.4, 6.8 4.124444444444444,4.12,a-vale-i2,2021-22,Pioneer Valley-Bernardston Elementary,07500006, 92.8, 12.0, 59.8, 21.1, 2.5, 3.0 +4.12,4.12,a-vale-i2,2021-22,Pioneer Valley-Pioneer Valley Regional,07500505, 92.7, 12.6, 42.3, 18.0, 7.7, 17.3 4.164444444444444,4.16,a-vale-i2,2021-22,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 93.7, 10.9, 41.8, 20.1, 5.3, 0.7 3.968888888888889,3.97,a-vale-i2,2021-22,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 89.3, 18.0, 69.6, 41.8, 12.8, 2.7 +3.2222222222222223,3.22,a-vale-i2,2021-22,Pittsfield-Eagle Education Academy,02360525, 72.5, 43.7, 75.0, 66.7, 54.2, 41.7 +4.004444444444444,4.0,a-vale-i2,2021-22,Pittsfield-Pittsfield Public Virtual Academy,02360705, 90.1, 17.0, 52.6, 32.3, 16.1, 0.5 +4.093333333333333,4.09,a-vale-i2,2021-22,Pittsfield-Allendale,02360010, 92.1, 14.0, 59.8, 28.1, 4.0, 0.0 3.8400000000000003,3.84,a-vale-i2,2021-22,Pittsfield-Crosby Educational Academy,02360030, 86.4, 22.4, 88.2, 76.5, 23.5, 17.6 4.133333333333334,4.13,a-vale-i2,2021-22,Pittsfield-Egremont,02360035, 93.0, 12.3, 47.7, 24.4, 4.7, 0.7 4.142222222222222,4.14,a-vale-i2,2021-22,Pittsfield-Robert T. Capeless Elementary School,02360045, 93.2, 11.9, 49.1, 21.5, 3.7, 1.2 3.9377777777777774,3.94,a-vale-i2,2021-22,Pittsfield-Morningside Community School,02360055, 88.6, 20.2, 71.8, 42.0, 14.9, 4.9 3.9644444444444447,3.96,a-vale-i2,2021-22,Pittsfield-Crosby,02360065, 89.2, 18.7, 69.0, 42.6, 13.0, 7.9 4.137777777777777,4.14,a-vale-i2,2021-22,Pittsfield-Stearns,02360090, 93.1, 12.2, 59.6, 20.6, 3.1, 1.8 -3.2222222222222223,3.22,a-vale-i2,2021-22,Pittsfield-Eagle Education Academy,02360525, 72.5, 43.7, 75.0, 66.7, 54.2, 41.7 -3.897777777777778,3.9,a-vale-i2,2021-22,Pittsfield-Taconic High,02360510, 87.7, 21.5, 64.8, 42.6, 19.4, 8.7 -3.6799999999999997,3.68,a-vale-i2,2021-22,Pittsfield-Pittsfield High,02360505, 82.8, 29.7, 70.6, 52.3, 28.8, 14.3 -4.08,4.08,a-vale-i2,2021-22,Pittsfield-Theodore Herberg Middle,02360310, 91.8, 14.4, 54.7, 31.3, 7.5, 2.9 -4.004444444444444,4.0,a-vale-i2,2021-22,Pittsfield-Pittsfield Public Virtual Academy,02360705, 90.1, 17.0, 52.6, 32.3, 16.1, 0.5 -3.893333333333333,3.89,a-vale-i2,2021-22,Pittsfield-Silvio O Conte Community,02360105, 87.6, 21.4, 77.1, 52.4, 19.2, 4.0 4.226666666666667,4.23,a-vale-i2,2021-22,Pittsfield-Williams,02360100, 95.1, 8.7, 32.2, 13.0, 1.1, 0.8 -4.093333333333333,4.09,a-vale-i2,2021-22,Pittsfield-Allendale,02360010, 92.1, 14.0, 59.8, 28.1, 4.0, 0.0 +3.893333333333333,3.89,a-vale-i2,2021-22,Pittsfield-Silvio O Conte Community,02360105, 87.6, 21.4, 77.1, 52.4, 19.2, 4.0 3.924444444444444,3.92,a-vale-i2,2021-22,Pittsfield-John T Reid Middle,02360305, 88.3, 20.1, 62.7, 42.7, 18.5, 4.7 +4.08,4.08,a-vale-i2,2021-22,Pittsfield-Theodore Herberg Middle,02360310, 91.8, 14.4, 54.7, 31.3, 7.5, 2.9 +3.6799999999999997,3.68,a-vale-i2,2021-22,Pittsfield-Pittsfield High,02360505, 82.8, 29.7, 70.6, 52.3, 28.8, 14.3 +3.897777777777778,3.9,a-vale-i2,2021-22,Pittsfield-Taconic High,02360510, 87.7, 21.5, 64.8, 42.6, 19.4, 8.7 4.16,4.16,a-vale-i2,2021-22,Plainville-Beatrice H Wood Elementary,02380005, 93.6, 11.3, 47.5, 19.0, 2.5, 8.2 4.088888888888889,4.09,a-vale-i2,2021-22,Plainville-Anna Ware Jackson,02380010, 92.0, 14.0, 63.9, 25.2, 6.1, 8.1 +4.071111111111111,4.07,a-vale-i2,2021-22,Plymouth-Hedge,02390010, 91.6, 13.8, 58.4, 32.1, 4.1, 44.8 +4.1288888888888895,4.13,a-vale-i2,2021-22,Plymouth-Cold Spring,02390005, 92.9, 12.0, 54.0, 24.5, 3.0, 40.1 +4.16,4.16,a-vale-i2,2021-22,Plymouth-Plymouth Early Childhood Center,02390003, 93.6, 10.4, 36.9, 17.3, 5.3, 36.0 +4.16,4.16,a-vale-i2,2021-22,Plymouth-Manomet Elementary,02390015, 93.6, 11.3, 55.1, 18.0, 1.2, 27.0 +4.097777777777778,4.1,a-vale-i2,2021-22,Plymouth-Plymouth South High,02390515, 92.2, 13.5, 52.5, 23.6, 7.8, 24.7 +4.062222222222222,4.06,a-vale-i2,2021-22,Plymouth-Plymouth North High,02390505, 91.4, 14.6, 54.5, 26.6, 9.0, 25.1 +4.124444444444444,4.12,a-vale-i2,2021-22,Plymouth-Federal Furnace School,02390011, 92.8, 12.7, 57.6, 23.1, 3.2, 30.8 +4.133333333333334,4.13,a-vale-i2,2021-22,Plymouth-Indian Brook,02390012, 93.0, 12.4, 56.5, 21.2, 2.3, 29.7 +4.1288888888888895,4.13,a-vale-i2,2021-22,Plymouth-Nathaniel Morton Elementary,02390030, 92.9, 12.5, 58.2, 23.7, 2.5, 35.5 4.12,4.12,a-vale-i2,2021-22,Plymouth-South Elementary,02390046, 92.7, 12.8, 58.0, 22.2, 2.3, 35.2 4.106666666666667,4.11,a-vale-i2,2021-22,Plymouth-West Elementary,02390047, 92.4, 13.5, 68.6, 22.8, 2.1, 41.9 4.088888888888889,4.09,a-vale-i2,2021-22,Plymouth-Plymouth South Middle,02390305, 92.0, 14.1, 60.2, 28.1, 4.9, 34.2 4.066666666666666,4.07,a-vale-i2,2021-22,Plymouth-Plymouth Commun Intermediate,02390405, 91.5, 14.9, 62.4, 31.2, 6.4, 41.7 -4.062222222222222,4.06,a-vale-i2,2021-22,Plymouth-Plymouth North High,02390505, 91.4, 14.6, 54.5, 26.6, 9.0, 25.1 -4.097777777777778,4.1,a-vale-i2,2021-22,Plymouth-Plymouth South High,02390515, 92.2, 13.5, 52.5, 23.6, 7.8, 24.7 -4.133333333333334,4.13,a-vale-i2,2021-22,Plymouth-Indian Brook,02390012, 93.0, 12.4, 56.5, 21.2, 2.3, 29.7 -4.16,4.16,a-vale-i2,2021-22,Plymouth-Manomet Elementary,02390015, 93.6, 11.3, 55.1, 18.0, 1.2, 27.0 -4.1288888888888895,4.13,a-vale-i2,2021-22,Plymouth-Nathaniel Morton Elementary,02390030, 92.9, 12.5, 58.2, 23.7, 2.5, 35.5 -4.16,4.16,a-vale-i2,2021-22,Plymouth-Plymouth Early Childhood Center,02390003, 93.6, 10.4, 36.9, 17.3, 5.3, 36.0 -4.1288888888888895,4.13,a-vale-i2,2021-22,Plymouth-Cold Spring,02390005, 92.9, 12.0, 54.0, 24.5, 3.0, 40.1 -4.071111111111111,4.07,a-vale-i2,2021-22,Plymouth-Hedge,02390010, 91.6, 13.8, 58.4, 32.1, 4.1, 44.8 -4.124444444444444,4.12,a-vale-i2,2021-22,Plymouth-Federal Furnace School,02390011, 92.8, 12.7, 57.6, 23.1, 3.2, 30.8 4.1288888888888895,4.13,a-vale-i2,2021-22,Plympton-Dennett Elementary,02400010, 92.9, 12.5, 59.8, 17.9, 2.8, 56.5 4.124444444444444,4.12,a-vale-i2,2021-22,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 92.8, 12.8, 48.9, 20.4, 5.3, 6.4 3.977777777777778,3.98,a-vale-i2,2021-22,Provincetown-Provincetown Schools,02420020, 89.5, 17.1, 68.9, 42.2, 13.7, 19.9 +4.124444444444444,4.12,a-vale-i2,2021-22,Quabbin-New Braintree Grade,07530020, 92.8, 11.6, 53.2, 26.6, 5.1, 45.6 4.062222222222222,4.06,a-vale-i2,2021-22,Quabbin-Hardwick Elementary,07530005, 91.4, 14.7, 65.3, 32.7, 5.6, 49.0 +4.124444444444444,4.12,a-vale-i2,2021-22,Quabbin-Hubbardston Center,07530010, 92.8, 12.6, 62.2, 27.9, 2.9, 62.2 +4.1288888888888895,4.13,a-vale-i2,2021-22,Quabbin-Oakham Center,07530025, 92.9, 12.4, 56.3, 25.8, 4.7, 47.7 3.9377777777777774,3.94,a-vale-i2,2021-22,Quabbin-Quabbin Regional High School,07530505, 88.6, 19.3, 65.5, 39.9, 14.9, 40.9 4.0488888888888885,4.05,a-vale-i2,2021-22,Quabbin-Quabbin Regional Middle School,07530405, 91.1, 15.7, 62.2, 29.5, 9.2, 39.0 4.08,4.08,a-vale-i2,2021-22,Quabbin-Ruggles Lane,07530030, 91.8, 14.1, 62.4, 31.7, 5.2, 46.8 -4.1288888888888895,4.13,a-vale-i2,2021-22,Quabbin-Oakham Center,07530025, 92.9, 12.4, 56.3, 25.8, 4.7, 47.7 -4.124444444444444,4.12,a-vale-i2,2021-22,Quabbin-New Braintree Grade,07530020, 92.8, 11.6, 53.2, 26.6, 5.1, 45.6 -4.124444444444444,4.12,a-vale-i2,2021-22,Quabbin-Hubbardston Center,07530010, 92.8, 12.6, 62.2, 27.9, 2.9, 62.2 3.9733333333333336,3.97,a-vale-i2,2021-22,Quaboag Regional-Quaboag Regional High,07780505, 89.4, 18.5, 74.4, 43.1, 11.2, 45.4 -4.057777777777778,4.06,a-vale-i2,2021-22,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 91.3, 15.4, 64.2, 35.3, 5.9, 34.3 4.093333333333333,4.09,a-vale-i2,2021-22,Quaboag Regional-West Brookfield Elementary,07780010, 92.1, 13.9, 67.5, 28.1, 4.3, 0.0 +4.057777777777778,4.06,a-vale-i2,2021-22,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 91.3, 15.4, 64.2, 35.3, 5.9, 34.3 4.071111111111111,4.07,a-vale-i2,2021-22,Quaboag Regional-Warren Elementary,07780005, 91.6, 14.7, 66.5, 33.8, 4.0, 0.0 -3.977777777777778,3.98,a-vale-i2,2021-22,Quincy-Quincy High,02430505, 89.5, 17.8, 59.4, 38.8, 15.3, 48.1 -4.1466666666666665,4.15,a-vale-i2,2021-22,Quincy-North Quincy High,02430510, 93.3, 11.4, 41.5, 22.1, 6.0, 31.3 -4.111111111111111,4.11,a-vale-i2,2021-22,Quincy-Clifford H Marshall Elementary,02430055, 92.5, 12.4, 51.0, 26.5, 5.6, 28.8 -4.217777777777778,4.22,a-vale-i2,2021-22,Quincy-Merrymount,02430060, 94.9, 9.0, 38.5, 14.5, 0.0, 26.7 -4.266666666666667,4.27,a-vale-i2,2021-22,Quincy-Montclair,02430065, 96.0, 6.8, 24.4, 8.2, 1.1, 12.9 -4.222222222222222,4.22,a-vale-i2,2021-22,Quincy-Francis W Parker,02430075, 95.0, 8.5, 33.1, 11.9, 1.9, 18.8 -4.044444444444444,4.04,a-vale-i2,2021-22,Quincy-Snug Harbor Community School,02430090, 91.0, 14.6, 54.5, 32.0, 10.9, 41.6 -4.155555555555556,4.16,a-vale-i2,2021-22,Quincy-Point Webster Middle,02430325, 93.5, 10.8, 39.8, 21.8, 6.2, 33.2 -4.12,4.12,a-vale-i2,2021-22,Quincy-South West Middle School,02430320, 92.7, 12.4, 49.7, 29.0, 6.2, 43.3 -4.28,4.28,a-vale-i2,2021-22,Quincy-Central Middle,02430315, 96.3, 6.5, 24.0, 7.8, 0.9, 17.6 -4.075555555555556,4.08,a-vale-i2,2021-22,Quincy-Broad Meadows Middle,02430310, 91.7, 14.7, 56.6, 30.6, 7.0, 39.8 -4.248888888888889,4.25,a-vale-i2,2021-22,Quincy-Atlantic Middle,02430305, 95.6, 7.6, 27.0, 12.7, 2.6, 15.1 4.231111111111111,4.23,a-vale-i2,2021-22,Quincy-Wollaston School,02430110, 95.2, 8.3, 32.3, 12.9, 0.3, 24.3 -4.191111111111111,4.19,a-vale-i2,2021-22,Quincy-Charles A Bernazzani Elementary,02430025, 94.3, 9.8, 41.8, 16.0, 1.4, 29.5 +4.248888888888889,4.25,a-vale-i2,2021-22,Quincy-Atlantic Middle,02430305, 95.6, 7.6, 27.0, 12.7, 2.6, 15.1 +4.075555555555556,4.08,a-vale-i2,2021-22,Quincy-Broad Meadows Middle,02430310, 91.7, 14.7, 56.6, 30.6, 7.0, 39.8 +4.28,4.28,a-vale-i2,2021-22,Quincy-Central Middle,02430315, 96.3, 6.5, 24.0, 7.8, 0.9, 17.6 +4.12,4.12,a-vale-i2,2021-22,Quincy-South West Middle School,02430320, 92.7, 12.4, 49.7, 29.0, 6.2, 43.3 +4.155555555555556,4.16,a-vale-i2,2021-22,Quincy-Point Webster Middle,02430325, 93.5, 10.8, 39.8, 21.8, 6.2, 33.2 +3.977777777777778,3.98,a-vale-i2,2021-22,Quincy-Quincy High,02430505, 89.5, 17.8, 59.4, 38.8, 15.3, 48.1 4.204444444444444,4.2,a-vale-i2,2021-22,Quincy-Squantum,02430095, 94.6, 9.3, 37.5, 13.7, 1.9, 31.0 -3.8666666666666667,3.87,a-vale-i2,2021-22,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 87.0, 17.9, 69.2, 63.0, 18.8, 69.2 +4.044444444444444,4.04,a-vale-i2,2021-22,Quincy-Snug Harbor Community School,02430090, 91.0, 14.6, 54.5, 32.0, 10.9, 41.6 +4.222222222222222,4.22,a-vale-i2,2021-22,Quincy-Francis W Parker,02430075, 95.0, 8.5, 33.1, 11.9, 1.9, 18.8 +4.266666666666667,4.27,a-vale-i2,2021-22,Quincy-Montclair,02430065, 96.0, 6.8, 24.4, 8.2, 1.1, 12.9 +4.217777777777778,4.22,a-vale-i2,2021-22,Quincy-Merrymount,02430060, 94.9, 9.0, 38.5, 14.5, 0.0, 26.7 +4.111111111111111,4.11,a-vale-i2,2021-22,Quincy-Clifford H Marshall Elementary,02430055, 92.5, 12.4, 51.0, 26.5, 5.6, 28.8 4.142222222222222,4.14,a-vale-i2,2021-22,Quincy-Atherton Hough,02430040, 93.2, 12.0, 50.8, 22.3, 4.5, 34.8 -4.12,4.12,a-vale-i2,2021-22,Quincy-Lincoln-Hancock Community School,02430035, 92.7, 11.9, 48.8, 27.1, 6.5, 31.3 +4.1466666666666665,4.15,a-vale-i2,2021-22,Quincy-North Quincy High,02430510, 93.3, 11.4, 41.5, 22.1, 6.0, 31.3 +4.191111111111111,4.19,a-vale-i2,2021-22,Quincy-Charles A Bernazzani Elementary,02430025, 94.3, 9.8, 41.8, 16.0, 1.4, 29.5 4.253333333333334,4.25,a-vale-i2,2021-22,Quincy-Beechwood Knoll Elementary,02430020, 95.7, 7.6, 32.7, 8.8, 0.6, 17.3 +3.8666666666666667,3.87,a-vale-i2,2021-22,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 87.0, 17.9, 69.2, 63.0, 18.8, 69.2 +4.12,4.12,a-vale-i2,2021-22,Quincy-Lincoln-Hancock Community School,02430035, 92.7, 11.9, 48.8, 27.1, 6.5, 31.3 4.062222222222222,4.06,a-vale-i2,2021-22,Ralph C Mahar-Ralph C Mahar Regional,07550505, 91.4, 14.7, 50.1, 27.7, 10.6, 2.3 3.8444444444444446,3.84,a-vale-i2,2021-22,Randolph-Randolph High,02440505, 86.5, 22.4, 64.9, 45.9, 22.9, 6.7 -4.044444444444444,4.04,a-vale-i2,2021-22,Randolph-Randolph Community Middle,02440410, 91.0, 15.3, 54.7, 32.4, 11.0, 44.3 -4.137777777777777,4.14,a-vale-i2,2021-22,Randolph-Martin E Young Elementary,02440040, 93.1, 11.5, 48.3, 21.8, 3.1, 6.1 -4.111111111111111,4.11,a-vale-i2,2021-22,Randolph-Elizabeth G Lyons Elementary,02440020, 92.5, 12.9, 52.8, 26.6, 5.9, 40.9 3.5599999999999996,3.56,a-vale-i2,2021-22,Randolph-J F Kennedy Elementary,02440018, 80.1, 31.7, 66.7, 49.4, 35.4, 33.5 4.137777777777777,4.14,a-vale-i2,2021-22,Randolph-Margaret L Donovan,02440015, 93.1, 11.5, 43.0, 22.4, 5.9, 35.7 +4.111111111111111,4.11,a-vale-i2,2021-22,Randolph-Elizabeth G Lyons Elementary,02440020, 92.5, 12.9, 52.8, 26.6, 5.9, 40.9 +4.044444444444444,4.04,a-vale-i2,2021-22,Randolph-Randolph Community Middle,02440410, 91.0, 15.3, 54.7, 32.4, 11.0, 44.3 +4.137777777777777,4.14,a-vale-i2,2021-22,Randolph-Martin E Young Elementary,02440040, 93.1, 11.5, 48.3, 21.8, 3.1, 6.1 3.9155555555555552,3.92,a-vale-i2,2021-22,Reading-RISE PreSchool,02460001, 88.1, 13.4, 59.7, 48.8, 18.6, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Reading-Alice M Barrows,02460002, 94.9, 9.0, 36.5, 9.2, 0.6, 0.0 -4.204444444444444,4.2,a-vale-i2,2021-22,Reading-Birch Meadow,02460005, 94.6, 9.5, 40.8, 10.0, 0.6, 0.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Reading-Joshua Eaton,02460010, 94.4, 10.0, 45.4, 11.9, 0.3, 0.0 -4.191111111111111,4.19,a-vale-i2,2021-22,Reading-J Warren Killam,02460017, 94.3, 10.2, 46.7, 13.0, 1.0, 0.0 -4.226666666666667,4.23,a-vale-i2,2021-22,Reading-Wood End Elementary School,02460020, 95.1, 8.9, 40.6, 9.6, 0.0, 0.0 4.195555555555556,4.2,a-vale-i2,2021-22,Reading-Reading Memorial High,02460505, 94.4, 9.9, 34.0, 11.4, 3.3, 0.1 4.1866666666666665,4.19,a-vale-i2,2021-22,Reading-Walter S Parker Middle,02460310, 94.2, 10.4, 44.1, 14.4, 2.1, 0.0 4.177777777777778,4.18,a-vale-i2,2021-22,Reading-Arthur W Coolidge Middle,02460305, 94.0, 10.8, 45.0, 13.6, 2.0, 1.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Revere-Garfield Middle School,02480057, 92.3, 13.2, 55.8, 26.3, 4.8, 2.0 -4.102222222222222,4.1,a-vale-i2,2021-22,Revere-Paul Revere,02480050, 92.3, 13.0, 58.9, 26.1, 2.6, 3.8 -4.004444444444444,4.0,a-vale-i2,2021-22,Revere-Garfield Elementary School,02480056, 90.1, 16.5, 64.5, 38.3, 11.0, 7.6 -4.066666666666666,4.07,a-vale-i2,2021-22,Revere-A. C. Whelan Elementary School,02480003, 91.5, 14.8, 62.2, 29.9, 5.8, 3.2 -4.088888888888889,4.09,a-vale-i2,2021-22,Revere-Beachmont Veterans Memorial School,02480013, 92.0, 13.7, 56.9, 26.3, 5.6, 2.2 -4.106666666666667,4.11,a-vale-i2,2021-22,Revere-Rumney Marsh Academy,02480014, 92.4, 13.3, 54.0, 27.2, 5.2, 1.8 -4.04,4.04,a-vale-i2,2021-22,Revere-Abraham Lincoln,02480025, 90.9, 14.9, 64.7, 35.2, 6.4, 3.3 -4.084444444444444,4.08,a-vale-i2,2021-22,Revere-Staff Sargent James J. Hill Elementary School,02480035, 91.9, 13.6, 59.1, 31.4, 3.9, 3.0 -4.093333333333333,4.09,a-vale-i2,2021-22,Revere-Susan B. Anthony Middle School,02480305, 92.1, 13.6, 54.7, 26.1, 4.8, 2.3 +4.217777777777778,4.22,a-vale-i2,2021-22,Reading-Alice M Barrows,02460002, 94.9, 9.0, 36.5, 9.2, 0.6, 0.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Reading-J Warren Killam,02460017, 94.3, 10.2, 46.7, 13.0, 1.0, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Reading-Joshua Eaton,02460010, 94.4, 10.0, 45.4, 11.9, 0.3, 0.0 +4.204444444444444,4.2,a-vale-i2,2021-22,Reading-Birch Meadow,02460005, 94.6, 9.5, 40.8, 10.0, 0.6, 0.0 +4.226666666666667,4.23,a-vale-i2,2021-22,Reading-Wood End Elementary School,02460020, 95.1, 8.9, 40.6, 9.6, 0.0, 0.0 3.8622222222222224,3.86,a-vale-i2,2021-22,Revere-Revere High,02480505, 86.9, 22.1, 62.7, 40.4, 19.9, 8.2 2.9555555555555557,2.96,a-vale-i2,2021-22,Revere-Seacoast School,02480520, 66.5, 50.4, 93.0, 84.5, 60.6, 46.5 +4.102222222222222,4.1,a-vale-i2,2021-22,Revere-Paul Revere,02480050, 92.3, 13.0, 58.9, 26.1, 2.6, 3.8 +4.004444444444444,4.0,a-vale-i2,2021-22,Revere-Garfield Elementary School,02480056, 90.1, 16.5, 64.5, 38.3, 11.0, 7.6 +4.093333333333333,4.09,a-vale-i2,2021-22,Revere-Susan B. Anthony Middle School,02480305, 92.1, 13.6, 54.7, 26.1, 4.8, 2.3 +4.084444444444444,4.08,a-vale-i2,2021-22,Revere-Staff Sargent James J. Hill Elementary School,02480035, 91.9, 13.6, 59.1, 31.4, 3.9, 3.0 +4.04,4.04,a-vale-i2,2021-22,Revere-Abraham Lincoln,02480025, 90.9, 14.9, 64.7, 35.2, 6.4, 3.3 +4.106666666666667,4.11,a-vale-i2,2021-22,Revere-Rumney Marsh Academy,02480014, 92.4, 13.3, 54.0, 27.2, 5.2, 1.8 +4.088888888888889,4.09,a-vale-i2,2021-22,Revere-Beachmont Veterans Memorial School,02480013, 92.0, 13.7, 56.9, 26.3, 5.6, 2.2 +4.066666666666666,4.07,a-vale-i2,2021-22,Revere-A. C. Whelan Elementary School,02480003, 91.5, 14.8, 62.2, 29.9, 5.8, 3.2 +4.102222222222222,4.1,a-vale-i2,2021-22,Revere-Garfield Middle School,02480057, 92.3, 13.2, 55.8, 26.3, 4.8, 2.0 4.1466666666666665,4.15,a-vale-i2,2021-22,Richmond-Richmond Consolidated,02490005, 93.3, 12.0, 57.0, 16.5, 1.9, 55.1 4.12,4.12,a-vale-i2,2021-22,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 92.7, 12.5, 52.5, 22.7, 5.7, 24.7 4.1288888888888895,4.13,a-vale-i2,2021-22,River Valley Charter (District)-River Valley Charter School,04820050, 92.9, 12.5, 54.4, 23.8, 2.4, 53.1 4.155555555555556,4.16,a-vale-i2,2021-22,Rochester-Rochester Memorial,02500005, 93.5, 11.1, 53.7, 17.2, 2.2, 0.7 -4.084444444444444,4.08,a-vale-i2,2021-22,Rockland-John W Rogers Middle,02510305, 91.9, 14.4, 60.3, 25.9, 5.8, 27.9 -4.026666666666666,4.03,a-vale-i2,2021-22,Rockland-Rockland Senior High,02510505, 90.6, 15.6, 57.5, 31.4, 10.9, 35.6 4.088888888888889,4.09,a-vale-i2,2021-22,Rockland-R Stewart Esten,02510025, 92.0, 14.2, 64.3, 27.3, 5.7, 43.2 -3.9733333333333336,3.97,a-vale-i2,2021-22,Rockland-Jefferson Elementary School,02510060, 89.4, 18.3, 63.9, 29.0, 7.1, 26.9 4.097777777777778,4.1,a-vale-i2,2021-22,Rockland-Memorial Park,02510020, 92.2, 13.2, 66.4, 24.9, 3.6, 36.0 +3.9733333333333336,3.97,a-vale-i2,2021-22,Rockland-Jefferson Elementary School,02510060, 89.4, 18.3, 63.9, 29.0, 7.1, 26.9 +4.026666666666666,4.03,a-vale-i2,2021-22,Rockland-Rockland Senior High,02510505, 90.6, 15.6, 57.5, 31.4, 10.9, 35.6 +4.084444444444444,4.08,a-vale-i2,2021-22,Rockland-John W Rogers Middle,02510305, 91.9, 14.4, 60.3, 25.9, 5.8, 27.9 4.102222222222222,4.1,a-vale-i2,2021-22,Rockport-Rockport Elementary,02520005, 92.3, 13.6, 61.0, 21.7, 2.5, 61.0 4.164444444444444,4.16,a-vale-i2,2021-22,Rockport-Rockport High,02520510, 93.7, 11.2, 36.3, 16.7, 6.4, 30.3 4.173333333333334,4.17,a-vale-i2,2021-22,Rockport-Rockport Middle,02520305, 93.9, 11.0, 45.9, 16.4, 2.9, 20.3 4.062222222222222,4.06,a-vale-i2,2021-22,Rowe-Rowe Elementary,02530005, 91.4, 14.8, 71.2, 37.0, 1.4, 0.0 3.924444444444444,3.92,a-vale-i2,2021-22,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 88.3, 19.9, 66.2, 49.4, 16.1, 0.1 +3.8577777777777778,3.86,a-vale-i2,2021-22,Salem-Salem Early Childhood,02580001, 86.8, 21.9, 81.7, 53.9, 20.0, 39.1 3.12,3.12,a-vale-i2,2021-22,Salem-Salem Prep High School,02580515, 70.2, 42.9, 77.8, 72.2, 61.1, 66.7 2.8444444444444446,2.84,a-vale-i2,2021-22,Salem-New Liberty Innovation School,02580510, 64.0, 51.7, 93.4, 91.8, 82.0, 91.8 -3.92,3.92,a-vale-i2,2021-22,Salem-Salem High,02580505, 88.2, 20.2, 61.5, 34.4, 18.8, 47.8 -3.986666666666667,3.99,a-vale-i2,2021-22,Salem-Collins Middle,02580305, 89.7, 17.8, 69.3, 35.5, 10.5, 33.0 -4.062222222222222,4.06,a-vale-i2,2021-22,Salem-Witchcraft Heights,02580070, 91.4, 14.7, 60.9, 29.1, 6.1, 28.9 -4.075555555555556,4.08,a-vale-i2,2021-22,Salem-Bates,02580003, 91.7, 13.9, 59.7, 28.9, 5.6, 36.5 -4.106666666666667,4.11,a-vale-i2,2021-22,Salem-Saltonstall School,02580050, 92.4, 13.4, 58.1, 23.6, 5.0, 33.5 -4.008888888888889,4.01,a-vale-i2,2021-22,Salem-Horace Mann Laboratory,02580030, 90.2, 16.4, 65.1, 36.8, 11.0, 34.0 -4.124444444444444,4.12,a-vale-i2,2021-22,Salem-Carlton,02580015, 92.8, 12.9, 57.6, 23.2, 2.4, 9.6 4.044444444444444,4.04,a-vale-i2,2021-22,Salem-Bentley Academy Innovation School,02580010, 91.0, 16.0, 75.0, 34.4, 5.5, 52.6 -3.8577777777777778,3.86,a-vale-i2,2021-22,Salem-Salem Early Childhood,02580001, 86.8, 21.9, 81.7, 53.9, 20.0, 39.1 +4.075555555555556,4.08,a-vale-i2,2021-22,Salem-Bates,02580003, 91.7, 13.9, 59.7, 28.9, 5.6, 36.5 +3.92,3.92,a-vale-i2,2021-22,Salem-Salem High,02580505, 88.2, 20.2, 61.5, 34.4, 18.8, 47.8 +4.124444444444444,4.12,a-vale-i2,2021-22,Salem-Carlton,02580015, 92.8, 12.9, 57.6, 23.2, 2.4, 9.6 +4.008888888888889,4.01,a-vale-i2,2021-22,Salem-Horace Mann Laboratory,02580030, 90.2, 16.4, 65.1, 36.8, 11.0, 34.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Salem-Saltonstall School,02580050, 92.4, 13.4, 58.1, 23.6, 5.0, 33.5 +4.062222222222222,4.06,a-vale-i2,2021-22,Salem-Witchcraft Heights,02580070, 91.4, 14.7, 60.9, 29.1, 6.1, 28.9 +3.986666666666667,3.99,a-vale-i2,2021-22,Salem-Collins Middle,02580305, 89.7, 17.8, 69.3, 35.5, 10.5, 33.0 4.097777777777778,4.1,a-vale-i2,2021-22,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 92.2, 14.2, 58.4, 23.0, 5.5, 22.0 4.071111111111111,4.07,a-vale-i2,2021-22,Sandwich-Forestdale School,02610002, 91.6, 15.1, 69.7, 31.5, 3.0, 41.6 4.088888888888889,4.09,a-vale-i2,2021-22,Sandwich-Oak Ridge,02610025, 92.0, 14.4, 68.7, 27.7, 2.5, 20.8 -4.075555555555556,4.08,a-vale-i2,2021-22,Sandwich-Sandwich High,02610505, 91.7, 15.0, 65.7, 26.1, 5.2, 28.6 4.111111111111111,4.11,a-vale-i2,2021-22,Sandwich-Sandwich STEM Academy,02610305, 92.5, 13.5, 56.5, 23.9, 4.5, 0.0 -4.062222222222222,4.06,a-vale-i2,2021-22,Saugus-Belmonte STEAM Academy,02620060, 91.4, 15.0, 65.6, 32.4, 6.5, 60.9 -3.977777777777778,3.98,a-vale-i2,2021-22,Saugus-Veterans Early Learning Center,02620065, 89.5, 17.5, 66.9, 38.2, 9.8, 52.2 +4.075555555555556,4.08,a-vale-i2,2021-22,Sandwich-Sandwich High,02610505, 91.7, 15.0, 65.7, 26.1, 5.2, 28.6 3.897777777777778,3.9,a-vale-i2,2021-22,Saugus-Saugus High,02620505, 87.7, 20.4, 69.2, 45.3, 18.2, 50.3 +3.977777777777778,3.98,a-vale-i2,2021-22,Saugus-Veterans Early Learning Center,02620065, 89.5, 17.5, 66.9, 38.2, 9.8, 52.2 +4.062222222222222,4.06,a-vale-i2,2021-22,Saugus-Belmonte STEAM Academy,02620060, 91.4, 15.0, 65.6, 32.4, 6.5, 60.9 4.066666666666666,4.07,a-vale-i2,2021-22,Saugus-Saugus Middle School,02620305, 91.5, 14.6, 60.6, 30.6, 6.3, 36.7 4.102222222222222,4.1,a-vale-i2,2021-22,Savoy-Emma L Miller Elementary School,02630010, 92.3, 13.8, 64.7, 31.4, 0.0, 11.8 -4.1288888888888895,4.13,a-vale-i2,2021-22,Scituate-Wampatuck Elementary,02640020, 92.9, 12.5, 61.5, 20.4, 2.3, 14.0 -4.142222222222222,4.14,a-vale-i2,2021-22,Scituate-Scituate High School,02640505, 93.2, 11.8, 53.1, 19.8, 3.4, 29.4 -4.16,4.16,a-vale-i2,2021-22,Scituate-Gates Middle School,02640305, 93.6, 11.5, 51.7, 16.7, 2.2, 10.5 4.177777777777778,4.18,a-vale-i2,2021-22,Scituate-Cushing Elementary,02640007, 94.0, 10.7, 50.0, 10.7, 0.6, 6.7 4.191111111111111,4.19,a-vale-i2,2021-22,Scituate-Hatherly Elementary,02640010, 94.3, 10.2, 48.0, 11.6, 1.2, 4.0 +4.142222222222222,4.14,a-vale-i2,2021-22,Scituate-Scituate High School,02640505, 93.2, 11.8, 53.1, 19.8, 3.4, 29.4 +4.1288888888888895,4.13,a-vale-i2,2021-22,Scituate-Wampatuck Elementary,02640020, 92.9, 12.5, 61.5, 20.4, 2.3, 14.0 +4.16,4.16,a-vale-i2,2021-22,Scituate-Gates Middle School,02640305, 93.6, 11.5, 51.7, 16.7, 2.2, 10.5 4.177777777777778,4.18,a-vale-i2,2021-22,Scituate-Jenkins Elementary School,02640015, 94.0, 10.8, 51.2, 14.5, 0.6, 6.7 +4.1466666666666665,4.15,a-vale-i2,2021-22,Seekonk-George R Martin,02650007, 93.3, 11.7, 54.0, 20.9, 0.8, 12.7 4.142222222222222,4.14,a-vale-i2,2021-22,Seekonk-Seekonk High,02650505, 93.2, 11.9, 48.7, 20.5, 3.3, 23.7 4.1866666666666665,4.19,a-vale-i2,2021-22,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 94.2, 10.3, 43.1, 17.5, 1.3, 16.6 -4.1466666666666665,4.15,a-vale-i2,2021-22,Seekonk-George R Martin,02650007, 93.3, 11.7, 54.0, 20.9, 0.8, 12.7 4.1466666666666665,4.15,a-vale-i2,2021-22,Seekonk-Mildred Aitken School,02650015, 93.3, 11.9, 55.9, 21.3, 1.4, 0.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Sharon-Cottage Street,02660005, 94.4, 9.7, 41.5, 13.5, 1.3, 0.0 -4.222222222222222,4.22,a-vale-i2,2021-22,Sharon-Heights Elementary,02660015, 95.0, 8.8, 36.5, 10.7, 1.1, 0.0 -4.222222222222222,4.22,a-vale-i2,2021-22,Sharon-Sharon Middle,02660305, 95.0, 8.7, 32.2, 9.6, 1.9, 0.7 -4.2,4.2,a-vale-i2,2021-22,Sharon-East Elementary,02660010, 94.5, 9.8, 41.2, 13.4, 2.1, 0.0 4.151111111111112,4.15,a-vale-i2,2021-22,Sharon-Sharon High,02660505, 93.4, 11.8, 41.2, 18.2, 4.9, 0.3 +4.222222222222222,4.22,a-vale-i2,2021-22,Sharon-Heights Elementary,02660015, 95.0, 8.8, 36.5, 10.7, 1.1, 0.0 +4.2,4.2,a-vale-i2,2021-22,Sharon-East Elementary,02660010, 94.5, 9.8, 41.2, 13.4, 2.1, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Sharon-Cottage Street,02660005, 94.4, 9.7, 41.5, 13.5, 1.3, 0.0 3.9066666666666667,3.91,a-vale-i2,2021-22,Sharon-Sharon Early Childhood Center,02660001, 87.9, 18.4, 76.6, 54.7, 10.9, 0.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Sharon-Sharon Middle,02660305, 95.0, 8.7, 32.2, 9.6, 1.9, 0.7 4.164444444444444,4.16,a-vale-i2,2021-22,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 93.7, 11.0, 44.9, 17.9, 3.0, 15.5 4.2,4.2,a-vale-i2,2021-22,Sherborn-Pine Hill,02690010, 94.5, 10.0, 44.5, 8.3, 0.7, 44.5 -4.182222222222222,4.18,a-vale-i2,2021-22,Shrewsbury-Major Howard W. Beal School,02710005, 94.1, 10.2, 45.1, 16.0, 1.0, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Shrewsbury-Calvin Coolidge School,02710015, 93.0, 11.8, 55.1, 25.5, 2.6, 0.0 4.168888888888889,4.17,a-vale-i2,2021-22,Shrewsbury-Floral Street School,02710020, 93.8, 10.7, 46.7, 18.2, 1.9, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Shrewsbury-Calvin Coolidge School,02710015, 93.0, 11.8, 55.1, 25.5, 2.6, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Shrewsbury-Major Howard W. Beal School,02710005, 94.1, 10.2, 45.1, 16.0, 1.0, 0.0 4.1866666666666665,4.19,a-vale-i2,2021-22,Shrewsbury-Walter J. Paton School,02710025, 94.2, 10.3, 44.7, 14.8, 0.6, 0.0 -4.2,4.2,a-vale-i2,2021-22,Shrewsbury-Oak Middle School,02710030, 94.5, 9.8, 38.5, 13.1, 2.4, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Shrewsbury-Spring Street School,02710035, 94.9, 9.0, 39.6, 8.6, 0.0, 0.0 -3.977777777777778,3.98,a-vale-i2,2021-22,Shrewsbury-Parker Road Preschool,02710040, 89.5, 13.2, 57.2, 45.4, 10.5, 0.0 -4.2,4.2,a-vale-i2,2021-22,Shrewsbury-Sherwood Middle School,02710305, 94.5, 9.7, 40.8, 15.2, 1.5, 0.0 4.151111111111112,4.15,a-vale-i2,2021-22,Shrewsbury-Shrewsbury High School,02710505, 93.4, 11.2, 40.7, 17.5, 5.1, 0.0 +4.2,4.2,a-vale-i2,2021-22,Shrewsbury-Sherwood Middle School,02710305, 94.5, 9.7, 40.8, 15.2, 1.5, 0.0 +3.977777777777778,3.98,a-vale-i2,2021-22,Shrewsbury-Parker Road Preschool,02710040, 89.5, 13.2, 57.2, 45.4, 10.5, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Shrewsbury-Spring Street School,02710035, 94.9, 9.0, 39.6, 8.6, 0.0, 0.0 +4.2,4.2,a-vale-i2,2021-22,Shrewsbury-Oak Middle School,02710030, 94.5, 9.8, 38.5, 13.1, 2.4, 0.0 4.155555555555556,4.16,a-vale-i2,2021-22,Shutesbury-Shutesbury Elementary,02720005, 93.5, 11.4, 48.7, 21.8, 2.5, 2.5 4.142222222222222,4.14,a-vale-i2,2021-22,Silver Lake-Silver Lake Regional Middle School,07600405, 93.2, 12.0, 51.7, 21.3, 3.3, 34.6 4.12,4.12,a-vale-i2,2021-22,Silver Lake-Silver Lake Regional High,07600505, 92.7, 12.7, 51.5, 23.3, 4.3, 12.3 3.977777777777778,3.98,a-vale-i2,2021-22,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 89.5, 17.7, 69.1, 43.5, 11.6, 21.5 4.2,4.2,a-vale-i2,2021-22,Somerset-Chace Street,02730005, 94.5, 9.8, 45.8, 10.5, 0.3, 16.8 -4.106666666666667,4.11,a-vale-i2,2021-22,Somerset-Somerset Middle School,02730305, 92.4, 13.5, 55.8, 23.7, 3.8, 34.3 -4.151111111111112,4.15,a-vale-i2,2021-22,Somerset-South,02730015, 93.4, 11.7, 52.1, 23.2, 2.2, 18.4 4.168888888888889,4.17,a-vale-i2,2021-22,Somerset-North Elementary,02730008, 93.8, 10.9, 52.7, 17.6, 0.8, 18.4 +4.151111111111112,4.15,a-vale-i2,2021-22,Somerset-South,02730015, 93.4, 11.7, 52.1, 23.2, 2.2, 18.4 +4.106666666666667,4.11,a-vale-i2,2021-22,Somerset-Somerset Middle School,02730305, 92.4, 13.5, 55.8, 23.7, 3.8, 34.3 4.044444444444444,4.04,a-vale-i2,2021-22,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 91.0, 15.4, 56.6, 27.5, 9.9, 19.2 3.977777777777778,3.98,a-vale-i2,2021-22,Somerville-Capuano Early Childhood Center,02740005, 89.5, 16.7, 69.4, 42.8, 9.6, 69.0 +4.231111111111111,4.23,a-vale-i2,2021-22,Somerville-Benjamin G Brown,02740015, 95.2, 8.5, 33.5, 8.5, 0.0, 25.5 +3.4400000000000004,3.44,a-vale-i2,2021-22,Somerville-Full Circle High School,02740510, 77.4, 36.6, 80.4, 74.5, 51.0, 78.4 +3.9511111111111115,3.95,a-vale-i2,2021-22,Somerville-Somerville High,02740505, 88.9, 18.7, 62.3, 37.9, 16.6, 55.0 3.8222222222222224,3.82,a-vale-i2,2021-22,Somerville-Next Wave Junior High,02740410, 86.0, 21.3, 71.4, 57.1, 23.8, 52.4 4.053333333333334,4.05,a-vale-i2,2021-22,Somerville-Winter Hill Community,02740120, 91.2, 14.8, 56.6, 33.5, 8.6, 44.1 4.1466666666666665,4.15,a-vale-i2,2021-22,Somerville-West Somerville Neighborhood,02740115, 93.3, 11.7, 48.8, 18.7, 3.2, 17.1 4.137777777777777,4.14,a-vale-i2,2021-22,Somerville-E Somerville Community,02740111, 93.1, 12.0, 51.1, 21.7, 3.2, 37.2 -4.168888888888889,4.17,a-vale-i2,2021-22,Somerville-John F Kennedy,02740083, 93.8, 10.9, 47.2, 15.3, 2.4, 46.6 -3.4400000000000004,3.44,a-vale-i2,2021-22,Somerville-Full Circle High School,02740510, 77.4, 36.6, 80.4, 74.5, 51.0, 78.4 4.106666666666667,4.11,a-vale-i2,2021-22,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 92.4, 12.9, 56.3, 28.4, 4.9, 40.8 -3.9511111111111115,3.95,a-vale-i2,2021-22,Somerville-Somerville High,02740505, 88.9, 18.7, 62.3, 37.9, 16.6, 55.0 4.017777777777778,4.02,a-vale-i2,2021-22,Somerville-Arthur D Healey,02740075, 90.4, 16.0, 61.6, 37.1, 8.6, 50.9 -4.231111111111111,4.23,a-vale-i2,2021-22,Somerville-Benjamin G Brown,02740015, 95.2, 8.5, 33.5, 8.5, 0.0, 25.5 +4.168888888888889,4.17,a-vale-i2,2021-22,Somerville-John F Kennedy,02740083, 93.8, 10.9, 47.2, 15.3, 2.4, 46.6 +3.9511111111111115,3.95,a-vale-i2,2021-22,South Hadley-South Hadley High,02780505, 88.9, 19.6, 53.1, 39.4, 21.4, 0.0 3.9955555555555557,4.0,a-vale-i2,2021-22,South Hadley-Michael E. Smith Middle School,02780305, 89.9, 17.7, 69.7, 38.3, 9.9, 13.1 4.084444444444444,4.08,a-vale-i2,2021-22,South Hadley-Mosier,02780020, 91.9, 14.2, 65.9, 26.8, 3.5, 0.0 -3.9511111111111115,3.95,a-vale-i2,2021-22,South Hadley-South Hadley High,02780505, 88.9, 19.6, 53.1, 39.4, 21.4, 0.0 4.08,4.08,a-vale-i2,2021-22,South Hadley-Plains Elementary,02780015, 91.8, 14.1, 68.1, 29.3, 3.5, 0.0 4.044444444444444,4.04,a-vale-i2,2021-22,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 91.0, 15.6, 58.6, 33.1, 9.5, 22.9 4.093333333333333,4.09,a-vale-i2,2021-22,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 92.1, 13.7, 55.1, 26.2, 5.9, 34.9 4.137777777777777,4.14,a-vale-i2,2021-22,South Shore Regional Vocational Technical-So Shore Vocational Technical High,08730605, 93.1, 12.4, 51.8, 19.3, 3.8, 20.5 4.168888888888889,4.17,a-vale-i2,2021-22,Southampton-William E Norris,02750005, 93.8, 11.0, 54.9, 15.6, 1.3, 0.0 -4.173333333333334,4.17,a-vale-i2,2021-22,Southborough-Margaret A Neary,02760020, 93.9, 10.8, 48.1, 15.3, 1.5, 0.0 4.253333333333334,4.25,a-vale-i2,2021-22,Southborough-Mary E Finn School,02760008, 95.7, 7.5, 35.4, 11.1, 1.1, 0.0 -4.231111111111111,4.23,a-vale-i2,2021-22,Southborough-P Brent Trottier,02760305, 95.2, 8.6, 35.3, 8.8, 0.5, 0.0 +4.173333333333334,4.17,a-vale-i2,2021-22,Southborough-Margaret A Neary,02760020, 93.9, 10.8, 48.1, 15.3, 1.5, 0.0 4.155555555555556,4.16,a-vale-i2,2021-22,Southborough-Albert S. Woodward Memorial School,02760050, 93.5, 11.4, 57.5, 18.2, 0.0, 4.4 -3.3555555555555556,3.36,a-vale-i2,2021-22,Southbridge-Southbridge Academy,02770525, 75.5, 38.9, 90.0, 75.0, 47.5, 57.5 -3.76,3.76,a-vale-i2,2021-22,Southbridge-Southbridge High School,02770515, 84.6, 28.9, 81.9, 56.9, 27.6, 71.5 -3.9555555555555557,3.96,a-vale-i2,2021-22,Southbridge-Southbridge Middle School,02770315, 89.0, 18.4, 74.5, 41.8, 12.0, 56.8 -4.12,4.12,a-vale-i2,2021-22,Southbridge-West Street,02770020, 92.7, 15.0, 67.6, 20.9, 3.2, 33.2 -3.9422222222222225,3.94,a-vale-i2,2021-22,Southbridge-Eastford Road,02770010, 88.7, 17.8, 74.9, 46.2, 13.5, 42.5 +4.231111111111111,4.23,a-vale-i2,2021-22,Southborough-P Brent Trottier,02760305, 95.2, 8.6, 35.3, 8.8, 0.5, 0.0 4.115555555555555,4.12,a-vale-i2,2021-22,Southbridge-Charlton Street,02770005, 92.6, 15.2, 67.7, 26.3, 5.0, 39.0 +3.9422222222222225,3.94,a-vale-i2,2021-22,Southbridge-Eastford Road,02770010, 88.7, 17.8, 74.9, 46.2, 13.5, 42.5 +4.12,4.12,a-vale-i2,2021-22,Southbridge-West Street,02770020, 92.7, 15.0, 67.6, 20.9, 3.2, 33.2 +3.9555555555555557,3.96,a-vale-i2,2021-22,Southbridge-Southbridge Middle School,02770315, 89.0, 18.4, 74.5, 41.8, 12.0, 56.8 +3.76,3.76,a-vale-i2,2021-22,Southbridge-Southbridge High School,02770515, 84.6, 28.9, 81.9, 56.9, 27.6, 71.5 +3.3555555555555556,3.36,a-vale-i2,2021-22,Southbridge-Southbridge Academy,02770525, 75.5, 38.9, 90.0, 75.0, 47.5, 57.5 4.142222222222222,4.14,a-vale-i2,2021-22,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 93.2, 11.9, 48.5, 21.6, 4.5, 20.6 -4.0311111111111115,4.03,a-vale-i2,2021-22,Southern Berkshire-Mt Everett Regional,07650505, 90.7, 16.1, 64.2, 34.2, 9.4, 33.5 -4.08,4.08,a-vale-i2,2021-22,Southern Berkshire-New Marlborough Central,07650018, 91.8, 14.7, 68.2, 27.3, 3.0, 12.1 -4.044444444444444,4.04,a-vale-i2,2021-22,Southern Berkshire-South Egremont,07650030, 91.0, 15.9, 76.9, 30.8, 0.0, 30.8 4.08,4.08,a-vale-i2,2021-22,Southern Berkshire-Undermountain,07650035, 91.8, 14.3, 68.6, 30.2, 5.4, 16.7 +4.0311111111111115,4.03,a-vale-i2,2021-22,Southern Berkshire-Mt Everett Regional,07650505, 90.7, 16.1, 64.2, 34.2, 9.4, 33.5 +4.044444444444444,4.04,a-vale-i2,2021-22,Southern Berkshire-South Egremont,07650030, 91.0, 15.9, 76.9, 30.8, 0.0, 30.8 +4.08,4.08,a-vale-i2,2021-22,Southern Berkshire-New Marlborough Central,07650018, 91.8, 14.7, 68.2, 27.3, 3.0, 12.1 4.124444444444444,4.12,a-vale-i2,2021-22,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 92.8, 12.6, 51.5, 23.0, 4.0, 31.4 -4.137777777777777,4.14,a-vale-i2,2021-22,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 93.1, 12.2, 52.6, 20.0, 4.4, 31.5 4.106666666666667,4.11,a-vale-i2,2021-22,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 92.4, 13.0, 60.2, 26.9, 2.7, 32.9 +4.137777777777777,4.14,a-vale-i2,2021-22,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 93.1, 12.2, 52.6, 20.0, 4.4, 31.5 4.133333333333334,4.13,a-vale-i2,2021-22,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 93.0, 12.4, 55.6, 22.6, 2.7, 31.3 -4.182222222222222,4.18,a-vale-i2,2021-22,Spencer-E Brookfield-Wire Village School,07670040, 94.1, 10.3, 45.5, 15.4, 2.8, 0.0 4.173333333333334,4.17,a-vale-i2,2021-22,Spencer-E Brookfield-East Brookfield Elementary,07670008, 93.9, 10.1, 44.8, 15.3, 3.6, 0.0 3.7111111111111112,3.71,a-vale-i2,2021-22,Spencer-E Brookfield-David Prouty High,07670505, 83.5, 27.3, 76.0, 56.6, 26.3, 52.6 4.084444444444444,4.08,a-vale-i2,2021-22,Spencer-E Brookfield-Knox Trail Middle School,07670415, 91.9, 13.9, 51.2, 25.8, 9.7, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Spencer-E Brookfield-Wire Village School,07670040, 94.1, 10.3, 45.5, 15.4, 2.8, 0.0 +3.933333333333333,3.93,a-vale-i2,2021-22,Springfield-Frederick Harris,02810080, 88.5, 19.5, 75.9, 51.4, 12.8, 37.8 +3.9955555555555557,4.0,a-vale-i2,2021-22,Springfield-Homer Street,02810085, 89.9, 17.0, 68.3, 44.2, 11.9, 36.1 +4.084444444444444,4.08,a-vale-i2,2021-22,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 91.9, 14.3, 66.2, 32.1, 4.1, 21.6 +3.888888888888889,3.89,a-vale-i2,2021-22,Springfield-Indian Orchard Elementary,02810100, 87.5, 20.2, 74.7, 54.7, 17.3, 27.5 +3.8622222222222224,3.86,a-vale-i2,2021-22,Springfield-Kensington International School,02810110, 86.9, 20.6, 76.6, 55.1, 20.1, 33.9 +3.96,3.96,a-vale-i2,2021-22,Springfield-Liberty,02810115, 89.1, 18.8, 77.3, 49.2, 10.6, 50.8 +3.8355555555555556,3.84,a-vale-i2,2021-22,Springfield-Lincoln,02810120, 86.3, 22.9, 79.2, 55.6, 24.0, 64.6 +3.586666666666667,3.59,a-vale-i2,2021-22,Springfield-Gateway to College at Holyoke Community College,02810575, 80.7, 29.7, 63.9, 58.3, 36.1, 63.9 +3.991111111111111,3.99,a-vale-i2,2021-22,Springfield-Gateway to College at Springfield Technical Community College,02810580, 89.8, 13.1, 60.0, 43.3, 10.0, 46.7 +4.053333333333334,4.05,a-vale-i2,2021-22,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.2, 15.6, 58.5, 32.0, 9.2, 30.7 +4.231111111111111,4.23,a-vale-i2,2021-22,Springfield-Springfield International Academy at Sci-Tech,02810700, 95.2, 6.6, 23.1, 13.0, 1.9, 19.4 +4.097777777777778,4.1,a-vale-i2,2021-22,Springfield-The Springfield Virtual School,02810705, 92.2, 13.5, 43.6, 22.9, 9.8, 38.3 +3.5511111111111116,3.55,a-vale-i2,2021-22,Springfield-Early Childhood Education Center,02810001, 79.9, 28.5, 88.6, 81.6, 41.7, 0.4 +3.728888888888889,3.73,a-vale-i2,2021-22,Springfield-Springfield Public Day Elementary School,02810005, 83.9, 25.4, 75.0, 64.3, 32.1, 28.6 +3.9466666666666663,3.95,a-vale-i2,2021-22,Springfield-Edward P. Boland School,02810010, 88.8, 18.5, 72.3, 49.5, 16.0, 32.7 +3.9555555555555557,3.96,a-vale-i2,2021-22,Springfield-Thomas M Balliet,02810015, 89.0, 18.1, 72.2, 45.4, 12.9, 45.1 +3.9955555555555557,4.0,a-vale-i2,2021-22,Springfield-Samuel Bowles,02810020, 89.9, 17.0, 74.6, 45.1, 8.0, 44.1 +3.897777777777778,3.9,a-vale-i2,2021-22,Springfield-Milton Bradley School,02810023, 87.7, 20.2, 74.4, 52.3, 16.3, 47.5 +3.8844444444444446,3.88,a-vale-i2,2021-22,Springfield-Brightwood,02810025, 87.4, 20.8, 80.0, 55.4, 15.0, 58.3 +4.0488888888888885,4.05,a-vale-i2,2021-22,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 91.1, 15.0, 67.4, 37.2, 3.7, 14.8 +4.004444444444444,4.0,a-vale-i2,2021-22,Springfield-Mary M Lynch,02810140, 90.1, 17.3, 69.1, 37.2, 11.1, 34.3 +3.9555555555555557,3.96,a-vale-i2,2021-22,Springfield-Mary O Pottenger,02810145, 89.0, 18.8, 81.8, 52.9, 9.0, 38.3 +3.9377777777777774,3.94,a-vale-i2,2021-22,Springfield-Mary M Walsh,02810155, 88.6, 19.7, 76.7, 47.7, 12.4, 40.2 +3.9066666666666667,3.91,a-vale-i2,2021-22,Springfield-Sumner Avenue,02810160, 87.9, 20.3, 76.1, 48.8, 16.3, 57.1 +3.982222222222222,3.98,a-vale-i2,2021-22,Springfield-Arthur T Talmadge,02810165, 89.6, 18.0, 70.5, 44.3, 9.0, 51.4 +4.0488888888888885,4.05,a-vale-i2,2021-22,Springfield-Alice B Beal Elementary,02810175, 91.1, 14.9, 66.9, 36.1, 4.5, 32.0 +3.9288888888888893,3.93,a-vale-i2,2021-22,Springfield-Warner,02810180, 88.4, 19.6, 76.4, 48.6, 12.7, 26.6 +3.8622222222222224,3.86,a-vale-i2,2021-22,Springfield-Washington,02810185, 86.9, 21.7, 77.3, 57.0, 19.5, 51.6 +3.9511111111111115,3.95,a-vale-i2,2021-22,Springfield-White Street,02810190, 88.9, 18.4, 70.4, 44.5, 13.3, 44.2 +3.9066666666666667,3.91,a-vale-i2,2021-22,Springfield-German Gerena Community School,02810195, 87.9, 20.6, 78.5, 51.7, 17.3, 39.0 +4.013333333333334,4.01,a-vale-i2,2021-22,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 90.3, 17.1, 65.4, 37.3, 11.3, 35.3 +4.022222222222222,4.02,a-vale-i2,2021-22,Springfield-Springfield International Academy at Johnson,02810215, 90.5, 13.3, 62.1, 41.4, 10.3, 58.6 +3.9422222222222225,3.94,a-vale-i2,2021-22,Springfield-Kiley Prep,02810315, 88.7, 18.6, 73.5, 49.7, 16.6, 20.4 +3.968888888888889,3.97,a-vale-i2,2021-22,Springfield-Kiley Academy,02810316, 89.3, 18.5, 66.8, 44.1, 11.4, 35.1 +3.826666666666666,3.83,a-vale-i2,2021-22,Springfield-Lyceum Academy,02810317, 86.1, 24.3, 82.4, 54.2, 19.8, 49.0 +4.164444444444444,4.16,a-vale-i2,2021-22,Springfield-Emergence Academy,02810318, 93.7, 8.1, 36.0, 15.7, 4.5, 30.3 +4.151111111111112,4.15,a-vale-i2,2021-22,Springfield-John J Duggan Middle,02810320, 93.4, 11.3, 41.3, 22.5, 5.5, 23.9 +3.8444444444444446,3.84,a-vale-i2,2021-22,Springfield-Forest Park Middle,02810325, 86.5, 22.5, 71.5, 48.5, 22.8, 28.5 +3.706666666666667,3.71,a-vale-i2,2021-22,Springfield-John F Kennedy Middle,02810328, 83.4, 28.0, 84.1, 63.4, 32.5, 74.1 +3.924444444444444,3.92,a-vale-i2,2021-22,Springfield-M Marcus Kiley Middle,02810330, 88.3, 19.6, 67.2, 45.4, 14.0, 31.4 +4.026666666666666,4.03,a-vale-i2,2021-22,Springfield-Springfield Realization Academy,02810335, 90.6, 16.7, 63.4, 26.8, 9.9, 38.0 +3.511111111111111,3.51,a-vale-i2,2021-22,Springfield-Springfield Public Day Middle School,02810345, 79.0, 36.3, 85.0, 72.5, 45.0, 65.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Springfield-STEM Middle Academy,02810350, 94.4, 9.8, 44.0, 17.2, 1.5, 11.7 +3.6533333333333333,3.65,a-vale-i2,2021-22,Springfield-South End Middle School,02810355, 82.2, 29.7, 88.2, 69.5, 37.7, 61.8 +3.182222222222222,3.18,a-vale-i2,2021-22,Springfield-Springfield Middle School,02810360, 71.6, 43.7, 88.9, 88.9, 50.0, 77.8 +3.8755555555555556,3.88,a-vale-i2,2021-22,Springfield-Impact Prep at Chestnut,02810366, 87.2, 21.5, 74.7, 53.9, 17.5, 47.9 +4.16,4.16,a-vale-i2,2021-22,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 93.6, 11.4, 47.2, 22.8, 4.1, 30.7 +3.8533333333333335,3.85,a-vale-i2,2021-22,Springfield-Conservatory of the Arts,02810475, 86.7, 23.4, 81.4, 55.4, 17.6, 48.7 3.5599999999999996,3.56,a-vale-i2,2021-22,Springfield-Rise Academy at Van Sickle,02810480, 80.1, 34.2, 84.3, 67.5, 41.2, 74.5 3.8622222222222224,3.86,a-vale-i2,2021-22,Springfield-Van Sickle Academy,02810485, 86.9, 22.5, 82.1, 56.6, 17.6, 51.7 3.991111111111111,3.99,a-vale-i2,2021-22,Springfield-Springfield Central High,02810500, 89.8, 17.4, 63.0, 39.6, 12.0, 47.1 @@ -10663,99 +10711,51 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 3.977777777777778,3.98,a-vale-i2,2021-22,Springfield-Springfield High School of Science and Technology,02810530, 89.5, 17.7, 60.9, 38.9, 13.0, 44.5 2.848888888888889,2.85,a-vale-i2,2021-22,Springfield-Springfield Public Day High School,02810550, 64.1, 50.8, 88.2, 77.9, 67.6, 75.0 4.1288888888888895,4.13,a-vale-i2,2021-22,Springfield-Liberty Preparatory Academy,02810560, 92.9, 3.9, 12.5, 20.8, 12.5, 8.3 -4.0488888888888885,4.05,a-vale-i2,2021-22,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 91.1, 15.0, 67.4, 37.2, 3.7, 14.8 -4.004444444444444,4.0,a-vale-i2,2021-22,Springfield-Mary M Lynch,02810140, 90.1, 17.3, 69.1, 37.2, 11.1, 34.3 -3.9555555555555557,3.96,a-vale-i2,2021-22,Springfield-Mary O Pottenger,02810145, 89.0, 18.8, 81.8, 52.9, 9.0, 38.3 -3.9377777777777774,3.94,a-vale-i2,2021-22,Springfield-Mary M Walsh,02810155, 88.6, 19.7, 76.7, 47.7, 12.4, 40.2 -3.9555555555555557,3.96,a-vale-i2,2021-22,Springfield-Thomas M Balliet,02810015, 89.0, 18.1, 72.2, 45.4, 12.9, 45.1 -3.9955555555555557,4.0,a-vale-i2,2021-22,Springfield-Samuel Bowles,02810020, 89.9, 17.0, 74.6, 45.1, 8.0, 44.1 -3.9066666666666667,3.91,a-vale-i2,2021-22,Springfield-Sumner Avenue,02810160, 87.9, 20.3, 76.1, 48.8, 16.3, 57.1 -3.982222222222222,3.98,a-vale-i2,2021-22,Springfield-Arthur T Talmadge,02810165, 89.6, 18.0, 70.5, 44.3, 9.0, 51.4 -3.897777777777778,3.9,a-vale-i2,2021-22,Springfield-Milton Bradley School,02810023, 87.7, 20.2, 74.4, 52.3, 16.3, 47.5 -3.8844444444444446,3.88,a-vale-i2,2021-22,Springfield-Brightwood,02810025, 87.4, 20.8, 80.0, 55.4, 15.0, 58.3 +3.7644444444444445,3.76,a-vale-i2,2021-22,Springfield-Springfield High School,02810570, 84.7, 22.1, 50.7, 44.9, 29.8, 47.3 3.88,3.88,a-vale-i2,2021-22,Springfield-Elias Brookings,02810030, 87.3, 21.7, 75.0, 52.3, 19.8, 56.5 3.92,3.92,a-vale-i2,2021-22,Springfield-Daniel B Brunton,02810035, 88.2, 20.1, 76.6, 49.0, 14.3, 56.3 -4.0488888888888885,4.05,a-vale-i2,2021-22,Springfield-Alice B Beal Elementary,02810175, 91.1, 14.9, 66.9, 36.1, 4.5, 32.0 -3.9288888888888893,3.93,a-vale-i2,2021-22,Springfield-Warner,02810180, 88.4, 19.6, 76.4, 48.6, 12.7, 26.6 -3.8622222222222224,3.86,a-vale-i2,2021-22,Springfield-Washington,02810185, 86.9, 21.7, 77.3, 57.0, 19.5, 51.6 3.9288888888888893,3.93,a-vale-i2,2021-22,Springfield-William N. DeBerry,02810045, 88.4, 19.3, 74.3, 52.7, 16.2, 51.8 3.9422222222222225,3.94,a-vale-i2,2021-22,Springfield-Hiram L Dorman,02810050, 88.7, 19.8, 81.1, 49.4, 13.6, 56.0 -3.9511111111111115,3.95,a-vale-i2,2021-22,Springfield-White Street,02810190, 88.9, 18.4, 70.4, 44.5, 13.3, 44.2 -3.9066666666666667,3.91,a-vale-i2,2021-22,Springfield-German Gerena Community School,02810195, 87.9, 20.6, 78.5, 51.7, 17.3, 39.0 3.76,3.76,a-vale-i2,2021-22,Springfield-Rebecca M Johnson,02810055, 84.6, 25.5, 83.9, 66.5, 27.0, 69.0 3.728888888888889,3.73,a-vale-i2,2021-22,Springfield-Margaret C Ells,02810060, 83.9, 22.2, 77.1, 71.5, 33.2, 65.9 3.96,3.96,a-vale-i2,2021-22,Springfield-Glenwood,02810065, 89.1, 18.7, 79.0, 50.3, 9.8, 40.9 3.9377777777777774,3.94,a-vale-i2,2021-22,Springfield-Glickman Elementary,02810068, 88.6, 19.3, 74.8, 49.0, 13.3, 48.6 -4.013333333333334,4.01,a-vale-i2,2021-22,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 90.3, 17.1, 65.4, 37.3, 11.3, 35.3 -4.022222222222222,4.02,a-vale-i2,2021-22,Springfield-Springfield International Academy at Johnson,02810215, 90.5, 13.3, 62.1, 41.4, 10.3, 58.6 -3.9422222222222225,3.94,a-vale-i2,2021-22,Springfield-Kiley Prep,02810315, 88.7, 18.6, 73.5, 49.7, 16.6, 20.4 -3.968888888888889,3.97,a-vale-i2,2021-22,Springfield-Kiley Academy,02810316, 89.3, 18.5, 66.8, 44.1, 11.4, 35.1 -3.826666666666666,3.83,a-vale-i2,2021-22,Springfield-Lyceum Academy,02810317, 86.1, 24.3, 82.4, 54.2, 19.8, 49.0 4.008888888888889,4.01,a-vale-i2,2021-22,Springfield-Frank H Freedman,02810075, 90.2, 16.4, 61.9, 37.0, 10.5, 36.6 -3.933333333333333,3.93,a-vale-i2,2021-22,Springfield-Frederick Harris,02810080, 88.5, 19.5, 75.9, 51.4, 12.8, 37.8 -4.164444444444444,4.16,a-vale-i2,2021-22,Springfield-Emergence Academy,02810318, 93.7, 8.1, 36.0, 15.7, 4.5, 30.3 -4.151111111111112,4.15,a-vale-i2,2021-22,Springfield-John J Duggan Middle,02810320, 93.4, 11.3, 41.3, 22.5, 5.5, 23.9 -3.7644444444444445,3.76,a-vale-i2,2021-22,Springfield-Springfield High School,02810570, 84.7, 22.1, 50.7, 44.9, 29.8, 47.3 -3.586666666666667,3.59,a-vale-i2,2021-22,Springfield-Gateway to College at Holyoke Community College,02810575, 80.7, 29.7, 63.9, 58.3, 36.1, 63.9 -3.991111111111111,3.99,a-vale-i2,2021-22,Springfield-Gateway to College at Springfield Technical Community College,02810580, 89.8, 13.1, 60.0, 43.3, 10.0, 46.7 -4.053333333333334,4.05,a-vale-i2,2021-22,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.2, 15.6, 58.5, 32.0, 9.2, 30.7 -4.231111111111111,4.23,a-vale-i2,2021-22,Springfield-Springfield International Academy at Sci-Tech,02810700, 95.2, 6.6, 23.1, 13.0, 1.9, 19.4 -4.097777777777778,4.1,a-vale-i2,2021-22,Springfield-The Springfield Virtual School,02810705, 92.2, 13.5, 43.6, 22.9, 9.8, 38.3 -3.9955555555555557,4.0,a-vale-i2,2021-22,Springfield-Homer Street,02810085, 89.9, 17.0, 68.3, 44.2, 11.9, 36.1 -4.084444444444444,4.08,a-vale-i2,2021-22,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 91.9, 14.3, 66.2, 32.1, 4.1, 21.6 -3.888888888888889,3.89,a-vale-i2,2021-22,Springfield-Indian Orchard Elementary,02810100, 87.5, 20.2, 74.7, 54.7, 17.3, 27.5 -3.8622222222222224,3.86,a-vale-i2,2021-22,Springfield-Kensington International School,02810110, 86.9, 20.6, 76.6, 55.1, 20.1, 33.9 -3.8444444444444446,3.84,a-vale-i2,2021-22,Springfield-Forest Park Middle,02810325, 86.5, 22.5, 71.5, 48.5, 22.8, 28.5 -3.706666666666667,3.71,a-vale-i2,2021-22,Springfield-John F Kennedy Middle,02810328, 83.4, 28.0, 84.1, 63.4, 32.5, 74.1 -3.924444444444444,3.92,a-vale-i2,2021-22,Springfield-M Marcus Kiley Middle,02810330, 88.3, 19.6, 67.2, 45.4, 14.0, 31.4 -3.96,3.96,a-vale-i2,2021-22,Springfield-Liberty,02810115, 89.1, 18.8, 77.3, 49.2, 10.6, 50.8 -3.8355555555555556,3.84,a-vale-i2,2021-22,Springfield-Lincoln,02810120, 86.3, 22.9, 79.2, 55.6, 24.0, 64.6 -4.026666666666666,4.03,a-vale-i2,2021-22,Springfield-Springfield Realization Academy,02810335, 90.6, 16.7, 63.4, 26.8, 9.9, 38.0 -3.511111111111111,3.51,a-vale-i2,2021-22,Springfield-Springfield Public Day Middle School,02810345, 79.0, 36.3, 85.0, 72.5, 45.0, 65.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Springfield-STEM Middle Academy,02810350, 94.4, 9.8, 44.0, 17.2, 1.5, 11.7 -3.5511111111111116,3.55,a-vale-i2,2021-22,Springfield-Early Childhood Education Center,02810001, 79.9, 28.5, 88.6, 81.6, 41.7, 0.4 -3.728888888888889,3.73,a-vale-i2,2021-22,Springfield-Springfield Public Day Elementary School,02810005, 83.9, 25.4, 75.0, 64.3, 32.1, 28.6 -3.9466666666666663,3.95,a-vale-i2,2021-22,Springfield-Edward P. Boland School,02810010, 88.8, 18.5, 72.3, 49.5, 16.0, 32.7 -3.6533333333333333,3.65,a-vale-i2,2021-22,Springfield-South End Middle School,02810355, 82.2, 29.7, 88.2, 69.5, 37.7, 61.8 -3.182222222222222,3.18,a-vale-i2,2021-22,Springfield-Springfield Middle School,02810360, 71.6, 43.7, 88.9, 88.9, 50.0, 77.8 -3.8755555555555556,3.88,a-vale-i2,2021-22,Springfield-Impact Prep at Chestnut,02810366, 87.2, 21.5, 74.7, 53.9, 17.5, 47.9 -4.16,4.16,a-vale-i2,2021-22,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 93.6, 11.4, 47.2, 22.8, 4.1, 30.7 -3.8533333333333335,3.85,a-vale-i2,2021-22,Springfield-Conservatory of the Arts,02810475, 86.7, 23.4, 81.4, 55.4, 17.6, 48.7 3.9511111111111115,3.95,a-vale-i2,2021-22,Springfield International Charter (District)-Springfield International Charter School,04410505, 88.9, 19.2, 73.4, 46.7, 12.2, 47.7 4.12,4.12,a-vale-i2,2021-22,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 92.7, 13.9, 64.6, 24.6, 1.8, 13.2 -4.1866666666666665,4.19,a-vale-i2,2021-22,Stoneham-South,02840030, 94.2, 9.9, 44.8, 18.2, 2.9, 0.0 4.111111111111111,4.11,a-vale-i2,2021-22,Stoneham-Robin Hood,02840025, 92.5, 13.2, 51.8, 21.3, 7.1, 0.0 4.1288888888888895,4.13,a-vale-i2,2021-22,Stoneham-Colonial Park,02840005, 92.9, 12.4, 45.8, 20.4, 8.1, 0.0 -4.097777777777778,4.1,a-vale-i2,2021-22,Stoneham-Stoneham High,02840505, 92.2, 13.8, 52.4, 24.7, 7.0, 0.0 +4.1866666666666665,4.19,a-vale-i2,2021-22,Stoneham-South,02840030, 94.2, 9.9, 44.8, 18.2, 2.9, 0.0 4.191111111111111,4.19,a-vale-i2,2021-22,Stoneham-Stoneham Central Middle School,02840405, 94.3, 10.0, 38.4, 15.7, 2.8, 0.0 +4.097777777777778,4.1,a-vale-i2,2021-22,Stoneham-Stoneham High,02840505, 92.2, 13.8, 52.4, 24.7, 7.0, 0.0 +3.9422222222222225,3.94,a-vale-i2,2021-22,Stoughton-Edwin A Jones Early Childhood Center,02850012, 88.7, 13.5, 51.2, 40.2, 13.4, 50.4 +4.16,4.16,a-vale-i2,2021-22,Stoughton-Helen Hansen Elementary,02850010, 93.6, 11.2, 46.5, 18.7, 2.8, 37.0 +4.208888888888889,4.21,a-vale-i2,2021-22,Stoughton-Joseph R Dawe Jr Elementary,02850014, 94.7, 9.0, 37.4, 11.3, 1.8, 19.7 4.093333333333333,4.09,a-vale-i2,2021-22,Stoughton-Stoughton High,02850505, 92.1, 13.6, 42.2, 22.2, 10.4, 30.4 -4.164444444444444,4.16,a-vale-i2,2021-22,Stoughton-O'Donnell Middle School,02850405, 93.7, 10.9, 43.4, 20.1, 5.3, 23.7 +4.195555555555556,4.2,a-vale-i2,2021-22,Stoughton-South Elementary,02850015, 94.4, 9.8, 45.4, 10.0, 1.5, 22.3 4.12,4.12,a-vale-i2,2021-22,Stoughton-Richard L. Wilkins Elementary School,02850020, 92.7, 12.2, 47.1, 24.4, 5.8, 26.3 4.1866666666666665,4.19,a-vale-i2,2021-22,Stoughton-Joseph H Gibbons,02850025, 94.2, 10.3, 43.6, 16.3, 2.6, 32.4 -4.195555555555556,4.2,a-vale-i2,2021-22,Stoughton-South Elementary,02850015, 94.4, 9.8, 45.4, 10.0, 1.5, 22.3 -4.16,4.16,a-vale-i2,2021-22,Stoughton-Helen Hansen Elementary,02850010, 93.6, 11.2, 46.5, 18.7, 2.8, 37.0 -3.9422222222222225,3.94,a-vale-i2,2021-22,Stoughton-Edwin A Jones Early Childhood Center,02850012, 88.7, 13.5, 51.2, 40.2, 13.4, 50.4 -4.208888888888889,4.21,a-vale-i2,2021-22,Stoughton-Joseph R Dawe Jr Elementary,02850014, 94.7, 9.0, 37.4, 11.3, 1.8, 19.7 +4.164444444444444,4.16,a-vale-i2,2021-22,Stoughton-O'Donnell Middle School,02850405, 93.7, 10.9, 43.4, 20.1, 5.3, 23.7 4.164444444444444,4.16,a-vale-i2,2021-22,Sturbridge-Burgess Elementary,02870005, 93.7, 11.0, 51.9, 15.7, 1.5, 51.9 4.026666666666666,4.03,a-vale-i2,2021-22,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 90.6, 16.2, 67.6, 36.0, 7.9, 64.1 -4.217777777777778,4.22,a-vale-i2,2021-22,Sudbury-Peter Noyes,02880030, 94.9, 9.0, 38.4, 9.0, 0.7, 0.2 -4.222222222222222,4.22,a-vale-i2,2021-22,Sudbury-General John Nixon Elementary,02880025, 95.0, 8.9, 38.7, 8.6, 0.0, 1.7 -4.2,4.2,a-vale-i2,2021-22,Sudbury-Israel Loring School,02880015, 94.5, 9.8, 42.5, 13.8, 1.2, 2.8 -4.213333333333333,4.21,a-vale-i2,2021-22,Sudbury-Ephraim Curtis Middle,02880305, 94.8, 9.2, 38.9, 10.9, 1.7, 2.2 4.231111111111111,4.23,a-vale-i2,2021-22,Sudbury-Josiah Haynes,02880010, 95.2, 8.4, 37.4, 5.2, 0.3, 1.6 +4.2,4.2,a-vale-i2,2021-22,Sudbury-Israel Loring School,02880015, 94.5, 9.8, 42.5, 13.8, 1.2, 2.8 +4.222222222222222,4.22,a-vale-i2,2021-22,Sudbury-General John Nixon Elementary,02880025, 95.0, 8.9, 38.7, 8.6, 0.0, 1.7 +4.217777777777778,4.22,a-vale-i2,2021-22,Sudbury-Peter Noyes,02880030, 94.9, 9.0, 38.4, 9.0, 0.7, 0.2 +4.213333333333333,4.21,a-vale-i2,2021-22,Sudbury-Ephraim Curtis Middle,02880305, 94.8, 9.2, 38.9, 10.9, 1.7, 2.2 4.133333333333334,4.13,a-vale-i2,2021-22,Sunderland-Sunderland Elementary,02890005, 93.0, 12.1, 48.7, 23.1, 4.1, 44.6 -4.164444444444444,4.16,a-vale-i2,2021-22,Sutton-Sutton Elementary,02900005, 93.7, 11.1, 52.1, 17.5, 1.0, 0.0 4.093333333333333,4.09,a-vale-i2,2021-22,Sutton-Sutton Early Learning,02900003, 92.1, 13.8, 59.5, 30.5, 4.5, 0.0 -4.164444444444444,4.16,a-vale-i2,2021-22,Sutton-Sutton High School,02900510, 93.7, 10.7, 38.9, 14.9, 4.3, 9.6 +4.164444444444444,4.16,a-vale-i2,2021-22,Sutton-Sutton Elementary,02900005, 93.7, 11.1, 52.1, 17.5, 1.0, 0.0 4.191111111111111,4.19,a-vale-i2,2021-22,Sutton-Sutton Middle School,02900305, 94.3, 10.2, 42.1, 16.2, 2.8, 11.2 +4.164444444444444,4.16,a-vale-i2,2021-22,Sutton-Sutton High School,02900510, 93.7, 10.7, 38.9, 14.9, 4.3, 9.6 4.182222222222222,4.18,a-vale-i2,2021-22,Swampscott-Swampscott Middle,02910305, 94.1, 10.2, 40.8, 17.8, 2.1, 31.7 4.008888888888889,4.01,a-vale-i2,2021-22,Swampscott-Swampscott High,02910505, 90.2, 16.8, 64.7, 30.7, 9.2, 45.9 4.168888888888889,4.17,a-vale-i2,2021-22,Swampscott-Stanley,02910020, 93.8, 10.9, 48.1, 13.8, 1.0, 48.1 4.137777777777777,4.14,a-vale-i2,2021-22,Swampscott-Hadley,02910010, 93.1, 12.2, 56.4, 21.1, 2.3, 56.4 4.08,4.08,a-vale-i2,2021-22,Swampscott-Clarke,02910005, 91.8, 14.2, 70.0, 32.4, 4.8, 70.0 +4.12,4.12,a-vale-i2,2021-22,Swansea-Joseph G Luther,02920020, 92.7, 12.9, 59.3, 18.6, 6.0, 16.6 4.115555555555555,4.12,a-vale-i2,2021-22,Swansea-Gardner,02920015, 92.6, 12.9, 59.2, 22.8, 2.6, 23.5 4.124444444444444,4.12,a-vale-i2,2021-22,Swansea-Elizabeth S Brown,02920006, 92.8, 12.7, 58.9, 26.1, 2.1, 22.0 -4.12,4.12,a-vale-i2,2021-22,Swansea-Joseph G Luther,02920020, 92.7, 12.9, 59.3, 18.6, 6.0, 16.6 4.062222222222222,4.06,a-vale-i2,2021-22,Swansea-Mark G Hoyle Elementary,02920017, 91.4, 14.9, 65.3, 29.8, 5.4, 40.5 4.0311111111111115,4.03,a-vale-i2,2021-22,Swansea-Joseph Case High,02920505, 90.7, 16.1, 61.3, 34.4, 9.2, 31.5 4.12,4.12,a-vale-i2,2021-22,Swansea-Joseph Case Jr High,02920305, 92.7, 13.1, 57.5, 25.8, 2.8, 27.0 @@ -10763,180 +10763,178 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.133333333333334,4.13,a-vale-i2,2021-22,Tantasqua-Tantasqua Regional Jr High,07700405, 93.0, 12.3, 51.4, 23.6, 4.9, 10.4 4.088888888888889,4.09,a-vale-i2,2021-22,Tantasqua-Tantasqua Regional Sr High,07700505, 92.0, 13.9, 52.0, 24.6, 8.4, 0.0 4.08,4.08,a-vale-i2,2021-22,Tantasqua-Tantasqua Regional Vocational,07700605, 91.8, 14.5, 58.8, 27.0, 7.6, 0.0 +4.044444444444444,4.04,a-vale-i2,2021-22,Taunton-Elizabeth Pole,02930027, 91.0, 15.1, 66.9, 36.9, 6.9, 56.3 4.084444444444444,4.08,a-vale-i2,2021-22,Taunton-Joseph H Martin,02930042, 91.9, 13.9, 60.8, 28.1, 5.8, 42.2 -3.2577777777777777,3.26,a-vale-i2,2021-22,Taunton-Taunton Alternative High School,02930525, 73.3, 41.1, 76.9, 66.7, 52.6, 76.9 -3.924444444444444,3.92,a-vale-i2,2021-22,Taunton-Taunton High,02930505, 88.3, 19.8, 66.7, 39.2, 15.6, 53.1 -4.053333333333334,4.05,a-vale-i2,2021-22,Taunton-Benjamin Friedman Middle,02930315, 91.2, 15.5, 61.3, 31.2, 8.2, 41.1 +4.066666666666666,4.07,a-vale-i2,2021-22,Taunton-H H Galligan,02930057, 91.5, 14.1, 61.4, 32.4, 4.4, 41.2 4.022222222222222,4.02,a-vale-i2,2021-22,Taunton-John F Parker Middle,02930305, 90.5, 16.2, 62.8, 35.6, 7.8, 51.1 +4.053333333333334,4.05,a-vale-i2,2021-22,Taunton-Benjamin Friedman Middle,02930315, 91.2, 15.5, 61.3, 31.2, 8.2, 41.1 +3.924444444444444,3.92,a-vale-i2,2021-22,Taunton-Taunton High,02930505, 88.3, 19.8, 66.7, 39.2, 15.6, 53.1 +3.2577777777777777,3.26,a-vale-i2,2021-22,Taunton-Taunton Alternative High School,02930525, 73.3, 41.1, 76.9, 66.7, 52.6, 76.9 +4.057777777777778,4.06,a-vale-i2,2021-22,Taunton-James L. Mulcahey Elementary School,02930015, 91.3, 14.8, 66.5, 32.0, 5.8, 43.4 +4.097777777777778,4.1,a-vale-i2,2021-22,Taunton-East Taunton Elementary,02930010, 92.2, 13.7, 62.0, 26.1, 5.0, 38.0 4.071111111111111,4.07,a-vale-i2,2021-22,Taunton-Joseph C Chamberlain,02930008, 91.6, 14.1, 64.3, 32.1, 4.5, 61.5 4.088888888888889,4.09,a-vale-i2,2021-22,Taunton-Edmund Hatch Bennett,02930007, 92.0, 14.3, 62.5, 29.6, 3.3, 36.5 4.053333333333334,4.05,a-vale-i2,2021-22,Taunton-Edward F. Leddy Preschool,02930005, 91.2, 12.6, 54.9, 34.8, 6.3, 53.9 -4.066666666666666,4.07,a-vale-i2,2021-22,Taunton-H H Galligan,02930057, 91.5, 14.1, 61.4, 32.4, 4.4, 41.2 -4.044444444444444,4.04,a-vale-i2,2021-22,Taunton-Elizabeth Pole,02930027, 91.0, 15.1, 66.9, 36.9, 6.9, 56.3 -4.057777777777778,4.06,a-vale-i2,2021-22,Taunton-James L. Mulcahey Elementary School,02930015, 91.3, 14.8, 66.5, 32.0, 5.8, 43.4 -4.097777777777778,4.1,a-vale-i2,2021-22,Taunton-East Taunton Elementary,02930010, 92.2, 13.7, 62.0, 26.1, 5.0, 38.0 +4.1466666666666665,4.15,a-vale-i2,2021-22,Tewksbury-John F. Ryan,02950023, 93.3, 11.7, 53.6, 19.7, 2.3, 21.3 +4.151111111111112,4.15,a-vale-i2,2021-22,Tewksbury-North Street,02950020, 93.4, 11.4, 52.5, 18.9, 1.5, 19.2 4.12,4.12,a-vale-i2,2021-22,Tewksbury-L F Dewing,02950001, 92.7, 12.5, 56.9, 23.6, 3.5, 30.5 4.177777777777778,4.18,a-vale-i2,2021-22,Tewksbury-Heath-Brook,02950010, 94.0, 10.6, 49.5, 13.2, 0.3, 24.1 -4.151111111111112,4.15,a-vale-i2,2021-22,Tewksbury-North Street,02950020, 93.4, 11.4, 52.5, 18.9, 1.5, 19.2 -4.1466666666666665,4.15,a-vale-i2,2021-22,Tewksbury-John F. Ryan,02950023, 93.3, 11.7, 53.6, 19.7, 2.3, 21.3 -4.191111111111111,4.19,a-vale-i2,2021-22,Tewksbury-Louise Davy Trahan,02950025, 94.3, 10.2, 52.3, 12.5, 0.0, 24.1 4.106666666666667,4.11,a-vale-i2,2021-22,Tewksbury-Tewksbury Memorial High,02950505, 92.4, 13.5, 48.2, 20.9, 6.1, 27.4 4.1466666666666665,4.15,a-vale-i2,2021-22,Tewksbury-John W. Wynn Middle,02950305, 93.3, 11.7, 51.5, 19.1, 2.7, 20.8 +4.191111111111111,4.19,a-vale-i2,2021-22,Tewksbury-Louise Davy Trahan,02950025, 94.3, 10.2, 52.3, 12.5, 0.0, 24.1 4.057777777777778,4.06,a-vale-i2,2021-22,Tisbury-Tisbury Elementary,02960005, 91.3, 14.0, 63.1, 37.2, 5.8, 5.2 4.217777777777778,4.22,a-vale-i2,2021-22,Topsfield-Proctor Elementary,02980005, 94.9, 8.7, 36.8, 7.3, 0.8, 36.8 4.182222222222222,4.18,a-vale-i2,2021-22,Topsfield-Steward Elementary,02980010, 94.1, 9.8, 46.3, 12.2, 0.8, 46.3 4.115555555555555,4.12,a-vale-i2,2021-22,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 92.6, 13.2, 55.5, 23.5, 3.6, 0.0 -4.151111111111112,4.15,a-vale-i2,2021-22,Triton-Pine Grove,07730025, 93.4, 11.4, 48.8, 21.8, 3.8, 30.3 -4.084444444444444,4.08,a-vale-i2,2021-22,Triton-Triton Regional Middle School,07730405, 91.9, 14.3, 56.3, 26.4, 5.9, 40.5 -4.044444444444444,4.04,a-vale-i2,2021-22,Triton-Triton Regional High School,07730505, 91.0, 15.5, 57.0, 28.2, 10.4, 23.0 -4.137777777777777,4.14,a-vale-i2,2021-22,Triton-Newbury Elementary,07730020, 93.1, 11.8, 56.2, 22.2, 2.0, 34.5 4.093333333333333,4.09,a-vale-i2,2021-22,Triton-Salisbury Elementary,07730015, 92.1, 13.1, 57.8, 30.4, 5.1, 38.7 +4.137777777777777,4.14,a-vale-i2,2021-22,Triton-Newbury Elementary,07730020, 93.1, 11.8, 56.2, 22.2, 2.0, 34.5 +4.151111111111112,4.15,a-vale-i2,2021-22,Triton-Pine Grove,07730025, 93.4, 11.4, 48.8, 21.8, 3.8, 30.3 +4.044444444444444,4.04,a-vale-i2,2021-22,Triton-Triton Regional High School,07730505, 91.0, 15.5, 57.0, 28.2, 10.4, 23.0 +4.084444444444444,4.08,a-vale-i2,2021-22,Triton-Triton Regional Middle School,07730405, 91.9, 14.3, 56.3, 26.4, 5.9, 40.5 4.026666666666666,4.03,a-vale-i2,2021-22,Truro-Truro Central,03000005, 90.6, 16.2, 74.6, 44.1, 5.1, 72.9 4.133333333333334,4.13,a-vale-i2,2021-22,Tyngsborough-Tyngsborough Elementary,03010020, 93.0, 12.1, 56.6, 22.3, 2.2, 0.0 -3.968888888888889,3.97,a-vale-i2,2021-22,Tyngsborough-Tyngsborough High School,03010505, 89.3, 18.6, 68.8, 38.2, 10.5, 20.5 4.142222222222222,4.14,a-vale-i2,2021-22,Tyngsborough-Tyngsborough Middle,03010305, 93.2, 11.9, 50.6, 23.2, 3.0, 0.0 +3.968888888888889,3.97,a-vale-i2,2021-22,Tyngsborough-Tyngsborough High School,03010505, 89.3, 18.6, 68.8, 38.2, 10.5, 20.5 3.888888888888889,3.89,a-vale-i2,2021-22,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 87.5, 21.3, 70.9, 51.3, 19.1, 65.0 4.026666666666666,4.03,a-vale-i2,2021-22,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 90.6, 16.2, 60.5, 33.0, 11.6, 52.6 4.12,4.12,a-vale-i2,2021-22,Up-Island Regional-Chilmark Elementary,07740010, 92.7, 13.1, 66.1, 21.4, 0.0, 58.9 4.013333333333334,4.01,a-vale-i2,2021-22,Up-Island Regional-West Tisbury Elementary,07740020, 90.3, 16.8, 74.0, 41.7, 7.5, 41.4 4.026666666666666,4.03,a-vale-i2,2021-22,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 90.6, 16.5, 61.3, 35.5, 9.9, 16.2 4.271111111111111,4.27,a-vale-i2,2021-22,Uxbridge-Gateway to College,03040515, 96.1, 5.1, 21.7, 21.7, 6.5, 17.4 -4.08,4.08,a-vale-i2,2021-22,Uxbridge-Taft Early Learning Center,03040005, 91.8, 13.9, 63.8, 31.8, 2.7, 13.3 -4.111111111111111,4.11,a-vale-i2,2021-22,Uxbridge-Whitin Intermediate,03040405, 92.5, 13.3, 62.0, 25.4, 3.6, 18.7 4.066666666666666,4.07,a-vale-i2,2021-22,Uxbridge-Uxbridge High,03040505, 91.5, 14.7, 56.4, 27.0, 8.6, 25.9 +4.111111111111111,4.11,a-vale-i2,2021-22,Uxbridge-Whitin Intermediate,03040405, 92.5, 13.3, 62.0, 25.4, 3.6, 18.7 +4.08,4.08,a-vale-i2,2021-22,Uxbridge-Taft Early Learning Center,03040005, 91.8, 13.9, 63.8, 31.8, 2.7, 13.3 3.982222222222222,3.98,a-vale-i2,2021-22,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 89.6, 18.1, 67.2, 39.4, 15.5, 81.6 -4.2,4.2,a-vale-i2,2021-22,Wachusett-Thomas Prince,07750045, 94.5, 9.8, 43.7, 12.8, 1.4, 0.0 -4.155555555555556,4.16,a-vale-i2,2021-22,Wachusett-Glenwood Elementary School,07750060, 93.5, 11.6, 55.7, 19.6, 0.9, 0.0 -4.124444444444444,4.12,a-vale-i2,2021-22,Wachusett-Paxton Center,07750040, 92.8, 12.6, 60.3, 22.4, 2.2, 0.0 -4.173333333333334,4.17,a-vale-i2,2021-22,Wachusett-Leroy E.Mayo,07750032, 93.9, 10.8, 55.2, 12.3, 0.8, 0.0 -4.191111111111111,4.19,a-vale-i2,2021-22,Wachusett-Houghton Elementary,07750027, 94.3, 10.1, 46.1, 12.3, 1.8, 0.0 -4.1866666666666665,4.19,a-vale-i2,2021-22,Wachusett-Dawson,07750020, 94.2, 10.3, 45.3, 15.4, 1.0, 0.0 -4.177777777777778,4.18,a-vale-i2,2021-22,Wachusett-Mountview Middle,07750305, 94.0, 10.7, 45.8, 16.6, 2.3, 0.0 -4.137777777777777,4.14,a-vale-i2,2021-22,Wachusett-Naquag Elementary School,07750005, 93.1, 12.3, 60.3, 22.9, 1.4, 0.0 4.071111111111111,4.07,a-vale-i2,2021-22,Wachusett-Early Childhood Center,07750001, 91.6, 10.8, 44.2, 30.1, 8.6, 0.0 -4.177777777777778,4.18,a-vale-i2,2021-22,Wachusett-Wachusett Regional High,07750505, 94.0, 10.6, 41.9, 14.4, 3.9, 0.0 -4.133333333333334,4.13,a-vale-i2,2021-22,Wachusett-Chocksett Middle School,07750315, 93.0, 12.4, 48.1, 21.4, 3.7, 0.0 -4.137777777777777,4.14,a-vale-i2,2021-22,Wachusett-Central Tree Middle,07750310, 93.1, 12.3, 54.5, 20.6, 2.4, 0.0 +4.2,4.2,a-vale-i2,2021-22,Wachusett-Thomas Prince,07750045, 94.5, 9.8, 43.7, 12.8, 1.4, 0.0 4.164444444444444,4.16,a-vale-i2,2021-22,Wachusett-Davis Hill Elementary,07750018, 93.7, 11.1, 49.0, 18.4, 2.8, 0.0 -4.12,4.12,a-vale-i2,2021-22,Wakefield-Wakefield Memorial High,03050505, 92.7, 12.9, 47.5, 19.7, 6.4, 14.1 -4.0,4.0,a-vale-i2,2021-22,Wakefield-Early Childhood Center at the Doyle School,03050001, 90.0, 16.4, 75.4, 42.4, 5.1, 0.0 -4.1866666666666665,4.19,a-vale-i2,2021-22,Wakefield-Galvin Middle School,03050310, 94.2, 10.2, 39.8, 13.5, 2.1, 27.6 -4.204444444444444,4.2,a-vale-i2,2021-22,Wakefield-Walton,03050040, 94.6, 9.7, 42.7, 9.6, 1.4, 0.0 -4.213333333333333,4.21,a-vale-i2,2021-22,Wakefield-Greenwood,03050020, 94.8, 9.2, 40.2, 8.5, 0.9, 0.0 -4.195555555555556,4.2,a-vale-i2,2021-22,Wakefield-Woodville School,03050015, 94.4, 10.0, 41.0, 15.3, 2.3, 0.0 +4.1866666666666665,4.19,a-vale-i2,2021-22,Wachusett-Dawson,07750020, 94.2, 10.3, 45.3, 15.4, 1.0, 0.0 +4.191111111111111,4.19,a-vale-i2,2021-22,Wachusett-Houghton Elementary,07750027, 94.3, 10.1, 46.1, 12.3, 1.8, 0.0 +4.173333333333334,4.17,a-vale-i2,2021-22,Wachusett-Leroy E.Mayo,07750032, 93.9, 10.8, 55.2, 12.3, 0.8, 0.0 +4.124444444444444,4.12,a-vale-i2,2021-22,Wachusett-Paxton Center,07750040, 92.8, 12.6, 60.3, 22.4, 2.2, 0.0 +4.137777777777777,4.14,a-vale-i2,2021-22,Wachusett-Naquag Elementary School,07750005, 93.1, 12.3, 60.3, 22.9, 1.4, 0.0 +4.155555555555556,4.16,a-vale-i2,2021-22,Wachusett-Glenwood Elementary School,07750060, 93.5, 11.6, 55.7, 19.6, 0.9, 0.0 +4.177777777777778,4.18,a-vale-i2,2021-22,Wachusett-Mountview Middle,07750305, 94.0, 10.7, 45.8, 16.6, 2.3, 0.0 +4.137777777777777,4.14,a-vale-i2,2021-22,Wachusett-Central Tree Middle,07750310, 93.1, 12.3, 54.5, 20.6, 2.4, 0.0 +4.133333333333334,4.13,a-vale-i2,2021-22,Wachusett-Chocksett Middle School,07750315, 93.0, 12.4, 48.1, 21.4, 3.7, 0.0 +4.177777777777778,4.18,a-vale-i2,2021-22,Wachusett-Wachusett Regional High,07750505, 94.0, 10.6, 41.9, 14.4, 3.9, 0.0 4.173333333333334,4.17,a-vale-i2,2021-22,Wakefield-Dolbeare,03050005, 93.9, 10.8, 46.4, 14.2, 1.8, 0.0 +4.0,4.0,a-vale-i2,2021-22,Wakefield-Early Childhood Center at the Doyle School,03050001, 90.0, 16.4, 75.4, 42.4, 5.1, 0.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Wakefield-Woodville School,03050015, 94.4, 10.0, 41.0, 15.3, 2.3, 0.0 +4.213333333333333,4.21,a-vale-i2,2021-22,Wakefield-Greenwood,03050020, 94.8, 9.2, 40.2, 8.5, 0.9, 0.0 +4.204444444444444,4.2,a-vale-i2,2021-22,Wakefield-Walton,03050040, 94.6, 9.7, 42.7, 9.6, 1.4, 0.0 +4.1866666666666665,4.19,a-vale-i2,2021-22,Wakefield-Galvin Middle School,03050310, 94.2, 10.2, 39.8, 13.5, 2.1, 27.6 +4.12,4.12,a-vale-i2,2021-22,Wakefield-Wakefield Memorial High,03050505, 92.7, 12.9, 47.5, 19.7, 6.4, 14.1 4.12,4.12,a-vale-i2,2021-22,Wales-Wales Elementary,03060005, 92.7, 12.2, 57.0, 28.1, 1.7, 55.4 +4.16,4.16,a-vale-i2,2021-22,Walpole-Walpole High,03070505, 93.6, 11.3, 42.9, 14.6, 3.7, 17.7 4.204444444444444,4.2,a-vale-i2,2021-22,Walpole-Eleanor N Johnson Middle,03070310, 94.6, 9.7, 39.0, 11.6, 1.9, 29.0 4.222222222222222,4.22,a-vale-i2,2021-22,Walpole-Bird Middle,03070305, 95.0, 8.9, 36.2, 11.1, 1.6, 17.7 4.208888888888889,4.21,a-vale-i2,2021-22,Walpole-Old Post Road,03070018, 94.7, 9.5, 43.2, 8.2, 0.2, 13.0 -4.164444444444444,4.16,a-vale-i2,2021-22,Walpole-Boyden,03070010, 93.7, 11.3, 53.0, 14.6, 0.8, 29.8 -3.9377777777777774,3.94,a-vale-i2,2021-22,Walpole-Daniel Feeney Preschool Center,03070002, 88.6, 19.0, 80.4, 46.1, 7.8, 69.6 -4.182222222222222,4.18,a-vale-i2,2021-22,Walpole-Elm Street School,03070005, 94.1, 10.7, 51.7, 13.0, 0.9, 28.0 -4.16,4.16,a-vale-i2,2021-22,Walpole-Walpole High,03070505, 93.6, 11.3, 42.9, 14.6, 3.7, 17.7 4.204444444444444,4.2,a-vale-i2,2021-22,Walpole-Fisher,03070015, 94.6, 9.7, 45.8, 8.9, 1.1, 7.1 -3.9377777777777774,3.94,a-vale-i2,2021-22,Waltham-Waltham Sr High,03080505, 88.6, 19.0, 60.2, 37.1, 15.9, 44.9 -4.071111111111111,4.07,a-vale-i2,2021-22,Waltham-Northeast Elementary School,03080040, 91.6, 13.1, 56.5, 32.4, 7.6, 56.5 -4.168888888888889,4.17,a-vale-i2,2021-22,Waltham-Thomas R Plympton Elementary School,03080050, 93.8, 10.7, 46.1, 17.8, 3.4, 44.1 +4.164444444444444,4.16,a-vale-i2,2021-22,Walpole-Boyden,03070010, 93.7, 11.3, 53.0, 14.6, 0.8, 29.8 +4.182222222222222,4.18,a-vale-i2,2021-22,Walpole-Elm Street School,03070005, 94.1, 10.7, 51.7, 13.0, 0.9, 28.0 +3.9377777777777774,3.94,a-vale-i2,2021-22,Walpole-Daniel Feeney Preschool Center,03070002, 88.6, 19.0, 80.4, 46.1, 7.8, 69.6 4.177777777777778,4.18,a-vale-i2,2021-22,Waltham-James Fitzgerald Elementary School,03080060, 94.0, 10.6, 44.6, 15.8, 1.6, 42.7 4.115555555555555,4.12,a-vale-i2,2021-22,Waltham-Henry Whittemore Elementary School,03080065, 92.6, 12.6, 48.7, 21.3, 4.6, 32.0 -4.155555555555556,4.16,a-vale-i2,2021-22,Waltham-John F Kennedy Middle,03080404, 93.5, 11.4, 42.5, 16.4, 3.8, 29.0 -4.12,4.12,a-vale-i2,2021-22,Waltham-John W. McDevitt Middle School,03080415, 92.7, 12.4, 47.8, 23.8, 4.6, 43.4 4.191111111111111,4.19,a-vale-i2,2021-22,Waltham-Douglas MacArthur Elementary School,03080032, 94.3, 9.9, 43.3, 12.7, 1.8, 43.3 -4.1866666666666665,4.19,a-vale-i2,2021-22,Waltham-Waltham Public Schools Dual Language Program,03080001, 94.2, 10.3, 47.6, 15.7, 0.5, 44.3 +4.071111111111111,4.07,a-vale-i2,2021-22,Waltham-Northeast Elementary School,03080040, 91.6, 13.1, 56.5, 32.4, 7.6, 56.5 +4.155555555555556,4.16,a-vale-i2,2021-22,Waltham-John F Kennedy Middle,03080404, 93.5, 11.4, 42.5, 16.4, 3.8, 29.0 4.1466666666666665,4.15,a-vale-i2,2021-22,Waltham-William F. Stanley Elementary School,03080005, 93.3, 10.8, 44.4, 26.2, 4.7, 43.5 +4.168888888888889,4.17,a-vale-i2,2021-22,Waltham-Thomas R Plympton Elementary School,03080050, 93.8, 10.7, 46.1, 17.8, 3.4, 44.1 +3.9377777777777774,3.94,a-vale-i2,2021-22,Waltham-Waltham Sr High,03080505, 88.6, 19.0, 60.2, 37.1, 15.9, 44.9 +4.12,4.12,a-vale-i2,2021-22,Waltham-John W. McDevitt Middle School,03080415, 92.7, 12.4, 47.8, 23.8, 4.6, 43.4 +4.1866666666666665,4.19,a-vale-i2,2021-22,Waltham-Waltham Public Schools Dual Language Program,03080001, 94.2, 10.3, 47.6, 15.7, 0.5, 44.3 4.08,4.08,a-vale-i2,2021-22,Ware-Ware Middle School,03090305, 91.8, 13.9, 61.1, 30.7, 5.2, 10.4 3.977777777777778,3.98,a-vale-i2,2021-22,Ware-Ware Junior/Senior High School,03090505, 89.5, 17.7, 66.0, 39.2, 14.6, 35.9 4.022222222222222,4.02,a-vale-i2,2021-22,Ware-Stanley M Koziol Elementary School,03090020, 90.5, 14.9, 65.6, 41.3, 9.5, 26.4 4.0488888888888885,4.05,a-vale-i2,2021-22,Wareham-John William Decas,03100003, 91.1, 15.1, 69.1, 32.7, 5.7, 40.7 +4.0488888888888885,4.05,a-vale-i2,2021-22,Wareham-Minot Forest,03100017, 91.1, 15.6, 66.4, 32.7, 6.7, 37.3 +4.057777777777778,4.06,a-vale-i2,2021-22,Wareham-Wareham Senior High,03100505, 91.3, 15.0, 56.9, 33.1, 9.4, 19.3 3.3333333333333335,3.33,a-vale-i2,2021-22,Wareham-Wareham Cooperative Alternative School,03100315, 75.0, 19.9, 73.3, 82.2, 48.9, 71.1 4.066666666666666,4.07,a-vale-i2,2021-22,Wareham-Wareham Middle,03100305, 91.5, 15.0, 61.9, 34.3, 6.2, 33.8 -4.057777777777778,4.06,a-vale-i2,2021-22,Wareham-Wareham Senior High,03100505, 91.3, 15.0, 56.9, 33.1, 9.4, 19.3 -4.0488888888888885,4.05,a-vale-i2,2021-22,Wareham-Minot Forest,03100017, 91.1, 15.6, 66.4, 32.7, 6.7, 37.3 -4.12,4.12,a-vale-i2,2021-22,Watertown-Watertown Middle,03140305, 92.7, 13.0, 50.1, 18.4, 5.0, 10.2 4.151111111111112,4.15,a-vale-i2,2021-22,Watertown-Cunniff,03140015, 93.4, 11.7, 48.7, 16.8, 2.2, 0.3 -4.164444444444444,4.16,a-vale-i2,2021-22,Watertown-James Russell Lowell,03140025, 93.7, 11.3, 52.5, 15.1, 1.7, 20.1 -4.0488888888888885,4.05,a-vale-i2,2021-22,Watertown-Watertown High,03140505, 91.1, 15.3, 50.3, 25.1, 10.5, 13.9 4.16,4.16,a-vale-i2,2021-22,Watertown-Hosmer,03140020, 93.6, 11.4, 47.8, 18.7, 3.4, 12.2 +4.164444444444444,4.16,a-vale-i2,2021-22,Watertown-James Russell Lowell,03140025, 93.7, 11.3, 52.5, 15.1, 1.7, 20.1 +4.12,4.12,a-vale-i2,2021-22,Watertown-Watertown Middle,03140305, 92.7, 13.0, 50.1, 18.4, 5.0, 10.2 +4.0488888888888885,4.05,a-vale-i2,2021-22,Watertown-Watertown High,03140505, 91.1, 15.3, 50.3, 25.1, 10.5, 13.9 4.217777777777778,4.22,a-vale-i2,2021-22,Wayland-Claypit Hill School,03150005, 94.9, 9.1, 39.7, 8.6, 1.0, 0.0 -4.231111111111111,4.23,a-vale-i2,2021-22,Wayland-Wayland Middle School,03150305, 95.2, 8.5, 33.1, 9.3, 1.3, 2.3 4.226666666666667,4.23,a-vale-i2,2021-22,Wayland-Happy Hollow School,03150015, 95.1, 8.7, 37.2, 8.7, 0.3, 0.0 4.222222222222222,4.22,a-vale-i2,2021-22,Wayland-Loker School,03150020, 95.0, 8.7, 37.9, 7.7, 0.5, 0.0 +4.231111111111111,4.23,a-vale-i2,2021-22,Wayland-Wayland Middle School,03150305, 95.2, 8.5, 33.1, 9.3, 1.3, 2.3 4.195555555555556,4.2,a-vale-i2,2021-22,Wayland-Wayland High School,03150505, 94.4, 9.9, 34.9, 13.0, 2.8, 3.1 4.155555555555556,4.16,a-vale-i2,2021-22,Webster-Park Avenue Elementary,03160015, 93.5, 10.7, 43.1, 21.4, 4.6, 0.0 -3.7155555555555555,3.72,a-vale-i2,2021-22,Webster-Bartlett High School,03160505, 83.6, 26.6, 77.3, 62.2, 31.3, 0.2 3.9288888888888893,3.93,a-vale-i2,2021-22,Webster-Webster Middle School,03160315, 88.4, 19.9, 72.0, 47.2, 13.8, 0.0 -4.235555555555555,4.24,a-vale-i2,2021-22,Wellesley-Wellesley Middle,03170305, 95.3, 8.4, 31.6, 8.3, 0.7, 0.0 -4.182222222222222,4.18,a-vale-i2,2021-22,Wellesley-Wellesley Sr High,03170505, 94.1, 10.2, 38.2, 14.4, 3.4, 1.7 -4.097777777777778,4.1,a-vale-i2,2021-22,Wellesley-Preschool at Wellesley Schools,03170001, 92.2, 13.3, 56.4, 22.2, 4.3, 0.0 -4.222222222222222,4.22,a-vale-i2,2021-22,Wellesley-Katharine Lee Bates,03170005, 95.0, 8.9, 39.6, 8.4, 0.7, 0.0 -4.222222222222222,4.22,a-vale-i2,2021-22,Wellesley-Joseph E Fiske,03170015, 95.0, 8.9, 41.0, 9.9, 0.4, 0.0 -4.226666666666667,4.23,a-vale-i2,2021-22,Wellesley-John D Hardy,03170020, 95.1, 8.6, 31.2, 12.7, 1.4, 0.0 -4.226666666666667,4.23,a-vale-i2,2021-22,Wellesley-Hunnewell,03170025, 95.1, 8.8, 36.5, 9.1, 0.5, 0.0 +3.7155555555555555,3.72,a-vale-i2,2021-22,Webster-Bartlett High School,03160505, 83.6, 26.6, 77.3, 62.2, 31.3, 0.2 4.213333333333333,4.21,a-vale-i2,2021-22,Wellesley-Schofield,03170045, 94.8, 9.2, 39.0, 8.2, 0.6, 0.0 +4.226666666666667,4.23,a-vale-i2,2021-22,Wellesley-Hunnewell,03170025, 95.1, 8.8, 36.5, 9.1, 0.5, 0.0 4.235555555555555,4.24,a-vale-i2,2021-22,Wellesley-Sprague Elementary School,03170048, 95.3, 8.4, 32.4, 7.1, 0.0, 0.0 4.208888888888889,4.21,a-vale-i2,2021-22,Wellesley-Ernest F Upham,03170050, 94.7, 9.4, 43.7, 10.8, 0.0, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Wellesley-Wellesley Sr High,03170505, 94.1, 10.2, 38.2, 14.4, 3.4, 1.7 +4.235555555555555,4.24,a-vale-i2,2021-22,Wellesley-Wellesley Middle,03170305, 95.3, 8.4, 31.6, 8.3, 0.7, 0.0 +4.226666666666667,4.23,a-vale-i2,2021-22,Wellesley-John D Hardy,03170020, 95.1, 8.6, 31.2, 12.7, 1.4, 0.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Wellesley-Joseph E Fiske,03170015, 95.0, 8.9, 41.0, 9.9, 0.4, 0.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Wellesley-Katharine Lee Bates,03170005, 95.0, 8.9, 39.6, 8.4, 0.7, 0.0 +4.097777777777778,4.1,a-vale-i2,2021-22,Wellesley-Preschool at Wellesley Schools,03170001, 92.2, 13.3, 56.4, 22.2, 4.3, 0.0 4.0,4.0,a-vale-i2,2021-22,Wellfleet-Wellfleet Elementary,03180005, 90.0, 17.4, 84.6, 50.4, 2.6, 33.3 -4.168888888888889,4.17,a-vale-i2,2021-22,West Boylston-West Boylston Junior/Senior High,03220505, 93.8, 10.9, 43.9, 17.8, 3.6, 42.1 4.1866666666666665,4.19,a-vale-i2,2021-22,West Boylston-Major Edwards Elementary,03220005, 94.2, 10.1, 39.4, 13.8, 2.3, 34.7 -4.102222222222222,4.1,a-vale-i2,2021-22,West Bridgewater-West Bridgewater Junior/Senior,03230505, 92.3, 13.3, 53.3, 25.3, 4.7, 12.1 -4.16,4.16,a-vale-i2,2021-22,West Bridgewater-Rose L Macdonald,03230003, 93.6, 11.1, 53.2, 16.7, 1.2, 7.3 +4.168888888888889,4.17,a-vale-i2,2021-22,West Boylston-West Boylston Junior/Senior High,03220505, 93.8, 10.9, 43.9, 17.8, 3.6, 42.1 4.115555555555555,4.12,a-vale-i2,2021-22,West Bridgewater-Howard School,03230305, 92.6, 12.9, 58.4, 24.1, 1.7, 33.0 4.071111111111111,4.07,a-vale-i2,2021-22,West Bridgewater-Spring Street School,03230005, 91.6, 14.2, 56.7, 26.8, 5.1, 8.9 -4.115555555555555,4.12,a-vale-i2,2021-22,West Springfield-John R Fausey,03320010, 92.6, 13.0, 59.8, 25.5, 3.7, 5.4 -4.022222222222222,4.02,a-vale-i2,2021-22,West Springfield-Memorial,03320025, 90.5, 16.0, 65.4, 37.4, 8.1, 3.3 -4.013333333333334,4.01,a-vale-i2,2021-22,West Springfield-Philip G Coburn,03320007, 90.3, 15.9, 63.2, 40.3, 9.7, 11.6 -3.991111111111111,3.99,a-vale-i2,2021-22,West Springfield-John Ashley,03320005, 89.8, 17.0, 72.3, 39.3, 10.2, 2.9 +4.16,4.16,a-vale-i2,2021-22,West Bridgewater-Rose L Macdonald,03230003, 93.6, 11.1, 53.2, 16.7, 1.2, 7.3 +4.102222222222222,4.1,a-vale-i2,2021-22,West Bridgewater-West Bridgewater Junior/Senior,03230505, 92.3, 13.3, 53.3, 25.3, 4.7, 12.1 3.7866666666666666,3.79,a-vale-i2,2021-22,West Springfield-Cowing Early Childhood,03320001, 85.2, 17.6, 71.6, 59.7, 21.6, 4.5 -4.062222222222222,4.06,a-vale-i2,2021-22,West Springfield-Mittineague,03320030, 91.4, 15.0, 66.9, 31.9, 5.4, 4.8 -4.124444444444444,4.12,a-vale-i2,2021-22,West Springfield-Tatham,03320040, 92.8, 12.7, 56.8, 22.9, 3.7, 1.5 -4.044444444444444,4.04,a-vale-i2,2021-22,West Springfield-West Springfield Middle,03320305, 91.0, 15.5, 58.8, 31.9, 9.4, 8.2 4.0488888888888885,4.05,a-vale-i2,2021-22,West Springfield-West Springfield High,03320505, 91.1, 15.2, 53.9, 30.2, 11.6, 12.4 -4.026666666666666,4.03,a-vale-i2,2021-22,Westborough-Westborough High,03210505, 90.6, 16.4, 53.5, 30.7, 11.3, 1.7 -4.195555555555556,4.2,a-vale-i2,2021-22,Westborough-Mill Pond School,03210045, 94.4, 9.9, 39.4, 16.1, 1.3, 9.9 +4.044444444444444,4.04,a-vale-i2,2021-22,West Springfield-West Springfield Middle,03320305, 91.0, 15.5, 58.8, 31.9, 9.4, 8.2 +4.124444444444444,4.12,a-vale-i2,2021-22,West Springfield-Tatham,03320040, 92.8, 12.7, 56.8, 22.9, 3.7, 1.5 +4.062222222222222,4.06,a-vale-i2,2021-22,West Springfield-Mittineague,03320030, 91.4, 15.0, 66.9, 31.9, 5.4, 4.8 +4.022222222222222,4.02,a-vale-i2,2021-22,West Springfield-Memorial,03320025, 90.5, 16.0, 65.4, 37.4, 8.1, 3.3 +4.115555555555555,4.12,a-vale-i2,2021-22,West Springfield-John R Fausey,03320010, 92.6, 13.0, 59.8, 25.5, 3.7, 5.4 +3.991111111111111,3.99,a-vale-i2,2021-22,West Springfield-John Ashley,03320005, 89.8, 17.0, 72.3, 39.3, 10.2, 2.9 +4.013333333333334,4.01,a-vale-i2,2021-22,West Springfield-Philip G Coburn,03320007, 90.3, 15.9, 63.2, 40.3, 9.7, 11.6 4.137777777777777,4.14,a-vale-i2,2021-22,Westborough-J Harding Armstrong,03210005, 93.1, 11.6, 47.6, 21.7, 4.1, 3.6 4.168888888888889,4.17,a-vale-i2,2021-22,Westborough-Annie E Fales,03210010, 93.8, 10.9, 43.6, 19.2, 2.8, 0.0 4.062222222222222,4.06,a-vale-i2,2021-22,Westborough-Elsie A Hastings Elementary,03210025, 91.4, 13.8, 55.5, 33.6, 8.4, 0.0 4.262222222222222,4.26,a-vale-i2,2021-22,Westborough-Sarah W Gibbons Middle,03210305, 95.9, 7.2, 22.6, 8.9, 1.8, 8.2 +4.195555555555556,4.2,a-vale-i2,2021-22,Westborough-Mill Pond School,03210045, 94.4, 9.9, 39.4, 16.1, 1.3, 9.9 +4.026666666666666,4.03,a-vale-i2,2021-22,Westborough-Westborough High,03210505, 90.6, 16.4, 53.5, 30.7, 11.3, 1.7 +4.0488888888888885,4.05,a-vale-i2,2021-22,Westfield-Paper Mill,03250036, 91.1, 15.2, 59.9, 33.2, 8.7, 26.4 4.1288888888888895,4.13,a-vale-i2,2021-22,Westfield-Southampton Road,03250040, 92.9, 12.5, 59.9, 20.5, 1.4, 5.5 4.111111111111111,4.11,a-vale-i2,2021-22,Westfield-Westfield Intermediate School,03250075, 92.5, 13.0, 54.6, 27.2, 5.0, 0.0 -4.0488888888888885,4.05,a-vale-i2,2021-22,Westfield-Paper Mill,03250036, 91.1, 15.2, 59.9, 33.2, 8.7, 26.4 -4.106666666666667,4.11,a-vale-i2,2021-22,Westfield-Munger Hill,03250033, 92.4, 13.0, 60.6, 26.6, 2.0, 18.6 -4.106666666666667,4.11,a-vale-i2,2021-22,Westfield-Highland,03250025, 92.4, 13.0, 55.5, 25.2, 3.6, 22.0 -4.053333333333334,4.05,a-vale-i2,2021-22,Westfield-Abner Gibbs,03250020, 91.2, 15.4, 70.8, 29.8, 5.8, 32.7 -4.026666666666666,4.03,a-vale-i2,2021-22,Westfield-Franklin Ave,03250015, 90.6, 16.4, 71.2, 42.9, 6.2, 22.6 -4.084444444444444,4.08,a-vale-i2,2021-22,Westfield-Westfield Technical Academy,03250605, 91.9, 14.3, 58.2, 27.3, 6.4, 16.9 -3.92,3.92,a-vale-i2,2021-22,Westfield-Fort Meadow Early Childhood Center,03250003, 88.2, 16.1, 65.5, 50.9, 12.7, 4.8 -4.2,4.2,a-vale-i2,2021-22,Westfield-Westfield Virtual School,03250705, 94.5, 9.2, 30.5, 18.9, 9.5, 0.0 -3.911111111111111,3.91,a-vale-i2,2021-22,Westfield-Westfield High,03250505, 88.0, 20.3, 59.4, 39.3, 18.1, 33.7 4.071111111111111,4.07,a-vale-i2,2021-22,Westfield-Westfield Middle School,03250310, 91.6, 14.7, 58.6, 33.3, 6.4, 31.7 -4.226666666666667,4.23,a-vale-i2,2021-22,Westford-Stony Brook School,03260330, 95.1, 8.8, 34.2, 10.5, 1.6, 0.0 -4.088888888888889,4.09,a-vale-i2,2021-22,Westford-Rita E. Miller Elementary School,03260055, 92.0, 13.5, 61.5, 24.2, 5.5, 0.0 -4.235555555555555,4.24,a-vale-i2,2021-22,Westford-Blanchard Middle,03260310, 95.3, 8.4, 33.1, 10.2, 1.9, 0.0 -4.204444444444444,4.2,a-vale-i2,2021-22,Westford-Westford Academy,03260505, 94.6, 9.4, 36.5, 13.3, 2.1, 0.7 -4.222222222222222,4.22,a-vale-i2,2021-22,Westford-John A. Crisafulli Elementary School,03260045, 95.0, 8.9, 38.9, 8.6, 0.3, 0.0 -4.182222222222222,4.18,a-vale-i2,2021-22,Westford-Nabnasset,03260015, 94.1, 10.4, 49.5, 14.2, 1.8, 0.0 +3.911111111111111,3.91,a-vale-i2,2021-22,Westfield-Westfield High,03250505, 88.0, 20.3, 59.4, 39.3, 18.1, 33.7 +4.084444444444444,4.08,a-vale-i2,2021-22,Westfield-Westfield Technical Academy,03250605, 91.9, 14.3, 58.2, 27.3, 6.4, 16.9 +4.2,4.2,a-vale-i2,2021-22,Westfield-Westfield Virtual School,03250705, 94.5, 9.2, 30.5, 18.9, 9.5, 0.0 +3.92,3.92,a-vale-i2,2021-22,Westfield-Fort Meadow Early Childhood Center,03250003, 88.2, 16.1, 65.5, 50.9, 12.7, 4.8 +4.026666666666666,4.03,a-vale-i2,2021-22,Westfield-Franklin Ave,03250015, 90.6, 16.4, 71.2, 42.9, 6.2, 22.6 +4.053333333333334,4.05,a-vale-i2,2021-22,Westfield-Abner Gibbs,03250020, 91.2, 15.4, 70.8, 29.8, 5.8, 32.7 +4.106666666666667,4.11,a-vale-i2,2021-22,Westfield-Highland,03250025, 92.4, 13.0, 55.5, 25.2, 3.6, 22.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Westfield-Munger Hill,03250033, 92.4, 13.0, 60.6, 26.6, 2.0, 18.6 4.222222222222222,4.22,a-vale-i2,2021-22,Westford-Abbot Elementary,03260004, 95.0, 8.9, 42.1, 9.2, 0.6, 0.0 4.208888888888889,4.21,a-vale-i2,2021-22,Westford-Day Elementary,03260007, 94.7, 9.3, 38.2, 11.8, 1.9, 0.0 +4.204444444444444,4.2,a-vale-i2,2021-22,Westford-Westford Academy,03260505, 94.6, 9.4, 36.5, 13.3, 2.1, 0.7 +4.226666666666667,4.23,a-vale-i2,2021-22,Westford-Stony Brook School,03260330, 95.1, 8.8, 34.2, 10.5, 1.6, 0.0 +4.235555555555555,4.24,a-vale-i2,2021-22,Westford-Blanchard Middle,03260310, 95.3, 8.4, 33.1, 10.2, 1.9, 0.0 +4.088888888888889,4.09,a-vale-i2,2021-22,Westford-Rita E. Miller Elementary School,03260055, 92.0, 13.5, 61.5, 24.2, 5.5, 0.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Westford-John A. Crisafulli Elementary School,03260045, 95.0, 8.9, 38.9, 8.6, 0.3, 0.0 4.182222222222222,4.18,a-vale-i2,2021-22,Westford-Col John Robinson,03260025, 94.1, 10.2, 44.7, 14.6, 1.5, 0.0 +4.182222222222222,4.18,a-vale-i2,2021-22,Westford-Nabnasset,03260015, 94.1, 10.4, 49.5, 14.2, 1.8, 0.0 4.142222222222222,4.14,a-vale-i2,2021-22,Westhampton-Westhampton Elementary School,03270005, 93.2, 11.6, 49.5, 18.9, 2.7, 0.0 +4.208888888888889,4.21,a-vale-i2,2021-22,Weston-Country,03300010, 94.7, 9.5, 37.2, 11.9, 1.9, 35.6 4.217777777777778,4.22,a-vale-i2,2021-22,Weston-Weston High,03300505, 94.9, 9.0, 32.4, 11.9, 3.0, 0.8 +4.24,4.24,a-vale-i2,2021-22,Weston-Weston Middle,03300305, 95.4, 8.2, 32.4, 8.3, 1.1, 1.1 4.222222222222222,4.22,a-vale-i2,2021-22,Weston-Woodland,03300015, 95.0, 8.7, 34.9, 9.7, 1.3, 0.3 4.262222222222222,4.26,a-vale-i2,2021-22,Weston-Field Elementary School,03300012, 95.9, 7.3, 29.6, 4.1, 0.4, 0.0 -4.208888888888889,4.21,a-vale-i2,2021-22,Weston-Country,03300010, 94.7, 9.5, 37.2, 11.9, 1.9, 35.6 -4.24,4.24,a-vale-i2,2021-22,Weston-Weston Middle,03300305, 95.4, 8.2, 32.4, 8.3, 1.1, 1.1 4.133333333333334,4.13,a-vale-i2,2021-22,Westport-Westport Elementary,03310030, 93.0, 12.1, 53.9, 18.4, 2.0, 11.5 4.093333333333333,4.09,a-vale-i2,2021-22,Westport-Westport Middle-High School,03310515, 92.1, 14.0, 56.1, 25.5, 5.2, 30.6 4.097777777777778,4.1,a-vale-i2,2021-22,Westport-Alice A Macomber,03310015, 92.2, 13.2, 57.6, 26.6, 4.9, 8.7 -4.222222222222222,4.22,a-vale-i2,2021-22,Westwood-William E Sheehan,03350025, 95.0, 9.0, 37.5, 8.9, 0.3, 0.0 -4.217777777777778,4.22,a-vale-i2,2021-22,Westwood-Martha Jones,03350017, 94.9, 9.2, 43.6, 10.2, 0.0, 0.0 -4.266666666666667,4.27,a-vale-i2,2021-22,Westwood-Paul Hanlon,03350015, 96.0, 7.0, 21.9, 6.1, 1.5, 2.6 -4.217777777777778,4.22,a-vale-i2,2021-22,Westwood-Downey,03350012, 94.9, 9.1, 40.5, 8.2, 0.7, 0.0 -4.173333333333334,4.17,a-vale-i2,2021-22,Westwood-Westwood High,03350505, 93.9, 10.9, 42.2, 14.6, 4.5, 30.0 -4.2444444444444445,4.24,a-vale-i2,2021-22,Westwood-E W Thurston Middle,03350305, 95.5, 8.0, 29.4, 7.3, 0.7, 0.7 4.1866666666666665,4.19,a-vale-i2,2021-22,Westwood-Deerfield School,03350010, 94.2, 10.4, 51.6, 8.8, 0.5, 0.0 +4.217777777777778,4.22,a-vale-i2,2021-22,Westwood-Downey,03350012, 94.9, 9.1, 40.5, 8.2, 0.7, 0.0 +4.266666666666667,4.27,a-vale-i2,2021-22,Westwood-Paul Hanlon,03350015, 96.0, 7.0, 21.9, 6.1, 1.5, 2.6 +4.217777777777778,4.22,a-vale-i2,2021-22,Westwood-Martha Jones,03350017, 94.9, 9.2, 43.6, 10.2, 0.0, 0.0 4.102222222222222,4.1,a-vale-i2,2021-22,Westwood-Westwood Integrated Preschool,03350050, 92.3, 10.4, 40.8, 18.4, 6.1, 0.0 -4.124444444444444,4.12,a-vale-i2,2021-22,Weymouth-Thomas W. Hamilton Primary School,03360105, 92.8, 12.3, 53.0, 23.1, 2.0, 39.5 -4.133333333333334,4.13,a-vale-i2,2021-22,Weymouth-Wessagusset,03360110, 93.0, 12.1, 52.1, 22.1, 3.7, 35.2 +4.2444444444444445,4.24,a-vale-i2,2021-22,Westwood-E W Thurston Middle,03350305, 95.5, 8.0, 29.4, 7.3, 0.7, 0.7 +4.173333333333334,4.17,a-vale-i2,2021-22,Westwood-Westwood High,03350505, 93.9, 10.9, 42.2, 14.6, 4.5, 30.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Westwood-William E Sheehan,03350025, 95.0, 9.0, 37.5, 8.9, 0.3, 0.0 4.12,4.12,a-vale-i2,2021-22,Weymouth-Abigail Adams Middle School,03360310, 92.7, 12.6, 54.1, 25.1, 4.5, 35.9 3.9955555555555557,4.0,a-vale-i2,2021-22,Weymouth-Weymouth High School,03360505, 89.9, 17.0, 59.7, 35.0, 12.9, 38.0 4.0311111111111115,4.03,a-vale-i2,2021-22,Weymouth-Johnson Early Childhood Center,03360003, 90.7, 11.1, 44.2, 30.6, 9.2, 30.6 @@ -10946,85 +10944,61 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.111111111111111,4.11,a-vale-i2,2021-22,Weymouth-Lawrence W Pingree,03360065, 92.5, 13.2, 59.8, 25.9, 3.1, 42.1 4.0,4.0,a-vale-i2,2021-22,Weymouth-William Seach,03360080, 90.0, 16.9, 63.0, 40.6, 10.1, 55.3 4.115555555555555,4.12,a-vale-i2,2021-22,Weymouth-Ralph Talbot,03360085, 92.6, 12.4, 54.6, 24.0, 4.1, 24.4 +4.124444444444444,4.12,a-vale-i2,2021-22,Weymouth-Thomas W. Hamilton Primary School,03360105, 92.8, 12.3, 53.0, 23.1, 2.0, 39.5 +4.133333333333334,4.13,a-vale-i2,2021-22,Weymouth-Wessagusset,03360110, 93.0, 12.1, 52.1, 22.1, 3.7, 35.2 4.266666666666667,4.27,a-vale-i2,2021-22,Whately-Whately Elementary,03370005, 96.0, 7.0, 27.0, 2.4, 0.8, 25.4 +4.16,4.16,a-vale-i2,2021-22,Whitman-Hanson-Louise A Conley,07800010, 93.6, 11.3, 52.9, 17.4, 2.4, 19.2 4.115555555555555,4.12,a-vale-i2,2021-22,Whitman-Hanson-John H Duval,07800030, 92.6, 12.7, 54.8, 27.0, 4.0, 31.9 4.1466666666666665,4.15,a-vale-i2,2021-22,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 93.3, 11.0, 55.1, 23.4, 1.9, 55.1 -4.16,4.16,a-vale-i2,2021-22,Whitman-Hanson-Louise A Conley,07800010, 93.6, 11.3, 52.9, 17.4, 2.4, 19.2 -4.053333333333334,4.05,a-vale-i2,2021-22,Whitman-Hanson-Whitman Hanson Regional,07800505, 91.2, 14.9, 60.6, 30.4, 9.5, 35.4 4.164444444444444,4.16,a-vale-i2,2021-22,Whitman-Hanson-Indian Head,07800035, 93.7, 11.2, 57.0, 14.5, 1.4, 25.7 4.297777777777778,4.3,a-vale-i2,2021-22,Whitman-Hanson-Whitman Middle,07800310, 96.7, 5.8, 17.6, 4.2, 0.8, 0.0 4.293333333333333,4.29,a-vale-i2,2021-22,Whitman-Hanson-Hanson Middle School,07800315, 96.6, 6.0, 20.1, 3.7, 0.6, 0.0 +4.053333333333334,4.05,a-vale-i2,2021-22,Whitman-Hanson-Whitman Hanson Regional,07800505, 91.2, 14.9, 60.6, 30.4, 9.5, 35.4 4.133333333333334,4.13,a-vale-i2,2021-22,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 93.0, 12.5, 54.8, 20.0, 3.9, 4.6 4.155555555555556,4.16,a-vale-i2,2021-22,Williamsburg-Anne T. Dunphy School,03400020, 93.5, 11.5, 41.3, 16.8, 4.9, 1.4 -4.088888888888889,4.09,a-vale-i2,2021-22,Wilmington-Wildwood,03420015, 92.0, 13.0, 59.8, 24.9, 2.4, 10.1 -4.182222222222222,4.18,a-vale-i2,2021-22,Wilmington-Woburn Street,03420020, 94.1, 10.4, 48.5, 15.2, 0.6, 23.1 -4.182222222222222,4.18,a-vale-i2,2021-22,Wilmington-North Intermediate,03420060, 94.1, 10.5, 45.3, 14.2, 1.2, 25.2 -4.191111111111111,4.19,a-vale-i2,2021-22,Wilmington-Wilmington High,03420505, 94.3, 9.9, 36.6, 13.2, 4.5, 15.7 -4.155555555555556,4.16,a-vale-i2,2021-22,Wilmington-Wilmington Middle School,03420330, 93.5, 11.5, 46.5, 16.6, 3.5, 9.4 -4.217777777777778,4.22,a-vale-i2,2021-22,Wilmington-West Intermediate,03420080, 94.9, 9.2, 35.7, 10.3, 0.5, 2.3 4.106666666666667,4.11,a-vale-i2,2021-22,Wilmington-Boutwell,03420005, 92.4, 12.7, 63.9, 28.6, 1.5, 15.8 +4.182222222222222,4.18,a-vale-i2,2021-22,Wilmington-Woburn Street,03420020, 94.1, 10.4, 48.5, 15.2, 0.6, 23.1 +4.191111111111111,4.19,a-vale-i2,2021-22,Wilmington-Wilmington High,03420505, 94.3, 9.9, 36.6, 13.2, 4.5, 15.7 +4.182222222222222,4.18,a-vale-i2,2021-22,Wilmington-North Intermediate,03420060, 94.1, 10.5, 45.3, 14.2, 1.2, 25.2 +4.217777777777778,4.22,a-vale-i2,2021-22,Wilmington-West Intermediate,03420080, 94.9, 9.2, 35.7, 10.3, 0.5, 2.3 +4.155555555555556,4.16,a-vale-i2,2021-22,Wilmington-Wilmington Middle School,03420330, 93.5, 11.5, 46.5, 16.6, 3.5, 9.4 +4.088888888888889,4.09,a-vale-i2,2021-22,Wilmington-Wildwood,03420015, 92.0, 13.0, 59.8, 24.9, 2.4, 10.1 4.217777777777778,4.22,a-vale-i2,2021-22,Wilmington-Shawsheen Elementary,03420025, 94.9, 9.0, 38.9, 9.9, 0.3, 18.1 +4.053333333333334,4.05,a-vale-i2,2021-22,Winchendon-Toy Town Elementary,03430050, 91.2, 14.9, 67.2, 33.1, 6.1, 55.6 +4.044444444444444,4.04,a-vale-i2,2021-22,Winchendon-Memorial,03430040, 91.0, 15.5, 72.3, 38.0, 5.0, 51.5 +3.968888888888889,3.97,a-vale-i2,2021-22,Winchendon-Winchendon PreSchool Program,03430010, 89.3, 17.1, 65.8, 42.1, 10.5, 5.3 +4.0,4.0,a-vale-i2,2021-22,Winchendon-Murdock Middle School,03430315, 90.0, 17.3, 67.5, 34.3, 10.9, 38.9 3.897777777777778,3.9,a-vale-i2,2021-22,Winchendon-Murdock High School,03430515, 87.7, 20.3, 71.1, 47.3, 20.1, 50.9 2.497777777777778,2.5,a-vale-i2,2021-22,Winchendon-Murdock Academy for Success,03430405, 56.2, 48.6, 100.0, 91.4, 80.0, 91.4 -4.0,4.0,a-vale-i2,2021-22,Winchendon-Murdock Middle School,03430315, 90.0, 17.3, 67.5, 34.3, 10.9, 38.9 -3.968888888888889,3.97,a-vale-i2,2021-22,Winchendon-Winchendon PreSchool Program,03430010, 89.3, 17.1, 65.8, 42.1, 10.5, 5.3 -4.044444444444444,4.04,a-vale-i2,2021-22,Winchendon-Memorial,03430040, 91.0, 15.5, 72.3, 38.0, 5.0, 51.5 -4.053333333333334,4.05,a-vale-i2,2021-22,Winchendon-Toy Town Elementary,03430050, 91.2, 14.9, 67.2, 33.1, 6.1, 55.6 -4.222222222222222,4.22,a-vale-i2,2021-22,Winchester-McCall Middle,03440305, 95.0, 8.8, 35.9, 9.9, 1.5, 25.3 -4.208888888888889,4.21,a-vale-i2,2021-22,Winchester-Muraco Elementary,03440040, 94.7, 9.4, 39.8, 8.1, 1.2, 39.8 4.235555555555555,4.24,a-vale-i2,2021-22,Winchester-Lincoln Elementary,03440005, 95.3, 8.5, 35.8, 5.7, 0.0, 8.0 4.213333333333333,4.21,a-vale-i2,2021-22,Winchester-Lynch Elementary,03440020, 94.8, 9.2, 39.3, 11.7, 1.1, 38.0 4.204444444444444,4.2,a-vale-i2,2021-22,Winchester-Vinson-Owen Elementary,03440025, 94.6, 9.7, 46.0, 11.0, 1.4, 45.5 +4.208888888888889,4.21,a-vale-i2,2021-22,Winchester-Muraco Elementary,03440040, 94.7, 9.4, 39.8, 8.1, 1.2, 39.8 4.208888888888889,4.21,a-vale-i2,2021-22,Winchester-Ambrose Elementary,03440045, 94.7, 9.7, 46.8, 5.2, 0.0, 46.0 +4.222222222222222,4.22,a-vale-i2,2021-22,Winchester-McCall Middle,03440305, 95.0, 8.8, 35.9, 9.9, 1.5, 25.3 4.168888888888889,4.17,a-vale-i2,2021-22,Winchester-Winchester High School,03440505, 93.8, 11.0, 40.3, 13.9, 3.8, 16.0 -4.084444444444444,4.08,a-vale-i2,2021-22,Winthrop-Winthrop High School,03460505, 91.9, 13.8, 52.2, 26.5, 8.4, 21.5 +4.08,4.08,a-vale-i2,2021-22,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 91.8, 14.0, 62.9, 26.8, 4.8, 33.5 4.12,4.12,a-vale-i2,2021-22,Winthrop-Winthrop Middle School,03460305, 92.7, 12.8, 51.4, 24.4, 3.6, 12.0 4.1466666666666665,4.15,a-vale-i2,2021-22,Winthrop-Arthur T. Cummings Elementary School,03460020, 93.3, 11.5, 57.7, 20.3, 1.2, 15.2 -4.08,4.08,a-vale-i2,2021-22,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 91.8, 14.0, 62.9, 26.8, 4.8, 33.5 -4.066666666666666,4.07,a-vale-i2,2021-22,Woburn-Woburn High,03470505, 91.5, 14.7, 51.3, 26.4, 8.8, 36.9 -4.142222222222222,4.14,a-vale-i2,2021-22,Woburn-Goodyear Elementary School,03470005, 93.2, 11.7, 49.1, 20.8, 4.3, 48.8 -4.1466666666666665,4.15,a-vale-i2,2021-22,Woburn-Malcolm White,03470055, 93.3, 11.6, 53.3, 23.7, 1.3, 41.3 -4.066666666666666,4.07,a-vale-i2,2021-22,Woburn-Shamrock,03470043, 91.5, 14.2, 63.8, 34.8, 3.8, 58.7 -4.168888888888889,4.17,a-vale-i2,2021-22,Woburn-Hurld-Wyman Elementary School,03470020, 93.8, 10.8, 52.1, 15.7, 1.5, 28.9 -4.191111111111111,4.19,a-vale-i2,2021-22,Woburn-Linscott-Rumford,03470025, 94.3, 9.6, 41.7, 19.0, 2.3, 40.3 +4.084444444444444,4.08,a-vale-i2,2021-22,Winthrop-Winthrop High School,03460505, 91.9, 13.8, 52.2, 26.5, 8.4, 21.5 4.155555555555556,4.16,a-vale-i2,2021-22,Woburn-Daniel L Joyce Middle School,03470410, 93.5, 11.2, 46.9, 19.6, 1.6, 35.6 4.16,4.16,a-vale-i2,2021-22,Woburn-John F Kennedy Middle School,03470405, 93.6, 11.2, 45.8, 18.7, 3.8, 37.3 4.115555555555555,4.12,a-vale-i2,2021-22,Woburn-Mary D Altavesta,03470065, 92.6, 11.9, 56.9, 25.5, 3.1, 0.0 +4.1466666666666665,4.15,a-vale-i2,2021-22,Woburn-Malcolm White,03470055, 93.3, 11.6, 53.3, 23.7, 1.3, 41.3 +4.066666666666666,4.07,a-vale-i2,2021-22,Woburn-Woburn High,03470505, 91.5, 14.7, 51.3, 26.4, 8.8, 36.9 4.115555555555555,4.12,a-vale-i2,2021-22,Woburn-Clyde Reeves,03470040, 92.6, 12.4, 57.7, 24.7, 3.4, 57.1 -4.1866666666666665,4.19,a-vale-i2,2021-22,Worcester-Worcester Technical High,03480605, 94.2, 10.2, 40.2, 13.9, 3.6, 30.1 -4.084444444444444,4.08,a-vale-i2,2021-22,Worcester-Norrback Avenue,03480202, 91.9, 13.5, 51.5, 30.3, 8.1, 39.2 -4.191111111111111,4.19,a-vale-i2,2021-22,Worcester-Nelson Place,03480200, 94.3, 10.1, 39.2, 14.1, 2.3, 31.7 -4.217777777777778,4.22,a-vale-i2,2021-22,Worcester-Midland Street,03480185, 94.9, 8.7, 37.7, 12.1, 1.4, 30.9 -4.106666666666667,4.11,a-vale-i2,2021-22,Worcester-Francis J McGrath Elementary,03480177, 92.4, 12.6, 54.4, 27.0, 5.6, 49.3 -3.933333333333333,3.93,a-vale-i2,2021-22,Worcester-South High Community,03480520, 88.5, 19.2, 61.4, 41.1, 15.8, 55.8 -3.8577777777777778,3.86,a-vale-i2,2021-22,Worcester-North High,03480515, 86.8, 21.7, 64.9, 45.7, 18.9, 61.5 -3.9955555555555557,4.0,a-vale-i2,2021-22,Worcester-Doherty Memorial High,03480512, 89.9, 17.1, 61.1, 34.4, 12.1, 52.8 -3.8844444444444446,3.88,a-vale-i2,2021-22,Worcester-Burncoat Senior High,03480503, 87.4, 21.3, 64.5, 41.7, 19.5, 60.1 -4.1288888888888895,4.13,a-vale-i2,2021-22,Worcester-Sullivan Middle,03480423, 92.9, 12.2, 42.9, 25.0, 6.4, 38.6 -3.8400000000000003,3.84,a-vale-i2,2021-22,Worcester-Worcester East Middle,03480420, 86.4, 22.9, 65.4, 44.3, 18.4, 57.4 -4.093333333333333,4.09,a-vale-i2,2021-22,Worcester-Union Hill School,03480240, 92.1, 13.1, 53.4, 31.4, 5.1, 52.2 -4.075555555555556,4.08,a-vale-i2,2021-22,Worcester-Quinsigamond,03480210, 91.7, 13.9, 55.3, 31.1, 7.2, 53.2 -4.071111111111111,4.07,a-vale-i2,2021-22,Worcester-Rice Square,03480215, 91.6, 13.6, 52.2, 31.4, 10.4, 51.3 -4.084444444444444,4.08,a-vale-i2,2021-22,Worcester-Roosevelt,03480220, 91.9, 13.5, 51.7, 29.5, 9.9, 41.0 -4.2444444444444445,4.24,a-vale-i2,2021-22,Worcester-Worcester Arts Magnet School,03480225, 95.5, 7.8, 31.2, 10.1, 0.8, 29.0 -4.208888888888889,4.21,a-vale-i2,2021-22,Worcester-Tatnuck,03480230, 94.7, 9.2, 39.0, 17.0, 2.5, 30.0 -4.16,4.16,a-vale-i2,2021-22,Worcester-Thorndyke Road,03480235, 93.6, 11.1, 47.8, 20.2, 3.8, 37.6 -4.195555555555556,4.2,a-vale-i2,2021-22,Worcester-Flagg Street,03480090, 94.4, 9.8, 44.6, 15.7, 0.9, 33.7 -4.195555555555556,4.2,a-vale-i2,2021-22,Worcester-West Tatnuck,03480260, 94.4, 9.6, 43.3, 16.6, 2.3, 35.8 -3.924444444444444,3.92,a-vale-i2,2021-22,Worcester-Vernon Hill School,03480280, 88.3, 19.1, 63.6, 39.0, 13.6, 53.0 -4.093333333333333,4.09,a-vale-i2,2021-22,Worcester-University Pk Campus School,03480285, 92.1, 13.9, 54.0, 26.8, 6.8, 43.0 -3.9733333333333336,3.97,a-vale-i2,2021-22,Worcester-Claremont Academy,03480350, 89.4, 17.8, 56.9, 39.1, 16.7, 47.8 -4.137777777777777,4.14,a-vale-i2,2021-22,Worcester-Burncoat Middle School,03480405, 93.1, 12.0, 45.7, 22.7, 5.7, 40.6 +4.191111111111111,4.19,a-vale-i2,2021-22,Woburn-Linscott-Rumford,03470025, 94.3, 9.6, 41.7, 19.0, 2.3, 40.3 +4.168888888888889,4.17,a-vale-i2,2021-22,Woburn-Hurld-Wyman Elementary School,03470020, 93.8, 10.8, 52.1, 15.7, 1.5, 28.9 +4.142222222222222,4.14,a-vale-i2,2021-22,Woburn-Goodyear Elementary School,03470005, 93.2, 11.7, 49.1, 20.8, 4.3, 48.8 +4.066666666666666,4.07,a-vale-i2,2021-22,Woburn-Shamrock,03470043, 91.5, 14.2, 63.8, 34.8, 3.8, 58.7 4.08,4.08,a-vale-i2,2021-22,Worcester-Forest Grove Middle,03480415, 91.8, 14.1, 55.3, 28.3, 7.7, 45.7 -3.986666666666667,3.99,a-vale-i2,2021-22,Worcester-Elm Park Community,03480095, 89.7, 16.7, 65.7, 44.1, 12.3, 64.5 -4.16,4.16,a-vale-i2,2021-22,Worcester-Goddard School/Science Technical,03480100, 93.6, 10.7, 45.3, 22.3, 2.0, 34.3 -4.102222222222222,4.1,a-vale-i2,2021-22,Worcester-Gates Lane,03480110, 92.3, 12.8, 51.7, 26.6, 6.6, 47.2 -4.0488888888888885,4.05,a-vale-i2,2021-22,Worcester-Grafton Street,03480115, 91.1, 14.8, 57.8, 38.1, 8.5, 54.9 -4.226666666666667,4.23,a-vale-i2,2021-22,Worcester-Heard Street,03480136, 95.1, 8.5, 40.8, 7.8, 0.8, 26.5 -4.191111111111111,4.19,a-vale-i2,2021-22,Worcester-Jacob Hiatt Magnet,03480140, 94.3, 9.8, 38.3, 17.9, 2.8, 30.9 -4.164444444444444,4.16,a-vale-i2,2021-22,Worcester-Lake View,03480145, 93.7, 10.6, 46.3, 18.8, 2.8, 33.4 -4.062222222222222,4.06,a-vale-i2,2021-22,Worcester-Lincoln Street,03480160, 91.4, 13.9, 56.5, 38.6, 6.5, 46.7 -3.9466666666666663,3.95,a-vale-i2,2021-22,Worcester-Head Start,03480002, 88.8, 17.0, 69.3, 44.3, 13.6, 69.3 +3.8400000000000003,3.84,a-vale-i2,2021-22,Worcester-Worcester East Middle,03480420, 86.4, 22.9, 65.4, 44.3, 18.4, 57.4 +4.1288888888888895,4.13,a-vale-i2,2021-22,Worcester-Sullivan Middle,03480423, 92.9, 12.2, 42.9, 25.0, 6.4, 38.6 +3.8844444444444446,3.88,a-vale-i2,2021-22,Worcester-Burncoat Senior High,03480503, 87.4, 21.3, 64.5, 41.7, 19.5, 60.1 +3.9955555555555557,4.0,a-vale-i2,2021-22,Worcester-Doherty Memorial High,03480512, 89.9, 17.1, 61.1, 34.4, 12.1, 52.8 +3.8577777777777778,3.86,a-vale-i2,2021-22,Worcester-North High,03480515, 86.8, 21.7, 64.9, 45.7, 18.9, 61.5 +3.933333333333333,3.93,a-vale-i2,2021-22,Worcester-South High Community,03480520, 88.5, 19.2, 61.4, 41.1, 15.8, 55.8 +4.1866666666666665,4.19,a-vale-i2,2021-22,Worcester-Worcester Technical High,03480605, 94.2, 10.2, 40.2, 13.9, 3.6, 30.1 4.071111111111111,4.07,a-vale-i2,2021-22,Worcester-Belmont Street Community,03480020, 91.6, 13.6, 48.6, 17.4, 6.8, 33.0 4.2,4.2,a-vale-i2,2021-22,Worcester-La Familia Dual Language School,03480025, 94.5, 9.6, 43.0, 15.2, 1.3, 34.4 4.111111111111111,4.11,a-vale-i2,2021-22,Worcester-Wawecus Road School,03480026, 92.5, 12.7, 48.4, 28.2, 5.6, 46.0 @@ -11035,276 +11009,200 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.137777777777777,4.14,a-vale-i2,2021-22,Worcester-Chandler Magnet,03480052, 93.1, 11.6, 51.5, 20.4, 2.9, 47.8 4.075555555555556,4.08,a-vale-i2,2021-22,Worcester-City View,03480053, 91.7, 13.9, 54.8, 31.7, 9.2, 46.0 3.977777777777778,3.98,a-vale-i2,2021-22,Worcester-Clark St Community,03480055, 89.5, 17.4, 67.4, 47.9, 11.5, 59.8 -4.182222222222222,4.18,a-vale-i2,2021-22,Worcester-May Street,03480175, 94.1, 10.0, 44.3, 14.2, 1.6, 35.0 4.004444444444444,4.0,a-vale-i2,2021-22,Worcester-Columbus Park,03480060, 90.1, 16.5, 66.4, 39.6, 11.3, 61.2 +4.195555555555556,4.2,a-vale-i2,2021-22,Worcester-Flagg Street,03480090, 94.4, 9.8, 44.6, 15.7, 0.9, 33.7 +3.986666666666667,3.99,a-vale-i2,2021-22,Worcester-Elm Park Community,03480095, 89.7, 16.7, 65.7, 44.1, 12.3, 64.5 +4.16,4.16,a-vale-i2,2021-22,Worcester-Goddard School/Science Technical,03480100, 93.6, 10.7, 45.3, 22.3, 2.0, 34.3 +4.102222222222222,4.1,a-vale-i2,2021-22,Worcester-Gates Lane,03480110, 92.3, 12.8, 51.7, 26.6, 6.6, 47.2 +4.0488888888888885,4.05,a-vale-i2,2021-22,Worcester-Grafton Street,03480115, 91.1, 14.8, 57.8, 38.1, 8.5, 54.9 +4.226666666666667,4.23,a-vale-i2,2021-22,Worcester-Heard Street,03480136, 95.1, 8.5, 40.8, 7.8, 0.8, 26.5 +4.191111111111111,4.19,a-vale-i2,2021-22,Worcester-Jacob Hiatt Magnet,03480140, 94.3, 9.8, 38.3, 17.9, 2.8, 30.9 +4.164444444444444,4.16,a-vale-i2,2021-22,Worcester-Lake View,03480145, 93.7, 10.6, 46.3, 18.8, 2.8, 33.4 +4.062222222222222,4.06,a-vale-i2,2021-22,Worcester-Lincoln Street,03480160, 91.4, 13.9, 56.5, 38.6, 6.5, 46.7 +4.182222222222222,4.18,a-vale-i2,2021-22,Worcester-May Street,03480175, 94.1, 10.0, 44.3, 14.2, 1.6, 35.0 +4.106666666666667,4.11,a-vale-i2,2021-22,Worcester-Francis J McGrath Elementary,03480177, 92.4, 12.6, 54.4, 27.0, 5.6, 49.3 +4.217777777777778,4.22,a-vale-i2,2021-22,Worcester-Midland Street,03480185, 94.9, 8.7, 37.7, 12.1, 1.4, 30.9 +4.191111111111111,4.19,a-vale-i2,2021-22,Worcester-Nelson Place,03480200, 94.3, 10.1, 39.2, 14.1, 2.3, 31.7 +4.084444444444444,4.08,a-vale-i2,2021-22,Worcester-Norrback Avenue,03480202, 91.9, 13.5, 51.5, 30.3, 8.1, 39.2 +4.075555555555556,4.08,a-vale-i2,2021-22,Worcester-Quinsigamond,03480210, 91.7, 13.9, 55.3, 31.1, 7.2, 53.2 +4.071111111111111,4.07,a-vale-i2,2021-22,Worcester-Rice Square,03480215, 91.6, 13.6, 52.2, 31.4, 10.4, 51.3 +4.137777777777777,4.14,a-vale-i2,2021-22,Worcester-Burncoat Middle School,03480405, 93.1, 12.0, 45.7, 22.7, 5.7, 40.6 +3.9733333333333336,3.97,a-vale-i2,2021-22,Worcester-Claremont Academy,03480350, 89.4, 17.8, 56.9, 39.1, 16.7, 47.8 +4.093333333333333,4.09,a-vale-i2,2021-22,Worcester-University Pk Campus School,03480285, 92.1, 13.9, 54.0, 26.8, 6.8, 43.0 +3.924444444444444,3.92,a-vale-i2,2021-22,Worcester-Vernon Hill School,03480280, 88.3, 19.1, 63.6, 39.0, 13.6, 53.0 +4.195555555555556,4.2,a-vale-i2,2021-22,Worcester-West Tatnuck,03480260, 94.4, 9.6, 43.3, 16.6, 2.3, 35.8 +4.093333333333333,4.09,a-vale-i2,2021-22,Worcester-Union Hill School,03480240, 92.1, 13.1, 53.4, 31.4, 5.1, 52.2 +4.16,4.16,a-vale-i2,2021-22,Worcester-Thorndyke Road,03480235, 93.6, 11.1, 47.8, 20.2, 3.8, 37.6 +4.208888888888889,4.21,a-vale-i2,2021-22,Worcester-Tatnuck,03480230, 94.7, 9.2, 39.0, 17.0, 2.5, 30.0 +3.9466666666666663,3.95,a-vale-i2,2021-22,Worcester-Head Start,03480002, 88.8, 17.0, 69.3, 44.3, 13.6, 69.3 +4.084444444444444,4.08,a-vale-i2,2021-22,Worcester-Roosevelt,03480220, 91.9, 13.5, 51.7, 29.5, 9.9, 41.0 +4.2444444444444445,4.24,a-vale-i2,2021-22,Worcester-Worcester Arts Magnet School,03480225, 95.5, 7.8, 31.2, 10.1, 0.8, 29.0 4.1288888888888895,4.13,a-vale-i2,2021-22,Worthington-R. H. Conwell,03490010, 92.9, 12.0, 49.3, 27.4, 4.1, 1.4 4.1866666666666665,4.19,a-vale-i2,2021-22,Wrentham-Charles E Roderick,03500010, 94.2, 10.3, 44.3, 14.3, 1.8, 0.8 4.142222222222222,4.14,a-vale-i2,2021-22,Wrentham-Delaney,03500003, 93.2, 11.2, 50.8, 22.1, 2.0, 3.3 4.311111111111111,4.31,a-vale-i2,2020-21,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 97.0, 5.0, 14.0, 6.5, 2.6 3.808888888888889,3.81,a-vale-i2,2020-21,Abington-Abington High,00010505, 85.7, 24.0, 67.3, 42.8, 14.7 -4.066666666666666,4.07,a-vale-i2,2020-21,Abington-Abington Middle School,00010405, 91.5, 14.2, 46.7, 29.3, 18.3 4.1288888888888895,4.13,a-vale-i2,2020-21,Abington-Beaver Brook Elementary,00010020, 92.9, 11.6, 31.9, 21.5, 7.2 -4.1466666666666665,4.15,a-vale-i2,2020-21,Abington-Woodsdale Elementary School,00010015, 93.3, 11.2, 34.7, 18.4, 7.8 +4.066666666666666,4.07,a-vale-i2,2020-21,Abington-Abington Middle School,00010405, 91.5, 14.2, 46.7, 29.3, 18.3 4.115555555555555,4.12,a-vale-i2,2020-21,Abington-Abington Early Education Program,00010001, 92.6, 11.2, 40.3, 31.3, 11.9 +4.1466666666666665,4.15,a-vale-i2,2020-21,Abington-Woodsdale Elementary School,00010015, 93.3, 11.2, 34.7, 18.4, 7.8 4.124444444444444,4.12,a-vale-i2,2020-21,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 92.8, 12.6, 30.5, 17.3, 27.2 -4.359999999999999,4.36,a-vale-i2,2020-21,Acton-Boxborough-Raymond J Grey Junior High,06000405, 98.1, 3.2, 7.4, 2.9, 0.0 -4.155555555555556,4.16,a-vale-i2,2020-21,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 93.5, 9.9, 25.6, 23.3, 0.0 4.342222222222222,4.34,a-vale-i2,2020-21,Acton-Boxborough-Blanchard Memorial School,06000005, 97.7, 3.9, 8.5, 4.6, 0.0 +4.311111111111111,4.31,a-vale-i2,2020-21,Acton-Boxborough-Merriam School,06000010, 97.0, 5.0, 13.8, 6.1, 0.0 4.337777777777777,4.34,a-vale-i2,2020-21,Acton-Boxborough-McCarthy-Towne School,06000015, 97.6, 4.0, 10.2, 2.8, 0.0 +4.155555555555556,4.16,a-vale-i2,2020-21,Acton-Boxborough-Carol Huebner Early Childhood Program,06000001, 93.5, 9.9, 25.6, 23.3, 0.0 4.333333333333333,4.33,a-vale-i2,2020-21,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 97.5, 4.1, 9.4, 5.2, 0.0 +4.359999999999999,4.36,a-vale-i2,2020-21,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 98.1, 3.2, 7.2, 2.3, 0.4 4.346666666666667,4.35,a-vale-i2,2020-21,Acton-Boxborough-Paul P Gates Elementary School,06000025, 97.8, 3.7, 6.6, 4.5, 0.0 4.355555555555555,4.36,a-vale-i2,2020-21,Acton-Boxborough-Luther Conant School,06000030, 98.0, 3.2, 7.0, 3.9, 0.0 -4.359999999999999,4.36,a-vale-i2,2020-21,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 98.1, 3.2, 7.2, 2.3, 0.4 -4.311111111111111,4.31,a-vale-i2,2020-21,Acton-Boxborough-Merriam School,06000010, 97.0, 5.0, 13.8, 6.1, 0.0 +4.359999999999999,4.36,a-vale-i2,2020-21,Acton-Boxborough-Raymond J Grey Junior High,06000405, 98.1, 3.2, 7.4, 2.9, 0.0 4.32,4.32,a-vale-i2,2020-21,Acushnet-Acushnet Elementary School,00030025, 97.2, 4.6, 13.3, 4.5, 6.9 4.297777777777778,4.3,a-vale-i2,2020-21,Acushnet-Albert F Ford Middle School,00030305, 96.7, 5.5, 17.3, 8.4, 5.2 4.2844444444444445,4.28,a-vale-i2,2020-21,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 96.4, 6.0, 17.5, 6.7, 0.0 -4.106666666666667,4.11,a-vale-i2,2020-21,Agawam-Agawam Early Childhood Center,00050003, 92.4, 9.8, 38.1, 24.5, 38.1 -4.013333333333334,4.01,a-vale-i2,2020-21,Agawam-Agawam High,00050505, 90.3, 16.0, 49.2, 31.2, 8.5 -4.124444444444444,4.12,a-vale-i2,2020-21,Agawam-Agawam Junior High,00050405, 92.8, 11.9, 39.9, 23.0, 10.7 -4.222222222222222,4.22,a-vale-i2,2020-21,Agawam-Roberta G. Doering School,00050303, 95.0, 8.3, 31.1, 15.0, 9.7 -4.195555555555556,4.2,a-vale-i2,2020-21,Agawam-James Clark School,00050030, 94.4, 9.0, 28.9, 20.4, 6.7 -4.093333333333333,4.09,a-vale-i2,2020-21,Agawam-Robinson Park,00050025, 92.1, 13.0, 43.2, 27.5, 5.2 -4.24,4.24,a-vale-i2,2020-21,Agawam-Benjamin J Phelps,00050020, 95.4, 7.7, 28.1, 11.9, 6.7 4.24,4.24,a-vale-i2,2020-21,Agawam-Clifford M Granger,00050010, 95.4, 7.5, 24.2, 10.7, 13.5 +4.24,4.24,a-vale-i2,2020-21,Agawam-Benjamin J Phelps,00050020, 95.4, 7.7, 28.1, 11.9, 6.7 +4.093333333333333,4.09,a-vale-i2,2020-21,Agawam-Robinson Park,00050025, 92.1, 13.0, 43.2, 27.5, 5.2 +4.106666666666667,4.11,a-vale-i2,2020-21,Agawam-Agawam Early Childhood Center,00050003, 92.4, 9.8, 38.1, 24.5, 38.1 +4.222222222222222,4.22,a-vale-i2,2020-21,Agawam-Roberta G. Doering School,00050303, 95.0, 8.3, 31.1, 15.0, 9.7 +4.124444444444444,4.12,a-vale-i2,2020-21,Agawam-Agawam Junior High,00050405, 92.8, 11.9, 39.9, 23.0, 10.7 +4.013333333333334,4.01,a-vale-i2,2020-21,Agawam-Agawam High,00050505, 90.3, 16.0, 49.2, 31.2, 8.5 +4.195555555555556,4.2,a-vale-i2,2020-21,Agawam-James Clark School,00050030, 94.4, 9.0, 28.9, 20.4, 6.7 4.12,4.12,a-vale-i2,2020-21,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 92.7, 12.6, 45.4, 24.1, 2.8 -3.9155555555555552,3.92,a-vale-i2,2020-21,Amesbury-Amesbury Innovation High School,00070515, 88.1, 18.3, 55.6, 37.8, 8.9 -4.1866666666666665,4.19,a-vale-i2,2020-21,Amesbury-Charles C Cashman Elementary,00070010, 94.2, 9.6, 30.7, 17.5, 8.7 4.217777777777778,4.22,a-vale-i2,2020-21,Amesbury-Amesbury Elementary,00070005, 94.9, 8.2, 29.3, 16.7, 2.9 +4.1866666666666665,4.19,a-vale-i2,2020-21,Amesbury-Charles C Cashman Elementary,00070010, 94.2, 9.6, 30.7, 17.5, 8.7 4.2,4.2,a-vale-i2,2020-21,Amesbury-Amesbury Middle,00070013, 94.5, 9.7, 28.9, 16.4, 4.6 4.213333333333333,4.21,a-vale-i2,2020-21,Amesbury-Amesbury High,00070505, 94.8, 8.8, 27.8, 14.0, 2.1 -4.231111111111111,4.23,a-vale-i2,2020-21,Amherst-Wildwood Elementary,00080050, 95.2, 7.6, 21.6, 13.3, 1.6 +3.9155555555555552,3.92,a-vale-i2,2020-21,Amesbury-Amesbury Innovation High School,00070515, 88.1, 18.3, 55.6, 37.8, 8.9 4.231111111111111,4.23,a-vale-i2,2020-21,Amherst-Crocker Farm Elementary,00080009, 95.2, 7.5, 19.3, 13.4, 1.3 4.173333333333334,4.17,a-vale-i2,2020-21,Amherst-Fort River Elementary,00080020, 93.9, 9.9, 26.7, 18.1, 1.0 -4.04,4.04,a-vale-i2,2020-21,Amherst-Pelham-Amherst Regional High,06050505, 90.9, 15.1, 24.1, 18.3, 0.8 +4.231111111111111,4.23,a-vale-i2,2020-21,Amherst-Wildwood Elementary,00080050, 95.2, 7.6, 21.6, 13.3, 1.6 4.191111111111111,4.19,a-vale-i2,2020-21,Amherst-Pelham-Amherst Regional Middle School,06050405, 94.3, 9.5, 28.2, 18.4, 0.0 +4.04,4.04,a-vale-i2,2020-21,Amherst-Pelham-Amherst Regional High,06050505, 90.9, 15.1, 24.1, 18.3, 0.8 4.3244444444444445,4.32,a-vale-i2,2020-21,Andover-Bancroft Elementary,00090003, 97.3, 4.6, 11.9, 3.6, 1.7 4.333333333333333,4.33,a-vale-i2,2020-21,Andover-High Plain Elementary,00090004, 97.5, 4.0, 10.0, 3.3, 0.6 4.155555555555556,4.16,a-vale-i2,2020-21,Andover-Shawsheen School,00090005, 93.5, 9.8, 41.3, 20.0, 3.8 4.342222222222222,4.34,a-vale-i2,2020-21,Andover-Henry C Sanborn Elementary,00090010, 97.7, 3.9, 8.9, 2.1, 0.6 -4.364444444444445,4.36,a-vale-i2,2020-21,Andover-South Elementary,00090020, 98.2, 3.0, 4.9, 0.9, 0.6 +4.217777777777778,4.22,a-vale-i2,2020-21,Andover-Andover High,00090505, 94.9, 8.4, 24.9, 12.9, 1.6 4.333333333333333,4.33,a-vale-i2,2020-21,Andover-West Elementary,00090025, 97.5, 4.1, 8.3, 2.9, 1.3 4.3244444444444445,4.32,a-vale-i2,2020-21,Andover-Doherty Middle,00090305, 97.3, 4.6, 12.1, 4.2, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Andover-Andover West Middle,00090310, 96.6, 5.8, 16.5, 7.5, 1.5 4.288888888888889,4.29,a-vale-i2,2020-21,Andover-Wood Hill Middle School,00090350, 96.5, 5.8, 19.1, 8.6, 1.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Andover-Andover High,00090505, 94.9, 8.4, 24.9, 12.9, 1.6 +4.364444444444445,4.36,a-vale-i2,2020-21,Andover-South Elementary,00090020, 98.2, 3.0, 4.9, 0.9, 0.6 4.191111111111111,4.19,a-vale-i2,2020-21,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 94.3, 9.5, 29.2, 16.7, 1.9 +4.364444444444445,4.36,a-vale-i2,2020-21,Arlington-Brackett,00100010, 98.2, 3.1, 6.0, 1.1, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Arlington-Cyrus E Dallin,00100025, 97.8, 3.6, 7.2, 1.9, 0.0 +4.333333333333333,4.33,a-vale-i2,2020-21,Arlington-Hardy,00100030, 97.5, 4.1, 9.9, 4.0, 0.0 +4.297777777777778,4.3,a-vale-i2,2020-21,Arlington-Arlington High,00100505, 96.7, 5.5, 12.2, 6.5, 3.4 +4.333333333333333,4.33,a-vale-i2,2020-21,Arlington-Peirce,00100045, 97.5, 4.2, 9.8, 4.2, 0.0 +4.311111111111111,4.31,a-vale-i2,2020-21,Arlington-Thompson,00100050, 97.0, 5.0, 14.4, 5.3, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Arlington-M Norcross Stratton,00100055, 96.8, 5.3, 17.4, 5.6, 0.0 4.32,4.32,a-vale-i2,2020-21,Arlington-Gibbs School,00100305, 97.2, 4.6, 12.1, 4.1, 1.2 -4.333333333333333,4.33,a-vale-i2,2020-21,Arlington-Peirce,00100045, 97.5, 4.2, 9.8, 4.2, 0.0 4.271111111111111,4.27,a-vale-i2,2020-21,Arlington-Ottoson Middle,00100410, 96.1, 6.5, 19.6, 8.2, 1.2 -4.333333333333333,4.33,a-vale-i2,2020-21,Arlington-Hardy,00100030, 97.5, 4.1, 9.9, 4.0, 0.0 -4.346666666666667,4.35,a-vale-i2,2020-21,Arlington-Cyrus E Dallin,00100025, 97.8, 3.6, 7.2, 1.9, 0.0 -4.364444444444445,4.36,a-vale-i2,2020-21,Arlington-Brackett,00100010, 98.2, 3.1, 6.0, 1.1, 0.0 4.346666666666667,4.35,a-vale-i2,2020-21,Arlington-John A Bishop,00100005, 97.8, 3.7, 7.0, 2.7, 0.0 -4.297777777777778,4.3,a-vale-i2,2020-21,Arlington-Arlington High,00100505, 96.7, 5.5, 12.2, 6.5, 3.4 -4.311111111111111,4.31,a-vale-i2,2020-21,Arlington-Thompson,00100050, 97.0, 5.0, 14.4, 5.3, 0.0 4.133333333333334,4.13,a-vale-i2,2020-21,Arlington-Menotomy Preschool,00100038, 93.0, 10.1, 32.1, 19.8, 3.7 +4.32,4.32,a-vale-i2,2020-21,Ashburnham-Westminster-Westminster Elementary,06100005, 97.2, 4.7, 12.4, 2.9, 2.1 +4.311111111111111,4.31,a-vale-i2,2020-21,Ashburnham-Westminster-Meetinghouse School,06100010, 97.0, 4.9, 10.8, 4.2, 2.4 +4.275555555555556,4.28,a-vale-i2,2020-21,Ashburnham-Westminster-Briggs Elementary,06100025, 96.2, 6.0, 15.7, 6.8, 4.2 4.262222222222222,4.26,a-vale-i2,2020-21,Ashburnham-Westminster-Overlook Middle School,06100305, 95.9, 6.9, 22.5, 9.8, 4.9 4.1466666666666665,4.15,a-vale-i2,2020-21,Ashburnham-Westminster-Oakmont Regional High School,06100505, 93.3, 11.1, 32.5, 17.2, 18.0 -4.275555555555556,4.28,a-vale-i2,2020-21,Ashburnham-Westminster-Briggs Elementary,06100025, 96.2, 6.0, 15.7, 6.8, 4.2 -4.311111111111111,4.31,a-vale-i2,2020-21,Ashburnham-Westminster-Meetinghouse School,06100010, 97.0, 4.9, 10.8, 4.2, 2.4 -4.32,4.32,a-vale-i2,2020-21,Ashburnham-Westminster-Westminster Elementary,06100005, 97.2, 4.7, 12.4, 2.9, 2.1 +4.16,4.16,a-vale-i2,2020-21,Ashland-Ashland High,00140505, 93.6, 10.6, 36.8, 20.0, 11.5 4.08,4.08,a-vale-i2,2020-21,Ashland-William Pittaway Elementary,00140005, 91.8, 12.7, 42.4, 27.1, 0.0 +4.288888888888889,4.29,a-vale-i2,2020-21,Ashland-Henry E Warren Elementary,00140010, 96.5, 5.7, 18.8, 8.1, 0.0 4.24,4.24,a-vale-i2,2020-21,Ashland-David Mindess,00140015, 95.4, 7.5, 24.3, 14.5, 0.0 4.204444444444444,4.2,a-vale-i2,2020-21,Ashland-Ashland Middle,00140405, 94.6, 9.0, 31.7, 18.2, 10.0 -4.16,4.16,a-vale-i2,2020-21,Ashland-Ashland High,00140505, 93.6, 10.6, 36.8, 20.0, 11.5 -4.288888888888889,4.29,a-vale-i2,2020-21,Ashland-Henry E Warren Elementary,00140010, 96.5, 5.7, 18.8, 8.1, 0.0 4.142222222222222,4.14,a-vale-i2,2020-21,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 93.2, 11.5, 37.9, 21.3, 15.1 +4.253333333333334,4.25,a-vale-i2,2020-21,Athol-Royalston-Royalston Community School,06150050, 95.7, 6.9, 24.1, 5.8, 7.3 4.142222222222222,4.14,a-vale-i2,2020-21,Athol-Royalston-Athol Community Elementary School,06150020, 93.2, 10.7, 36.3, 19.6, 10.5 4.1466666666666665,4.15,a-vale-i2,2020-21,Athol-Royalston-Athol High,06150505, 93.3, 10.5, 29.9, 17.9, 8.0 4.04,4.04,a-vale-i2,2020-21,Athol-Royalston-Athol-Royalston Middle School,06150305, 90.9, 14.6, 45.3, 32.7, 16.7 -4.253333333333334,4.25,a-vale-i2,2020-21,Athol-Royalston-Royalston Community School,06150050, 95.7, 6.9, 24.1, 5.8, 7.3 4.2,4.2,a-vale-i2,2020-21,Atlantis Charter (District)-Atlantis Charter School,04910550, 94.5, 9.4, 28.8, 16.7, 26.9 -4.151111111111112,4.15,a-vale-i2,2020-21,Attleboro-Attleboro Community Academy,00160515, 93.4, 7.7, 32.6, 21.7, 26.1 3.804444444444444,3.8,a-vale-i2,2020-21,Attleboro-Attleboro High,00160505, 85.6, 23.7, 61.3, 45.6, 20.7 -4.168888888888889,4.17,a-vale-i2,2020-21,Attleboro-Wamsutta Middle School,00160320, 93.8, 10.3, 31.4, 19.5, 4.1 -4.106666666666667,4.11,a-vale-i2,2020-21,Attleboro-Cyril K. Brennan Middle School,00160315, 92.4, 12.6, 40.3, 25.4, 11.0 -4.124444444444444,4.12,a-vale-i2,2020-21,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 11.9, 30.7, 21.6, 8.8 -4.195555555555556,4.2,a-vale-i2,2020-21,Attleboro-Peter Thacher Elementary School,00160050, 94.4, 9.1, 30.4, 18.0, 6.3 -4.226666666666667,4.23,a-vale-i2,2020-21,Attleboro-Hill-Roberts Elementary School,00160045, 95.1, 8.0, 23.9, 13.0, 1.7 -4.2444444444444445,4.24,a-vale-i2,2020-21,Attleboro-Thomas Willett Elementary School,00160035, 95.5, 7.2, 25.7, 12.2, 3.8 -4.0,4.0,a-vale-i2,2020-21,Attleboro-Early Learning Center,00160008, 90.0, 12.9, 48.9, 38.2, 29.8 +4.151111111111112,4.15,a-vale-i2,2020-21,Attleboro-Attleboro Community Academy,00160515, 93.4, 7.7, 32.6, 21.7, 26.1 4.297777777777778,4.3,a-vale-i2,2020-21,Attleboro-A. Irvin Studley Elementary School,00160001, 96.7, 5.4, 17.5, 6.5, 2.2 +4.0,4.0,a-vale-i2,2020-21,Attleboro-Early Learning Center,00160008, 90.0, 12.9, 48.9, 38.2, 29.8 +4.2444444444444445,4.24,a-vale-i2,2020-21,Attleboro-Thomas Willett Elementary School,00160035, 95.5, 7.2, 25.7, 12.2, 3.8 3.924444444444444,3.92,a-vale-i2,2020-21,Attleboro-Hyman Fine Elementary School,00160040, 88.3, 19.2, 33.7, 22.5, 7.3 -4.044444444444444,4.04,a-vale-i2,2020-21,Auburn-Auburn Senior High,00170505, 91.0, 14.9, 44.0, 29.2, 0.0 -4.191111111111111,4.19,a-vale-i2,2020-21,Auburn-Auburn Middle,00170305, 94.3, 9.6, 28.3, 15.3, 0.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Auburn-Pakachoag School,00170025, 97.3, 4.4, 10.5, 4.3, 0.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Attleboro-Hill-Roberts Elementary School,00160045, 95.1, 8.0, 23.9, 13.0, 1.7 +4.195555555555556,4.2,a-vale-i2,2020-21,Attleboro-Peter Thacher Elementary School,00160050, 94.4, 9.1, 30.4, 18.0, 6.3 +4.124444444444444,4.12,a-vale-i2,2020-21,Attleboro-Robert J. Coelho Middle School,00160305, 92.8, 11.9, 30.7, 21.6, 8.8 +4.106666666666667,4.11,a-vale-i2,2020-21,Attleboro-Cyril K. Brennan Middle School,00160315, 92.4, 12.6, 40.3, 25.4, 11.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Attleboro-Wamsutta Middle School,00160320, 93.8, 10.3, 31.4, 19.5, 4.1 4.293333333333333,4.29,a-vale-i2,2020-21,Auburn-Bryn Mawr,00170010, 96.6, 5.7, 18.3, 6.7, 0.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Auburn-Pakachoag School,00170025, 97.3, 4.4, 10.5, 4.3, 0.0 4.311111111111111,4.31,a-vale-i2,2020-21,Auburn-Swanson Road Intermediate School,00170030, 97.0, 5.0, 14.0, 5.9, 0.0 +4.191111111111111,4.19,a-vale-i2,2020-21,Auburn-Auburn Middle,00170305, 94.3, 9.6, 28.3, 15.3, 0.0 +4.044444444444444,4.04,a-vale-i2,2020-21,Auburn-Auburn Senior High,00170505, 91.0, 14.9, 44.0, 29.2, 0.0 4.311111111111111,4.31,a-vale-i2,2020-21,Avon-Ralph D Butler,00180010, 97.0, 4.9, 14.6, 7.6, 3.4 4.2844444444444445,4.28,a-vale-i2,2020-21,Avon-Avon Middle High School,00180510, 96.4, 5.9, 19.9, 8.2, 15.8 +4.271111111111111,4.27,a-vale-i2,2020-21,Ayer Shirley School District-Lura A. White Elementary School,06160001, 96.1, 6.3, 20.7, 10.7, 2.7 4.24,4.24,a-vale-i2,2020-21,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 95.4, 7.4, 27.0, 12.7, 7.8 4.173333333333334,4.17,a-vale-i2,2020-21,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 93.9, 10.3, 36.4, 17.9, 10.0 3.9955555555555557,4.0,a-vale-i2,2020-21,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 89.9, 16.4, 53.2, 35.5, 15.2 -4.271111111111111,4.27,a-vale-i2,2020-21,Ayer Shirley School District-Lura A. White Elementary School,06160001, 96.1, 6.3, 20.7, 10.7, 2.7 -4.1866666666666665,4.19,a-vale-i2,2020-21,Barnstable-Barnstable Community Innovation School,00200012, 94.2, 9.6, 36.4, 18.6, 17.9 -3.9066666666666667,3.91,a-vale-i2,2020-21,Barnstable-Enoch Cobb Early Learning Center,00200001, 87.9, 14.0, 53.2, 47.5, 41.8 4.195555555555556,4.2,a-vale-i2,2020-21,Barnstable-West Barnstable Elementary,00200005, 94.4, 9.2, 31.2, 17.5, 14.5 -4.204444444444444,4.2,a-vale-i2,2020-21,Barnstable-Centerville Elementary,00200010, 94.6, 8.7, 29.9, 15.4, 7.9 -3.897777777777778,3.9,a-vale-i2,2020-21,Barnstable-Barnstable High,00200505, 87.7, 20.2, 58.9, 42.7, 23.4 -4.1866666666666665,4.19,a-vale-i2,2020-21,Barnstable-Hyannis West Elementary,00200025, 94.2, 8.9, 35.8, 18.8, 7.3 +3.9066666666666667,3.91,a-vale-i2,2020-21,Barnstable-Enoch Cobb Early Learning Center,00200001, 87.9, 14.0, 53.2, 47.5, 41.8 4.226666666666667,4.23,a-vale-i2,2020-21,Barnstable-West Villages Elementary School,00200045, 95.1, 7.9, 27.1, 12.7, 1.3 -4.2,4.2,a-vale-i2,2020-21,Barnstable-Barnstable United Elementary School,00200050, 94.5, 9.0, 28.3, 17.6, 10.3 +4.1866666666666665,4.19,a-vale-i2,2020-21,Barnstable-Hyannis West Elementary,00200025, 94.2, 8.9, 35.8, 18.8, 7.3 3.96,3.96,a-vale-i2,2020-21,Barnstable-Barnstable Intermediate School,00200315, 89.1, 17.8, 55.5, 38.1, 16.7 +4.204444444444444,4.2,a-vale-i2,2020-21,Barnstable-Centerville Elementary,00200010, 94.6, 8.7, 29.9, 15.4, 7.9 +4.1866666666666665,4.19,a-vale-i2,2020-21,Barnstable-Barnstable Community Innovation School,00200012, 94.2, 9.6, 36.4, 18.6, 17.9 +3.897777777777778,3.9,a-vale-i2,2020-21,Barnstable-Barnstable High,00200505, 87.7, 20.2, 58.9, 42.7, 23.4 +4.2,4.2,a-vale-i2,2020-21,Barnstable-Barnstable United Elementary School,00200050, 94.5, 9.0, 28.3, 17.6, 10.3 4.111111111111111,4.11,a-vale-i2,2020-21,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 92.5, 13.1, 42.2, 21.9, 0.0 -4.368888888888889,4.37,a-vale-i2,2020-21,Bedford-Lt Job Lane School,00230012, 98.3, 2.9, 4.9, 1.8, 0.0 -4.373333333333334,4.37,a-vale-i2,2020-21,Bedford-Lt Elezer Davis,00230010, 98.4, 2.6, 3.5, 2.3, 0.7 4.297777777777778,4.3,a-vale-i2,2020-21,Bedford-John Glenn Middle,00230305, 96.7, 5.6, 14.9, 6.6, 0.3 4.271111111111111,4.27,a-vale-i2,2020-21,Bedford-Bedford High,00230505, 96.1, 6.6, 20.1, 7.6, 3.6 -4.262222222222222,4.26,a-vale-i2,2020-21,Belchertown-Jabish Middle School,00240025, 95.9, 6.9, 19.3, 11.3, 12.7 +4.368888888888889,4.37,a-vale-i2,2020-21,Bedford-Lt Job Lane School,00230012, 98.3, 2.9, 4.9, 1.8, 0.0 +4.373333333333334,4.37,a-vale-i2,2020-21,Bedford-Lt Elezer Davis,00230010, 98.4, 2.6, 3.5, 2.3, 0.7 4.253333333333334,4.25,a-vale-i2,2020-21,Belchertown-Swift River Elementary,00240018, 95.7, 7.1, 20.3, 10.4, 13.5 -4.142222222222222,4.14,a-vale-i2,2020-21,Belchertown-Belchertown High,00240505, 93.2, 11.2, 35.2, 21.4, 29.8 4.204444444444444,4.2,a-vale-i2,2020-21,Belchertown-Cold Spring,00240005, 94.6, 8.8, 28.5, 15.1, 21.5 +4.262222222222222,4.26,a-vale-i2,2020-21,Belchertown-Jabish Middle School,00240025, 95.9, 6.9, 19.3, 11.3, 12.7 4.217777777777778,4.22,a-vale-i2,2020-21,Belchertown-Chestnut Hill Community School,00240006, 94.9, 8.6, 25.4, 15.6, 20.7 +4.142222222222222,4.14,a-vale-i2,2020-21,Belchertown-Belchertown High,00240505, 93.2, 11.2, 35.2, 21.4, 29.8 4.266666666666667,4.27,a-vale-i2,2020-21,Bellingham-Joseph F DiPietro Elementary School,00250020, 96.0, 6.5, 19.5, 11.4, 5.7 -4.28,4.28,a-vale-i2,2020-21,Bellingham-Bellingham Memorial School,00250315, 96.3, 6.2, 20.1, 9.3, 7.3 4.24,4.24,a-vale-i2,2020-21,Bellingham-Stall Brook,00250025, 95.4, 7.6, 25.3, 11.6, 5.6 -3.466666666666667,3.47,a-vale-i2,2020-21,Bellingham-Keough Memorial Academy,00250510, 78.0, 31.1, 80.8, 73.1, 57.7 4.075555555555556,4.08,a-vale-i2,2020-21,Bellingham-Bellingham High School,00250505, 91.7, 13.8, 37.9, 24.6, 6.7 +4.28,4.28,a-vale-i2,2020-21,Bellingham-Bellingham Memorial School,00250315, 96.3, 6.2, 20.1, 9.3, 7.3 +3.466666666666667,3.47,a-vale-i2,2020-21,Bellingham-Keough Memorial Academy,00250510, 78.0, 31.1, 80.8, 73.1, 57.7 4.28,4.28,a-vale-i2,2020-21,Bellingham-Bellingham Early Childhood Center,00250003, 96.3, 5.8, 14.5, 11.6, 14.5 -4.275555555555556,4.28,a-vale-i2,2020-21,Belmont-Belmont High,00260505, 96.2, 6.3, 17.8, 9.0, 0.7 4.342222222222222,4.34,a-vale-i2,2020-21,Belmont-Winthrop L Chenery Middle,00260305, 97.7, 3.8, 9.1, 3.7, 2.1 4.377777777777778,4.38,a-vale-i2,2020-21,Belmont-Roger E Wellington,00260035, 98.5, 2.4, 5.0, 2.5, 0.8 -4.346666666666667,4.35,a-vale-i2,2020-21,Belmont-Daniel Butler,00260015, 97.8, 3.7, 7.7, 3.6, 2.7 +4.275555555555556,4.28,a-vale-i2,2020-21,Belmont-Belmont High,00260505, 96.2, 6.3, 17.8, 9.0, 0.7 4.368888888888889,4.37,a-vale-i2,2020-21,Belmont-Mary Lee Burbank,00260010, 98.3, 2.8, 7.8, 2.1, 0.0 4.386666666666667,4.39,a-vale-i2,2020-21,Belmont-Winn Brook,00260005, 98.7, 2.2, 4.5, 0.7, 1.8 +4.346666666666667,4.35,a-vale-i2,2020-21,Belmont-Daniel Butler,00260015, 97.8, 3.7, 7.7, 3.6, 2.7 4.288888888888889,4.29,a-vale-i2,2020-21,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 96.5, 6.1, 19.2, 8.7, 0.6 4.333333333333333,4.33,a-vale-i2,2020-21,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 97.5, 4.1, 10.0, 3.5, 1.4 -4.266666666666667,4.27,a-vale-i2,2020-21,Berkley-Berkley Middle School,00270305, 96.0, 6.8, 24.1, 8.8, 21.9 4.297777777777778,4.3,a-vale-i2,2020-21,Berkley-Berkley Community School,00270010, 96.7, 5.1, 15.1, 6.0, 12.1 +4.266666666666667,4.27,a-vale-i2,2020-21,Berkley-Berkley Middle School,00270305, 96.0, 6.8, 24.1, 8.8, 21.9 4.106666666666667,4.11,a-vale-i2,2020-21,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 92.4, 13.0, 36.0, 21.1, 32.9 -3.9422222222222225,3.94,a-vale-i2,2020-21,Berkshire Hills-Monument Mt Regional High,06180505, 88.7, 18.5, 52.6, 35.0, 4.3 -4.062222222222222,4.06,a-vale-i2,2020-21,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 91.4, 14.0, 51.4, 28.5, 0.0 4.093333333333333,4.09,a-vale-i2,2020-21,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 92.1, 13.2, 43.7, 26.0, 0.3 -4.266666666666667,4.27,a-vale-i2,2020-21,Berlin-Boylston-Berlin Memorial School,06200005, 96.0, 6.2, 18.5, 9.8, 0.5 +4.062222222222222,4.06,a-vale-i2,2020-21,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 91.4, 14.0, 51.4, 28.5, 0.0 +3.9422222222222225,3.94,a-vale-i2,2020-21,Berkshire Hills-Monument Mt Regional High,06180505, 88.7, 18.5, 52.6, 35.0, 4.3 4.271111111111111,4.27,a-vale-i2,2020-21,Berlin-Boylston-Tahanto Regional High,06200505, 96.1, 6.4, 18.0, 8.6, 1.8 +4.266666666666667,4.27,a-vale-i2,2020-21,Berlin-Boylston-Berlin Memorial School,06200005, 96.0, 6.2, 18.5, 9.8, 0.5 4.257777777777777,4.26,a-vale-i2,2020-21,Berlin-Boylston-Boylston Elementary School,06200010, 95.8, 6.8, 23.9, 13.2, 0.0 -4.24,4.24,a-vale-i2,2020-21,Beverly-Cove Elementary,00300015, 95.4, 7.5, 23.6, 13.7, 10.6 -4.275555555555556,4.28,a-vale-i2,2020-21,Beverly-Hannah Elementary,00300033, 96.2, 6.4, 24.5, 5.7, 11.1 -4.262222222222222,4.26,a-vale-i2,2020-21,Beverly-North Beverly Elementary,00300040, 95.9, 6.7, 21.7, 11.9, 6.9 -4.293333333333333,4.29,a-vale-i2,2020-21,Beverly-Ayers/Ryal Side School,00300055, 96.6, 5.6, 15.2, 6.4, 2.4 -4.173333333333334,4.17,a-vale-i2,2020-21,Beverly-Beverly Middle School,00300305, 93.9, 10.2, 31.5, 17.6, 16.3 -4.16,4.16,a-vale-i2,2020-21,Beverly-Centerville Elementary,00300010, 93.6, 10.6, 39.0, 21.3, 5.9 3.977777777777778,3.98,a-vale-i2,2020-21,Beverly-Beverly High,00300505, 89.5, 17.5, 48.5, 33.4, 21.6 +4.293333333333333,4.29,a-vale-i2,2020-21,Beverly-Ayers/Ryal Side School,00300055, 96.6, 5.6, 15.2, 6.4, 2.4 +4.262222222222222,4.26,a-vale-i2,2020-21,Beverly-North Beverly Elementary,00300040, 95.9, 6.7, 21.7, 11.9, 6.9 +4.275555555555556,4.28,a-vale-i2,2020-21,Beverly-Hannah Elementary,00300033, 96.2, 6.4, 24.5, 5.7, 11.1 +4.24,4.24,a-vale-i2,2020-21,Beverly-Cove Elementary,00300015, 95.4, 7.5, 23.6, 13.7, 10.6 +4.16,4.16,a-vale-i2,2020-21,Beverly-Centerville Elementary,00300010, 93.6, 10.6, 39.0, 21.3, 5.9 4.2,4.2,a-vale-i2,2020-21,Beverly-McKeown School,00300002, 94.5, 8.1, 31.3, 19.1, 28.7 +4.173333333333334,4.17,a-vale-i2,2020-21,Beverly-Beverly Middle School,00300305, 93.9, 10.2, 31.5, 17.6, 16.3 +4.164444444444444,4.16,a-vale-i2,2020-21,Billerica-Billerica Memorial High School,00310505, 93.7, 10.4, 36.9, 19.0, 14.2 +4.311111111111111,4.31,a-vale-i2,2020-21,Billerica-Thomas Ditson,00310005, 97.0, 5.0, 13.1, 5.1, 6.2 +4.315555555555555,4.32,a-vale-i2,2020-21,Billerica-Frederick J Dutile,00310007, 97.1, 4.8, 13.5, 7.0, 0.8 4.311111111111111,4.31,a-vale-i2,2020-21,Billerica-John F Kennedy,00310012, 97.0, 5.0, 13.8, 4.8, 6.4 4.306666666666667,4.31,a-vale-i2,2020-21,Billerica-Parker,00310015, 96.9, 5.0, 17.2, 6.9, 2.1 4.266666666666667,4.27,a-vale-i2,2020-21,Billerica-Hajjar Elementary,00310026, 96.0, 6.6, 21.3, 9.4, 12.4 -4.164444444444444,4.16,a-vale-i2,2020-21,Billerica-Billerica Memorial High School,00310505, 93.7, 10.4, 36.9, 19.0, 14.2 -4.28,4.28,a-vale-i2,2020-21,Billerica-Locke Middle,00310310, 96.3, 6.2, 18.6, 7.2, 5.6 -4.311111111111111,4.31,a-vale-i2,2020-21,Billerica-Thomas Ditson,00310005, 97.0, 5.0, 13.1, 5.1, 6.2 -4.315555555555555,4.32,a-vale-i2,2020-21,Billerica-Frederick J Dutile,00310007, 97.1, 4.8, 13.5, 7.0, 0.8 4.262222222222222,4.26,a-vale-i2,2020-21,Billerica-Marshall Middle School,00310305, 95.9, 6.7, 24.1, 10.0, 2.6 +4.28,4.28,a-vale-i2,2020-21,Billerica-Locke Middle,00310310, 96.3, 6.2, 18.6, 7.2, 5.6 4.32,4.32,a-vale-i2,2020-21,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 97.2, 5.1, 15.4, 4.8, 0.2 -4.137777777777777,4.14,a-vale-i2,2020-21,Blackstone-Millville-Blackstone Millville RHS,06220505, 93.1, 13.0, 39.8, 21.4, 13.8 -4.2444444444444445,4.24,a-vale-i2,2020-21,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 95.5, 7.6, 23.0, 10.1, 9.6 -4.302222222222222,4.3,a-vale-i2,2020-21,Blackstone-Millville-A F Maloney,06220015, 96.8, 6.2, 20.5, 6.1, 10.4 4.266666666666667,4.27,a-vale-i2,2020-21,Blackstone-Millville-John F Kennedy Elementary,06220008, 96.0, 7.6, 30.9, 8.4, 23.6 4.235555555555555,4.24,a-vale-i2,2020-21,Blackstone-Millville-Millville Elementary,06220010, 95.3, 8.7, 33.8, 13.0, 17.1 +4.302222222222222,4.3,a-vale-i2,2020-21,Blackstone-Millville-A F Maloney,06220015, 96.8, 6.2, 20.5, 6.1, 10.4 +4.2444444444444445,4.24,a-vale-i2,2020-21,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 95.5, 7.6, 23.0, 10.1, 9.6 +4.137777777777777,4.14,a-vale-i2,2020-21,Blackstone-Millville-Blackstone Millville RHS,06220505, 93.1, 13.0, 39.8, 21.4, 13.8 4.16,4.16,a-vale-i2,2020-21,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 93.6, 10.7, 41.4, 19.7, 17.0 -3.0844444444444448,3.08,a-vale-i2,2020-21,Boston-Carter School,00350036, 69.4, 51.9, 92.3, 84.6, 23.1 -4.071111111111111,4.07,a-vale-i2,2020-21,Boston-Charles Sumner,00350052, 91.6, 13.9, 42.4, 25.8, 2.4 -3.3333333333333335,3.33,a-vale-i2,2020-21,Boston-Excel High School,00350522, 75.0, 40.1, 75.4, 67.6, 39.8 -3.72,3.72,a-vale-i2,2020-21,Boston-Jeremiah E Burke High,00350525, 83.7, 26.2, 51.4, 39.5, 1.0 -4.0,4.0,a-vale-i2,2020-21,Boston-East Boston High,00350530, 90.0, 15.8, 38.1, 29.0, 0.4 -3.3422222222222224,3.34,a-vale-i2,2020-21,Boston-The English High,00350535, 75.2, 39.4, 72.2, 62.7, 10.4 -3.391111111111111,3.39,a-vale-i2,2020-21,Boston-Madison Park High,00350537, 76.3, 38.8, 73.2, 63.4, 22.2 -4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Charles H Taylor,00350054, 93.0, 11.3, 31.5, 23.3, 3.2 -4.195555555555556,4.2,a-vale-i2,2020-21,Boston-Curtis Guild,00350062, 94.4, 9.0, 27.7, 17.5, 1.8 -4.2444444444444445,4.24,a-vale-i2,2020-21,Boston-Dante Alighieri Montessori School,00350066, 95.5, 7.4, 12.4, 7.1, 0.0 -3.8666666666666667,3.87,a-vale-i2,2020-21,Boston-David A Ellis,00350072, 87.0, 20.5, 60.7, 46.3, 1.8 -4.013333333333334,4.01,a-vale-i2,2020-21,Boston-Dearborn,00350074, 90.3, 16.0, 51.2, 35.4, 9.0 -3.968888888888889,3.97,a-vale-i2,2020-21,Boston-Fenway High School,00350540, 89.3, 17.9, 52.3, 39.9, 18.9 -3.897777777777778,3.9,a-vale-i2,2020-21,Boston-Joseph P Tynan,00350181, 87.7, 20.3, 51.4, 40.5, 6.5 -4.177777777777778,4.18,a-vale-i2,2020-21,Boston-Joseph J Hurley,00350182, 94.0, 10.0, 34.1, 17.9, 1.6 -3.968888888888889,3.97,a-vale-i2,2020-21,Boston-Joseph Lee,00350183, 89.3, 17.6, 48.9, 36.6, 0.2 -4.102222222222222,4.1,a-vale-i2,2020-21,Boston-Joseph P Manning,00350184, 92.3, 12.7, 33.7, 21.9, 2.8 -4.2,4.2,a-vale-i2,2020-21,Boston-Joyce Kilmer,00350190, 94.5, 9.1, 20.6, 13.2, 1.9 -4.106666666666667,4.11,a-vale-i2,2020-21,Boston-Harvard-Kent,00350200, 92.4, 12.6, 34.2, 22.2, 5.4 -4.173333333333334,4.17,a-vale-i2,2020-21,Boston-Boston Latin,00350560, 93.9, 10.3, 33.9, 17.0, 2.1 -3.817777777777778,3.82,a-vale-i2,2020-21,Boston-Quincy Upper School,00350565, 85.9, 23.8, 55.5, 44.7, 17.3 -4.306666666666667,4.31,a-vale-i2,2020-21,Boston-O'Bryant School Math/Science,00350575, 96.9, 5.2, 13.4, 7.2, 0.3 -3.408888888888889,3.41,a-vale-i2,2020-21,Boston-Community Academy of Science and Health,00350581, 76.7, 38.0, 64.5, 56.4, 19.5 -4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-George H Conley,00350122, 92.9, 11.7, 36.7, 22.1, 1.0 -4.137777777777777,4.14,a-vale-i2,2020-21,Boston-Henry Grew,00350135, 93.1, 11.3, 35.3, 24.4, 3.6 -3.6622222222222223,3.66,a-vale-i2,2020-21,Boston-O W Holmes,00350138, 82.4, 28.3, 66.8, 53.4, 3.7 -4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-Hugh Roe O'Donnell,00350141, 92.9, 11.6, 37.5, 27.6, 1.8 -3.8355555555555556,3.84,a-vale-i2,2020-21,Boston-Young Achievers,00350380, 86.3, 22.5, 60.7, 44.6, 1.9 -4.173333333333334,4.17,a-vale-i2,2020-21,Boston-Mission Hill School,00350382, 93.9, 10.1, 26.8, 17.9, 0.4 -4.022222222222222,4.02,a-vale-i2,2020-21,Boston-Lilla G. Frederick Middle School,00350383, 90.5, 15.6, 48.7, 33.4, 1.5 -4.057777777777778,4.06,a-vale-i2,2020-21,Boston-Blackstone,00350390, 91.3, 14.2, 45.8, 29.5, 4.7 -4.191111111111111,4.19,a-vale-i2,2020-21,Boston-Dr. William Henderson Upper,00350426, 94.3, 9.5, 29.9, 18.2, 4.9 -3.9555555555555557,3.96,a-vale-i2,2020-21,Boston-Lyon Upper 9-12,00350655, 89.0, 18.1, 45.0, 35.7, 2.9 -4.093333333333333,4.09,a-vale-i2,2020-21,Boston-Condon K-8,00350146, 92.1, 13.0, 40.8, 26.8, 2.2 -4.017777777777778,4.02,a-vale-i2,2020-21,Boston-James W Hennigan,00350153, 90.4, 15.8, 47.8, 33.5, 3.5 -4.04,4.04,a-vale-i2,2020-21,Boston-James J Chittick,00350154, 90.9, 14.6, 42.6, 28.5, 0.4 -3.9377777777777774,3.94,a-vale-i2,2020-21,Boston-Clarence R Edwards Middle,00350430, 88.6, 18.8, 54.1, 39.6, 8.7 -4.013333333333334,4.01,a-vale-i2,2020-21,Boston-Jackson Mann,00350013, 90.3, 15.7, 44.1, 32.9, 5.8 -4.053333333333334,4.05,a-vale-i2,2020-21,Boston-Pauline Agassiz Shaw Elementary School,00350014, 91.2, 14.6, 47.6, 31.5, 3.6 -3.7688888888888887,3.77,a-vale-i2,2020-21,Boston-Higginson,00350015, 84.8, 24.6, 62.7, 46.3, 6.7 -3.902222222222222,3.9,a-vale-i2,2020-21,Boston-Mattahunt Elementary School,00350016, 87.8, 19.7, 56.5, 41.7, 6.2 -3.7244444444444444,3.72,a-vale-i2,2020-21,Boston-Washington Irving Middle,00350445, 83.8, 26.4, 63.0, 50.3, 5.3 -3.7244444444444444,3.72,a-vale-i2,2020-21,Boston-James P Timilty Middle,00350485, 83.8, 26.0, 70.4, 56.8, 9.6 -3.493333333333333,3.49,a-vale-i2,2020-21,Boston-Brighton High,00350505, 78.6, 34.2, 69.4, 59.0, 49.4 -4.071111111111111,4.07,a-vale-i2,2020-21,Boston-Curley K-8 School,00350020, 91.6, 13.9, 37.4, 26.4, 2.8 -4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Beethoven,00350021, 93.0, 11.4, 33.0, 21.9, 3.5 -4.168888888888889,4.17,a-vale-i2,2020-21,Boston-Mario Umana Academy,00350656, 93.8, 10.3, 36.8, 21.2, 1.7 -3.591111111111111,3.59,a-vale-i2,2020-21,Boston-TechBoston Academy,00350657, 80.8, 31.6, 67.2, 55.4, 5.5 -3.6,3.6,a-vale-i2,2020-21,Boston-Snowden International School at Copley,00350690, 81.0, 31.5, 74.9, 59.5, 17.2 -4.137777777777777,4.14,a-vale-i2,2020-21,Boston-Rafael Hernandez,00350691, 93.1, 11.6, 35.7, 22.4, 0.7 -4.248888888888889,4.25,a-vale-i2,2020-21,Boston-James Otis,00350156, 95.6, 7.3, 24.5, 13.6, 1.2 -4.017777777777778,4.02,a-vale-i2,2020-21,Boston-Boston International High School,00350507, 90.4, 15.4, 37.8, 31.7, 12.8 -2.933333333333333,2.93,a-vale-i2,2020-21,Boston-Charlestown High,00350515, 66.0, 54.9, 82.7, 76.5, 1.6 -3.151111111111111,3.15,a-vale-i2,2020-21,Boston-Community Academy,00350518, 70.9, 41.3, 86.9, 82.0, 0.0 -3.9733333333333336,3.97,a-vale-i2,2020-21,Boston-Horace Mann School for the Deaf,00350750, 89.4, 17.0, 58.2, 37.3, 11.9 -2.2577777777777777,2.26,a-vale-i2,2020-21,Boston-Boston Collaborative High School,00350755, 50.8, 73.5, 85.8, 81.4, 0.5 -4.173333333333334,4.17,a-vale-i2,2020-21,Boston-John F Kennedy,00350166, 93.9, 9.9, 32.8, 18.3, 1.4 -3.991111111111111,3.99,a-vale-i2,2020-21,Boston-UP Academy Holland,00350167, 89.8, 17.4, 50.8, 34.9, 6.6 -4.275555555555556,4.28,a-vale-i2,2020-21,Boston-John D Philbrick,00350172, 96.2, 6.4, 18.8, 12.5, 1.8 -3.977777777777778,3.98,a-vale-i2,2020-21,Boston-John W McCormack,00350179, 89.5, 17.3, 49.8, 36.9, 2.3 -3.808888888888889,3.81,a-vale-i2,2020-21,Boston-John Winthrop,00350180, 85.7, 23.2, 63.7, 50.4, 4.7 -4.111111111111111,4.11,a-vale-i2,2020-21,Boston-Paul A Dever,00350268, 92.5, 12.4, 41.2, 25.3, 1.1 -4.08,4.08,a-vale-i2,2020-21,Boston-Phineas Bates,00350278, 91.8, 13.5, 36.3, 23.4, 6.0 -4.373333333333334,4.37,a-vale-i2,2020-21,Boston-Josiah Quincy,00350286, 98.4, 2.6, 6.2, 4.5, 0.3 -4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-Roger Clap,00350298, 92.9, 11.6, 35.2, 25.6, 2.4 -4.097777777777778,4.1,a-vale-i2,2020-21,Boston-Samuel Adams,00350302, 92.2, 12.5, 33.3, 23.3, 5.8 -4.248888888888889,4.25,a-vale-i2,2020-21,Boston-Samuel W Mason,00350304, 95.6, 7.1, 24.2, 13.0, 0.9 -3.9422222222222225,3.94,a-vale-i2,2020-21,Boston-Lee Academy,00350001, 88.7, 18.6, 47.8, 35.9, 11.0 -3.293333333333333,3.29,a-vale-i2,2020-21,Boston-Another Course To College,00350541, 74.1, 41.5, 77.0, 67.7, 0.0 -4.262222222222222,4.26,a-vale-i2,2020-21,Boston-New Mission High School,00350542, 95.9, 6.8, 16.1, 10.0, 0.0 -1.6222222222222222,1.62,a-vale-i2,2020-21,Boston-Greater Egleston Community High School,00350543, 36.5, 91.6, 96.7, 96.7, 62.0 -4.28,4.28,a-vale-i2,2020-21,Boston-Boston Latin Academy,00350545, 96.3, 6.3, 17.2, 9.0, 1.3 -4.0,4.0,a-vale-i2,2020-21,Boston-Boston Arts Academy,00350546, 90.0, 16.8, 50.0, 32.2, 10.8 -2.7688888888888887,2.77,a-vale-i2,2020-21,Boston-Boston Adult Academy,00350548, 62.3, 55.8, 78.6, 70.9, 51.1 -3.9066666666666667,3.91,a-vale-i2,2020-21,Boston-Margarita Muniz Academy,00350549, 87.9, 20.2, 57.5, 42.2, 6.7 -4.124444444444444,4.12,a-vale-i2,2020-21,Boston-Dennis C Haley,00350077, 92.8, 11.9, 35.6, 20.8, 7.2 -4.253333333333334,4.25,a-vale-i2,2020-21,Boston-Donald Mckay,00350080, 95.7, 7.1, 20.8, 11.2, 0.9 -4.222222222222222,4.22,a-vale-i2,2020-21,Boston-Edward Everett,00350088, 95.0, 8.1, 26.4, 16.0, 1.0 -4.413333333333333,4.41,a-vale-i2,2020-21,Boston-Eliot Elementary,00350096, 99.3, 1.2, 2.8, 0.5, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Boston-Ellis Mendell,00350100, 95.3, 7.8, 23.4, 14.9, 2.5 -4.191111111111111,4.19,a-vale-i2,2020-21,Boston-Franklin D Roosevelt,00350116, 94.3, 9.4, 31.7, 18.8, 1.0 -3.8622222222222224,3.86,a-vale-i2,2020-21,Boston-William Monroe Trotter,00350370, 86.9, 21.6, 56.4, 41.6, 7.7 -4.208888888888889,4.21,a-vale-i2,2020-21,Boston-Winship Elementary,00350374, 94.7, 8.5, 29.2, 16.7, 1.3 -4.044444444444444,4.04,a-vale-i2,2020-21,Boston-Edison K-8,00350375, 91.0, 14.5, 43.4, 29.8, 2.0 -3.9377777777777774,3.94,a-vale-i2,2020-21,Boston-King K-8,00350376, 88.6, 18.6, 50.9, 37.2, 1.5 -3.871111111111111,3.87,a-vale-i2,2020-21,Boston-Higginson/Lewis K-8,00350377, 87.1, 21.1, 59.9, 42.3, 2.7 -4.2,4.2,a-vale-i2,2020-21,Boston-Mildred Avenue K-8,00350378, 94.5, 8.9, 25.6, 15.7, 0.3 -4.124444444444444,4.12,a-vale-i2,2020-21,Boston-Baldwin Early Learning Center,00350003, 92.8, 11.7, 29.0, 20.6, 2.6 -4.1466666666666665,4.15,a-vale-i2,2020-21,Boston-Lyon K-8,00350004, 93.3, 11.0, 30.7, 23.6, 0.8 -3.888888888888889,3.89,a-vale-i2,2020-21,Boston-ELC - West Zone,00350006, 87.5, 19.6, 58.3, 42.7, 7.8 -4.102222222222222,4.1,a-vale-i2,2020-21,Boston-Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 92.3, 12.6, 36.0, 24.7, 3.8 -4.08,4.08,a-vale-i2,2020-21,Boston-East Boston Early Childhood Center,00350009, 91.8, 13.5, 39.5, 23.6, 1.0 -3.826666666666666,3.83,a-vale-i2,2020-21,Boston-Haynes Early Education Center,00350010, 86.1, 22.7, 54.6, 43.3, 5.2 -4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Boston Teachers Union School,00350012, 93.0, 11.7, 28.7, 18.4, 1.4 -3.9066666666666667,3.91,a-vale-i2,2020-21,Boston-Boston Community Leadership Academy,00350558, 87.9, 20.0, 51.8, 39.0, 16.9 -3.9155555555555552,3.92,a-vale-i2,2020-21,Boston-Sarah Greenwood,00350308, 88.1, 19.6, 52.5, 39.0, 4.0 -4.262222222222222,4.26,a-vale-i2,2020-21,Boston-Gardner Pilot Academy,00350326, 95.9, 6.9, 22.9, 12.8, 2.1 -4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Thomas J Kenny,00350328, 93.0, 11.3, 32.3, 21.8, 0.6 -4.217777777777778,4.22,a-vale-i2,2020-21,Boston-Warren-Prescott,00350346, 94.9, 8.4, 22.0, 14.2, 2.9 -4.088888888888889,4.09,a-vale-i2,2020-21,Boston-William Ellery Channing,00350360, 92.0, 12.9, 37.4, 27.4, 1.3 -3.0622222222222226,3.06,a-vale-i2,2020-21,Boston-William McKinley,00350363, 68.9, 50.3, 79.6, 67.5, 19.2 -3.986666666666667,3.99,a-vale-i2,2020-21,Boston-William E Russell,00350366, 89.7, 16.8, 42.2, 30.3, 1.6 4.248888888888889,4.25,a-vale-i2,2020-21,Boston-Manassah E Bradley,00350215, 95.6, 7.2, 25.6, 12.9, 2.6 4.093333333333333,4.09,a-vale-i2,2020-21,Boston-Mather,00350227, 92.1, 12.7, 35.0, 24.3, 2.8 4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-Maurice J Tobin,00350229, 92.9, 11.6, 36.6, 21.6, 1.7 @@ -11318,41 +11216,156 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.302222222222222,4.3,a-vale-i2,2020-21,Boston-Lyndon,00350262, 96.8, 5.2, 10.9, 6.1, 0.5 4.137777777777777,4.14,a-vale-i2,2020-21,Boston-Patrick J Kennedy,00350264, 93.1, 11.3, 34.4, 21.8, 3.5 4.2444444444444445,4.24,a-vale-i2,2020-21,Boston-Dr. William Henderson Lower,00350266, 95.5, 7.3, 25.0, 13.9, 0.9 +4.111111111111111,4.11,a-vale-i2,2020-21,Boston-Paul A Dever,00350268, 92.5, 12.4, 41.2, 25.3, 1.1 +4.08,4.08,a-vale-i2,2020-21,Boston-Phineas Bates,00350278, 91.8, 13.5, 36.3, 23.4, 6.0 +4.373333333333334,4.37,a-vale-i2,2020-21,Boston-Josiah Quincy,00350286, 98.4, 2.6, 6.2, 4.5, 0.3 +4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-Roger Clap,00350298, 92.9, 11.6, 35.2, 25.6, 2.4 +3.9066666666666667,3.91,a-vale-i2,2020-21,Boston-Boston Community Leadership Academy,00350558, 87.9, 20.0, 51.8, 39.0, 16.9 +4.173333333333334,4.17,a-vale-i2,2020-21,Boston-Boston Latin,00350560, 93.9, 10.3, 33.9, 17.0, 2.1 +3.817777777777778,3.82,a-vale-i2,2020-21,Boston-Quincy Upper School,00350565, 85.9, 23.8, 55.5, 44.7, 17.3 +4.306666666666667,4.31,a-vale-i2,2020-21,Boston-O'Bryant School Math/Science,00350575, 96.9, 5.2, 13.4, 7.2, 0.3 +3.408888888888889,3.41,a-vale-i2,2020-21,Boston-Community Academy of Science and Health,00350581, 76.7, 38.0, 64.5, 56.4, 19.5 +3.9555555555555557,3.96,a-vale-i2,2020-21,Boston-Lyon Upper 9-12,00350655, 89.0, 18.1, 45.0, 35.7, 2.9 +4.168888888888889,4.17,a-vale-i2,2020-21,Boston-Mario Umana Academy,00350656, 93.8, 10.3, 36.8, 21.2, 1.7 +4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-Hugh Roe O'Donnell,00350141, 92.9, 11.6, 37.5, 27.6, 1.8 +4.093333333333333,4.09,a-vale-i2,2020-21,Boston-Condon K-8,00350146, 92.1, 13.0, 40.8, 26.8, 2.2 +4.017777777777778,4.02,a-vale-i2,2020-21,Boston-James W Hennigan,00350153, 90.4, 15.8, 47.8, 33.5, 3.5 +4.04,4.04,a-vale-i2,2020-21,Boston-James J Chittick,00350154, 90.9, 14.6, 42.6, 28.5, 0.4 +4.248888888888889,4.25,a-vale-i2,2020-21,Boston-James Otis,00350156, 95.6, 7.3, 24.5, 13.6, 1.2 +4.173333333333334,4.17,a-vale-i2,2020-21,Boston-John F Kennedy,00350166, 93.9, 9.9, 32.8, 18.3, 1.4 +3.991111111111111,3.99,a-vale-i2,2020-21,Boston-UP Academy Holland,00350167, 89.8, 17.4, 50.8, 34.9, 6.6 +4.275555555555556,4.28,a-vale-i2,2020-21,Boston-John D Philbrick,00350172, 96.2, 6.4, 18.8, 12.5, 1.8 +3.977777777777778,3.98,a-vale-i2,2020-21,Boston-John W McCormack,00350179, 89.5, 17.3, 49.8, 36.9, 2.3 +3.808888888888889,3.81,a-vale-i2,2020-21,Boston-John Winthrop,00350180, 85.7, 23.2, 63.7, 50.4, 4.7 +3.897777777777778,3.9,a-vale-i2,2020-21,Boston-Joseph P Tynan,00350181, 87.7, 20.3, 51.4, 40.5, 6.5 +4.177777777777778,4.18,a-vale-i2,2020-21,Boston-Joseph J Hurley,00350182, 94.0, 10.0, 34.1, 17.9, 1.6 +3.968888888888889,3.97,a-vale-i2,2020-21,Boston-Joseph Lee,00350183, 89.3, 17.6, 48.9, 36.6, 0.2 +3.9377777777777774,3.94,a-vale-i2,2020-21,Boston-Clarence R Edwards Middle,00350430, 88.6, 18.8, 54.1, 39.6, 8.7 +3.7244444444444444,3.72,a-vale-i2,2020-21,Boston-Washington Irving Middle,00350445, 83.8, 26.4, 63.0, 50.3, 5.3 +3.7244444444444444,3.72,a-vale-i2,2020-21,Boston-James P Timilty Middle,00350485, 83.8, 26.0, 70.4, 56.8, 9.6 +3.493333333333333,3.49,a-vale-i2,2020-21,Boston-Brighton High,00350505, 78.6, 34.2, 69.4, 59.0, 49.4 +4.017777777777778,4.02,a-vale-i2,2020-21,Boston-Boston International High School,00350507, 90.4, 15.4, 37.8, 31.7, 12.8 +2.933333333333333,2.93,a-vale-i2,2020-21,Boston-Charlestown High,00350515, 66.0, 54.9, 82.7, 76.5, 1.6 +3.151111111111111,3.15,a-vale-i2,2020-21,Boston-Community Academy,00350518, 70.9, 41.3, 86.9, 82.0, 0.0 +3.3333333333333335,3.33,a-vale-i2,2020-21,Boston-Excel High School,00350522, 75.0, 40.1, 75.4, 67.6, 39.8 +3.72,3.72,a-vale-i2,2020-21,Boston-Jeremiah E Burke High,00350525, 83.7, 26.2, 51.4, 39.5, 1.0 +4.0,4.0,a-vale-i2,2020-21,Boston-East Boston High,00350530, 90.0, 15.8, 38.1, 29.0, 0.4 +4.222222222222222,4.22,a-vale-i2,2020-21,Boston-Edward Everett,00350088, 95.0, 8.1, 26.4, 16.0, 1.0 +4.413333333333333,4.41,a-vale-i2,2020-21,Boston-Eliot Elementary,00350096, 99.3, 1.2, 2.8, 0.5, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Boston-Ellis Mendell,00350100, 95.3, 7.8, 23.4, 14.9, 2.5 +4.191111111111111,4.19,a-vale-i2,2020-21,Boston-Franklin D Roosevelt,00350116, 94.3, 9.4, 31.7, 18.8, 1.0 +4.1288888888888895,4.13,a-vale-i2,2020-21,Boston-George H Conley,00350122, 92.9, 11.7, 36.7, 22.1, 1.0 +4.137777777777777,4.14,a-vale-i2,2020-21,Boston-Henry Grew,00350135, 93.1, 11.3, 35.3, 24.4, 3.6 +3.6622222222222223,3.66,a-vale-i2,2020-21,Boston-O W Holmes,00350138, 82.4, 28.3, 66.8, 53.4, 3.7 +3.9422222222222225,3.94,a-vale-i2,2020-21,Boston-Lee Academy,00350001, 88.7, 18.6, 47.8, 35.9, 11.0 +4.124444444444444,4.12,a-vale-i2,2020-21,Boston-Baldwin Early Learning Center,00350003, 92.8, 11.7, 29.0, 20.6, 2.6 +4.1466666666666665,4.15,a-vale-i2,2020-21,Boston-Lyon K-8,00350004, 93.3, 11.0, 30.7, 23.6, 0.8 +3.591111111111111,3.59,a-vale-i2,2020-21,Boston-TechBoston Academy,00350657, 80.8, 31.6, 67.2, 55.4, 5.5 +3.6,3.6,a-vale-i2,2020-21,Boston-Snowden International School at Copley,00350690, 81.0, 31.5, 74.9, 59.5, 17.2 +4.137777777777777,4.14,a-vale-i2,2020-21,Boston-Rafael Hernandez,00350691, 93.1, 11.6, 35.7, 22.4, 0.7 +3.9733333333333336,3.97,a-vale-i2,2020-21,Boston-Horace Mann School for the Deaf,00350750, 89.4, 17.0, 58.2, 37.3, 11.9 +2.2577777777777777,2.26,a-vale-i2,2020-21,Boston-Boston Collaborative High School,00350755, 50.8, 73.5, 85.8, 81.4, 0.5 +3.888888888888889,3.89,a-vale-i2,2020-21,Boston-ELC - West Zone,00350006, 87.5, 19.6, 58.3, 42.7, 7.8 +4.102222222222222,4.1,a-vale-i2,2020-21,Boston-Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 92.3, 12.6, 36.0, 24.7, 3.8 +4.08,4.08,a-vale-i2,2020-21,Boston-East Boston Early Childhood Center,00350009, 91.8, 13.5, 39.5, 23.6, 1.0 +3.826666666666666,3.83,a-vale-i2,2020-21,Boston-Haynes Early Education Center,00350010, 86.1, 22.7, 54.6, 43.3, 5.2 +4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Boston Teachers Union School,00350012, 93.0, 11.7, 28.7, 18.4, 1.4 +4.013333333333334,4.01,a-vale-i2,2020-21,Boston-Jackson Mann,00350013, 90.3, 15.7, 44.1, 32.9, 5.8 +4.053333333333334,4.05,a-vale-i2,2020-21,Boston-Pauline Agassiz Shaw Elementary School,00350014, 91.2, 14.6, 47.6, 31.5, 3.6 +4.097777777777778,4.1,a-vale-i2,2020-21,Boston-Samuel Adams,00350302, 92.2, 12.5, 33.3, 23.3, 5.8 +4.248888888888889,4.25,a-vale-i2,2020-21,Boston-Samuel W Mason,00350304, 95.6, 7.1, 24.2, 13.0, 0.9 +3.9155555555555552,3.92,a-vale-i2,2020-21,Boston-Sarah Greenwood,00350308, 88.1, 19.6, 52.5, 39.0, 4.0 +4.262222222222222,4.26,a-vale-i2,2020-21,Boston-Gardner Pilot Academy,00350326, 95.9, 6.9, 22.9, 12.8, 2.1 +4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Thomas J Kenny,00350328, 93.0, 11.3, 32.3, 21.8, 0.6 +4.217777777777778,4.22,a-vale-i2,2020-21,Boston-Warren-Prescott,00350346, 94.9, 8.4, 22.0, 14.2, 2.9 +4.088888888888889,4.09,a-vale-i2,2020-21,Boston-William Ellery Channing,00350360, 92.0, 12.9, 37.4, 27.4, 1.3 +3.0622222222222226,3.06,a-vale-i2,2020-21,Boston-William McKinley,00350363, 68.9, 50.3, 79.6, 67.5, 19.2 +3.986666666666667,3.99,a-vale-i2,2020-21,Boston-William E Russell,00350366, 89.7, 16.8, 42.2, 30.3, 1.6 +3.8622222222222224,3.86,a-vale-i2,2020-21,Boston-William Monroe Trotter,00350370, 86.9, 21.6, 56.4, 41.6, 7.7 +4.208888888888889,4.21,a-vale-i2,2020-21,Boston-Winship Elementary,00350374, 94.7, 8.5, 29.2, 16.7, 1.3 +4.044444444444444,4.04,a-vale-i2,2020-21,Boston-Edison K-8,00350375, 91.0, 14.5, 43.4, 29.8, 2.0 +3.9377777777777774,3.94,a-vale-i2,2020-21,Boston-King K-8,00350376, 88.6, 18.6, 50.9, 37.2, 1.5 +3.871111111111111,3.87,a-vale-i2,2020-21,Boston-Higginson/Lewis K-8,00350377, 87.1, 21.1, 59.9, 42.3, 2.7 +4.2,4.2,a-vale-i2,2020-21,Boston-Mildred Avenue K-8,00350378, 94.5, 8.9, 25.6, 15.7, 0.3 +3.8355555555555556,3.84,a-vale-i2,2020-21,Boston-Young Achievers,00350380, 86.3, 22.5, 60.7, 44.6, 1.9 +4.173333333333334,4.17,a-vale-i2,2020-21,Boston-Mission Hill School,00350382, 93.9, 10.1, 26.8, 17.9, 0.4 +4.022222222222222,4.02,a-vale-i2,2020-21,Boston-Lilla G. Frederick Middle School,00350383, 90.5, 15.6, 48.7, 33.4, 1.5 +4.057777777777778,4.06,a-vale-i2,2020-21,Boston-Blackstone,00350390, 91.3, 14.2, 45.8, 29.5, 4.7 +3.7688888888888887,3.77,a-vale-i2,2020-21,Boston-Higginson,00350015, 84.8, 24.6, 62.7, 46.3, 6.7 +3.902222222222222,3.9,a-vale-i2,2020-21,Boston-Mattahunt Elementary School,00350016, 87.8, 19.7, 56.5, 41.7, 6.2 +4.071111111111111,4.07,a-vale-i2,2020-21,Boston-Curley K-8 School,00350020, 91.6, 13.9, 37.4, 26.4, 2.8 +4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Beethoven,00350021, 93.0, 11.4, 33.0, 21.9, 3.5 +3.0844444444444448,3.08,a-vale-i2,2020-21,Boston-Carter School,00350036, 69.4, 51.9, 92.3, 84.6, 23.1 +4.071111111111111,4.07,a-vale-i2,2020-21,Boston-Charles Sumner,00350052, 91.6, 13.9, 42.4, 25.8, 2.4 +4.133333333333334,4.13,a-vale-i2,2020-21,Boston-Charles H Taylor,00350054, 93.0, 11.3, 31.5, 23.3, 3.2 +4.195555555555556,4.2,a-vale-i2,2020-21,Boston-Curtis Guild,00350062, 94.4, 9.0, 27.7, 17.5, 1.8 +4.2444444444444445,4.24,a-vale-i2,2020-21,Boston-Dante Alighieri Montessori School,00350066, 95.5, 7.4, 12.4, 7.1, 0.0 +3.8666666666666667,3.87,a-vale-i2,2020-21,Boston-David A Ellis,00350072, 87.0, 20.5, 60.7, 46.3, 1.8 +4.013333333333334,4.01,a-vale-i2,2020-21,Boston-Dearborn,00350074, 90.3, 16.0, 51.2, 35.4, 9.0 +4.124444444444444,4.12,a-vale-i2,2020-21,Boston-Dennis C Haley,00350077, 92.8, 11.9, 35.6, 20.8, 7.2 +4.253333333333334,4.25,a-vale-i2,2020-21,Boston-Donald Mckay,00350080, 95.7, 7.1, 20.8, 11.2, 0.9 +4.191111111111111,4.19,a-vale-i2,2020-21,Boston-Dr. William Henderson Upper,00350426, 94.3, 9.5, 29.9, 18.2, 4.9 +4.102222222222222,4.1,a-vale-i2,2020-21,Boston-Joseph P Manning,00350184, 92.3, 12.7, 33.7, 21.9, 2.8 +4.2,4.2,a-vale-i2,2020-21,Boston-Joyce Kilmer,00350190, 94.5, 9.1, 20.6, 13.2, 1.9 +3.3422222222222224,3.34,a-vale-i2,2020-21,Boston-The English High,00350535, 75.2, 39.4, 72.2, 62.7, 10.4 +3.391111111111111,3.39,a-vale-i2,2020-21,Boston-Madison Park High,00350537, 76.3, 38.8, 73.2, 63.4, 22.2 +3.968888888888889,3.97,a-vale-i2,2020-21,Boston-Fenway High School,00350540, 89.3, 17.9, 52.3, 39.9, 18.9 +3.293333333333333,3.29,a-vale-i2,2020-21,Boston-Another Course To College,00350541, 74.1, 41.5, 77.0, 67.7, 0.0 +4.262222222222222,4.26,a-vale-i2,2020-21,Boston-New Mission High School,00350542, 95.9, 6.8, 16.1, 10.0, 0.0 +1.6222222222222222,1.62,a-vale-i2,2020-21,Boston-Greater Egleston Community High School,00350543, 36.5, 91.6, 96.7, 96.7, 62.0 +4.28,4.28,a-vale-i2,2020-21,Boston-Boston Latin Academy,00350545, 96.3, 6.3, 17.2, 9.0, 1.3 +4.0,4.0,a-vale-i2,2020-21,Boston-Boston Arts Academy,00350546, 90.0, 16.8, 50.0, 32.2, 10.8 +2.7688888888888887,2.77,a-vale-i2,2020-21,Boston-Boston Adult Academy,00350548, 62.3, 55.8, 78.6, 70.9, 51.1 +3.9066666666666667,3.91,a-vale-i2,2020-21,Boston-Margarita Muniz Academy,00350549, 87.9, 20.2, 57.5, 42.2, 6.7 +4.106666666666667,4.11,a-vale-i2,2020-21,Boston-Harvard-Kent,00350200, 92.4, 12.6, 34.2, 22.2, 5.4 4.106666666666667,4.11,a-vale-i2,2020-21,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 92.4, 12.8, 38.7, 25.1, 2.5 1.4844444444444445,1.48,a-vale-i2,2020-21,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 33.4, 99.3, 98.6, 98.9, 0.0 3.804444444444444,3.8,a-vale-i2,2020-21,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 85.6, 24.1, 58.6, 46.2, 9.8 4.08,4.08,a-vale-i2,2020-21,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 91.8, 14.3, 37.1, 24.8, 0.0 4.08,4.08,a-vale-i2,2020-21,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 91.8, 13.6, 40.3, 25.2, 40.3 +4.133333333333334,4.13,a-vale-i2,2020-21,Bourne-Bournedale Elementary School,00360005, 93.0, 10.8, 41.0, 23.8, 8.7 3.986666666666667,3.99,a-vale-i2,2020-21,Bourne-Bourne High School,00360505, 89.7, 16.9, 33.1, 21.6, 25.8 4.191111111111111,4.19,a-vale-i2,2020-21,Bourne-Bourne Intermediate School,00360030, 94.3, 9.2, 31.7, 18.9, 0.5 -4.133333333333334,4.13,a-vale-i2,2020-21,Bourne-Bournedale Elementary School,00360005, 93.0, 10.8, 41.0, 23.8, 8.7 4.062222222222222,4.06,a-vale-i2,2020-21,Bourne-Bourne Middle School,00360325, 91.4, 14.1, 46.0, 31.7, 32.5 4.337777777777777,4.34,a-vale-i2,2020-21,Boxford-Harry Lee Cole,00380005, 97.6, 3.9, 8.0, 2.0, 3.7 4.342222222222222,4.34,a-vale-i2,2020-21,Boxford-Spofford Pond,00380013, 97.7, 3.7, 9.4, 2.5, 4.6 -4.235555555555555,4.24,a-vale-i2,2020-21,Braintree-Braintree High,00400505, 95.3, 7.7, 24.7, 11.4, 0.0 -4.346666666666667,4.35,a-vale-i2,2020-21,Braintree-Hollis,00400005, 97.8, 3.7, 9.4, 3.9, 0.0 -4.253333333333334,4.25,a-vale-i2,2020-21,Braintree-Monatiquot Kindergarten Center,00400009, 95.7, 6.9, 19.9, 11.3, 0.0 -4.351111111111111,4.35,a-vale-i2,2020-21,Braintree-Highlands,00400015, 97.9, 3.4, 8.5, 2.3, 0.0 -4.311111111111111,4.31,a-vale-i2,2020-21,Braintree-Mary E Flaherty School,00400020, 97.0, 4.9, 12.8, 5.6, 0.0 -4.364444444444445,4.36,a-vale-i2,2020-21,Braintree-Liberty,00400025, 98.2, 3.0, 5.6, 1.2, 0.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Braintree-Archie T Morrison,00400033, 96.6, 5.6, 20.4, 11.0, 0.0 4.328888888888889,4.33,a-vale-i2,2020-21,Braintree-Donald Ross,00400050, 97.4, 4.3, 10.3, 5.4, 0.0 4.208888888888889,4.21,a-vale-i2,2020-21,Braintree-East Middle School,00400305, 94.7, 8.7, 31.4, 18.1, 0.0 4.217777777777778,4.22,a-vale-i2,2020-21,Braintree-South Middle School,00400310, 94.9, 8.5, 28.1, 12.3, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Brewster-Stony Brook Elementary,00410005, 94.9, 8.5, 34.2, 14.9, 6.3 +4.235555555555555,4.24,a-vale-i2,2020-21,Braintree-Braintree High,00400505, 95.3, 7.7, 24.7, 11.4, 0.0 +4.293333333333333,4.29,a-vale-i2,2020-21,Braintree-Archie T Morrison,00400033, 96.6, 5.6, 20.4, 11.0, 0.0 +4.351111111111111,4.35,a-vale-i2,2020-21,Braintree-Highlands,00400015, 97.9, 3.4, 8.5, 2.3, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Braintree-Hollis,00400005, 97.8, 3.7, 9.4, 3.9, 0.0 +4.364444444444445,4.36,a-vale-i2,2020-21,Braintree-Liberty,00400025, 98.2, 3.0, 5.6, 1.2, 0.0 +4.311111111111111,4.31,a-vale-i2,2020-21,Braintree-Mary E Flaherty School,00400020, 97.0, 4.9, 12.8, 5.6, 0.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Braintree-Monatiquot Kindergarten Center,00400009, 95.7, 6.9, 19.9, 11.3, 0.0 4.226666666666667,4.23,a-vale-i2,2020-21,Brewster-Eddy Elementary,00410010, 95.1, 8.5, 33.5, 10.8, 6.1 +4.217777777777778,4.22,a-vale-i2,2020-21,Brewster-Stony Brook Elementary,00410005, 94.9, 8.5, 34.2, 14.9, 6.3 4.173333333333334,4.17,a-vale-i2,2020-21,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 93.9, 10.3, 37.5, 18.9, 3.2 -4.253333333333334,4.25,a-vale-i2,2020-21,Bridgewater-Raynham-Raynham Middle School,06250315, 95.7, 7.7, 22.6, 8.9, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 95.3, 8.2, 23.5, 9.6, 0.0 -4.32,4.32,a-vale-i2,2020-21,Bridgewater-Raynham-Laliberte Elementary School,06250050, 97.2, 4.9, 13.4, 5.5, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Bridgewater-Raynham-Merrill Elementary School,06250020, 96.9, 5.3, 13.5, 6.1, 0.0 -4.164444444444444,4.16,a-vale-i2,2020-21,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.7, 10.6, 37.9, 18.7, 0.0 -3.8222222222222224,3.82,a-vale-i2,2020-21,Bridgewater-Raynham-Therapeutic Day School,06250415, 86.0, 24.8, 38.5, 15.4, 0.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Bridgewater-Raynham-Mitchell Elementary School,06250002, 96.9, 5.2, 15.0, 5.6, 0.0 +4.32,4.32,a-vale-i2,2020-21,Bridgewater-Raynham-Laliberte Elementary School,06250050, 97.2, 4.9, 13.4, 5.5, 0.0 4.266666666666667,4.27,a-vale-i2,2020-21,Bridgewater-Raynham-Williams Intermediate School,06250300, 96.0, 6.6, 21.5, 9.7, 0.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Bridgewater-Raynham-Raynham Middle School,06250315, 95.7, 7.7, 22.6, 8.9, 0.0 +4.306666666666667,4.31,a-vale-i2,2020-21,Bridgewater-Raynham-Mitchell Elementary School,06250002, 96.9, 5.2, 15.0, 5.6, 0.0 +4.164444444444444,4.16,a-vale-i2,2020-21,Bridgewater-Raynham-Bridgewater Middle School,06250320, 93.7, 10.6, 37.9, 18.7, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 95.3, 8.2, 23.5, 9.6, 0.0 +3.8222222222222224,3.82,a-vale-i2,2020-21,Bridgewater-Raynham-Therapeutic Day School,06250415, 86.0, 24.8, 38.5, 15.4, 0.0 4.333333333333333,4.33,a-vale-i2,2020-21,Brimfield-Brimfield Elementary,00430005, 97.5, 4.2, 9.2, 4.8, 3.7 4.311111111111111,4.31,a-vale-i2,2020-21,Bristol County Agricultural-Bristol County Agricultural High,09100705, 97.0, 5.1, 14.8, 5.4, 2.7 4.097777777777778,4.1,a-vale-i2,2020-21,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 92.2, 13.1, 46.3, 24.6, 24.1 +4.142222222222222,4.14,a-vale-i2,2020-21,Brockton-Brookfield,00440010, 93.2, 11.2, 34.9, 21.8, 0.0 +3.488888888888889,3.49,a-vale-i2,2020-21,Brockton-Barrett Russell Early Childhood Center,00440008, 78.5, 27.7, 55.2, 51.6, 0.0 +4.16,4.16,a-vale-i2,2020-21,Brockton-Manthala George Jr. School,00440003, 93.6, 10.6, 38.9, 22.0, 0.0 +4.16,4.16,a-vale-i2,2020-21,Brockton-Mary E. Baker School,00440002, 93.6, 10.3, 36.0, 19.9, 0.0 +4.08,4.08,a-vale-i2,2020-21,Brockton-Dr W Arnone Community School,00440001, 91.8, 13.3, 41.4, 27.5, 0.0 +3.271111111111111,3.27,a-vale-i2,2020-21,Brockton-Edison Academy,00440520, 73.6, 25.7, 72.8, 72.2, 0.0 +3.24,3.24,a-vale-i2,2020-21,Brockton-Brockton Champion High School,00440515, 72.9, 39.9, 64.0, 57.0, 0.0 +4.0311111111111115,4.03,a-vale-i2,2020-21,Brockton-Brockton High,00440505, 90.7, 15.2, 45.7, 32.8, 0.0 +4.217777777777778,4.22,a-vale-i2,2020-21,Brockton-Joseph F. Plouffe Academy,00440422, 94.9, 8.5, 24.2, 14.2, 0.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Brockton-Ashfield Middle School,00440421, 93.8, 10.2, 30.9, 20.5, 0.0 +4.1866666666666665,4.19,a-vale-i2,2020-21,Brockton-West Middle School,00440420, 94.2, 9.6, 23.7, 14.7, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Brockton-South Middle School,00440415, 95.3, 7.7, 22.4, 12.4, 0.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Brockton-North Middle School,00440410, 95.1, 8.1, 28.9, 12.7, 0.0 4.155555555555556,4.16,a-vale-i2,2020-21,Brockton-East Middle School,00440405, 93.5, 10.9, 31.5, 20.2, 0.0 3.631111111111111,3.63,a-vale-i2,2020-21,Brockton-Huntington Therapeutic Day School,00440400, 81.7, 28.8, 78.1, 67.2, 0.0 3.804444444444444,3.8,a-vale-i2,2020-21,Brockton-Downey,00440110, 85.6, 23.3, 63.9, 50.2, 0.0 @@ -11361,75 +11374,63 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.084444444444444,4.08,a-vale-i2,2020-21,Brockton-Louis F Angelo Elementary,00440065, 91.9, 13.1, 38.5, 28.1, 0.0 4.151111111111112,4.15,a-vale-i2,2020-21,Brockton-Gilmore Elementary School,00440055, 93.4, 10.6, 34.2, 21.7, 0.0 4.168888888888889,4.17,a-vale-i2,2020-21,Brockton-Hancock,00440045, 93.8, 10.2, 31.8, 20.8, 0.0 -4.168888888888889,4.17,a-vale-i2,2020-21,Brockton-Edgar B Davis,00440023, 93.8, 10.1, 32.3, 17.3, 0.0 4.182222222222222,4.18,a-vale-i2,2020-21,Brockton-John F Kennedy,00440017, 94.1, 9.7, 33.8, 19.4, 0.0 -4.142222222222222,4.14,a-vale-i2,2020-21,Brockton-Brookfield,00440010, 93.2, 11.2, 34.9, 21.8, 0.0 -3.488888888888889,3.49,a-vale-i2,2020-21,Brockton-Barrett Russell Early Childhood Center,00440008, 78.5, 27.7, 55.2, 51.6, 0.0 -4.16,4.16,a-vale-i2,2020-21,Brockton-Manthala George Jr. School,00440003, 93.6, 10.6, 38.9, 22.0, 0.0 -4.16,4.16,a-vale-i2,2020-21,Brockton-Mary E. Baker School,00440002, 93.6, 10.3, 36.0, 19.9, 0.0 -4.226666666666667,4.23,a-vale-i2,2020-21,Brockton-North Middle School,00440410, 95.1, 8.1, 28.9, 12.7, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Brockton-South Middle School,00440415, 95.3, 7.7, 22.4, 12.4, 0.0 -4.1866666666666665,4.19,a-vale-i2,2020-21,Brockton-West Middle School,00440420, 94.2, 9.6, 23.7, 14.7, 0.0 -4.168888888888889,4.17,a-vale-i2,2020-21,Brockton-Ashfield Middle School,00440421, 93.8, 10.2, 30.9, 20.5, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Brockton-Joseph F. Plouffe Academy,00440422, 94.9, 8.5, 24.2, 14.2, 0.0 -4.0311111111111115,4.03,a-vale-i2,2020-21,Brockton-Brockton High,00440505, 90.7, 15.2, 45.7, 32.8, 0.0 -3.24,3.24,a-vale-i2,2020-21,Brockton-Brockton Champion High School,00440515, 72.9, 39.9, 64.0, 57.0, 0.0 -3.271111111111111,3.27,a-vale-i2,2020-21,Brockton-Edison Academy,00440520, 73.6, 25.7, 72.8, 72.2, 0.0 -4.08,4.08,a-vale-i2,2020-21,Brockton-Dr W Arnone Community School,00440001, 91.8, 13.3, 41.4, 27.5, 0.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Brockton-Edgar B Davis,00440023, 93.8, 10.1, 32.3, 17.3, 0.0 4.2444444444444445,4.24,a-vale-i2,2020-21,Brooke Charter School (District)-Brooke Charter School,04280305, 95.5, 8.0, 22.1, 11.1, 13.6 4.315555555555555,4.32,a-vale-i2,2020-21,Brookfield-Brookfield Elementary,00450005, 97.1, 4.9, 15.9, 4.8, 4.8 4.155555555555556,4.16,a-vale-i2,2020-21,Brookline-Brookline Early Education Program at Beacon,00460001, 93.5, 10.3, 22.2, 22.2, 22.2 +4.213333333333333,4.21,a-vale-i2,2020-21,Brookline-Brookline Early Education Program at Putterham,00460002, 94.8, 7.9, 35.0, 17.5, 35.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Brookline-Brookline Early Education Program at Clark Road,00460003, 95.3, 7.6, 28.9, 13.2, 28.9 +4.297777777777778,4.3,a-vale-i2,2020-21,Brookline-Edith C Baker,00460005, 96.7, 5.3, 14.6, 7.0, 3.8 +4.271111111111111,4.27,a-vale-i2,2020-21,Brookline-Florida Ruffin Ridley School,00460015, 96.1, 6.4, 16.5, 10.6, 7.1 +4.315555555555555,4.32,a-vale-i2,2020-21,Brookline-Michael Driscoll,00460020, 97.1, 4.7, 13.6, 6.1, 5.3 +4.306666666666667,4.31,a-vale-i2,2020-21,Brookline-Heath,00460025, 96.9, 5.2, 14.1, 5.7, 4.3 +4.351111111111111,4.35,a-vale-i2,2020-21,Brookline-Lawrence,00460030, 97.9, 3.4, 6.5, 3.4, 1.0 +4.2844444444444445,4.28,a-vale-i2,2020-21,Brookline-William H Lincoln,00460035, 96.4, 5.9, 17.0, 8.8, 3.2 +4.315555555555555,4.32,a-vale-i2,2020-21,Brookline-Pierce,00460040, 97.1, 4.6, 12.0, 6.3, 1.5 +4.2844444444444445,4.28,a-vale-i2,2020-21,Brookline-John D Runkle,00460045, 96.4, 5.9, 16.3, 7.7, 2.9 4.391111111111111,4.39,a-vale-i2,2020-21,Brookline-Brookline High,00460505, 98.8, 2.0, 2.5, 1.6, 0.1 4.035555555555556,4.04,a-vale-i2,2020-21,Brookline-The Lynch Center,00460060, 90.8, 15.1, 52.6, 31.6, 52.6 -4.2844444444444445,4.28,a-vale-i2,2020-21,Brookline-John D Runkle,00460045, 96.4, 5.9, 16.3, 7.7, 2.9 -4.315555555555555,4.32,a-vale-i2,2020-21,Brookline-Pierce,00460040, 97.1, 4.6, 12.0, 6.3, 1.5 -4.2844444444444445,4.28,a-vale-i2,2020-21,Brookline-William H Lincoln,00460035, 96.4, 5.9, 17.0, 8.8, 3.2 -4.213333333333333,4.21,a-vale-i2,2020-21,Brookline-Brookline Early Education Program at Putterham,00460002, 94.8, 7.9, 35.0, 17.5, 35.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Brookline-Heath,00460025, 96.9, 5.2, 14.1, 5.7, 4.3 -4.315555555555555,4.32,a-vale-i2,2020-21,Brookline-Michael Driscoll,00460020, 97.1, 4.7, 13.6, 6.1, 5.3 -4.271111111111111,4.27,a-vale-i2,2020-21,Brookline-Florida Ruffin Ridley School,00460015, 96.1, 6.4, 16.5, 10.6, 7.1 -4.297777777777778,4.3,a-vale-i2,2020-21,Brookline-Edith C Baker,00460005, 96.7, 5.3, 14.6, 7.0, 3.8 -4.235555555555555,4.24,a-vale-i2,2020-21,Brookline-Brookline Early Education Program at Clark Road,00460003, 95.3, 7.6, 28.9, 13.2, 28.9 -4.351111111111111,4.35,a-vale-i2,2020-21,Brookline-Lawrence,00460030, 97.9, 3.4, 6.5, 3.4, 1.0 -4.288888888888889,4.29,a-vale-i2,2020-21,Burlington-Marshall Simonds Middle,00480303, 96.5, 5.8, 16.9, 7.1, 1.2 -4.226666666666667,4.23,a-vale-i2,2020-21,Burlington-Burlington High,00480505, 95.1, 8.0, 21.4, 12.4, 5.2 4.3244444444444445,4.32,a-vale-i2,2020-21,Burlington-Fox Hill,00480007, 97.3, 4.4, 12.8, 3.1, 2.4 -4.311111111111111,4.31,a-vale-i2,2020-21,Burlington-Pine Glen Elementary,00480020, 97.0, 5.0, 15.5, 5.0, 1.3 -4.28,4.28,a-vale-i2,2020-21,Burlington-Francis Wyman Elementary,00480035, 96.3, 6.1, 18.6, 9.0, 3.5 4.2844444444444445,4.28,a-vale-i2,2020-21,Burlington-Memorial,00480015, 96.4, 5.9, 20.6, 8.3, 4.5 -4.24,4.24,a-vale-i2,2020-21,Cambridge-Maria L. Baldwin,00490005, 95.4, 7.7, 18.3, 9.4, 0.6 -4.32,4.32,a-vale-i2,2020-21,Cambridge-Amigos School,00490006, 97.2, 4.7, 12.1, 6.0, 1.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Burlington-Burlington High,00480505, 95.1, 8.0, 21.4, 12.4, 5.2 +4.28,4.28,a-vale-i2,2020-21,Burlington-Francis Wyman Elementary,00480035, 96.3, 6.1, 18.6, 9.0, 3.5 +4.288888888888889,4.29,a-vale-i2,2020-21,Burlington-Marshall Simonds Middle,00480303, 96.5, 5.8, 16.9, 7.1, 1.2 +4.311111111111111,4.31,a-vale-i2,2020-21,Burlington-Pine Glen Elementary,00480020, 97.0, 5.0, 15.5, 5.0, 1.3 +4.262222222222222,4.26,a-vale-i2,2020-21,Cambridge-Fletcher/Maynard Academy,00490090, 95.9, 6.8, 20.9, 11.3, 3.2 +4.2444444444444445,4.24,a-vale-i2,2020-21,Cambridge-John M Tobin,00490065, 95.5, 7.4, 17.2, 10.5, 2.2 4.204444444444444,4.2,a-vale-i2,2020-21,Cambridge-Cambridge Rindge and Latin,00490506, 94.6, 8.7, 24.8, 15.5, 2.3 4.2,4.2,a-vale-i2,2020-21,Cambridge-Vassal Lane Upper School,00490320, 94.5, 9.1, 24.2, 15.1, 4.0 4.288888888888889,4.29,a-vale-i2,2020-21,Cambridge-Rindge Avenue Upper School,00490315, 96.5, 5.6, 14.9, 9.5, 2.5 4.2,4.2,a-vale-i2,2020-21,Cambridge-Putnam Avenue Upper School,00490310, 94.5, 9.2, 31.2, 16.5, 5.3 4.1866666666666665,4.19,a-vale-i2,2020-21,Cambridge-Cambridge Street Upper School,00490305, 94.2, 9.7, 29.2, 17.6, 2.0 -4.262222222222222,4.26,a-vale-i2,2020-21,Cambridge-Fletcher/Maynard Academy,00490090, 95.9, 6.8, 20.9, 11.3, 3.2 -4.337777777777777,4.34,a-vale-i2,2020-21,Cambridge-Graham and Parks,00490080, 97.6, 4.0, 10.6, 4.8, 0.3 -4.2444444444444445,4.24,a-vale-i2,2020-21,Cambridge-John M Tobin,00490065, 95.5, 7.4, 17.2, 10.5, 2.2 -4.262222222222222,4.26,a-vale-i2,2020-21,Cambridge-Peabody,00490050, 95.9, 6.8, 14.7, 8.8, 3.6 -4.24,4.24,a-vale-i2,2020-21,Cambridge-Morse,00490045, 95.4, 7.4, 17.8, 11.2, 2.2 +4.24,4.24,a-vale-i2,2020-21,Cambridge-Maria L. Baldwin,00490005, 95.4, 7.7, 18.3, 9.4, 0.6 +4.32,4.32,a-vale-i2,2020-21,Cambridge-Amigos School,00490006, 97.2, 4.7, 12.1, 6.0, 1.0 4.293333333333333,4.29,a-vale-i2,2020-21,Cambridge-Cambridgeport,00490007, 96.6, 5.6, 12.9, 6.5, 1.8 4.275555555555556,4.28,a-vale-i2,2020-21,Cambridge-Haggerty,00490020, 96.2, 6.2, 15.3, 7.6, 2.8 4.311111111111111,4.31,a-vale-i2,2020-21,Cambridge-Martin Luther King Jr.,00490030, 97.0, 5.0, 12.7, 5.4, 1.3 4.2,4.2,a-vale-i2,2020-21,Cambridge-King Open,00490035, 94.5, 9.2, 26.1, 13.2, 3.9 4.133333333333334,4.13,a-vale-i2,2020-21,Cambridge-Kennedy-Longfellow,00490040, 93.0, 10.7, 33.6, 22.5, 5.7 -4.315555555555555,4.32,a-vale-i2,2020-21,Canton-Lt Peter M Hansen,00500012, 97.1, 4.8, 13.6, 6.0, 5.2 -4.333333333333333,4.33,a-vale-i2,2020-21,Canton-Dean S Luce,00500020, 97.5, 4.1, 10.7, 4.6, 0.6 -4.3244444444444445,4.32,a-vale-i2,2020-21,Canton-John F Kennedy,00500017, 97.3, 4.6, 11.9, 4.7, 1.3 -4.164444444444444,4.16,a-vale-i2,2020-21,Canton-Rodman Early Childhood Center,00500010, 93.7, 6.7, 23.9, 17.4, 0.0 -4.16,4.16,a-vale-i2,2020-21,Canton-Canton High,00500505, 93.6, 10.8, 32.3, 18.4, 4.8 +4.24,4.24,a-vale-i2,2020-21,Cambridge-Morse,00490045, 95.4, 7.4, 17.8, 11.2, 2.2 +4.262222222222222,4.26,a-vale-i2,2020-21,Cambridge-Peabody,00490050, 95.9, 6.8, 14.7, 8.8, 3.6 +4.337777777777777,4.34,a-vale-i2,2020-21,Cambridge-Graham and Parks,00490080, 97.6, 4.0, 10.6, 4.8, 0.3 4.257777777777777,4.26,a-vale-i2,2020-21,Canton-Wm H Galvin Middle,00500305, 95.8, 7.1, 20.0, 11.2, 2.3 +4.16,4.16,a-vale-i2,2020-21,Canton-Canton High,00500505, 93.6, 10.8, 32.3, 18.4, 4.8 +4.3244444444444445,4.32,a-vale-i2,2020-21,Canton-John F Kennedy,00500017, 97.3, 4.6, 11.9, 4.7, 1.3 +4.333333333333333,4.33,a-vale-i2,2020-21,Canton-Dean S Luce,00500020, 97.5, 4.1, 10.7, 4.6, 0.6 +4.315555555555555,4.32,a-vale-i2,2020-21,Canton-Lt Peter M Hansen,00500012, 97.1, 4.8, 13.6, 6.0, 5.2 +4.164444444444444,4.16,a-vale-i2,2020-21,Canton-Rodman Early Childhood Center,00500010, 93.7, 6.7, 23.9, 17.4, 0.0 4.16,4.16,a-vale-i2,2020-21,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 93.6, 10.9, 34.6, 16.1, 0.0 3.9555555555555557,3.96,a-vale-i2,2020-21,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 89.0, 18.3, 62.8, 40.3, 41.0 4.342222222222222,4.34,a-vale-i2,2020-21,Carlisle-Carlisle School,00510025, 97.7, 4.0, 11.3, 2.5, 0.8 4.2444444444444445,4.24,a-vale-i2,2020-21,Carver-Carver Elementary School,00520015, 95.5, 7.5, 25.8, 9.5, 5.5 3.9733333333333336,3.97,a-vale-i2,2020-21,Carver-Carver Middle/High School,00520405, 89.4, 17.6, 54.1, 33.2, 14.5 -4.208888888888889,4.21,a-vale-i2,2020-21,Central Berkshire-Becket Washington School,06350005, 94.7, 8.6, 30.5, 16.2, 0.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Central Berkshire-Craneville,06350025, 95.6, 7.2, 23.0, 10.5, 0.0 4.262222222222222,4.26,a-vale-i2,2020-21,Central Berkshire-Wahconah Regional High,06350505, 95.9, 6.9, 21.2, 11.5, 0.0 4.1866666666666665,4.19,a-vale-i2,2020-21,Central Berkshire-Nessacus Regional Middle School,06350305, 94.2, 9.6, 32.6, 19.0, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Central Berkshire-Kittredge,06350035, 96.9, 5.0, 15.8, 7.9, 0.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Central Berkshire-Becket Washington School,06350005, 94.7, 8.6, 30.5, 16.2, 0.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Central Berkshire-Craneville,06350025, 95.6, 7.2, 23.0, 10.5, 0.0 +4.022222222222222,4.02,a-vale-i2,2020-21,Chelmsford-Community Education Center,00560001, 90.5, 13.3, 41.5, 28.3, 28.3 4.351111111111111,4.35,a-vale-i2,2020-21,Chelmsford-Center Elementary School,00560005, 97.9, 3.5, 6.2, 2.5, 2.3 4.368888888888889,4.37,a-vale-i2,2020-21,Chelmsford-South Row,00560015, 98.3, 2.8, 6.9, 1.8, 0.7 4.3244444444444445,4.32,a-vale-i2,2020-21,Chelmsford-Charles D Harrington,00560025, 97.3, 4.4, 11.9, 6.3, 2.4 @@ -11437,312 +11438,309 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.28,4.28,a-vale-i2,2020-21,Chelmsford-Col Moses Parker School,00560305, 96.3, 6.3, 18.0, 9.2, 2.5 4.3244444444444445,4.32,a-vale-i2,2020-21,Chelmsford-McCarthy Middle School,00560310, 97.3, 4.5, 10.4, 5.6, 1.8 4.24,4.24,a-vale-i2,2020-21,Chelmsford-Chelmsford High,00560505, 95.4, 7.8, 19.2, 10.9, 3.9 -4.022222222222222,4.02,a-vale-i2,2020-21,Chelmsford-Community Education Center,00560001, 90.5, 13.3, 41.5, 28.3, 28.3 +4.08,4.08,a-vale-i2,2020-21,Chelsea-Eugene Wright Science and Technology Academy,00570045, 91.8, 13.5, 36.2, 25.8, 4.7 +4.093333333333333,4.09,a-vale-i2,2020-21,Chelsea-Clark Avenue School,00570050, 92.1, 13.1, 41.5, 27.7, 2.4 +3.9955555555555557,4.0,a-vale-i2,2020-21,Chelsea-Joseph A. Browne School,00570055, 89.9, 16.3, 42.8, 33.1, 3.9 +3.9288888888888893,3.93,a-vale-i2,2020-21,Chelsea-Chelsea High,00570505, 88.4, 18.6, 49.6, 38.9, 5.8 +1.2933333333333334,1.29,a-vale-i2,2020-21,Chelsea-Chelsea Opportunity Academy,00570515, 29.1, 112.6, 100.0, 100.0, 0.0 4.12,4.12,a-vale-i2,2020-21,Chelsea-Shurtleff Early Childhood,00570003, 92.7, 10.8, 38.9, 23.6, 4.8 4.173333333333334,4.17,a-vale-i2,2020-21,Chelsea-William A Berkowitz Elementary,00570025, 93.9, 9.9, 36.1, 20.5, 3.2 4.2444444444444445,4.24,a-vale-i2,2020-21,Chelsea-Edgar A Hooks Elementary,00570030, 95.5, 7.4, 25.3, 12.4, 2.0 4.306666666666667,4.31,a-vale-i2,2020-21,Chelsea-George F. Kelly Elementary,00570035, 96.9, 5.3, 16.7, 5.7, 1.1 4.151111111111112,4.15,a-vale-i2,2020-21,Chelsea-Frank M Sokolowski Elementary,00570040, 93.4, 10.5, 38.3, 22.5, 5.0 -4.08,4.08,a-vale-i2,2020-21,Chelsea-Eugene Wright Science and Technology Academy,00570045, 91.8, 13.5, 36.2, 25.8, 4.7 -4.093333333333333,4.09,a-vale-i2,2020-21,Chelsea-Clark Avenue School,00570050, 92.1, 13.1, 41.5, 27.7, 2.4 -1.2933333333333334,1.29,a-vale-i2,2020-21,Chelsea-Chelsea Opportunity Academy,00570515, 29.1, 112.6, 100.0, 100.0, 0.0 -3.9955555555555557,4.0,a-vale-i2,2020-21,Chelsea-Joseph A. Browne School,00570055, 89.9, 16.3, 42.8, 33.1, 3.9 -3.9288888888888893,3.93,a-vale-i2,2020-21,Chelsea-Chelsea High,00570505, 88.4, 18.6, 49.6, 38.9, 5.8 4.306666666666667,4.31,a-vale-i2,2020-21,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 96.9, 5.0, 15.3, 3.4, 0.0 +4.142222222222222,4.14,a-vale-i2,2020-21,Chicopee-Bellamy Middle,00610305, 93.2, 11.3, 36.4, 20.0, 6.6 +4.0,4.0,a-vale-i2,2020-21,Chicopee-Belcher,00610010, 90.0, 15.9, 56.8, 37.4, 26.9 +4.12,4.12,a-vale-i2,2020-21,Chicopee-Bowe,00610015, 92.7, 12.0, 42.0, 24.9, 6.8 +4.271111111111111,4.27,a-vale-i2,2020-21,Chicopee-Bowie,00610020, 96.1, 6.5, 24.9, 8.4, 7.7 +2.8311111111111114,2.83,a-vale-i2,2020-21,Chicopee-Chicopee Academy,00610021, 63.7, 50.7, 89.1, 84.4, 76.6 +3.9955555555555557,4.0,a-vale-i2,2020-21,Chicopee-Dupont Middle,00610310, 89.9, 16.5, 45.8, 32.4, 16.9 3.7111111111111112,3.71,a-vale-i2,2020-21,Chicopee-Chicopee High,00610505, 83.5, 26.4, 57.8, 46.5, 17.1 4.044444444444444,4.04,a-vale-i2,2020-21,Chicopee-Chicopee Comprehensive High School,00610510, 91.0, 14.7, 42.6, 28.0, 8.4 -4.142222222222222,4.14,a-vale-i2,2020-21,Chicopee-Bellamy Middle,00610305, 93.2, 11.3, 36.4, 20.0, 6.6 +3.8622222222222224,3.86,a-vale-i2,2020-21,Chicopee-Szetela Early Childhood Center,00610001, 86.9, 18.4, 52.7, 38.2, 10.3 +4.195555555555556,4.2,a-vale-i2,2020-21,Chicopee-Barry,00610003, 94.4, 9.2, 30.3, 15.3, 9.1 4.133333333333334,4.13,a-vale-i2,2020-21,Chicopee-Gen John J Stefanik,00610090, 93.0, 11.4, 45.7, 23.4, 9.7 4.213333333333333,4.21,a-vale-i2,2020-21,Chicopee-Streiber Memorial School,00610065, 94.8, 8.6, 29.4, 14.3, 6.7 4.08,4.08,a-vale-i2,2020-21,Chicopee-Fairview Elementary,00610050, 91.8, 13.2, 49.8, 29.9, 12.9 4.222222222222222,4.22,a-vale-i2,2020-21,Chicopee-Lambert-Lavoie,00610040, 95.0, 8.2, 26.1, 15.2, 5.8 4.168888888888889,4.17,a-vale-i2,2020-21,Chicopee-Litwin,00610022, 93.8, 10.1, 39.2, 20.3, 9.9 -2.8311111111111114,2.83,a-vale-i2,2020-21,Chicopee-Chicopee Academy,00610021, 63.7, 50.7, 89.1, 84.4, 76.6 -4.271111111111111,4.27,a-vale-i2,2020-21,Chicopee-Bowie,00610020, 96.1, 6.5, 24.9, 8.4, 7.7 -4.12,4.12,a-vale-i2,2020-21,Chicopee-Bowe,00610015, 92.7, 12.0, 42.0, 24.9, 6.8 -4.0,4.0,a-vale-i2,2020-21,Chicopee-Belcher,00610010, 90.0, 15.9, 56.8, 37.4, 26.9 -4.195555555555556,4.2,a-vale-i2,2020-21,Chicopee-Barry,00610003, 94.4, 9.2, 30.3, 15.3, 9.1 -3.8622222222222224,3.86,a-vale-i2,2020-21,Chicopee-Szetela Early Childhood Center,00610001, 86.9, 18.4, 52.7, 38.2, 10.3 -3.9955555555555557,4.0,a-vale-i2,2020-21,Chicopee-Dupont Middle,00610310, 89.9, 16.5, 45.8, 32.4, 16.9 4.195555555555556,4.2,a-vale-i2,2020-21,Christa McAuliffe Charter Public (District)-Christa McAuliffe Charter Public School,04180305, 94.4, 9.6, 29.9, 16.4, 1.0 3.6266666666666665,3.63,a-vale-i2,2020-21,City on a Hill Charter Public School Circuit Street (District)-City on a Hill Charter Public School Circuit Street,04370505, 81.6, 30.5, 68.9, 50.5, 0.3 4.311111111111111,4.31,a-vale-i2,2020-21,Clarksburg-Clarksburg Elementary,00630010, 97.0, 5.0, 13.9, 5.7, 2.1 -4.208888888888889,4.21,a-vale-i2,2020-21,Clinton-Clinton Elementary,00640050, 94.7, 8.7, 27.6, 15.7, 0.0 4.022222222222222,4.02,a-vale-i2,2020-21,Clinton-Clinton Middle School,00640305, 90.5, 15.7, 45.4, 32.2, 0.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Clinton-Clinton Elementary,00640050, 94.7, 8.7, 27.6, 15.7, 0.0 3.9288888888888893,3.93,a-vale-i2,2020-21,Clinton-Clinton Senior High,00640505, 88.4, 18.8, 55.1, 37.6, 0.0 4.071111111111111,4.07,a-vale-i2,2020-21,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 91.6, 14.3, 47.7, 23.2, 30.8 4.271111111111111,4.27,a-vale-i2,2020-21,Cohasset-Cohasset Middle School,00650305, 96.1, 6.5, 21.2, 8.4, 7.3 4.293333333333333,4.29,a-vale-i2,2020-21,Cohasset-Joseph Osgood,00650010, 96.6, 5.6, 17.5, 5.0, 12.5 -4.204444444444444,4.2,a-vale-i2,2020-21,Cohasset-Cohasset High School,00650505, 94.6, 8.9, 35.4, 14.6, 11.1 4.315555555555555,4.32,a-vale-i2,2020-21,Cohasset-Deer Hill,00650005, 97.1, 4.9, 12.8, 2.6, 2.9 +4.204444444444444,4.2,a-vale-i2,2020-21,Cohasset-Cohasset High School,00650505, 94.6, 8.9, 35.4, 14.6, 11.1 4.377777777777778,4.38,a-vale-i2,2020-21,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 98.5, 2.4, 6.0, 3.2, 8.3 4.293333333333333,4.29,a-vale-i2,2020-21,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 96.6, 5.8, 13.9, 7.4, 0.0 4.2444444444444445,4.24,a-vale-i2,2020-21,Community Day Charter Public School - Gateway (District)-Community Day Charter Public School - Gateway,04260205, 95.5, 7.8, 25.6, 11.4, 0.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Community Day Charter Public School - Prospect (District)-Community Day Charter Public School - Prospect,04400205, 96.4, 6.5, 22.0, 8.0, 0.0 4.235555555555555,4.24,a-vale-i2,2020-21,Community Day Charter Public School - R. Kingman Webster (District)-Community Day Charter Public School - R. Kingman Webster,04310205, 95.3, 8.4, 29.7, 12.6, 0.0 4.288888888888889,4.29,a-vale-i2,2020-21,Concord-Willard,00670030, 96.5, 5.8, 23.4, 5.7, 0.7 +4.1866666666666665,4.19,a-vale-i2,2020-21,Concord-Alcott,00670005, 94.2, 9.6, 39.5, 17.1, 3.5 4.226666666666667,4.23,a-vale-i2,2020-21,Concord-Concord Middle,00670305, 95.1, 8.3, 21.7, 11.8, 2.3 4.288888888888889,4.29,a-vale-i2,2020-21,Concord-Thoreau,00670020, 96.5, 5.7, 19.8, 4.2, 0.9 -4.1866666666666665,4.19,a-vale-i2,2020-21,Concord-Alcott,00670005, 94.2, 9.6, 39.5, 17.1, 3.5 4.346666666666667,4.35,a-vale-i2,2020-21,Concord-Carlisle-Concord Carlisle High,06400505, 97.8, 3.7, 7.9, 4.0, 1.4 4.1466666666666665,4.15,a-vale-i2,2020-21,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 93.3, 11.0, 36.5, 20.3, 5.2 4.257777777777777,4.26,a-vale-i2,2020-21,Conway-Conway Grammar,00680005, 95.8, 6.9, 20.8, 11.5, 3.1 +4.2844444444444445,4.28,a-vale-i2,2020-21,Danvers-Willis E Thorpe,00710045, 96.4, 5.9, 16.4, 6.1, 0.0 +4.257777777777777,4.26,a-vale-i2,2020-21,Danvers-Holten Richmond Middle School,00710305, 95.8, 7.0, 19.1, 11.6, 0.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Danvers-Riverside,00710030, 96.4, 5.9, 16.6, 6.8, 0.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Danvers-Great Oak,00710015, 96.4, 6.0, 19.1, 6.4, 0.0 4.222222222222222,4.22,a-vale-i2,2020-21,Danvers-Highlands,00710010, 95.0, 8.3, 29.0, 12.4, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Danvers-Ivan G Smith,00710032, 96.8, 5.4, 13.2, 5.8, 0.0 -4.2844444444444445,4.28,a-vale-i2,2020-21,Danvers-Willis E Thorpe,00710045, 96.4, 5.9, 16.4, 6.1, 0.0 -4.257777777777777,4.26,a-vale-i2,2020-21,Danvers-Holten Richmond Middle School,00710305, 95.8, 7.0, 19.1, 11.6, 0.0 4.093333333333333,4.09,a-vale-i2,2020-21,Danvers-Danvers High,00710505, 92.1, 13.2, 40.7, 23.3, 3.9 -4.297777777777778,4.3,a-vale-i2,2020-21,Dartmouth-George H Potter,00720030, 96.7, 5.9, 17.5, 5.0, 11.4 -4.288888888888889,4.29,a-vale-i2,2020-21,Dartmouth-Joseph Demello,00720015, 96.5, 6.3, 22.8, 6.8, 12.3 -4.217777777777778,4.22,a-vale-i2,2020-21,Dartmouth-Andrew B. Cushman School,00720005, 94.9, 9.0, 36.0, 13.2, 30.1 -4.297777777777778,4.3,a-vale-i2,2020-21,Dartmouth-James M. Quinn School,00720040, 96.7, 5.9, 18.5, 5.6, 13.9 4.106666666666667,4.11,a-vale-i2,2020-21,Dartmouth-Dartmouth High,00720505, 92.4, 12.7, 39.2, 22.0, 35.4 +4.217777777777778,4.22,a-vale-i2,2020-21,Dartmouth-Andrew B. Cushman School,00720005, 94.9, 9.0, 36.0, 13.2, 30.1 +4.288888888888889,4.29,a-vale-i2,2020-21,Dartmouth-Joseph Demello,00720015, 96.5, 6.3, 22.8, 6.8, 12.3 +4.297777777777778,4.3,a-vale-i2,2020-21,Dartmouth-George H Potter,00720030, 96.7, 5.9, 17.5, 5.0, 11.4 +4.297777777777778,4.3,a-vale-i2,2020-21,Dartmouth-James M. Quinn School,00720040, 96.7, 5.9, 18.5, 5.6, 13.9 4.088888888888889,4.09,a-vale-i2,2020-21,Dartmouth-Dartmouth Middle,00720050, 92.0, 13.5, 45.0, 27.9, 37.7 +4.022222222222222,4.02,a-vale-i2,2020-21,Dedham-Dedham High,00730505, 90.5, 15.8, 46.5, 28.3, 6.4 4.204444444444444,4.2,a-vale-i2,2020-21,Dedham-Early Childhood Center,00730005, 94.6, 8.2, 25.8, 15.0, 0.0 4.257777777777777,4.26,a-vale-i2,2020-21,Dedham-Avery,00730010, 95.8, 7.0, 24.6, 12.5, 0.0 4.351111111111111,4.35,a-vale-i2,2020-21,Dedham-Greenlodge,00730025, 97.9, 3.5, 6.7, 2.1, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Dedham-Oakdale,00730030, 96.9, 5.2, 12.0, 5.6, 0.0 4.315555555555555,4.32,a-vale-i2,2020-21,Dedham-Riverdale,00730045, 97.1, 4.8, 14.0, 5.2, 0.0 -4.022222222222222,4.02,a-vale-i2,2020-21,Dedham-Dedham High,00730505, 90.5, 15.8, 46.5, 28.3, 6.4 4.026666666666666,4.03,a-vale-i2,2020-21,Dedham-Dedham Middle School,00730305, 90.6, 15.7, 38.4, 27.8, 18.2 4.28,4.28,a-vale-i2,2020-21,Deerfield-Deerfield Elementary,00740015, 96.3, 6.2, 17.1, 7.5, 0.9 -4.2,4.2,a-vale-i2,2020-21,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 94.5, 9.2, 35.4, 17.3, 16.9 -4.066666666666666,4.07,a-vale-i2,2020-21,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.0, 50.8, 32.2, 7.5 -4.213333333333333,4.21,a-vale-i2,2020-21,Dennis-Yarmouth-Station Avenue Elementary,06450025, 94.8, 8.6, 30.0, 14.4, 7.7 -4.106666666666667,4.11,a-vale-i2,2020-21,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 92.4, 11.3, 39.5, 30.1, 11.1 -4.106666666666667,4.11,a-vale-i2,2020-21,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.4, 11.7, 40.9, 24.3, 8.3 4.057777777777778,4.06,a-vale-i2,2020-21,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 91.3, 14.4, 36.4, 26.1, 9.0 -4.213333333333333,4.21,a-vale-i2,2020-21,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 94.8, 8.6, 24.1, 16.0, 6.6 +4.066666666666666,4.07,a-vale-i2,2020-21,Dennis-Yarmouth-Mattacheese Middle School,06450305, 91.5, 14.0, 50.8, 32.2, 7.5 +4.2,4.2,a-vale-i2,2020-21,Dennis-Yarmouth-Nathaniel H. Wixon School,06450050, 94.5, 9.2, 35.4, 17.3, 16.9 +4.213333333333333,4.21,a-vale-i2,2020-21,Dennis-Yarmouth-Station Avenue Elementary,06450025, 94.8, 8.6, 30.0, 14.4, 7.7 +4.106666666666667,4.11,a-vale-i2,2020-21,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 92.4, 11.7, 40.9, 24.3, 8.3 +4.106666666666667,4.11,a-vale-i2,2020-21,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 92.4, 11.3, 39.5, 30.1, 11.1 4.204444444444444,4.2,a-vale-i2,2020-21,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 94.6, 9.2, 31.8, 15.5, 5.7 -4.1866666666666665,4.19,a-vale-i2,2020-21,Dighton-Rehoboth-Dighton Middle School,06500305, 94.2, 9.9, 34.2, 14.2, 3.7 4.28,4.28,a-vale-i2,2020-21,Dighton-Rehoboth-Palmer River,06500010, 96.3, 6.3, 19.2, 6.9, 7.9 +4.1866666666666665,4.19,a-vale-i2,2020-21,Dighton-Rehoboth-Dighton Middle School,06500305, 94.2, 9.9, 34.2, 14.2, 3.7 4.2844444444444445,4.28,a-vale-i2,2020-21,Dighton-Rehoboth-Dighton Elementary,06500005, 96.4, 6.0, 17.0, 5.8, 4.4 +4.213333333333333,4.21,a-vale-i2,2020-21,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 94.8, 8.6, 24.1, 16.0, 6.6 4.293333333333333,4.29,a-vale-i2,2020-21,Douglas-Douglas Elementary School,00770015, 96.6, 5.6, 12.5, 6.1, 0.8 4.288888888888889,4.29,a-vale-i2,2020-21,Douglas-Douglas Primary School,00770005, 96.5, 5.2, 16.0, 11.5, 4.5 4.155555555555556,4.16,a-vale-i2,2020-21,Douglas-Douglas Middle School,00770305, 93.5, 10.8, 35.4, 20.0, 6.1 3.8311111111111114,3.83,a-vale-i2,2020-21,Douglas-Douglas High School,00770505, 86.2, 22.6, 68.3, 50.3, 7.9 4.306666666666667,4.31,a-vale-i2,2020-21,Dover-Chickering,00780005, 96.9, 5.1, 15.3, 3.6, 12.3 -4.288888888888889,4.29,a-vale-i2,2020-21,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 96.5, 6.2, 20.5, 4.8, 2.7 4.342222222222222,4.34,a-vale-i2,2020-21,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 97.7, 3.9, 7.0, 3.9, 2.8 -4.097777777777778,4.1,a-vale-i2,2020-21,Dracut-Justus C. Richardson Middle School,00790410, 92.2, 13.0, 44.1, 26.1, 13.3 -4.168888888888889,4.17,a-vale-i2,2020-21,Dracut-Greenmont Avenue,00790030, 93.8, 10.3, 32.5, 17.3, 7.3 +4.288888888888889,4.29,a-vale-i2,2020-21,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 96.5, 6.2, 20.5, 4.8, 2.7 4.173333333333334,4.17,a-vale-i2,2020-21,Dracut-George H. Englesby Elementary School,00790045, 93.9, 10.1, 33.0, 18.1, 12.6 4.204444444444444,4.2,a-vale-i2,2020-21,Dracut-Brookside Elementary,00790035, 94.6, 8.8, 29.2, 15.5, 6.5 4.2444444444444445,4.24,a-vale-i2,2020-21,Dracut-Joseph A Campbell Elementary,00790020, 95.5, 7.4, 22.7, 11.7, 10.0 3.92,3.92,a-vale-i2,2020-21,Dracut-Dracut Senior High,00790505, 88.2, 19.3, 51.4, 36.3, 19.0 +4.097777777777778,4.1,a-vale-i2,2020-21,Dracut-Justus C. Richardson Middle School,00790410, 92.2, 13.0, 44.1, 26.1, 13.3 +4.168888888888889,4.17,a-vale-i2,2020-21,Dracut-Greenmont Avenue,00790030, 93.8, 10.3, 32.5, 17.3, 7.3 4.164444444444444,4.16,a-vale-i2,2020-21,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 93.7, 10.6, 34.8, 20.2, 31.6 +4.24,4.24,a-vale-i2,2020-21,Dudley-Charlton Reg-Dudley Elementary,06580005, 95.4, 7.6, 27.1, 11.4, 15.7 +4.204444444444444,4.2,a-vale-i2,2020-21,Dudley-Charlton Reg-Mason Road School,06580010, 94.6, 8.5, 30.0, 15.2, 13.2 +4.271111111111111,4.27,a-vale-i2,2020-21,Dudley-Charlton Reg-Charlton Elementary,06580020, 96.1, 6.4, 21.1, 7.6, 10.9 +4.297777777777778,4.3,a-vale-i2,2020-21,Dudley-Charlton Reg-Heritage School,06580030, 96.7, 5.4, 15.0, 6.3, 3.1 +4.08,4.08,a-vale-i2,2020-21,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.8, 13.5, 50.1, 25.5, 13.6 4.248888888888889,4.25,a-vale-i2,2020-21,Dudley-Charlton Reg-Charlton Middle School,06580310, 95.6, 7.4, 22.1, 10.7, 5.2 4.133333333333334,4.13,a-vale-i2,2020-21,Dudley-Charlton Reg-Dudley Middle School,06580305, 93.0, 11.6, 43.1, 21.5, 7.8 -4.297777777777778,4.3,a-vale-i2,2020-21,Dudley-Charlton Reg-Heritage School,06580030, 96.7, 5.4, 15.0, 6.3, 3.1 -4.271111111111111,4.27,a-vale-i2,2020-21,Dudley-Charlton Reg-Charlton Elementary,06580020, 96.1, 6.4, 21.1, 7.6, 10.9 -4.204444444444444,4.2,a-vale-i2,2020-21,Dudley-Charlton Reg-Mason Road School,06580010, 94.6, 8.5, 30.0, 15.2, 13.2 -4.24,4.24,a-vale-i2,2020-21,Dudley-Charlton Reg-Dudley Elementary,06580005, 95.4, 7.6, 27.1, 11.4, 15.7 -4.08,4.08,a-vale-i2,2020-21,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 91.8, 13.5, 50.1, 25.5, 13.6 -4.337777777777777,4.34,a-vale-i2,2020-21,Duxbury-Duxbury High,00820505, 97.6, 4.1, 7.7, 3.3, 2.9 -4.306666666666667,4.31,a-vale-i2,2020-21,Duxbury-Duxbury Middle,00820305, 96.9, 5.4, 14.6, 4.8, 3.6 -4.288888888888889,4.29,a-vale-i2,2020-21,Duxbury-Chandler Elementary,00820006, 96.5, 5.9, 16.8, 4.3, 4.8 4.271111111111111,4.27,a-vale-i2,2020-21,Duxbury-Alden School,00820004, 96.1, 6.7, 21.1, 6.7, 4.4 -4.288888888888889,4.29,a-vale-i2,2020-21,East Bridgewater-Gordon W. Mitchell School,00830010, 96.5, 5.7, 17.1, 6.6, 8.3 +4.288888888888889,4.29,a-vale-i2,2020-21,Duxbury-Chandler Elementary,00820006, 96.5, 5.9, 16.8, 4.3, 4.8 +4.306666666666667,4.31,a-vale-i2,2020-21,Duxbury-Duxbury Middle,00820305, 96.9, 5.4, 14.6, 4.8, 3.6 +4.337777777777777,4.34,a-vale-i2,2020-21,Duxbury-Duxbury High,00820505, 97.6, 4.1, 7.7, 3.3, 2.9 4.04,4.04,a-vale-i2,2020-21,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 90.9, 14.9, 49.5, 29.9, 22.3 4.271111111111111,4.27,a-vale-i2,2020-21,East Bridgewater-Central,00830005, 96.1, 6.4, 20.0, 9.5, 10.5 +4.288888888888889,4.29,a-vale-i2,2020-21,East Bridgewater-Gordon W. Mitchell School,00830010, 96.5, 5.7, 17.1, 6.6, 8.3 4.297777777777778,4.3,a-vale-i2,2020-21,East Longmeadow-Birchland Park,00870305, 96.7, 5.5, 15.6, 6.9, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,East Longmeadow-East Longmeadow High,00870505, 97.1, 4.9, 12.2, 4.6, 0.0 4.333333333333333,4.33,a-vale-i2,2020-21,East Longmeadow-Mountain View,00870015, 97.5, 4.3, 8.5, 4.1, 0.0 -4.311111111111111,4.31,a-vale-i2,2020-21,East Longmeadow-Meadow Brook,00870013, 97.0, 4.8, 12.5, 5.3, 0.0 4.355555555555555,4.36,a-vale-i2,2020-21,East Longmeadow-Mapleshade,00870010, 98.0, 3.3, 7.0, 1.7, 0.0 +4.311111111111111,4.31,a-vale-i2,2020-21,East Longmeadow-Meadow Brook,00870013, 97.0, 4.8, 12.5, 5.3, 0.0 +4.315555555555555,4.32,a-vale-i2,2020-21,East Longmeadow-East Longmeadow High,00870505, 97.1, 4.9, 12.2, 4.6, 0.0 4.217777777777778,4.22,a-vale-i2,2020-21,Eastham-Eastham Elementary,00850005, 94.9, 8.3, 32.0, 15.8, 10.3 -4.226666666666667,4.23,a-vale-i2,2020-21,Easthampton-White Brook Middle School,00860305, 95.1, 8.1, 20.6, 11.9, 2.2 -4.248888888888889,4.25,a-vale-i2,2020-21,Easthampton-Easthampton High,00860505, 95.6, 7.2, 17.1, 10.1, 13.7 -4.24,4.24,a-vale-i2,2020-21,Easthampton-Maple,00860010, 95.4, 7.4, 21.4, 12.7, 0.9 -4.275555555555556,4.28,a-vale-i2,2020-21,Easthampton-Center School,00860005, 96.2, 6.3, 18.9, 10.2, 1.0 4.208888888888889,4.21,a-vale-i2,2020-21,Easthampton-Neil A Pepin,00860020, 94.7, 8.5, 28.4, 17.8, 3.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Easton-Easton Middle School,00880405, 97.1, 4.9, 13.4, 6.8, 1.1 +4.248888888888889,4.25,a-vale-i2,2020-21,Easthampton-Easthampton High,00860505, 95.6, 7.2, 17.1, 10.1, 13.7 +4.275555555555556,4.28,a-vale-i2,2020-21,Easthampton-Center School,00860005, 96.2, 6.3, 18.9, 10.2, 1.0 +4.24,4.24,a-vale-i2,2020-21,Easthampton-Maple,00860010, 95.4, 7.4, 21.4, 12.7, 0.9 +4.226666666666667,4.23,a-vale-i2,2020-21,Easthampton-White Brook Middle School,00860305, 95.1, 8.1, 20.6, 11.9, 2.2 4.262222222222222,4.26,a-vale-i2,2020-21,Easton-Oliver Ames High,00880505, 95.9, 6.7, 18.2, 9.8, 2.8 +4.315555555555555,4.32,a-vale-i2,2020-21,Easton-Easton Middle School,00880405, 97.1, 4.9, 13.4, 6.8, 1.1 +4.3244444444444445,4.32,a-vale-i2,2020-21,Easton-Moreau Hall,00880020, 97.3, 4.3, 14.0, 4.3, 0.5 4.32,4.32,a-vale-i2,2020-21,Easton-Richardson Olmsted School,00880025, 97.2, 4.7, 13.5, 3.2, 1.5 4.315555555555555,4.32,a-vale-i2,2020-21,Easton-Parkview Elementary,00880015, 97.1, 4.6, 13.0, 5.6, 1.1 4.311111111111111,4.31,a-vale-i2,2020-21,Easton-Center School,00880003, 97.0, 4.8, 16.9, 6.9, 1.1 -4.3244444444444445,4.32,a-vale-i2,2020-21,Easton-Moreau Hall,00880020, 97.3, 4.3, 14.0, 4.3, 0.5 4.151111111111112,4.15,a-vale-i2,2020-21,Edgartown-Edgartown Elementary,00890005, 93.4, 10.4, 41.6, 23.7, 14.7 3.848888888888889,3.85,a-vale-i2,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District)-Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 86.6, 22.1, 55.7, 41.3, 24.9 4.24,4.24,a-vale-i2,2020-21,Erving-Erving Elementary,00910030, 95.4, 7.5, 24.8, 14.5, 10.3 4.235555555555555,4.24,a-vale-i2,2020-21,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 95.3, 8.1, 29.8, 9.7, 2.9 -4.213333333333333,4.21,a-vale-i2,2020-21,Everett-Webster School,00930015, 94.8, 9.1, 29.1, 18.9, 25.4 +3.933333333333333,3.93,a-vale-i2,2020-21,Everett-Everett High,00930505, 88.5, 19.2, 48.9, 35.4, 39.7 +4.182222222222222,4.18,a-vale-i2,2020-21,Everett-Parlin School,00930058, 94.1, 10.2, 32.6, 19.6, 28.1 +4.195555555555556,4.2,a-vale-i2,2020-21,Everett-Lafayette School,00930038, 94.4, 9.7, 31.2, 18.8, 28.1 4.155555555555556,4.16,a-vale-i2,2020-21,Everett-George Keverian School,00930028, 93.5, 11.0, 35.8, 23.0, 31.6 3.1244444444444444,3.12,a-vale-i2,2020-21,Everett-Devens School,00930030, 70.3, 49.9, 75.0, 67.3, 73.1 -4.195555555555556,4.2,a-vale-i2,2020-21,Everett-Lafayette School,00930038, 94.4, 9.7, 31.2, 18.8, 28.1 -4.182222222222222,4.18,a-vale-i2,2020-21,Everett-Parlin School,00930058, 94.1, 10.2, 32.6, 19.6, 28.1 -3.933333333333333,3.93,a-vale-i2,2020-21,Everett-Everett High,00930505, 88.5, 19.2, 48.9, 35.4, 39.7 -4.168888888888889,4.17,a-vale-i2,2020-21,Everett-Sumner G. Whittier School,00930010, 93.8, 10.4, 35.7, 21.0, 27.7 -4.053333333333334,4.05,a-vale-i2,2020-21,Everett-Adams School,00930003, 91.2, 14.2, 41.3, 28.7, 34.0 4.057777777777778,4.06,a-vale-i2,2020-21,Everett-Webster Extension,00930001, 91.3, 13.5, 31.7, 25.0, 29.3 +4.053333333333334,4.05,a-vale-i2,2020-21,Everett-Adams School,00930003, 91.2, 14.2, 41.3, 28.7, 34.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Everett-Sumner G. Whittier School,00930010, 93.8, 10.4, 35.7, 21.0, 27.7 4.191111111111111,4.19,a-vale-i2,2020-21,Everett-Madeline English School,00930018, 94.3, 9.7, 28.6, 18.6, 25.3 +4.213333333333333,4.21,a-vale-i2,2020-21,Everett-Webster School,00930015, 94.8, 9.1, 29.1, 18.9, 25.4 4.075555555555556,4.08,a-vale-i2,2020-21,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 91.7, 14.0, 39.8, 27.3, 18.5 -4.035555555555556,4.04,a-vale-i2,2020-21,Fairhaven-Hastings Middle,00940305, 90.8, 15.3, 51.5, 31.7, 6.8 4.231111111111111,4.23,a-vale-i2,2020-21,Fairhaven-Leroy Wood,00940030, 95.2, 7.9, 26.8, 9.8, 4.7 4.231111111111111,4.23,a-vale-i2,2020-21,Fairhaven-East Fairhaven,00940010, 95.2, 7.9, 28.2, 12.8, 5.3 3.8400000000000003,3.84,a-vale-i2,2020-21,Fairhaven-Fairhaven High,00940505, 86.4, 22.3, 63.1, 44.4, 13.4 -3.924444444444444,3.92,a-vale-i2,2020-21,Fall River-Henry Lord Community School,00950017, 88.3, 18.8, 59.0, 42.0, 26.7 -2.52,2.52,a-vale-i2,2020-21,Fall River-Resiliency Preparatory Academy,00950525, 56.7, 62.7, 89.4, 86.3, 30.8 +4.035555555555556,4.04,a-vale-i2,2020-21,Fairhaven-Hastings Middle,00940305, 90.8, 15.3, 51.5, 31.7, 6.8 +4.04,4.04,a-vale-i2,2020-21,Fall River-Letourneau Elementary School,00950013, 90.9, 14.7, 54.3, 31.5, 16.1 +3.5244444444444443,3.52,a-vale-i2,2020-21,Fall River-Stone PK-12 School,00950340, 79.3, 32.7, 76.1, 64.2, 29.9 +3.9955555555555557,4.0,a-vale-i2,2020-21,Fall River-John J Doran,00950045, 89.9, 16.7, 51.2, 35.3, 18.1 3.96,3.96,a-vale-i2,2020-21,Fall River-William S Greene,00950065, 89.1, 17.9, 58.2, 38.0, 19.5 4.151111111111112,4.15,a-vale-i2,2020-21,Fall River-Spencer Borden,00950130, 93.4, 10.8, 38.9, 19.6, 10.6 +2.52,2.52,a-vale-i2,2020-21,Fall River-Resiliency Preparatory Academy,00950525, 56.7, 62.7, 89.4, 86.3, 30.8 4.231111111111111,4.23,a-vale-i2,2020-21,Fall River-James Tansey,00950140, 95.2, 8.0, 29.9, 13.2, 7.1 4.102222222222222,4.1,a-vale-i2,2020-21,Fall River-Samuel Watson,00950145, 92.3, 12.1, 52.1, 30.4, 4.9 3.9644444444444447,3.96,a-vale-i2,2020-21,Fall River-Talbot Innovation School,00950305, 89.2, 17.7, 64.7, 41.7, 20.9 3.991111111111111,3.99,a-vale-i2,2020-21,Fall River-Morton Middle,00950315, 89.8, 17.0, 55.8, 33.0, 12.7 3.911111111111111,3.91,a-vale-i2,2020-21,Fall River-Matthew J Kuss Middle,00950320, 88.0, 20.2, 61.4, 42.3, 15.0 -3.5244444444444443,3.52,a-vale-i2,2020-21,Fall River-Stone PK-12 School,00950340, 79.3, 32.7, 76.1, 64.2, 29.9 -3.5244444444444443,3.52,a-vale-i2,2020-21,Fall River-B M C Durfee High,00950505, 79.3, 33.9, 78.5, 66.2, 27.0 -4.04,4.04,a-vale-i2,2020-21,Fall River-Letourneau Elementary School,00950013, 90.9, 14.7, 54.3, 31.5, 16.1 4.115555555555555,4.12,a-vale-i2,2020-21,Fall River-Mary Fonseca Elementary School,00950011, 92.6, 11.7, 47.2, 25.9, 11.3 4.0311111111111115,4.03,a-vale-i2,2020-21,Fall River-Carlton M. Viveiros Elementary School,00950009, 90.7, 15.1, 53.8, 34.2, 12.8 4.022222222222222,4.02,a-vale-i2,2020-21,Fall River-North End Elementary,00950005, 90.5, 15.3, 50.3, 33.9, 21.7 -3.9955555555555557,4.0,a-vale-i2,2020-21,Fall River-John J Doran,00950045, 89.9, 16.7, 51.2, 35.3, 18.1 +3.5244444444444443,3.52,a-vale-i2,2020-21,Fall River-B M C Durfee High,00950505, 79.3, 33.9, 78.5, 66.2, 27.0 +3.924444444444444,3.92,a-vale-i2,2020-21,Fall River-Henry Lord Community School,00950017, 88.3, 18.8, 59.0, 42.0, 26.7 +4.16,4.16,a-vale-i2,2020-21,Falmouth-Lawrence,00960405, 93.6, 10.7, 35.3, 21.0, 28.9 +4.195555555555556,4.2,a-vale-i2,2020-21,Falmouth-Falmouth High,00960505, 94.4, 9.2, 23.8, 14.8, 19.1 +4.124444444444444,4.12,a-vale-i2,2020-21,Falmouth-East Falmouth Elementary,00960005, 92.8, 11.4, 37.6, 20.2, 35.1 4.164444444444444,4.16,a-vale-i2,2020-21,Falmouth-Teaticket,00960015, 93.7, 10.1, 31.0, 16.3, 30.6 4.182222222222222,4.18,a-vale-i2,2020-21,Falmouth-Mullen-Hall,00960020, 94.1, 9.6, 32.6, 18.1, 29.2 4.217777777777778,4.22,a-vale-i2,2020-21,Falmouth-North Falmouth Elementary,00960030, 94.9, 8.6, 30.9, 13.0, 29.0 4.204444444444444,4.2,a-vale-i2,2020-21,Falmouth-Morse Pond School,00960305, 94.6, 9.0, 30.4, 14.2, 28.6 -4.16,4.16,a-vale-i2,2020-21,Falmouth-Lawrence,00960405, 93.6, 10.7, 35.3, 21.0, 28.9 -4.195555555555556,4.2,a-vale-i2,2020-21,Falmouth-Falmouth High,00960505, 94.4, 9.2, 23.8, 14.8, 19.1 -4.124444444444444,4.12,a-vale-i2,2020-21,Falmouth-East Falmouth Elementary,00960005, 92.8, 11.4, 37.6, 20.2, 35.1 4.235555555555555,4.24,a-vale-i2,2020-21,Farmington River Reg-Farmington River Elementary,06620020, 95.3, 7.6, 31.4, 8.5, 12.7 +4.12,4.12,a-vale-i2,2020-21,Fitchburg-Memorial Middle School,00970048, 92.7, 11.9, 34.0, 22.2, 1.8 +3.9377777777777774,3.94,a-vale-i2,2020-21,Fitchburg-South Street Elementary,00970060, 88.6, 18.3, 54.9, 38.9, 9.1 +3.8355555555555556,3.84,a-vale-i2,2020-21,Fitchburg-Arthur M Longsjo Middle School,00970315, 86.3, 22.3, 65.2, 46.4, 8.3 4.0311111111111115,4.03,a-vale-i2,2020-21,Fitchburg-McKay Arts Academy,00970340, 90.7, 14.7, 43.1, 31.4, 7.7 4.017777777777778,4.02,a-vale-i2,2020-21,Fitchburg-Fitchburg High,00970505, 90.4, 15.7, 45.4, 31.1, 6.9 -3.8355555555555556,3.84,a-vale-i2,2020-21,Fitchburg-Arthur M Longsjo Middle School,00970315, 86.3, 22.3, 65.2, 46.4, 8.3 -3.9377777777777774,3.94,a-vale-i2,2020-21,Fitchburg-South Street Elementary,00970060, 88.6, 18.3, 54.9, 38.9, 9.1 -4.12,4.12,a-vale-i2,2020-21,Fitchburg-Memorial Middle School,00970048, 92.7, 11.9, 34.0, 22.2, 1.8 -4.137777777777777,4.14,a-vale-i2,2020-21,Fitchburg-Reingold Elementary,00970043, 93.1, 10.8, 38.7, 24.8, 4.9 -4.044444444444444,4.04,a-vale-i2,2020-21,Fitchburg-Crocker Elementary,00970016, 91.0, 14.4, 45.7, 32.4, 4.5 4.208888888888889,4.21,a-vale-i2,2020-21,Fitchburg-Goodrich Academy,00970510, 94.7, 7.3, 28.3, 18.9, 4.4 +4.044444444444444,4.04,a-vale-i2,2020-21,Fitchburg-Crocker Elementary,00970016, 91.0, 14.4, 45.7, 32.4, 4.5 +4.137777777777777,4.14,a-vale-i2,2020-21,Fitchburg-Reingold Elementary,00970043, 93.1, 10.8, 38.7, 24.8, 4.9 4.262222222222222,4.26,a-vale-i2,2020-21,Florida-Abbott Memorial,00980005, 95.9, 6.8, 23.3, 9.3, 0.0 4.044444444444444,4.04,a-vale-i2,2020-21,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 91.0, 14.8, 39.8, 27.1, 0.5 -4.111111111111111,4.11,a-vale-i2,2020-21,Foxborough-Foxborough High,00990505, 92.5, 12.7, 42.1, 22.7, 0.0 4.168888888888889,4.17,a-vale-i2,2020-21,Foxborough-Mabelle M Burrell,00990015, 93.8, 10.4, 32.3, 13.3, 0.0 4.262222222222222,4.26,a-vale-i2,2020-21,Foxborough-Vincent M Igo Elementary,00990020, 95.9, 6.8, 25.6, 11.1, 0.0 4.275555555555556,4.28,a-vale-i2,2020-21,Foxborough-Charles Taylor Elementary,00990050, 96.2, 6.4, 24.3, 6.3, 0.0 4.093333333333333,4.09,a-vale-i2,2020-21,Foxborough-John J Ahern,00990405, 92.1, 13.3, 46.3, 26.4, 0.0 +4.111111111111111,4.11,a-vale-i2,2020-21,Foxborough-Foxborough High,00990505, 92.5, 12.7, 42.1, 22.7, 0.0 4.311111111111111,4.31,a-vale-i2,2020-21,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 97.0, 5.1, 15.0, 4.5, 0.8 -4.088888888888889,4.09,a-vale-i2,2020-21,Framingham-Fuller Middle,01000305, 92.0, 12.8, 38.3, 27.0, 0.2 +3.7466666666666666,3.75,a-vale-i2,2020-21,Framingham-Juniper Hill School,01000001, 84.3, 13.4, 40.3, 44.4, 6.2 +4.2444444444444445,4.24,a-vale-i2,2020-21,Framingham-Charlotte A Dunning,01000007, 95.5, 7.3, 18.9, 12.6, 3.7 +4.306666666666667,4.31,a-vale-i2,2020-21,Framingham-Hemenway,01000015, 96.9, 5.1, 13.8, 8.7, 4.3 +4.195555555555556,4.2,a-vale-i2,2020-21,Framingham-Brophy,01000006, 94.4, 8.9, 30.2, 19.5, 5.1 +4.297777777777778,4.3,a-vale-i2,2020-21,Framingham-King Elementary School,01000005, 96.7, 5.4, 16.0, 8.5, 3.5 4.022222222222222,4.02,a-vale-i2,2020-21,Framingham-Framingham High School,01000515, 90.5, 15.7, 33.1, 25.0, 5.9 4.2444444444444445,4.24,a-vale-i2,2020-21,Framingham-Walsh Middle,01000310, 95.5, 7.5, 20.7, 12.1, 6.3 +4.088888888888889,4.09,a-vale-i2,2020-21,Framingham-Fuller Middle,01000305, 92.0, 12.8, 38.3, 27.0, 0.2 4.2,4.2,a-vale-i2,2020-21,Framingham-Cameron Middle School,01000302, 94.5, 9.2, 25.3, 15.9, 1.4 4.168888888888889,4.17,a-vale-i2,2020-21,Framingham-Woodrow Wilson,01000055, 93.8, 9.6, 33.2, 21.0, 4.6 4.177777777777778,4.18,a-vale-i2,2020-21,Framingham-Miriam F McCarthy School,01000050, 94.0, 9.8, 31.7, 20.0, 6.9 4.182222222222222,4.18,a-vale-i2,2020-21,Framingham-Mary E Stapleton Elementary,01000045, 94.1, 9.4, 25.4, 18.3, 6.0 4.28,4.28,a-vale-i2,2020-21,Framingham-Potter Road,01000039, 96.3, 6.0, 18.3, 7.8, 1.7 4.177777777777778,4.18,a-vale-i2,2020-21,Framingham-Barbieri Elementary,01000035, 94.0, 10.0, 33.5, 18.8, 6.5 -4.306666666666667,4.31,a-vale-i2,2020-21,Framingham-Hemenway,01000015, 96.9, 5.1, 13.8, 8.7, 4.3 -4.2444444444444445,4.24,a-vale-i2,2020-21,Framingham-Charlotte A Dunning,01000007, 95.5, 7.3, 18.9, 12.6, 3.7 -4.195555555555556,4.2,a-vale-i2,2020-21,Framingham-Brophy,01000006, 94.4, 8.9, 30.2, 19.5, 5.1 -4.297777777777778,4.3,a-vale-i2,2020-21,Framingham-King Elementary School,01000005, 96.7, 5.4, 16.0, 8.5, 3.5 -3.7466666666666666,3.75,a-vale-i2,2020-21,Framingham-Juniper Hill School,01000001, 84.3, 13.4, 40.3, 44.4, 6.2 4.182222222222222,4.18,a-vale-i2,2020-21,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 94.1, 9.7, 31.6, 14.7, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Franklin-Parmenter,01010032, 97.8, 3.7, 7.3, 1.9, 0.6 +4.262222222222222,4.26,a-vale-i2,2020-21,Franklin-Franklin Early Childhood Development Center,01010003, 95.9, 6.5, 16.7, 6.7, 5.6 4.368888888888889,4.37,a-vale-i2,2020-21,Franklin-Jefferson Elementary,01010010, 98.3, 2.8, 6.8, 1.8, 2.1 4.364444444444445,4.36,a-vale-i2,2020-21,Franklin-Helen Keller Elementary,01010012, 98.2, 3.0, 5.7, 1.5, 1.5 -4.373333333333334,4.37,a-vale-i2,2020-21,Franklin-J F Kennedy Memorial,01010013, 98.4, 2.7, 3.9, 0.6, 1.5 -4.235555555555555,4.24,a-vale-i2,2020-21,Franklin-Franklin High,01010505, 95.3, 7.8, 17.2, 10.4, 2.4 -4.262222222222222,4.26,a-vale-i2,2020-21,Franklin-Franklin Early Childhood Development Center,01010003, 95.9, 6.5, 16.7, 6.7, 5.6 -4.351111111111111,4.35,a-vale-i2,2020-21,Franklin-Oak Street Elementary,01010030, 97.9, 3.5, 6.4, 2.7, 2.1 -4.346666666666667,4.35,a-vale-i2,2020-21,Franklin-Parmenter,01010032, 97.8, 3.7, 7.3, 1.9, 0.6 -4.333333333333333,4.33,a-vale-i2,2020-21,Franklin-Davis Thayer,01010035, 97.5, 4.2, 11.2, 6.0, 5.6 -4.3244444444444445,4.32,a-vale-i2,2020-21,Franklin-Annie Sullivan Middle School,01010040, 97.3, 4.5, 9.7, 4.8, 1.4 -4.302222222222222,4.3,a-vale-i2,2020-21,Franklin-Remington Middle,01010310, 96.8, 5.4, 15.3, 8.3, 3.4 4.302222222222222,4.3,a-vale-i2,2020-21,Franklin-Horace Mann,01010405, 96.8, 5.3, 12.7, 6.5, 2.4 +4.302222222222222,4.3,a-vale-i2,2020-21,Franklin-Remington Middle,01010310, 96.8, 5.4, 15.3, 8.3, 3.4 +4.3244444444444445,4.32,a-vale-i2,2020-21,Franklin-Annie Sullivan Middle School,01010040, 97.3, 4.5, 9.7, 4.8, 1.4 +4.333333333333333,4.33,a-vale-i2,2020-21,Franklin-Davis Thayer,01010035, 97.5, 4.2, 11.2, 6.0, 5.6 +4.235555555555555,4.24,a-vale-i2,2020-21,Franklin-Franklin High,01010505, 95.3, 7.8, 17.2, 10.4, 2.4 +4.373333333333334,4.37,a-vale-i2,2020-21,Franklin-J F Kennedy Memorial,01010013, 98.4, 2.7, 3.9, 0.6, 1.5 +4.351111111111111,4.35,a-vale-i2,2020-21,Franklin-Oak Street Elementary,01010030, 97.9, 3.5, 6.4, 2.7, 2.1 4.04,4.04,a-vale-i2,2020-21,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 90.9, 15.1, 54.6, 33.4, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Freetown-Lakeville-Freetown Elementary School,06650001, 96.6, 5.7, 20.6, 7.5, 0.0 +4.28,4.28,a-vale-i2,2020-21,Freetown-Lakeville-Assawompset Elementary School,06650002, 96.3, 6.1, 22.5, 7.4, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Freetown-Lakeville-Apponequet Regional High,06650505, 96.6, 5.6, 16.7, 8.1, 8.3 4.306666666666667,4.31,a-vale-i2,2020-21,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 96.9, 5.1, 16.6, 7.6, 0.0 4.2444444444444445,4.24,a-vale-i2,2020-21,Freetown-Lakeville-George R Austin Intermediate School,06650015, 95.5, 7.4, 27.3, 11.2, 0.0 -4.28,4.28,a-vale-i2,2020-21,Freetown-Lakeville-Assawompset Elementary School,06650002, 96.3, 6.1, 22.5, 7.4, 0.0 4.226666666666667,4.23,a-vale-i2,2020-21,Frontier-Frontier Regional,06700505, 95.1, 8.1, 18.5, 11.1, 0.5 -4.04,4.04,a-vale-i2,2020-21,Gardner-Gardner Middle School,01030405, 90.9, 14.8, 46.2, 31.1, 15.5 -4.004444444444444,4.0,a-vale-i2,2020-21,Gardner-Waterford Street,01030020, 90.1, 15.1, 49.3, 34.7, 15.0 4.04,4.04,a-vale-i2,2020-21,Gardner-Elm Street School,01030001, 90.9, 14.5, 48.5, 31.7, 10.0 +4.04,4.04,a-vale-i2,2020-21,Gardner-Gardner Middle School,01030405, 90.9, 14.8, 46.2, 31.1, 15.5 3.5688888888888886,3.57,a-vale-i2,2020-21,Gardner-Gardner Academy for Learning and Technology,01030515, 80.3, 30.9, 37.4, 35.5, 19.6 +4.004444444444444,4.0,a-vale-i2,2020-21,Gardner-Waterford Street,01030020, 90.1, 15.1, 49.3, 34.7, 15.0 4.062222222222222,4.06,a-vale-i2,2020-21,Gardner-Gardner High,01030505, 91.4, 14.0, 40.4, 27.9, 12.7 -4.2,4.2,a-vale-i2,2020-21,Gateway-Gateway Regional High,06720505, 94.5, 9.2, 26.0, 15.3, 5.1 4.248888888888889,4.25,a-vale-i2,2020-21,Gateway-Chester Elementary,06720059, 95.6, 7.2, 28.0, 10.3, 1.9 -4.208888888888889,4.21,a-vale-i2,2020-21,Gateway-Gateway Regional Middle School,06720405, 94.7, 8.9, 28.9, 14.8, 7.8 4.191111111111111,4.19,a-vale-i2,2020-21,Gateway-Littleville Elementary School,06720143, 94.3, 9.3, 30.7, 18.0, 7.0 -4.257777777777777,4.26,a-vale-i2,2020-21,Georgetown-Georgetown High School,01050505, 95.8, 7.2, 19.6, 8.8, 2.6 -4.32,4.32,a-vale-i2,2020-21,Georgetown-Georgetown Middle School,01050305, 97.2, 4.9, 15.8, 3.0, 1.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Georgetown-Penn Brook,01050010, 97.5, 4.3, 10.2, 3.3, 0.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Gateway-Gateway Regional Middle School,06720405, 94.7, 8.9, 28.9, 14.8, 7.8 +4.2,4.2,a-vale-i2,2020-21,Gateway-Gateway Regional High,06720505, 94.5, 9.2, 26.0, 15.3, 5.1 4.248888888888889,4.25,a-vale-i2,2020-21,Georgetown-Perley Elementary,01050005, 95.6, 4.7, 17.4, 21.7, 0.0 +4.32,4.32,a-vale-i2,2020-21,Georgetown-Georgetown Middle School,01050305, 97.2, 4.9, 15.8, 3.0, 1.0 +4.257777777777777,4.26,a-vale-i2,2020-21,Georgetown-Georgetown High School,01050505, 95.8, 7.2, 19.6, 8.8, 2.6 +4.333333333333333,4.33,a-vale-i2,2020-21,Georgetown-Penn Brook,01050010, 97.5, 4.3, 10.2, 3.3, 0.0 3.96,3.96,a-vale-i2,2020-21,Gill-Montague-Turners Fall High,06740505, 89.1, 17.7, 44.6, 34.7, 5.7 -4.071111111111111,4.07,a-vale-i2,2020-21,Gill-Montague-Hillcrest Elementary School,06740015, 91.6, 13.3, 42.1, 30.1, 0.8 3.986666666666667,3.99,a-vale-i2,2020-21,Gill-Montague-Great Falls Middle,06740310, 89.7, 16.9, 47.7, 29.9, 5.6 -4.2444444444444445,4.24,a-vale-i2,2020-21,Gill-Montague-Gill Elementary,06740005, 95.5, 7.4, 20.2, 11.4, 2.6 4.133333333333334,4.13,a-vale-i2,2020-21,Gill-Montague-Sheffield Elementary School,06740050, 93.0, 11.4, 41.8, 27.3, 2.3 +4.071111111111111,4.07,a-vale-i2,2020-21,Gill-Montague-Hillcrest Elementary School,06740015, 91.6, 13.3, 42.1, 30.1, 0.8 +4.2444444444444445,4.24,a-vale-i2,2020-21,Gill-Montague-Gill Elementary,06740005, 95.5, 7.4, 20.2, 11.4, 2.6 4.2444444444444445,4.24,a-vale-i2,2020-21,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 95.5, 7.4, 22.7, 10.4, 1.2 -4.124444444444444,4.12,a-vale-i2,2020-21,Gloucester-Veterans Memorial,01070045, 92.8, 11.8, 48.8, 27.9, 43.3 -4.231111111111111,4.23,a-vale-i2,2020-21,Gloucester-Plum Cove School,01070042, 95.2, 8.0, 28.7, 14.4, 19.6 4.297777777777778,4.3,a-vale-i2,2020-21,Gloucester-Gloucester PreSchool,01070025, 96.7, 4.6, 13.7, 4.9, 10.8 4.142222222222222,4.14,a-vale-i2,2020-21,Gloucester-East Gloucester Elementary,01070020, 93.2, 11.2, 46.1, 25.9, 34.7 4.137777777777777,4.14,a-vale-i2,2020-21,Gloucester-Beeman Memorial,01070010, 93.1, 11.4, 49.1, 22.4, 31.4 -3.5644444444444447,3.56,a-vale-i2,2020-21,Gloucester-Gloucester High,01070505, 80.2, 32.3, 78.8, 61.2, 42.7 4.155555555555556,4.16,a-vale-i2,2020-21,Gloucester-Ralph B O'Maley Middle,01070305, 93.5, 10.7, 42.2, 22.3, 25.2 4.208888888888889,4.21,a-vale-i2,2020-21,Gloucester-West Parish,01070050, 94.7, 8.8, 35.4, 16.2, 18.7 +4.124444444444444,4.12,a-vale-i2,2020-21,Gloucester-Veterans Memorial,01070045, 92.8, 11.8, 48.8, 27.9, 43.3 +4.231111111111111,4.23,a-vale-i2,2020-21,Gloucester-Plum Cove School,01070042, 95.2, 8.0, 28.7, 14.4, 19.6 +3.5644444444444447,3.56,a-vale-i2,2020-21,Gloucester-Gloucester High,01070505, 80.2, 32.3, 78.8, 61.2, 42.7 3.3555555555555556,3.36,a-vale-i2,2020-21,Gosnold-Cuttyhunk Elementary,01090005, 75.5, 30.8, 87.5, 100.0, 0.0 -4.137777777777777,4.14,a-vale-i2,2020-21,Grafton-Grafton Middle,01100305, 93.1, 11.7, 37.7, 21.2, 21.5 -4.302222222222222,4.3,a-vale-i2,2020-21,Grafton-Millbury Street Elementary School,01100200, 96.8, 5.4, 17.0, 5.5, 7.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Grafton-North Street Elementary School,01100030, 96.9, 5.2, 15.9, 7.1, 7.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Grafton-North Grafton Elementary,01100025, 95.6, 7.1, 25.0, 12.0, 8.0 4.288888888888889,4.29,a-vale-i2,2020-21,Grafton-South Grafton Elementary,01100005, 96.5, 5.7, 19.2, 8.9, 13.4 +4.306666666666667,4.31,a-vale-i2,2020-21,Grafton-North Street Elementary School,01100030, 96.9, 5.2, 15.9, 7.1, 7.0 +4.302222222222222,4.3,a-vale-i2,2020-21,Grafton-Millbury Street Elementary School,01100200, 96.8, 5.4, 17.0, 5.5, 7.0 +4.137777777777777,4.14,a-vale-i2,2020-21,Grafton-Grafton Middle,01100305, 93.1, 11.7, 37.7, 21.2, 21.5 4.04,4.04,a-vale-i2,2020-21,Grafton-Grafton High School,01100505, 90.9, 15.4, 51.3, 32.8, 8.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Grafton-North Grafton Elementary,01100025, 95.6, 7.1, 25.0, 12.0, 8.0 4.275555555555556,4.28,a-vale-i2,2020-21,Granby-Granby Jr Sr High School,01110505, 96.2, 6.4, 18.8, 9.7, 0.6 4.266666666666667,4.27,a-vale-i2,2020-21,Granby-East Meadow,01110004, 96.0, 6.5, 19.2, 10.4, 9.2 4.288888888888889,4.29,a-vale-i2,2020-21,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 96.5, 5.8, 17.1, 6.2, 1.3 4.1466666666666665,4.15,a-vale-i2,2020-21,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 93.3, 11.2, 38.8, 21.0, 6.4 4.164444444444444,4.16,a-vale-i2,2020-21,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 93.7, 10.5, 35.0, 17.0, 5.2 4.217777777777778,4.22,a-vale-i2,2020-21,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 94.9, 8.5, 30.8, 13.1, 8.2 +3.3955555555555557,3.4,a-vale-i2,2020-21,Greenfield-The Academy of Early Learning at North Parish,01140005, 76.4, 35.4, 71.9, 57.9, 63.2 3.92,3.92,a-vale-i2,2020-21,Greenfield-Greenfield High,01140505, 88.2, 19.5, 44.6, 32.7, 28.4 -3.933333333333333,3.93,a-vale-i2,2020-21,Greenfield-Federal Street School,01140010, 88.5, 18.4, 48.6, 37.6, 42.7 4.266666666666667,4.27,a-vale-i2,2020-21,Greenfield-Discovery School at Four Corners,01140025, 96.0, 6.5, 18.2, 12.0, 10.2 +3.933333333333333,3.93,a-vale-i2,2020-21,Greenfield-Federal Street School,01140010, 88.5, 18.4, 48.6, 37.6, 42.7 4.102222222222222,4.1,a-vale-i2,2020-21,Greenfield-Greenfield Middle,01140305, 92.3, 12.9, 32.4, 23.4, 26.4 3.9422222222222225,3.94,a-vale-i2,2020-21,Greenfield-Newton School,01140035, 88.7, 18.4, 49.3, 38.0, 45.9 -3.3955555555555557,3.4,a-vale-i2,2020-21,Greenfield-The Academy of Early Learning at North Parish,01140005, 76.4, 35.4, 71.9, 57.9, 63.2 3.8533333333333335,3.85,a-vale-i2,2020-21,Greenfield Commonwealth Virtual District-Greenfield Commonwealth Virtual School,39010900, 86.7, 19.7, 38.3, 34.4, 0.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Groton-Dunstable-Groton Dunstable Regional,06730505, 96.6, 5.6, 14.7, 6.2, 3.2 +4.293333333333333,4.29,a-vale-i2,2020-21,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 96.6, 5.7, 15.7, 5.9, 4.2 4.306666666666667,4.31,a-vale-i2,2020-21,Groton-Dunstable-Florence Roche School,06730010, 96.9, 5.1, 14.3, 4.6, 6.9 4.337777777777777,4.34,a-vale-i2,2020-21,Groton-Dunstable-Swallow/Union School,06730005, 97.6, 3.9, 8.7, 2.1, 5.2 +4.293333333333333,4.29,a-vale-i2,2020-21,Groton-Dunstable-Groton Dunstable Regional,06730505, 96.6, 5.6, 14.7, 6.2, 3.2 4.337777777777777,4.34,a-vale-i2,2020-21,Groton-Dunstable-Boutwell School,06730001, 97.6, 3.7, 11.6, 4.7, 11.6 -4.293333333333333,4.29,a-vale-i2,2020-21,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 96.6, 5.7, 15.7, 5.9, 4.2 4.306666666666667,4.31,a-vale-i2,2020-21,Hadley-Hopkins Academy,01170505, 96.9, 5.2, 12.6, 8.4, 2.3 4.257777777777777,4.26,a-vale-i2,2020-21,Hadley-Hadley Elementary,01170015, 95.8, 6.8, 23.7, 11.1, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Halifax-Halifax Elementary,01180005, 96.9, 5.2, 16.4, 3.8, 4.8 +4.3244444444444445,4.32,a-vale-i2,2020-21,Hamilton-Wenham-Bessie Buker Elementary,06750007, 97.3, 4.4, 8.8, 2.2, 0.9 +4.102222222222222,4.1,a-vale-i2,2020-21,Hamilton-Wenham-Miles River Middle,06750310, 92.3, 12.9, 24.3, 14.7, 10.6 4.315555555555555,4.32,a-vale-i2,2020-21,Hamilton-Wenham-Winthrop School,06750015, 97.1, 4.6, 10.9, 4.3, 2.3 4.2,4.2,a-vale-i2,2020-21,Hamilton-Wenham-Cutler School,06750010, 94.5, 9.0, 11.7, 8.6, 0.8 -4.3244444444444445,4.32,a-vale-i2,2020-21,Hamilton-Wenham-Bessie Buker Elementary,06750007, 97.3, 4.4, 8.8, 2.2, 0.9 4.226666666666667,4.23,a-vale-i2,2020-21,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 95.1, 8.1, 23.7, 9.5, 1.3 -4.102222222222222,4.1,a-vale-i2,2020-21,Hamilton-Wenham-Miles River Middle,06750310, 92.3, 12.9, 24.3, 14.7, 10.6 4.315555555555555,4.32,a-vale-i2,2020-21,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 97.1, 4.9, 10.9, 5.1, 0.7 4.311111111111111,4.31,a-vale-i2,2020-21,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 97.0, 5.0, 12.2, 6.4, 7.6 -4.311111111111111,4.31,a-vale-i2,2020-21,Hampden-Wilbraham-Stony Hill School,06800050, 97.0, 4.9, 14.1, 4.7, 6.4 -4.262222222222222,4.26,a-vale-i2,2020-21,Hampden-Wilbraham-Wilbraham Middle,06800310, 95.9, 6.9, 19.4, 9.0, 0.3 4.133333333333334,4.13,a-vale-i2,2020-21,Hampden-Wilbraham-Minnechaug Regional High,06800505, 93.0, 11.8, 41.0, 21.6, 13.4 +4.311111111111111,4.31,a-vale-i2,2020-21,Hampden-Wilbraham-Stony Hill School,06800050, 97.0, 4.9, 14.1, 4.7, 6.4 +4.311111111111111,4.31,a-vale-i2,2020-21,Hampden-Wilbraham-Soule Road,06800030, 97.0, 5.0, 12.5, 5.6, 4.7 4.222222222222222,4.22,a-vale-i2,2020-21,Hampden-Wilbraham-Mile Tree Elementary,06800025, 95.0, 8.2, 29.3, 11.8, 11.2 4.222222222222222,4.22,a-vale-i2,2020-21,Hampden-Wilbraham-Green Meadows Elementary,06800005, 95.0, 8.3, 30.6, 11.4, 10.2 -4.311111111111111,4.31,a-vale-i2,2020-21,Hampden-Wilbraham-Soule Road,06800030, 97.0, 5.0, 12.5, 5.6, 4.7 +4.262222222222222,4.26,a-vale-i2,2020-21,Hampden-Wilbraham-Wilbraham Middle,06800310, 95.9, 6.9, 19.4, 9.0, 0.3 3.826666666666666,3.83,a-vale-i2,2020-21,Hampshire-Hampshire Regional High,06830505, 86.1, 23.3, 99.1, 66.6, 0.0 4.275555555555556,4.28,a-vale-i2,2020-21,Hancock-Hancock Elementary,01210005, 96.2, 5.7, 22.2, 6.3, 0.0 -4.1866666666666665,4.19,a-vale-i2,2020-21,Hanover-Hanover High,01220505, 94.2, 8.7, 27.4, 14.8, 12.4 -4.306666666666667,4.31,a-vale-i2,2020-21,Hanover-Cedar Elementary,01220004, 96.9, 5.1, 14.7, 4.1, 10.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Hanover-Center Elementary,01220005, 96.4, 6.2, 19.2, 4.5, 3.4 4.297777777777778,4.3,a-vale-i2,2020-21,Hanover-Hanover Middle,01220305, 96.7, 5.7, 15.8, 4.5, 8.3 +4.1866666666666665,4.19,a-vale-i2,2020-21,Hanover-Hanover High,01220505, 94.2, 8.7, 27.4, 14.8, 12.4 +4.306666666666667,4.31,a-vale-i2,2020-21,Hanover-Cedar Elementary,01220004, 96.9, 5.1, 14.7, 4.1, 10.0 4.333333333333333,4.33,a-vale-i2,2020-21,Harvard-Hildreth Elementary School,01250005, 97.5, 4.1, 9.2, 3.1, 2.3 4.28,4.28,a-vale-i2,2020-21,Harvard-Bromfield,01250505, 96.3, 6.2, 15.2, 6.0, 2.3 4.16,4.16,a-vale-i2,2020-21,Hatfield-Hatfield Elementary,01270005, 93.6, 10.6, 40.1, 20.3, 0.0 4.071111111111111,4.07,a-vale-i2,2020-21,Hatfield-Smith Academy,01270505, 91.6, 14.1, 46.2, 29.1, 0.0 -4.111111111111111,4.11,a-vale-i2,2020-21,Haverhill-John G Whittier,01280085, 92.5, 12.4, 34.8, 23.1, 5.5 -4.111111111111111,4.11,a-vale-i2,2020-21,Haverhill-Walnut Square,01280080, 92.5, 12.2, 40.0, 23.8, 11.5 4.115555555555555,4.12,a-vale-i2,2020-21,Haverhill-Tilton,01280075, 92.6, 12.3, 42.0, 26.1, 7.1 -2.4533333333333336,2.45,a-vale-i2,2020-21,Haverhill-Crowell,01280515, 55.2, 70.5, 87.0, 87.0, 43.5 -4.133333333333334,4.13,a-vale-i2,2020-21,Haverhill-Silver Hill Elementary School,01280067, 93.0, 11.6, 33.6, 21.7, 8.1 -3.6755555555555555,3.68,a-vale-i2,2020-21,Haverhill-TEACH,01280073, 82.7, 28.6, 71.4, 57.1, 42.9 -3.888888888888889,3.89,a-vale-i2,2020-21,Haverhill-Haverhill High,01280505, 87.5, 20.2, 45.3, 30.0, 18.1 -3.9733333333333336,3.97,a-vale-i2,2020-21,Haverhill-Tilton Upper Middle School,01280105, 89.4, 17.8, 53.3, 40.2, 8.7 +4.111111111111111,4.11,a-vale-i2,2020-21,Haverhill-Walnut Square,01280080, 92.5, 12.2, 40.0, 23.8, 11.5 +4.111111111111111,4.11,a-vale-i2,2020-21,Haverhill-John G Whittier,01280085, 92.5, 12.4, 34.8, 23.1, 5.5 3.982222222222222,3.98,a-vale-i2,2020-21,Haverhill-Consentino Middle School,01280100, 89.6, 17.1, 52.1, 38.2, 9.6 +3.9733333333333336,3.97,a-vale-i2,2020-21,Haverhill-Tilton Upper Middle School,01280105, 89.4, 17.8, 53.3, 40.2, 8.7 +3.888888888888889,3.89,a-vale-i2,2020-21,Haverhill-Haverhill High,01280505, 87.5, 20.2, 45.3, 30.0, 18.1 +2.4533333333333336,2.45,a-vale-i2,2020-21,Haverhill-Crowell,01280515, 55.2, 70.5, 87.0, 87.0, 43.5 3.911111111111111,3.91,a-vale-i2,2020-21,Haverhill-Bradford Elementary,01280008, 88.0, 19.1, 48.9, 38.6, 14.8 4.057777777777778,4.06,a-vale-i2,2020-21,Haverhill-Golden Hill,01280026, 91.3, 14.1, 45.9, 30.9, 7.9 4.177777777777778,4.18,a-vale-i2,2020-21,Haverhill-Caleb Dustin Hunking School,01280030, 94.0, 10.0, 30.0, 18.5, 5.2 @@ -11750,74 +11748,74 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.071111111111111,4.07,a-vale-i2,2020-21,Haverhill-Moody,01280045, 91.6, 12.4, 47.6, 27.3, 5.6 4.053333333333334,4.05,a-vale-i2,2020-21,Haverhill-Dr Paul Nettle,01280050, 91.2, 14.5, 48.3, 32.2, 11.5 4.106666666666667,4.11,a-vale-i2,2020-21,Haverhill-Pentucket Lake Elementary,01280054, 92.4, 12.5, 38.8, 25.9, 7.0 +4.133333333333334,4.13,a-vale-i2,2020-21,Haverhill-Silver Hill Elementary School,01280067, 93.0, 11.6, 33.6, 21.7, 8.1 +3.6755555555555555,3.68,a-vale-i2,2020-21,Haverhill-TEACH,01280073, 82.7, 28.6, 71.4, 57.1, 42.9 4.24,4.24,a-vale-i2,2020-21,Hawlemont-Hawlemont Regional,06850005, 95.4, 7.3, 23.6, 13.4, 2.4 3.7688888888888887,3.77,a-vale-i2,2020-21,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 84.8, 26.0, 67.0, 53.8, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 96.8, 5.2, 13.4, 7.0, 0.3 4.306666666666667,4.31,a-vale-i2,2020-21,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 96.9, 5.3, 11.5, 6.4, 0.0 -4.24,4.24,a-vale-i2,2020-21,Hingham-Hingham Middle School,01310410, 95.4, 7.7, 24.7, 10.2, 2.8 -4.271111111111111,4.27,a-vale-i2,2020-21,Hingham-Hingham High,01310505, 96.1, 6.5, 18.9, 7.7, 2.4 4.342222222222222,4.34,a-vale-i2,2020-21,Hingham-East Elementary School,01310005, 97.7, 3.6, 7.2, 2.3, 3.0 -4.311111111111111,4.31,a-vale-i2,2020-21,Hingham-Wm L Foster Elementary,01310010, 97.0, 5.0, 12.9, 4.4, 0.4 4.3244444444444445,4.32,a-vale-i2,2020-21,Hingham-Plymouth River,01310019, 97.3, 4.6, 10.4, 5.2, 3.6 +4.311111111111111,4.31,a-vale-i2,2020-21,Hingham-Wm L Foster Elementary,01310010, 97.0, 5.0, 12.9, 4.4, 0.4 +4.271111111111111,4.27,a-vale-i2,2020-21,Hingham-Hingham High,01310505, 96.1, 6.5, 18.9, 7.7, 2.4 +4.24,4.24,a-vale-i2,2020-21,Hingham-Hingham Middle School,01310410, 95.4, 7.7, 24.7, 10.2, 2.8 4.346666666666667,4.35,a-vale-i2,2020-21,Hingham-South Elementary,01310020, 97.8, 3.8, 6.2, 0.4, 0.0 -4.262222222222222,4.26,a-vale-i2,2020-21,Holbrook-John F Kennedy,01330018, 95.9, 6.7, 23.9, 12.0, 8.6 4.266666666666667,4.27,a-vale-i2,2020-21,Holbrook-Holbrook Middle High School,01330505, 96.0, 6.6, 23.4, 11.5, 7.6 +4.262222222222222,4.26,a-vale-i2,2020-21,Holbrook-John F Kennedy,01330018, 95.9, 6.7, 23.9, 12.0, 8.6 4.302222222222222,4.3,a-vale-i2,2020-21,Holland-Holland Elementary,01350005, 96.8, 5.3, 18.6, 4.9, 11.3 -4.297777777777778,4.3,a-vale-i2,2020-21,Holliston-Miller School,01360007, 96.7, 5.6, 16.7, 4.9, 0.0 -4.297777777777778,4.3,a-vale-i2,2020-21,Holliston-Placentino Elementary,01360010, 96.7, 5.5, 15.0, 5.0, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Holliston-Robert H. Adams Middle School,01360305, 97.1, 4.9, 14.2, 4.4, 0.0 4.275555555555556,4.28,a-vale-i2,2020-21,Holliston-Holliston High,01360505, 96.2, 6.5, 12.7, 7.3, 0.0 -3.9511111111111115,3.95,a-vale-i2,2020-21,Holyoke-Holyoke STEM Academy,01370320, 88.9, 18.1, 53.4, 38.5, 3.1 +4.315555555555555,4.32,a-vale-i2,2020-21,Holliston-Robert H. Adams Middle School,01360305, 97.1, 4.9, 14.2, 4.4, 0.0 +4.297777777777778,4.3,a-vale-i2,2020-21,Holliston-Placentino Elementary,01360010, 96.7, 5.5, 15.0, 5.0, 0.0 +4.297777777777778,4.3,a-vale-i2,2020-21,Holliston-Miller School,01360007, 96.7, 5.6, 16.7, 4.9, 0.0 +3.8311111111111114,3.83,a-vale-i2,2020-21,Holyoke-Lt Clayre Sullivan Elementary,01370055, 86.2, 22.6, 61.6, 43.2, 12.3 3.4622222222222225,3.46,a-vale-i2,2020-21,Holyoke-Holyoke High,01370505, 77.9, 35.8, 68.8, 51.6, 11.0 +3.9511111111111115,3.95,a-vale-i2,2020-21,Holyoke-Holyoke STEM Academy,01370320, 88.9, 18.1, 53.4, 38.5, 3.1 3.9644444444444447,3.96,a-vale-i2,2020-21,Holyoke-Veritas Prep Holyoke,01370075, 89.2, 17.8, 58.8, 41.8, 13.1 3.6044444444444443,3.6,a-vale-i2,2020-21,Holyoke-H.B. Lawrence School,01370070, 81.1, 29.1, 77.8, 66.5, 15.3 3.8666666666666667,3.87,a-vale-i2,2020-21,Holyoke-Maurice A Donahue Elementary,01370060, 87.0, 21.1, 65.5, 43.7, 12.6 -3.8311111111111114,3.83,a-vale-i2,2020-21,Holyoke-Lt Clayre Sullivan Elementary,01370055, 86.2, 22.6, 61.6, 43.2, 12.3 -3.968888888888889,3.97,a-vale-i2,2020-21,Holyoke-E N White Elementary,01370045, 89.3, 17.2, 49.1, 34.2, 10.5 3.808888888888889,3.81,a-vale-i2,2020-21,Holyoke-Kelly Elementary,01370040, 85.7, 23.1, 68.4, 50.6, 10.6 -3.7688888888888887,3.77,a-vale-i2,2020-21,Holyoke-William R. Peck School,01370030, 84.8, 24.8, 70.4, 55.6, 11.9 -3.6,3.6,a-vale-i2,2020-21,Holyoke-Morgan Full Service Community School,01370025, 81.0, 29.8, 75.0, 64.0, 13.3 -4.075555555555556,4.08,a-vale-i2,2020-21,Holyoke-Lt Elmer J McMahon Elementary,01370015, 91.7, 13.8, 41.7, 24.7, 7.0 +3.968888888888889,3.97,a-vale-i2,2020-21,Holyoke-E N White Elementary,01370045, 89.3, 17.2, 49.1, 34.2, 10.5 4.173333333333334,4.17,a-vale-i2,2020-21,Holyoke-Joseph Metcalf School,01370003, 93.9, 9.9, 35.3, 19.0, 5.2 +4.075555555555556,4.08,a-vale-i2,2020-21,Holyoke-Lt Elmer J McMahon Elementary,01370015, 91.7, 13.8, 41.7, 24.7, 7.0 +3.6,3.6,a-vale-i2,2020-21,Holyoke-Morgan Full Service Community School,01370025, 81.0, 29.8, 75.0, 64.0, 13.3 +3.7688888888888887,3.77,a-vale-i2,2020-21,Holyoke-William R. Peck School,01370030, 84.8, 24.8, 70.4, 55.6, 11.9 4.346666666666667,4.35,a-vale-i2,2020-21,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 97.8, 3.7, 11.0, 3.1, 5.9 -3.968888888888889,3.97,a-vale-i2,2020-21,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.3, 17.8, 44.8, 34.6, 0.0 4.057777777777778,4.06,a-vale-i2,2020-21,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 91.3, 14.2, 48.1, 30.8, 0.3 3.986666666666667,3.99,a-vale-i2,2020-21,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 89.7, 16.4, 56.0, 37.9, 8.9 +3.968888888888889,3.97,a-vale-i2,2020-21,Hoosac Valley Regional-Hoosac Valley High School,06030505, 89.3, 17.8, 44.8, 34.6, 0.0 +4.315555555555555,4.32,a-vale-i2,2020-21,Hopedale-Park Street School,01380003, 97.1, 4.9, 17.1, 4.9, 17.1 4.288888888888889,4.29,a-vale-i2,2020-21,Hopedale-Hopedale Jr Sr High,01380505, 96.5, 5.8, 14.3, 7.6, 4.3 4.311111111111111,4.31,a-vale-i2,2020-21,Hopedale-Memorial,01380010, 97.0, 5.0, 12.4, 5.2, 0.7 -4.315555555555555,4.32,a-vale-i2,2020-21,Hopedale-Park Street School,01380003, 97.1, 4.9, 17.1, 4.9, 17.1 -4.191111111111111,4.19,a-vale-i2,2020-21,Hopkinton-Hopkinton Pre-School,01390003, 94.3, 9.0, 35.4, 17.1, 7.3 -4.333333333333333,4.33,a-vale-i2,2020-21,Hopkinton-Marathon Elementary School,01390005, 97.5, 4.1, 10.1, 4.6, 0.2 -4.364444444444445,4.36,a-vale-i2,2020-21,Hopkinton-Elmwood,01390010, 98.2, 3.0, 5.2, 2.0, 0.8 -4.271111111111111,4.27,a-vale-i2,2020-21,Hopkinton-Hopkinton High,01390505, 96.1, 6.6, 22.1, 7.8, 3.9 -4.333333333333333,4.33,a-vale-i2,2020-21,Hopkinton-Hopkins Elementary School,01390015, 97.5, 4.1, 10.9, 3.7, 0.8 4.297777777777778,4.3,a-vale-i2,2020-21,Hopkinton-Hopkinton Middle School,01390305, 96.7, 5.6, 14.3, 6.5, 0.8 -3.977777777777778,3.98,a-vale-i2,2020-21,Hudson-Hudson High,01410505, 89.5, 17.0, 43.9, 33.2, 9.2 +4.333333333333333,4.33,a-vale-i2,2020-21,Hopkinton-Marathon Elementary School,01390005, 97.5, 4.1, 10.1, 4.6, 0.2 +4.191111111111111,4.19,a-vale-i2,2020-21,Hopkinton-Hopkinton Pre-School,01390003, 94.3, 9.0, 35.4, 17.1, 7.3 +4.271111111111111,4.27,a-vale-i2,2020-21,Hopkinton-Hopkinton High,01390505, 96.1, 6.6, 22.1, 7.8, 3.9 +4.364444444444445,4.36,a-vale-i2,2020-21,Hopkinton-Elmwood,01390010, 98.2, 3.0, 5.2, 2.0, 0.8 +4.333333333333333,4.33,a-vale-i2,2020-21,Hopkinton-Hopkins Elementary School,01390015, 97.5, 4.1, 10.9, 3.7, 0.8 4.111111111111111,4.11,a-vale-i2,2020-21,Hudson-David J. Quinn Middle School,01410410, 92.5, 12.4, 39.6, 25.8, 9.1 4.266666666666667,4.27,a-vale-i2,2020-21,Hudson-C A Farley,01410030, 96.0, 6.6, 22.1, 12.9, 6.6 -4.302222222222222,4.3,a-vale-i2,2020-21,Hudson-Forest Avenue Elementary,01410015, 96.8, 5.2, 16.9, 8.1, 1.5 +3.977777777777778,3.98,a-vale-i2,2020-21,Hudson-Hudson High,01410505, 89.5, 17.0, 43.9, 33.2, 9.2 4.2444444444444445,4.24,a-vale-i2,2020-21,Hudson-Mulready Elementary,01410007, 95.5, 7.3, 22.9, 12.8, 7.8 +4.302222222222222,4.3,a-vale-i2,2020-21,Hudson-Forest Avenue Elementary,01410015, 96.8, 5.2, 16.9, 8.1, 1.5 3.88,3.88,a-vale-i2,2020-21,Hull-Hull High,01420505, 87.3, 21.0, 57.4, 39.2, 20.0 -4.017777777777778,4.02,a-vale-i2,2020-21,Hull-Memorial Middle,01420305, 90.4, 15.9, 47.3, 30.3, 14.9 4.195555555555556,4.2,a-vale-i2,2020-21,Hull-Lillian M Jacobs,01420015, 94.4, 9.1, 36.4, 17.8, 10.1 +4.017777777777778,4.02,a-vale-i2,2020-21,Hull-Memorial Middle,01420305, 90.4, 15.9, 47.3, 30.3, 14.9 4.257777777777777,4.26,a-vale-i2,2020-21,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 95.8, 7.0, 16.1, 9.4, 0.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Ipswich-Winthrop,01440015, 97.4, 4.4, 12.0, 4.1, 4.9 4.32,4.32,a-vale-i2,2020-21,Ipswich-Ipswich High,01440505, 97.2, 4.9, 12.0, 5.6, 1.1 -4.333333333333333,4.33,a-vale-i2,2020-21,Ipswich-Paul F Doyon Memorial,01440007, 97.5, 4.3, 9.7, 2.7, 0.3 4.355555555555555,4.36,a-vale-i2,2020-21,Ipswich-Ipswich Middle School,01440305, 98.0, 3.6, 8.3, 1.6, 2.1 +4.333333333333333,4.33,a-vale-i2,2020-21,Ipswich-Paul F Doyon Memorial,01440007, 97.5, 4.3, 9.7, 2.7, 0.3 +4.328888888888889,4.33,a-vale-i2,2020-21,Ipswich-Winthrop,01440015, 97.4, 4.4, 12.0, 4.1, 4.9 3.902222222222222,3.9,a-vale-i2,2020-21,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 87.8, 20.9, 64.8, 41.0, 1.1 3.991111111111111,3.99,a-vale-i2,2020-21,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 89.8, 17.9, 56.3, 34.8, 0.1 3.8533333333333335,3.85,a-vale-i2,2020-21,King Philip-King Philip Regional High,06900505, 86.7, 22.0, 59.0, 40.6, 6.6 4.2844444444444445,4.28,a-vale-i2,2020-21,King Philip-King Philip Middle School,06900510, 96.4, 6.1, 16.5, 6.7, 7.6 4.266666666666667,4.27,a-vale-i2,2020-21,Kingston-Kingston Elementary,01450005, 96.0, 6.6, 19.3, 8.9, 2.5 4.253333333333334,4.25,a-vale-i2,2020-21,Kingston-Kingston Intermediate,01450020, 95.7, 7.2, 23.7, 8.6, 0.0 -4.408888888888889,4.41,a-vale-i2,2020-21,Lawrence-UP Academy Oliver Middle School,01490049, 99.2, 1.3, 2.6, 0.3, 0.0 4.288888888888889,4.29,a-vale-i2,2020-21,Lawrence-Parthum Middle School,01490027, 96.5, 6.1, 20.0, 7.6, 0.0 -4.28,4.28,a-vale-i2,2020-21,Lawrence-Francis M Leahy,01490040, 96.3, 6.3, 20.2, 12.7, 0.0 -4.168888888888889,4.17,a-vale-i2,2020-21,Lawrence-Oliver Partnership School,01490048, 93.8, 10.8, 38.6, 19.3, 0.0 -4.4,4.4,a-vale-i2,2020-21,Lawrence-Guilmette Middle School,01490025, 99.0, 1.7, 3.4, 1.7, 0.0 -4.408888888888889,4.41,a-vale-i2,2020-21,Lawrence-Edward F. Parthum,01490053, 99.2, 1.3, 3.2, 1.3, 0.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Lawrence-John K Tarbox,01490075, 95.6, 7.6, 26.2, 10.9, 0.0 +1.1377777777777778,1.14,a-vale-i2,2020-21,Lawrence-RISE Academy,01490615, 25.6, 101.5, 100.0, 97.3, 0.0 +4.195555555555556,4.2,a-vale-i2,2020-21,Lawrence-Lawlor Early Childhood Center,01490002, 94.4, 8.8, 28.1, 15.0, 0.0 +4.204444444444444,4.2,a-vale-i2,2020-21,Lawrence-John Breen School,01490003, 94.6, 8.1, 31.8, 20.0, 0.0 +4.137777777777777,4.14,a-vale-i2,2020-21,Lawrence-South Lawrence East Elementary School,01490004, 93.1, 11.8, 40.0, 23.8, 0.0 4.413333333333333,4.41,a-vale-i2,2020-21,Lawrence-Community Day Arlington,01490009, 99.3, 1.1, 4.2, 2.4, 0.0 4.213333333333333,4.21,a-vale-i2,2020-21,Lawrence-Lawrence Family Public Academy,01490011, 94.8, 8.7, 32.9, 15.9, 0.0 4.155555555555556,4.16,a-vale-i2,2020-21,Lawrence-Alexander B Bruce,01490015, 93.5, 11.1, 36.5, 23.9, 0.0 @@ -11825,48 +11823,50 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.368888888888889,4.37,a-vale-i2,2020-21,Lawrence-Robert Frost,01490018, 98.3, 3.0, 7.3, 2.8, 0.0 4.173333333333334,4.17,a-vale-i2,2020-21,Lawrence-James F Hennessey,01490020, 93.9, 9.9, 34.6, 19.7, 0.0 4.288888888888889,4.29,a-vale-i2,2020-21,Lawrence-Gerard A. Guilmette,01490022, 96.5, 6.0, 19.7, 5.0, 0.0 -4.137777777777777,4.14,a-vale-i2,2020-21,Lawrence-South Lawrence East Elementary School,01490004, 93.1, 11.8, 40.0, 23.8, 0.0 -4.204444444444444,4.2,a-vale-i2,2020-21,Lawrence-John Breen School,01490003, 94.6, 8.1, 31.8, 20.0, 0.0 -4.195555555555556,4.2,a-vale-i2,2020-21,Lawrence-Lawlor Early Childhood Center,01490002, 94.4, 8.8, 28.1, 15.0, 0.0 +4.4,4.4,a-vale-i2,2020-21,Lawrence-Guilmette Middle School,01490025, 99.0, 1.7, 3.4, 1.7, 0.0 4.026666666666666,4.03,a-vale-i2,2020-21,Lawrence-Rollins Early Childhood Center,01490001, 90.6, 14.8, 42.8, 31.3, 0.0 -1.1377777777777778,1.14,a-vale-i2,2020-21,Lawrence-RISE Academy,01490615, 25.6, 101.5, 100.0, 97.3, 0.0 -3.4755555555555557,3.48,a-vale-i2,2020-21,Lawrence-School for Exceptional Studies,01490537, 78.2, 37.7, 73.3, 60.3, 0.0 -4.044444444444444,4.04,a-vale-i2,2020-21,Lawrence-High School Learning Center,01490536, 91.0, 14.2, 34.1, 30.8, 0.5 -4.444444444444445,4.44,a-vale-i2,2020-21,Lawrence-Frost Middle School,01490525, 100.0, 0.0, 0.0, 0.0, 0.0 -3.933333333333333,3.93,a-vale-i2,2020-21,Lawrence-Lawrence High School,01490515, 88.5, 19.7, 43.1, 33.0, 19.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Lawrence-UP Academy Leonard Middle School,01490090, 96.9, 5.4, 14.8, 7.6, 0.0 -4.093333333333333,4.09,a-vale-i2,2020-21,Lawrence-Spark Academy,01490085, 92.1, 13.9, 38.5, 29.0, 0.0 +4.28,4.28,a-vale-i2,2020-21,Lawrence-Francis M Leahy,01490040, 96.3, 6.3, 20.2, 12.7, 0.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Lawrence-Oliver Partnership School,01490048, 93.8, 10.8, 38.6, 19.3, 0.0 +4.408888888888889,4.41,a-vale-i2,2020-21,Lawrence-UP Academy Oliver Middle School,01490049, 99.2, 1.3, 2.6, 0.3, 0.0 +4.408888888888889,4.41,a-vale-i2,2020-21,Lawrence-Edward F. Parthum,01490053, 99.2, 1.3, 3.2, 1.3, 0.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Lawrence-John K Tarbox,01490075, 95.6, 7.6, 26.2, 10.9, 0.0 4.391111111111111,4.39,a-vale-i2,2020-21,Lawrence-Emily G Wetherbee,01490080, 98.8, 2.1, 4.0, 2.4, 0.0 +4.093333333333333,4.09,a-vale-i2,2020-21,Lawrence-Spark Academy,01490085, 92.1, 13.9, 38.5, 29.0, 0.0 +4.306666666666667,4.31,a-vale-i2,2020-21,Lawrence-UP Academy Leonard Middle School,01490090, 96.9, 5.4, 14.8, 7.6, 0.0 +3.933333333333333,3.93,a-vale-i2,2020-21,Lawrence-Lawrence High School,01490515, 88.5, 19.7, 43.1, 33.0, 19.0 +4.444444444444445,4.44,a-vale-i2,2020-21,Lawrence-Frost Middle School,01490525, 100.0, 0.0, 0.0, 0.0, 0.0 +4.044444444444444,4.04,a-vale-i2,2020-21,Lawrence-High School Learning Center,01490536, 91.0, 14.2, 34.1, 30.8, 0.5 +3.4755555555555557,3.48,a-vale-i2,2020-21,Lawrence-School for Exceptional Studies,01490537, 78.2, 37.7, 73.3, 60.3, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 96.6, 5.8, 18.5, 7.5, 2.2 4.32,4.32,a-vale-i2,2020-21,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 97.2, 4.8, 15.6, 3.9, 0.1 -4.2444444444444445,4.24,a-vale-i2,2020-21,Lee-Lee Elementary,01500025, 95.5, 7.3, 28.2, 12.4, 2.3 4.2,4.2,a-vale-i2,2020-21,Lee-Lee Middle/High School,01500505, 94.5, 9.1, 35.3, 9.5, 3.3 -4.013333333333334,4.01,a-vale-i2,2020-21,Leicester-Leicester High,01510505, 90.3, 16.3, 52.7, 32.1, 2.5 +4.2444444444444445,4.24,a-vale-i2,2020-21,Lee-Lee Elementary,01500025, 95.5, 7.3, 28.2, 12.4, 2.3 4.191111111111111,4.19,a-vale-i2,2020-21,Leicester-Leicester Middle,01510015, 94.3, 9.5, 34.4, 17.4, 1.4 -4.217777777777778,4.22,a-vale-i2,2020-21,Leicester-Leicester Elementary,01510005, 94.9, 8.2, 27.0, 14.0, 2.4 +4.013333333333334,4.01,a-vale-i2,2020-21,Leicester-Leicester High,01510505, 90.3, 16.3, 52.7, 32.1, 2.5 4.2844444444444445,4.28,a-vale-i2,2020-21,Leicester-Leicester Integrated Preschool,01510001, 96.4, 5.4, 15.8, 7.9, 0.0 +4.217777777777778,4.22,a-vale-i2,2020-21,Leicester-Leicester Elementary,01510005, 94.9, 8.2, 27.0, 14.0, 2.4 4.32,4.32,a-vale-i2,2020-21,Lenox-Lenox Memorial High,01520505, 97.2, 4.8, 11.5, 4.7, 6.5 4.302222222222222,4.3,a-vale-i2,2020-21,Lenox-Morris,01520015, 96.8, 5.3, 15.3, 8.0, 0.0 -3.92,3.92,a-vale-i2,2020-21,Leominster-Sky View Middle School,01530320, 88.2, 19.5, 53.3, 40.8, 30.1 -3.911111111111111,3.91,a-vale-i2,2020-21,Leominster-Samoset School,01530045, 88.0, 19.6, 51.8, 36.8, 31.3 -4.106666666666667,4.11,a-vale-i2,2020-21,Leominster-Priest Street,01530040, 92.4, 11.9, 39.3, 27.0, 30.3 -4.204444444444444,4.2,a-vale-i2,2020-21,Leominster-Northwest,01530030, 94.6, 8.7, 28.8, 16.8, 27.2 -4.226666666666667,4.23,a-vale-i2,2020-21,Leominster-Johnny Appleseed,01530025, 95.1, 8.0, 24.5, 13.9, 23.3 -4.253333333333334,4.25,a-vale-i2,2020-21,Leominster-Frances Drake School,01530010, 95.7, 6.9, 23.4, 13.3, 22.6 -4.302222222222222,4.3,a-vale-i2,2020-21,Leominster-Fall Brook,01530007, 96.8, 5.1, 16.2, 8.4, 16.0 4.08,4.08,a-vale-i2,2020-21,Leominster-Lincoln School,01530005, 91.8, 6.9, 25.9, 29.6, 18.5 -4.328888888888889,4.33,a-vale-i2,2020-21,Leominster-Bennett,01530003, 97.4, 1.9, 0.0, 9.2, 0.0 -4.155555555555556,4.16,a-vale-i2,2020-21,Leominster-Leominster High School,01530505, 93.5, 10.6, 30.4, 19.8, 23.2 +4.302222222222222,4.3,a-vale-i2,2020-21,Leominster-Fall Brook,01530007, 96.8, 5.1, 16.2, 8.4, 16.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Leominster-Frances Drake School,01530010, 95.7, 6.9, 23.4, 13.3, 22.6 4.075555555555556,4.08,a-vale-i2,2020-21,Leominster-Center For Technical Education Innovation,01530605, 91.7, 13.8, 45.4, 30.0, 42.0 +4.204444444444444,4.2,a-vale-i2,2020-21,Leominster-Northwest,01530030, 94.6, 8.7, 28.8, 16.8, 27.2 +4.106666666666667,4.11,a-vale-i2,2020-21,Leominster-Priest Street,01530040, 92.4, 11.9, 39.3, 27.0, 30.3 +3.911111111111111,3.91,a-vale-i2,2020-21,Leominster-Samoset School,01530045, 88.0, 19.6, 51.8, 36.8, 31.3 +4.328888888888889,4.33,a-vale-i2,2020-21,Leominster-Bennett,01530003, 97.4, 1.9, 0.0, 9.2, 0.0 +3.92,3.92,a-vale-i2,2020-21,Leominster-Sky View Middle School,01530320, 88.2, 19.5, 53.3, 40.8, 30.1 +4.226666666666667,4.23,a-vale-i2,2020-21,Leominster-Johnny Appleseed,01530025, 95.1, 8.0, 24.5, 13.9, 23.3 +4.155555555555556,4.16,a-vale-i2,2020-21,Leominster-Leominster High School,01530505, 93.5, 10.6, 30.4, 19.8, 23.2 3.9422222222222225,3.94,a-vale-i2,2020-21,Leominster-Leominster Center for Excellence,01530515, 88.7, 17.8, 60.5, 46.5, 39.5 4.271111111111111,4.27,a-vale-i2,2020-21,Leverett-Leverett Elementary,01540005, 96.1, 6.4, 21.2, 10.2, 2.5 -4.386666666666667,4.39,a-vale-i2,2020-21,Lexington-Joseph Estabrook,01550010, 98.7, 2.2, 3.9, 0.7, 0.6 -4.382222222222222,4.38,a-vale-i2,2020-21,Lexington-Fiske,01550015, 98.6, 2.4, 5.1, 1.5, 0.3 -4.364444444444445,4.36,a-vale-i2,2020-21,Lexington-Harrington,01550030, 98.2, 3.1, 8.7, 2.7, 0.9 4.391111111111111,4.39,a-vale-i2,2020-21,Lexington-Maria Hastings,01550035, 98.8, 2.0, 2.7, 0.5, 0.3 -4.293333333333333,4.29,a-vale-i2,2020-21,Lexington-Jonas Clarke Middle,01550305, 96.6, 5.8, 18.8, 7.2, 1.1 -4.2444444444444445,4.24,a-vale-i2,2020-21,Lexington-Wm Diamond Middle,01550310, 95.5, 7.7, 28.2, 11.7, 0.6 4.377777777777778,4.38,a-vale-i2,2020-21,Lexington-Lexington High,01550505, 98.5, 2.5, 4.9, 2.5, 1.0 +4.2444444444444445,4.24,a-vale-i2,2020-21,Lexington-Wm Diamond Middle,01550310, 95.5, 7.7, 28.2, 11.7, 0.6 +4.293333333333333,4.29,a-vale-i2,2020-21,Lexington-Jonas Clarke Middle,01550305, 96.6, 5.8, 18.8, 7.2, 1.1 +4.386666666666667,4.39,a-vale-i2,2020-21,Lexington-Joseph Estabrook,01550010, 98.7, 2.2, 3.9, 0.7, 0.6 +4.364444444444445,4.36,a-vale-i2,2020-21,Lexington-Harrington,01550030, 98.2, 3.1, 8.7, 2.7, 0.9 +4.382222222222222,4.38,a-vale-i2,2020-21,Lexington-Fiske,01550015, 98.6, 2.4, 5.1, 1.5, 0.3 4.253333333333334,4.25,a-vale-i2,2020-21,Lexington-Lexington Children's Place,01550001, 95.7, 6.8, 23.1, 13.8, 4.6 4.355555555555555,4.36,a-vale-i2,2020-21,Lexington-Bridge,01550006, 98.0, 3.3, 9.1, 2.9, 0.0 4.4,4.4,a-vale-i2,2020-21,Lexington-Bowman,01550008, 99.0, 1.6, 1.1, 1.3, 0.2 @@ -11876,27 +11876,31 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.2,4.2,a-vale-i2,2020-21,Lincoln-Hanscom Middle,01570305, 94.5, 8.3, 31.7, 16.6, 0.4 4.328888888888889,4.33,a-vale-i2,2020-21,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 97.4, 4.4, 10.8, 3.8, 0.3 4.297777777777778,4.3,a-vale-i2,2020-21,Littleton-Littleton High School,01580505, 96.7, 5.5, 11.8, 7.1, 2.1 -4.355555555555555,4.36,a-vale-i2,2020-21,Littleton-Shaker Lane Elementary,01580005, 98.0, 3.2, 6.1, 2.6, 1.1 -4.355555555555555,4.36,a-vale-i2,2020-21,Littleton-Russell St Elementary,01580015, 98.0, 3.3, 6.1, 4.0, 1.3 4.311111111111111,4.31,a-vale-i2,2020-21,Littleton-Littleton Middle School,01580305, 97.0, 5.0, 12.1, 5.3, 1.8 +4.355555555555555,4.36,a-vale-i2,2020-21,Littleton-Russell St Elementary,01580015, 98.0, 3.3, 6.1, 4.0, 1.3 +4.355555555555555,4.36,a-vale-i2,2020-21,Littleton-Shaker Lane Elementary,01580005, 98.0, 3.2, 6.1, 2.6, 1.1 +4.337777777777777,4.34,a-vale-i2,2020-21,Longmeadow-Williams Middle,01590305, 97.6, 4.1, 8.9, 3.6, 0.0 4.3244444444444445,4.32,a-vale-i2,2020-21,Longmeadow-Wolf Swamp Road,01590025, 97.3, 4.4, 13.4, 5.0, 0.0 4.368888888888889,4.37,a-vale-i2,2020-21,Longmeadow-Glenbrook Middle,01590017, 98.3, 2.9, 5.1, 1.8, 0.3 4.315555555555555,4.32,a-vale-i2,2020-21,Longmeadow-Center,01590010, 97.1, 4.8, 15.2, 3.2, 0.2 -4.333333333333333,4.33,a-vale-i2,2020-21,Longmeadow-Blueberry Hill,01590005, 97.5, 4.2, 10.6, 3.7, 0.2 4.355555555555555,4.36,a-vale-i2,2020-21,Longmeadow-Longmeadow High,01590505, 98.0, 3.3, 6.0, 3.3, 0.1 -4.337777777777777,4.34,a-vale-i2,2020-21,Longmeadow-Williams Middle,01590305, 97.6, 4.1, 8.9, 3.6, 0.0 -4.155555555555556,4.16,a-vale-i2,2020-21,Lowell-Washington,01600055, 93.5, 10.5, 32.8, 20.6, 10.1 -4.173333333333334,4.17,a-vale-i2,2020-21,Lowell-John J Shaughnessy,01600050, 93.9, 9.9, 36.2, 20.3, 7.5 -4.151111111111112,4.15,a-vale-i2,2020-21,Lowell-Peter W Reilly,01600040, 93.4, 10.6, 31.4, 20.8, 5.7 -4.208888888888889,4.21,a-vale-i2,2020-21,Lowell-Pawtucketville Memorial,01600036, 94.7, 8.7, 29.1, 18.0, 3.6 -4.2,4.2,a-vale-i2,2020-21,Lowell-Charles W Morey,01600030, 94.5, 9.1, 27.4, 15.2, 5.6 -4.155555555555556,4.16,a-vale-i2,2020-21,Lowell-Moody Elementary,01600027, 93.5, 10.6, 39.5, 24.1, 3.1 -4.177777777777778,4.18,a-vale-i2,2020-21,Lowell-Abraham Lincoln,01600020, 94.0, 9.9, 36.8, 18.3, 3.8 -3.72,3.72,a-vale-i2,2020-21,Lowell-Laura Lee Therapeutic Day School,01600085, 83.7, 26.6, 65.2, 43.5, 30.4 +4.333333333333333,4.33,a-vale-i2,2020-21,Longmeadow-Blueberry Hill,01590005, 97.5, 4.2, 10.6, 3.7, 0.2 +4.253333333333334,4.25,a-vale-i2,2020-21,Lowell-Dr Gertrude Bailey,01600002, 95.7, 7.0, 24.4, 11.2, 3.0 +3.9955555555555557,4.0,a-vale-i2,2020-21,Lowell-Rogers STEM Academy,01600005, 89.9, 16.5, 50.3, 35.0, 12.1 +4.1288888888888895,4.13,a-vale-i2,2020-21,Lowell-Joseph McAvinnue,01600010, 92.9, 11.4, 35.3, 24.1, 7.1 +3.991111111111111,3.99,a-vale-i2,2020-21,Lowell-Greenhalge,01600015, 89.8, 16.2, 52.6, 35.0, 8.7 4.1866666666666665,4.19,a-vale-i2,2020-21,Lowell-Pyne Arts,01600018, 94.2, 9.5, 32.0, 17.1, 8.5 +4.177777777777778,4.18,a-vale-i2,2020-21,Lowell-Abraham Lincoln,01600020, 94.0, 9.9, 36.8, 18.3, 3.8 +3.991111111111111,3.99,a-vale-i2,2020-21,Lowell-Cardinal O'Connell Early Learning Center,01600001, 89.8, 14.9, 46.7, 38.0, 26.1 +4.155555555555556,4.16,a-vale-i2,2020-21,Lowell-Moody Elementary,01600027, 93.5, 10.6, 39.5, 24.1, 3.1 +4.2,4.2,a-vale-i2,2020-21,Lowell-Charles W Morey,01600030, 94.5, 9.1, 27.4, 15.2, 5.6 +4.208888888888889,4.21,a-vale-i2,2020-21,Lowell-Pawtucketville Memorial,01600036, 94.7, 8.7, 29.1, 18.0, 3.6 +4.151111111111112,4.15,a-vale-i2,2020-21,Lowell-Peter W Reilly,01600040, 93.4, 10.6, 31.4, 20.8, 5.7 +4.173333333333334,4.17,a-vale-i2,2020-21,Lowell-John J Shaughnessy,01600050, 93.9, 9.9, 36.2, 20.3, 7.5 +4.155555555555556,4.16,a-vale-i2,2020-21,Lowell-Washington,01600055, 93.5, 10.5, 32.8, 20.6, 10.1 4.115555555555555,4.12,a-vale-i2,2020-21,Lowell-S Christa McAuliffe Elementary,01600075, 92.6, 12.0, 38.6, 24.8, 5.5 4.1866666666666665,4.19,a-vale-i2,2020-21,Lowell-Charlotte M Murkland Elementary,01600080, 94.2, 9.4, 33.3, 19.1, 6.0 -3.586666666666667,3.59,a-vale-i2,2020-21,Lowell-Dr. Janice Adie Day School,01600605, 80.7, 31.8, 74.0, 58.0, 30.0 +3.72,3.72,a-vale-i2,2020-21,Lowell-Laura Lee Therapeutic Day School,01600085, 83.7, 26.6, 65.2, 43.5, 30.4 4.075555555555556,4.08,a-vale-i2,2020-21,Lowell-Bartlett Community Partnership,01600090, 91.7, 13.5, 41.6, 27.4, 8.0 4.182222222222222,4.18,a-vale-i2,2020-21,Lowell-B.F. Butler Middle School,01600310, 94.1, 9.8, 33.0, 19.6, 6.4 4.28,4.28,a-vale-i2,2020-21,Lowell-James S Daley Middle School,01600315, 96.3, 6.1, 17.6, 7.8, 2.8 @@ -11907,171 +11911,167 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.222222222222222,4.22,a-vale-i2,2020-21,Lowell-Kathryn P. Stoklosa Middle School,01600360, 95.0, 8.3, 28.4, 14.9, 5.1 4.04,4.04,a-vale-i2,2020-21,Lowell-Lowell High,01600505, 90.9, 14.8, 32.3, 22.9, 3.8 2.8444444444444446,2.84,a-vale-i2,2020-21,Lowell-The Career Academy,01600515, 64.0, 55.0, 67.6, 65.7, 21.6 -3.991111111111111,3.99,a-vale-i2,2020-21,Lowell-Cardinal O'Connell Early Learning Center,01600001, 89.8, 14.9, 46.7, 38.0, 26.1 -4.253333333333334,4.25,a-vale-i2,2020-21,Lowell-Dr Gertrude Bailey,01600002, 95.7, 7.0, 24.4, 11.2, 3.0 -3.9955555555555557,4.0,a-vale-i2,2020-21,Lowell-Rogers STEM Academy,01600005, 89.9, 16.5, 50.3, 35.0, 12.1 -4.1288888888888895,4.13,a-vale-i2,2020-21,Lowell-Joseph McAvinnue,01600010, 92.9, 11.4, 35.3, 24.1, 7.1 -3.991111111111111,3.99,a-vale-i2,2020-21,Lowell-Greenhalge,01600015, 89.8, 16.2, 52.6, 35.0, 8.7 +3.586666666666667,3.59,a-vale-i2,2020-21,Lowell-Dr. Janice Adie Day School,01600605, 80.7, 31.8, 74.0, 58.0, 30.0 4.204444444444444,4.2,a-vale-i2,2020-21,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 94.6, 9.0, 30.4, 16.1, 2.2 2.16,2.16,a-vale-i2,2020-21,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 48.6, 74.9, 89.9, 84.8, 0.0 -4.222222222222222,4.22,a-vale-i2,2020-21,Ludlow-East Street Elementary School,01610010, 95.0, 8.3, 26.5, 13.1, 4.1 -4.235555555555555,4.24,a-vale-i2,2020-21,Ludlow-Paul R Baird Middle,01610305, 95.3, 7.9, 23.7, 11.7, 5.8 -4.275555555555556,4.28,a-vale-i2,2020-21,Ludlow-Veterans Park Elementary,01610023, 96.2, 6.4, 20.1, 8.4, 5.1 -4.293333333333333,4.29,a-vale-i2,2020-21,Ludlow-Chapin Street Elementary School,01610020, 96.6, 5.6, 16.2, 8.9, 4.0 4.208888888888889,4.21,a-vale-i2,2020-21,Ludlow-Ludlow Senior High,01610505, 94.7, 8.7, 28.2, 13.3, 2.1 -4.195555555555556,4.2,a-vale-i2,2020-21,Lunenburg-Lunenburg High,01620505, 94.4, 9.4, 33.4, 16.9, 0.0 -4.204444444444444,4.2,a-vale-i2,2020-21,Lunenburg-Lunenburg Middle School,01620305, 94.6, 8.8, 31.0, 17.0, 0.3 -4.235555555555555,4.24,a-vale-i2,2020-21,Lunenburg-Turkey Hill Elementary School,01620025, 95.3, 7.6, 25.7, 11.3, 0.0 +4.293333333333333,4.29,a-vale-i2,2020-21,Ludlow-Chapin Street Elementary School,01610020, 96.6, 5.6, 16.2, 8.9, 4.0 +4.275555555555556,4.28,a-vale-i2,2020-21,Ludlow-Veterans Park Elementary,01610023, 96.2, 6.4, 20.1, 8.4, 5.1 +4.235555555555555,4.24,a-vale-i2,2020-21,Ludlow-Paul R Baird Middle,01610305, 95.3, 7.9, 23.7, 11.7, 5.8 +4.222222222222222,4.22,a-vale-i2,2020-21,Ludlow-East Street Elementary School,01610010, 95.0, 8.3, 26.5, 13.1, 4.1 4.315555555555555,4.32,a-vale-i2,2020-21,Lunenburg-Lunenburg Primary School,01620010, 97.1, 4.5, 12.9, 6.5, 0.0 -4.111111111111111,4.11,a-vale-i2,2020-21,Lynn-William R Fallon,01630080, 92.5, 12.4, 46.9, 25.0, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Lunenburg-Turkey Hill Elementary School,01620025, 95.3, 7.6, 25.7, 11.3, 0.0 +4.204444444444444,4.2,a-vale-i2,2020-21,Lunenburg-Lunenburg Middle School,01620305, 94.6, 8.8, 31.0, 17.0, 0.3 +4.195555555555556,4.2,a-vale-i2,2020-21,Lunenburg-Lunenburg High,01620505, 94.4, 9.4, 33.4, 16.9, 0.0 +4.2444444444444445,4.24,a-vale-i2,2020-21,Lynn-Robert L Ford,01630050, 95.5, 7.4, 26.7, 12.1, 0.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Hood,01630055, 95.1, 8.0, 23.6, 11.5, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Lynn-Ingalls,01630060, 95.3, 7.7, 27.8, 14.2, 0.0 +4.328888888888889,4.33,a-vale-i2,2020-21,Lynn-Lincoln-Thomson,01630070, 97.4, 4.3, 14.2, 4.3, 0.0 4.297777777777778,4.3,a-vale-i2,2020-21,Lynn-Lynn Woods,01630075, 96.7, 5.5, 18.7, 5.2, 0.0 +4.111111111111111,4.11,a-vale-i2,2020-21,Lynn-William R Fallon,01630080, 92.5, 12.4, 46.9, 25.0, 0.0 +4.275555555555556,4.28,a-vale-i2,2020-21,Lynn-Sewell-Anderson,01630085, 96.2, 6.3, 20.4, 8.9, 0.0 4.155555555555556,4.16,a-vale-i2,2020-21,Lynn-Capt William G Shoemaker,01630090, 93.5, 10.8, 28.9, 20.8, 0.0 4.204444444444444,4.2,a-vale-i2,2020-21,Lynn-Edward A Sisson,01630095, 94.6, 8.9, 23.9, 13.0, 0.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Lynn-Tracy,01630100, 96.4, 6.0, 17.9, 7.4, 0.0 4.133333333333334,4.13,a-vale-i2,2020-21,Lynn-Thurgood Marshall Mid,01630305, 93.0, 11.6, 35.7, 22.6, 0.0 4.124444444444444,4.12,a-vale-i2,2020-21,Lynn-Breed Middle School,01630405, 92.8, 11.9, 34.2, 21.9, 0.0 4.2,4.2,a-vale-i2,2020-21,Lynn-Pickering Middle,01630420, 94.5, 9.2, 23.9, 12.9, 0.0 -4.275555555555556,4.28,a-vale-i2,2020-21,Lynn-Sewell-Anderson,01630085, 96.2, 6.3, 20.4, 8.9, 0.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Lynn-Lincoln-Thomson,01630070, 97.4, 4.3, 14.2, 4.3, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Lynn-Ingalls,01630060, 95.3, 7.7, 27.8, 14.2, 0.0 -4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Hood,01630055, 95.1, 8.0, 23.6, 11.5, 0.0 -4.2444444444444445,4.24,a-vale-i2,2020-21,Lynn-Robert L Ford,01630050, 95.5, 7.4, 26.7, 12.1, 0.0 -4.0311111111111115,4.03,a-vale-i2,2020-21,Lynn-Classical High,01630505, 90.7, 15.0, 44.0, 32.8, 0.0 -3.76,3.76,a-vale-i2,2020-21,Lynn-Lynn English High,01630510, 84.6, 25.1, 55.2, 43.5, 0.0 -3.897777777777778,3.9,a-vale-i2,2020-21,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 87.7, 18.9, 20.0, 20.0, 0.0 +4.093333333333333,4.09,a-vale-i2,2020-21,Lynn-E J Harrington,01630045, 92.1, 12.7, 35.8, 23.5, 0.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Wm P Connery,01630040, 95.1, 8.0, 27.5, 15.0, 0.0 +4.124444444444444,4.12,a-vale-i2,2020-21,Lynn-Cobbet Elementary,01630035, 92.8, 11.8, 37.9, 24.1, 0.0 4.0488888888888885,4.05,a-vale-i2,2020-21,Lynn-Lynn Vocational Technical Institute,01630605, 91.1, 15.1, 42.0, 27.5, 0.0 +3.897777777777778,3.9,a-vale-i2,2020-21,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 87.7, 18.9, 20.0, 20.0, 0.0 +3.76,3.76,a-vale-i2,2020-21,Lynn-Lynn English High,01630510, 84.6, 25.1, 55.2, 43.5, 0.0 +4.0311111111111115,4.03,a-vale-i2,2020-21,Lynn-Classical High,01630505, 90.7, 15.0, 44.0, 32.8, 0.0 4.133333333333334,4.13,a-vale-i2,2020-21,Lynn-Washington Elementary School,01630005, 93.0, 11.4, 34.8, 20.9, 0.0 +4.093333333333333,4.09,a-vale-i2,2020-21,Lynn-Julia F Callahan,01630030, 92.1, 12.7, 37.7, 23.5, 0.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Brickett Elementary,01630020, 95.1, 8.1, 26.1, 12.6, 0.0 4.3244444444444445,4.32,a-vale-i2,2020-21,Lynn-Aborn,01630011, 97.3, 4.6, 12.7, 2.5, 0.0 4.2,4.2,a-vale-i2,2020-21,Lynn-A Drewicz Elementary,01630016, 94.5, 9.2, 28.1, 15.0, 0.0 -4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Brickett Elementary,01630020, 95.1, 8.1, 26.1, 12.6, 0.0 -4.093333333333333,4.09,a-vale-i2,2020-21,Lynn-Julia F Callahan,01630030, 92.1, 12.7, 37.7, 23.5, 0.0 -4.124444444444444,4.12,a-vale-i2,2020-21,Lynn-Cobbet Elementary,01630035, 92.8, 11.8, 37.9, 24.1, 0.0 -4.226666666666667,4.23,a-vale-i2,2020-21,Lynn-Wm P Connery,01630040, 95.1, 8.0, 27.5, 15.0, 0.0 -4.093333333333333,4.09,a-vale-i2,2020-21,Lynn-E J Harrington,01630045, 92.1, 12.7, 35.8, 23.5, 0.0 -4.2444444444444445,4.24,a-vale-i2,2020-21,Lynnfield-Lynnfield High,01640505, 95.5, 7.6, 24.3, 7.3, 4.3 4.328888888888889,4.33,a-vale-i2,2020-21,Lynnfield-Lynnfield Middle School,01640405, 97.4, 4.4, 9.0, 2.6, 3.9 -4.359999999999999,4.36,a-vale-i2,2020-21,Lynnfield-Summer Street,01640020, 98.1, 3.3, 4.8, 1.0, 0.0 +4.2444444444444445,4.24,a-vale-i2,2020-21,Lynnfield-Lynnfield High,01640505, 95.5, 7.6, 24.3, 7.3, 4.3 4.355555555555555,4.36,a-vale-i2,2020-21,Lynnfield-Huckleberry Hill,01640010, 98.0, 3.4, 8.4, 1.5, 0.0 4.28,4.28,a-vale-i2,2020-21,Lynnfield-Lynnfield Preschool,01640005, 96.3, 4.4, 12.1, 6.1, 0.0 +4.359999999999999,4.36,a-vale-i2,2020-21,Lynnfield-Summer Street,01640020, 98.1, 3.3, 4.8, 1.0, 0.0 4.08,4.08,a-vale-i2,2020-21,MATCH Charter Public School (District)-MATCH Charter Public School,04690505, 91.8, 13.7, 36.0, 23.7, 0.0 4.426666666666667,4.43,a-vale-i2,2020-21,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 99.6, 0.6, 2.0, 2.0, 2.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Malden-Beebe,01650003, 96.6, 5.4, 16.4, 10.2, 3.7 -4.213333333333333,4.21,a-vale-i2,2020-21,Malden-Salemwood,01650057, 94.8, 8.1, 27.1, 17.0, 0.0 -3.9422222222222225,3.94,a-vale-i2,2020-21,Malden-Malden Early Learning Center,01650049, 88.7, 13.0, 37.1, 35.6, 12.4 4.235555555555555,4.24,a-vale-i2,2020-21,Malden-Linden,01650047, 95.3, 7.5, 22.2, 13.8, 3.6 +3.9422222222222225,3.94,a-vale-i2,2020-21,Malden-Malden Early Learning Center,01650049, 88.7, 13.0, 37.1, 35.6, 12.4 +4.213333333333333,4.21,a-vale-i2,2020-21,Malden-Salemwood,01650057, 94.8, 8.1, 27.1, 17.0, 0.0 4.102222222222222,4.1,a-vale-i2,2020-21,Malden-Malden High,01650505, 92.3, 12.3, 29.7, 22.3, 5.5 -3.9466666666666663,3.95,a-vale-i2,2020-21,Malden-Ferryway,01650013, 88.8, 18.1, 45.1, 33.8, 0.0 4.257777777777777,4.26,a-vale-i2,2020-21,Malden-Forestdale,01650027, 95.8, 6.8, 23.0, 13.4, 3.7 -4.328888888888889,4.33,a-vale-i2,2020-21,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 97.4, 4.3, 7.7, 3.9, 1.4 -4.328888888888889,4.33,a-vale-i2,2020-21,Manchester Essex Regional-Essex Elementary,06980020, 97.4, 4.3, 9.3, 3.1, 0.0 +4.293333333333333,4.29,a-vale-i2,2020-21,Malden-Beebe,01650003, 96.6, 5.4, 16.4, 10.2, 3.7 +3.9466666666666663,3.95,a-vale-i2,2020-21,Malden-Ferryway,01650013, 88.8, 18.1, 45.1, 33.8, 0.0 4.231111111111111,4.23,a-vale-i2,2020-21,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 95.2, 8.1, 22.7, 9.6, 0.6 4.213333333333333,4.21,a-vale-i2,2020-21,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 94.8, 8.8, 26.0, 12.3, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Mansfield-Jordan/Jackson Elementary,01670014, 97.5, 4.2, 11.1, 4.7, 3.5 +4.328888888888889,4.33,a-vale-i2,2020-21,Manchester Essex Regional-Essex Elementary,06980020, 97.4, 4.3, 9.3, 3.1, 0.0 +4.328888888888889,4.33,a-vale-i2,2020-21,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 97.4, 4.3, 7.7, 3.9, 1.4 4.28,4.28,a-vale-i2,2020-21,Mansfield-Harold L Qualters Middle,01670035, 96.3, 6.2, 17.6, 8.3, 8.7 +4.333333333333333,4.33,a-vale-i2,2020-21,Mansfield-Jordan/Jackson Elementary,01670014, 97.5, 4.2, 11.1, 4.7, 3.5 +4.297777777777778,4.3,a-vale-i2,2020-21,Mansfield-Everett W Robinson,01670007, 96.7, 5.5, 15.7, 6.8, 3.7 4.346666666666667,4.35,a-vale-i2,2020-21,Mansfield-Mansfield High,01670505, 97.8, 3.8, 7.9, 4.8, 0.0 4.235555555555555,4.24,a-vale-i2,2020-21,Mansfield-Roland Green School,01670003, 95.3, 5.9, 15.7, 14.7, 9.8 -4.297777777777778,4.3,a-vale-i2,2020-21,Mansfield-Everett W Robinson,01670007, 96.7, 5.5, 15.7, 6.8, 3.7 2.1066666666666665,2.11,a-vale-i2,2020-21,Map Academy Charter School (District)-Map Academy Charter School,35170505, 47.4, 81.5, 97.2, 97.7, 0.0 -4.337777777777777,4.34,a-vale-i2,2020-21,Marblehead-Village School,01680016, 97.6, 4.0, 9.6, 2.1, 0.8 -4.306666666666667,4.31,a-vale-i2,2020-21,Marblehead-L H Coffin,01680010, 96.9, 5.1, 13.3, 4.3, 0.5 4.24,4.24,a-vale-i2,2020-21,Marblehead-Marblehead Veterans Middle School,01680300, 95.4, 7.8, 29.0, 12.2, 1.7 -4.346666666666667,4.35,a-vale-i2,2020-21,Marblehead-Glover,01680020, 97.8, 3.7, 8.7, 3.2, 0.3 -4.133333333333334,4.13,a-vale-i2,2020-21,Marblehead-Marblehead High,01680505, 93.0, 11.7, 37.8, 24.5, 6.6 +4.306666666666667,4.31,a-vale-i2,2020-21,Marblehead-L H Coffin,01680010, 96.9, 5.1, 13.3, 4.3, 0.5 4.253333333333334,4.25,a-vale-i2,2020-21,Marblehead-Dr. Samuel C. Eveleth,01680025, 95.7, 7.1, 27.5, 11.6, 0.0 +4.133333333333334,4.13,a-vale-i2,2020-21,Marblehead-Marblehead High,01680505, 93.0, 11.7, 37.8, 24.5, 6.6 +4.346666666666667,4.35,a-vale-i2,2020-21,Marblehead-Glover,01680020, 97.8, 3.7, 8.7, 3.2, 0.3 +4.337777777777777,4.34,a-vale-i2,2020-21,Marblehead-Village School,01680016, 97.6, 4.0, 9.6, 2.1, 0.8 4.328888888888889,4.33,a-vale-i2,2020-21,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 97.4, 4.5, 12.6, 4.0, 2.2 4.275555555555556,4.28,a-vale-i2,2020-21,Marion-Sippican,01690005, 96.2, 6.1, 18.3, 8.8, 1.5 +3.817777777777778,3.82,a-vale-i2,2020-21,Marlborough-Marlborough High,01700505, 85.9, 22.7, 57.5, 43.8, 22.0 +4.133333333333334,4.13,a-vale-i2,2020-21,Marlborough-1 LT Charles W. Whitcomb School,01700045, 93.0, 11.5, 36.9, 24.7, 12.5 4.2,4.2,a-vale-i2,2020-21,Marlborough-Richer,01700025, 94.5, 8.8, 31.4, 17.6, 15.5 4.195555555555556,4.2,a-vale-i2,2020-21,Marlborough-Charles Jaworek School,01700030, 94.4, 8.9, 37.3, 18.8, 15.6 -4.133333333333334,4.13,a-vale-i2,2020-21,Marlborough-1 LT Charles W. Whitcomb School,01700045, 93.0, 11.5, 36.9, 24.7, 12.5 -3.817777777777778,3.82,a-vale-i2,2020-21,Marlborough-Marlborough High,01700505, 85.9, 22.7, 57.5, 43.8, 22.0 -4.2,4.2,a-vale-i2,2020-21,Marlborough-Goodnow Brothers Elementary School,01700020, 94.5, 8.8, 31.2, 17.8, 16.1 -4.226666666666667,4.23,a-vale-i2,2020-21,Marlborough-Francis J Kane,01700008, 95.1, 8.0, 28.7, 17.4, 13.5 4.075555555555556,4.08,a-vale-i2,2020-21,Marlborough-Early Childhood Center,01700006, 91.7, 12.2, 34.0, 28.2, 22.0 +4.226666666666667,4.23,a-vale-i2,2020-21,Marlborough-Francis J Kane,01700008, 95.1, 8.0, 28.7, 17.4, 13.5 +4.2,4.2,a-vale-i2,2020-21,Marlborough-Goodnow Brothers Elementary School,01700020, 94.5, 8.8, 31.2, 17.8, 16.1 +4.351111111111111,4.35,a-vale-i2,2020-21,Marshfield-Eames Way School,01710005, 97.9, 3.8, 11.2, 0.9, 3.7 +4.311111111111111,4.31,a-vale-i2,2020-21,Marshfield-Daniel Webster,01710015, 97.0, 5.0, 14.1, 5.1, 9.6 4.222222222222222,4.22,a-vale-i2,2020-21,Marshfield-Marshfield High,01710505, 95.0, 8.7, 28.8, 10.1, 19.1 4.288888888888889,4.29,a-vale-i2,2020-21,Marshfield-Furnace Brook Middle,01710310, 96.5, 6.2, 21.2, 5.6, 7.1 -4.32,4.32,a-vale-i2,2020-21,Marshfield-Martinson Elementary,01710025, 97.2, 4.9, 11.3, 4.8, 8.4 -4.342222222222222,4.34,a-vale-i2,2020-21,Marshfield-Gov Edward Winslow,01710020, 97.7, 4.1, 10.5, 1.6, 8.4 4.355555555555555,4.36,a-vale-i2,2020-21,Marshfield-South River,01710010, 98.0, 3.5, 6.3, 1.7, 4.9 -4.311111111111111,4.31,a-vale-i2,2020-21,Marshfield-Daniel Webster,01710015, 97.0, 5.0, 14.1, 5.1, 9.6 -4.351111111111111,4.35,a-vale-i2,2020-21,Marshfield-Eames Way School,01710005, 97.9, 3.8, 11.2, 0.9, 3.7 +4.342222222222222,4.34,a-vale-i2,2020-21,Marshfield-Gov Edward Winslow,01710020, 97.7, 4.1, 10.5, 1.6, 8.4 +4.32,4.32,a-vale-i2,2020-21,Marshfield-Martinson Elementary,01710025, 97.2, 4.9, 11.3, 4.8, 8.4 4.213333333333333,4.21,a-vale-i2,2020-21,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 94.8, 8.5, 16.4, 12.8, 0.0 4.102222222222222,4.1,a-vale-i2,2020-21,Martha's Vineyard Charter (District)-Martha's Vineyard Charter School,04660550, 92.3, 13.1, 47.2, 32.8, 13.3 4.106666666666667,4.11,a-vale-i2,2020-21,Martin Luther King Jr. Charter School of Excellence (District)-Martin Luther King Jr. Charter School of Excellence,04920005, 92.4, 13.1, 46.7, 22.3, 0.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Masconomet-Masconomet Regional High School,07050505, 96.6, 5.7, 12.7, 7.2, 5.7 4.328888888888889,4.33,a-vale-i2,2020-21,Masconomet-Masconomet Regional Middle School,07050405, 97.4, 4.5, 10.5, 4.5, 3.4 -4.164444444444444,4.16,a-vale-i2,2020-21,Mashpee-Quashnet School,01720035, 93.7, 10.4, 35.9, 22.5, 6.3 -4.173333333333334,4.17,a-vale-i2,2020-21,Mashpee-Kenneth Coombs School,01720005, 93.9, 9.7, 37.9, 20.5, 2.8 -4.177777777777778,4.18,a-vale-i2,2020-21,Mashpee-Mashpee Middle School,01720020, 94.0, 10.0, 28.0, 14.8, 0.4 +4.293333333333333,4.29,a-vale-i2,2020-21,Masconomet-Masconomet Regional High School,07050505, 96.6, 5.7, 12.7, 7.2, 5.7 4.182222222222222,4.18,a-vale-i2,2020-21,Mashpee-Mashpee High,01720505, 94.1, 9.9, 26.4, 14.3, 0.0 -4.253333333333334,4.25,a-vale-i2,2020-21,Mattapoisett-Center,01730005, 95.7, 6.8, 20.6, 9.5, 1.6 +4.177777777777778,4.18,a-vale-i2,2020-21,Mashpee-Mashpee Middle School,01720020, 94.0, 10.0, 28.0, 14.8, 0.4 +4.173333333333334,4.17,a-vale-i2,2020-21,Mashpee-Kenneth Coombs School,01720005, 93.9, 9.7, 37.9, 20.5, 2.8 +4.164444444444444,4.16,a-vale-i2,2020-21,Mashpee-Quashnet School,01720035, 93.7, 10.4, 35.9, 22.5, 6.3 4.226666666666667,4.23,a-vale-i2,2020-21,Mattapoisett-Old Hammondtown,01730010, 95.1, 8.2, 25.4, 11.0, 3.5 -4.142222222222222,4.14,a-vale-i2,2020-21,Maynard-Green Meadow,01740010, 93.2, 10.7, 32.5, 23.0, 12.6 +4.253333333333334,4.25,a-vale-i2,2020-21,Mattapoisett-Center,01730005, 95.7, 6.8, 20.6, 9.5, 1.6 3.9511111111111115,3.95,a-vale-i2,2020-21,Maynard-Maynard High,01740505, 88.9, 18.3, 56.1, 32.4, 9.0 4.168888888888889,4.17,a-vale-i2,2020-21,Maynard-Fowler School,01740305, 93.8, 10.2, 29.6, 20.0, 8.3 +4.142222222222222,4.14,a-vale-i2,2020-21,Maynard-Green Meadow,01740010, 93.2, 10.7, 32.5, 23.0, 12.6 +4.306666666666667,4.31,a-vale-i2,2020-21,Medfield-Thomas Blake Middle,01750305, 96.9, 5.2, 11.4, 4.6, 1.2 4.111111111111111,4.11,a-vale-i2,2020-21,Medfield-Medfield Senior High,01750505, 92.5, 12.3, 52.5, 24.2, 4.8 +4.342222222222222,4.34,a-vale-i2,2020-21,Medfield-Memorial School,01750003, 97.7, 3.8, 9.8, 2.7, 1.0 4.333333333333333,4.33,a-vale-i2,2020-21,Medfield-Dale Street,01750005, 97.5, 4.2, 7.4, 3.4, 2.0 4.346666666666667,4.35,a-vale-i2,2020-21,Medfield-Ralph Wheelock School,01750007, 97.8, 3.6, 6.2, 3.1, 0.8 -4.342222222222222,4.34,a-vale-i2,2020-21,Medfield-Memorial School,01750003, 97.7, 3.8, 9.8, 2.7, 1.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Medfield-Thomas Blake Middle,01750305, 96.9, 5.2, 11.4, 4.6, 1.2 -4.173333333333334,4.17,a-vale-i2,2020-21,Medford-Madeleine Dugger Andrews,01760315, 93.9, 10.1, 29.5, 17.4, 4.8 -4.271111111111111,4.27,a-vale-i2,2020-21,Medford-Milton Fuller Roberts,01760150, 96.1, 6.3, 19.3, 11.6, 7.8 4.306666666666667,4.31,a-vale-i2,2020-21,Medford-Brooks School,01760130, 96.9, 5.2, 13.9, 7.4, 8.2 +4.262222222222222,4.26,a-vale-i2,2020-21,Medford-John J McGlynn Elementary School,01760068, 95.9, 6.5, 22.6, 12.2, 8.5 3.6222222222222222,3.62,a-vale-i2,2020-21,Medford-Curtis-Tufts,01760510, 81.5, 28.1, 68.8, 75.0, 62.5 3.968888888888889,3.97,a-vale-i2,2020-21,Medford-Medford High,01760505, 89.3, 17.5, 43.4, 32.2, 9.7 4.226666666666667,4.23,a-vale-i2,2020-21,Medford-John J. McGlynn Middle School,01760320, 95.1, 8.1, 29.3, 16.4, 11.2 -4.262222222222222,4.26,a-vale-i2,2020-21,Medford-John J McGlynn Elementary School,01760068, 95.9, 6.5, 22.6, 12.2, 8.5 +4.173333333333334,4.17,a-vale-i2,2020-21,Medford-Madeleine Dugger Andrews,01760315, 93.9, 10.1, 29.5, 17.4, 4.8 +4.271111111111111,4.27,a-vale-i2,2020-21,Medford-Milton Fuller Roberts,01760150, 96.1, 6.3, 19.3, 11.6, 7.8 4.208888888888889,4.21,a-vale-i2,2020-21,Medford-Christopher Columbus,01760140, 94.7, 8.3, 27.2, 16.7, 15.7 -4.302222222222222,4.3,a-vale-i2,2020-21,Medway-Burke/Memorial Elementary School,01770015, 96.8, 5.3, 15.4, 4.7, 2.5 4.364444444444445,4.36,a-vale-i2,2020-21,Medway-John D Mc Govern Elementary,01770013, 98.2, 2.9, 8.4, 2.1, 1.2 4.226666666666667,4.23,a-vale-i2,2020-21,Medway-Medway Middle,01770305, 95.1, 8.3, 27.8, 13.0, 6.2 +4.302222222222222,4.3,a-vale-i2,2020-21,Medway-Burke/Memorial Elementary School,01770015, 96.8, 5.3, 15.4, 4.7, 2.5 4.1466666666666665,4.15,a-vale-i2,2020-21,Medway-Medway High,01770505, 93.3, 11.2, 38.1, 16.0, 13.7 -4.342222222222222,4.34,a-vale-i2,2020-21,Melrose-Lincoln,01780020, 97.7, 3.8, 10.1, 3.4, 1.7 -4.355555555555555,4.36,a-vale-i2,2020-21,Melrose-Horace Mann,01780025, 98.0, 3.3, 3.8, 0.8, 1.7 -4.355555555555555,4.36,a-vale-i2,2020-21,Melrose-Roosevelt,01780035, 98.0, 3.3, 6.0, 3.1, 1.4 4.253333333333334,4.25,a-vale-i2,2020-21,Melrose-Melrose High,01780505, 95.7, 7.2, 19.2, 11.0, 6.1 4.253333333333334,4.25,a-vale-i2,2020-21,Melrose-Melrose Middle,01780305, 95.7, 7.1, 21.6, 9.7, 5.3 -4.386666666666667,4.39,a-vale-i2,2020-21,Melrose-Winthrop,01780050, 98.7, 2.3, 2.8, 0.8, 0.3 4.328888888888889,4.33,a-vale-i2,2020-21,Melrose-Herbert Clark Hoover,01780017, 97.4, 4.3, 11.6, 6.2, 2.5 +4.355555555555555,4.36,a-vale-i2,2020-21,Melrose-Roosevelt,01780035, 98.0, 3.3, 6.0, 3.1, 1.4 +4.355555555555555,4.36,a-vale-i2,2020-21,Melrose-Horace Mann,01780025, 98.0, 3.3, 3.8, 0.8, 1.7 +4.342222222222222,4.34,a-vale-i2,2020-21,Melrose-Lincoln,01780020, 97.7, 3.8, 10.1, 3.4, 1.7 +4.386666666666667,4.39,a-vale-i2,2020-21,Melrose-Winthrop,01780050, 98.7, 2.3, 2.8, 0.8, 0.3 4.168888888888889,4.17,a-vale-i2,2020-21,Melrose-Early Childhood Center,01780003, 93.8, 9.7, 35.1, 18.4, 29.2 -4.173333333333334,4.17,a-vale-i2,2020-21,Mendon-Upton-Nipmuc Regional High,07100510, 93.9, 10.1, 34.3, 17.6, 0.0 4.28,4.28,a-vale-i2,2020-21,Mendon-Upton-Henry P Clough,07100179, 96.3, 6.0, 19.5, 6.8, 0.0 -4.266666666666667,4.27,a-vale-i2,2020-21,Mendon-Upton-Memorial School,07100001, 96.0, 6.5, 19.0, 9.0, 0.0 +4.173333333333334,4.17,a-vale-i2,2020-21,Mendon-Upton-Nipmuc Regional High,07100510, 93.9, 10.1, 34.3, 17.6, 0.0 4.266666666666667,4.27,a-vale-i2,2020-21,Mendon-Upton-Miscoe Hill School,07100015, 96.0, 6.8, 23.4, 9.4, 0.0 -4.266666666666667,4.27,a-vale-i2,2020-21,Methuen-Donald P Timony Grammar,01810060, 96.0, 6.6, 18.3, 10.9, 5.1 -4.24,4.24,a-vale-i2,2020-21,Methuen-Tenney Grammar School,01810055, 95.4, 7.6, 22.6, 13.3, 6.6 +4.266666666666667,4.27,a-vale-i2,2020-21,Mendon-Upton-Memorial School,07100001, 96.0, 6.5, 19.0, 9.0, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Methuen-Comprehensive Grammar School,01810050, 96.8, 5.2, 13.7, 7.1, 3.5 4.288888888888889,4.29,a-vale-i2,2020-21,Methuen-Marsh Grammar School,01810030, 96.5, 5.9, 17.7, 9.5, 6.3 +4.24,4.24,a-vale-i2,2020-21,Methuen-Tenney Grammar School,01810055, 95.4, 7.6, 22.6, 13.3, 6.6 3.9377777777777774,3.94,a-vale-i2,2020-21,Methuen-Methuen High,01810505, 88.6, 18.8, 42.9, 31.8, 20.8 -4.248888888888889,4.25,a-vale-i2,2020-21,Middleborough-Henry B. Burkland Elementary School,01820008, 95.6, 7.2, 25.3, 9.1, 7.2 +4.266666666666667,4.27,a-vale-i2,2020-21,Methuen-Donald P Timony Grammar,01810060, 96.0, 6.6, 18.3, 10.9, 5.1 4.28,4.28,a-vale-i2,2020-21,Middleborough-Mary K. Goode Elementary School,01820010, 96.3, 6.3, 19.6, 7.8, 7.6 -4.2,4.2,a-vale-i2,2020-21,Middleborough-Memorial Early Childhood Center,01820011, 94.5, 8.9, 29.5, 15.9, 13.6 +4.248888888888889,4.25,a-vale-i2,2020-21,Middleborough-Henry B. Burkland Elementary School,01820008, 95.6, 7.2, 25.3, 9.1, 7.2 4.124444444444444,4.12,a-vale-i2,2020-21,Middleborough-John T. Nichols Middle,01820305, 92.8, 12.0, 41.6, 21.7, 17.0 4.111111111111111,4.11,a-vale-i2,2020-21,Middleborough-Middleborough High,01820505, 92.5, 12.3, 40.3, 21.3, 11.4 -4.271111111111111,4.27,a-vale-i2,2020-21,Middleton-Howe-Manning,01840005, 96.1, 6.4, 24.4, 6.5, 20.7 +4.2,4.2,a-vale-i2,2020-21,Middleborough-Memorial Early Childhood Center,01820011, 94.5, 8.9, 29.5, 15.9, 13.6 4.271111111111111,4.27,a-vale-i2,2020-21,Middleton-Fuller Meadow,01840003, 96.1, 6.3, 22.8, 8.0, 19.4 -3.8533333333333335,3.85,a-vale-i2,2020-21,Milford-Milford High,01850505, 86.7, 21.5, 57.2, 43.3, 20.7 +4.271111111111111,4.27,a-vale-i2,2020-21,Middleton-Howe-Manning,01840005, 96.1, 6.4, 24.4, 6.5, 20.7 4.182222222222222,4.18,a-vale-i2,2020-21,Milford-Stacy Middle,01850305, 94.1, 9.8, 35.0, 19.2, 8.6 -4.2,4.2,a-vale-i2,2020-21,Milford-Memorial,01850010, 94.5, 8.8, 34.7, 17.8, 1.3 4.217777777777778,4.22,a-vale-i2,2020-21,Milford-Woodland,01850090, 94.9, 8.3, 30.0, 15.6, 2.7 3.76,3.76,a-vale-i2,2020-21,Milford-Shining Star Early Childhood Center,01850075, 84.6, 18.8, 51.8, 49.1, 28.9 4.204444444444444,4.2,a-vale-i2,2020-21,Milford-Brookside,01850065, 94.6, 8.7, 33.9, 18.4, 4.7 -4.262222222222222,4.26,a-vale-i2,2020-21,Millbury-Elmwood Street,01860017, 95.9, 6.9, 21.7, 9.1, 8.8 +4.2,4.2,a-vale-i2,2020-21,Milford-Memorial,01850010, 94.5, 8.8, 34.7, 17.8, 1.3 +3.8533333333333335,3.85,a-vale-i2,2020-21,Milford-Milford High,01850505, 86.7, 21.5, 57.2, 43.3, 20.7 4.28,4.28,a-vale-i2,2020-21,Millbury-Raymond E. Shaw Elementary,01860025, 96.3, 6.4, 22.6, 9.1, 3.7 +4.262222222222222,4.26,a-vale-i2,2020-21,Millbury-Elmwood Street,01860017, 95.9, 6.9, 21.7, 9.1, 8.8 4.168888888888889,4.17,a-vale-i2,2020-21,Millbury-Millbury Junior/Senior High,01860505, 93.8, 10.5, 38.8, 17.3, 14.3 +4.306666666666667,4.31,a-vale-i2,2020-21,Millis-Millis Middle,01870020, 96.9, 5.3, 9.1, 4.0, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Millis-Clyde F Brown,01870005, 96.9, 5.1, 11.5, 5.6, 0.0 4.235555555555555,4.24,a-vale-i2,2020-21,Millis-Millis High School,01870505, 95.3, 7.9, 19.9, 7.3, 0.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Millis-Millis Middle,01870020, 96.9, 5.3, 9.1, 4.0, 0.0 -4.288888888888889,4.29,a-vale-i2,2020-21,Milton-Tucker,01890020, 96.5, 5.9, 18.8, 8.7, 8.7 4.311111111111111,4.31,a-vale-i2,2020-21,Milton-Glover,01890010, 97.0, 5.0, 10.5, 3.6, 1.8 -4.293333333333333,4.29,a-vale-i2,2020-21,Milton-Cunningham School,01890007, 96.6, 5.7, 18.4, 6.6, 1.3 -4.32,4.32,a-vale-i2,2020-21,Milton-Collicot,01890005, 97.2, 4.7, 9.8, 4.4, 0.2 +4.288888888888889,4.29,a-vale-i2,2020-21,Milton-Tucker,01890020, 96.5, 5.9, 18.8, 8.7, 8.7 4.306666666666667,4.31,a-vale-i2,2020-21,Milton-Charles S Pierce Middle,01890410, 96.9, 5.2, 15.3, 5.2, 7.8 4.275555555555556,4.28,a-vale-i2,2020-21,Milton-Milton High,01890505, 96.2, 6.4, 16.9, 8.3, 3.6 +4.293333333333333,4.29,a-vale-i2,2020-21,Milton-Cunningham School,01890007, 96.6, 5.7, 18.4, 6.6, 1.3 +4.32,4.32,a-vale-i2,2020-21,Milton-Collicot,01890005, 97.2, 4.7, 9.8, 4.4, 0.2 4.257777777777777,4.26,a-vale-i2,2020-21,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 95.8, 7.0, 19.2, 10.8, 3.5 -4.062222222222222,4.06,a-vale-i2,2020-21,Mohawk Trail-Mohawk Trail Regional School,07170505, 91.4, 14.4, 50.2, 27.6, 2.8 -4.2844444444444445,4.28,a-vale-i2,2020-21,Mohawk Trail-Colrain Central,07170010, 96.4, 5.6, 19.1, 8.5, 6.4 4.2444444444444445,4.24,a-vale-i2,2020-21,Mohawk Trail-Buckland-Shelburne Regional,07170005, 95.5, 7.4, 23.2, 5.9, 5.5 +4.2844444444444445,4.28,a-vale-i2,2020-21,Mohawk Trail-Colrain Central,07170010, 96.4, 5.6, 19.1, 8.5, 6.4 4.204444444444444,4.2,a-vale-i2,2020-21,Mohawk Trail-Sanderson Academy,07170020, 94.6, 8.5, 25.0, 11.0, 9.6 +4.062222222222222,4.06,a-vale-i2,2020-21,Mohawk Trail-Mohawk Trail Regional School,07170505, 91.4, 14.4, 50.2, 27.6, 2.8 4.066666666666666,4.07,a-vale-i2,2020-21,Monomoy Regional School District-Monomoy Regional High School,07120515, 91.5, 14.0, 41.6, 25.3, 14.9 4.1866666666666665,4.19,a-vale-i2,2020-21,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 94.2, 9.8, 39.3, 18.0, 24.6 4.226666666666667,4.23,a-vale-i2,2020-21,Monomoy Regional School District-Chatham Elementary School,07120001, 95.1, 8.0, 32.5, 15.0, 13.1 @@ -12085,31 +12085,30 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.231111111111111,4.23,a-vale-i2,2020-21,Mount Greylock-Mt Greylock Regional High,07150505, 95.2, 8.1, 22.9, 13.0, 1.0 4.226666666666667,4.23,a-vale-i2,2020-21,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 95.1, 9.4, 34.5, 8.8, 0.1 4.275555555555556,4.28,a-vale-i2,2020-21,Nahant-Johnson,01960010, 96.2, 6.3, 24.7, 8.9, 7.0 -4.133333333333334,4.13,a-vale-i2,2020-21,Nantucket-Nantucket High,01970505, 93.0, 11.3, 33.6, 17.2, 7.5 4.155555555555556,4.16,a-vale-i2,2020-21,Nantucket-Nantucket Elementary,01970005, 93.5, 10.3, 40.1, 22.4, 6.7 4.204444444444444,4.2,a-vale-i2,2020-21,Nantucket-Cyrus Peirce,01970010, 94.6, 8.9, 32.0, 15.1, 4.1 4.2844444444444445,4.28,a-vale-i2,2020-21,Nantucket-Nantucket Intermediate School,01970020, 96.4, 5.9, 18.8, 5.2, 0.0 +4.133333333333334,4.13,a-vale-i2,2020-21,Nantucket-Nantucket High,01970505, 93.0, 11.3, 33.6, 17.2, 7.5 +4.204444444444444,4.2,a-vale-i2,2020-21,Narragansett-Templeton Elementary School,07200020, 94.6, 8.7, 28.4, 15.6, 5.0 4.155555555555556,4.16,a-vale-i2,2020-21,Narragansett-Narragansett Middle,07200305, 93.5, 10.8, 32.5, 20.1, 4.6 4.044444444444444,4.04,a-vale-i2,2020-21,Narragansett-Narragansett Regional High,07200505, 91.0, 14.8, 34.8, 24.1, 8.6 -4.204444444444444,4.2,a-vale-i2,2020-21,Narragansett-Templeton Elementary School,07200020, 94.6, 8.7, 28.4, 15.6, 5.0 4.16,4.16,a-vale-i2,2020-21,Nashoba-Nashoba Regional,07250505, 93.6, 10.8, 31.2, 16.1, 1.4 4.342222222222222,4.34,a-vale-i2,2020-21,Nashoba-Hale,07250310, 97.7, 3.8, 8.0, 3.7, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Nashoba-Luther Burbank Middle School,07250305, 95.3, 7.9, 28.4, 7.8, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Nashoba-Florence Sawyer School,07250025, 96.9, 5.2, 14.0, 4.8, 0.0 -4.302222222222222,4.3,a-vale-i2,2020-21,Nashoba-Mary Rowlandson Elementary,07250010, 96.8, 5.4, 13.1, 5.2, 0.0 4.297777777777778,4.3,a-vale-i2,2020-21,Nashoba-Center School,07250020, 96.7, 5.4, 16.1, 4.9, 0.0 +4.302222222222222,4.3,a-vale-i2,2020-21,Nashoba-Mary Rowlandson Elementary,07250010, 96.8, 5.4, 13.1, 5.2, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Nashoba-Luther Burbank Middle School,07250305, 95.3, 7.9, 28.4, 7.8, 0.0 4.315555555555555,4.32,a-vale-i2,2020-21,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 97.1, 4.7, 11.5, 3.1, 4.8 -4.182222222222222,4.18,a-vale-i2,2020-21,Natick-Natick High,01980505, 94.1, 9.8, 29.9, 16.2, 3.2 -4.311111111111111,4.31,a-vale-i2,2020-21,Natick-Wilson Middle,01980310, 97.0, 5.1, 15.4, 4.1, 0.0 -4.4,4.4,a-vale-i2,2020-21,Natick-Memorial,01980043, 99.0, 1.6, 2.7, 1.2, 0.0 -4.271111111111111,4.27,a-vale-i2,2020-21,Natick-Lilja Elementary,01980035, 96.1, 6.5, 17.8, 7.3, 0.0 -4.32,4.32,a-vale-i2,2020-21,Natick-J F Kennedy Middle School,01980305, 97.2, 4.7, 14.2, 3.9, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Natick-Johnson,01980031, 97.1, 4.8, 13.5, 5.6, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Natick-Bennett-Hemenway,01980005, 97.1, 4.9, 13.6, 5.0, 0.0 4.271111111111111,4.27,a-vale-i2,2020-21,Natick-Brown,01980010, 96.1, 6.3, 17.7, 9.8, 5.2 +4.32,4.32,a-vale-i2,2020-21,Natick-J F Kennedy Middle School,01980305, 97.2, 4.7, 14.2, 3.9, 0.0 +4.182222222222222,4.18,a-vale-i2,2020-21,Natick-Natick High,01980505, 94.1, 9.8, 29.9, 16.2, 3.2 +4.315555555555555,4.32,a-vale-i2,2020-21,Natick-Bennett-Hemenway,01980005, 97.1, 4.9, 13.6, 5.0, 0.0 +4.311111111111111,4.31,a-vale-i2,2020-21,Natick-Wilson Middle,01980310, 97.0, 5.1, 15.4, 4.1, 0.0 +4.315555555555555,4.32,a-vale-i2,2020-21,Natick-Johnson,01980031, 97.1, 4.8, 13.5, 5.6, 0.0 +4.271111111111111,4.27,a-vale-i2,2020-21,Natick-Lilja Elementary,01980035, 96.1, 6.5, 17.8, 7.3, 0.0 +4.4,4.4,a-vale-i2,2020-21,Natick-Memorial,01980043, 99.0, 1.6, 2.7, 1.2, 0.0 4.062222222222222,4.06,a-vale-i2,2020-21,Nauset-Nauset Regional Middle,06600305, 91.4, 14.4, 45.8, 26.0, 13.0 4.057777777777778,4.06,a-vale-i2,2020-21,Nauset-Nauset Regional High,06600505, 91.3, 14.5, 48.0, 26.2, 7.1 -4.3244444444444445,4.32,a-vale-i2,2020-21,Needham-Broadmeadow,01990005, 97.3, 4.5, 6.9, 3.3, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Needham-Needham High,01990505, 96.8, 5.4, 13.2, 3.4, 0.8 4.302222222222222,4.3,a-vale-i2,2020-21,Needham-High Rock School,01990410, 96.8, 5.4, 16.8, 5.8, 0.0 4.315555555555555,4.32,a-vale-i2,2020-21,Needham-Pollard Middle,01990405, 97.1, 4.8, 11.1, 4.5, 0.0 @@ -12117,114 +12116,115 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.368888888888889,4.37,a-vale-i2,2020-21,Needham-William Mitchell,01990040, 98.3, 2.9, 5.1, 2.6, 0.0 4.328888888888889,4.33,a-vale-i2,2020-21,Needham-Sunita L. Williams Elementary,01990035, 97.4, 4.3, 11.5, 3.2, 0.0 4.3244444444444445,4.32,a-vale-i2,2020-21,Needham-John Eliot,01990020, 97.3, 4.4, 10.5, 5.2, 0.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Needham-Broadmeadow,01990005, 97.3, 4.5, 6.9, 3.3, 0.0 4.035555555555556,4.04,a-vale-i2,2020-21,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 90.8, 16.3, 44.5, 29.5, 0.9 -4.231111111111111,4.23,a-vale-i2,2020-21,New Bedford-John Avery Parker,02010115, 95.2, 7.9, 30.8, 9.8, 9.4 -2.9733333333333336,2.97,a-vale-i2,2020-21,New Bedford-Trinity Day Academy,02010510, 66.9, 52.3, 85.3, 75.8, 37.9 -3.4444444444444446,3.44,a-vale-i2,2020-21,New Bedford-New Bedford High,02010505, 77.5, 36.2, 70.7, 61.0, 31.9 -3.64,3.64,a-vale-i2,2020-21,New Bedford-Roosevelt Middle School,02010415, 81.9, 29.8, 70.6, 56.0, 18.9 -4.08,4.08,a-vale-i2,2020-21,New Bedford-Normandin Middle School,02010410, 91.8, 13.7, 38.5, 25.3, 3.6 3.7733333333333334,3.77,a-vale-i2,2020-21,New Bedford-Keith Middle School,02010405, 84.9, 25.3, 61.0, 46.7, 10.3 4.231111111111111,4.23,a-vale-i2,2020-21,New Bedford-Betsey B Winslow,02010140, 95.2, 7.9, 24.9, 15.3, 3.7 -4.044444444444444,4.04,a-vale-i2,2020-21,New Bedford-Abraham Lincoln,02010095, 91.0, 14.6, 52.3, 33.1, 11.0 +3.64,3.64,a-vale-i2,2020-21,New Bedford-Roosevelt Middle School,02010415, 81.9, 29.8, 70.6, 56.0, 18.9 +3.4444444444444446,3.44,a-vale-i2,2020-21,New Bedford-New Bedford High,02010505, 77.5, 36.2, 70.7, 61.0, 31.9 +4.08,4.08,a-vale-i2,2020-21,New Bedford-Normandin Middle School,02010410, 91.8, 13.7, 38.5, 25.3, 3.6 +3.7333333333333334,3.73,a-vale-i2,2020-21,New Bedford-Whaling City Junior/Senior High School,02010515, 84.0, 24.4, 61.2, 53.1, 60.2 +2.9733333333333336,2.97,a-vale-i2,2020-21,New Bedford-Trinity Day Academy,02010510, 66.9, 52.3, 85.3, 75.8, 37.9 4.097777777777778,4.1,a-vale-i2,2020-21,New Bedford-Hayden/McFadden,02010078, 92.2, 13.5, 55.5, 28.4, 17.4 4.08,4.08,a-vale-i2,2020-21,New Bedford-Ellen R Hathaway,02010075, 91.8, 13.2, 47.7, 26.9, 11.1 3.9377777777777774,3.94,a-vale-i2,2020-21,New Bedford-Irwin M. Jacobs Elementary School,02010070, 88.6, 17.8, 62.5, 43.4, 31.0 -4.022222222222222,4.02,a-vale-i2,2020-21,New Bedford-Alfred J Gomes,02010063, 90.5, 16.4, 54.5, 30.7, 22.1 -4.164444444444444,4.16,a-vale-i2,2020-21,New Bedford-John B Devalles,02010050, 93.7, 10.3, 33.6, 18.9, 11.9 -3.96,3.96,a-vale-i2,2020-21,New Bedford-Sgt Wm H Carney Academy,02010045, 89.1, 17.8, 52.7, 36.6, 24.5 -4.275555555555556,4.28,a-vale-i2,2020-21,New Bedford-James B Congdon,02010040, 96.2, 6.3, 17.6, 8.0, 4.3 -4.026666666666666,4.03,a-vale-i2,2020-21,New Bedford-Elwyn G Campbell,02010020, 90.6, 15.3, 46.6, 36.3, 19.8 -4.151111111111112,4.15,a-vale-i2,2020-21,New Bedford-Elizabeth Carter Brooks,02010015, 93.4, 10.7, 41.0, 20.5, 11.1 -4.168888888888889,4.17,a-vale-i2,2020-21,New Bedford-Charles S Ashley,02010010, 93.8, 10.0, 34.7, 20.6, 15.6 4.226666666666667,4.23,a-vale-i2,2020-21,New Bedford-William H Taylor,02010135, 95.1, 7.9, 29.8, 15.7, 5.6 4.177777777777778,4.18,a-vale-i2,2020-21,New Bedford-Jireh Swift,02010130, 94.0, 9.5, 30.1, 22.3, 10.2 4.066666666666666,4.07,a-vale-i2,2020-21,New Bedford-Thomas R Rodman,02010125, 91.5, 13.8, 48.3, 31.1, 8.6 4.035555555555556,4.04,a-vale-i2,2020-21,New Bedford-Renaissance Community Innovation School,02010124, 90.8, 14.9, 46.0, 32.8, 14.9 4.1866666666666665,4.19,a-vale-i2,2020-21,New Bedford-Casimir Pulaski,02010123, 94.2, 9.4, 33.2, 18.4, 12.6 +4.231111111111111,4.23,a-vale-i2,2020-21,New Bedford-John Avery Parker,02010115, 95.2, 7.9, 30.8, 9.8, 9.4 3.9422222222222225,3.94,a-vale-i2,2020-21,New Bedford-Carlos Pacheco,02010105, 88.7, 18.4, 57.7, 40.7, 14.0 -3.7333333333333334,3.73,a-vale-i2,2020-21,New Bedford-Whaling City Junior/Senior High School,02010515, 84.0, 24.4, 61.2, 53.1, 60.2 +4.044444444444444,4.04,a-vale-i2,2020-21,New Bedford-Abraham Lincoln,02010095, 91.0, 14.6, 52.3, 33.1, 11.0 +4.168888888888889,4.17,a-vale-i2,2020-21,New Bedford-Charles S Ashley,02010010, 93.8, 10.0, 34.7, 20.6, 15.6 +4.151111111111112,4.15,a-vale-i2,2020-21,New Bedford-Elizabeth Carter Brooks,02010015, 93.4, 10.7, 41.0, 20.5, 11.1 +4.026666666666666,4.03,a-vale-i2,2020-21,New Bedford-Elwyn G Campbell,02010020, 90.6, 15.3, 46.6, 36.3, 19.8 +4.275555555555556,4.28,a-vale-i2,2020-21,New Bedford-James B Congdon,02010040, 96.2, 6.3, 17.6, 8.0, 4.3 +3.96,3.96,a-vale-i2,2020-21,New Bedford-Sgt Wm H Carney Academy,02010045, 89.1, 17.8, 52.7, 36.6, 24.5 +4.164444444444444,4.16,a-vale-i2,2020-21,New Bedford-John B Devalles,02010050, 93.7, 10.3, 33.6, 18.9, 11.9 +4.022222222222222,4.02,a-vale-i2,2020-21,New Bedford-Alfred J Gomes,02010063, 90.5, 16.4, 54.5, 30.7, 22.1 4.111111111111111,4.11,a-vale-i2,2020-21,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 92.5, 12.5, 47.0, 24.7, 4.3 4.235555555555555,4.24,a-vale-i2,2020-21,New Salem-Wendell-Swift River,07280015, 95.3, 7.5, 23.1, 14.9, 0.7 -4.3244444444444445,4.32,a-vale-i2,2020-21,Newburyport-Edward G. Molin Elementary School,02040030, 97.3, 4.5, 12.3, 3.1, 0.0 4.297777777777778,4.3,a-vale-i2,2020-21,Newburyport-Rupert A Nock Middle,02040305, 96.7, 5.5, 13.4, 6.0, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Newburyport-Newburyport High,02040505, 97.5, 4.2, 8.2, 3.9, 0.2 +4.3244444444444445,4.32,a-vale-i2,2020-21,Newburyport-Edward G. Molin Elementary School,02040030, 97.3, 4.5, 12.3, 3.1, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Newburyport-Francis T Bresnahan Elementary,02040005, 96.8, 5.3, 16.8, 6.5, 0.0 -4.097777777777778,4.1,a-vale-i2,2020-21,Newton-Newton Early Childhood Program,02070108, 92.2, 10.7, 26.7, 25.2, 2.4 -4.337777777777777,4.34,a-vale-i2,2020-21,Newton-Williams,02070125, 97.6, 4.0, 8.3, 4.3, 0.0 -4.337777777777777,4.34,a-vale-i2,2020-21,Newton-Franklin,02070055, 97.6, 4.0, 8.2, 2.8, 0.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Newton-Countryside,02070040, 97.4, 4.3, 10.6, 5.1, 0.3 -4.311111111111111,4.31,a-vale-i2,2020-21,Newton-Cabot,02070025, 97.0, 5.0, 11.8, 6.3, 1.8 -4.333333333333333,4.33,a-vale-i2,2020-21,Newton-C C Burr,02070020, 97.5, 4.3, 8.5, 4.1, 1.8 -4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Bowen,02070015, 96.8, 5.2, 11.6, 7.2, 0.3 +4.333333333333333,4.33,a-vale-i2,2020-21,Newburyport-Newburyport High,02040505, 97.5, 4.2, 8.2, 3.9, 0.2 4.346666666666667,4.35,a-vale-i2,2020-21,Newton-A E Angier,02070005, 97.8, 3.8, 6.4, 1.4, 0.2 -4.342222222222222,4.34,a-vale-i2,2020-21,Newton-Newton South High,02070510, 97.7, 3.9, 8.6, 4.0, 1.7 -4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-Newton North High,02070505, 97.3, 4.5, 11.9, 6.2, 3.2 -4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Oak Hill Middle,02070320, 96.8, 5.3, 15.5, 5.5, 3.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Underwood,02070115, 97.1, 4.9, 11.6, 4.4, 1.3 -4.262222222222222,4.26,a-vale-i2,2020-21,Newton-F A Day Middle,02070315, 95.9, 7.1, 23.3, 9.8, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Newton-Charles E Brown Middle,02070310, 97.5, 4.2, 9.4, 4.0, 0.8 -4.235555555555555,4.24,a-vale-i2,2020-21,Newton-Bigelow Middle,02070305, 95.3, 7.9, 23.4, 12.8, 5.6 -4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Memorial Spaulding,02070105, 96.8, 5.3, 12.1, 3.5, 0.2 -4.351111111111111,4.35,a-vale-i2,2020-21,Newton-Peirce,02070100, 97.9, 3.5, 10.0, 2.5, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Mason-Rice,02070080, 97.1, 4.9, 12.9, 5.4, 0.8 -4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-John Ward,02070120, 97.3, 4.5, 7.4, 2.3, 0.0 -4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Zervas,02070130, 97.1, 4.9, 11.3, 5.9, 2.7 -4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-Horace Mann,02070075, 97.3, 4.4, 9.8, 4.9, 0.0 +4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Bowen,02070015, 96.8, 5.2, 11.6, 7.2, 0.3 +4.333333333333333,4.33,a-vale-i2,2020-21,Newton-C C Burr,02070020, 97.5, 4.3, 8.5, 4.1, 1.8 +4.311111111111111,4.31,a-vale-i2,2020-21,Newton-Cabot,02070025, 97.0, 5.0, 11.8, 6.3, 1.8 +4.328888888888889,4.33,a-vale-i2,2020-21,Newton-Countryside,02070040, 97.4, 4.3, 10.6, 5.1, 0.3 +4.337777777777777,4.34,a-vale-i2,2020-21,Newton-Franklin,02070055, 97.6, 4.0, 8.2, 2.8, 0.0 4.24,4.24,a-vale-i2,2020-21,Newton-Lincoln-Eliot,02070070, 95.4, 7.8, 22.6, 13.3, 3.7 +4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-Horace Mann,02070075, 97.3, 4.4, 9.8, 4.9, 0.0 +4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Mason-Rice,02070080, 97.1, 4.9, 12.9, 5.4, 0.8 +4.351111111111111,4.35,a-vale-i2,2020-21,Newton-Peirce,02070100, 97.9, 3.5, 10.0, 2.5, 0.0 +4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Memorial Spaulding,02070105, 96.8, 5.3, 12.1, 3.5, 0.2 +4.097777777777778,4.1,a-vale-i2,2020-21,Newton-Newton Early Childhood Program,02070108, 92.2, 10.7, 26.7, 25.2, 2.4 +4.262222222222222,4.26,a-vale-i2,2020-21,Newton-F A Day Middle,02070315, 95.9, 7.1, 23.3, 9.8, 0.0 +4.302222222222222,4.3,a-vale-i2,2020-21,Newton-Oak Hill Middle,02070320, 96.8, 5.3, 15.5, 5.5, 3.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-Newton North High,02070505, 97.3, 4.5, 11.9, 6.2, 3.2 +4.342222222222222,4.34,a-vale-i2,2020-21,Newton-Newton South High,02070510, 97.7, 3.9, 8.6, 4.0, 1.7 +4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Underwood,02070115, 97.1, 4.9, 11.6, 4.4, 1.3 +4.3244444444444445,4.32,a-vale-i2,2020-21,Newton-John Ward,02070120, 97.3, 4.5, 7.4, 2.3, 0.0 +4.337777777777777,4.34,a-vale-i2,2020-21,Newton-Williams,02070125, 97.6, 4.0, 8.3, 4.3, 0.0 +4.315555555555555,4.32,a-vale-i2,2020-21,Newton-Zervas,02070130, 97.1, 4.9, 11.3, 5.9, 2.7 +4.235555555555555,4.24,a-vale-i2,2020-21,Newton-Bigelow Middle,02070305, 95.3, 7.9, 23.4, 12.8, 5.6 +4.333333333333333,4.33,a-vale-i2,2020-21,Newton-Charles E Brown Middle,02070310, 97.5, 4.2, 9.4, 4.0, 0.8 4.351111111111111,4.35,a-vale-i2,2020-21,Norfolk-Freeman-Kennedy School,02080005, 97.9, 3.5, 7.1, 2.5, 0.0 4.311111111111111,4.31,a-vale-i2,2020-21,Norfolk-H Olive Day,02080015, 97.0, 5.0, 13.0, 3.8, 0.2 4.177777777777778,4.18,a-vale-i2,2020-21,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 94.0, 10.1, 38.7, 16.0, 10.1 3.391111111111111,3.39,a-vale-i2,2020-21,North Adams-Drury High,02090505, 76.3, 38.5, 72.0, 62.8, 5.9 -3.991111111111111,3.99,a-vale-i2,2020-21,North Adams-Colegrove Park Elementary,02090008, 89.8, 16.5, 50.5, 39.4, 9.0 -4.0488888888888885,4.05,a-vale-i2,2020-21,North Adams-Greylock,02090015, 91.1, 14.6, 36.9, 27.9, 10.3 3.893333333333333,3.89,a-vale-i2,2020-21,North Adams-Brayton,02090035, 87.6, 20.0, 59.6, 48.8, 11.5 +4.0488888888888885,4.05,a-vale-i2,2020-21,North Adams-Greylock,02090015, 91.1, 14.6, 36.9, 27.9, 10.3 +3.991111111111111,3.99,a-vale-i2,2020-21,North Adams-Colegrove Park Elementary,02090008, 89.8, 16.5, 50.5, 39.4, 9.0 +4.213333333333333,4.21,a-vale-i2,2020-21,North Andover-North Andover High,02110505, 94.8, 8.7, 24.9, 12.9, 8.2 +4.208888888888889,4.21,a-vale-i2,2020-21,North Andover-North Andover Middle,02110305, 94.7, 9.0, 29.6, 13.4, 16.5 +4.28,4.28,a-vale-i2,2020-21,North Andover-Thomson,02110020, 96.3, 6.1, 21.6, 9.1, 3.7 +4.28,4.28,a-vale-i2,2020-21,North Andover-Atkinson,02110001, 96.3, 6.2, 22.4, 9.1, 2.7 4.333333333333333,4.33,a-vale-i2,2020-21,North Andover-Annie L Sargent School,02110018, 97.5, 4.2, 9.1, 1.5, 0.7 4.315555555555555,4.32,a-vale-i2,2020-21,North Andover-Kittredge,02110015, 97.1, 4.9, 11.7, 4.3, 2.6 4.346666666666667,4.35,a-vale-i2,2020-21,North Andover-Franklin,02110010, 97.8, 3.8, 9.7, 2.3, 1.0 4.208888888888889,4.21,a-vale-i2,2020-21,North Andover-Anne Bradstreet Early Childhood Center,02110005, 94.7, 8.7, 32.0, 15.0, 2.1 -4.28,4.28,a-vale-i2,2020-21,North Andover-Thomson,02110020, 96.3, 6.1, 21.6, 9.1, 3.7 -4.208888888888889,4.21,a-vale-i2,2020-21,North Andover-North Andover Middle,02110305, 94.7, 9.0, 29.6, 13.4, 16.5 -4.28,4.28,a-vale-i2,2020-21,North Andover-Atkinson,02110001, 96.3, 6.2, 22.4, 9.1, 2.7 -4.213333333333333,4.21,a-vale-i2,2020-21,North Andover-North Andover High,02110505, 94.8, 8.7, 24.9, 12.9, 8.2 -4.333333333333333,4.33,a-vale-i2,2020-21,North Attleborough-Amvet Boulevard,02120007, 97.5, 4.1, 10.4, 5.1, 3.1 -4.351111111111111,4.35,a-vale-i2,2020-21,North Attleborough-Falls,02120010, 97.9, 3.5, 7.9, 5.8, 2.6 -4.351111111111111,4.35,a-vale-i2,2020-21,North Attleborough-Joseph W Martin Jr Elementary,02120013, 97.9, 3.5, 8.0, 3.2, 4.4 -4.137777777777777,4.14,a-vale-i2,2020-21,North Attleborough-North Attleborough Early Learning Center,02120020, 93.1, 10.0, 35.9, 24.5, 18.8 -4.359999999999999,4.36,a-vale-i2,2020-21,North Attleborough-Roosevelt Avenue,02120015, 98.1, 3.1, 6.0, 0.5, 0.0 -4.097777777777778,4.1,a-vale-i2,2020-21,North Attleborough-North Attleboro High,02120505, 92.2, 13.0, 36.9, 18.9, 12.4 4.204444444444444,4.2,a-vale-i2,2020-21,North Attleborough-Community,02120030, 94.6, 8.8, 31.2, 14.3, 11.7 4.293333333333333,4.29,a-vale-i2,2020-21,North Attleborough-North Attleborough Middle,02120305, 96.6, 5.7, 14.9, 7.6, 4.2 -3.968888888888889,3.97,a-vale-i2,2020-21,North Brookfield-North Brookfield High,02150505, 89.3, 17.2, 59.4, 36.2, 57.6 +4.097777777777778,4.1,a-vale-i2,2020-21,North Attleborough-North Attleboro High,02120505, 92.2, 13.0, 36.9, 18.9, 12.4 +4.359999999999999,4.36,a-vale-i2,2020-21,North Attleborough-Roosevelt Avenue,02120015, 98.1, 3.1, 6.0, 0.5, 0.0 +4.333333333333333,4.33,a-vale-i2,2020-21,North Attleborough-Amvet Boulevard,02120007, 97.5, 4.1, 10.4, 5.1, 3.1 +4.137777777777777,4.14,a-vale-i2,2020-21,North Attleborough-North Attleborough Early Learning Center,02120020, 93.1, 10.0, 35.9, 24.5, 18.8 +4.351111111111111,4.35,a-vale-i2,2020-21,North Attleborough-Falls,02120010, 97.9, 3.5, 7.9, 5.8, 2.6 +4.351111111111111,4.35,a-vale-i2,2020-21,North Attleborough-Joseph W Martin Jr Elementary,02120013, 97.9, 3.5, 8.0, 3.2, 4.4 4.173333333333334,4.17,a-vale-i2,2020-21,North Brookfield-North Brookfield Elementary,02150015, 93.9, 10.1, 35.1, 18.2, 16.6 +3.968888888888889,3.97,a-vale-i2,2020-21,North Brookfield-North Brookfield High,02150505, 89.3, 17.2, 59.4, 36.2, 57.6 4.088888888888889,4.09,a-vale-i2,2020-21,North Middlesex-Squannacook Early Childhood Center,07350002, 92.0, 9.8, 32.4, 32.4, 19.1 -4.306666666666667,4.31,a-vale-i2,2020-21,North Middlesex-Nissitissit Middle School,07350310, 96.9, 5.1, 16.1, 5.2, 2.3 4.3244444444444445,4.32,a-vale-i2,2020-21,North Middlesex-Varnum Brook,07350035, 97.3, 4.3, 9.9, 4.1, 3.3 4.177777777777778,4.18,a-vale-i2,2020-21,North Middlesex-Hawthorne Brook,07350030, 94.0, 10.0, 33.6, 19.4, 6.7 4.2444444444444445,4.24,a-vale-i2,2020-21,North Middlesex-Ashby Elementary,07350010, 95.5, 7.4, 20.5, 8.3, 3.2 -4.293333333333333,4.29,a-vale-i2,2020-21,North Middlesex-Spaulding Memorial,07350005, 96.6, 5.6, 17.1, 6.8, 2.4 +4.306666666666667,4.31,a-vale-i2,2020-21,North Middlesex-Nissitissit Middle School,07350310, 96.9, 5.1, 16.1, 5.2, 2.3 4.106666666666667,4.11,a-vale-i2,2020-21,North Middlesex-North Middlesex Regional,07350505, 92.4, 12.5, 37.4, 19.7, 14.6 -4.364444444444445,4.36,a-vale-i2,2020-21,North Reading-L D Batchelder,02170005, 98.2, 3.1, 4.0, 1.3, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,North Reading-E Ethel Little School,02170003, 97.5, 4.2, 11.6, 4.1, 8.8 +4.293333333333333,4.29,a-vale-i2,2020-21,North Middlesex-Spaulding Memorial,07350005, 96.6, 5.6, 17.1, 6.8, 2.4 4.293333333333333,4.29,a-vale-i2,2020-21,North Reading-North Reading High,02170505, 96.6, 5.8, 12.5, 6.8, 0.0 +4.333333333333333,4.33,a-vale-i2,2020-21,North Reading-E Ethel Little School,02170003, 97.5, 4.2, 11.6, 4.1, 8.8 +4.364444444444445,4.36,a-vale-i2,2020-21,North Reading-L D Batchelder,02170005, 98.2, 3.1, 4.0, 1.3, 0.0 4.3244444444444445,4.32,a-vale-i2,2020-21,North Reading-North Reading Middle,02170305, 97.3, 4.6, 10.5, 3.6, 0.9 4.351111111111111,4.35,a-vale-i2,2020-21,North Reading-J Turner Hood,02170010, 97.9, 3.4, 9.1, 2.0, 0.0 -4.222222222222222,4.22,a-vale-i2,2020-21,Northampton-Leeds,02100025, 95.0, 8.0, 24.0, 16.4, 5.9 4.124444444444444,4.12,a-vale-i2,2020-21,Northampton-Bridge Street,02100005, 92.8, 11.3, 34.7, 22.0, 4.9 -4.235555555555555,4.24,a-vale-i2,2020-21,Northampton-Northampton High,02100505, 95.3, 7.8, 17.8, 9.4, 3.0 4.24,4.24,a-vale-i2,2020-21,Northampton-Jackson Street,02100020, 95.4, 7.4, 24.6, 13.6, 3.3 +4.222222222222222,4.22,a-vale-i2,2020-21,Northampton-Leeds,02100025, 95.0, 8.0, 24.0, 16.4, 5.9 4.151111111111112,4.15,a-vale-i2,2020-21,Northampton-R. K. Finn Ryan Road,02100029, 93.4, 11.0, 26.8, 15.5, 2.5 4.213333333333333,4.21,a-vale-i2,2020-21,Northampton-John F Kennedy Middle School,02100410, 94.8, 8.6, 25.3, 13.2, 3.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Northampton-Northampton High,02100505, 95.3, 7.8, 17.8, 9.4, 3.0 4.097777777777778,4.1,a-vale-i2,2020-21,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 92.2, 12.9, 47.3, 26.5, 18.9 4.115555555555555,4.12,a-vale-i2,2020-21,Northboro-Southboro-Algonquin Regional High,07300505, 92.6, 12.5, 45.9, 24.7, 0.1 -4.275555555555556,4.28,a-vale-i2,2020-21,Northborough-Fannie E Proctor,02130015, 96.2, 6.2, 21.1, 12.0, 0.0 4.28,4.28,a-vale-i2,2020-21,Northborough-Marguerite E Peaslee,02130014, 96.3, 6.1, 19.3, 6.6, 0.0 -4.253333333333334,4.25,a-vale-i2,2020-21,Northborough-Robert E. Melican Middle School,02130305, 95.7, 7.2, 25.0, 11.9, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Northborough-Lincoln Street,02130003, 96.9, 5.1, 14.5, 5.2, 0.0 4.275555555555556,4.28,a-vale-i2,2020-21,Northborough-Marion E Zeh,02130020, 96.2, 6.2, 15.8, 10.4, 0.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Northborough-Robert E. Melican Middle School,02130305, 95.7, 7.2, 25.0, 11.9, 0.0 +4.275555555555556,4.28,a-vale-i2,2020-21,Northborough-Fannie E Proctor,02130015, 96.2, 6.2, 21.1, 12.0, 0.0 4.1466666666666665,4.15,a-vale-i2,2020-21,Northbridge-Northbridge High,02140505, 93.3, 11.1, 28.6, 18.6, 7.1 +4.204444444444444,4.2,a-vale-i2,2020-21,Northbridge-W Edward Balmer,02140001, 94.6, 8.8, 31.8, 16.2, 4.0 4.12,4.12,a-vale-i2,2020-21,Northbridge-Northbridge Elementary,02140005, 92.7, 11.2, 34.1, 24.7, 7.3 4.1866666666666665,4.19,a-vale-i2,2020-21,Northbridge-Northbridge Middle,02140305, 94.2, 9.7, 29.8, 18.8, 5.2 -4.204444444444444,4.2,a-vale-i2,2020-21,Northbridge-W Edward Balmer,02140001, 94.6, 8.8, 31.8, 16.2, 4.0 4.16,4.16,a-vale-i2,2020-21,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 93.6, 11.0, 34.5, 19.7, 7.8 4.093333333333333,4.09,a-vale-i2,2020-21,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 92.1, 12.9, 42.0, 24.0, 16.8 4.173333333333334,4.17,a-vale-i2,2020-21,Norton-Norton Middle,02180305, 93.9, 10.4, 35.6, 17.0, 15.0 @@ -12232,18 +12232,18 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.293333333333333,4.29,a-vale-i2,2020-21,Norton-J C Solmonese,02180015, 96.6, 5.5, 14.8, 5.4, 6.4 4.275555555555556,4.28,a-vale-i2,2020-21,Norton-L G Nourse Elementary,02180010, 96.2, 6.2, 19.1, 8.7, 7.2 4.142222222222222,4.14,a-vale-i2,2020-21,Norton-Norton High,02180505, 93.2, 11.3, 36.9, 18.8, 6.7 -4.3244444444444445,4.32,a-vale-i2,2020-21,Norwell-Grace Farrar Cole,02190005, 97.3, 4.5, 10.3, 3.4, 8.4 -4.222222222222222,4.22,a-vale-i2,2020-21,Norwell-Norwell High,02190505, 95.0, 8.2, 27.5, 8.2, 8.2 4.2844444444444445,4.28,a-vale-i2,2020-21,Norwell-William G Vinal,02190020, 96.4, 5.9, 20.7, 4.7, 1.9 4.231111111111111,4.23,a-vale-i2,2020-21,Norwell-Norwell Middle School,02190405, 95.2, 8.1, 27.7, 11.0, 8.6 -4.204444444444444,4.2,a-vale-i2,2020-21,Norwood-George F. Willett,02200075, 94.6, 8.5, 25.2, 16.7, 15.9 -4.1866666666666665,4.19,a-vale-i2,2020-21,Norwood-Dr. Philip O. Coakley Middle School,02200305, 94.2, 9.7, 30.0, 16.2, 10.9 +4.222222222222222,4.22,a-vale-i2,2020-21,Norwell-Norwell High,02190505, 95.0, 8.2, 27.5, 8.2, 8.2 +4.3244444444444445,4.32,a-vale-i2,2020-21,Norwell-Grace Farrar Cole,02190005, 97.3, 4.5, 10.3, 3.4, 8.4 4.24,4.24,a-vale-i2,2020-21,Norwood-Norwood High,02200505, 95.4, 7.6, 17.3, 11.1, 6.8 -4.3244444444444445,4.32,a-vale-i2,2020-21,Norwood-Charles J Prescott,02200025, 97.3, 4.4, 14.2, 6.0, 6.7 +4.1866666666666665,4.19,a-vale-i2,2020-21,Norwood-Dr. Philip O. Coakley Middle School,02200305, 94.2, 9.7, 30.0, 16.2, 10.9 +4.204444444444444,4.2,a-vale-i2,2020-21,Norwood-George F. Willett,02200075, 94.6, 8.5, 25.2, 16.7, 15.9 +4.288888888888889,4.29,a-vale-i2,2020-21,Norwood-John P Oldham,02200020, 96.5, 5.8, 19.0, 9.3, 8.5 4.288888888888889,4.29,a-vale-i2,2020-21,Norwood-F A Cleveland,02200015, 96.5, 5.8, 18.2, 7.3, 7.3 4.288888888888889,4.29,a-vale-i2,2020-21,Norwood-Cornelius M Callahan,02200010, 96.5, 5.9, 21.3, 7.7, 10.0 4.1866666666666665,4.19,a-vale-i2,2020-21,Norwood-Balch,02200005, 94.2, 9.5, 33.1, 18.5, 11.8 -4.288888888888889,4.29,a-vale-i2,2020-21,Norwood-John P Oldham,02200020, 96.5, 5.8, 19.0, 9.3, 8.5 +4.3244444444444445,4.32,a-vale-i2,2020-21,Norwood-Charles J Prescott,02200025, 97.3, 4.4, 14.2, 6.0, 6.7 4.208888888888889,4.21,a-vale-i2,2020-21,Oak Bluffs-Oak Bluffs Elementary,02210005, 94.7, 8.4, 32.2, 14.3, 9.9 4.2844444444444445,4.28,a-vale-i2,2020-21,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 96.4, 6.3, 22.7, 5.7, 4.8 4.204444444444444,4.2,a-vale-i2,2020-21,Old Rochester-Old Rochester Regional Jr High,07400405, 94.6, 9.0, 31.1, 15.3, 2.8 @@ -12252,36 +12252,36 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.195555555555556,4.2,a-vale-i2,2020-21,Orange-Dexter Park,02230010, 94.4, 9.5, 27.0, 18.5, 3.0 4.093333333333333,4.09,a-vale-i2,2020-21,Orange-Fisher Hill,02230015, 92.1, 13.0, 39.2, 23.0, 0.0 4.222222222222222,4.22,a-vale-i2,2020-21,Orleans-Orleans Elementary,02240005, 95.0, 8.4, 35.0, 11.1, 22.8 -4.248888888888889,4.25,a-vale-i2,2020-21,Oxford-Oxford Middle,02260405, 95.6, 7.3, 22.4, 10.5, 1.1 -4.088888888888889,4.09,a-vale-i2,2020-21,Oxford-Oxford High,02260505, 92.0, 13.3, 34.5, 22.4, 8.7 4.235555555555555,4.24,a-vale-i2,2020-21,Oxford-Clara Barton,02260005, 95.3, 7.6, 21.3, 12.5, 3.5 4.253333333333334,4.25,a-vale-i2,2020-21,Oxford-Alfred M Chaffee,02260010, 95.7, 6.7, 20.7, 10.8, 2.3 -4.173333333333334,4.17,a-vale-i2,2020-21,Palmer-Old Mill Pond,02270008, 93.9, 9.7, 27.8, 20.2, 6.9 +4.248888888888889,4.25,a-vale-i2,2020-21,Oxford-Oxford Middle,02260405, 95.6, 7.3, 22.4, 10.5, 1.1 +4.088888888888889,4.09,a-vale-i2,2020-21,Oxford-Oxford High,02260505, 92.0, 13.3, 34.5, 22.4, 8.7 4.191111111111111,4.19,a-vale-i2,2020-21,Palmer-Palmer High,02270505, 94.3, 9.2, 21.1, 15.9, 3.4 +4.173333333333334,4.17,a-vale-i2,2020-21,Palmer-Old Mill Pond,02270008, 93.9, 9.7, 27.8, 20.2, 6.9 4.262222222222222,4.26,a-vale-i2,2020-21,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 95.9, 6.8, 22.6, 4.7, 0.0 3.195555555555556,3.2,a-vale-i2,2020-21,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 71.9, 45.2, 73.0, 62.6, 11.1 +4.164444444444444,4.16,a-vale-i2,2020-21,Peabody-John E. McCarthy,02290016, 93.7, 10.0, 36.0, 21.4, 22.9 +4.16,4.16,a-vale-i2,2020-21,Peabody-Center,02290015, 93.6, 10.5, 36.6, 20.6, 19.4 +4.088888888888889,4.09,a-vale-i2,2020-21,Peabody-Thomas Carroll,02290010, 92.0, 13.0, 46.3, 25.9, 24.8 +4.24,4.24,a-vale-i2,2020-21,Peabody-John E Burke,02290007, 95.4, 7.7, 24.0, 9.6, 18.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Peabody-Captain Samuel Brown,02290005, 94.7, 8.8, 28.7, 16.0, 12.3 +4.088888888888889,4.09,a-vale-i2,2020-21,Peabody-William A Welch Sr,02290027, 92.0, 13.0, 46.0, 29.3, 21.3 +4.248888888888889,4.25,a-vale-i2,2020-21,Peabody-South Memorial,02290035, 95.6, 7.3, 21.0, 10.9, 12.4 4.275555555555556,4.28,a-vale-i2,2020-21,Peabody-West Memorial,02290045, 96.2, 6.2, 16.9, 5.8, 9.5 3.9288888888888893,3.93,a-vale-i2,2020-21,Peabody-J Henry Higgins Middle,02290305, 88.4, 19.3, 58.8, 44.0, 20.3 3.7333333333333334,3.73,a-vale-i2,2020-21,Peabody-Peabody Veterans Memorial High,02290510, 84.0, 26.2, 66.4, 52.8, 32.5 -4.208888888888889,4.21,a-vale-i2,2020-21,Peabody-Captain Samuel Brown,02290005, 94.7, 8.8, 28.7, 16.0, 12.3 -4.24,4.24,a-vale-i2,2020-21,Peabody-John E Burke,02290007, 95.4, 7.7, 24.0, 9.6, 18.0 -4.088888888888889,4.09,a-vale-i2,2020-21,Peabody-Thomas Carroll,02290010, 92.0, 13.0, 46.3, 25.9, 24.8 -4.16,4.16,a-vale-i2,2020-21,Peabody-Center,02290015, 93.6, 10.5, 36.6, 20.6, 19.4 -4.164444444444444,4.16,a-vale-i2,2020-21,Peabody-John E. McCarthy,02290016, 93.7, 10.0, 36.0, 21.4, 22.9 -4.088888888888889,4.09,a-vale-i2,2020-21,Peabody-William A Welch Sr,02290027, 92.0, 13.0, 46.0, 29.3, 21.3 -4.248888888888889,4.25,a-vale-i2,2020-21,Peabody-South Memorial,02290035, 95.6, 7.3, 21.0, 10.9, 12.4 4.266666666666667,4.27,a-vale-i2,2020-21,Pelham-Pelham Elementary,02300005, 96.0, 6.3, 17.9, 14.3, 0.0 4.0488888888888885,4.05,a-vale-i2,2020-21,Pembroke-Pembroke High School,02310505, 91.1, 15.0, 50.2, 26.9, 1.5 -4.2444444444444445,4.24,a-vale-i2,2020-21,Pembroke-Bryantville Elementary,02310003, 95.5, 7.5, 23.6, 8.7, 11.4 -4.257777777777777,4.26,a-vale-i2,2020-21,Pembroke-Hobomock Elementary,02310010, 95.8, 7.1, 21.1, 9.5, 12.8 -4.24,4.24,a-vale-i2,2020-21,Pembroke-North Pembroke Elementary,02310015, 95.4, 7.7, 25.4, 11.3, 2.6 4.062222222222222,4.06,a-vale-i2,2020-21,Pembroke-Pembroke Community Middle School,02310305, 91.4, 14.5, 49.9, 31.0, 0.0 -4.311111111111111,4.31,a-vale-i2,2020-21,Pentucket-Elmer S Bagnall,07450005, 97.0, 5.0, 13.4, 3.8, 2.3 -4.275555555555556,4.28,a-vale-i2,2020-21,Pentucket-Pentucket Regional Middle,07450405, 96.2, 6.5, 20.3, 7.1, 4.0 -4.342222222222222,4.34,a-vale-i2,2020-21,Pentucket-Dr John C Page School,07450015, 97.7, 3.9, 10.2, 1.6, 0.7 +4.24,4.24,a-vale-i2,2020-21,Pembroke-North Pembroke Elementary,02310015, 95.4, 7.7, 25.4, 11.3, 2.6 +4.257777777777777,4.26,a-vale-i2,2020-21,Pembroke-Hobomock Elementary,02310010, 95.8, 7.1, 21.1, 9.5, 12.8 +4.2444444444444445,4.24,a-vale-i2,2020-21,Pembroke-Bryantville Elementary,02310003, 95.5, 7.5, 23.6, 8.7, 11.4 4.248888888888889,4.25,a-vale-i2,2020-21,Pentucket-Pentucket Regional Sr High,07450505, 95.6, 7.3, 22.2, 9.6, 3.9 -4.32,4.32,a-vale-i2,2020-21,Pentucket-Helen R Donaghue School,07450010, 97.2, 4.6, 11.3, 2.5, 0.8 +4.275555555555556,4.28,a-vale-i2,2020-21,Pentucket-Pentucket Regional Middle,07450405, 96.2, 6.5, 20.3, 7.1, 4.0 4.302222222222222,4.3,a-vale-i2,2020-21,Pentucket-Dr Frederick N Sweetsir,07450020, 96.8, 5.2, 14.0, 4.7, 1.4 +4.342222222222222,4.34,a-vale-i2,2020-21,Pentucket-Dr John C Page School,07450015, 97.7, 3.9, 10.2, 1.6, 0.7 +4.32,4.32,a-vale-i2,2020-21,Pentucket-Helen R Donaghue School,07450010, 97.2, 4.6, 11.3, 2.5, 0.8 +4.311111111111111,4.31,a-vale-i2,2020-21,Pentucket-Elmer S Bagnall,07450005, 97.0, 5.0, 13.4, 3.8, 2.3 4.328888888888889,4.33,a-vale-i2,2020-21,Petersham-Petersham Center,02340005, 97.4, 4.5, 13.1, 4.9, 0.0 1.3644444444444443,1.36,a-vale-i2,2020-21,Phoenix Academy Public Charter High School Lawrence (District)-Phoenix Academy Public Charter High School Lawrence,35180505, 30.7, 105.7, 99.4, 100.0, 72.7 1.4666666666666666,1.47,a-vale-i2,2020-21,Phoenix Academy Public Charter High School Springfield (District)-Phoenix Academy Public Charter High School Springfield,35080505, 33.0, 102.0, 99.1, 99.6, 60.4 @@ -12289,188 +12289,188 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.3244444444444445,4.32,a-vale-i2,2020-21,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 97.3, 4.8, 10.6, 3.1, 0.9 4.288888888888889,4.29,a-vale-i2,2020-21,Pioneer Charter School of Science II (PCSS-II) (District)-Pioneer Charter School of Science II (PCSS-II),35060505, 96.5, 6.2, 22.6, 8.2, 0.3 4.2844444444444445,4.28,a-vale-i2,2020-21,Pioneer Valley-Northfield Elementary,07500008, 96.4, 5.8, 16.1, 6.3, 4.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Pioneer Valley-Pioneer Valley Regional,07500505, 97.3, 4.5, 9.3, 5.7, 2.1 4.311111111111111,4.31,a-vale-i2,2020-21,Pioneer Valley-Bernardston Elementary,07500006, 97.0, 4.9, 11.4, 5.4, 1.6 +4.3244444444444445,4.32,a-vale-i2,2020-21,Pioneer Valley-Pioneer Valley Regional,07500505, 97.3, 4.5, 9.3, 5.7, 2.1 4.328888888888889,4.33,a-vale-i2,2020-21,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 97.4, 4.4, 13.7, 4.6, 0.4 4.231111111111111,4.23,a-vale-i2,2020-21,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 95.2, 7.9, 24.4, 12.2, 0.0 3.493333333333333,3.49,a-vale-i2,2020-21,Pittsfield-Eagle Education Academy,02360525, 78.6, 39.5, 80.0, 73.3, 0.0 +4.1866666666666665,4.19,a-vale-i2,2020-21,Pittsfield-Allendale,02360010, 94.2, 9.7, 35.1, 18.1, 3.0 +3.8577777777777778,3.86,a-vale-i2,2020-21,Pittsfield-Crosby Educational Academy,02360030, 86.8, 19.8, 68.2, 50.0, 0.0 +4.093333333333333,4.09,a-vale-i2,2020-21,Pittsfield-Egremont,02360035, 92.1, 13.1, 35.1, 21.6, 0.7 +4.24,4.24,a-vale-i2,2020-21,Pittsfield-Robert T. Capeless Elementary School,02360045, 95.4, 7.5, 23.7, 14.2, 0.0 +3.9288888888888893,3.93,a-vale-i2,2020-21,Pittsfield-Morningside Community School,02360055, 88.4, 19.2, 57.5, 41.9, 3.4 +3.8400000000000003,3.84,a-vale-i2,2020-21,Pittsfield-Crosby,02360065, 86.4, 21.6, 56.0, 42.7, 8.2 +4.222222222222222,4.22,a-vale-i2,2020-21,Pittsfield-Stearns,02360090, 95.0, 8.4, 25.5, 13.5, 0.0 +4.293333333333333,4.29,a-vale-i2,2020-21,Pittsfield-Williams,02360100, 96.6, 5.8, 18.3, 10.3, 1.2 +3.826666666666666,3.83,a-vale-i2,2020-21,Pittsfield-Silvio O Conte Community,02360105, 86.1, 21.8, 61.3, 47.9, 0.0 4.0311111111111115,4.03,a-vale-i2,2020-21,Pittsfield-John T Reid Middle,02360305, 90.7, 15.5, 47.5, 31.5, 5.1 4.124444444444444,4.12,a-vale-i2,2020-21,Pittsfield-Theodore Herberg Middle,02360310, 92.8, 12.0, 33.4, 21.4, 4.6 -3.826666666666666,3.83,a-vale-i2,2020-21,Pittsfield-Silvio O Conte Community,02360105, 86.1, 21.8, 61.3, 47.9, 0.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Pittsfield-Williams,02360100, 96.6, 5.8, 18.3, 10.3, 1.2 -4.222222222222222,4.22,a-vale-i2,2020-21,Pittsfield-Stearns,02360090, 95.0, 8.4, 25.5, 13.5, 0.0 -3.8400000000000003,3.84,a-vale-i2,2020-21,Pittsfield-Crosby,02360065, 86.4, 21.6, 56.0, 42.7, 8.2 -3.9288888888888893,3.93,a-vale-i2,2020-21,Pittsfield-Morningside Community School,02360055, 88.4, 19.2, 57.5, 41.9, 3.4 -4.24,4.24,a-vale-i2,2020-21,Pittsfield-Robert T. Capeless Elementary School,02360045, 95.4, 7.5, 23.7, 14.2, 0.0 -4.093333333333333,4.09,a-vale-i2,2020-21,Pittsfield-Egremont,02360035, 92.1, 13.1, 35.1, 21.6, 0.7 -3.8577777777777778,3.86,a-vale-i2,2020-21,Pittsfield-Crosby Educational Academy,02360030, 86.8, 19.8, 68.2, 50.0, 0.0 -4.1866666666666665,4.19,a-vale-i2,2020-21,Pittsfield-Allendale,02360010, 94.2, 9.7, 35.1, 18.1, 3.0 -4.026666666666666,4.03,a-vale-i2,2020-21,Pittsfield-Taconic High,02360510, 90.6, 15.7, 42.3, 29.2, 7.6 3.924444444444444,3.92,a-vale-i2,2020-21,Pittsfield-Pittsfield High,02360505, 88.3, 19.6, 50.4, 34.5, 6.5 -4.248888888888889,4.25,a-vale-i2,2020-21,Plainville-Beatrice H Wood Elementary,02380005, 95.6, 7.2, 23.8, 10.8, 3.0 +4.026666666666666,4.03,a-vale-i2,2020-21,Pittsfield-Taconic High,02360510, 90.6, 15.7, 42.3, 29.2, 7.6 4.217777777777778,4.22,a-vale-i2,2020-21,Plainville-Anna Ware Jackson,02380010, 94.9, 8.1, 25.7, 14.4, 2.6 +4.248888888888889,4.25,a-vale-i2,2020-21,Plainville-Beatrice H Wood Elementary,02380005, 95.6, 7.2, 23.8, 10.8, 3.0 4.248888888888889,4.25,a-vale-i2,2020-21,Plymouth-Cold Spring,02390005, 95.6, 7.3, 24.9, 11.9, 9.3 4.337777777777777,4.34,a-vale-i2,2020-21,Plymouth-Plymouth Early Childhood Center,02390003, 97.6, 3.5, 8.3, 4.7, 8.3 -4.2844444444444445,4.28,a-vale-i2,2020-21,Plymouth-Indian Brook,02390012, 96.4, 6.1, 20.4, 6.7, 6.9 -4.28,4.28,a-vale-i2,2020-21,Plymouth-Nathaniel Morton Elementary,02390030, 96.3, 6.1, 20.9, 5.7, 3.7 -4.222222222222222,4.22,a-vale-i2,2020-21,Plymouth-Federal Furnace School,02390011, 95.0, 8.3, 27.5, 12.1, 9.6 -4.124444444444444,4.12,a-vale-i2,2020-21,Plymouth-Hedge,02390010, 92.8, 11.8, 49.5, 23.7, 11.6 4.293333333333333,4.29,a-vale-i2,2020-21,Plymouth-Manomet Elementary,02390015, 96.6, 5.8, 18.7, 3.6, 9.2 -4.275555555555556,4.28,a-vale-i2,2020-21,Plymouth-South Elementary,02390046, 96.2, 6.3, 19.4, 8.1, 5.2 4.2,4.2,a-vale-i2,2020-21,Plymouth-Plymouth South High,02390515, 94.5, 9.0, 32.1, 13.9, 17.4 4.1288888888888895,4.13,a-vale-i2,2020-21,Plymouth-Plymouth North High,02390505, 92.9, 11.6, 40.9, 19.4, 18.4 -4.235555555555555,4.24,a-vale-i2,2020-21,Plymouth-Plymouth Commun Intermediate,02390405, 95.3, 8.0, 28.0, 11.1, 16.3 -4.231111111111111,4.23,a-vale-i2,2020-21,Plymouth-Plymouth South Middle,02390305, 95.2, 8.1, 31.6, 11.1, 14.1 +4.124444444444444,4.12,a-vale-i2,2020-21,Plymouth-Hedge,02390010, 92.8, 11.8, 49.5, 23.7, 11.6 +4.222222222222222,4.22,a-vale-i2,2020-21,Plymouth-Federal Furnace School,02390011, 95.0, 8.3, 27.5, 12.1, 9.6 +4.2844444444444445,4.28,a-vale-i2,2020-21,Plymouth-Indian Brook,02390012, 96.4, 6.1, 20.4, 6.7, 6.9 +4.28,4.28,a-vale-i2,2020-21,Plymouth-Nathaniel Morton Elementary,02390030, 96.3, 6.1, 20.9, 5.7, 3.7 +4.275555555555556,4.28,a-vale-i2,2020-21,Plymouth-South Elementary,02390046, 96.2, 6.3, 19.4, 8.1, 5.2 4.271111111111111,4.27,a-vale-i2,2020-21,Plymouth-West Elementary,02390047, 96.1, 6.6, 17.0, 7.1, 8.4 +4.231111111111111,4.23,a-vale-i2,2020-21,Plymouth-Plymouth South Middle,02390305, 95.2, 8.1, 31.6, 11.1, 14.1 +4.235555555555555,4.24,a-vale-i2,2020-21,Plymouth-Plymouth Commun Intermediate,02390405, 95.3, 8.0, 28.0, 11.1, 16.3 4.302222222222222,4.3,a-vale-i2,2020-21,Plympton-Dennett Elementary,02400010, 96.8, 5.3, 15.0, 4.5, 4.1 4.208888888888889,4.21,a-vale-i2,2020-21,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 94.7, 8.9, 31.0, 16.9, 11.8 4.071111111111111,4.07,a-vale-i2,2020-21,Provincetown-Provincetown Schools,02420020, 91.6, 12.1, 36.3, 26.1, 7.6 -3.8533333333333335,3.85,a-vale-i2,2020-21,Quabbin-Quabbin Regional Middle School,07530405, 86.7, 22.1, 47.2, 35.3, 14.0 +4.013333333333334,4.01,a-vale-i2,2020-21,Quabbin-Hubbardston Center,07530010, 90.3, 16.4, 41.5, 23.0, 0.0 4.013333333333334,4.01,a-vale-i2,2020-21,Quabbin-Ruggles Lane,07530030, 90.3, 16.0, 39.8, 25.3, 17.8 +3.8533333333333335,3.85,a-vale-i2,2020-21,Quabbin-Quabbin Regional Middle School,07530405, 86.7, 22.1, 47.2, 35.3, 14.0 +3.8311111111111114,3.83,a-vale-i2,2020-21,Quabbin-Quabbin Regional High School,07530505, 86.2, 22.3, 54.5, 38.3, 20.3 4.168888888888889,4.17,a-vale-i2,2020-21,Quabbin-Oakham Center,07530025, 93.8, 10.2, 35.4, 13.1, 0.0 4.351111111111111,4.35,a-vale-i2,2020-21,Quabbin-New Braintree Grade,07530020, 97.9, 3.4, 5.9, 5.9, 0.0 -4.013333333333334,4.01,a-vale-i2,2020-21,Quabbin-Hubbardston Center,07530010, 90.3, 16.4, 41.5, 23.0, 0.0 -3.8311111111111114,3.83,a-vale-i2,2020-21,Quabbin-Quabbin Regional High School,07530505, 86.2, 22.3, 54.5, 38.3, 20.3 3.986666666666667,3.99,a-vale-i2,2020-21,Quabbin-Hardwick Elementary,07530005, 89.7, 16.7, 40.4, 23.5, 0.0 -4.102222222222222,4.1,a-vale-i2,2020-21,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 92.3, 12.9, 39.4, 18.9, 0.0 -4.266666666666667,4.27,a-vale-i2,2020-21,Quaboag Regional-West Brookfield Elementary,07780010, 96.0, 6.4, 22.7, 9.5, 0.0 -4.204444444444444,4.2,a-vale-i2,2020-21,Quaboag Regional-Warren Elementary,07780005, 94.6, 8.6, 27.5, 18.3, 0.0 3.9466666666666663,3.95,a-vale-i2,2020-21,Quaboag Regional-Quaboag Regional High,07780505, 88.8, 18.5, 46.8, 32.1, 0.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Atlantic Middle,02430305, 97.3, 4.4, 13.6, 5.9, 3.2 -4.1466666666666665,4.15,a-vale-i2,2020-21,Quincy-Broad Meadows Middle,02430310, 93.3, 11.2, 34.6, 20.5, 12.3 -4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Central Middle,02430315, 97.3, 4.5, 12.2, 4.8, 4.3 -4.142222222222222,4.14,a-vale-i2,2020-21,Quincy-South West Middle School,02430320, 93.2, 11.1, 39.6, 24.1, 14.3 -4.257777777777777,4.26,a-vale-i2,2020-21,Quincy-Point Webster Middle,02430325, 95.8, 6.8, 21.8, 14.3, 7.4 -4.084444444444444,4.08,a-vale-i2,2020-21,Quincy-Quincy High,02430505, 91.9, 13.3, 34.8, 25.2, 16.6 +4.204444444444444,4.2,a-vale-i2,2020-21,Quaboag Regional-Warren Elementary,07780005, 94.6, 8.6, 27.5, 18.3, 0.0 +4.266666666666667,4.27,a-vale-i2,2020-21,Quaboag Regional-West Brookfield Elementary,07780010, 96.0, 6.4, 22.7, 9.5, 0.0 +4.102222222222222,4.1,a-vale-i2,2020-21,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 92.3, 12.9, 39.4, 18.9, 0.0 +4.195555555555556,4.2,a-vale-i2,2020-21,Quincy-Atherton Hough,02430040, 94.4, 9.3, 31.5, 16.1, 17.9 +4.231111111111111,4.23,a-vale-i2,2020-21,Quincy-Clifford H Marshall Elementary,02430055, 95.2, 7.5, 28.5, 15.3, 7.6 +4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Merrymount,02430060, 97.3, 4.5, 12.0, 5.0, 5.8 +4.342222222222222,4.34,a-vale-i2,2020-21,Quincy-Montclair,02430065, 97.7, 3.9, 12.0, 4.0, 4.0 +3.8311111111111114,3.83,a-vale-i2,2020-21,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 86.2, 19.2, 57.9, 43.7, 38.4 +4.337777777777777,4.34,a-vale-i2,2020-21,Quincy-Beechwood Knoll Elementary,02430020, 97.6, 4.0, 10.9, 4.5, 2.5 +4.32,4.32,a-vale-i2,2020-21,Quincy-Charles A Bernazzani Elementary,02430025, 97.2, 4.6, 14.6, 5.8, 6.7 4.191111111111111,4.19,a-vale-i2,2020-21,Quincy-North Quincy High,02430510, 94.3, 9.4, 27.0, 16.4, 8.4 -4.346666666666667,4.35,a-vale-i2,2020-21,Quincy-Wollaston School,02430110, 97.8, 3.5, 8.2, 4.1, 4.7 +4.084444444444444,4.08,a-vale-i2,2020-21,Quincy-Quincy High,02430505, 91.9, 13.3, 34.8, 25.2, 16.6 +4.257777777777777,4.26,a-vale-i2,2020-21,Quincy-Point Webster Middle,02430325, 95.8, 6.8, 21.8, 14.3, 7.4 +4.142222222222222,4.14,a-vale-i2,2020-21,Quincy-South West Middle School,02430320, 93.2, 11.1, 39.6, 24.1, 14.3 +4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Central Middle,02430315, 97.3, 4.5, 12.2, 4.8, 4.3 +4.1466666666666665,4.15,a-vale-i2,2020-21,Quincy-Broad Meadows Middle,02430310, 93.3, 11.2, 34.6, 20.5, 12.3 +4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Atlantic Middle,02430305, 97.3, 4.4, 13.6, 5.9, 3.2 +4.253333333333334,4.25,a-vale-i2,2020-21,Quincy-Lincoln-Hancock Community School,02430035, 95.7, 6.8, 24.3, 14.0, 10.7 4.311111111111111,4.31,a-vale-i2,2020-21,Quincy-Squantum,02430095, 97.0, 5.1, 16.4, 6.6, 6.6 4.071111111111111,4.07,a-vale-i2,2020-21,Quincy-Snug Harbor Community School,02430090, 91.6, 13.1, 40.5, 27.4, 15.4 4.337777777777777,4.34,a-vale-i2,2020-21,Quincy-Francis W Parker,02430075, 97.6, 3.9, 11.5, 6.2, 3.7 -4.342222222222222,4.34,a-vale-i2,2020-21,Quincy-Montclair,02430065, 97.7, 3.9, 12.0, 4.0, 4.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Quincy-Merrymount,02430060, 97.3, 4.5, 12.0, 5.0, 5.8 -4.231111111111111,4.23,a-vale-i2,2020-21,Quincy-Clifford H Marshall Elementary,02430055, 95.2, 7.5, 28.5, 15.3, 7.6 -4.195555555555556,4.2,a-vale-i2,2020-21,Quincy-Atherton Hough,02430040, 94.4, 9.3, 31.5, 16.1, 17.9 -4.253333333333334,4.25,a-vale-i2,2020-21,Quincy-Lincoln-Hancock Community School,02430035, 95.7, 6.8, 24.3, 14.0, 10.7 -4.32,4.32,a-vale-i2,2020-21,Quincy-Charles A Bernazzani Elementary,02430025, 97.2, 4.6, 14.6, 5.8, 6.7 -3.8311111111111114,3.83,a-vale-i2,2020-21,Quincy-Amelio Della Chiesa Early Childhood Center,02430005, 86.2, 19.2, 57.9, 43.7, 38.4 -4.337777777777777,4.34,a-vale-i2,2020-21,Quincy-Beechwood Knoll Elementary,02430020, 97.6, 4.0, 10.9, 4.5, 2.5 +4.346666666666667,4.35,a-vale-i2,2020-21,Quincy-Wollaston School,02430110, 97.8, 3.5, 8.2, 4.1, 4.7 3.8222222222222224,3.82,a-vale-i2,2020-21,Ralph C Mahar-Ralph C Mahar Regional,07550505, 86.0, 24.5, 68.4, 62.7, 0.0 +4.066666666666666,4.07,a-vale-i2,2020-21,Randolph-Randolph Community Middle,02440410, 91.5, 13.9, 44.7, 29.4, 11.5 +4.133333333333334,4.13,a-vale-i2,2020-21,Randolph-Martin E Young Elementary,02440040, 93.0, 11.1, 36.1, 23.2, 4.9 3.924444444444444,3.92,a-vale-i2,2020-21,Randolph-Randolph High,02440505, 88.3, 19.2, 48.9, 36.1, 10.3 +4.124444444444444,4.12,a-vale-i2,2020-21,Randolph-Margaret L Donovan,02440015, 92.8, 11.7, 36.3, 24.2, 7.4 4.111111111111111,4.11,a-vale-i2,2020-21,Randolph-J F Kennedy Elementary,02440018, 92.5, 11.4, 38.8, 25.6, 9.6 4.155555555555556,4.16,a-vale-i2,2020-21,Randolph-Elizabeth G Lyons Elementary,02440020, 93.5, 10.4, 39.5, 24.2, 17.8 -4.133333333333334,4.13,a-vale-i2,2020-21,Randolph-Martin E Young Elementary,02440040, 93.0, 11.1, 36.1, 23.2, 4.9 -4.066666666666666,4.07,a-vale-i2,2020-21,Randolph-Randolph Community Middle,02440410, 91.5, 13.9, 44.7, 29.4, 11.5 -4.124444444444444,4.12,a-vale-i2,2020-21,Randolph-Margaret L Donovan,02440015, 92.8, 11.7, 36.3, 24.2, 7.4 -4.355555555555555,4.36,a-vale-i2,2020-21,Reading-Birch Meadow,02460005, 98.0, 3.3, 6.9, 2.6, 0.0 -4.346666666666667,4.35,a-vale-i2,2020-21,Reading-Joshua Eaton,02460010, 97.8, 3.8, 9.4, 3.1, 0.0 4.311111111111111,4.31,a-vale-i2,2020-21,Reading-Walter S Parker Middle,02460310, 97.0, 5.1, 14.1, 5.4, 4.2 4.12,4.12,a-vale-i2,2020-21,Reading-RISE PreSchool,02460001, 92.7, 7.8, 28.2, 30.8, 0.0 +4.204444444444444,4.2,a-vale-i2,2020-21,Reading-Reading Memorial High,02460505, 94.6, 9.0, 26.0, 11.6, 4.9 +4.364444444444445,4.36,a-vale-i2,2020-21,Reading-Alice M Barrows,02460002, 98.2, 3.1, 6.7, 1.7, 0.0 +4.355555555555555,4.36,a-vale-i2,2020-21,Reading-Birch Meadow,02460005, 98.0, 3.3, 6.9, 2.6, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Reading-Joshua Eaton,02460010, 97.8, 3.8, 9.4, 3.1, 0.0 4.337777777777777,4.34,a-vale-i2,2020-21,Reading-J Warren Killam,02460017, 97.6, 4.0, 9.4, 2.2, 3.2 4.351111111111111,4.35,a-vale-i2,2020-21,Reading-Wood End Elementary School,02460020, 97.9, 3.5, 8.4, 1.2, 0.0 -4.364444444444445,4.36,a-vale-i2,2020-21,Reading-Alice M Barrows,02460002, 98.2, 3.1, 6.7, 1.7, 0.0 -4.204444444444444,4.2,a-vale-i2,2020-21,Reading-Reading Memorial High,02460505, 94.6, 9.0, 26.0, 11.6, 4.9 4.28,4.28,a-vale-i2,2020-21,Reading-Arthur W Coolidge Middle,02460305, 96.3, 6.3, 13.4, 7.0, 1.5 -4.253333333333334,4.25,a-vale-i2,2020-21,Revere-Abraham Lincoln,02480025, 95.7, 6.9, 22.0, 11.2, 4.3 -4.266666666666667,4.27,a-vale-i2,2020-21,Revere-Rumney Marsh Academy,02480014, 96.0, 6.8, 23.8, 10.3, 1.5 -4.262222222222222,4.26,a-vale-i2,2020-21,Revere-Beachmont Veterans Memorial School,02480013, 95.9, 6.8, 22.8, 9.3, 2.1 -4.262222222222222,4.26,a-vale-i2,2020-21,Revere-A. C. Whelan Elementary School,02480003, 95.9, 6.8, 19.0, 10.4, 2.8 -4.248888888888889,4.25,a-vale-i2,2020-21,Revere-Staff Sargent James J. Hill Elementary School,02480035, 95.6, 7.3, 22.7, 12.3, 3.6 2.9066666666666667,2.91,a-vale-i2,2020-21,Revere-Seacoast School,02480520, 65.4, 47.9, 82.4, 76.5, 22.4 4.0488888888888885,4.05,a-vale-i2,2020-21,Revere-Revere High,02480505, 91.1, 14.9, 39.7, 27.3, 20.9 4.288888888888889,4.29,a-vale-i2,2020-21,Revere-Susan B. Anthony Middle School,02480305, 96.5, 5.8, 19.3, 9.0, 0.3 4.226666666666667,4.23,a-vale-i2,2020-21,Revere-Garfield Middle School,02480057, 95.1, 8.2, 30.2, 15.3, 0.5 +4.262222222222222,4.26,a-vale-i2,2020-21,Revere-A. C. Whelan Elementary School,02480003, 95.9, 6.8, 19.0, 10.4, 2.8 +4.253333333333334,4.25,a-vale-i2,2020-21,Revere-Abraham Lincoln,02480025, 95.7, 6.9, 22.0, 11.2, 4.3 +4.262222222222222,4.26,a-vale-i2,2020-21,Revere-Beachmont Veterans Memorial School,02480013, 95.9, 6.8, 22.8, 9.3, 2.1 4.168888888888889,4.17,a-vale-i2,2020-21,Revere-Garfield Elementary School,02480056, 93.8, 9.9, 27.9, 18.8, 5.6 4.28,4.28,a-vale-i2,2020-21,Revere-Paul Revere,02480050, 96.3, 6.1, 20.5, 9.0, 3.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Revere-Staff Sargent James J. Hill Elementary School,02480035, 95.6, 7.3, 22.7, 12.3, 3.6 +4.266666666666667,4.27,a-vale-i2,2020-21,Revere-Rumney Marsh Academy,02480014, 96.0, 6.8, 23.8, 10.3, 1.5 4.208888888888889,4.21,a-vale-i2,2020-21,Richmond-Richmond Consolidated,02490005, 94.7, 8.9, 24.0, 15.6, 7.8 4.195555555555556,4.2,a-vale-i2,2020-21,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 94.4, 9.1, 30.9, 17.9, 1.8 4.262222222222222,4.26,a-vale-i2,2020-21,River Valley Charter (District)-River Valley Charter School,04820050, 95.9, 6.8, 22.9, 6.8, 15.7 4.32,4.32,a-vale-i2,2020-21,Rochester-Rochester Memorial,02500005, 97.2, 4.6, 11.4, 2.8, 0.4 +3.2844444444444445,3.28,a-vale-i2,2020-21,Rockland-Jefferson Elementary School,02510060, 73.9, 43.6, 55.9, 41.6, 10.1 +3.5644444444444447,3.56,a-vale-i2,2020-21,Rockland-Memorial Park,02510020, 80.2, 33.3, 46.2, 27.4, 16.5 3.72,3.72,a-vale-i2,2020-21,Rockland-R Stewart Esten,02510025, 83.7, 27.5, 51.4, 27.1, 15.4 3.5155555555555553,3.52,a-vale-i2,2020-21,Rockland-John W Rogers Middle,02510305, 79.1, 35.3, 48.8, 33.9, 14.7 -3.2844444444444445,3.28,a-vale-i2,2020-21,Rockland-Jefferson Elementary School,02510060, 73.9, 43.6, 55.9, 41.6, 10.1 3.577777777777778,3.58,a-vale-i2,2020-21,Rockland-Rockland Senior High,02510505, 80.5, 32.4, 65.4, 44.1, 20.5 -3.5644444444444447,3.56,a-vale-i2,2020-21,Rockland-Memorial Park,02510020, 80.2, 33.3, 46.2, 27.4, 16.5 +4.271111111111111,4.27,a-vale-i2,2020-21,Rockport-Rockport High,02520510, 96.1, 6.5, 15.8, 8.8, 3.5 4.32,4.32,a-vale-i2,2020-21,Rockport-Rockport Elementary,02520005, 97.2, 4.8, 12.6, 4.1, 1.3 4.28,4.28,a-vale-i2,2020-21,Rockport-Rockport Middle,02520305, 96.3, 6.3, 16.2, 6.4, 3.4 -4.271111111111111,4.27,a-vale-i2,2020-21,Rockport-Rockport High,02520510, 96.1, 6.5, 15.8, 8.8, 3.5 4.208888888888889,4.21,a-vale-i2,2020-21,Rowe-Rowe Elementary,02530005, 94.7, 9.1, 42.9, 9.5, 0.0 4.195555555555556,4.2,a-vale-i2,2020-21,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 94.4, 9.6, 33.6, 16.5, 26.6 4.351111111111111,4.35,a-vale-i2,2020-21,Sabis International Charter (District)-Sabis International Charter School,04410505, 97.9, 3.4, 9.1, 3.8, 8.4 4.2,4.2,a-vale-i2,2020-21,Salem-Bates,02580003, 94.5, 9.0, 30.5, 17.8, 19.7 -4.204444444444444,4.2,a-vale-i2,2020-21,Salem-Witchcraft Heights,02580070, 94.6, 9.0, 29.9, 17.3, 15.9 -4.035555555555556,4.04,a-vale-i2,2020-21,Salem-Collins Middle,02580305, 90.8, 15.4, 54.0, 31.5, 13.2 -3.6711111111111108,3.67,a-vale-i2,2020-21,Salem-Salem High,02580505, 82.6, 28.6, 61.5, 50.4, 27.6 -3.871111111111111,3.87,a-vale-i2,2020-21,Salem-Salem Early Childhood,02580001, 87.1, 16.0, 55.3, 48.9, 27.7 -3.106666666666667,3.11,a-vale-i2,2020-21,Salem-Salem Prep High School,02580515, 69.9, 43.6, 81.0, 71.4, 0.0 4.2,4.2,a-vale-i2,2020-21,Salem-Carlton,02580015, 94.5, 8.9, 30.0, 18.5, 9.3 4.182222222222222,4.18,a-vale-i2,2020-21,Salem-Horace Mann Laboratory,02580030, 94.1, 9.7, 37.0, 15.3, 13.9 4.248888888888889,4.25,a-vale-i2,2020-21,Salem-Saltonstall School,02580050, 95.6, 7.3, 25.1, 11.9, 10.7 -4.022222222222222,4.02,a-vale-i2,2020-21,Salem-Bentley Academy Innovation School,02580010, 90.5, 15.8, 50.8, 34.6, 21.7 +3.871111111111111,3.87,a-vale-i2,2020-21,Salem-Salem Early Childhood,02580001, 87.1, 16.0, 55.3, 48.9, 27.7 +4.035555555555556,4.04,a-vale-i2,2020-21,Salem-Collins Middle,02580305, 90.8, 15.4, 54.0, 31.5, 13.2 +3.6711111111111108,3.67,a-vale-i2,2020-21,Salem-Salem High,02580505, 82.6, 28.6, 61.5, 50.4, 27.6 1.9466666666666665,1.95,a-vale-i2,2020-21,Salem-New Liberty Innovation School,02580510, 43.8, 73.7, 98.2, 98.2, 1.8 +3.106666666666667,3.11,a-vale-i2,2020-21,Salem-Salem Prep High School,02580515, 69.9, 43.6, 81.0, 71.4, 0.0 +4.022222222222222,4.02,a-vale-i2,2020-21,Salem-Bentley Academy Innovation School,02580010, 90.5, 15.8, 50.8, 34.6, 21.7 +4.204444444444444,4.2,a-vale-i2,2020-21,Salem-Witchcraft Heights,02580070, 94.6, 9.0, 29.9, 17.3, 15.9 4.177777777777778,4.18,a-vale-i2,2020-21,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 94.0, 10.3, 30.3, 14.1, 3.4 +4.24,4.24,a-vale-i2,2020-21,Sandwich-Sandwich High,02610505, 95.4, 7.7, 23.4, 10.6, 4.2 4.293333333333333,4.29,a-vale-i2,2020-21,Sandwich-Sandwich STEM Academy,02610305, 96.6, 5.7, 18.3, 7.9, 0.0 4.195555555555556,4.2,a-vale-i2,2020-21,Sandwich-Oak Ridge,02610025, 94.4, 9.5, 36.6, 10.7, 0.4 4.182222222222222,4.18,a-vale-i2,2020-21,Sandwich-Forestdale School,02610002, 94.1, 9.6, 42.1, 15.0, 2.1 -4.24,4.24,a-vale-i2,2020-21,Sandwich-Sandwich High,02610505, 95.4, 7.7, 23.4, 10.6, 4.2 +4.084444444444444,4.08,a-vale-i2,2020-21,Saugus-Saugus High,02620505, 91.9, 13.4, 37.7, 23.8, 26.4 4.275555555555556,4.28,a-vale-i2,2020-21,Saugus-Lynnhurst,02620040, 96.2, 6.5, 18.0, 10.6, 14.1 -4.248888888888889,4.25,a-vale-i2,2020-21,Saugus-Oaklandvale,02620050, 95.6, 7.3, 28.9, 9.4, 20.9 +4.271111111111111,4.27,a-vale-i2,2020-21,Saugus-Saugus Middle School,02620305, 96.1, 6.6, 23.0, 10.8, 12.3 4.1866666666666665,4.19,a-vale-i2,2020-21,Saugus-Veterans Memorial,02620065, 94.2, 9.4, 25.5, 17.7, 23.4 4.222222222222222,4.22,a-vale-i2,2020-21,Saugus-Douglas Waybright,02620067, 95.0, 8.3, 29.6, 16.4, 19.0 -4.271111111111111,4.27,a-vale-i2,2020-21,Saugus-Saugus Middle School,02620305, 96.1, 6.6, 23.0, 10.8, 12.3 -4.084444444444444,4.08,a-vale-i2,2020-21,Saugus-Saugus High,02620505, 91.9, 13.4, 37.7, 23.8, 26.4 +4.248888888888889,4.25,a-vale-i2,2020-21,Saugus-Oaklandvale,02620050, 95.6, 7.3, 28.9, 9.4, 20.9 4.253333333333334,4.25,a-vale-i2,2020-21,Savoy-Emma L Miller Elementary School,02630010, 95.7, 7.4, 31.1, 4.4, 2.2 -4.248888888888889,4.25,a-vale-i2,2020-21,Scituate-Gates Middle School,02640305, 95.6, 7.4, 25.9, 10.3, 3.4 +4.288888888888889,4.29,a-vale-i2,2020-21,Scituate-Cushing Elementary,02640007, 96.5, 5.8, 16.1, 5.5, 2.7 +4.257777777777777,4.26,a-vale-i2,2020-21,Scituate-Hatherly Elementary,02640010, 95.8, 7.1, 27.5, 8.2, 4.7 4.062222222222222,4.06,a-vale-i2,2020-21,Scituate-Scituate High School,02640505, 91.4, 14.1, 52.8, 28.9, 7.5 4.2444444444444445,4.24,a-vale-i2,2020-21,Scituate-Wampatuck Elementary,02640020, 95.5, 7.4, 28.1, 9.0, 11.5 -4.257777777777777,4.26,a-vale-i2,2020-21,Scituate-Hatherly Elementary,02640010, 95.8, 7.1, 27.5, 8.2, 4.7 +4.248888888888889,4.25,a-vale-i2,2020-21,Scituate-Gates Middle School,02640305, 95.6, 7.4, 25.9, 10.3, 3.4 4.235555555555555,4.24,a-vale-i2,2020-21,Scituate-Jenkins Elementary School,02640015, 95.3, 7.9, 34.4, 12.7, 9.6 -4.288888888888889,4.29,a-vale-i2,2020-21,Scituate-Cushing Elementary,02640007, 96.5, 5.8, 16.1, 5.5, 2.7 4.248888888888889,4.25,a-vale-i2,2020-21,Seekonk-George R Martin,02650007, 95.6, 7.1, 21.1, 9.9, 1.3 4.1288888888888895,4.13,a-vale-i2,2020-21,Seekonk-Seekonk High,02650505, 92.9, 11.8, 45.0, 23.8, 4.9 4.2444444444444445,4.24,a-vale-i2,2020-21,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 95.5, 7.6, 23.5, 10.9, 7.0 4.2844444444444445,4.28,a-vale-i2,2020-21,Seekonk-Mildred Aitken School,02650015, 96.4, 6.0, 16.9, 6.5, 0.0 +4.355555555555555,4.36,a-vale-i2,2020-21,Sharon-Cottage Street,02660005, 98.0, 3.2, 7.4, 3.9, 0.0 +4.351111111111111,4.35,a-vale-i2,2020-21,Sharon-East Elementary,02660010, 97.9, 3.4, 7.6, 3.3, 0.0 +4.16,4.16,a-vale-i2,2020-21,Sharon-Sharon Early Childhood Center,02660001, 93.6, 9.4, 34.9, 18.6, 0.0 4.253333333333334,4.25,a-vale-i2,2020-21,Sharon-Sharon High,02660505, 95.7, 7.2, 17.5, 10.7, 0.0 4.32,4.32,a-vale-i2,2020-21,Sharon-Sharon Middle,02660305, 97.2, 4.7, 10.4, 5.0, 0.0 4.364444444444445,4.36,a-vale-i2,2020-21,Sharon-Heights Elementary,02660015, 98.2, 2.9, 6.3, 2.5, 0.0 -4.351111111111111,4.35,a-vale-i2,2020-21,Sharon-East Elementary,02660010, 97.9, 3.4, 7.6, 3.3, 0.0 -4.355555555555555,4.36,a-vale-i2,2020-21,Sharon-Cottage Street,02660005, 98.0, 3.2, 7.4, 3.9, 0.0 -4.16,4.16,a-vale-i2,2020-21,Sharon-Sharon Early Childhood Center,02660001, 93.6, 9.4, 34.9, 18.6, 0.0 4.248888888888889,4.25,a-vale-i2,2020-21,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 95.6, 7.4, 25.4, 7.9, 5.1 4.302222222222222,4.3,a-vale-i2,2020-21,Sherborn-Pine Hill,02690010, 96.8, 5.5, 16.1, 5.6, 10.7 -4.266666666666667,4.27,a-vale-i2,2020-21,Shrewsbury-Shrewsbury Sr High,02710505, 96.0, 6.7, 18.2, 8.9, 0.1 -4.28,4.28,a-vale-i2,2020-21,Shrewsbury-Sherwood Middle School,02710305, 96.3, 6.3, 19.6, 9.2, 0.0 -4.173333333333334,4.17,a-vale-i2,2020-21,Shrewsbury-Parker Road Preschool,02710040, 93.9, 7.4, 23.9, 15.5, 0.0 -4.382222222222222,4.38,a-vale-i2,2020-21,Shrewsbury-Spring Street,02710035, 98.6, 2.4, 3.6, 0.6, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Shrewsbury-Oak Middle School,02710030, 95.3, 7.9, 26.1, 13.7, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Shrewsbury-Calvin Coolidge,02710015, 97.5, 4.2, 11.3, 5.2, 0.0 4.342222222222222,4.34,a-vale-i2,2020-21,Shrewsbury-Floral Street School,02710020, 97.7, 3.8, 9.7, 4.7, 0.0 4.333333333333333,4.33,a-vale-i2,2020-21,Shrewsbury-Walter J Paton,02710025, 97.5, 4.1, 9.5, 2.5, 0.0 +4.235555555555555,4.24,a-vale-i2,2020-21,Shrewsbury-Oak Middle School,02710030, 95.3, 7.9, 26.1, 13.7, 0.0 +4.173333333333334,4.17,a-vale-i2,2020-21,Shrewsbury-Parker Road Preschool,02710040, 93.9, 7.4, 23.9, 15.5, 0.0 +4.333333333333333,4.33,a-vale-i2,2020-21,Shrewsbury-Calvin Coolidge,02710015, 97.5, 4.2, 11.3, 5.2, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Shrewsbury-Beal School,02710005, 96.9, 5.1, 15.6, 6.5, 0.0 +4.382222222222222,4.38,a-vale-i2,2020-21,Shrewsbury-Spring Street,02710035, 98.6, 2.4, 3.6, 0.6, 0.0 +4.266666666666667,4.27,a-vale-i2,2020-21,Shrewsbury-Shrewsbury Sr High,02710505, 96.0, 6.7, 18.2, 8.9, 0.1 +4.28,4.28,a-vale-i2,2020-21,Shrewsbury-Sherwood Middle School,02710305, 96.3, 6.3, 19.6, 9.2, 0.0 4.248888888888889,4.25,a-vale-i2,2020-21,Shutesbury-Shutesbury Elementary,02720005, 95.6, 7.1, 21.2, 10.2, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Silver Lake-Silver Lake Regional High,07600505, 94.9, 8.5, 28.1, 10.9, 3.2 4.235555555555555,4.24,a-vale-i2,2020-21,Silver Lake-Silver Lake Regional Middle School,07600405, 95.3, 7.9, 28.7, 8.9, 8.7 +4.217777777777778,4.22,a-vale-i2,2020-21,Silver Lake-Silver Lake Regional High,07600505, 94.9, 8.5, 28.1, 10.9, 3.2 4.142222222222222,4.14,a-vale-i2,2020-21,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 93.2, 11.4, 36.1, 19.0, 0.0 4.248888888888889,4.25,a-vale-i2,2020-21,Somerset-Somerset Middle School,02730305, 95.6, 7.3, 22.3, 10.9, 3.0 -4.28,4.28,a-vale-i2,2020-21,Somerset-Chace Street,02730005, 96.3, 6.2, 19.0, 7.0, 3.7 4.306666666666667,4.31,a-vale-i2,2020-21,Somerset-South,02730015, 96.9, 5.1, 16.4, 4.9, 1.3 4.288888888888889,4.29,a-vale-i2,2020-21,Somerset-North Elementary,02730008, 96.5, 5.6, 18.0, 8.2, 5.0 +4.28,4.28,a-vale-i2,2020-21,Somerset-Chace Street,02730005, 96.3, 6.2, 19.0, 7.0, 3.7 4.231111111111111,4.23,a-vale-i2,2020-21,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 95.2, 8.0, 17.8, 10.9, 5.9 -4.213333333333333,4.21,a-vale-i2,2020-21,Somerville-Next Wave Junior High,02740410, 94.8, 9.1, 35.3, 17.6, 5.9 -4.173333333333334,4.17,a-vale-i2,2020-21,Somerville-Somerville High,02740505, 93.9, 10.5, 33.2, 18.8, 4.1 -4.204444444444444,4.2,a-vale-i2,2020-21,Somerville-Winter Hill Community,02740120, 94.6, 9.2, 27.8, 16.8, 5.3 +4.293333333333333,4.29,a-vale-i2,2020-21,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 96.6, 5.7, 17.7, 7.1, 1.5 3.017777777777778,3.02,a-vale-i2,2020-21,Somerville-Full Circle High School,02740510, 67.9, 48.0, 89.7, 86.2, 8.6 +4.173333333333334,4.17,a-vale-i2,2020-21,Somerville-Somerville High,02740505, 93.9, 10.5, 33.2, 18.8, 4.1 +4.213333333333333,4.21,a-vale-i2,2020-21,Somerville-Next Wave Junior High,02740410, 94.8, 9.1, 35.3, 17.6, 5.9 +4.204444444444444,4.2,a-vale-i2,2020-21,Somerville-Winter Hill Community,02740120, 94.6, 9.2, 27.8, 16.8, 5.3 4.253333333333334,4.25,a-vale-i2,2020-21,Somerville-West Somerville Neighborhood,02740115, 95.7, 7.5, 21.3, 11.8, 1.8 4.275555555555556,4.28,a-vale-i2,2020-21,Somerville-E Somerville Community,02740111, 96.2, 6.6, 19.7, 8.8, 1.2 -4.293333333333333,4.29,a-vale-i2,2020-21,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 96.6, 5.7, 17.7, 7.1, 1.5 -4.262222222222222,4.26,a-vale-i2,2020-21,Somerville-John F Kennedy,02740083, 95.9, 7.1, 16.0, 9.4, 3.7 4.217777777777778,4.22,a-vale-i2,2020-21,Somerville-Capuano Early Childhood Center,02740005, 94.9, 8.5, 27.9, 15.3, 6.3 -4.337777777777777,4.34,a-vale-i2,2020-21,Somerville-Benjamin G Brown,02740015, 97.6, 4.1, 9.8, 5.3, 0.4 +4.262222222222222,4.26,a-vale-i2,2020-21,Somerville-John F Kennedy,02740083, 95.9, 7.1, 16.0, 9.4, 3.7 4.124444444444444,4.12,a-vale-i2,2020-21,Somerville-Arthur D Healey,02740075, 92.8, 12.4, 39.1, 22.8, 4.7 -3.991111111111111,3.99,a-vale-i2,2020-21,South Hadley-Michael E. Smith Middle School,02780305, 89.8, 17.4, 43.8, 26.5, 2.6 -4.2444444444444445,4.24,a-vale-i2,2020-21,South Hadley-Mosier,02780020, 95.5, 7.7, 21.6, 12.9, 2.1 -4.133333333333334,4.13,a-vale-i2,2020-21,South Hadley-Plains Elementary,02780015, 93.0, 11.4, 28.3, 23.3, 5.7 +4.337777777777777,4.34,a-vale-i2,2020-21,Somerville-Benjamin G Brown,02740015, 97.6, 4.1, 9.8, 5.3, 0.4 4.097777777777778,4.1,a-vale-i2,2020-21,South Hadley-South Hadley High,02780505, 92.2, 13.3, 38.9, 22.1, 4.2 +3.991111111111111,3.99,a-vale-i2,2020-21,South Hadley-Michael E. Smith Middle School,02780305, 89.8, 17.4, 43.8, 26.5, 2.6 +4.133333333333334,4.13,a-vale-i2,2020-21,South Hadley-Plains Elementary,02780015, 93.0, 11.4, 28.3, 23.3, 5.7 +4.2444444444444445,4.24,a-vale-i2,2020-21,South Hadley-Mosier,02780020, 95.5, 7.7, 21.6, 12.9, 2.1 4.071111111111111,4.07,a-vale-i2,2020-21,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 91.6, 13.7, 40.9, 27.1, 5.9 4.275555555555556,4.28,a-vale-i2,2020-21,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 96.2, 6.6, 18.6, 8.4, 2.6 4.2444444444444445,4.24,a-vale-i2,2020-21,South Shore Regional Vocational Technical-So Shore Vocational Technical High,08730605, 95.5, 7.7, 24.3, 8.2, 12.7 @@ -12479,77 +12479,46 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.346666666666667,4.35,a-vale-i2,2020-21,Southborough-Margaret A Neary,02760020, 97.8, 3.7, 10.7, 1.6, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Southborough-Mary E Finn School,02760008, 96.6, 5.6, 17.5, 8.6, 0.0 4.328888888888889,4.33,a-vale-i2,2020-21,Southborough-Albert S. Woodward Memorial School,02760050, 97.4, 4.3, 10.9, 3.1, 0.0 -3.2488888888888887,3.25,a-vale-i2,2020-21,Southbridge-Southbridge Academy,02770525, 73.1, 39.8, 80.0, 74.0, 28.0 -3.5511111111111116,3.55,a-vale-i2,2020-21,Southbridge-Southbridge High School,02770515, 79.9, 30.9, 70.9, 55.3, 35.6 -3.791111111111111,3.79,a-vale-i2,2020-21,Southbridge-Southbridge Middle School,02770315, 85.3, 23.7, 71.5, 55.4, 20.2 -4.004444444444444,4.0,a-vale-i2,2020-21,Southbridge-West Street,02770020, 90.1, 15.8, 61.4, 36.4, 23.5 3.9377777777777774,3.94,a-vale-i2,2020-21,Southbridge-Eastford Road,02770010, 88.6, 17.7, 65.7, 49.4, 51.1 4.093333333333333,4.09,a-vale-i2,2020-21,Southbridge-Charlton Street,02770005, 92.1, 12.5, 48.8, 32.1, 20.9 +4.004444444444444,4.0,a-vale-i2,2020-21,Southbridge-West Street,02770020, 90.1, 15.8, 61.4, 36.4, 23.5 +3.791111111111111,3.79,a-vale-i2,2020-21,Southbridge-Southbridge Middle School,02770315, 85.3, 23.7, 71.5, 55.4, 20.2 +3.5511111111111116,3.55,a-vale-i2,2020-21,Southbridge-Southbridge High School,02770515, 79.9, 30.9, 70.9, 55.3, 35.6 +3.2488888888888887,3.25,a-vale-i2,2020-21,Southbridge-Southbridge Academy,02770525, 73.1, 39.8, 80.0, 74.0, 28.0 4.16,4.16,a-vale-i2,2020-21,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 93.6, 10.6, 36.5, 19.8, 0.0 3.8533333333333335,3.85,a-vale-i2,2020-21,Southern Berkshire-South Egremont,07650030, 86.7, 21.6, 68.8, 37.5, 12.5 +4.173333333333334,4.17,a-vale-i2,2020-21,Southern Berkshire-Undermountain,07650035, 93.9, 10.1, 29.7, 17.2, 6.3 4.066666666666666,4.07,a-vale-i2,2020-21,Southern Berkshire-New Marlborough Central,07650018, 91.5, 13.8, 37.0, 23.5, 12.3 3.977777777777778,3.98,a-vale-i2,2020-21,Southern Berkshire-Mt Everett Regional,07650505, 89.5, 17.2, 50.9, 35.5, 8.4 -4.173333333333334,4.17,a-vale-i2,2020-21,Southern Berkshire-Undermountain,07650035, 93.9, 10.1, 29.7, 17.2, 6.3 4.084444444444444,4.08,a-vale-i2,2020-21,Southern Worcester County Regional Vocational Technical-Bay Path Regional Vocational Technical High School,08760605, 91.9, 13.8, 53.2, 26.1, 13.8 -4.182222222222222,4.18,a-vale-i2,2020-21,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 94.1, 9.9, 33.0, 18.2, 3.7 -4.266666666666667,4.27,a-vale-i2,2020-21,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 96.0, 6.6, 24.5, 7.2, 3.5 4.222222222222222,4.22,a-vale-i2,2020-21,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 95.0, 8.1, 27.4, 15.0, 8.3 +4.266666666666667,4.27,a-vale-i2,2020-21,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 96.0, 6.6, 24.5, 7.2, 3.5 +4.182222222222222,4.18,a-vale-i2,2020-21,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 94.1, 9.9, 33.0, 18.2, 3.7 4.2,4.2,a-vale-i2,2020-21,Spencer-E Brookfield-East Brookfield Elementary,07670008, 94.5, 8.5, 30.3, 15.6, 0.0 -4.1288888888888895,4.13,a-vale-i2,2020-21,Spencer-E Brookfield-Wire Village School,07670040, 92.9, 11.7, 35.0, 22.8, 0.0 -3.897777777777778,3.9,a-vale-i2,2020-21,Spencer-E Brookfield-Knox Trail Middle School,07670415, 87.7, 20.5, 59.4, 43.5, 0.0 3.8400000000000003,3.84,a-vale-i2,2020-21,Spencer-E Brookfield-David Prouty High,07670505, 86.4, 22.3, 58.1, 39.9, 0.0 +3.897777777777778,3.9,a-vale-i2,2020-21,Spencer-E Brookfield-Knox Trail Middle School,07670415, 87.7, 20.5, 59.4, 43.5, 0.0 +4.1288888888888895,4.13,a-vale-i2,2020-21,Spencer-E Brookfield-Wire Village School,07670040, 92.9, 11.7, 35.0, 22.8, 0.0 +3.6711111111111108,3.67,a-vale-i2,2020-21,Springfield-Springfield Public Day Middle School,02810345, 82.6, 29.0, 66.0, 52.8, 54.7 4.293333333333333,4.29,a-vale-i2,2020-21,Springfield-STEM Middle Academy,02810350, 96.6, 5.8, 21.8, 8.8, 18.7 -4.093333333333333,4.09,a-vale-i2,2020-21,Springfield-Glickman Elementary,02810068, 92.1, 13.0, 45.4, 28.0, 42.0 -4.164444444444444,4.16,a-vale-i2,2020-21,Springfield-Frank H Freedman,02810075, 93.7, 10.4, 28.9, 19.6, 25.7 -4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Frederick Harris,02810080, 93.4, 10.7, 34.1, 20.8, 25.6 -4.204444444444444,4.2,a-vale-i2,2020-21,Springfield-Homer Street,02810085, 94.6, 8.8, 34.3, 19.3, 20.1 -4.32,4.32,a-vale-i2,2020-21,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 97.2, 4.6, 14.4, 6.0, 10.1 -4.133333333333334,4.13,a-vale-i2,2020-21,Springfield-Indian Orchard Elementary,02810100, 93.0, 11.2, 40.7, 26.0, 38.7 -4.2444444444444445,4.24,a-vale-i2,2020-21,Springfield-Early Childhood Education Center,02810001, 95.5, 6.2, 24.4, 14.0, 2.4 -4.115555555555555,4.12,a-vale-i2,2020-21,Springfield-Kensington International School,02810110, 92.6, 11.8, 40.8, 25.0, 32.7 -4.168888888888889,4.17,a-vale-i2,2020-21,Springfield-Liberty,02810115, 93.8, 10.2, 37.2, 18.4, 36.1 -4.12,4.12,a-vale-i2,2020-21,Springfield-Lincoln,02810120, 92.7, 11.8, 40.8, 25.1, 36.2 -4.24,4.24,a-vale-i2,2020-21,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 95.4, 7.5, 27.4, 11.0, 12.6 -4.137777777777777,4.14,a-vale-i2,2020-21,Springfield-Mary M Lynch,02810140, 93.1, 11.4, 38.2, 19.3, 33.6 -4.155555555555556,4.16,a-vale-i2,2020-21,Springfield-Mary O Pottenger,02810145, 93.5, 10.2, 40.9, 22.6, 31.4 -4.102222222222222,4.1,a-vale-i2,2020-21,Springfield-Mary M Walsh,02810155, 92.3, 12.9, 42.1, 21.7, 34.1 -3.791111111111111,3.79,a-vale-i2,2020-21,Springfield-Springfield Public Day Elementary School,02810005, 85.3, 24.4, 71.8, 59.0, 56.4 -4.066666666666666,4.07,a-vale-i2,2020-21,Springfield-Edward P. Boland School,02810010, 91.5, 13.3, 42.1, 29.9, 33.0 -4.177777777777778,4.18,a-vale-i2,2020-21,Springfield-Thomas M Balliet,02810015, 94.0, 9.4, 31.8, 19.9, 16.5 -4.133333333333334,4.13,a-vale-i2,2020-21,Springfield-Samuel Bowles,02810020, 93.0, 11.6, 40.4, 23.7, 35.5 -4.177777777777778,4.18,a-vale-i2,2020-21,Springfield-Milton Bradley School,02810023, 94.0, 9.6, 30.9, 18.2, 23.1 -4.022222222222222,4.02,a-vale-i2,2020-21,Springfield-Brightwood,02810025, 90.5, 15.4, 56.6, 40.0, 50.9 -4.004444444444444,4.0,a-vale-i2,2020-21,Springfield-Sumner Avenue,02810160, 90.1, 15.5, 45.0, 31.0, 42.2 3.968888888888889,3.97,a-vale-i2,2020-21,Springfield-South End Middle School,02810355, 89.3, 17.3, 52.8, 40.2, 50.8 3.48,3.48,a-vale-i2,2020-21,Springfield-Balliet Middle School,02810360, 78.3, 36.9, 70.0, 50.0, 65.0 4.328888888888889,4.33,a-vale-i2,2020-21,Springfield-Chestnut Academy,02810365, 97.4, 4.3, 12.6, 1.1, 1.1 -3.986666666666667,3.99,a-vale-i2,2020-21,Springfield-Impact Prep at Chestnut,02810366, 89.7, 17.1, 48.3, 34.6, 45.3 -4.262222222222222,4.26,a-vale-i2,2020-21,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 95.9, 6.9, 23.7, 14.0, 21.8 -4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Conservatory of the Arts,02810475, 93.4, 11.2, 34.7, 20.7, 23.7 -4.017777777777778,4.02,a-vale-i2,2020-21,Springfield-Rise Academy at Van Sickle,02810480, 90.4, 15.4, 38.6, 28.6, 38.3 -4.093333333333333,4.09,a-vale-i2,2020-21,Springfield-Van Sickle Academy,02810485, 92.1, 12.9, 38.6, 29.5, 36.8 -4.137777777777777,4.14,a-vale-i2,2020-21,Springfield-Gateway to College at Springfield Technical Community College,02810580, 93.1, 10.0, 37.0, 25.9, 37.0 -4.071111111111111,4.07,a-vale-i2,2020-21,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.6, 14.1, 39.2, 23.4, 33.0 +4.133333333333334,4.13,a-vale-i2,2020-21,Springfield-Samuel Bowles,02810020, 93.0, 11.6, 40.4, 23.7, 35.5 +4.177777777777778,4.18,a-vale-i2,2020-21,Springfield-Milton Bradley School,02810023, 94.0, 9.6, 30.9, 18.2, 23.1 3.9555555555555557,3.96,a-vale-i2,2020-21,Springfield-Springfield International Academy at Sci-Tech,02810700, 89.0, 16.3, 48.5, 38.2, 48.5 +4.022222222222222,4.02,a-vale-i2,2020-21,Springfield-Brightwood,02810025, 90.5, 15.4, 56.6, 40.0, 50.9 +4.115555555555555,4.12,a-vale-i2,2020-21,Springfield-Elias Brookings,02810030, 92.6, 11.7, 40.3, 25.8, 33.5 +4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Daniel B Brunton,02810035, 93.4, 10.7, 37.3, 23.8, 36.2 +3.92,3.92,a-vale-i2,2020-21,Springfield-William N. DeBerry,02810045, 88.2, 18.4, 56.9, 42.4, 53.6 +4.137777777777777,4.14,a-vale-i2,2020-21,Springfield-Mary M Lynch,02810140, 93.1, 11.4, 38.2, 19.3, 33.6 +4.155555555555556,4.16,a-vale-i2,2020-21,Springfield-Mary O Pottenger,02810145, 93.5, 10.2, 40.9, 22.6, 31.4 +4.102222222222222,4.1,a-vale-i2,2020-21,Springfield-Mary M Walsh,02810155, 92.3, 12.9, 42.1, 21.7, 34.1 +4.004444444444444,4.0,a-vale-i2,2020-21,Springfield-Sumner Avenue,02810160, 90.1, 15.5, 45.0, 31.0, 42.2 4.084444444444444,4.08,a-vale-i2,2020-21,Springfield-Arthur T Talmadge,02810165, 91.9, 13.4, 42.7, 24.5, 39.4 4.257777777777777,4.26,a-vale-i2,2020-21,Springfield-Alice B Beal Elementary,02810175, 95.8, 6.7, 23.0, 10.6, 9.6 4.173333333333334,4.17,a-vale-i2,2020-21,Springfield-Warner,02810180, 93.9, 9.7, 34.4, 20.0, 18.8 4.093333333333333,4.09,a-vale-i2,2020-21,Springfield-Washington,02810185, 92.1, 12.5, 41.3, 23.1, 36.0 4.106666666666667,4.11,a-vale-i2,2020-21,Springfield-White Street,02810190, 92.4, 12.3, 43.6, 23.6, 43.1 -4.115555555555555,4.12,a-vale-i2,2020-21,Springfield-Elias Brookings,02810030, 92.6, 11.7, 40.3, 25.8, 33.5 -4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Daniel B Brunton,02810035, 93.4, 10.7, 37.3, 23.8, 36.2 -3.92,3.92,a-vale-i2,2020-21,Springfield-William N. DeBerry,02810045, 88.2, 18.4, 56.9, 42.4, 53.6 -4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Hiram L Dorman,02810050, 93.4, 10.9, 38.7, 21.4, 37.4 -3.92,3.92,a-vale-i2,2020-21,Springfield-Rebecca M Johnson,02810055, 88.2, 18.7, 59.7, 42.4, 58.1 -4.16,4.16,a-vale-i2,2020-21,Springfield-Margaret C Ells,02810060, 93.6, 9.1, 29.4, 22.1, 24.5 -4.204444444444444,4.2,a-vale-i2,2020-21,Springfield-Glenwood,02810065, 94.6, 8.8, 32.0, 16.2, 17.3 -4.235555555555555,4.24,a-vale-i2,2020-21,Springfield-Springfield Central High,02810500, 95.3, 7.8, 27.3, 16.1, 26.0 -4.017777777777778,4.02,a-vale-i2,2020-21,Springfield-High School Of Commerce,02810510, 90.4, 15.4, 41.3, 30.4, 38.4 -4.1288888888888895,4.13,a-vale-i2,2020-21,Springfield-Springfield High School of Science and Technology,02810530, 92.9, 11.9, 37.9, 24.5, 35.4 -2.871111111111111,2.87,a-vale-i2,2020-21,Springfield-Springfield Public Day High School,02810550, 64.6, 53.7, 77.3, 75.0, 71.6 -3.92,3.92,a-vale-i2,2020-21,Springfield-Liberty Preparatory Academy,02810560, 88.2, 15.0, 42.9, 42.9, 42.9 -3.457777777777778,3.46,a-vale-i2,2020-21,Springfield-Springfield High School,02810570, 77.8, 33.5, 65.5, 58.4, 61.4 -4.111111111111111,4.11,a-vale-i2,2020-21,Springfield-Gateway to College at Holyoke Community College,02810575, 92.5, 9.9, 35.3, 23.5, 32.4 4.133333333333334,4.13,a-vale-i2,2020-21,Springfield-German Gerena Community School,02810195, 93.0, 11.3, 42.3, 26.0, 27.1 4.2,4.2,a-vale-i2,2020-21,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 94.5, 9.3, 23.9, 15.7, 19.9 4.04,4.04,a-vale-i2,2020-21,Springfield-Springfield International Academy at Johnson,02810215, 90.9, 13.8, 52.9, 29.4, 52.9 @@ -12561,275 +12530,341 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.106666666666667,4.11,a-vale-i2,2020-21,Springfield-Forest Park Middle,02810325, 92.4, 12.3, 31.8, 20.8, 31.3 3.8577777777777778,3.86,a-vale-i2,2020-21,Springfield-John F Kennedy Middle,02810328, 86.8, 21.6, 61.3, 44.0, 59.2 3.911111111111111,3.91,a-vale-i2,2020-21,Springfield-M Marcus Kiley Middle,02810330, 88.0, 19.8, 49.4, 35.2, 47.4 -3.6711111111111108,3.67,a-vale-i2,2020-21,Springfield-Springfield Public Day Middle School,02810345, 82.6, 29.0, 66.0, 52.8, 54.7 +4.2444444444444445,4.24,a-vale-i2,2020-21,Springfield-Early Childhood Education Center,02810001, 95.5, 6.2, 24.4, 14.0, 2.4 +3.791111111111111,3.79,a-vale-i2,2020-21,Springfield-Springfield Public Day Elementary School,02810005, 85.3, 24.4, 71.8, 59.0, 56.4 +4.066666666666666,4.07,a-vale-i2,2020-21,Springfield-Edward P. Boland School,02810010, 91.5, 13.3, 42.1, 29.9, 33.0 +4.177777777777778,4.18,a-vale-i2,2020-21,Springfield-Thomas M Balliet,02810015, 94.0, 9.4, 31.8, 19.9, 16.5 +4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Hiram L Dorman,02810050, 93.4, 10.9, 38.7, 21.4, 37.4 +3.92,3.92,a-vale-i2,2020-21,Springfield-Rebecca M Johnson,02810055, 88.2, 18.7, 59.7, 42.4, 58.1 +4.16,4.16,a-vale-i2,2020-21,Springfield-Margaret C Ells,02810060, 93.6, 9.1, 29.4, 22.1, 24.5 +4.204444444444444,4.2,a-vale-i2,2020-21,Springfield-Glenwood,02810065, 94.6, 8.8, 32.0, 16.2, 17.3 +4.093333333333333,4.09,a-vale-i2,2020-21,Springfield-Glickman Elementary,02810068, 92.1, 13.0, 45.4, 28.0, 42.0 +4.164444444444444,4.16,a-vale-i2,2020-21,Springfield-Frank H Freedman,02810075, 93.7, 10.4, 28.9, 19.6, 25.7 +4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Frederick Harris,02810080, 93.4, 10.7, 34.1, 20.8, 25.6 +4.204444444444444,4.2,a-vale-i2,2020-21,Springfield-Homer Street,02810085, 94.6, 8.8, 34.3, 19.3, 20.1 +4.32,4.32,a-vale-i2,2020-21,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 97.2, 4.6, 14.4, 6.0, 10.1 +4.133333333333334,4.13,a-vale-i2,2020-21,Springfield-Indian Orchard Elementary,02810100, 93.0, 11.2, 40.7, 26.0, 38.7 +4.115555555555555,4.12,a-vale-i2,2020-21,Springfield-Kensington International School,02810110, 92.6, 11.8, 40.8, 25.0, 32.7 +4.168888888888889,4.17,a-vale-i2,2020-21,Springfield-Liberty,02810115, 93.8, 10.2, 37.2, 18.4, 36.1 +4.12,4.12,a-vale-i2,2020-21,Springfield-Lincoln,02810120, 92.7, 11.8, 40.8, 25.1, 36.2 +4.24,4.24,a-vale-i2,2020-21,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 95.4, 7.5, 27.4, 11.0, 12.6 +3.986666666666667,3.99,a-vale-i2,2020-21,Springfield-Impact Prep at Chestnut,02810366, 89.7, 17.1, 48.3, 34.6, 45.3 +4.262222222222222,4.26,a-vale-i2,2020-21,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 95.9, 6.9, 23.7, 14.0, 21.8 +4.151111111111112,4.15,a-vale-i2,2020-21,Springfield-Conservatory of the Arts,02810475, 93.4, 11.2, 34.7, 20.7, 23.7 +4.017777777777778,4.02,a-vale-i2,2020-21,Springfield-Rise Academy at Van Sickle,02810480, 90.4, 15.4, 38.6, 28.6, 38.3 +4.093333333333333,4.09,a-vale-i2,2020-21,Springfield-Van Sickle Academy,02810485, 92.1, 12.9, 38.6, 29.5, 36.8 +4.235555555555555,4.24,a-vale-i2,2020-21,Springfield-Springfield Central High,02810500, 95.3, 7.8, 27.3, 16.1, 26.0 +4.017777777777778,4.02,a-vale-i2,2020-21,Springfield-High School Of Commerce,02810510, 90.4, 15.4, 41.3, 30.4, 38.4 +4.1288888888888895,4.13,a-vale-i2,2020-21,Springfield-Springfield High School of Science and Technology,02810530, 92.9, 11.9, 37.9, 24.5, 35.4 +2.871111111111111,2.87,a-vale-i2,2020-21,Springfield-Springfield Public Day High School,02810550, 64.6, 53.7, 77.3, 75.0, 71.6 +3.92,3.92,a-vale-i2,2020-21,Springfield-Liberty Preparatory Academy,02810560, 88.2, 15.0, 42.9, 42.9, 42.9 +3.457777777777778,3.46,a-vale-i2,2020-21,Springfield-Springfield High School,02810570, 77.8, 33.5, 65.5, 58.4, 61.4 +4.111111111111111,4.11,a-vale-i2,2020-21,Springfield-Gateway to College at Holyoke Community College,02810575, 92.5, 9.9, 35.3, 23.5, 32.4 +4.137777777777777,4.14,a-vale-i2,2020-21,Springfield-Gateway to College at Springfield Technical Community College,02810580, 93.1, 10.0, 37.0, 25.9, 37.0 +4.071111111111111,4.07,a-vale-i2,2020-21,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 91.6, 14.1, 39.2, 23.4, 33.0 4.266666666666667,4.27,a-vale-i2,2020-21,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 96.0, 7.0, 23.6, 9.2, 13.6 -4.275555555555556,4.28,a-vale-i2,2020-21,Stoneham-South,02840030, 96.2, 6.3, 17.1, 9.3, 0.0 4.297777777777778,4.3,a-vale-i2,2020-21,Stoneham-Robin Hood,02840025, 96.7, 5.5, 14.6, 6.8, 0.0 4.275555555555556,4.28,a-vale-i2,2020-21,Stoneham-Colonial Park,02840005, 96.2, 6.3, 13.3, 7.6, 0.0 -4.168888888888889,4.17,a-vale-i2,2020-21,Stoneham-Stoneham High,02840505, 93.8, 10.2, 34.6, 19.5, 0.0 +4.275555555555556,4.28,a-vale-i2,2020-21,Stoneham-South,02840030, 96.2, 6.3, 17.1, 9.3, 0.0 4.231111111111111,4.23,a-vale-i2,2020-21,Stoneham-Stoneham Central Middle School,02840405, 95.2, 7.9, 26.4, 11.2, 0.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Stoneham-Stoneham High,02840505, 93.8, 10.2, 34.6, 19.5, 0.0 +4.155555555555556,4.16,a-vale-i2,2020-21,Stoughton-Edwin A Jones Early Childhood Center,02850012, 93.5, 7.6, 30.3, 27.6, 0.0 +4.257777777777777,4.26,a-vale-i2,2020-21,Stoughton-Helen Hansen Elementary,02850010, 95.8, 7.0, 22.9, 12.4, 0.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Stoughton-Joseph R Dawe Jr Elementary,02850014, 95.6, 7.2, 25.3, 11.6, 0.0 4.151111111111112,4.15,a-vale-i2,2020-21,Stoughton-Stoughton High,02850505, 93.4, 11.1, 27.9, 16.2, 0.1 -4.262222222222222,4.26,a-vale-i2,2020-21,Stoughton-O'Donnell Middle School,02850405, 95.9, 6.9, 24.4, 10.8, 0.1 +4.297777777777778,4.3,a-vale-i2,2020-21,Stoughton-South Elementary,02850015, 96.7, 5.5, 17.7, 6.6, 0.0 4.2,4.2,a-vale-i2,2020-21,Stoughton-Richard L. Wilkins Elementary School,02850020, 94.5, 9.0, 33.8, 15.1, 0.0 4.1866666666666665,4.19,a-vale-i2,2020-21,Stoughton-Joseph H Gibbons,02850025, 94.2, 9.5, 29.3, 17.6, 0.0 -4.297777777777778,4.3,a-vale-i2,2020-21,Stoughton-South Elementary,02850015, 96.7, 5.5, 17.7, 6.6, 0.0 -4.257777777777777,4.26,a-vale-i2,2020-21,Stoughton-Helen Hansen Elementary,02850010, 95.8, 7.0, 22.9, 12.4, 0.0 -4.155555555555556,4.16,a-vale-i2,2020-21,Stoughton-Edwin A Jones Early Childhood Center,02850012, 93.5, 7.6, 30.3, 27.6, 0.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Stoughton-Joseph R Dawe Jr Elementary,02850014, 95.6, 7.2, 25.3, 11.6, 0.0 +4.262222222222222,4.26,a-vale-i2,2020-21,Stoughton-O'Donnell Middle School,02850405, 95.9, 6.9, 24.4, 10.8, 0.1 4.337777777777777,4.34,a-vale-i2,2020-21,Sturbridge-Burgess Elementary,02870005, 97.6, 3.9, 9.6, 4.0, 5.2 4.2444444444444445,4.24,a-vale-i2,2020-21,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 95.5, 7.6, 23.6, 10.8, 4.0 -4.351111111111111,4.35,a-vale-i2,2020-21,Sudbury-Josiah Haynes,02880010, 97.9, 3.6, 5.2, 1.5, 0.9 4.3244444444444445,4.32,a-vale-i2,2020-21,Sudbury-Israel Loring School,02880015, 97.3, 4.6, 12.8, 4.9, 0.7 4.364444444444445,4.36,a-vale-i2,2020-21,Sudbury-General John Nixon Elementary,02880025, 98.2, 3.1, 5.2, 1.0, 0.3 4.346666666666667,4.35,a-vale-i2,2020-21,Sudbury-Peter Noyes,02880030, 97.8, 3.6, 7.7, 2.1, 0.9 4.346666666666667,4.35,a-vale-i2,2020-21,Sudbury-Ephraim Curtis Middle,02880305, 97.8, 3.7, 7.6, 3.3, 0.4 +4.351111111111111,4.35,a-vale-i2,2020-21,Sudbury-Josiah Haynes,02880010, 97.9, 3.6, 5.2, 1.5, 0.9 4.137777777777777,4.14,a-vale-i2,2020-21,Sunderland-Sunderland Elementary,02890005, 93.1, 10.7, 36.2, 23.1, 6.0 -4.311111111111111,4.31,a-vale-i2,2020-21,Sutton-Sutton High School,02900510, 97.0, 4.9, 14.7, 6.0, 2.2 4.2444444444444445,4.24,a-vale-i2,2020-21,Sutton-Sutton Early Learning,02900003, 95.5, 7.2, 23.7, 10.8, 0.0 4.315555555555555,4.32,a-vale-i2,2020-21,Sutton-Sutton Elementary,02900005, 97.1, 4.7, 13.5, 6.2, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Sutton-Sutton Middle School,02900305, 96.8, 5.4, 14.9, 6.5, 0.9 -4.2,4.2,a-vale-i2,2020-21,Swampscott-Swampscott Middle,02910305, 94.5, 9.1, 29.2, 15.0, 8.8 +4.311111111111111,4.31,a-vale-i2,2020-21,Sutton-Sutton High School,02900510, 97.0, 4.9, 14.7, 6.0, 2.2 4.306666666666667,4.31,a-vale-i2,2020-21,Swampscott-Stanley,02910020, 96.9, 5.1, 13.7, 2.2, 4.4 4.222222222222222,4.22,a-vale-i2,2020-21,Swampscott-Hadley,02910010, 95.0, 8.3, 28.2, 12.3, 8.8 4.204444444444444,4.2,a-vale-i2,2020-21,Swampscott-Clarke,02910005, 94.6, 8.6, 30.7, 14.7, 9.6 3.9555555555555557,3.96,a-vale-i2,2020-21,Swampscott-Swampscott High,02910505, 89.0, 18.0, 53.4, 33.5, 18.7 -4.08,4.08,a-vale-i2,2020-21,Swansea-Joseph Case Jr High,02920305, 91.8, 13.7, 47.2, 29.3, 6.6 +4.2,4.2,a-vale-i2,2020-21,Swampscott-Swampscott Middle,02910305, 94.5, 9.1, 29.2, 15.0, 8.8 +4.04,4.04,a-vale-i2,2020-21,Swansea-Joseph Case High,02920505, 90.9, 15.2, 48.7, 25.9, 14.6 4.315555555555555,4.32,a-vale-i2,2020-21,Swansea-Joseph G Luther,02920020, 97.1, 4.9, 13.8, 4.1, 7.2 4.226666666666667,4.23,a-vale-i2,2020-21,Swansea-Mark G Hoyle Elementary,02920017, 95.1, 7.8, 23.7, 14.7, 10.9 4.311111111111111,4.31,a-vale-i2,2020-21,Swansea-Gardner,02920015, 97.0, 4.9, 12.2, 3.4, 1.5 4.297777777777778,4.3,a-vale-i2,2020-21,Swansea-Elizabeth S Brown,02920006, 96.7, 5.5, 14.7, 4.3, 2.5 -4.04,4.04,a-vale-i2,2020-21,Swansea-Joseph Case High,02920505, 90.9, 15.2, 48.7, 25.9, 14.6 +4.08,4.08,a-vale-i2,2020-21,Swansea-Joseph Case Jr High,02920305, 91.8, 13.7, 47.2, 29.3, 6.6 4.008888888888889,4.01,a-vale-i2,2020-21,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 90.2, 15.5, 30.4, 26.5, 0.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Tantasqua-Tantasqua Regional Sr High,07700505, 95.6, 7.2, 22.1, 11.0, 0.3 4.231111111111111,4.23,a-vale-i2,2020-21,Tantasqua-Tantasqua Regional Vocational,07700605, 95.2, 8.1, 25.1, 12.5, 0.2 4.271111111111111,4.27,a-vale-i2,2020-21,Tantasqua-Tantasqua Regional Jr High,07700405, 96.1, 6.4, 17.4, 8.4, 3.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Tantasqua-Tantasqua Regional Sr High,07700505, 95.6, 7.2, 22.1, 11.0, 0.3 -4.168888888888889,4.17,a-vale-i2,2020-21,Taunton-Joseph C Chamberlain,02930008, 93.8, 10.3, 28.6, 18.1, 10.9 -4.257777777777777,4.26,a-vale-i2,2020-21,Taunton-Edmund Hatch Bennett,02930007, 95.8, 7.0, 23.2, 12.1, 6.9 -4.142222222222222,4.14,a-vale-i2,2020-21,Taunton-Benjamin Friedman Middle,02930315, 93.2, 11.3, 32.9, 21.9, 8.8 -3.982222222222222,3.98,a-vale-i2,2020-21,Taunton-John F Parker Middle,02930305, 89.6, 17.2, 49.3, 36.0, 9.7 4.084444444444444,4.08,a-vale-i2,2020-21,Taunton-H H Galligan,02930057, 91.9, 13.3, 47.1, 27.0, 15.2 -3.191111111111111,3.19,a-vale-i2,2020-21,Taunton-Taunton Alternative High School,02930525, 71.8, 42.6, 69.8, 65.1, 35.8 -3.8622222222222224,3.86,a-vale-i2,2020-21,Taunton-Taunton High,02930505, 86.9, 21.7, 50.7, 37.2, 9.5 -4.226666666666667,4.23,a-vale-i2,2020-21,Taunton-East Taunton Elementary,02930010, 95.1, 8.1, 24.6, 14.2, 7.8 -4.1288888888888895,4.13,a-vale-i2,2020-21,Taunton-Mulcahey Elementary School,02930015, 92.9, 11.6, 38.4, 23.2, 10.7 -4.0488888888888885,4.05,a-vale-i2,2020-21,Taunton-Edward F. Leddy Preschool,02930005, 91.1, 11.6, 38.6, 30.5, 17.9 4.026666666666666,4.03,a-vale-i2,2020-21,Taunton-Joseph H Martin,02930042, 90.6, 15.6, 42.3, 32.3, 8.6 4.12,4.12,a-vale-i2,2020-21,Taunton-Elizabeth Pole,02930027, 92.7, 11.8, 40.4, 26.8, 12.6 -4.364444444444445,4.36,a-vale-i2,2020-21,Tewksbury-Louise Davy Trahan,02950025, 98.2, 3.0, 5.3, 1.2, 0.8 +4.1288888888888895,4.13,a-vale-i2,2020-21,Taunton-Mulcahey Elementary School,02930015, 92.9, 11.6, 38.4, 23.2, 10.7 +4.226666666666667,4.23,a-vale-i2,2020-21,Taunton-East Taunton Elementary,02930010, 95.1, 8.1, 24.6, 14.2, 7.8 +4.168888888888889,4.17,a-vale-i2,2020-21,Taunton-Joseph C Chamberlain,02930008, 93.8, 10.3, 28.6, 18.1, 10.9 +4.257777777777777,4.26,a-vale-i2,2020-21,Taunton-Edmund Hatch Bennett,02930007, 95.8, 7.0, 23.2, 12.1, 6.9 +3.191111111111111,3.19,a-vale-i2,2020-21,Taunton-Taunton Alternative High School,02930525, 71.8, 42.6, 69.8, 65.1, 35.8 +4.142222222222222,4.14,a-vale-i2,2020-21,Taunton-Benjamin Friedman Middle,02930315, 93.2, 11.3, 32.9, 21.9, 8.8 +3.8622222222222224,3.86,a-vale-i2,2020-21,Taunton-Taunton High,02930505, 86.9, 21.7, 50.7, 37.2, 9.5 +4.0488888888888885,4.05,a-vale-i2,2020-21,Taunton-Edward F. Leddy Preschool,02930005, 91.1, 11.6, 38.6, 30.5, 17.9 +3.982222222222222,3.98,a-vale-i2,2020-21,Taunton-John F Parker Middle,02930305, 89.6, 17.2, 49.3, 36.0, 9.7 +4.2844444444444445,4.28,a-vale-i2,2020-21,Tewksbury-Tewksbury Memorial High,02950505, 96.4, 6.0, 14.3, 7.5, 2.8 +4.306666666666667,4.31,a-vale-i2,2020-21,Tewksbury-John W. Wynn Middle,02950305, 96.9, 5.1, 14.2, 5.4, 2.5 +4.346666666666667,4.35,a-vale-i2,2020-21,Tewksbury-Heath-Brook,02950010, 97.8, 3.7, 6.3, 1.6, 3.5 4.346666666666667,4.35,a-vale-i2,2020-21,Tewksbury-John F. Ryan,02950023, 97.8, 3.6, 8.2, 3.5, 1.9 4.386666666666667,4.39,a-vale-i2,2020-21,Tewksbury-North Street,02950020, 98.7, 2.2, 3.4, 1.5, 0.7 -4.346666666666667,4.35,a-vale-i2,2020-21,Tewksbury-Heath-Brook,02950010, 97.8, 3.7, 6.3, 1.6, 3.5 +4.364444444444445,4.36,a-vale-i2,2020-21,Tewksbury-Louise Davy Trahan,02950025, 98.2, 3.0, 5.3, 1.2, 0.8 4.288888888888889,4.29,a-vale-i2,2020-21,Tewksbury-L F Dewing,02950001, 96.5, 5.6, 16.1, 8.9, 4.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Tewksbury-John W. Wynn Middle,02950305, 96.9, 5.1, 14.2, 5.4, 2.5 -4.2844444444444445,4.28,a-vale-i2,2020-21,Tewksbury-Tewksbury Memorial High,02950505, 96.4, 6.0, 14.3, 7.5, 2.8 4.124444444444444,4.12,a-vale-i2,2020-21,Tisbury-Tisbury Elementary,02960005, 92.8, 11.2, 43.3, 27.7, 0.0 4.355555555555555,4.36,a-vale-i2,2020-21,Topsfield-Proctor Elementary,02980005, 98.0, 3.3, 6.6, 1.6, 3.1 4.328888888888889,4.33,a-vale-i2,2020-21,Topsfield-Steward Elementary,02980010, 97.4, 4.3, 11.6, 2.7, 4.2 4.017777777777778,4.02,a-vale-i2,2020-21,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 90.4, 16.4, 54.9, 29.6, 0.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Triton-Newbury Elementary,07730020, 95.3, 7.4, 23.3, 12.6, 9.4 -4.12,4.12,a-vale-i2,2020-21,Triton-Triton Regional High School,07730505, 92.7, 12.0, 38.9, 22.4, 14.0 4.231111111111111,4.23,a-vale-i2,2020-21,Triton-Triton Regional Middle School,07730405, 95.2, 8.0, 21.3, 13.7, 9.7 -4.262222222222222,4.26,a-vale-i2,2020-21,Triton-Pine Grove,07730025, 95.9, 6.4, 19.0, 11.1, 7.9 4.173333333333334,4.17,a-vale-i2,2020-21,Triton-Salisbury Elementary,07730015, 93.9, 9.6, 36.3, 19.6, 8.9 +4.235555555555555,4.24,a-vale-i2,2020-21,Triton-Newbury Elementary,07730020, 95.3, 7.4, 23.3, 12.6, 9.4 +4.262222222222222,4.26,a-vale-i2,2020-21,Triton-Pine Grove,07730025, 95.9, 6.4, 19.0, 11.1, 7.9 +4.12,4.12,a-vale-i2,2020-21,Triton-Triton Regional High School,07730505, 92.7, 12.0, 38.9, 22.4, 14.0 4.191111111111111,4.19,a-vale-i2,2020-21,Truro-Truro Central,03000005, 94.3, 9.3, 31.0, 12.1, 24.1 4.1866666666666665,4.19,a-vale-i2,2020-21,Tyngsborough-Tyngsborough High School,03010505, 94.2, 9.7, 30.1, 13.1, 4.5 -4.288888888888889,4.29,a-vale-i2,2020-21,Tyngsborough-Tyngsborough Middle,03010305, 96.5, 5.8, 19.0, 6.8, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Tyngsborough-Tyngsborough Elementary,03010020, 96.8, 5.3, 15.0, 6.8, 0.0 +4.288888888888889,4.29,a-vale-i2,2020-21,Tyngsborough-Tyngsborough Middle,03010305, 96.5, 5.8, 19.0, 6.8, 0.0 4.173333333333334,4.17,a-vale-i2,2020-21,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 93.9, 10.7, 28.9, 19.0, 0.6 4.133333333333334,4.13,a-vale-i2,2020-21,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 93.0, 12.5, 35.5, 19.5, 0.0 -4.195555555555556,4.2,a-vale-i2,2020-21,Up-Island Regional-Chilmark Elementary,07740010, 94.4, 9.0, 41.8, 10.9, 41.8 4.155555555555556,4.16,a-vale-i2,2020-21,Up-Island Regional-West Tisbury Elementary,07740020, 93.5, 10.6, 41.8, 24.0, 32.9 +4.195555555555556,4.2,a-vale-i2,2020-21,Up-Island Regional-Chilmark Elementary,07740010, 94.4, 9.0, 41.8, 10.9, 41.8 4.062222222222222,4.06,a-vale-i2,2020-21,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 91.4, 14.9, 52.4, 30.2, 5.5 -4.444444444444445,4.44,a-vale-i2,2020-21,Uxbridge-Gateway to College,03040515, 100.0, 0.0, 0.0, 0.0, 0.0 4.053333333333334,4.05,a-vale-i2,2020-21,Uxbridge-Uxbridge High,03040505, 91.2, 14.4, 54.2, 34.2, 8.6 +4.444444444444445,4.44,a-vale-i2,2020-21,Uxbridge-Gateway to College,03040515, 100.0, 0.0, 0.0, 0.0, 0.0 4.24,4.24,a-vale-i2,2020-21,Uxbridge-Taft Early Learning Center,03040005, 95.4, 7.3, 23.8, 11.5, 13.4 4.266666666666667,4.27,a-vale-i2,2020-21,Uxbridge-Whitin Intermediate,03040405, 96.0, 6.6, 20.6, 7.0, 8.0 4.133333333333334,4.13,a-vale-i2,2020-21,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 93.0, 12.2, 36.5, 22.2, 22.4 -4.168888888888889,4.17,a-vale-i2,2020-21,Wachusett-Chocksett Middle School,07750315, 93.8, 10.2, 32.9, 16.3, 0.0 -4.271111111111111,4.27,a-vale-i2,2020-21,Wachusett-Central Tree Middle,07750310, 96.1, 6.5, 19.8, 7.3, 0.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Wachusett-Mountview Middle,07750305, 97.3, 4.5, 10.9, 4.8, 0.0 4.315555555555555,4.32,a-vale-i2,2020-21,Wachusett-Glenwood Elementary School,07750060, 97.1, 4.9, 10.9, 4.3, 0.0 +4.333333333333333,4.33,a-vale-i2,2020-21,Wachusett-Thomas Prince,07750045, 97.5, 4.0, 8.3, 4.0, 0.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Wachusett-Mountview Middle,07750305, 97.3, 4.5, 10.9, 4.8, 0.0 +4.271111111111111,4.27,a-vale-i2,2020-21,Wachusett-Central Tree Middle,07750310, 96.1, 6.5, 19.8, 7.3, 0.0 +4.168888888888889,4.17,a-vale-i2,2020-21,Wachusett-Chocksett Middle School,07750315, 93.8, 10.2, 32.9, 16.3, 0.0 3.977777777777778,3.98,a-vale-i2,2020-21,Wachusett-Wachusett Regional High,07750505, 89.5, 17.5, 54.4, 37.3, 0.0 3.911111111111111,3.91,a-vale-i2,2020-21,Wachusett-Early Childhood Center,07750001, 88.0, 12.2, 44.4, 40.0, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Wachusett-Thomas Prince,07750045, 97.5, 4.0, 8.3, 4.0, 0.0 -4.342222222222222,4.34,a-vale-i2,2020-21,Wachusett-Davis Hill Elementary,07750018, 97.7, 3.8, 7.8, 2.5, 0.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Wachusett-Dawson,07750020, 96.9, 5.0, 8.7, 4.6, 0.0 -4.3244444444444445,4.32,a-vale-i2,2020-21,Wachusett-Houghton Elementary,07750027, 97.3, 4.5, 10.7, 4.5, 0.0 -4.351111111111111,4.35,a-vale-i2,2020-21,Wachusett-Leroy E.Mayo,07750032, 97.9, 3.4, 5.3, 2.5, 0.0 -4.208888888888889,4.21,a-vale-i2,2020-21,Wachusett-Paxton Center,07750040, 94.7, 8.9, 24.7, 14.7, 0.0 4.297777777777778,4.3,a-vale-i2,2020-21,Wachusett-Naquag Elementary School,07750005, 96.7, 5.5, 15.0, 5.3, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Wakefield-Galvin Middle School,03050310, 94.9, 8.6, 27.9, 13.2, 0.0 -4.164444444444444,4.16,a-vale-i2,2020-21,Wakefield-Wakefield Memorial High,03050505, 93.7, 10.5, 38.4, 20.7, 6.9 -4.24,4.24,a-vale-i2,2020-21,Wakefield-Early Childhood Center at the Doyle School,03050001, 95.4, 7.0, 25.3, 9.6, 0.0 -4.2444444444444445,4.24,a-vale-i2,2020-21,Wakefield-Woodville School,03050015, 95.5, 7.6, 27.1, 10.8, 0.0 -4.24,4.24,a-vale-i2,2020-21,Wakefield-Dolbeare,03050005, 95.4, 7.7, 24.8, 9.0, 0.0 +4.342222222222222,4.34,a-vale-i2,2020-21,Wachusett-Davis Hill Elementary,07750018, 97.7, 3.8, 7.8, 2.5, 0.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Wachusett-Paxton Center,07750040, 94.7, 8.9, 24.7, 14.7, 0.0 +4.351111111111111,4.35,a-vale-i2,2020-21,Wachusett-Leroy E.Mayo,07750032, 97.9, 3.4, 5.3, 2.5, 0.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Wachusett-Houghton Elementary,07750027, 97.3, 4.5, 10.7, 4.5, 0.0 +4.306666666666667,4.31,a-vale-i2,2020-21,Wachusett-Dawson,07750020, 96.9, 5.0, 8.7, 4.6, 0.0 4.28,4.28,a-vale-i2,2020-21,Wakefield-Walton,03050040, 96.3, 6.3, 21.9, 8.0, 0.0 +4.24,4.24,a-vale-i2,2020-21,Wakefield-Early Childhood Center at the Doyle School,03050001, 95.4, 7.0, 25.3, 9.6, 0.0 +4.24,4.24,a-vale-i2,2020-21,Wakefield-Dolbeare,03050005, 95.4, 7.7, 24.8, 9.0, 0.0 4.306666666666667,4.31,a-vale-i2,2020-21,Wakefield-Greenwood,03050020, 96.9, 5.2, 16.2, 5.1, 0.0 +4.2444444444444445,4.24,a-vale-i2,2020-21,Wakefield-Woodville School,03050015, 95.5, 7.6, 27.1, 10.8, 0.0 +4.164444444444444,4.16,a-vale-i2,2020-21,Wakefield-Wakefield Memorial High,03050505, 93.7, 10.5, 38.4, 20.7, 6.9 +4.217777777777778,4.22,a-vale-i2,2020-21,Wakefield-Galvin Middle School,03050310, 94.9, 8.6, 27.9, 13.2, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Wales-Wales Elementary,03060005, 96.8, 5.3, 16.9, 4.6, 10.0 -4.226666666666667,4.23,a-vale-i2,2020-21,Walpole-Walpole High,03070505, 95.1, 8.3, 23.1, 11.7, 6.0 4.106666666666667,4.11,a-vale-i2,2020-21,Walpole-Bird Middle,03070305, 92.4, 13.0, 41.8, 24.4, 4.2 +4.226666666666667,4.23,a-vale-i2,2020-21,Walpole-Walpole High,03070505, 95.1, 8.3, 23.1, 11.7, 6.0 4.213333333333333,4.21,a-vale-i2,2020-21,Walpole-Eleanor N Johnson Middle,03070310, 94.8, 9.0, 27.1, 14.4, 6.6 4.328888888888889,4.33,a-vale-i2,2020-21,Walpole-Old Post Road,03070018, 97.4, 4.3, 12.9, 3.2, 1.7 4.271111111111111,4.27,a-vale-i2,2020-21,Walpole-Fisher,03070015, 96.1, 6.7, 24.0, 6.9, 1.3 4.2844444444444445,4.28,a-vale-i2,2020-21,Walpole-Boyden,03070010, 96.4, 6.2, 18.4, 9.1, 4.2 4.328888888888889,4.33,a-vale-i2,2020-21,Walpole-Elm Street School,03070005, 97.4, 4.3, 11.4, 2.7, 6.8 4.226666666666667,4.23,a-vale-i2,2020-21,Walpole-Daniel Feeney Preschool Center,03070002, 95.1, 7.8, 27.3, 15.6, 26.0 -4.173333333333334,4.17,a-vale-i2,2020-21,Waltham-William F. Stanley Elementary School,03080005, 93.9, 9.2, 30.2, 20.5, 13.1 4.306666666666667,4.31,a-vale-i2,2020-21,Waltham-Waltham Public Schools Dual Language Program,03080001, 96.9, 5.2, 14.3, 6.9, 4.6 -3.9466666666666663,3.95,a-vale-i2,2020-21,Waltham-Waltham Sr High,03080505, 88.8, 18.1, 48.2, 34.4, 15.3 -4.248888888888889,4.25,a-vale-i2,2020-21,Waltham-John W. McDevitt Middle School,03080415, 95.6, 7.3, 20.8, 10.4, 4.2 +4.173333333333334,4.17,a-vale-i2,2020-21,Waltham-William F. Stanley Elementary School,03080005, 93.9, 9.2, 30.2, 20.5, 13.1 4.124444444444444,4.12,a-vale-i2,2020-21,Waltham-Northeast Elementary School,03080040, 92.8, 10.5, 32.8, 24.2, 12.2 -4.1466666666666665,4.15,a-vale-i2,2020-21,Waltham-Henry Whittemore Elementary School,03080065, 93.3, 10.9, 36.3, 25.5, 11.1 -4.2844444444444445,4.28,a-vale-i2,2020-21,Waltham-James Fitzgerald Elementary School,03080060, 96.4, 5.8, 15.2, 9.2, 4.7 4.257777777777777,4.26,a-vale-i2,2020-21,Waltham-Thomas R Plympton Elementary School,03080050, 95.8, 6.8, 21.5, 13.4, 5.8 +4.2844444444444445,4.28,a-vale-i2,2020-21,Waltham-James Fitzgerald Elementary School,03080060, 96.4, 5.8, 15.2, 9.2, 4.7 +4.1466666666666665,4.15,a-vale-i2,2020-21,Waltham-Henry Whittemore Elementary School,03080065, 93.3, 10.9, 36.3, 25.5, 11.1 4.342222222222222,4.34,a-vale-i2,2020-21,Waltham-Douglas MacArthur Elementary School,03080032, 97.7, 3.8, 8.4, 2.6, 2.6 +4.248888888888889,4.25,a-vale-i2,2020-21,Waltham-John W. McDevitt Middle School,03080415, 95.6, 7.3, 20.8, 10.4, 4.2 +3.9466666666666663,3.95,a-vale-i2,2020-21,Waltham-Waltham Sr High,03080505, 88.8, 18.1, 48.2, 34.4, 15.3 4.311111111111111,4.31,a-vale-i2,2020-21,Waltham-John F Kennedy Middle,03080404, 97.0, 4.9, 14.1, 8.6, 3.6 4.195555555555556,4.2,a-vale-i2,2020-21,Ware-Ware Middle School,03090305, 94.4, 9.1, 32.4, 20.8, 3.2 3.8444444444444446,3.84,a-vale-i2,2020-21,Ware-Ware Junior/Senior High School,03090505, 86.5, 21.8, 60.7, 47.5, 15.5 4.066666666666666,4.07,a-vale-i2,2020-21,Ware-Stanley M Koziol Elementary School,03090020, 91.5, 13.0, 49.3, 31.4, 10.3 -4.271111111111111,4.27,a-vale-i2,2020-21,Wareham-Wareham Senior High,03100505, 96.1, 6.4, 17.7, 10.9, 1.2 -3.5644444444444447,3.56,a-vale-i2,2020-21,Wareham-Wareham Cooperative Alternative School,03100315, 80.2, 22.5, 78.4, 75.7, 0.0 -4.106666666666667,4.11,a-vale-i2,2020-21,Wareham-Minot Forest,03100017, 92.4, 12.4, 38.8, 26.5, 0.0 4.133333333333334,4.13,a-vale-i2,2020-21,Wareham-John William Decas,03100003, 93.0, 11.1, 35.5, 22.2, 0.0 3.911111111111111,3.91,a-vale-i2,2020-21,Wareham-Wareham Middle,03100305, 88.0, 20.4, 71.5, 41.8, 0.0 +4.106666666666667,4.11,a-vale-i2,2020-21,Wareham-Minot Forest,03100017, 92.4, 12.4, 38.8, 26.5, 0.0 +4.271111111111111,4.27,a-vale-i2,2020-21,Wareham-Wareham Senior High,03100505, 96.1, 6.4, 17.7, 10.9, 1.2 +3.5644444444444447,3.56,a-vale-i2,2020-21,Wareham-Wareham Cooperative Alternative School,03100315, 80.2, 22.5, 78.4, 75.7, 0.0 4.28,4.28,a-vale-i2,2020-21,Watertown-James Russell Lowell,03140025, 96.3, 6.4, 17.1, 7.2, 6.5 -4.3244444444444445,4.32,a-vale-i2,2020-21,Watertown-Cunniff,03140015, 97.3, 4.6, 12.2, 5.5, 0.0 4.1866666666666665,4.19,a-vale-i2,2020-21,Watertown-Watertown High,03140505, 94.2, 9.6, 27.6, 15.8, 0.0 -4.253333333333334,4.25,a-vale-i2,2020-21,Watertown-Watertown Middle,03140305, 95.7, 7.4, 22.3, 12.3, 3.7 4.275555555555556,4.28,a-vale-i2,2020-21,Watertown-Hosmer,03140020, 96.2, 6.1, 18.7, 10.1, 4.9 -4.342222222222222,4.34,a-vale-i2,2020-21,Wayland-Claypit Hill School,03150005, 97.7, 3.8, 8.6, 2.2, 0.0 +4.3244444444444445,4.32,a-vale-i2,2020-21,Watertown-Cunniff,03140015, 97.3, 4.6, 12.2, 5.5, 0.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Watertown-Watertown Middle,03140305, 95.7, 7.4, 22.3, 12.3, 3.7 4.337777777777777,4.34,a-vale-i2,2020-21,Wayland-Happy Hollow School,03150015, 97.6, 4.0, 8.4, 3.9, 0.0 +4.342222222222222,4.34,a-vale-i2,2020-21,Wayland-Claypit Hill School,03150005, 97.7, 3.8, 8.6, 2.2, 0.0 4.351111111111111,4.35,a-vale-i2,2020-21,Wayland-Loker School,03150020, 97.9, 3.5, 7.9, 3.9, 0.0 4.293333333333333,4.29,a-vale-i2,2020-21,Wayland-Wayland Middle School,03150305, 96.6, 5.7, 15.2, 7.4, 0.2 3.422222222222222,3.42,a-vale-i2,2020-21,Wayland-Wayland High School,03150505, 77.0, 38.4, 100.0, 100.0, 0.7 -4.044444444444444,4.04,a-vale-i2,2020-21,Webster-Webster Middle School,03160315, 91.0, 14.8, 44.2, 31.3, 0.0 -3.76,3.76,a-vale-i2,2020-21,Webster-Bartlett High School,03160505, 84.6, 24.4, 61.8, 47.9, 2.7 4.097777777777778,4.1,a-vale-i2,2020-21,Webster-Park Avenue Elementary,03160015, 92.2, 12.3, 40.5, 27.2, 0.0 +3.76,3.76,a-vale-i2,2020-21,Webster-Bartlett High School,03160505, 84.6, 24.4, 61.8, 47.9, 2.7 +4.044444444444444,4.04,a-vale-i2,2020-21,Webster-Webster Middle School,03160315, 91.0, 14.8, 44.2, 31.3, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Wellesley-Joseph E Fiske,03170015, 97.8, 3.6, 7.4, 2.2, 0.0 +4.377777777777778,4.38,a-vale-i2,2020-21,Wellesley-John D Hardy,03170020, 98.5, 2.5, 6.0, 1.3, 0.0 4.342222222222222,4.34,a-vale-i2,2020-21,Wellesley-Hunnewell,03170025, 97.7, 3.9, 8.3, 3.5, 0.0 4.346666666666667,4.35,a-vale-i2,2020-21,Wellesley-Schofield,03170045, 97.8, 3.6, 6.9, 3.0, 0.0 -4.32,4.32,a-vale-i2,2020-21,Wellesley-Ernest F Upham,03170050, 97.2, 4.8, 11.1, 3.7, 0.0 4.359999999999999,4.36,a-vale-i2,2020-21,Wellesley-Sprague Elementary School,03170048, 98.1, 3.2, 5.1, 1.3, 0.0 -4.377777777777778,4.38,a-vale-i2,2020-21,Wellesley-John D Hardy,03170020, 98.5, 2.5, 6.0, 1.3, 0.0 -4.346666666666667,4.35,a-vale-i2,2020-21,Wellesley-Joseph E Fiske,03170015, 97.8, 3.6, 7.4, 2.2, 0.0 -4.355555555555555,4.36,a-vale-i2,2020-21,Wellesley-Katharine Lee Bates,03170005, 98.0, 3.4, 7.1, 1.4, 0.0 -4.208888888888889,4.21,a-vale-i2,2020-21,Wellesley-Preschool at Wellesley Schools,03170001, 94.7, 8.1, 25.3, 14.9, 0.0 -4.377777777777778,4.38,a-vale-i2,2020-21,Wellesley-Wellesley Sr High,03170505, 98.5, 2.5, 5.0, 2.2, 0.0 +4.32,4.32,a-vale-i2,2020-21,Wellesley-Ernest F Upham,03170050, 97.2, 4.8, 11.1, 3.7, 0.0 4.382222222222222,4.38,a-vale-i2,2020-21,Wellesley-Wellesley Middle,03170305, 98.6, 2.4, 3.5, 1.0, 0.0 +4.208888888888889,4.21,a-vale-i2,2020-21,Wellesley-Preschool at Wellesley Schools,03170001, 94.7, 8.1, 25.3, 14.9, 0.0 +4.355555555555555,4.36,a-vale-i2,2020-21,Wellesley-Katharine Lee Bates,03170005, 98.0, 3.4, 7.1, 1.4, 0.0 +4.377777777777778,4.38,a-vale-i2,2020-21,Wellesley-Wellesley Sr High,03170505, 98.5, 2.5, 5.0, 2.2, 0.0 4.155555555555556,4.16,a-vale-i2,2020-21,Wellfleet-Wellfleet Elementary,03180005, 93.5, 10.8, 43.4, 21.7, 19.8 -4.2444444444444445,4.24,a-vale-i2,2020-21,West Boylston-Major Edwards Elementary,03220005, 95.5, 7.3, 21.9, 10.2, 9.7 4.226666666666667,4.23,a-vale-i2,2020-21,West Boylston-West Boylston Junior/Senior High,03220505, 95.1, 8.1, 25.2, 10.6, 6.3 -4.355555555555555,4.36,a-vale-i2,2020-21,West Bridgewater-Howard School,03230305, 98.0, 3.4, 9.0, 1.3, 4.7 -4.2844444444444445,4.28,a-vale-i2,2020-21,West Bridgewater-Spring Street School,03230005, 96.4, 6.0, 18.1, 7.2, 2.4 +4.2444444444444445,4.24,a-vale-i2,2020-21,West Boylston-Major Edwards Elementary,03220005, 95.5, 7.3, 21.9, 10.2, 9.7 4.306666666666667,4.31,a-vale-i2,2020-21,West Bridgewater-Rose L Macdonald,03230003, 96.9, 5.3, 16.3, 2.4, 0.0 +4.2844444444444445,4.28,a-vale-i2,2020-21,West Bridgewater-Spring Street School,03230005, 96.4, 6.0, 18.1, 7.2, 2.4 +4.355555555555555,4.36,a-vale-i2,2020-21,West Bridgewater-Howard School,03230305, 98.0, 3.4, 9.0, 1.3, 4.7 4.235555555555555,4.24,a-vale-i2,2020-21,West Bridgewater-West Bridgewater Junior/Senior,03230505, 95.3, 7.7, 23.3, 10.4, 3.8 -4.12,4.12,a-vale-i2,2020-21,West Springfield-John Ashley,03320005, 92.7, 11.6, 37.9, 22.2, 0.0 -3.6488888888888886,3.65,a-vale-i2,2020-21,West Springfield-Cowing Early Childhood,03320001, 82.1, 20.5, 56.3, 52.4, 0.0 -4.1466666666666665,4.15,a-vale-i2,2020-21,West Springfield-West Springfield High,03320505, 93.3, 11.0, 27.1, 18.6, 0.0 -4.155555555555556,4.16,a-vale-i2,2020-21,West Springfield-West Springfield Middle,03320305, 93.5, 10.7, 28.5, 18.6, 0.1 4.293333333333333,4.29,a-vale-i2,2020-21,West Springfield-Tatham,03320040, 96.6, 5.7, 15.2, 9.0, 0.0 4.182222222222222,4.18,a-vale-i2,2020-21,West Springfield-Mittineague,03320030, 94.1, 9.8, 27.6, 18.4, 0.0 +4.155555555555556,4.16,a-vale-i2,2020-21,West Springfield-West Springfield Middle,03320305, 93.5, 10.7, 28.5, 18.6, 0.1 +4.1466666666666665,4.15,a-vale-i2,2020-21,West Springfield-West Springfield High,03320505, 93.3, 11.0, 27.1, 18.6, 0.0 4.231111111111111,4.23,a-vale-i2,2020-21,West Springfield-John R Fausey,03320010, 95.2, 8.1, 24.1, 11.6, 0.0 -4.16,4.16,a-vale-i2,2020-21,West Springfield-Memorial,03320025, 93.6, 10.2, 34.0, 18.6, 0.0 4.164444444444444,4.16,a-vale-i2,2020-21,West Springfield-Philip G Coburn,03320007, 93.7, 10.2, 30.5, 18.9, 0.0 -4.253333333333334,4.25,a-vale-i2,2020-21,Westborough-Annie E Fales,03210010, 95.7, 7.4, 16.9, 2.8, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Westborough-J Harding Armstrong,03210005, 94.9, 8.4, 26.7, 7.8, 0.0 -4.222222222222222,4.22,a-vale-i2,2020-21,Westborough-Sarah W Gibbons Middle,03210305, 95.0, 8.4, 26.1, 12.7, 3.6 +4.16,4.16,a-vale-i2,2020-21,West Springfield-Memorial,03320025, 93.6, 10.2, 34.0, 18.6, 0.0 +3.6488888888888886,3.65,a-vale-i2,2020-21,West Springfield-Cowing Early Childhood,03320001, 82.1, 20.5, 56.3, 52.4, 0.0 +4.12,4.12,a-vale-i2,2020-21,West Springfield-John Ashley,03320005, 92.7, 11.6, 37.9, 22.2, 0.0 4.2,4.2,a-vale-i2,2020-21,Westborough-Mill Pond School,03210045, 94.5, 9.3, 30.4, 9.9, 2.7 4.1288888888888895,4.13,a-vale-i2,2020-21,Westborough-Elsie A Hastings Elementary,03210025, 92.9, 11.4, 39.8, 20.1, 0.0 +4.222222222222222,4.22,a-vale-i2,2020-21,Westborough-Sarah W Gibbons Middle,03210305, 95.0, 8.4, 26.1, 12.7, 3.6 +4.217777777777778,4.22,a-vale-i2,2020-21,Westborough-J Harding Armstrong,03210005, 94.9, 8.4, 26.7, 7.8, 0.0 +4.253333333333334,4.25,a-vale-i2,2020-21,Westborough-Annie E Fales,03210010, 95.7, 7.4, 16.9, 2.8, 0.0 3.96,3.96,a-vale-i2,2020-21,Westborough-Westborough High,03210505, 89.1, 18.4, 59.1, 34.7, 5.9 -4.231111111111111,4.23,a-vale-i2,2020-21,Westfield-Westfield High,03250505, 95.2, 7.9, 18.3, 12.9, 16.6 -4.08,4.08,a-vale-i2,2020-21,Westfield-Westfield Middle School,03250310, 91.8, 13.6, 40.5, 28.0, 10.2 -4.222222222222222,4.22,a-vale-i2,2020-21,Westfield-Westfield Intermediate School,03250075, 95.0, 8.4, 23.9, 14.4, 0.0 4.271111111111111,4.27,a-vale-i2,2020-21,Westfield-Southampton Road,03250040, 96.1, 6.4, 23.4, 10.0, 20.6 +4.222222222222222,4.22,a-vale-i2,2020-21,Westfield-Westfield Intermediate School,03250075, 95.0, 8.4, 23.9, 14.4, 0.0 +4.08,4.08,a-vale-i2,2020-21,Westfield-Westfield Middle School,03250310, 91.8, 13.6, 40.5, 28.0, 10.2 +3.924444444444444,3.92,a-vale-i2,2020-21,Westfield-Fort Meadow Early Childhood Center,03250003, 88.3, 15.7, 52.1, 43.8, 0.0 +4.231111111111111,4.23,a-vale-i2,2020-21,Westfield-Westfield High,03250505, 95.2, 7.9, 18.3, 12.9, 16.6 4.164444444444444,4.16,a-vale-i2,2020-21,Westfield-Paper Mill,03250036, 93.7, 10.3, 35.9, 19.9, 31.3 4.253333333333334,4.25,a-vale-i2,2020-21,Westfield-Munger Hill,03250033, 95.7, 7.1, 26.0, 11.0, 19.9 4.24,4.24,a-vale-i2,2020-21,Westfield-Highland,03250025, 95.4, 7.4, 25.6, 13.1, 21.3 4.155555555555556,4.16,a-vale-i2,2020-21,Westfield-Abner Gibbs,03250020, 93.5, 10.6, 34.8, 21.1, 31.4 -4.217777777777778,4.22,a-vale-i2,2020-21,Westfield-Westfield Technical Academy,03250605, 94.9, 8.5, 27.9, 14.3, 14.8 -3.924444444444444,3.92,a-vale-i2,2020-21,Westfield-Fort Meadow Early Childhood Center,03250003, 88.3, 15.7, 52.1, 43.8, 0.0 4.151111111111112,4.15,a-vale-i2,2020-21,Westfield-Franklin Ave,03250015, 93.4, 10.6, 40.7, 21.6, 36.2 -4.355555555555555,4.36,a-vale-i2,2020-21,Westford-John A. Crisafulli Elementary School,03260045, 98.0, 3.4, 5.3, 1.7, 0.0 -4.288888888888889,4.29,a-vale-i2,2020-21,Westford-Rita E. Miller Elementary School,03260055, 96.5, 5.6, 14.2, 7.1, 0.0 -4.333333333333333,4.33,a-vale-i2,2020-21,Westford-Blanchard Middle,03260310, 97.5, 4.3, 12.1, 4.9, 0.0 -4.346666666666667,4.35,a-vale-i2,2020-21,Westford-Stony Brook School,03260330, 97.8, 3.7, 8.1, 2.3, 0.0 -4.271111111111111,4.27,a-vale-i2,2020-21,Westford-Westford Academy,03260505, 96.1, 6.5, 20.4, 9.6, 1.1 +4.217777777777778,4.22,a-vale-i2,2020-21,Westfield-Westfield Technical Academy,03250605, 94.9, 8.5, 27.9, 14.3, 14.8 4.351111111111111,4.35,a-vale-i2,2020-21,Westford-Abbot Elementary,03260004, 97.9, 3.5, 9.1, 1.4, 0.0 4.359999999999999,4.36,a-vale-i2,2020-21,Westford-Day Elementary,03260007, 98.1, 3.1, 6.5, 1.5, 0.0 4.328888888888889,4.33,a-vale-i2,2020-21,Westford-Nabnasset,03260015, 97.4, 4.2, 8.5, 4.0, 0.0 4.337777777777777,4.34,a-vale-i2,2020-21,Westford-Col John Robinson,03260025, 97.6, 3.9, 7.6, 2.3, 0.0 +4.355555555555555,4.36,a-vale-i2,2020-21,Westford-John A. Crisafulli Elementary School,03260045, 98.0, 3.4, 5.3, 1.7, 0.0 +4.271111111111111,4.27,a-vale-i2,2020-21,Westford-Westford Academy,03260505, 96.1, 6.5, 20.4, 9.6, 1.1 +4.333333333333333,4.33,a-vale-i2,2020-21,Westford-Blanchard Middle,03260310, 97.5, 4.3, 12.1, 4.9, 0.0 +4.288888888888889,4.29,a-vale-i2,2020-21,Westford-Rita E. Miller Elementary School,03260055, 96.5, 5.6, 14.2, 7.1, 0.0 +4.346666666666667,4.35,a-vale-i2,2020-21,Westford-Stony Brook School,03260330, 97.8, 3.7, 8.1, 2.3, 0.0 4.253333333333334,4.25,a-vale-i2,2020-21,Westhampton-Westhampton Elementary School,03270005, 95.7, 7.1, 22.0, 11.9, 0.0 -4.293333333333333,4.29,a-vale-i2,2020-21,Weston-Country,03300010, 96.6, 5.7, 16.6, 7.2, 14.8 -4.342222222222222,4.34,a-vale-i2,2020-21,Weston-Weston Middle,03300305, 97.7, 3.9, 9.7, 3.0, 1.5 -4.337777777777777,4.34,a-vale-i2,2020-21,Weston-Field Elementary School,03300012, 97.6, 4.1, 10.0, 2.4, 0.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Weston-Woodland,03300015, 97.4, 4.4, 13.1, 2.5, 0.0 4.302222222222222,4.3,a-vale-i2,2020-21,Weston-Weston High,03300505, 96.8, 5.5, 13.3, 4.6, 1.3 +4.342222222222222,4.34,a-vale-i2,2020-21,Weston-Weston Middle,03300305, 97.7, 3.9, 9.7, 3.0, 1.5 +4.328888888888889,4.33,a-vale-i2,2020-21,Weston-Woodland,03300015, 97.4, 4.4, 13.1, 2.5, 0.0 +4.337777777777777,4.34,a-vale-i2,2020-21,Weston-Field Elementary School,03300012, 97.6, 4.1, 10.0, 2.4, 0.0 +4.293333333333333,4.29,a-vale-i2,2020-21,Weston-Country,03300010, 96.6, 5.7, 16.6, 7.2, 14.8 +4.24,4.24,a-vale-i2,2020-21,Westport-Alice A Macomber,03310015, 95.4, 7.6, 28.7, 12.1, 8.0 4.208888888888889,4.21,a-vale-i2,2020-21,Westport-Westport Elementary,03310030, 94.7, 8.9, 32.0, 16.1, 5.9 4.168888888888889,4.17,a-vale-i2,2020-21,Westport-Westport Junior/Senior High School,03310515, 93.8, 10.3, 27.1, 17.4, 1.8 -4.24,4.24,a-vale-i2,2020-21,Westport-Alice A Macomber,03310015, 95.4, 7.6, 28.7, 12.1, 8.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Westwood-Westwood High,03350505, 97.4, 4.3, 10.1, 3.8, 6.3 -4.355555555555555,4.36,a-vale-i2,2020-21,Westwood-E W Thurston Middle,03350305, 98.0, 3.3, 8.2, 3.1, 0.6 -4.364444444444445,4.36,a-vale-i2,2020-21,Westwood-William E Sheehan,03350025, 98.2, 3.0, 4.8, 0.3, 0.0 -4.231111111111111,4.23,a-vale-i2,2020-21,Westwood-Westwood Integrated Preschool,03350050, 95.2, 6.2, 17.0, 3.8, 0.0 4.342222222222222,4.34,a-vale-i2,2020-21,Westwood-Martha Jones,03350017, 97.7, 3.9, 8.4, 1.8, 0.0 4.359999999999999,4.36,a-vale-i2,2020-21,Westwood-Paul Hanlon,03350015, 98.1, 3.1, 7.7, 1.5, 0.0 -4.337777777777777,4.34,a-vale-i2,2020-21,Westwood-Downey,03350012, 97.6, 4.0, 10.2, 2.7, 0.0 +4.328888888888889,4.33,a-vale-i2,2020-21,Westwood-Westwood High,03350505, 97.4, 4.3, 10.1, 3.8, 6.3 4.355555555555555,4.36,a-vale-i2,2020-21,Westwood-Deerfield School,03350010, 98.0, 3.4, 7.8, 3.6, 0.0 -4.217777777777778,4.22,a-vale-i2,2020-21,Weymouth-Ralph Talbot,03360085, 94.9, 8.1, 23.2, 13.9, 8.9 -4.071111111111111,4.07,a-vale-i2,2020-21,Weymouth-William Seach,03360080, 91.6, 13.4, 41.3, 25.5, 11.5 -4.28,4.28,a-vale-i2,2020-21,Weymouth-Lawrence W Pingree,03360065, 96.3, 6.1, 16.0, 9.3, 8.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Weymouth-Thomas V Nash,03360060, 96.9, 5.2, 13.9, 7.2, 8.2 -3.977777777777778,3.98,a-vale-i2,2020-21,Weymouth-Weymouth High School,03360505, 89.5, 17.0, 44.9, 32.1, 7.9 +4.364444444444445,4.36,a-vale-i2,2020-21,Westwood-William E Sheehan,03350025, 98.2, 3.0, 4.8, 0.3, 0.0 +4.231111111111111,4.23,a-vale-i2,2020-21,Westwood-Westwood Integrated Preschool,03350050, 95.2, 6.2, 17.0, 3.8, 0.0 +4.355555555555555,4.36,a-vale-i2,2020-21,Westwood-E W Thurston Middle,03350305, 98.0, 3.3, 8.2, 3.1, 0.6 +4.337777777777777,4.34,a-vale-i2,2020-21,Westwood-Downey,03350012, 97.6, 4.0, 10.2, 2.7, 0.0 4.2444444444444445,4.24,a-vale-i2,2020-21,Weymouth-Frederick C Murphy,03360050, 95.5, 7.2, 20.6, 14.3, 7.3 +4.306666666666667,4.31,a-vale-i2,2020-21,Weymouth-Thomas V Nash,03360060, 96.9, 5.2, 13.9, 7.2, 8.2 +4.28,4.28,a-vale-i2,2020-21,Weymouth-Lawrence W Pingree,03360065, 96.3, 6.1, 16.0, 9.3, 8.0 +4.071111111111111,4.07,a-vale-i2,2020-21,Weymouth-William Seach,03360080, 91.6, 13.4, 41.3, 25.5, 11.5 +4.217777777777778,4.22,a-vale-i2,2020-21,Weymouth-Ralph Talbot,03360085, 94.9, 8.1, 23.2, 13.9, 8.9 +4.28,4.28,a-vale-i2,2020-21,Weymouth-Thomas W. Hamilton Primary School,03360105, 96.3, 6.1, 16.4, 7.8, 6.7 4.24,4.24,a-vale-i2,2020-21,Weymouth-Wessagusset,03360110, 95.4, 7.6, 24.7, 12.5, 7.6 4.102222222222222,4.1,a-vale-i2,2020-21,Weymouth-Abigail Adams Middle School,03360310, 92.3, 12.9, 38.9, 25.8, 4.5 4.088888888888889,4.09,a-vale-i2,2020-21,Weymouth-Johnson Early Childhood Center,03360003, 92.0, 8.7, 26.4, 26.4, 17.0 4.315555555555555,4.32,a-vale-i2,2020-21,Weymouth-Academy Avenue,03360005, 97.1, 4.9, 13.1, 4.7, 3.8 -4.28,4.28,a-vale-i2,2020-21,Weymouth-Thomas W. Hamilton Primary School,03360105, 96.3, 6.1, 16.4, 7.8, 6.7 +3.977777777777778,3.98,a-vale-i2,2020-21,Weymouth-Weymouth High School,03360505, 89.5, 17.0, 44.9, 32.1, 7.9 4.275555555555556,4.28,a-vale-i2,2020-21,Whately-Whately Elementary,03370005, 96.2, 6.3, 17.6, 5.9, 1.7 +4.2444444444444445,4.24,a-vale-i2,2020-21,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 95.5, 7.0, 18.9, 11.6, 18.9 4.226666666666667,4.23,a-vale-i2,2020-21,Whitman-Hanson-Louise A Conley,07800010, 95.1, 8.2, 27.1, 11.1, 3.1 4.182222222222222,4.18,a-vale-i2,2020-21,Whitman-Hanson-John H Duval,07800030, 94.1, 9.6, 34.2, 19.6, 5.9 4.248888888888889,4.25,a-vale-i2,2020-21,Whitman-Hanson-Indian Head,07800035, 95.6, 7.3, 25.1, 9.5, 5.6 +4.293333333333333,4.29,a-vale-i2,2020-21,Whitman-Hanson-Whitman Middle,07800310, 96.6, 5.7, 16.4, 5.9, 4.0 4.288888888888889,4.29,a-vale-i2,2020-21,Whitman-Hanson-Hanson Middle School,07800315, 96.5, 5.8, 20.2, 7.4, 0.9 4.093333333333333,4.09,a-vale-i2,2020-21,Whitman-Hanson-Whitman Hanson Regional,07800505, 92.1, 12.8, 35.6, 20.4, 17.3 -4.2444444444444445,4.24,a-vale-i2,2020-21,Whitman-Hanson-The Pre-School Academy at Whitman Hanson,07800001, 95.5, 7.0, 18.9, 11.6, 18.9 -4.293333333333333,4.29,a-vale-i2,2020-21,Whitman-Hanson-Whitman Middle,07800310, 96.6, 5.7, 16.4, 5.9, 4.0 4.208888888888889,4.21,a-vale-i2,2020-21,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 94.7, 8.8, 32.5, 13.1, 9.1 4.253333333333334,4.25,a-vale-i2,2020-21,Williamsburg-Anne T. Dunphy School,03400020, 95.7, 7.1, 21.5, 12.4, 0.0 -4.2444444444444445,4.24,a-vale-i2,2020-21,Wilmington-Wildwood,03420015, 95.5, 7.3, 23.4, 11.7, 1.8 +4.231111111111111,4.23,a-vale-i2,2020-21,Wilmington-Boutwell,03420005, 95.2, 7.7, 32.2, 12.7, 3.4 4.337777777777777,4.34,a-vale-i2,2020-21,Wilmington-Woburn Street,03420020, 97.6, 4.1, 11.4, 3.8, 3.3 4.137777777777777,4.14,a-vale-i2,2020-21,Wilmington-Wilmington High,03420505, 93.1, 11.3, 33.2, 21.6, 8.9 4.315555555555555,4.32,a-vale-i2,2020-21,Wilmington-North Intermediate,03420060, 97.1, 4.9, 15.0, 4.0, 6.1 4.377777777777778,4.38,a-vale-i2,2020-21,Wilmington-West Intermediate,03420080, 98.5, 2.5, 3.6, 0.9, 0.5 4.195555555555556,4.2,a-vale-i2,2020-21,Wilmington-Wilmington Middle School,03420330, 94.4, 9.5, 32.1, 16.3, 4.0 -4.231111111111111,4.23,a-vale-i2,2020-21,Wilmington-Boutwell,03420005, 95.2, 7.7, 32.2, 12.7, 3.4 +4.2444444444444445,4.24,a-vale-i2,2020-21,Wilmington-Wildwood,03420015, 95.5, 7.3, 23.4, 11.7, 1.8 4.346666666666667,4.35,a-vale-i2,2020-21,Wilmington-Shawsheen Elementary,03420025, 97.8, 3.6, 8.2, 2.5, 1.3 -4.235555555555555,4.24,a-vale-i2,2020-21,Winchendon-Winchendon PreSchool Program,03430010, 95.3, 7.0, 25.0, 13.3, 16.7 -4.137777777777777,4.14,a-vale-i2,2020-21,Winchendon-Memorial,03430040, 93.1, 10.7, 33.7, 19.8, 12.5 4.177777777777778,4.18,a-vale-i2,2020-21,Winchendon-Toy Town Elementary,03430050, 94.0, 9.6, 31.5, 21.0, 7.5 +4.137777777777777,4.14,a-vale-i2,2020-21,Winchendon-Memorial,03430040, 93.1, 10.7, 33.7, 19.8, 12.5 +4.235555555555555,4.24,a-vale-i2,2020-21,Winchendon-Winchendon PreSchool Program,03430010, 95.3, 7.0, 25.0, 13.3, 16.7 4.1466666666666665,4.15,a-vale-i2,2020-21,Winchendon-Murdock Middle School,03430315, 93.3, 10.9, 31.9, 20.0, 7.7 -4.008888888888889,4.01,a-vale-i2,2020-21,Winchendon-Murdock Academy for Success,03430405, 90.2, 13.8, 51.4, 40.0, 0.0 4.0488888888888885,4.05,a-vale-i2,2020-21,Winchendon-Murdock High School,03430515, 91.1, 14.6, 32.8, 24.4, 12.2 -4.328888888888889,4.33,a-vale-i2,2020-21,Winchester-Lynch Elementary,03440020, 97.4, 4.2, 11.9, 4.6, 5.4 +4.008888888888889,4.01,a-vale-i2,2020-21,Winchendon-Murdock Academy for Success,03430405, 90.2, 13.8, 51.4, 40.0, 0.0 4.342222222222222,4.34,a-vale-i2,2020-21,Winchester-Lincoln Elementary,03440005, 97.7, 3.8, 8.7, 2.2, 0.0 +4.328888888888889,4.33,a-vale-i2,2020-21,Winchester-Lynch Elementary,03440020, 97.4, 4.2, 11.9, 4.6, 5.4 +4.333333333333333,4.33,a-vale-i2,2020-21,Winchester-Vinson-Owen Elementary,03440025, 97.5, 4.2, 10.0, 3.0, 6.0 +4.328888888888889,4.33,a-vale-i2,2020-21,Winchester-Muraco Elementary,03440040, 97.4, 4.3, 11.3, 4.7, 4.7 +4.306666666666667,4.31,a-vale-i2,2020-21,Winchester-Ambrose Elementary,03440045, 96.9, 5.0, 17.6, 4.4, 6.2 4.351111111111111,4.35,a-vale-i2,2020-21,Winchester-McCall Middle,03440305, 97.9, 3.5, 7.8, 1.9, 3.6 4.2444444444444445,4.24,a-vale-i2,2020-21,Winchester-Winchester High School,03440505, 95.5, 7.6, 23.0, 11.0, 4.0 -4.328888888888889,4.33,a-vale-i2,2020-21,Winchester-Muraco Elementary,03440040, 97.4, 4.3, 11.3, 4.7, 4.7 -4.333333333333333,4.33,a-vale-i2,2020-21,Winchester-Vinson-Owen Elementary,03440025, 97.5, 4.2, 10.0, 3.0, 6.0 -4.306666666666667,4.31,a-vale-i2,2020-21,Winchester-Ambrose Elementary,03440045, 96.9, 5.0, 17.6, 4.4, 6.2 -4.142222222222222,4.14,a-vale-i2,2020-21,Winthrop-Winthrop High School,03460505, 93.2, 11.3, 31.2, 16.8, 6.2 -4.195555555555556,4.2,a-vale-i2,2020-21,Winthrop-Winthrop Middle School,03460305, 94.4, 9.4, 34.7, 15.0, 0.0 4.231111111111111,4.23,a-vale-i2,2020-21,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 95.2, 8.0, 28.3, 13.6, 0.0 +4.195555555555556,4.2,a-vale-i2,2020-21,Winthrop-Winthrop Middle School,03460305, 94.4, 9.4, 34.7, 15.0, 0.0 4.271111111111111,4.27,a-vale-i2,2020-21,Winthrop-Arthur T. Cummings Elementary School,03460020, 96.1, 6.6, 22.5, 7.9, 0.0 +4.142222222222222,4.14,a-vale-i2,2020-21,Winthrop-Winthrop High School,03460505, 93.2, 11.3, 31.2, 16.8, 6.2 +4.195555555555556,4.2,a-vale-i2,2020-21,Woburn-Daniel L Joyce Middle School,03470410, 94.4, 9.3, 32.5, 18.5, 10.6 4.2,4.2,a-vale-i2,2020-21,Woburn-John F Kennedy Middle School,03470405, 94.5, 9.1, 28.2, 15.6, 10.5 4.226666666666667,4.23,a-vale-i2,2020-21,Woburn-Mary D Altavesta,03470065, 95.1, 7.6, 26.2, 14.8, 0.0 4.208888888888889,4.21,a-vale-i2,2020-21,Woburn-Malcolm White,03470055, 94.7, 8.5, 28.2, 17.5, 6.9 -4.195555555555556,4.2,a-vale-i2,2020-21,Woburn-Daniel L Joyce Middle School,03470410, 94.4, 9.3, 32.5, 18.5, 10.6 -4.195555555555556,4.2,a-vale-i2,2020-21,Woburn-Goodyear Elementary School,03470005, 94.4, 9.1, 27.9, 19.9, 6.0 -4.2844444444444445,4.28,a-vale-i2,2020-21,Woburn-Hurld-Wyman Elementary School,03470020, 96.4, 5.9, 17.1, 7.7, 4.0 3.7422222222222223,3.74,a-vale-i2,2020-21,Woburn-Woburn High,03470505, 84.2, 26.2, 69.1, 50.6, 16.7 -4.213333333333333,4.21,a-vale-i2,2020-21,Woburn-Shamrock,03470043, 94.8, 8.3, 29.4, 16.9, 15.5 4.2844444444444445,4.28,a-vale-i2,2020-21,Woburn-Clyde Reeves,03470040, 96.4, 5.8, 17.0, 8.4, 5.2 4.275555555555556,4.28,a-vale-i2,2020-21,Woburn-Linscott-Rumford,03470025, 96.2, 6.1, 18.6, 10.1, 0.0 +4.2844444444444445,4.28,a-vale-i2,2020-21,Woburn-Hurld-Wyman Elementary School,03470020, 96.4, 5.9, 17.1, 7.7, 4.0 +4.195555555555556,4.2,a-vale-i2,2020-21,Woburn-Goodyear Elementary School,03470005, 94.4, 9.1, 27.9, 19.9, 6.0 +4.213333333333333,4.21,a-vale-i2,2020-21,Woburn-Shamrock,03470043, 94.8, 8.3, 29.4, 16.9, 15.5 +4.2844444444444445,4.28,a-vale-i2,2020-21,Worcester-Burncoat Middle School,03480405, 96.4, 6.0, 19.2, 10.3, 18.9 +4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Forest Grove Middle,03480415, 96.1, 6.4, 19.6, 12.9, 19.6 +4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Worcester East Middle,03480420, 93.9, 10.1, 26.5, 19.0, 26.5 +4.266666666666667,4.27,a-vale-i2,2020-21,Worcester-Sullivan Middle,03480423, 96.0, 6.6, 22.0, 13.1, 21.9 +4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Burncoat Senior High,03480503, 93.9, 10.0, 30.4, 21.1, 30.1 +4.204444444444444,4.2,a-vale-i2,2020-21,Worcester-Doherty Memorial High,03480512, 94.6, 8.9, 26.7, 15.8, 24.7 +4.1288888888888895,4.13,a-vale-i2,2020-21,Worcester-North High,03480515, 92.9, 11.5, 32.1, 22.1, 30.6 +4.1866666666666665,4.19,a-vale-i2,2020-21,Worcester-South High Community,03480520, 94.2, 9.4, 27.8, 19.5, 26.7 +4.3244444444444445,4.32,a-vale-i2,2020-21,Worcester-Worcester Technical High,03480605, 97.3, 4.5, 13.3, 5.6, 12.1 +4.297777777777778,4.3,a-vale-i2,2020-21,Worcester-Chandler Magnet,03480052, 96.7, 5.4, 18.2, 11.6, 17.8 +4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-City View,03480053, 93.9, 9.9, 30.4, 19.3, 30.0 +4.1866666666666665,4.19,a-vale-i2,2020-21,Worcester-Clark St Community,03480055, 94.2, 9.6, 34.4, 20.3, 31.5 +4.1466666666666665,4.15,a-vale-i2,2020-21,Worcester-Columbus Park,03480060, 93.3, 11.0, 32.1, 21.9, 32.1 +4.377777777777778,4.38,a-vale-i2,2020-21,Worcester-Flagg Street,03480090, 98.5, 2.4, 4.9, 2.9, 4.9 +4.1288888888888895,4.13,a-vale-i2,2020-21,Worcester-Elm Park Community,03480095, 92.9, 11.6, 38.4, 26.4, 37.4 +4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Goddard School/Science Technical,03480100, 96.1, 6.3, 21.0, 14.2, 21.0 +4.222222222222222,4.22,a-vale-i2,2020-21,Worcester-Gates Lane,03480110, 95.0, 8.0, 23.6, 16.1, 23.6 +4.075555555555556,4.08,a-vale-i2,2020-21,Worcester-Claremont Academy,03480350, 91.7, 13.4, 36.3, 27.3, 35.7 +4.253333333333334,4.25,a-vale-i2,2020-21,Worcester-University Pk Campus School,03480285, 95.7, 7.2, 22.6, 13.5, 21.3 +4.2,4.2,a-vale-i2,2020-21,Worcester-Vernon Hill School,03480280, 94.5, 9.0, 29.5, 18.2, 28.3 +4.302222222222222,4.3,a-vale-i2,2020-21,Worcester-West Tatnuck,03480260, 96.8, 5.3, 15.5, 7.6, 15.2 +4.182222222222222,4.18,a-vale-i2,2020-21,Worcester-Union Hill School,03480240, 94.1, 9.6, 33.5, 21.8, 33.3 +4.346666666666667,4.35,a-vale-i2,2020-21,Worcester-Thorndyke Road,03480235, 97.8, 3.6, 10.1, 5.6, 10.1 +4.355555555555555,4.36,a-vale-i2,2020-21,Worcester-Tatnuck,03480230, 98.0, 3.3, 9.9, 6.2, 9.9 +4.333333333333333,4.33,a-vale-i2,2020-21,Worcester-Worcester Arts Magnet School,03480225, 97.5, 4.1, 11.3, 7.5, 11.3 +4.235555555555555,4.24,a-vale-i2,2020-21,Worcester-Quinsigamond,03480210, 95.3, 7.7, 22.6, 15.2, 22.6 +4.266666666666667,4.27,a-vale-i2,2020-21,Worcester-Rice Square,03480215, 96.0, 6.4, 21.5, 12.3, 21.5 +4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Roosevelt,03480220, 96.1, 6.4, 20.3, 12.9, 20.3 +4.408888888888889,4.41,a-vale-i2,2020-21,Worcester-Head Start,03480002, 99.2, 1.3, 5.5, 6.3, 5.5 +4.195555555555556,4.2,a-vale-i2,2020-21,Worcester-Belmont Street Community,03480020, 94.4, 9.1, 27.6, 17.3, 25.2 +4.2844444444444445,4.28,a-vale-i2,2020-21,Worcester-Wawecus Road School,03480026, 96.4, 5.8, 18.8, 8.3, 18.8 +4.231111111111111,4.23,a-vale-i2,2020-21,Worcester-Woodland Academy,03480030, 95.2, 8.0, 26.5, 17.5, 26.3 +4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Burncoat Street,03480035, 93.9, 10.1, 29.0, 19.8, 29.0 +4.248888888888889,4.25,a-vale-i2,2020-21,Worcester-Canterbury,03480045, 95.6, 7.1, 22.8, 13.7, 22.5 +4.306666666666667,4.31,a-vale-i2,2020-21,Worcester-Chandler Elementary Community,03480050, 96.9, 5.2, 20.4, 11.7, 20.0 4.226666666666667,4.23,a-vale-i2,2020-21,Worcester-Grafton Street,03480115, 95.1, 7.8, 25.1, 16.8, 24.1 4.333333333333333,4.33,a-vale-i2,2020-21,Worcester-Heard Street,03480136, 97.5, 3.9, 12.2, 8.0, 11.8 4.351111111111111,4.35,a-vale-i2,2020-21,Worcester-Jacob Hiatt Magnet,03480140, 97.9, 3.5, 10.5, 6.1, 10.5 @@ -12840,41 +12875,6 @@ NA,NA,a-vale-i1,2017-18,Gosnold-Cuttyhunk Elementary,01090005,"","","","","" 4.391111111111111,4.39,a-vale-i2,2020-21,Worcester-Midland Street,03480185, 98.8, 2.0, 4.8, 3.8, 4.8 4.2444444444444445,4.24,a-vale-i2,2020-21,Worcester-Nelson Place,03480200, 95.5, 7.5, 18.4, 12.0, 18.4 4.217777777777778,4.22,a-vale-i2,2020-21,Worcester-Norrback Avenue,03480202, 94.9, 8.3, 21.0, 14.5, 21.0 -4.235555555555555,4.24,a-vale-i2,2020-21,Worcester-Quinsigamond,03480210, 95.3, 7.7, 22.6, 15.2, 22.6 -4.266666666666667,4.27,a-vale-i2,2020-21,Worcester-Rice Square,03480215, 96.0, 6.4, 21.5, 12.3, 21.5 -4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Roosevelt,03480220, 96.1, 6.4, 20.3, 12.9, 20.3 -4.333333333333333,4.33,a-vale-i2,2020-21,Worcester-Worcester Arts Magnet School,03480225, 97.5, 4.1, 11.3, 7.5, 11.3 -4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Worcester East Middle,03480420, 93.9, 10.1, 26.5, 19.0, 26.5 -4.266666666666667,4.27,a-vale-i2,2020-21,Worcester-Sullivan Middle,03480423, 96.0, 6.6, 22.0, 13.1, 21.9 -4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Burncoat Senior High,03480503, 93.9, 10.0, 30.4, 21.1, 30.1 -4.204444444444444,4.2,a-vale-i2,2020-21,Worcester-Doherty Memorial High,03480512, 94.6, 8.9, 26.7, 15.8, 24.7 -4.1288888888888895,4.13,a-vale-i2,2020-21,Worcester-North High,03480515, 92.9, 11.5, 32.1, 22.1, 30.6 -4.1866666666666665,4.19,a-vale-i2,2020-21,Worcester-South High Community,03480520, 94.2, 9.4, 27.8, 19.5, 26.7 -4.3244444444444445,4.32,a-vale-i2,2020-21,Worcester-Worcester Technical High,03480605, 97.3, 4.5, 13.3, 5.6, 12.1 -4.408888888888889,4.41,a-vale-i2,2020-21,Worcester-Head Start,03480002, 99.2, 1.3, 5.5, 6.3, 5.5 -4.195555555555556,4.2,a-vale-i2,2020-21,Worcester-Belmont Street Community,03480020, 94.4, 9.1, 27.6, 17.3, 25.2 -4.2844444444444445,4.28,a-vale-i2,2020-21,Worcester-Wawecus Road School,03480026, 96.4, 5.8, 18.8, 8.3, 18.8 -4.231111111111111,4.23,a-vale-i2,2020-21,Worcester-Woodland Academy,03480030, 95.2, 8.0, 26.5, 17.5, 26.3 -4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-Burncoat Street,03480035, 93.9, 10.1, 29.0, 19.8, 29.0 -4.248888888888889,4.25,a-vale-i2,2020-21,Worcester-Canterbury,03480045, 95.6, 7.1, 22.8, 13.7, 22.5 -4.306666666666667,4.31,a-vale-i2,2020-21,Worcester-Chandler Elementary Community,03480050, 96.9, 5.2, 20.4, 11.7, 20.0 -4.297777777777778,4.3,a-vale-i2,2020-21,Worcester-Chandler Magnet,03480052, 96.7, 5.4, 18.2, 11.6, 17.8 -4.173333333333334,4.17,a-vale-i2,2020-21,Worcester-City View,03480053, 93.9, 9.9, 30.4, 19.3, 30.0 -4.1866666666666665,4.19,a-vale-i2,2020-21,Worcester-Clark St Community,03480055, 94.2, 9.6, 34.4, 20.3, 31.5 -4.1466666666666665,4.15,a-vale-i2,2020-21,Worcester-Columbus Park,03480060, 93.3, 11.0, 32.1, 21.9, 32.1 -4.377777777777778,4.38,a-vale-i2,2020-21,Worcester-Flagg Street,03480090, 98.5, 2.4, 4.9, 2.9, 4.9 -4.1288888888888895,4.13,a-vale-i2,2020-21,Worcester-Elm Park Community,03480095, 92.9, 11.6, 38.4, 26.4, 37.4 -4.222222222222222,4.22,a-vale-i2,2020-21,Worcester-Gates Lane,03480110, 95.0, 8.0, 23.6, 16.1, 23.6 -4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Goddard School/Science Technical,03480100, 96.1, 6.3, 21.0, 14.2, 21.0 -4.271111111111111,4.27,a-vale-i2,2020-21,Worcester-Forest Grove Middle,03480415, 96.1, 6.4, 19.6, 12.9, 19.6 -4.2844444444444445,4.28,a-vale-i2,2020-21,Worcester-Burncoat Middle School,03480405, 96.4, 6.0, 19.2, 10.3, 18.9 -4.075555555555556,4.08,a-vale-i2,2020-21,Worcester-Claremont Academy,03480350, 91.7, 13.4, 36.3, 27.3, 35.7 -4.253333333333334,4.25,a-vale-i2,2020-21,Worcester-University Pk Campus School,03480285, 95.7, 7.2, 22.6, 13.5, 21.3 -4.2,4.2,a-vale-i2,2020-21,Worcester-Vernon Hill School,03480280, 94.5, 9.0, 29.5, 18.2, 28.3 -4.302222222222222,4.3,a-vale-i2,2020-21,Worcester-West Tatnuck,03480260, 96.8, 5.3, 15.5, 7.6, 15.2 -4.182222222222222,4.18,a-vale-i2,2020-21,Worcester-Union Hill School,03480240, 94.1, 9.6, 33.5, 21.8, 33.3 -4.355555555555555,4.36,a-vale-i2,2020-21,Worcester-Tatnuck,03480230, 98.0, 3.3, 9.9, 6.2, 9.9 -4.346666666666667,4.35,a-vale-i2,2020-21,Worcester-Thorndyke Road,03480235, 97.8, 3.6, 10.1, 5.6, 10.1 4.2444444444444445,4.24,a-vale-i2,2020-21,Worthington-R. H. Conwell,03490010, 95.5, 7.4, 25.4, 7.9, 0.0 4.333333333333333,4.33,a-vale-i2,2020-21,Wrentham-Charles E Roderick,03500010, 97.5, 4.2, 10.2, 3.7, 0.3 4.342222222222222,4.34,a-vale-i2,2020-21,Wrentham-Delaney,03500003, 97.7, 3.6, 8.7, 4.1, 0.8 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3A_1_average_class_size.csv b/data/admin_data/dese/3A_1_average_class_size.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/3A_1_average_class_size.csv rename to data/admin_data/dese/3A_1_average_class_size.csv index 61f24e7..5f29035 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/3A_1_average_class_size.csv +++ b/data/admin_data/dese/3A_1_average_class_size.csv @@ -1,4 +1,1836 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Total # of Classes,Average Class Size,Number of Students,Female %,Male %,English Language Learner %,Students with Disabilities %,Economically Disadvantaged % +4.2,4.2,a-reso-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 735, 19.0," 1,418", 53.6, 46.4, 18.8, 12.1,57 +2.94,2.94,a-reso-i1,2022-23,Abington - Abington Early Education Program,00010001, 16, 25.3, 101, 36.6, 63.4, 13.9, 40.6,36.6 +4.88,4.88,a-reso-i1,2022-23,Abington - Abington High,00010505, 278, 15.6, 563, 48.0, 51.9, 10.0, 12.3,36.2 +3.72,3.72,a-reso-i1,2022-23,Abington - Abington Middle School,00010405, 379, 21.4, 663, 49.0, 50.5, 8.5, 18.7,34.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 234, 20.4, 530, 50.9, 49.1, 17.0, 15.3,37 +3.0799999999999996,3.08,a-reso-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 126, 24.6, 343, 47.2, 52.5, 13.4, 19.5,35.9 +4.42,4.42,a-reso-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 215, 17.9, 468, 49.2, 50.9, 9.6, 24.4,58.8 +4.38,4.38,a-reso-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 695, 18.1," 1,691", 47.5, 51.9, 1.2, 12.3,10.1 +3.8200000000000003,3.82,a-reso-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 172, 20.9, 505, 49.1, 50.7, 9.3, 17.2,10.3 +3.8,3.8,a-reso-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 130, 21.0, 385, 46.5, 53.5, 6.0, 15.1,16.4 +6.12,5,a-reso-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 14, 9.4, 119, 37.8, 62.2, 28.6, 48.7,21.9 +3.7399999999999998,3.74,a-reso-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 137, 21.3, 408, 48.5, 51.5, 12.0, 16.9,10.1 +3.7399999999999998,3.74,a-reso-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 150, 21.3, 453, 48.1, 51.7, 6.8, 18.8,13.9 +3.6,3.6,a-reso-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 144, 22.0, 445, 49.7, 49.9, 8.1, 16.2,10.8 +4.0200000000000005,4.02,a-reso-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 124, 19.9, 346, 50.0, 50.0, 9.0, 11.9,12.4 +3.96,3.96,a-reso-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 560, 20.2, 835, 47.0, 52.8, 3.2, 15.3,11 +4.4,4.4,a-reso-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 294, 18.0, 552, 44.9, 55.1, 0.2, 18.1,35.7 +4.66,4.66,a-reso-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 220, 16.7, 408, 51.2, 48.5, 0.3, 12.8,29.4 +4.36,4.36,a-reso-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 504, 18.2, 957, 45.1, 54.1, 1.6, 7.6,16.1 +6.0,5,a-reso-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 16, 10.0, 156, 38.5, 61.5, 10.9, 44.2,41 +5.08,5,a-reso-i1,2022-23,Agawam - Agawam High,00050505, 550, 14.6," 1,052", 47.6, 51.3, 3.2, 16.6,35.6 +5.76,5,a-reso-i1,2022-23,Agawam - Agawam Junior High,00050405, 545, 11.2, 537, 44.0, 55.9, 4.8, 19.2,42.5 +3.9,3.9,a-reso-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 159, 20.5, 311, 47.0, 53.1, 8.0, 17.4,46.3 +4.04,4.04,a-reso-i1,2022-23,Agawam - Clifford M Granger,00050010, 181, 19.8, 338, 50.0, 50.0, 9.2, 16.3,36.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,Agawam - James Clark School,00050030, 159, 20.9, 314, 47.5, 52.6, 11.2, 16.9,45.5 +4.08,4.08,a-reso-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 275, 19.6, 533, 50.1, 49.9, 5.3, 16.3,42.8 +4.16,4.16,a-reso-i1,2022-23,Agawam - Robinson Park,00050025, 159, 19.2, 289, 52.9, 47.1, 20.4, 12.5,56.1 +3.54,3.54,a-reso-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 322, 22.3," 1,036", 53.6, 46.4, 29.4, 20.3,74.3 +3.9,3.9,a-reso-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 134, 20.5, 344, 48.6, 51.5, 0.9, 24.4,32.6 +5.5,5,a-reso-i1,2022-23,Amesbury - Amesbury High,00070505, 409, 12.5, 459, 49.7, 50.3, 1.5, 19.4,28.3 +6.24,5,a-reso-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 64, 8.8, 54, 51.9, 48.2, 0.0, 48.2,81.5 +4.82,4.82,a-reso-i1,2022-23,Amesbury - Amesbury Middle,00070013, 332, 15.9, 588, 44.6, 55.4, 1.5, 23.5,34.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 161, 20.1, 394, 49.0, 51.0, 7.4, 28.7,35.3 +4.74,4.74,a-reso-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 110, 16.3, 346, 51.5, 46.8, 16.8, 25.1,32.4 +4.2,4.2,a-reso-i1,2022-23,Amherst - Fort River Elementary,00080020, 120, 19.0, 378, 44.4, 55.3, 12.2, 25.1,34.7 +4.4399999999999995,4.44,a-reso-i1,2022-23,Amherst - Wildwood Elementary,00080050, 106, 17.8, 316, 52.5, 46.8, 14.6, 23.7,42.4 +5.46,5,a-reso-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 685, 12.7, 874, 47.3, 51.1, 7.4, 25.3,30 +5.16,5,a-reso-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 301, 14.2, 384, 43.5, 55.2, 7.8, 22.9,30.2 +4.96,4.96,a-reso-i1,2022-23,Andover - Andover High,00090505, 980, 15.2," 1,700", 51.2, 48.7, 1.5, 15.8,13.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Andover - Andover West Middle,00090310, 328, 17.2, 524, 51.5, 47.9, 2.9, 20.4,13.4 +3.8,3.8,a-reso-i1,2022-23,Andover - Bancroft Elementary,00090003, 182, 21.0, 547, 50.6, 49.2, 2.6, 21.4,8.4 +4.68,4.68,a-reso-i1,2022-23,Andover - Doherty Middle,00090305, 298, 16.6, 464, 49.4, 50.4, 0.2, 16.8,9.1 +4.14,4.14,a-reso-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 126, 19.3, 347, 45.8, 54.2, 10.1, 8.9,11.8 +3.7,3.7,a-reso-i1,2022-23,Andover - High Plain Elementary,00090004, 175, 21.5, 537, 49.4, 50.7, 11.2, 16.6,12.5 +5.9399999999999995,5,a-reso-i1,2022-23,Andover - Shawsheen School,00090005, 12, 10.3, 124, 35.5, 64.5, 0.8, 57.3,25 +4.04,4.04,a-reso-i1,2022-23,Andover - South Elementary,00090020, 161, 19.8, 455, 45.3, 54.7, 1.3, 14.1,5.3 +4.0,4.0,a-reso-i1,2022-23,Andover - West Elementary,00090025, 196, 20.0, 560, 46.3, 53.8, 5.5, 27.1,13.6 +4.88,4.88,a-reso-i1,2022-23,Andover - Wood Hill Middle School,00090350, 227, 15.6, 346, 46.0, 54.1, 2.0, 17.3,12.4 +4.76,4.76,a-reso-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 360, 16.2, 543, 44.6, 55.4, 22.1, 25.1,74.2 +5.24,5,a-reso-i1,2022-23,Arlington - Arlington High,00100505, 997, 13.8," 1,540", 50.4, 47.6, 1.7, 13.5,11.1 +4.26,4.26,a-reso-i1,2022-23,Arlington - Brackett,00100010, 162, 18.7, 420, 46.7, 53.3, 5.2, 16.0,3.3 +4.32,4.32,a-reso-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 164, 18.4, 416, 51.4, 48.3, 4.3, 11.3,7.5 +4.18,4.18,a-reso-i1,2022-23,Arlington - Gibbs School,00100305, 320, 19.1, 514, 46.9, 52.7, 3.9, 19.5,11.7 +4.0200000000000005,4.02,a-reso-i1,2022-23,Arlington - Hardy,00100030, 143, 19.9, 392, 49.2, 50.5, 8.9, 19.9,12.8 +3.7399999999999998,3.74,a-reso-i1,2022-23,Arlington - John A Bishop,00100005, 136, 21.3, 397, 47.4, 52.6, 9.3, 12.6,6.1 +3.9,3.9,a-reso-i1,2022-23,Arlington - M Norcross Stratton,00100055, 156, 20.5, 443, 49.9, 49.9, 9.5, 17.2,10.4 +5.14,5,a-reso-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7, 14.3, 100, 37.0, 63.0, 0.0, 51.0,20 +4.42,4.42,a-reso-i1,2022-23,Arlington - Ottoson Middle,00100410, 579, 17.9, 933, 49.0, 50.1, 3.3, 22.0,10 +3.9200000000000004,3.92,a-reso-i1,2022-23,Arlington - Peirce,00100045, 128, 20.4, 361, 46.8, 52.6, 8.0, 13.0,10.5 +3.62,3.62,a-reso-i1,2022-23,Arlington - Thompson,00100050, 170, 21.9, 515, 53.4, 46.2, 8.0, 16.5,21.8 +4.08,4.08,a-reso-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 269, 19.6, 520, 51.2, 48.9, 4.8, 22.7,28.5 +4.779999999999999,4.78,a-reso-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 105, 16.1, 199, 50.3, 49.8, 4.0, 9.1,24.6 +4.82,4.82,a-reso-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 338, 15.9, 654, 46.5, 52.0, 0.2, 16.1,22.5 +3.88,3.88,a-reso-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 332, 20.6, 540, 48.5, 50.4, 0.0, 14.1,25.2 +4.0,4.0,a-reso-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 219, 20.0, 387, 50.4, 49.6, 1.3, 19.9,21.2 +4.62,4.62,a-reso-i1,2022-23,Ashland - Ashland High,00140505, 437, 16.9, 861, 49.8, 50.1, 7.2, 14.6,23.2 +3.96,3.96,a-reso-i1,2022-23,Ashland - Ashland Middle,00140405, 386, 20.2, 700, 48.6, 51.3, 5.4, 20.0,24.3 +3.54,3.54,a-reso-i1,2022-23,Ashland - David Mindess,00140015, 305, 22.3, 652, 46.6, 53.4, 9.8, 24.2,26.1 +3.9799999999999995,3.98,a-reso-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 198, 20.1, 632, 48.4, 51.4, 13.3, 16.3,22.9 +7.0,5,a-reso-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 19, 5.0, 85, 48.2, 51.8, 21.2, 40.0,20 +4.5200000000000005,4.52,a-reso-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 604, 17.4," 1,118", 43.8, 55.2, 6.3, 24.1,41.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 211, 20.7, 589, 46.7, 53.1, 3.2, 26.7,69.3 +4.68,4.68,a-reso-i1,2022-23,Athol-Royalston - Athol High,06150505, 246, 16.6, 401, 43.9, 56.1, 2.7, 23.4,62.3 +4.1,4.1,a-reso-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 269, 19.5, 447, 47.7, 52.4, 1.1, 28.4,64.2 +4.32,4.32,a-reso-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 54, 18.4, 156, 43.0, 57.1, 0.0, 15.4,48.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 532, 20.4," 1,296", 52.7, 47.1, 18.1, 16.8,61.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 169, 18.6, 349, 47.3, 52.4, 9.7, 20.1,39.5 +5.8,5,a-reso-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 91, 11.0, 77, 45.5, 53.3, 5.2, 10.4,61 +4.279999999999999,4.28,a-reso-i1,2022-23,Attleboro - Attleboro High,00160505, 958, 18.6," 1,883", 45.5, 54.0, 4.1, 12.2,37.4 +7.0,5,a-reso-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 70, 5.0, 48, 25.0, 75.0, 0.0, 6.3,37.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 281, 21.3, 642, 50.8, 49.1, 7.3, 17.9,46.6 +5.4399999999999995,5,a-reso-i1,2022-23,Attleboro - Early Learning Center,00160008, 18, 12.8, 231, 36.8, 63.2, 0.0, 54.6,47.2 +3.6799999999999997,3.68,a-reso-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 175, 21.6, 412, 47.3, 52.7, 11.2, 14.3,43.5 +3.38,3.38,a-reso-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 180, 23.1, 462, 50.2, 49.8, 14.9, 18.6,41.8 +5.08,5,a-reso-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 272, 14.6, 443, 45.8, 54.0, 8.4, 24.2,50.8 +3.46,3.46,a-reso-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 254, 22.7, 587, 44.3, 55.5, 0.5, 15.7,35.6 +3.1799999999999997,3.18,a-reso-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 140, 24.1, 377, 49.9, 50.1, 10.3, 21.8,42.7 +3.62,3.62,a-reso-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 228, 21.9, 592, 50.2, 49.8, 3.4, 16.1,37.7 +4.5200000000000005,4.52,a-reso-i1,2022-23,Auburn - Auburn Middle,00170305, 423, 17.4, 652, 47.9, 52.2, 2.3, 12.9,27.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Auburn - Auburn Senior High,00170505, 656, 15.3, 860, 49.8, 49.8, 1.5, 11.5,28.8 +4.24,4.24,a-reso-i1,2022-23,Auburn - Bryn Mawr,00170010, 112, 18.8, 264, 44.7, 55.3, 4.2, 14.8,39.4 +4.54,4.54,a-reso-i1,2022-23,Auburn - Pakachoag School,00170025, 112, 17.3, 242, 47.9, 52.1, 1.7, 16.1,25.2 +4.38,4.38,a-reso-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 243, 18.1, 551, 48.3, 51.7, 2.5, 15.1,26.9 +5.46,5,a-reso-i1,2022-23,Avon - Avon Middle High School,00180510, 244, 12.7, 338, 48.2, 51.5, 7.1, 21.9,45.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Avon - Ralph D Butler,00180010, 107, 18.9, 398, 48.2, 51.8, 17.3, 20.6,48.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 234, 16.4, 401, 47.4, 52.1, 3.5, 15.5,30.4 +4.0600000000000005,4.06,a-reso-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 207, 19.7, 382, 46.9, 53.1, 2.9, 16.8,35.1 +4.220000000000001,4.22,a-reso-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 180, 18.9, 337, 46.3, 53.7, 5.3, 25.5,32.1 +4.08,4.08,a-reso-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 233, 19.6, 550, 46.2, 53.8, 6.7, 20.4,38.7 +4.24,4.24,a-reso-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 124, 18.8, 288, 47.9, 52.1, 45.8, 6.3,63.5 +5.4399999999999995,5,a-reso-i1,2022-23,Barnstable - Barnstable High,00200505, 871, 12.8," 1,671", 48.7, 50.9, 15.7, 15.6,53.1 +4.68,4.68,a-reso-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 597, 16.6, 684, 47.2, 52.6, 19.4, 18.6,58.6 +4.9,4.9,a-reso-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 464, 15.5, 737, 49.0, 50.8, 23.1, 17.8,55.4 +3.96,3.96,a-reso-i1,2022-23,Barnstable - Centerville Elementary,00200010, 90, 20.2, 257, 45.1, 54.5, 18.7, 19.1,47.9 +6.42,5,a-reso-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 24, 7.9, 190, 37.9, 62.1, 36.8, 49.0,56.8 +3.72,3.72,a-reso-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 112, 21.4, 336, 53.0, 47.0, 50.6, 16.7,78.9 +3.8,3.8,a-reso-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 90, 21.0, 275, 41.5, 58.6, 19.6, 16.7,44.4 +3.94,3.94,a-reso-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 131, 20.3, 394, 45.9, 54.1, 11.9, 13.2,36.8 +5.0600000000000005,5,a-reso-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 248, 14.7, 398, 44.7, 55.3, 9.1, 21.9,82.4 +5.34,5,a-reso-i1,2022-23,Bedford - Bedford High,00230505, 519, 13.3, 837, 48.8, 50.4, 1.0, 14.5,10.4 +4.9,4.9,a-reso-i1,2022-23,Bedford - John Glenn Middle,00230305, 405, 15.5, 594, 50.3, 49.7, 2.0, 17.7,14 +4.24,4.24,a-reso-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 82, 18.8, 529, 46.3, 53.7, 7.9, 20.6,11.7 +4.18,4.18,a-reso-i1,2022-23,Bedford - Lt Job Lane School,00230012, 164, 19.1, 581, 47.0, 53.0, 3.6, 20.7,12.1 +5.26,5,a-reso-i1,2022-23,Belchertown - Belchertown High,00240505, 431, 13.7, 643, 50.4, 48.5, 1.2, 17.3,20.4 +3.8,3.8,a-reso-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 191, 21.0, 484, 51.2, 48.8, 0.8, 24.0,26 +4.9799999999999995,4.98,a-reso-i1,2022-23,Belchertown - Cold Spring,00240005, 38, 15.1, 196, 46.4, 53.6, 3.1, 31.6,27.6 +5.04,5,a-reso-i1,2022-23,Belchertown - Jabish Middle School,00240025, 286, 14.8, 351, 46.4, 53.0, 1.7, 23.9,28.2 +4.32,4.32,a-reso-i1,2022-23,Belchertown - Swift River Elementary,00240018, 233, 18.4, 477, 47.2, 52.8, 5.0, 26.0,27.5 +5.82,5,a-reso-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 11, 10.9, 117, 45.3, 53.9, 0.0, 48.7,32.5 +4.5600000000000005,4.56,a-reso-i1,2022-23,Bellingham - Bellingham High School,00250505, 383, 17.2, 746, 51.1, 48.9, 2.4, 17.6,29.4 +4.14,4.14,a-reso-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 335, 19.3, 594, 47.3, 52.7, 4.6, 24.4,37.7 +4.24,4.24,a-reso-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 64, 18.8, 300, 50.7, 49.3, 7.0, 18.3,29.3 +6.36,5,a-reso-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 33, 8.2, 35, 57.1, 42.9, 0.0, 97.1,48.6 +4.2,4.2,a-reso-i1,2022-23,Bellingham - Stall Brook,00250025, 53, 19.0, 245, 49.0, 51.0, 10.2, 20.0,35.5 +3.78,3.78,a-reso-i1,2022-23,Belmont - Belmont High,00260505, 470, 21.1," 1,369", 50.0, 49.7, 2.6, 8.4,11.1 +3.72,3.72,a-reso-i1,2022-23,Belmont - Daniel Butler,00260015, 130, 21.4, 326, 47.6, 51.8, 24.9, 12.0,15 +4.04,4.04,a-reso-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 142, 19.8, 340, 51.5, 48.2, 15.0, 13.2,9.1 +3.96,3.96,a-reso-i1,2022-23,Belmont - Roger E Wellington,00260035, 207, 20.2, 568, 50.0, 49.8, 19.5, 21.7,18.5 +3.7,3.7,a-reso-i1,2022-23,Belmont - Winn Brook,00260005, 168, 21.5, 436, 54.1, 45.9, 19.5, 9.2,6 +3.94,3.94,a-reso-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 690, 20.3," 1,387", 48.7, 50.6, 5.3, 15.5,11 +3.66,3.66,a-reso-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 64, 21.7, 327, 52.6, 47.1, 6.4, 14.1,64.5 +3.28,3.28,a-reso-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 292, 23.6, 867, 50.4, 49.6, 8.5, 18.3,18.7 +4.18,4.18,a-reso-i1,2022-23,Berkley - Berkley Community School,00270010, 168, 19.1, 484, 50.6, 49.4, 1.5, 18.8,29.3 +4.54,4.54,a-reso-i1,2022-23,Berkley - Berkley Middle School,00270305, 192, 17.3, 370, 51.4, 48.7, 1.1, 18.4,23.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 182, 18.6, 375, 48.8, 48.3, 1.1, 21.3,63.2 +5.62,5,a-reso-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 342, 11.9, 483, 46.0, 53.6, 8.7, 14.3,39.3 +4.74,4.74,a-reso-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 223, 16.3, 378, 50.8, 48.9, 9.5, 20.9,50.8 +4.34,4.34,a-reso-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 278, 18.3, 334, 48.8, 49.7, 5.1, 17.1,42.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 140, 16.4, 226, 49.1, 50.4, 3.1, 20.8,20.4 +4.16,4.16,a-reso-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 182, 19.2, 340, 43.5, 56.5, 2.4, 21.2,13.2 +5.0200000000000005,5,a-reso-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 319, 14.9, 518, 52.5, 46.7, 2.7, 14.1,18.2 +4.26,4.26,a-reso-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 84, 18.7, 392, 50.8, 49.2, 6.1, 13.5,24.7 +4.42,4.42,a-reso-i1,2022-23,Beverly - Beverly High,00300505, 604, 17.9," 1,278", 49.8, 49.8, 4.2, 17.8,32.9 +3.6399999999999997,3.64,a-reso-i1,2022-23,Beverly - Beverly Middle School,00300305, 587, 21.8," 1,386", 48.6, 51.1, 3.2, 21.4,34.4 +4.84,4.84,a-reso-i1,2022-23,Beverly - Centerville Elementary,00300010, 82, 15.8, 327, 45.6, 54.4, 7.0, 23.9,40.7 +4.7,4.7,a-reso-i1,2022-23,Beverly - Cove Elementary,00300015, 103, 16.5, 426, 47.4, 52.6, 7.3, 25.8,36.9 +4.76,4.76,a-reso-i1,2022-23,Beverly - Hannah Elementary,00300033, 80, 16.2, 323, 49.9, 50.2, 5.0, 18.0,28.5 +5.7,5,a-reso-i1,2022-23,Beverly - McKeown School,00300002, 14, 11.5, 161, 34.8, 65.2, 3.7, 46.6,36 +5.12,5,a-reso-i1,2022-23,Beverly - North Beverly Elementary,00300040, 96, 14.4, 346, 41.6, 58.4, 9.3, 21.7,31.2 +4.14,4.14,a-reso-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 716, 19.3," 1,813", 48.5, 51.4, 2.4, 21.0,26.5 +3.9200000000000004,3.92,a-reso-i1,2022-23,Billerica - Frederick J Dutile,00310007, 123, 20.4, 288, 49.0, 51.0, 0.4, 23.3,23.3 +4.18,4.18,a-reso-i1,2022-23,Billerica - Hajjar Elementary,00310026, 176, 19.1, 381, 53.8, 45.9, 12.3, 17.3,37.5 +4.32,4.32,a-reso-i1,2022-23,Billerica - John F Kennedy,00310012, 150, 18.4, 313, 53.7, 46.3, 0.3, 23.0,19.5 +4.82,4.82,a-reso-i1,2022-23,Billerica - Locke Middle,00310310, 344, 15.9, 553, 48.1, 51.9, 0.0, 23.9,21.3 +4.16,4.16,a-reso-i1,2022-23,Billerica - Marshall Middle School,00310305, 316, 19.2, 614, 52.0, 48.1, 2.1, 25.4,31.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Billerica - Parker,00310015, 185, 20.1, 423, 53.7, 46.3, 1.7, 26.0,29.3 +3.9,3.9,a-reso-i1,2022-23,Billerica - Thomas Ditson,00310005, 240, 20.5, 557, 50.3, 49.7, 3.8, 19.2,25 +4.62,4.62,a-reso-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 660, 16.9," 1,221", 44.5, 54.8, 0.5, 11.8,15.6 +3.38,3.38,a-reso-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 104, 23.1, 253, 47.8, 52.2, 0.8, 18.6,37.9 +5.3,5,a-reso-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 245, 13.5, 415, 48.0, 51.1, 1.2, 14.7,29.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 263, 16.4, 356, 44.7, 54.8, 2.0, 17.4,36.2 +3.96,3.96,a-reso-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 49, 20.2, 110, 53.6, 46.4, 7.3, 14.6,46.4 +4.5,4.5,a-reso-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 151, 17.5, 388, 49.5, 50.5, 4.9, 20.4,33.5 +4.92,4.92,a-reso-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 435, 15.4, 901, 48.0, 52.1, 1.6, 26.3,39.5 +5.54,5,a-reso-i1,2022-23,Boston - Adams Elementary School,00350302, 177, 12.3, 253, 48.6, 51.4, 55.3, 24.9,80.2 +6.720000000000001,5,a-reso-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 142, 6.4, 101, 46.5, 53.5, 27.7, 17.8,38.6 +4.96,4.96,a-reso-i1,2022-23,Boston - Another Course To College,00350541, 109, 15.2, 255, 43.1, 56.5, 17.7, 32.9,77.3 +5.16,5,a-reso-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 89, 14.2, 172, 49.4, 50.6, 43.6, 21.5,55.8 +4.68,4.68,a-reso-i1,2022-23,Boston - Bates Elementary School,00350278, 149, 16.6, 282, 40.4, 59.6, 23.8, 33.0,50.7 +4.88,4.88,a-reso-i1,2022-23,Boston - Beethoven Elementary School,00350021, 149, 15.6, 280, 46.1, 53.9, 41.8, 19.3,59.6 +5.24,5,a-reso-i1,2022-23,Boston - Blackstone Elementary School,00350390, 459, 13.8, 612, 47.7, 52.3, 49.2, 27.5,89.2 +5.58,5,a-reso-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 87, 12.1, 220, 43.2, 56.8, 70.5, 12.3,82.7 +5.12,5,a-reso-i1,2022-23,Boston - Boston Arts Academy,00350546, 375, 14.4, 486, 68.9, 29.2, 6.2, 22.4,63.6 +5.8,5,a-reso-i1,2022-23,Boston - Boston Collaborative High School,00350755, 151, 11.0, 290, 47.9, 51.7, 25.9, 26.2,85.9 +5.26,5,a-reso-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 338, 13.7, 645, 50.5, 48.8, 36.1, 29.5,83.9 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 210, 14.7, 535, 38.7, 61.3, 92.0, 5.8,87.3 +3.6,3.6,a-reso-i1,2022-23,Boston - Boston Latin Academy,00350545, 531, 22.0," 1,710", 57.1, 42.6, 1.4, 4.4,44.3 +3.38,3.38,a-reso-i1,2022-23,Boston - Boston Latin School,00350560, 874, 23.1," 2,418", 52.6, 46.9, 0.8, 3.7,27.5 +4.16,4.16,a-reso-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 134, 19.2, 316, 47.8, 52.2, 17.7, 25.3,54.8 +4.46,4.46,a-reso-i1,2022-23,Boston - Bradley Elementary School,00350215, 134, 17.7, 292, 52.1, 48.0, 26.7, 23.0,62.3 +5.2,5,a-reso-i1,2022-23,Boston - Brighton High School,00350505, 338, 14.0, 710, 45.5, 54.5, 58.7, 20.9,81 +5.7,5,a-reso-i1,2022-23,Boston - Burke High School,00350525, 250, 11.5, 418, 45.2, 54.8, 25.1, 25.4,84.5 +1.6,1.6,a-reso-i1,2022-23,Boston - Carter School,00350036, 2, 32.0, 32, 46.9, 53.1, 37.5, 100.0,78.1 +5.36,5,a-reso-i1,2022-23,Boston - Channing Elementary School,00350360, 140, 13.2, 189, 40.7, 59.3, 35.5, 29.6,74.1 +5.34,5,a-reso-i1,2022-23,Boston - Charlestown High School,00350515, 447, 13.3, 840, 43.6, 56.3, 43.8, 29.3,81.7 +6.12,5,a-reso-i1,2022-23,Boston - Chittick Elementary School,00350154, 254, 9.4, 232, 44.8, 55.2, 31.5, 42.2,81.5 +5.38,5,a-reso-i1,2022-23,Boston - Clap Elementary School,00350298, 69, 13.1, 107, 44.9, 55.1, 24.3, 30.8,80.4 +6.2,5,a-reso-i1,2022-23,Boston - Community Academy,00350518, 38, 9.0, 66, 39.4, 59.1, 10.6, 51.5,87.9 +5.32,5,a-reso-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 150, 13.4, 342, 48.3, 51.8, 24.6, 42.4,86.3 +5.0200000000000005,5,a-reso-i1,2022-23,Boston - Condon K-8 School,00350146, 448, 14.9, 664, 44.1, 55.9, 39.8, 29.7,84.6 +5.74,5,a-reso-i1,2022-23,Boston - Conley Elementary School,00350122, 116, 11.3, 164, 45.1, 54.9, 29.9, 48.8,61 +4.88,4.88,a-reso-i1,2022-23,Boston - Curley K-8 School,00350020, 710, 15.6, 957, 43.4, 56.6, 26.4, 33.9,54 +4.4399999999999995,4.44,a-reso-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 244, 17.8, 591, 46.7, 53.1, 31.5, 21.7,81.7 +4.4799999999999995,4.48,a-reso-i1,2022-23,Boston - Dever Elementary School,00350268, 217, 17.6, 406, 42.6, 57.4, 51.5, 17.7,89.9 +4.62,4.62,a-reso-i1,2022-23,Boston - East Boston Early Education Center,00350009, 88, 16.9, 187, 47.1, 52.9, 54.6, 15.5,66.3 +4.82,4.82,a-reso-i1,2022-23,Boston - East Boston High School,00350530, 480, 15.9," 1,334", 43.6, 56.3, 42.4, 21.5,76.3 +5.26,5,a-reso-i1,2022-23,Boston - Edison K-8 School,00350375, 466, 13.7, 629, 45.5, 54.5, 52.9, 20.4,81.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 440, 20.1, 820, 48.1, 52.0, 6.7, 20.2,26.1 +5.34,5,a-reso-i1,2022-23,Boston - Ellis Elementary School,00350072, 279, 13.3, 352, 48.9, 51.1, 50.0, 15.6,91.2 +4.779999999999999,4.78,a-reso-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 94, 16.1, 195, 50.3, 49.7, 55.4, 33.9,80 +4.88,4.88,a-reso-i1,2022-23,Boston - English High School,00350535, 464, 15.6, 695, 45.0, 54.8, 32.1, 25.5,82 +4.46,4.46,a-reso-i1,2022-23,Boston - Everett Elementary School,00350088, 145, 17.7, 286, 51.1, 49.0, 20.3, 22.0,76.6 +5.32,5,a-reso-i1,2022-23,Boston - Excel High School,00350522, 181, 13.4, 408, 40.4, 58.8, 22.3, 29.2,83.3 +5.14,5,a-reso-i1,2022-23,Boston - Fenway High School,00350540, 168, 14.3, 372, 52.7, 47.0, 21.2, 22.9,74.7 +5.2,5,a-reso-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 249, 14.0, 377, 47.8, 52.3, 50.9, 26.8,90.2 +4.36,4.36,a-reso-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 150, 18.2, 381, 47.5, 52.0, 35.4, 23.1,78.2 +6.16,5,a-reso-i1,2022-23,Boston - Greater Egleston High School,00350543, 83, 9.2, 115, 53.0, 47.0, 13.9, 26.1,92.2 +4.86,4.86,a-reso-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 255, 15.7, 397, 50.4, 49.6, 60.7, 20.9,90.2 +4.76,4.76,a-reso-i1,2022-23,Boston - Grew Elementary School,00350135, 119, 16.2, 210, 40.5, 59.5, 14.3, 14.8,73.8 +4.9799999999999995,4.98,a-reso-i1,2022-23,Boston - Guild Elementary School,00350062, 147, 15.1, 259, 47.9, 52.1, 65.6, 27.8,77.6 +4.279999999999999,4.28,a-reso-i1,2022-23,Boston - Hale Elementary School,00350243, 94, 18.6, 176, 50.6, 49.4, 12.5, 16.5,59.1 +3.94,3.94,a-reso-i1,2022-23,Boston - Haley Pilot School,00350077, 207, 20.3, 386, 48.2, 51.8, 19.2, 38.9,62.2 +5.14,5,a-reso-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 216, 14.3, 369, 45.0, 55.0, 27.1, 31.7,64.8 +4.42,4.42,a-reso-i1,2022-23,Boston - Haynes Early Education Center,00350010, 128, 17.9, 218, 50.9, 49.1, 49.1, 23.9,80.7 +3.8600000000000003,3.86,a-reso-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 72, 20.7, 207, 46.9, 53.1, 25.1, 28.5,65.2 +4.26,4.26,a-reso-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 330, 18.7, 712, 47.1, 52.7, 14.8, 35.0,76.3 +4.96,4.96,a-reso-i1,2022-23,Boston - Hennigan K-8 School,00350153, 471, 15.2, 567, 48.2, 51.9, 48.7, 22.1,87.5 +3.6399999999999997,3.64,a-reso-i1,2022-23,Boston - Hernandez K-8 School,00350691, 222, 21.8, 427, 52.7, 47.3, 46.8, 14.8,67.9 +5.54,5,a-reso-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 86, 12.3, 130, 45.4, 54.6, 62.3, 46.9,90 +5.720000000000001,5,a-reso-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 144, 11.4, 192, 42.2, 57.8, 28.7, 40.1,93.2 +5.04,5,a-reso-i1,2022-23,Boston - Holmes Elementary School,00350138, 189, 14.8, 294, 40.5, 59.5, 21.4, 35.7,91.8 +7.140000000000001,5,a-reso-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 177, 4.3, 73, 30.1, 69.9, 60.3, 98.6,80.8 +3.94,3.94,a-reso-i1,2022-23,Boston - Hurley K-8 School,00350182, 158, 20.3, 363, 53.7, 46.0, 36.1, 18.2,63.4 +4.6,4.6,a-reso-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 210, 17.0, 402, 50.0, 50.0, 34.6, 19.4,70.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 151, 17.2, 274, 45.3, 54.7, 65.0, 20.8,85.8 +4.54,4.54,a-reso-i1,2022-23,Boston - Kenny Elementary School,00350328, 181, 17.3, 347, 44.7, 55.0, 22.8, 30.3,59.7 +5.12,5,a-reso-i1,2022-23,Boston - Kilmer K-8 School,00350190, 236, 14.4, 399, 44.9, 54.9, 13.8, 32.3,44.4 +5.38,5,a-reso-i1,2022-23,Boston - King Elementary School,00350376, 303, 13.1, 468, 44.2, 55.8, 37.2, 41.2,91.5 +4.86,4.86,a-reso-i1,2022-23,Boston - Lee Academy,00350001, 89, 15.7, 205, 44.9, 55.1, 33.7, 33.7,77.1 +5.46,5,a-reso-i1,2022-23,Boston - Lee K-8 School,00350183, 398, 12.7, 563, 41.2, 58.8, 26.1, 46.2,85.8 +4.84,4.84,a-reso-i1,2022-23,Boston - Lyndon K-8 School,00350262, 337, 15.8, 578, 49.0, 51.0, 8.3, 16.3,29.9 +5.5,5,a-reso-i1,2022-23,Boston - Lyon High School,00350655, 68, 12.5, 114, 40.4, 58.8, 13.2, 41.2,72.8 +5.4799999999999995,5,a-reso-i1,2022-23,Boston - Lyon K-8 School,00350004, 101, 12.6, 139, 46.8, 53.2, 23.0, 33.8,69.8 +4.86,4.86,a-reso-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 488, 15.7," 1,122", 40.1, 59.7, 30.7, 36.8,83.8 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston - Manning Elementary School,00350184, 88, 20.1, 165, 52.7, 47.3, 5.5, 30.3,22.4 +4.24,4.24,a-reso-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 130, 18.8, 301, 55.2, 44.9, 48.8, 11.6,89.4 +4.62,4.62,a-reso-i1,2022-23,Boston - Mario Umana Academy,00350656, 411, 16.9, 621, 46.4, 53.6, 71.0, 16.4,83.9 +5.18,5,a-reso-i1,2022-23,Boston - Mason Elementary School,00350304, 123, 14.1, 196, 46.9, 52.6, 29.1, 32.1,82.7 +4.64,4.64,a-reso-i1,2022-23,Boston - Mather Elementary School,00350227, 314, 16.8, 492, 50.8, 49.2, 34.6, 18.3,74.6 +5.92,5,a-reso-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 10.4, 489, 38.2, 61.8, 37.6, 34.2,81.6 +4.18,4.18,a-reso-i1,2022-23,Boston - McKay K-8 School,00350080, 324, 19.1, 681, 49.2, 50.8, 45.1, 21.6,77.2 +6.840000000000001,5,a-reso-i1,2022-23,Boston - McKinley Schools,00350363, 289, 5.8, 167, 26.4, 73.7, 20.4, 100.0,91.6 +4.16,4.16,a-reso-i1,2022-23,Boston - Mendell Elementary School,00350100, 143, 19.2, 321, 48.0, 52.0, 17.8, 24.3,57.3 +4.76,4.76,a-reso-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 331, 16.2, 669, 46.8, 53.2, 28.3, 22.9,84.6 +4.14,4.14,a-reso-i1,2022-23,Boston - Mozart Elementary School,00350237, 79, 19.3, 177, 40.7, 59.3, 14.7, 27.1,36.7 +4.3,4.3,a-reso-i1,2022-23,Boston - Murphy K-8 School,00350240, 442, 18.5, 872, 47.1, 52.8, 29.4, 21.2,68 +4.46,4.46,a-reso-i1,2022-23,Boston - New Mission High School,00350542, 270, 17.7, 621, 49.1, 50.7, 21.1, 18.8,71.3 +3.4200000000000004,3.42,a-reso-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 442, 22.9," 1,547", 51.8, 47.8, 1.7, 4.5,59.3 +4.1,4.1,a-reso-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 134, 19.5, 297, 52.9, 47.1, 65.7, 11.5,86.2 +4.8,4.8,a-reso-i1,2022-23,Boston - Ohrenberger School,00350258, 344, 16.0, 487, 46.8, 53.2, 33.7, 22.2,68.8 +4.86,4.86,a-reso-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 408, 15.7, 738, 47.8, 52.2, 50.8, 24.0,86.5 +4.04,4.04,a-reso-i1,2022-23,Boston - Otis Elementary School,00350156, 222, 19.8, 415, 50.1, 49.9, 52.5, 11.1,74 +5.24,5,a-reso-i1,2022-23,Boston - Perkins Elementary School,00350231, 93, 13.8, 158, 50.0, 50.0, 35.4, 37.3,91.1 +5.62,5,a-reso-i1,2022-23,Boston - Perry Elementary School,00350255, 134, 11.9, 186, 46.8, 53.2, 11.3, 31.7,35 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - Philbrick Elementary School,00350172, 79, 14.7, 119, 52.1, 47.9, 16.8, 16.0,64.7 +4.66,4.66,a-reso-i1,2022-23,Boston - Quincy Elementary School,00350286, 544, 16.7, 759, 52.2, 47.8, 37.0, 16.7,57.7 +3.6,3.6,a-reso-i1,2022-23,Boston - Quincy Upper School,00350565, 210, 22.0, 547, 48.1, 51.7, 17.6, 19.4,70.6 +4.54,4.54,a-reso-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 159, 17.3, 362, 47.0, 53.0, 16.6, 29.6,66.9 +4.18,4.18,a-reso-i1,2022-23,Boston - Russell Elementary School,00350366, 168, 19.1, 384, 49.0, 51.0, 49.0, 9.1,80.2 +4.9799999999999995,4.98,a-reso-i1,2022-23,Boston - Shaw Elementary School,00350014, 99, 15.1, 182, 51.1, 48.9, 29.1, 15.9,89.6 +4.58,4.58,a-reso-i1,2022-23,Boston - Snowden International High School,00350690, 182, 17.1, 470, 49.6, 50.4, 18.3, 23.0,79.4 +4.86,4.86,a-reso-i1,2022-23,Boston - Sumner Elementary School,00350052, 370, 15.7, 553, 48.1, 51.9, 37.4, 21.7,63.8 +5.6,5,a-reso-i1,2022-23,Boston - Taylor Elementary School,00350054, 316, 12.0, 389, 46.0, 54.0, 50.9, 18.5,90.5 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - TechBoston Academy,00350657, 444, 14.7, 926, 44.8, 55.2, 23.8, 24.1,84 +4.36,4.36,a-reso-i1,2022-23,Boston - Tobin K-8 School,00350229, 243, 18.2, 423, 48.0, 52.0, 31.0, 19.2,88.9 +5.34,5,a-reso-i1,2022-23,Boston - Trotter Elementary School,00350370, 228, 13.3, 319, 46.7, 53.3, 20.4, 31.4,89 +5.9399999999999995,5,a-reso-i1,2022-23,Boston - Tynan Elementary School,00350181, 187, 10.3, 201, 38.8, 61.2, 29.9, 53.2,83.1 +4.14,4.14,a-reso-i1,2022-23,Boston - UP Academy Holland,00350167, 247, 19.3, 621, 50.4, 49.6, 32.7, 18.2,89.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 249, 18.6, 527, 45.9, 54.1, 13.1, 22.8,41.2 +5.04,5,a-reso-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 59, 14.8, 106, 46.2, 53.8, 56.6, 28.3,71.7 +3.88,3.88,a-reso-i1,2022-23,Boston - Winship Elementary School,00350374, 149, 20.6, 339, 51.9, 48.1, 27.4, 12.7,60.5 +4.62,4.62,a-reso-i1,2022-23,Boston - Winthrop Elementary School,00350180, 127, 16.9, 234, 54.3, 45.7, 26.5, 15.0,91 +4.9399999999999995,4.94,a-reso-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 354, 15.3, 527, 44.6, 55.4, 36.1, 24.9,89 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 315, 20.1, 713, 47.8, 51.9, 5.5, 18.8,44 +5.46,5,a-reso-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 470, 12.7, 400, 53.0, 46.3, 14.0, 43.3,75.8 +4.76,4.76,a-reso-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 227, 16.2, 473, 50.3, 49.7, 12.7, 31.5,77.4 +4.4,4.4,a-reso-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 274, 18.0, 693, 49.8, 50.2, 18.0, 20.4,67.5 +3.8,3.8,a-reso-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 286, 21.0, 948, 53.4, 46.6, 13.9, 12.6,69.4 +5.26,5,a-reso-i1,2022-23,Bourne - Bourne High School,00360505, 224, 13.7, 355, 53.5, 46.5, 1.4, 17.8,31.3 +4.2,4.2,a-reso-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 260, 19.0, 381, 52.0, 48.0, 1.8, 22.6,40.4 +4.82,4.82,a-reso-i1,2022-23,Bourne - Bourne Middle School,00360325, 325, 15.9, 444, 50.2, 49.8, 0.9, 20.1,37.6 +4.58,4.58,a-reso-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 249, 17.1, 416, 46.4, 53.6, 2.6, 25.2,35.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Boxford - Harry Lee Cole,00380005, 126, 15.3, 354, 47.5, 52.5, 1.4, 19.2,7.6 +4.58,4.58,a-reso-i1,2022-23,Boxford - Spofford Pond,00380013, 187, 17.1, 385, 47.8, 52.2, 0.8, 23.6,10.9 +5.36,5,a-reso-i1,2022-23,Braintree - Archie T Morrison,00400033, 211, 13.2, 302, 54.3, 45.7, 14.9, 25.2,37.4 +4.74,4.74,a-reso-i1,2022-23,Braintree - Braintree High,00400505, 847, 16.3," 1,755", 48.8, 50.9, 5.0, 25.0,27.1 +4.58,4.58,a-reso-i1,2022-23,Braintree - Donald Ross,00400050, 111, 17.1, 205, 57.1, 42.9, 19.5, 20.5,41 +4.6,4.6,a-reso-i1,2022-23,Braintree - East Middle School,00400305, 523, 17.0, 989, 46.8, 53.1, 5.4, 24.7,34.3 +4.0600000000000005,4.06,a-reso-i1,2022-23,Braintree - Highlands,00400015, 190, 19.7, 412, 47.3, 52.7, 8.0, 18.0,20.2 +5.34,5,a-reso-i1,2022-23,Braintree - Hollis,00400005, 231, 13.3, 332, 46.4, 53.3, 15.4, 25.3,30.7 +4.2,4.2,a-reso-i1,2022-23,Braintree - Liberty,00400025, 173, 19.0, 360, 44.4, 55.6, 9.4, 15.8,16.4 +4.36,4.36,a-reso-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 134, 18.2, 296, 44.9, 55.1, 12.2, 26.4,25 +4.5200000000000005,4.52,a-reso-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 100, 17.4, 201, 44.8, 55.2, 14.4, 14.4,30.4 +4.86,4.86,a-reso-i1,2022-23,Braintree - South Middle School,00400310, 301, 15.7, 520, 51.2, 48.7, 2.5, 17.3,21.5 +4.3,4.3,a-reso-i1,2022-23,Brewster - Eddy Elementary,00410010, 123, 18.5, 202, 49.0, 51.0, 3.0, 27.2,43.1 +4.74,4.74,a-reso-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 143, 16.3, 234, 54.7, 45.3, 4.7, 22.2,36.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 103, 17.4, 334, 53.0, 47.0, 25.8, 22.2,74.6 +3.6799999999999997,3.68,a-reso-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 285, 21.6, 765, 48.6, 51.4, 2.6, 18.7,27.8 +4.7,4.7,a-reso-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 576, 16.5," 1,388", 48.4, 51.5, 2.0, 14.8,27 +3.7,3.7,a-reso-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 166, 21.5, 498, 47.0, 53.0, 2.6, 18.1,25.7 +3.16,3.16,a-reso-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 104, 24.2, 357, 47.9, 52.1, 5.6, 14.9,28.3 +3.9,3.9,a-reso-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 290, 20.5," 1,004", 48.1, 51.9, 3.7, 27.4,26.4 +3.1799999999999997,3.18,a-reso-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 247, 24.1, 732, 49.9, 50.1, 0.8, 18.0,25.7 +7.340000000000001,5,a-reso-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 18, 3.3, 14, 64.3, 35.7, 0.0, 92.9,57.1 +3.4,3.4,a-reso-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 253, 23.0, 803, 47.1, 52.9, 4.7, 21.5,28.6 +4.38,4.38,a-reso-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 81, 18.1, 291, 51.2, 48.8, 1.0, 14.1,30.2 +4.36,4.36,a-reso-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 300, 18.2, 550, 68.7, 31.1, 0.2, 15.3,30.7 +4.5200000000000005,4.52,a-reso-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 975, 17.4," 1,309", 43.0, 56.8, 0.5, 14.8,30.9 +4.4399999999999995,4.44,a-reso-i1,2022-23,Brockton - Ashfield Middle School,00440421, 221, 17.8, 481, 47.4, 52.6, 25.4, 21.2,63.8 +5.9,5,a-reso-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 33, 10.5, 337, 40.7, 59.4, 15.1, 63.8,75.7 +6.0200000000000005,5,a-reso-i1,2022-23,Brockton - Brockton Champion High School,00440515, 150, 9.9, 200, 48.0, 51.5, 17.0, 30.0,80.5 +4.66,4.66,a-reso-i1,2022-23,Brockton - Brockton High,00440505," 1,880", 16.7," 3,715", 44.9, 55.0, 28.4, 15.5,69.6 +5.74,5,a-reso-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 167, 11.3, 219, 51.1, 48.4, 11.9, 24.2,79 +4.779999999999999,4.78,a-reso-i1,2022-23,Brockton - Brookfield,00440010, 235, 16.1, 444, 47.5, 52.5, 37.4, 22.3,71.6 +4.82,4.82,a-reso-i1,2022-23,Brockton - Downey,00440110, 282, 15.9, 583, 43.7, 56.3, 20.4, 31.4,81 +4.92,4.92,a-reso-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 407, 15.4, 788, 47.7, 52.3, 34.0, 24.8,83.8 +4.0,4.0,a-reso-i1,2022-23,Brockton - East Middle School,00440405, 255, 20.0, 493, 45.0, 55.0, 41.2, 23.7,78.7 +3.9,3.9,a-reso-i1,2022-23,Brockton - Edgar B Davis,00440023, 525, 20.5, 948, 51.6, 48.4, 29.3, 10.0,78.4 +5.6,5,a-reso-i1,2022-23,Brockton - Edison Academy,00440520, 110, 12.0, 311, 44.1, 56.0, 55.6, 8.4,76.5 +3.0200000000000005,3.02,a-reso-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 166, 24.9, 413, 47.9, 52.1, 47.9, 10.9,85.2 +4.08,4.08,a-reso-i1,2022-23,Brockton - Hancock,00440045, 267, 19.6, 648, 53.7, 46.3, 28.6, 13.1,66.5 +6.8,5,a-reso-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 52, 6.0, 37, 32.4, 64.9, 18.9, 100.0,91.9 +4.36,4.36,a-reso-i1,2022-23,Brockton - John F Kennedy,00440017, 258, 18.2, 552, 51.8, 48.2, 35.0, 15.4,67.8 +4.38,4.38,a-reso-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 390, 18.1, 829, 44.5, 55.5, 35.8, 21.2,77.3 +4.26,4.26,a-reso-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 346, 18.7, 836, 50.4, 49.6, 36.1, 13.6,72.5 +5.0200000000000005,5,a-reso-i1,2022-23,Brockton - Mary E. Baker School,00440002, 404, 14.9, 700, 50.0, 50.0, 28.4, 22.3,68.7 +4.2,4.2,a-reso-i1,2022-23,Brockton - North Middle School,00440410, 210, 19.0, 463, 49.5, 50.5, 14.9, 12.5,81.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Brockton - Oscar F Raymond,00440078, 363, 18.9, 806, 47.8, 52.2, 40.0, 20.8,85.5 +6.04,5,a-reso-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 67, 9.8, 39, 43.6, 56.4, 12.8, 10.3,59 +3.9799999999999995,3.98,a-reso-i1,2022-23,Brockton - Plouffe Middle School,00440422, 359, 20.1, 706, 49.9, 50.1, 30.6, 17.9,75.1 +4.9,4.9,a-reso-i1,2022-23,Brockton - South Middle School,00440415, 308, 15.5, 549, 45.9, 54.1, 32.6, 18.9,78.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Brockton - West Middle School,00440420, 363, 17.4, 573, 48.0, 52.0, 9.4, 20.8,64.1 +4.16,4.16,a-reso-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 907, 19.2," 2,215", 51.5, 48.2, 8.4, 14.2,62.5 +4.16,4.16,a-reso-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 77, 19.2, 292, 48.0, 52.1, 1.0, 14.7,40.1 +5.6,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 12.0, 60, 35.0, 65.0, 11.7, 35.0,15 +5.46,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 6, 12.7, 76, 43.4, 56.6, 11.8, 26.3,10.5 +5.24,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 4, 13.8, 55, 41.8, 58.2, 12.7, 32.7,12.7 +5.1,5,a-reso-i1,2022-23,Brookline - Brookline High,00460505," 1,157", 14.5," 2,079", 49.7, 49.4, 2.8, 18.3,15.2 +4.46,4.46,a-reso-i1,2022-23,Brookline - Edith C Baker,00460005, 404, 17.7, 677, 48.9, 51.1, 18.8, 17.3,14.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 465, 18.9, 852, 51.6, 48.4, 17.3, 16.0,17.7 +4.58,4.58,a-reso-i1,2022-23,Brookline - Heath,00460025, 281, 17.1, 453, 48.8, 51.2, 8.0, 16.8,12.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Brookline - John D Runkle,00460045, 290, 17.6, 504, 45.8, 54.0, 11.5, 23.6,10.9 +4.5,4.5,a-reso-i1,2022-23,Brookline - Lawrence,00460030, 380, 17.5, 618, 52.1, 47.9, 21.8, 17.0,12.6 +4.58,4.58,a-reso-i1,2022-23,Brookline - Michael Driscoll,00460020, 287, 17.1, 472, 46.2, 53.8, 11.0, 14.8,12.3 +4.34,4.34,a-reso-i1,2022-23,Brookline - Pierce,00460040, 400, 18.3, 692, 51.3, 48.0, 13.9, 14.7,12.4 +5.68,5,a-reso-i1,2022-23,Brookline - The Lynch Center,00460060, 5, 11.6, 58, 39.7, 60.3, 12.1, 41.4,29.3 +4.86,4.86,a-reso-i1,2022-23,Brookline - William H Lincoln,00460035, 322, 15.7, 478, 51.1, 49.0, 18.4, 25.5,19.5 +5.4399999999999995,5,a-reso-i1,2022-23,Burlington - Burlington High,00480505, 562, 12.8," 1,010", 47.1, 52.6, 9.0, 11.5,18.8 +4.66,4.66,a-reso-i1,2022-23,Burlington - Fox Hill,00480007, 205, 16.7, 433, 52.0, 48.0, 7.6, 14.3,18.7 +4.96,4.96,a-reso-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 259, 15.2, 499, 49.7, 50.3, 7.6, 16.2,21 +4.5,4.5,a-reso-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 557, 17.5, 840, 50.1, 49.4, 4.6, 16.1,21.1 +4.66,4.66,a-reso-i1,2022-23,Burlington - Memorial,00480015, 190, 16.7, 399, 49.1, 50.9, 11.0, 14.3,24.3 +4.84,4.84,a-reso-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 167, 15.8, 332, 47.3, 52.7, 15.1, 19.3,16 +4.26,4.26,a-reso-i1,2022-23,Cambridge - Amigos School,00490006, 194, 18.7, 404, 49.5, 50.3, 8.2, 12.1,26 +5.1,5,a-reso-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,150", 14.5," 1,910", 50.9, 48.5, 5.0, 19.6,37.7 +4.88,4.88,a-reso-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 231, 15.6, 297, 50.2, 49.5, 2.7, 29.0,45.5 +4.58,4.58,a-reso-i1,2022-23,Cambridge - Cambridgeport,00490007, 127, 17.1, 266, 50.4, 48.5, 5.6, 19.2,29.7 +5.9399999999999995,5,a-reso-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 228, 10.3, 248, 41.5, 58.5, 10.9, 36.3,66.1 +4.9399999999999995,4.94,a-reso-i1,2022-23,Cambridge - Graham and Parks,00490080, 181, 15.3, 375, 46.7, 53.3, 36.5, 21.1,29.9 +4.76,4.76,a-reso-i1,2022-23,Cambridge - Haggerty,00490020, 110, 16.2, 244, 52.9, 47.1, 13.9, 28.7,35.7 +6.5,5,a-reso-i1,2022-23,Cambridge - John M Tobin,00490065, 293, 7.5, 324, 46.9, 53.1, 4.3, 30.3,28.1 +5.84,5,a-reso-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 163, 10.8, 205, 47.8, 52.2, 44.4, 23.4,54.6 +5.42,5,a-reso-i1,2022-23,Cambridge - King Open,00490035, 238, 12.9, 366, 48.1, 51.9, 9.3, 27.1,39.3 +4.96,4.96,a-reso-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 194, 15.2, 348, 51.2, 48.9, 6.9, 19.8,19.5 +4.88,4.88,a-reso-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 182, 15.6, 322, 49.4, 50.6, 10.3, 18.6,20.2 +5.0600000000000005,5,a-reso-i1,2022-23,Cambridge - Morse,00490045, 157, 14.7, 308, 48.1, 52.0, 9.1, 30.5,36 +4.08,4.08,a-reso-i1,2022-23,Cambridge - Peabody,00490050, 135, 19.6, 318, 48.1, 51.9, 9.4, 27.4,31.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 133, 17.8, 248, 47.2, 52.8, 3.6, 25.4,52.4 +3.62,3.62,a-reso-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 140, 21.9, 281, 47.7, 51.6, 2.9, 18.2,29.9 +4.74,4.74,a-reso-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 147, 16.3, 282, 47.9, 51.8, 17.0, 25.2,39.4 +5.0,5.0,a-reso-i1,2022-23,Canton - Canton High,00500505, 534, 15.0, 907, 54.7, 45.0, 1.1, 13.5,20.8 +4.36,4.36,a-reso-i1,2022-23,Canton - Dean S Luce,00500020, 433, 18.2, 454, 47.8, 52.2, 8.4, 17.4,24.2 +4.16,4.16,a-reso-i1,2022-23,Canton - John F Kennedy,00500017, 434, 19.2, 477, 47.0, 53.0, 4.8, 13.8,15.9 +3.7600000000000002,3.76,a-reso-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 435, 21.2, 537, 46.7, 53.3, 2.8, 16.2,22.7 +5.4399999999999995,5,a-reso-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 32, 12.8, 102, 42.2, 57.8, 0.0, 43.1,25.5 +4.720000000000001,4.72,a-reso-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 486, 16.4, 749, 51.5, 48.5, 2.4, 16.2,23.1 +4.62,4.62,a-reso-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 192, 16.9, 249, 51.4, 48.6, 0.0, 20.9,22.9 +4.8,4.8,a-reso-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 395, 16.0, 676, 38.2, 61.7, 2.1, 20.6,45 +4.58,4.58,a-reso-i1,2022-23,Carlisle - Carlisle School,00510025, 313, 17.1, 605, 49.4, 50.4, 2.2, 13.7,5.1 +4.2,4.2,a-reso-i1,2022-23,Carver - Carver Elementary School,00520015, 422, 19.0, 794, 50.5, 49.5, 2.9, 17.0,30 +5.16,5,a-reso-i1,2022-23,Carver - Carver Middle/High School,00520405, 499, 14.2, 765, 46.8, 53.1, 0.5, 21.6,33.5 +4.96,4.96,a-reso-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 50, 15.2, 114, 51.8, 48.3, 0.9, 28.1,58.8 +3.96,3.96,a-reso-i1,2022-23,Central Berkshire - Craneville,06350025, 178, 20.2, 443, 48.5, 51.2, 0.9, 17.6,45.2 +4.2,4.2,a-reso-i1,2022-23,Central Berkshire - Kittredge,06350035, 56, 19.0, 163, 50.9, 49.1, 0.6, 22.1,38.7 +3.88,3.88,a-reso-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 183, 20.6, 349, 48.7, 51.3, 0.3, 20.1,43.6 +5.24,5,a-reso-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 263, 13.8, 483, 49.9, 50.1, 1.0, 12.0,35 +3.7,3.7,a-reso-i1,2022-23,Chelmsford - Byam School,00560030, 169, 21.5, 511, 48.1, 51.9, 8.0, 19.0,17.8 +3.6399999999999997,3.64,a-reso-i1,2022-23,Chelmsford - Center Elementary School,00560005, 162, 21.8, 496, 47.0, 52.8, 7.7, 16.3,16.7 +3.8600000000000003,3.86,a-reso-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 162, 20.7, 477, 52.2, 47.8, 6.1, 16.8,29.4 +4.64,4.64,a-reso-i1,2022-23,Chelmsford - Chelmsford High,00560505, 689, 16.8," 1,367", 47.6, 51.9, 1.5, 14.7,14.8 +5.0,5.0,a-reso-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 448, 15.0, 731, 48.2, 51.7, 2.6, 22.4,22.2 +5.18,5,a-reso-i1,2022-23,Chelmsford - Community Education Center,00560001, 136, 14.1, 239, 33.5, 66.5, 18.0, 59.4,25.1 +4.3,4.3,a-reso-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 427, 18.5, 855, 47.8, 51.6, 2.5, 20.8,20.1 +3.4200000000000004,3.42,a-reso-i1,2022-23,Chelmsford - South Row,00560015, 148, 22.9, 480, 48.8, 51.3, 9.2, 17.5,15.6 +3.0799999999999996,3.08,a-reso-i1,2022-23,Chelsea - Chelsea High,00570505, 590, 24.6," 1,712", 45.2, 54.7, 35.8, 12.6,77.8 +6.74,5,a-reso-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 75, 6.3, 126, 30.2, 69.8, 61.9, 14.3,79.4 +5.92,5,a-reso-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 42, 10.4, 115, 63.5, 36.5, 27.0, 24.4,85.2 +2.94,2.94,a-reso-i1,2022-23,Chelsea - Clark Avenue School,00570050, 323, 25.3, 714, 48.3, 51.7, 35.0, 18.2,79.6 +3.9799999999999995,3.98,a-reso-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 125, 20.1, 503, 44.5, 55.5, 54.3, 20.1,80.1 +4.34,4.34,a-reso-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 246, 18.3, 471, 50.1, 49.9, 27.8, 26.8,79.8 +3.7,3.7,a-reso-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 115, 21.5, 495, 50.1, 49.9, 58.4, 11.1,88.5 +4.0,4.0,a-reso-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 135, 20.0, 479, 52.6, 47.4, 52.2, 12.9,76.8 +3.0799999999999996,3.08,a-reso-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 216, 24.6, 554, 44.0, 56.0, 43.1, 15.0,82.9 +4.32,4.32,a-reso-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 146, 18.4, 872, 46.3, 53.7, 65.9, 23.4,81.7 +4.24,4.24,a-reso-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 120, 18.8, 452, 55.8, 44.3, 46.0, 21.2,83.6 +4.86,4.86,a-reso-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 65, 15.7, 154, 42.9, 57.1, 0.0, 17.5,39 +4.62,4.62,a-reso-i1,2022-23,Chicopee - Barry,00610003, 107, 16.9, 363, 45.2, 54.8, 6.9, 21.8,62.5 +4.36,4.36,a-reso-i1,2022-23,Chicopee - Belcher,00610010, 53, 18.2, 232, 49.1, 50.9, 8.2, 19.4,77.2 +4.4,4.4,a-reso-i1,2022-23,Chicopee - Bellamy Middle,00610305, 434, 18.0, 823, 47.5, 52.4, 5.7, 19.2,64.5 +3.8600000000000003,3.86,a-reso-i1,2022-23,Chicopee - Bowe,00610015, 101, 20.7, 417, 50.4, 49.6, 17.3, 15.6,86.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Chicopee - Bowie,00610020, 94, 17.8, 273, 52.4, 47.6, 4.4, 15.4,46.9 +6.540000000000001,5,a-reso-i1,2022-23,Chicopee - Chicopee Academy,00610021, 84, 7.3, 97, 32.0, 67.0, 3.1, 25.8,85.6 +5.08,5,a-reso-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 629, 14.6," 1,203", 41.4, 58.3, 3.6, 12.9,51.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Chicopee - Chicopee High,00610505, 481, 16.4, 927, 52.1, 47.7, 7.0, 17.9,70.7 +4.64,4.64,a-reso-i1,2022-23,Chicopee - Dupont Middle,00610310, 436, 16.8, 703, 44.7, 55.1, 7.7, 20.9,69.6 +5.16,5,a-reso-i1,2022-23,Chicopee - Fairview Elementary,00610050, 127, 14.2, 371, 45.8, 54.2, 9.4, 23.2,81.9 +4.5600000000000005,4.56,a-reso-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 94, 17.2, 396, 48.5, 51.5, 13.1, 20.5,83.8 +5.32,5,a-reso-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 71, 13.4, 233, 42.9, 57.1, 3.0, 16.3,62.2 +4.86,4.86,a-reso-i1,2022-23,Chicopee - Litwin,00610022, 108, 15.7, 338, 49.7, 50.3, 6.8, 19.5,67.2 +5.08,5,a-reso-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 79, 14.6, 228, 44.7, 55.3, 4.4, 16.2,57 +5.4799999999999995,5,a-reso-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 30, 12.6, 293, 43.0, 57.0, 0.0, 59.7,63.5 +4.32,4.32,a-reso-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 139, 18.4, 329, 40.7, 57.5, 7.0, 24.6,50.5 +5.220000000000001,5,a-reso-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 96, 13.9, 190, 51.1, 49.0, 22.6, 18.4,77.4 +4.8,4.8,a-reso-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 75, 16.0, 193, 46.6, 53.4, 0.0, 20.2,38.3 +3.7600000000000002,3.76,a-reso-i1,2022-23,Clinton - Clinton Elementary,00640050, 322, 21.2, 853, 47.4, 52.6, 21.2, 23.2,54.3 +4.720000000000001,4.72,a-reso-i1,2022-23,Clinton - Clinton Middle School,00640305, 283, 16.4, 557, 47.8, 52.2, 19.2, 20.7,56 +5.2,5,a-reso-i1,2022-23,Clinton - Clinton Senior High,00640505, 264, 14.0, 572, 42.5, 57.3, 14.0, 17.1,50 +4.86,4.86,a-reso-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 125, 15.7, 342, 49.7, 50.3, 10.2, 22.8,80.1 +5.2,5,a-reso-i1,2022-23,Cohasset - Cohasset High School,00650505, 311, 14.0, 433, 47.1, 52.9, 0.0, 12.9,8.6 +5.220000000000001,5,a-reso-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 217, 13.9, 298, 49.3, 50.7, 0.7, 20.5,7.4 +3.9200000000000004,3.92,a-reso-i1,2022-23,Cohasset - Deer Hill,00650005, 120, 20.4, 306, 52.3, 47.7, 0.3, 16.7,7.5 +4.16,4.16,a-reso-i1,2022-23,Cohasset - Joseph Osgood,00650010, 146, 19.2, 374, 50.5, 49.5, 0.0, 16.3,4 +2.5799999999999996,2.58,a-reso-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 385, 27.1," 1,169", 51.5, 48.4, 28.8, 8.6,64.4 +5.8,5,a-reso-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 147, 11.0, 256, 57.4, 42.6, 13.7, 19.1,58.6 +3.62,3.62,a-reso-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 331, 21.9," 1,208", 50.6, 49.4, 24.4, 15.0,71.5 +4.36,4.36,a-reso-i1,2022-23,Concord - Alcott,00670005, 254, 18.2, 425, 51.1, 48.9, 2.4, 17.9,14.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Concord - Concord Middle,00670305, 407, 17.6, 656, 48.5, 51.4, 2.1, 19.2,10.2 +4.38,4.38,a-reso-i1,2022-23,Concord - Thoreau,00670020, 265, 18.1, 442, 47.3, 52.7, 2.7, 24.7,7.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Concord - Willard,00670030, 277, 17.8, 456, 50.7, 49.3, 3.5, 19.5,6.4 +4.24,4.24,a-reso-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 566, 18.8," 1,316", 46.7, 52.8, 0.7, 16.6,8.2 +4.66,4.66,a-reso-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 228, 16.7, 446, 52.2, 47.8, 9.4, 21.8,68.6 +5.32,5,a-reso-i1,2022-23,Conway - Conway Grammar,00680005, 108, 13.4, 136, 42.7, 57.4, 0.0, 24.3,25.7 +5.16,5,a-reso-i1,2022-23,Danvers - Danvers High,00710505, 450, 14.2, 779, 49.6, 49.6, 1.7, 19.4,24.8 +4.38,4.38,a-reso-i1,2022-23,Danvers - Great Oak,00710015, 191, 18.1, 305, 52.1, 47.9, 3.9, 15.7,29.2 +3.66,3.66,a-reso-i1,2022-23,Danvers - Highlands,00710010, 194, 21.7, 388, 45.9, 54.1, 4.6, 14.7,28.1 +4.64,4.64,a-reso-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 635, 16.8, 781, 50.8, 48.9, 1.2, 19.1,26.4 +4.36,4.36,a-reso-i1,2022-23,Danvers - Ivan G Smith,00710032, 203, 18.2, 337, 48.7, 51.3, 2.4, 22.0,17.2 +4.58,4.58,a-reso-i1,2022-23,Danvers - Riverside,00710030, 183, 17.1, 332, 43.7, 56.3, 3.6, 31.9,26.2 +4.2,4.2,a-reso-i1,2022-23,Danvers - Willis E Thorpe,00710045, 173, 19.0, 338, 52.1, 47.9, 3.0, 25.2,21.6 +5.26,5,a-reso-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 38, 13.7, 142, 43.7, 56.3, 2.1, 36.6,38 +4.5,4.5,a-reso-i1,2022-23,Dartmouth - Dartmouth High,00720505, 486, 17.5, 990, 52.2, 47.7, 1.1, 15.4,26 +5.0600000000000005,5,a-reso-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 651, 14.7, 805, 46.0, 54.0, 0.6, 20.1,31.6 +3.7,3.7,a-reso-i1,2022-23,Dartmouth - George H Potter,00720030, 160, 21.5, 403, 50.4, 49.6, 3.2, 17.6,33 +3.84,3.84,a-reso-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 300, 20.8, 707, 46.4, 53.6, 2.1, 21.8,30.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Dartmouth - Joseph Demello,00720015, 180, 17.4, 348, 49.4, 50.3, 1.7, 21.6,29.9 +4.5,4.5,a-reso-i1,2022-23,Dedham - Avery,00730010, 84, 17.5, 295, 45.8, 54.2, 15.9, 25.4,45.1 +5.0600000000000005,5,a-reso-i1,2022-23,Dedham - Dedham High,00730505, 388, 14.7, 728, 46.4, 52.3, 6.2, 18.3,28.3 +4.86,4.86,a-reso-i1,2022-23,Dedham - Dedham Middle School,00730305, 453, 15.7, 567, 49.7, 50.3, 5.1, 26.3,31.4 +4.9399999999999995,4.94,a-reso-i1,2022-23,Dedham - Early Childhood Center,00730005, 100, 15.3, 330, 50.0, 50.0, 7.9, 20.9,23.9 +4.32,4.32,a-reso-i1,2022-23,Dedham - Greenlodge,00730025, 77, 18.4, 281, 47.0, 52.7, 3.9, 22.8,14.2 +4.4799999999999995,4.48,a-reso-i1,2022-23,Dedham - Oakdale,00730030, 59, 17.6, 246, 54.9, 45.1, 4.1, 19.5,16.3 +4.34,4.34,a-reso-i1,2022-23,Dedham - Riverdale,00730045, 50, 18.3, 183, 49.2, 50.8, 8.2, 31.7,34.4 +4.84,4.84,a-reso-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 230, 15.8, 327, 45.9, 53.8, 0.6, 23.9,19.3 +4.6,4.6,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 366, 17.0, 479, 48.6, 51.4, 16.5, 18.8,57.2 +4.9799999999999995,4.98,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 356, 15.1, 484, 43.2, 56.6, 11.6, 15.1,55.2 +5.36,5,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 634, 13.2, 900, 49.6, 50.0, 11.7, 18.2,54.3 +5.24,5,a-reso-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 111, 13.8, 365, 47.4, 52.6, 15.6, 25.8,61.6 +5.4,5,a-reso-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 76, 13.0, 302, 46.4, 53.6, 25.5, 20.2,63.3 +4.18,4.18,a-reso-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 88, 19.1, 419, 44.9, 55.1, 13.4, 8.6,51.3 +4.42,4.42,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 244, 17.9, 466, 48.9, 51.1, 1.5, 23.4,27 +4.58,4.58,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 296, 17.1, 368, 47.3, 52.5, 1.1, 17.9,21.5 +4.9399999999999995,4.94,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 348, 15.3, 683, 47.9, 51.8, 0.4, 15.8,23.4 +4.68,4.68,a-reso-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 277, 16.6, 454, 50.2, 49.3, 0.7, 20.0,17.6 +4.2,4.2,a-reso-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 332, 19.0, 594, 45.8, 54.2, 0.7, 19.2,18.4 +3.66,3.66,a-reso-i1,2022-23,Douglas - Douglas Elementary School,00770015, 120, 21.7, 346, 47.1, 52.9, 2.9, 17.9,26.3 +5.38,5,a-reso-i1,2022-23,Douglas - Douglas High School,00770505, 186, 13.1, 324, 48.2, 51.5, 0.9, 18.8,25.9 +3.72,3.72,a-reso-i1,2022-23,Douglas - Douglas Middle School,00770305, 158, 21.4, 305, 47.5, 52.5, 1.6, 23.6,22 +4.68,4.68,a-reso-i1,2022-23,Douglas - Douglas Primary School,00770005, 75, 16.6, 219, 42.0, 58.0, 1.8, 14.2,26.9 +4.2,4.2,a-reso-i1,2022-23,Dover - Chickering,00780005, 184, 19.0, 514, 46.9, 53.1, 2.3, 18.5,4.5 +4.88,4.88,a-reso-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 376, 15.6, 667, 50.1, 49.5, 0.6, 13.9,6.3 +4.6,4.6,a-reso-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 335, 17.0, 484, 47.5, 52.5, 0.4, 17.2,6.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Dracut - Brookside Elementary,00790035, 197, 20.1, 512, 48.6, 51.4, 5.7, 17.2,40.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Dracut - Dracut Senior High,00790505, 419, 17.2, 855, 50.4, 49.1, 6.3, 13.2,33.1 +3.38,3.38,a-reso-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 194, 23.1, 550, 46.9, 53.1, 5.1, 16.7,43.8 +4.12,4.12,a-reso-i1,2022-23,Dracut - Greenmont Avenue,00790030, 98, 19.4, 236, 46.6, 53.4, 10.2, 12.7,47.5 +4.08,4.08,a-reso-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 232, 19.6, 602, 45.2, 54.8, 7.0, 19.9,24.8 +4.42,4.42,a-reso-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 752, 17.9, 876, 47.2, 52.5, 5.4, 15.5,35.2 +2.6799999999999997,2.68,a-reso-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 15, 26.6, 282, 48.9, 51.1, 27.7, 17.0,76.2 +4.0600000000000005,4.06,a-reso-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 116, 19.7, 357, 48.5, 51.5, 6.4, 26.6,35.9 +4.6,4.6,a-reso-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 362, 17.0, 604, 46.9, 53.2, 1.3, 18.1,26.8 +3.46,3.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 124, 22.7, 342, 49.4, 50.6, 7.3, 24.0,40.6 +3.94,3.94,a-reso-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 255, 20.3, 566, 45.6, 54.4, 2.3, 17.8,39.6 +3.46,3.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 186, 22.7, 449, 48.6, 51.2, 6.5, 20.9,32.1 +4.42,4.42,a-reso-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 86, 17.9, 239, 47.7, 52.3, 5.9, 17.2,38.1 +4.46,4.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 407, 17.7, 928, 52.1, 47.4, 1.1, 12.1,30.4 +3.96,3.96,a-reso-i1,2022-23,Duxbury - Alden School,00820004, 300, 20.2, 598, 46.7, 53.3, 0.7, 18.7,8.2 +4.0,4.0,a-reso-i1,2022-23,Duxbury - Chandler Elementary,00820006, 314, 20.0, 659, 49.8, 50.1, 1.5, 16.2,10.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Duxbury - Duxbury High,00820505, 469, 17.2, 929, 48.4, 51.5, 0.3, 12.0,7.9 +3.96,3.96,a-reso-i1,2022-23,Duxbury - Duxbury Middle,00820305, 279, 20.2, 620, 50.2, 49.8, 0.2, 15.8,7.3 +5.0600000000000005,5,a-reso-i1,2022-23,East Bridgewater - Central,00830005, 270, 14.7, 524, 47.5, 52.5, 4.2, 23.3,30 +4.2,4.2,a-reso-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 527, 19.0, 920, 45.3, 54.5, 1.5, 17.5,25.5 +3.72,3.72,a-reso-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 331, 21.4, 639, 51.3, 48.7, 3.1, 18.5,28.6 +4.66,4.66,a-reso-i1,2022-23,East Longmeadow - Birchland Park,00870305, 454, 16.7, 600, 42.5, 57.3, 1.2, 21.8,28 +4.42,4.42,a-reso-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 331, 17.9, 817, 48.4, 51.5, 0.5, 18.1,25.5 +4.64,4.64,a-reso-i1,2022-23,East Longmeadow - Mapleshade,00870010, 166, 16.8, 290, 49.3, 50.7, 4.1, 24.1,32.8 +4.279999999999999,4.28,a-reso-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 192, 18.6, 575, 45.9, 54.1, 5.7, 25.2,28.7 +4.779999999999999,4.78,a-reso-i1,2022-23,East Longmeadow - Mountain View,00870015, 121, 16.1, 271, 48.7, 51.3, 0.4, 25.8,21.4 +4.92,4.92,a-reso-i1,2022-23,Eastham - Eastham Elementary,00850005, 133, 15.4, 196, 44.9, 55.1, 4.1, 16.8,46.9 +5.4399999999999995,5,a-reso-i1,2022-23,Easthampton - Easthampton High,00860505, 188, 12.8, 375, 47.5, 51.2, 1.9, 23.7,39.2 +4.36,4.36,a-reso-i1,2022-23,Easthampton - Mountain View School,00860415, 287, 18.2," 1,053", 47.7, 52.0, 3.3, 30.0,39.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 192, 18.9, 771, 44.6, 55.4, 7.0, 16.7,22.4 +4.32,4.32,a-reso-i1,2022-23,Easton - Easton Middle School,00880405, 502, 18.4, 832, 48.9, 51.1, 1.2, 23.4,20.3 +4.6,4.6,a-reso-i1,2022-23,Easton - Oliver Ames High,00880505, 517, 17.0," 1,092", 49.5, 50.2, 1.7, 13.7,19.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Easton - Richardson Olmsted School,00880025, 181, 21.2, 767, 48.4, 51.6, 3.5, 20.9,21.3 +4.88,4.88,a-reso-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 274, 15.6, 420, 49.8, 50.2, 19.5, 23.6,49.5 +4.2,4.2,a-reso-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 185, 19.0, 378, 66.9, 33.1, 14.0, 24.3,78.8 +5.24,5,a-reso-i1,2022-23,Erving - Erving Elementary,00910030, 38, 13.8, 128, 43.8, 56.3, 0.0, 19.5,46.1 +4.0600000000000005,4.06,a-reso-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,141", 19.7," 1,675", 57.3, 42.5, 0.6, 17.9,23.2 +5.24,5,a-reso-i1,2022-23,Everett - Adams School,00930003, 64, 13.8, 221, 48.0, 52.0, 36.2, 7.2,73.8 +7.26,5,a-reso-i1,2022-23,Everett - Devens School,00930030, 115, 3.7, 57, 24.6, 73.7, 17.5, 68.4,80.7 +4.0,4.0,a-reso-i1,2022-23,Everett - Everett High,00930505, 951, 20.0," 2,303", 49.3, 50.7, 27.8, 13.9,71 +3.6799999999999997,3.68,a-reso-i1,2022-23,Everett - George Keverian School,00930028, 427, 21.6, 906, 51.9, 48.0, 39.6, 13.0,77.3 +3.88,3.88,a-reso-i1,2022-23,Everett - Lafayette School,00930038, 639, 20.6," 1,052", 49.1, 50.9, 36.9, 14.7,71.6 +3.88,3.88,a-reso-i1,2022-23,Everett - Madeline English School,00930018, 489, 20.6, 770, 48.7, 51.3, 40.5, 13.6,73.1 +3.04,3.04,a-reso-i1,2022-23,Everett - Parlin School,00930058, 522, 24.8," 1,112", 50.5, 49.5, 52.7, 8.3,80.3 +3.6799999999999997,3.68,a-reso-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 305, 21.6, 650, 48.2, 51.9, 46.8, 9.7,82 +5.96,5,a-reso-i1,2022-23,Everett - Webster Extension,00930001, 80, 10.2, 200, 43.0, 57.0, 47.5, 15.5,62.5 +5.38,5,a-reso-i1,2022-23,Everett - Webster School,00930015, 240, 13.1, 332, 46.4, 53.6, 31.6, 28.0,71.4 +3.5200000000000005,3.52,a-reso-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 390, 22.4," 1,357", 49.3, 50.7, 11.9, 17.7,64.6 +5.24,5,a-reso-i1,2022-23,Fairhaven - East Fairhaven,00940010, 261, 13.8, 319, 47.3, 52.7, 2.8, 27.6,41.1 +4.92,4.92,a-reso-i1,2022-23,Fairhaven - Fairhaven High,00940505, 339, 15.4, 633, 49.6, 50.2, 0.8, 10.1,32.7 +4.34,4.34,a-reso-i1,2022-23,Fairhaven - Hastings Middle,00940305, 275, 18.3, 442, 50.5, 49.6, 0.0, 17.7,41.9 +4.54,4.54,a-reso-i1,2022-23,Fairhaven - Leroy Wood,00940030, 300, 17.3, 445, 47.4, 52.6, 3.8, 21.6,41.4 +4.58,4.58,a-reso-i1,2022-23,Fall River - B M C Durfee High,00950505," 1,332", 17.1," 2,459", 50.4, 49.5, 20.8, 18.0,75.4 +4.32,4.32,a-reso-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 313, 18.4, 691, 50.5, 49.5, 31.7, 18.7,86.3 +6.540000000000001,5,a-reso-i1,2022-23,Fall River - Early Learning Center,00950001, 55, 7.3, 108, 30.6, 69.4, 3.7, 75.0,86.1 +4.58,4.58,a-reso-i1,2022-23,Fall River - Henry Lord Community School,00950017, 418, 17.1, 824, 48.2, 51.8, 28.2, 33.9,88.7 +3.4200000000000004,3.42,a-reso-i1,2022-23,Fall River - James Tansey,00950140, 96, 22.9, 279, 48.8, 50.9, 3.9, 18.6,67 +4.58,4.58,a-reso-i1,2022-23,Fall River - John J Doran,00950045, 207, 17.1, 513, 46.2, 53.8, 9.8, 26.5,84.4 +3.88,3.88,a-reso-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 228, 20.6, 640, 45.9, 54.1, 35.8, 22.0,82.8 +3.4,3.4,a-reso-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 238, 23.0, 656, 50.5, 49.5, 34.5, 20.3,88.7 +4.779999999999999,4.78,a-reso-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 407, 16.1, 701, 48.4, 51.6, 22.3, 21.5,82 +4.220000000000001,4.22,a-reso-i1,2022-23,Fall River - Morton Middle,00950315, 360, 18.9, 684, 45.6, 54.4, 15.9, 26.5,72.8 +4.16,4.16,a-reso-i1,2022-23,Fall River - North End Elementary,00950005, 248, 19.2, 693, 48.6, 51.4, 10.4, 33.2,68.3 +5.9,5,a-reso-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 125, 10.5, 254, 41.7, 58.3, 16.1, 33.9,91.3 +4.1,4.1,a-reso-i1,2022-23,Fall River - Samuel Watson,00950145, 88, 19.5, 237, 52.7, 47.3, 15.6, 19.0,89.9 +4.66,4.66,a-reso-i1,2022-23,Fall River - Spencer Borden,00950130, 259, 16.7, 588, 45.8, 54.3, 10.2, 34.5,69.7 +7.06,5,a-reso-i1,2022-23,Fall River - Stone PK-12 School,00950340, 122, 4.7, 83, 30.1, 69.9, 10.8, 96.4,90.4 +4.82,4.82,a-reso-i1,2022-23,Fall River - Talbot Innovation School,00950305, 406, 15.9, 561, 51.5, 48.5, 25.7, 24.2,82 +4.58,4.58,a-reso-i1,2022-23,Fall River - William S Greene,00950065, 328, 17.1, 730, 47.1, 52.9, 35.1, 22.1,84.8 +4.9,4.9,a-reso-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 69, 15.5, 303, 40.3, 59.7, 9.2, 41.6,53.8 +5.220000000000001,5,a-reso-i1,2022-23,Falmouth - Falmouth High,00960505, 698, 13.9, 774, 46.4, 52.7, 5.4, 20.7,36.6 +5.0600000000000005,5,a-reso-i1,2022-23,Falmouth - Lawrence,00960405, 417, 14.7, 490, 49.4, 50.4, 5.9, 22.7,41 +4.08,4.08,a-reso-i1,2022-23,Falmouth - Morse Pond School,00960305, 258, 19.6, 487, 44.8, 55.0, 6.0, 24.2,41.9 +4.82,4.82,a-reso-i1,2022-23,Falmouth - Mullen-Hall,00960020, 120, 15.9, 382, 49.5, 50.5, 10.7, 19.1,41.9 +4.88,4.88,a-reso-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 100, 15.6, 311, 53.7, 46.3, 3.9, 17.0,22.2 +4.86,4.86,a-reso-i1,2022-23,Falmouth - Teaticket,00960015, 79, 15.7, 272, 44.5, 54.4, 12.9, 29.4,56.6 +4.9799999999999995,4.98,a-reso-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 77, 15.1, 124, 51.6, 48.4, 0.0, 25.0,55.7 +3.9,3.9,a-reso-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 353, 20.5, 620, 48.1, 51.9, 17.6, 21.6,76.5 +3.84,3.84,a-reso-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 234, 20.8, 607, 50.6, 49.4, 24.2, 23.2,76.9 +4.54,4.54,a-reso-i1,2022-23,Fitchburg - Fitchburg High,00970505, 546, 17.3," 1,205", 50.0, 49.9, 13.6, 18.3,67.6 +6.38,5,a-reso-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 201, 8.1, 283, 50.5, 49.1, 6.0, 29.3,75.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 353, 18.9, 736, 45.2, 54.8, 28.7, 24.5,79.4 +3.66,3.66,a-reso-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 274, 21.7, 606, 50.5, 49.2, 9.1, 19.5,69.5 +4.18,4.18,a-reso-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 315, 19.1, 664, 45.5, 54.5, 21.1, 20.9,71.1 +3.9,3.9,a-reso-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 173, 20.5, 624, 46.2, 53.9, 15.9, 30.9,76.9 +6.220000000000001,5,a-reso-i1,2022-23,Florida - Abbott Memorial,00980005, 61, 8.9, 91, 46.2, 53.9, 0.0, 15.4,40.7 +8.0,5,a-reso-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.04,4.04,a-reso-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 115, 19.8, 259, 44.4, 55.6, 3.1, 17.8,17.8 +5.0600000000000005,5,a-reso-i1,2022-23,Foxborough - Foxborough High,00990505, 492, 14.7, 801, 50.1, 49.8, 1.8, 15.0,20.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Foxborough - John J Ahern,00990405, 444, 17.8, 748, 48.5, 51.3, 2.4, 22.5,23.3 +4.32,4.32,a-reso-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 123, 18.4, 348, 44.8, 55.2, 1.7, 22.7,18.1 +3.7600000000000002,3.76,a-reso-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 150, 21.2, 363, 44.1, 55.9, 6.1, 16.0,24.5 +4.18,4.18,a-reso-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 707, 19.1," 1,538", 52.2, 47.9, 6.1, 9.8,41 +4.14,4.14,a-reso-i1,2022-23,Framingham - Barbieri Elementary,01000035, 344, 19.3, 672, 53.1, 46.9, 59.1, 16.8,67.4 +5.24,5,a-reso-i1,2022-23,Framingham - Brophy,01000006, 335, 13.8, 476, 47.3, 52.5, 47.9, 26.5,59.2 +4.46,4.46,a-reso-i1,2022-23,Framingham - Cameron Middle School,01000302, 347, 17.7, 576, 46.0, 54.0, 31.9, 21.5,64.8 +5.76,5,a-reso-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 367, 11.2, 431, 48.5, 51.3, 29.2, 26.9,40.6 +4.720000000000001,4.72,a-reso-i1,2022-23,Framingham - Framingham High School,01000515," 1,183", 16.4," 2,587", 49.6, 50.1, 26.5, 19.8,53.2 +4.86,4.86,a-reso-i1,2022-23,Framingham - Fuller Middle,01000305, 473, 15.7, 682, 47.7, 52.1, 45.9, 24.1,69.1 +4.6,4.6,a-reso-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 307, 17.0, 475, 44.6, 55.2, 75.0, 13.9,84.2 +5.220000000000001,5,a-reso-i1,2022-23,Framingham - Hemenway,01000015, 378, 13.9, 556, 48.0, 51.8, 26.8, 20.3,35.4 +6.92,5,a-reso-i1,2022-23,Framingham - Juniper Hill School,01000001, 472, 5.4, 316, 37.7, 62.3, 27.2, 62.0,42.1 +5.46,5,a-reso-i1,2022-23,Framingham - King Elementary School,01000005, 278, 12.7, 399, 50.1, 49.6, 33.3, 25.6,45.1 +5.6,5,a-reso-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 279, 12.0, 353, 48.2, 51.8, 40.2, 33.1,63.7 +5.62,5,a-reso-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 430, 11.9, 531, 46.5, 53.5, 45.8, 31.8,67.6 +4.42,4.42,a-reso-i1,2022-23,Framingham - Potter Road,01000039, 292, 17.9, 541, 48.6, 51.4, 49.9, 19.4,50.5 +4.54,4.54,a-reso-i1,2022-23,Framingham - Walsh Middle,01000310, 491, 17.3, 815, 53.7, 45.4, 19.3, 21.6,45.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 229, 17.4, 391, 51.7, 44.0, 0.0, 18.7,12 +5.0200000000000005,5,a-reso-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 221, 14.9, 327, 44.7, 55.4, 1.5, 19.6,16.8 +4.82,4.82,a-reso-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 11, 15.9, 175, 38.3, 61.7, 1.7, 49.1,21.1 +4.9799999999999995,4.98,a-reso-i1,2022-23,Franklin - Franklin High,01010505," 1,025", 15.1," 1,640", 49.2, 50.2, 1.3, 14.2,11.8 +4.4,4.4,a-reso-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 240, 18.0, 539, 49.0, 51.0, 3.3, 22.6,15.4 +4.42,4.42,a-reso-i1,2022-23,Franklin - Horace Mann,01010405, 221, 17.9, 380, 47.4, 52.6, 0.5, 19.2,13.2 +4.0600000000000005,4.06,a-reso-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 136, 19.7, 335, 41.2, 58.5, 2.7, 19.7,8.7 +5.1,5,a-reso-i1,2022-23,Franklin - Jefferson Elementary,01010010, 192, 14.5, 349, 42.4, 57.3, 0.9, 28.1,11.8 +4.68,4.68,a-reso-i1,2022-23,Franklin - Oak Street Elementary,01010030, 176, 16.6, 365, 49.3, 50.7, 2.2, 18.9,16.4 +4.76,4.76,a-reso-i1,2022-23,Franklin - Parmenter,01010032, 144, 16.2, 292, 50.3, 49.7, 3.1, 20.2,28.8 +4.64,4.64,a-reso-i1,2022-23,Franklin - Remington Middle,01010310, 230, 16.8, 377, 47.2, 52.8, 1.3, 22.0,21.8 +5.3,5,a-reso-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 304, 13.5, 595, 42.4, 57.7, 0.2, 21.9,53.5 +4.86,4.86,a-reso-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 327, 15.7, 692, 52.5, 47.0, 0.3, 13.6,18.2 +4.16,4.16,a-reso-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 224, 19.2, 491, 51.1, 48.9, 2.0, 16.3,25.7 +4.9,4.9,a-reso-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 217, 15.5, 433, 46.9, 53.1, 2.8, 20.1,25.2 +3.94,3.94,a-reso-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 293, 20.3, 676, 47.8, 52.2, 1.2, 21.6,25.9 +3.94,3.94,a-reso-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 154, 20.3, 446, 49.3, 50.7, 0.5, 15.3,24 +5.720000000000001,5,a-reso-i1,2022-23,Frontier - Frontier Regional,06700505, 580, 11.4, 601, 47.3, 52.3, 0.8, 18.5,26.8 +6.5200000000000005,5,a-reso-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 43, 7.4, 48, 35.4, 64.6, 0.0, 39.6,79.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,Gardner - Gardner Elementary School,01030001, 628, 21.3," 1,034", 44.5, 55.4, 12.8, 24.4,69.5 +4.62,4.62,a-reso-i1,2022-23,Gardner - Gardner High,01030505, 345, 16.9, 739, 46.6, 52.4, 3.0, 19.4,61 +4.16,4.16,a-reso-i1,2022-23,Gardner - Gardner Middle School,01030405, 265, 19.2, 493, 52.5, 47.3, 6.5, 24.1,66.5 +5.0,5.0,a-reso-i1,2022-23,Gateway - Chester Elementary,06720059, 57, 15.0, 125, 47.2, 52.8, 0.0, 35.2,41.6 +6.68,5,a-reso-i1,2022-23,Gateway - Gateway Regional High,06720505, 235, 6.6, 169, 50.3, 49.7, 0.0, 24.9,44.4 +5.0600000000000005,5,a-reso-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 144, 14.7, 199, 44.7, 54.8, 1.5, 24.6,51.8 +4.220000000000001,4.22,a-reso-i1,2022-23,Gateway - Littleville Elementary School,06720143, 129, 18.9, 305, 48.9, 51.2, 3.3, 28.2,50.5 +5.9,5,a-reso-i1,2022-23,Georgetown - Georgetown High School,01050505, 290, 10.5, 300, 51.0, 49.0, 2.3, 19.0,17.7 +4.86,4.86,a-reso-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 147, 15.7, 189, 48.2, 51.9, 0.5, 19.1,14.8 +3.9200000000000004,3.92,a-reso-i1,2022-23,Georgetown - Penn Brook,01050010, 281, 20.4, 702, 48.0, 52.0, 1.4, 15.7,14.7 +2.54,2.54,a-reso-i1,2022-23,Georgetown - Perley Elementary,01050005, 3, 27.3, 82, 47.6, 52.4, 0.0, 23.2,14.6 +4.64,4.64,a-reso-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 50, 16.8, 105, 49.5, 50.5, 0.0, 21.9,42.9 +5.62,5,a-reso-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 168, 11.9, 213, 43.7, 55.9, 2.8, 29.1,59.6 +4.6,4.6,a-reso-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 72, 17.0, 154, 46.1, 53.9, 11.7, 37.0,63.6 +4.82,4.82,a-reso-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 108, 15.9, 214, 41.6, 58.4, 8.4, 29.0,64 +5.9799999999999995,5,a-reso-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 166, 10.1, 181, 41.4, 58.0, 3.3, 26.0,56.9 +4.66,4.66,a-reso-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 336, 16.7, 496, 51.4, 48.6, 9.1, 13.3,70 +4.5600000000000005,4.56,a-reso-i1,2022-23,Gloucester - Beeman Memorial,01070010, 72, 17.2, 309, 52.8, 47.3, 17.2, 21.0,61.2 +4.84,4.84,a-reso-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 48, 15.8, 190, 55.3, 44.7, 11.6, 17.9,44.7 +5.26,5,a-reso-i1,2022-23,Gloucester - Gloucester High,01070505, 432, 13.7, 808, 46.3, 53.0, 10.0, 30.5,42.8 +5.7,5,a-reso-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 12, 11.5, 138, 47.8, 52.2, 0.0, 49.3,47.1 +4.64,4.64,a-reso-i1,2022-23,Gloucester - Plum Cove School,01070042, 48, 16.8, 201, 49.8, 50.3, 6.0, 23.9,28.9 +4.58,4.58,a-reso-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 363, 17.1, 635, 48.8, 51.0, 7.6, 25.8,47.1 +4.4,4.4,a-reso-i1,2022-23,Gloucester - Veterans Memorial,01070045, 48, 18.0, 216, 48.2, 51.9, 22.2, 20.8,68.1 +4.14,4.14,a-reso-i1,2022-23,Gloucester - West Parish,01070050, 77, 19.3, 373, 48.3, 51.7, 2.1, 27.9,38.6 +8.0,5,a-reso-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.74,4.74,a-reso-i1,2022-23,Grafton - Grafton High School,01100505, 447, 16.3, 875, 49.9, 49.7, 1.1, 13.0,16 +3.96,3.96,a-reso-i1,2022-23,Grafton - Grafton Middle,01100305, 294, 20.2, 532, 47.7, 51.9, 2.4, 17.1,19 +4.0200000000000005,4.02,a-reso-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 302, 19.9, 594, 44.3, 55.7, 2.7, 21.9,17.5 +4.76,4.76,a-reso-i1,2022-23,Grafton - North Grafton Elementary,01100025, 118, 16.2, 250, 47.2, 52.8, 5.2, 22.0,12.8 +3.9799999999999995,3.98,a-reso-i1,2022-23,Grafton - North Street Elementary School,01100030, 279, 20.1, 551, 50.5, 49.4, 2.9, 16.9,17.8 +4.2,4.2,a-reso-i1,2022-23,Grafton - South Grafton Elementary,01100005, 117, 19.0, 303, 46.9, 53.1, 4.3, 22.4,13.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Granby - East Meadow,01110004, 180, 18.6, 409, 49.1, 50.9, 6.6, 23.5,38.6 +5.4799999999999995,5,a-reso-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 221, 12.6, 310, 44.5, 55.5, 3.9, 20.0,32.3 +4.18,4.18,a-reso-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 359, 19.1," 1,204", 55.5, 43.4, 3.0, 24.8,60.6 +5.26,5,a-reso-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,347", 13.7," 1,405", 42.1, 57.2, 2.1, 9.8,45.6 +4.8,4.8,a-reso-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,663", 16.0," 1,692", 52.3, 47.5, 9.3, 11.6,66.3 +4.4399999999999995,4.44,a-reso-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,722", 17.8," 2,334", 47.5, 51.6, 6.6, 17.0,51.3 +4.9799999999999995,4.98,a-reso-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,961", 15.1," 2,092", 47.2, 52.6, 5.0, 11.7,50.8 +4.76,4.76,a-reso-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 54, 16.2, 216, 41.2, 58.8, 8.3, 23.2,46.8 +4.42,4.42,a-reso-i1,2022-23,Greenfield - Federal Street School,01140010, 46, 17.9, 205, 54.6, 45.4, 8.3, 16.6,70.7 +5.5,5,a-reso-i1,2022-23,Greenfield - Greenfield High,01140505, 308, 12.5, 451, 49.7, 50.1, 8.7, 22.6,60.5 +4.82,4.82,a-reso-i1,2022-23,Greenfield - Greenfield Middle,01140305, 199, 15.9, 311, 44.7, 55.3, 8.0, 18.0,65.6 +4.38,4.38,a-reso-i1,2022-23,Greenfield - Newton School,01140035, 49, 18.1, 211, 50.7, 49.3, 9.0, 18.0,76.8 +5.88,5,a-reso-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 10.6, 95, 45.3, 54.7, 0.0, 35.8,64.2 +5.12,5,a-reso-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 7, 14.4, 101, 40.6, 59.4, 0.0, 35.6,10.9 +3.8,3.8,a-reso-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 145, 21.0, 526, 48.1, 51.9, 3.6, 15.4,10.5 +4.84,4.84,a-reso-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 402, 15.8, 680, 48.7, 51.0, 0.7, 15.2,7.4 +4.220000000000001,4.22,a-reso-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 355, 18.9, 723, 47.2, 52.8, 0.7, 16.7,10.1 +3.6399999999999997,3.64,a-reso-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 90, 21.8, 327, 45.0, 55.1, 3.1, 20.8,11.3 +4.5600000000000005,4.56,a-reso-i1,2022-23,Hadley - Hadley Elementary,01170015, 262, 17.2, 279, 44.1, 55.9, 5.4, 24.7,30.5 +5.66,5,a-reso-i1,2022-23,Hadley - Hopkins Academy,01170505, 134, 11.7, 220, 49.6, 50.5, 3.6, 11.4,25.9 +4.0,4.0,a-reso-i1,2022-23,Halifax - Halifax Elementary,01180005, 230, 20.0, 560, 47.3, 52.7, 0.9, 20.0,26.6 +3.94,3.94,a-reso-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 104, 20.3, 264, 43.9, 56.1, 4.9, 16.3,11.4 +4.46,4.46,a-reso-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 115, 17.7, 255, 51.4, 48.6, 0.4, 20.4,7.1 +5.279999999999999,5,a-reso-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 282, 13.6, 450, 54.2, 45.6, 0.7, 12.2,10 +5.1,5,a-reso-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 330, 14.5, 375, 54.1, 45.9, 0.8, 19.2,10.4 +4.42,4.42,a-reso-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 131, 17.9, 323, 49.5, 50.5, 0.3, 25.1,6.5 +4.26,4.26,a-reso-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 252, 18.7, 551, 47.6, 51.9, 4.5, 14.9,61 +4.66,4.66,a-reso-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 189, 16.7, 373, 44.8, 55.2, 4.6, 18.0,61.4 +4.58,4.58,a-reso-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 102, 17.1, 325, 47.7, 52.3, 1.9, 24.3,29.5 +3.7600000000000002,3.76,a-reso-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 73, 21.2, 366, 47.8, 52.2, 1.9, 20.8,19.1 +4.86,4.86,a-reso-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 503, 15.7, 973, 49.6, 50.4, 0.1, 13.0,21.8 +3.46,3.46,a-reso-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 71, 22.7, 311, 51.5, 48.6, 1.9, 17.4,20.9 +3.6799999999999997,3.68,a-reso-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 70, 21.6, 303, 46.9, 53.1, 3.0, 17.8,23.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 337, 17.4, 606, 48.0, 52.0, 0.8, 18.5,24.4 +5.62,5,a-reso-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 585, 11.9, 671, 52.2, 46.9, 1.8, 23.1,21.3 +6.5,5,a-reso-i1,2022-23,Hancock - Hancock Elementary,01210005, 76, 7.5, 61, 60.7, 39.3, 0.0, 26.2,36.1 +4.2,4.2,a-reso-i1,2022-23,Hanover - Cedar Elementary,01220004, 184, 19.0, 504, 46.4, 53.6, 4.0, 25.0,11.5 +3.54,3.54,a-reso-i1,2022-23,Hanover - Center Elementary,01220005, 241, 22.3, 645, 50.4, 49.5, 1.6, 24.7,11.5 +5.0,5.0,a-reso-i1,2022-23,Hanover - Hanover High,01220505, 337, 15.0, 671, 47.8, 52.0, 0.5, 17.9,12.8 +3.94,3.94,a-reso-i1,2022-23,Hanover - Hanover Middle,01220305, 780, 20.3, 811, 47.2, 52.8, 0.4, 23.7,9.7 +5.1,5,a-reso-i1,2022-23,Harvard - Bromfield,01250505, 300, 14.5, 560, 50.7, 49.1, 1.6, 8.0,7.5 +4.4799999999999995,4.48,a-reso-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 245, 17.6, 466, 46.1, 53.9, 3.9, 6.9,8.6 +5.14,5,a-reso-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 130, 14.3, 217, 51.2, 48.4, 0.5, 31.8,25.4 +6.26,5,a-reso-i1,2022-23,Hatfield - Smith Academy,01270505, 126, 8.7, 134, 41.8, 58.2, 0.0, 23.1,14.2 +7.5,5,a-reso-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 58, 2.5, 31, 16.1, 83.9, 6.5, 100.0,83.9 +4.6,4.6,a-reso-i1,2022-23,Haverhill - Bradford Elementary,01280008, 327, 17.0, 514, 44.6, 55.5, 19.5, 23.0,66.9 +3.84,3.84,a-reso-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 489, 20.8," 1,078", 48.4, 51.5, 5.8, 21.0,45.8 +3.8200000000000003,3.82,a-reso-i1,2022-23,Haverhill - Consentino Middle School,01280100, 345, 20.9, 743, 47.6, 52.2, 14.8, 17.1,70 +3.4200000000000004,3.42,a-reso-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 227, 22.9, 584, 48.1, 51.9, 11.1, 24.1,69.4 +5.720000000000001,5,a-reso-i1,2022-23,Haverhill - Gateway Academy,01280515, 93, 11.4, 94, 52.1, 47.9, 8.5, 42.6,81.9 +4.6,4.6,a-reso-i1,2022-23,Haverhill - Golden Hill,01280026, 290, 17.0, 458, 52.6, 47.4, 14.9, 19.9,65.1 +6.659999999999999,5,a-reso-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 50, 6.7, 42, 26.2, 73.8, 2.4, 100.0,85.7 +4.7,4.7,a-reso-i1,2022-23,Haverhill - Haverhill High,01280505, 896, 16.5," 2,062", 47.6, 52.1, 10.7, 21.4,54.7 +3.04,3.04,a-reso-i1,2022-23,Haverhill - John G Whittier,01280085, 180, 24.8, 495, 48.9, 50.7, 7.3, 18.6,61.6 +6.5200000000000005,5,a-reso-i1,2022-23,Haverhill - Moody,01280045, 324, 7.4, 200, 38.5, 61.5, 4.5, 66.5,63.5 +6.1,5,a-reso-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 126, 9.5, 133, 37.6, 62.4, 0.0, 59.4,57.1 +4.68,4.68,a-reso-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 327, 16.6, 526, 47.0, 53.0, 15.2, 28.1,71.9 +3.94,3.94,a-reso-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 220, 20.3, 486, 53.9, 46.1, 14.4, 20.8,61.3 +4.12,4.12,a-reso-i1,2022-23,Haverhill - Tilton,01280075, 154, 19.4, 326, 45.7, 54.3, 21.5, 19.6,73.3 +4.0,4.0,a-reso-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 77, 20.0, 179, 53.1, 46.9, 16.8, 22.9,72.6 +4.5,4.5,a-reso-i1,2022-23,Haverhill - Walnut Square,01280080, 92, 17.5, 141, 47.5, 52.5, 13.5, 23.4,53.9 +5.74,5,a-reso-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 31, 11.3, 91, 52.8, 47.3, 2.2, 36.3,58.2 +6.14,5,a-reso-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 75, 9.3, 107, 49.5, 50.5, 7.5, 19.6,78.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 119, 21.3, 318, 50.0, 50.0, 7.9, 23.0,41.5 +2.6399999999999997,2.64,a-reso-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 53, 26.8, 218, 41.3, 56.0, 0.0, 20.6,20.2 +4.1,4.1,a-reso-i1,2022-23,Hingham - East Elementary School,01310005, 206, 19.5, 521, 43.4, 56.6, 1.5, 26.9,8.6 +5.26,5,a-reso-i1,2022-23,Hingham - Hingham High,01310505, 625, 13.7," 1,158", 47.0, 52.7, 0.2, 7.3,6.9 +5.16,5,a-reso-i1,2022-23,Hingham - Hingham Middle School,01310410, 622, 14.2, 840, 49.3, 50.6, 0.5, 18.6,8 +3.46,3.46,a-reso-i1,2022-23,Hingham - Plymouth River,01310019, 152, 22.7, 383, 49.1, 50.9, 1.6, 19.3,8.1 +3.28,3.28,a-reso-i1,2022-23,Hingham - South Elementary,01310020, 192, 23.6, 503, 48.7, 51.3, 0.6, 18.9,5.8 +3.66,3.66,a-reso-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 168, 21.7, 405, 49.4, 50.6, 1.5, 21.0,8.4 +4.9,4.9,a-reso-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 376, 15.5, 653, 46.1, 53.6, 6.9, 17.3,42.4 +4.4399999999999995,4.44,a-reso-i1,2022-23,Holbrook - John F Kennedy,01330018, 322, 17.8, 685, 48.9, 51.1, 8.9, 23.8,44.2 +5.0,5.0,a-reso-i1,2022-23,Holland - Holland Elementary,01350005, 73, 15.0, 229, 49.8, 50.2, 0.9, 10.9,40.6 +5.04,5,a-reso-i1,2022-23,Holliston - Holliston High,01360505, 516, 14.8, 811, 48.0, 51.1, 1.0, 16.7,12 +4.38,4.38,a-reso-i1,2022-23,Holliston - Miller School,01360007, 351, 18.1, 605, 49.1, 50.7, 3.0, 23.0,9.1 +4.66,4.66,a-reso-i1,2022-23,Holliston - Placentino Elementary,01360010, 234, 16.7, 721, 44.9, 54.8, 5.4, 18.2,10 +4.4,4.4,a-reso-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 331, 18.0, 655, 48.2, 51.3, 1.5, 20.8,11 +4.54,4.54,a-reso-i1,2022-23,Holyoke - E N White Elementary,01370045, 157, 17.3, 415, 48.2, 51.8, 8.0, 28.7,72.3 +5.12,5,a-reso-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 79, 14.4, 185, 50.8, 49.2, 14.1, 17.3,97.3 +4.8,4.8,a-reso-i1,2022-23,Holyoke - Holyoke High,01370505," 1,066", 16.0," 1,445", 46.7, 53.0, 19.8, 26.9,83.3 +3.78,3.78,a-reso-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 103, 21.1, 297, 46.1, 53.9, 25.9, 39.1,94.6 +4.18,4.18,a-reso-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 102, 19.1, 313, 45.4, 54.6, 19.5, 32.0,90.1 +4.0600000000000005,4.06,a-reso-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 162, 19.7, 387, 51.2, 48.8, 30.8, 20.2,69.8 +4.1,4.1,a-reso-i1,2022-23,Holyoke - Kelly Elementary,01370040, 108, 19.5, 331, 51.1, 48.9, 24.2, 26.0,94.3 +4.9,4.9,a-reso-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 157, 15.5, 423, 47.3, 52.7, 16.6, 32.9,89.8 +4.4399999999999995,4.44,a-reso-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 154, 17.8, 348, 45.7, 54.3, 13.8, 33.3,78.2 +5.82,5,a-reso-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 202, 10.9, 351, 40.7, 59.3, 15.4, 47.6,95.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 68, 17.2, 325, 50.8, 49.2, 18.2, 27.1,94.8 +5.32,5,a-reso-i1,2022-23,Holyoke - William R. Peck School,01370030, 95, 13.4, 216, 49.5, 50.5, 18.1, 35.7,95.8 +3.34,3.34,a-reso-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 207, 23.3, 697, 54.2, 45.8, 10.0, 25.3,83.5 +4.279999999999999,4.28,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 143, 18.6, 390, 45.9, 54.1, 1.3, 28.7,63.6 +5.6,5,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 176, 12.0, 328, 51.8, 48.2, 0.9, 26.8,60.1 +4.720000000000001,4.72,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 204, 16.4, 298, 49.0, 50.7, 1.0, 23.5,59.4 +5.4799999999999995,5,a-reso-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 325, 12.6, 440, 48.9, 50.5, 2.1, 19.3,24.1 +4.04,4.04,a-reso-i1,2022-23,Hopedale - Memorial,01380010, 260, 19.8, 554, 45.9, 54.2, 9.0, 24.4,20.8 +6.58,5,a-reso-i1,2022-23,Hopedale - Park Street School,01380003, 112, 7.1, 113, 44.3, 55.8, 0.0, 20.4,17.7 +3.72,3.72,a-reso-i1,2022-23,Hopkinton - Elmwood,01390010, 153, 21.4, 637, 48.7, 51.3, 10.8, 10.4,6.4 +3.34,3.34,a-reso-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 265, 23.3, 640, 50.0, 50.0, 4.1, 13.3,6.4 +4.36,4.36,a-reso-i1,2022-23,Hopkinton - Hopkinton High,01390505," 1,013", 18.2," 1,245", 49.8, 49.8, 1.6, 13.4,9.6 +3.62,3.62,a-reso-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 586, 21.9, 983, 49.0, 50.8, 1.2, 14.1,6.4 +5.9,5,a-reso-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 15, 10.5, 112, 42.0, 58.0, 13.4, 50.9,9.8 +4.12,4.12,a-reso-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 168, 19.4, 604, 46.5, 53.3, 19.5, 13.1,7.3 +4.220000000000001,4.22,a-reso-i1,2022-23,Hudson - C A Farley,01410030, 202, 18.9, 433, 51.3, 48.7, 27.0, 18.5,41.6 +4.24,4.24,a-reso-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 301, 18.8, 578, 45.7, 54.2, 13.5, 21.6,41.9 +4.36,4.36,a-reso-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 144, 18.2, 291, 51.2, 48.8, 19.2, 16.5,30.9 +5.220000000000001,5,a-reso-i1,2022-23,Hudson - Hudson High,01410505, 498, 13.9, 831, 53.0, 46.8, 11.2, 16.7,37.6 +4.34,4.34,a-reso-i1,2022-23,Hudson - Mulready Elementary,01410007, 116, 18.3, 248, 47.6, 52.4, 22.2, 30.2,36.7 +6.08,5,a-reso-i1,2022-23,Hull - Hull High,01420505, 216, 9.6, 243, 43.6, 55.1, 2.9, 17.7,31.7 +4.92,4.92,a-reso-i1,2022-23,Hull - Lillian M Jacobs,01420015, 185, 15.4, 360, 44.7, 55.3, 0.6, 26.4,33.9 +5.2,5,a-reso-i1,2022-23,Hull - Memorial Middle,01420305, 102, 14.0, 167, 49.1, 50.9, 1.8, 19.8,29.9 +4.3,4.3,a-reso-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 436, 18.5, 793, 50.4, 49.1, 1.4, 23.6,27.1 +5.66,5,a-reso-i1,2022-23,Ipswich - Ipswich High,01440505, 366, 11.7, 500, 52.0, 47.8, 1.8, 16.0,19.2 +4.64,4.64,a-reso-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 267, 16.8, 365, 51.2, 48.8, 1.1, 18.6,19.2 +4.5,4.5,a-reso-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 234, 17.5, 370, 48.7, 51.4, 3.0, 24.3,15.7 +4.36,4.36,a-reso-i1,2022-23,Ipswich - Winthrop,01440015, 226, 18.2, 384, 49.2, 50.8, 6.8, 24.7,27.3 +3.66,3.66,a-reso-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 157, 21.7, 576, 48.8, 51.2, 14.8, 20.0,76.6 +3.22,3.22,a-reso-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 555, 23.9," 1,604", 50.1, 49.9, 14.4, 15.0,65.8 +4.84,4.84,a-reso-i1,2022-23,King Philip - King Philip Middle School,06900510, 398, 15.8, 677, 48.9, 50.7, 0.7, 19.9,18.6 +4.779999999999999,4.78,a-reso-i1,2022-23,King Philip - King Philip Regional High,06900505, 482, 16.1," 1,140", 49.2, 50.4, 0.3, 15.5,15.4 +3.46,3.46,a-reso-i1,2022-23,Kingston - Kingston Elementary,01450005, 166, 22.7, 666, 43.5, 56.5, 4.8, 26.9,26 +3.7399999999999998,3.74,a-reso-i1,2022-23,Kingston - Kingston Intermediate,01450020, 236, 21.3, 600, 50.0, 50.0, 4.2, 20.7,23 +4.62,4.62,a-reso-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 279, 16.9, 406, 49.0, 50.5, 42.1, 15.8,87.2 +3.56,3.56,a-reso-i1,2022-23,Lawrence - Arlington Elementary,01490009, 211, 22.2, 620, 47.1, 52.1, 61.5, 16.9,91.8 +3.1799999999999997,3.18,a-reso-i1,2022-23,Lawrence - Arlington Middle School,01490017, 314, 24.1, 598, 48.2, 51.7, 45.7, 15.2,91.5 +3.84,3.84,a-reso-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 350, 20.8, 679, 45.7, 54.2, 36.4, 17.8,85.6 +5.12,5,a-reso-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 393, 14.4, 504, 50.6, 49.2, 32.3, 24.4,83.3 +4.08,4.08,a-reso-i1,2022-23,Lawrence - Francis M Leahy,01490040, 192, 19.6, 395, 44.3, 55.7, 46.8, 13.7,92.4 +3.46,3.46,a-reso-i1,2022-23,Lawrence - Frost Middle School,01490525, 241, 22.7, 503, 49.5, 50.3, 23.9, 21.9,77.3 +4.36,4.36,a-reso-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 335, 18.2, 481, 45.1, 54.9, 44.7, 15.2,86.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 303, 15.3, 437, 49.4, 50.6, 40.3, 19.0,88.1 +4.54,4.54,a-reso-i1,2022-23,Lawrence - High School Learning Center,01490536, 99, 17.3, 203, 38.4, 61.6, 52.7, 20.2,85.7 +5.62,5,a-reso-i1,2022-23,Lawrence - James F Hennessey,01490020, 143, 11.9, 316, 45.6, 54.4, 52.5, 35.1,87.7 +5.36,5,a-reso-i1,2022-23,Lawrence - John Breen School,01490003, 64, 13.2, 313, 41.2, 58.8, 35.5, 48.9,85.3 +4.2,4.2,a-reso-i1,2022-23,Lawrence - John K Tarbox,01490075, 135, 19.0, 291, 42.3, 57.7, 41.9, 18.6,88 +3.78,3.78,a-reso-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 42, 21.1, 200, 48.0, 52.0, 36.5, 21.5,91.5 +5.08,5,a-reso-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 78, 14.6, 239, 46.4, 53.6, 40.6, 39.3,88.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Lawrence - Lawrence High School,01490515," 1,312", 20.1," 3,139", 46.8, 52.9, 42.9, 14.2,82.2 +2.5799999999999996,2.58,a-reso-i1,2022-23,Lawrence - Leonard Middle School,01490090, 112, 27.1, 338, 46.2, 53.9, 40.8, 12.1,85.5 +3.8,3.8,a-reso-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 219, 21.0, 473, 49.5, 50.5, 49.3, 15.6,88.6 +2.1799999999999997,2.18,a-reso-i1,2022-23,Lawrence - Oliver Middle School,01490049, 86, 29.1, 357, 46.2, 53.5, 38.9, 19.1,87.7 +3.8200000000000003,3.82,a-reso-i1,2022-23,Lawrence - Parthum Middle School,01490027, 280, 20.9, 532, 45.5, 54.5, 28.0, 18.8,81.4 +4.08,4.08,a-reso-i1,2022-23,Lawrence - RISE Academy,01490615, 49, 19.6, 85, 27.1, 72.9, 28.2, 41.2,85.9 +3.96,3.96,a-reso-i1,2022-23,Lawrence - Robert Frost,01490018, 216, 20.2, 549, 50.3, 49.2, 39.2, 21.1,79.2 +5.0600000000000005,5,a-reso-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 37, 14.7, 232, 42.2, 57.8, 50.9, 45.7,87.5 +7.12,5,a-reso-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 200, 4.4, 109, 17.4, 82.6, 30.3, 100.0,96.3 +3.6,3.6,a-reso-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 330, 22.0, 684, 49.7, 50.2, 43.6, 18.0,88.7 +4.4399999999999995,4.44,a-reso-i1,2022-23,Lawrence - Spark Academy,01490085, 179, 17.8, 457, 44.6, 55.4, 34.1, 19.3,89.3 +3.72,3.72,a-reso-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 394, 21.4, 853, 54.9, 45.1, 33.2, 7.5,76.3 +3.1399999999999997,3.14,a-reso-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 234, 24.3, 657, 50.1, 49.9, 26.6, 16.1,79 +4.92,4.92,a-reso-i1,2022-23,Lee - Lee Elementary,01500025, 117, 15.4, 343, 49.0, 51.0, 7.6, 19.2,39.9 +5.8,5,a-reso-i1,2022-23,Lee - Lee Middle/High School,01500505, 239, 11.0, 322, 45.3, 54.4, 3.7, 14.6,41.9 +4.26,4.26,a-reso-i1,2022-23,Leicester - Leicester Elementary,01510005, 208, 18.7, 487, 52.0, 48.1, 9.0, 24.9,43.5 +4.58,4.58,a-reso-i1,2022-23,Leicester - Leicester High,01510505, 244, 17.1, 418, 45.0, 55.0, 3.6, 12.4,31.6 +4.2,4.2,a-reso-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 12, 19.0, 57, 33.3, 66.7, 0.0, 73.7,45.6 +4.58,4.58,a-reso-i1,2022-23,Leicester - Leicester Middle,01510015, 232, 17.1, 415, 46.5, 53.3, 5.8, 19.8,38.6 +5.6,5,a-reso-i1,2022-23,Lenox - Lenox Memorial High,01520505, 325, 12.0, 442, 48.0, 52.0, 2.7, 9.1,25.1 +4.4799999999999995,4.48,a-reso-i1,2022-23,Lenox - Morris,01520015, 149, 17.6, 344, 47.1, 52.9, 4.9, 11.1,24.7 +6.659999999999999,5,a-reso-i1,2022-23,Leominster - Bennett,01530003, 18, 6.7, 120, 36.7, 63.3, 5.0, 55.8,44.2 +5.4799999999999995,5,a-reso-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 158, 12.6, 771, 35.0, 64.7, 10.9, 25.8,54.6 +3.5799999999999996,3.58,a-reso-i1,2022-23,Leominster - Fall Brook,01530007, 299, 22.1, 617, 44.6, 55.3, 17.0, 24.3,49.3 +4.84,4.84,a-reso-i1,2022-23,Leominster - Frances Drake School,01530010, 285, 15.8, 467, 49.3, 50.8, 24.6, 36.4,66.2 +3.8600000000000003,3.86,a-reso-i1,2022-23,Leominster - Johnny Appleseed,01530025, 333, 20.7, 654, 50.9, 49.1, 14.1, 19.0,52.8 +4.74,4.74,a-reso-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 8, 16.3, 51, 60.8, 33.3, 5.9, 49.0,66.7 +4.12,4.12,a-reso-i1,2022-23,Leominster - Leominster High School,01530505, 638, 19.4," 1,786", 47.3, 52.4, 10.8, 19.9,52.6 +6.24,5,a-reso-i1,2022-23,Leominster - Lincoln School,01530005, 4, 8.8, 35, 45.7, 54.3, 0.0, 60.0,57.1 +3.4200000000000004,3.42,a-reso-i1,2022-23,Leominster - Northwest,01530030, 346, 22.9, 729, 52.3, 47.7, 24.1, 22.4,61.3 +4.4799999999999995,4.48,a-reso-i1,2022-23,Leominster - Priest Street,01530040, 49, 17.6, 123, 48.0, 52.0, 24.4, 24.4,66.7 +4.9799999999999995,4.98,a-reso-i1,2022-23,Leominster - Samoset School,01530045, 369, 15.1, 521, 45.1, 54.9, 10.0, 22.5,51.1 +3.8600000000000003,3.86,a-reso-i1,2022-23,Leominster - Sky View Middle School,01530320, 669, 20.7, 928, 48.3, 51.6, 13.5, 22.6,60.1 +4.76,4.76,a-reso-i1,2022-23,Leverett - Leverett Elementary,01540005, 53, 16.2, 139, 51.1, 48.9, 0.0, 22.3,23.7 +3.6799999999999997,3.68,a-reso-i1,2022-23,Lexington - Bowman,01550008, 117, 21.6, 445, 49.2, 50.8, 19.1, 8.8,5.2 +4.14,4.14,a-reso-i1,2022-23,Lexington - Bridge,01550006, 111, 19.3, 383, 50.7, 49.4, 14.9, 14.1,12.3 +4.5,4.5,a-reso-i1,2022-23,Lexington - Fiske,01550015, 110, 17.5, 345, 47.5, 52.5, 14.8, 23.5,5.8 +4.279999999999999,4.28,a-reso-i1,2022-23,Lexington - Harrington,01550030, 121, 18.6, 397, 51.9, 48.1, 14.6, 13.1,9.1 +4.76,4.76,a-reso-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 553, 16.2, 835, 49.3, 50.5, 5.0, 12.9,9.1 +3.6799999999999997,3.68,a-reso-i1,2022-23,Lexington - Joseph Estabrook,01550010, 142, 21.6, 551, 47.2, 52.8, 14.9, 15.4,7.1 +5.4799999999999995,5,a-reso-i1,2022-23,Lexington - Lexington Children's Place,01550001, 7, 12.6, 88, 43.2, 56.8, 27.3, 53.4,22.7 +4.4,4.4,a-reso-i1,2022-23,Lexington - Lexington High,01550505," 1,183", 18.0," 2,329", 50.2, 49.5, 3.7, 12.4,7.6 +3.72,3.72,a-reso-i1,2022-23,Lexington - Maria Hastings,01550035, 161, 21.4, 621, 49.0, 51.1, 14.0, 16.3,7.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 500, 19.9, 965, 47.2, 52.8, 7.5, 15.3,9 +8.0,5,a-reso-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +5.2,5,a-reso-i1,2022-23,Lincoln - Hanscom Middle,01570305, 138, 14.0, 226, 46.5, 53.5, 0.0, 23.0,4.4 +5.12,5,a-reso-i1,2022-23,Lincoln - Hanscom Primary,01570006, 76, 14.4, 229, 52.0, 48.0, 2.6, 25.3,3.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lincoln - Lincoln School,01570025, 252, 17.2, 547, 49.7, 50.1, 4.9, 21.4,21.8 +4.42,4.42,a-reso-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,233", 17.9," 1,490", 51.1, 48.6, 0.3, 20.3,8.9 +5.24,5,a-reso-i1,2022-23,Littleton - Littleton High School,01580505, 246, 13.8, 480, 50.6, 48.8, 0.6, 12.1,11.3 +3.94,3.94,a-reso-i1,2022-23,Littleton - Littleton Middle School,01580305, 187, 20.3, 382, 50.3, 49.7, 0.5, 17.3,12 +3.66,3.66,a-reso-i1,2022-23,Littleton - Russell St Elementary,01580015, 198, 21.7, 390, 49.2, 50.5, 1.3, 17.4,10.8 +4.16,4.16,a-reso-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 210, 19.2, 453, 45.9, 54.1, 4.0, 21.9,9.9 +4.16,4.16,a-reso-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 190, 19.2, 395, 52.2, 47.9, 4.1, 21.3,8.1 +4.42,4.42,a-reso-i1,2022-23,Longmeadow - Center,01590010, 216, 17.9, 425, 49.7, 50.4, 0.2, 20.2,11.3 +4.32,4.32,a-reso-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 181, 18.4, 335, 47.8, 52.2, 1.5, 19.4,12.2 +4.4799999999999995,4.48,a-reso-i1,2022-23,Longmeadow - Longmeadow High,01590505, 390, 17.6, 898, 48.8, 50.6, 0.3, 17.2,11.5 +4.68,4.68,a-reso-i1,2022-23,Longmeadow - Williams Middle,01590305, 177, 16.6, 284, 42.3, 57.4, 0.0, 21.1,9.5 +4.4,4.4,a-reso-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 191, 18.0, 447, 48.3, 51.7, 0.7, 25.5,17.9 +4.6,4.6,a-reso-i1,2022-23,Lowell - Abraham Lincoln,01600020, 322, 17.0, 481, 50.7, 49.3, 34.7, 17.9,81.7 +3.3600000000000003,3.36,a-reso-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 200, 23.2, 536, 50.2, 49.8, 20.5, 19.8,75.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 334, 18.6, 512, 52.5, 47.5, 30.1, 26.4,77.9 +5.9,5,a-reso-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 144, 10.5, 116, 41.4, 58.6, 20.7, 52.6,72.4 +4.62,4.62,a-reso-i1,2022-23,Lowell - Charles W Morey,01600030, 332, 16.9, 490, 50.6, 49.4, 30.6, 22.5,70.6 +4.54,4.54,a-reso-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 308, 17.3, 467, 50.1, 49.9, 37.3, 20.1,88.2 +3.28,3.28,a-reso-i1,2022-23,Lowell - Dr An Wang School,01600345, 292, 23.6, 697, 47.6, 52.2, 21.5, 19.8,67.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 308, 17.2, 469, 46.7, 53.3, 31.6, 20.5,64.8 +7.38,5,a-reso-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 155, 3.1, 59, 23.7, 76.3, 8.5, 100.0,71.2 +4.4,4.4,a-reso-i1,2022-23,Lowell - Greenhalge,01600015, 313, 18.0, 493, 47.5, 52.5, 34.9, 21.5,85 +3.34,3.34,a-reso-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 271, 23.3, 645, 50.9, 49.2, 29.6, 20.2,82.3 +3.54,3.54,a-reso-i1,2022-23,Lowell - James S Daley Middle School,01600315, 335, 22.3, 697, 45.6, 54.2, 15.6, 21.0,60.8 +3.84,3.84,a-reso-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 360, 20.8, 646, 48.5, 51.4, 31.0, 22.5,74 +4.66,4.66,a-reso-i1,2022-23,Lowell - John J Shaughnessy,01600050, 338, 16.7, 498, 47.4, 52.6, 28.5, 21.5,76.1 +4.54,4.54,a-reso-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 306, 17.3, 467, 49.5, 50.5, 34.7, 21.4,79.2 +4.1,4.1,a-reso-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 351, 19.5, 667, 44.2, 55.6, 24.7, 16.2,79.8 +7.5,5,a-reso-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 41, 2.5, 16, 25.0, 75.0, 25.0, 100.0,100 +6.9,5,a-reso-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 92, 5.5, 44, 29.6, 70.5, 2.3, 100.0,93.2 +4.12,4.12,a-reso-i1,2022-23,Lowell - Lowell High,01600505," 2,172", 19.4," 3,256", 46.0, 53.8, 27.0, 14.1,68.5 +3.88,3.88,a-reso-i1,2022-23,Lowell - Moody Elementary,01600027, 138, 20.6, 249, 51.8, 48.2, 50.2, 16.5,88.4 +4.6,4.6,a-reso-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 318, 17.0, 473, 49.1, 51.0, 21.4, 23.0,64.3 +4.36,4.36,a-reso-i1,2022-23,Lowell - Peter W Reilly,01600040, 301, 18.2, 484, 52.5, 47.5, 22.3, 21.9,56 +4.68,4.68,a-reso-i1,2022-23,Lowell - Pyne Arts,01600018, 393, 16.6, 505, 47.9, 52.1, 22.8, 26.3,60.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 459, 21.2, 883, 48.1, 51.9, 33.0, 16.3,85.2 +3.94,3.94,a-reso-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 276, 20.3, 493, 51.7, 48.3, 28.2, 19.7,80.7 +6.44,5,a-reso-i1,2022-23,Lowell - The Career Academy,01600515, 102, 7.8, 84, 39.3, 60.7, 15.5, 29.8,77.4 +5.18,5,a-reso-i1,2022-23,Lowell - Washington,01600055, 207, 14.1, 255, 41.2, 58.8, 42.0, 29.8,73.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 339, 21.3, 807, 51.1, 48.8, 53.7, 12.3,67.3 +4.46,4.46,a-reso-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 107, 17.7, 118, 59.3, 38.1, 0.0, 42.4,76.3 +5.24,5,a-reso-i1,2022-23,Ludlow - East Street Elementary School,01610010, 202, 13.8, 369, 43.4, 56.6, 15.2, 25.2,42.3 +4.74,4.74,a-reso-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 358, 16.3, 654, 46.6, 53.4, 9.8, 18.8,41.6 +5.24,5,a-reso-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 391, 13.8, 789, 48.8, 51.1, 2.7, 16.4,31.2 +4.68,4.68,a-reso-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 342, 16.6, 519, 51.1, 48.9, 4.6, 18.9,38.9 +6.8,5,a-reso-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1, 6.0, 6, 50.0, 50.0, 0.0, 100.0,66.7 +5.220000000000001,5,a-reso-i1,2022-23,Lunenburg - Lunenburg High,01620505, 244, 13.9, 444, 47.1, 52.7, 1.1, 9.9,21.6 +3.6399999999999997,3.64,a-reso-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 213, 21.8, 387, 49.1, 50.7, 1.0, 17.1,22.5 +3.88,3.88,a-reso-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 167, 20.6, 390, 50.0, 50.0, 5.1, 18.7,28.2 +3.6,3.6,a-reso-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 272, 22.0, 363, 51.0, 49.0, 1.9, 15.4,25.9 +3.9799999999999995,3.98,a-reso-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 137, 20.1, 521, 53.2, 46.8, 66.6, 16.9,83.7 +4.74,4.74,a-reso-i1,2022-23,Lynn - Aborn,01630011, 55, 16.3, 219, 49.3, 50.7, 31.5, 13.2,53.9 +3.88,3.88,a-reso-i1,2022-23,Lynn - Breed Middle School,01630405, 728, 20.6," 1,309", 47.3, 52.7, 27.7, 23.1,76.5 +4.68,4.68,a-reso-i1,2022-23,Lynn - Brickett Elementary,01630020, 105, 16.6, 327, 46.5, 53.5, 56.6, 15.9,81.4 +6.08,5,a-reso-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 170, 9.6, 326, 39.6, 60.4, 23.3, 50.6,50.9 +3.94,3.94,a-reso-i1,2022-23,Lynn - Classical High,01630505, 660, 20.3," 1,872", 46.3, 53.6, 34.2, 15.7,74 +4.82,4.82,a-reso-i1,2022-23,Lynn - Cobbet Elementary,01630035, 214, 15.9, 626, 44.9, 55.1, 72.0, 16.5,87.1 +4.76,4.76,a-reso-i1,2022-23,Lynn - E J Harrington,01630045, 207, 16.2, 632, 49.1, 51.0, 58.1, 22.3,86.1 +4.76,4.76,a-reso-i1,2022-23,Lynn - Edward A Sisson,01630095, 141, 16.2, 443, 49.4, 50.6, 40.0, 21.0,56.7 +6.38,5,a-reso-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 182, 8.1, 332, 41.6, 57.2, 52.7, 20.8,88 +4.74,4.74,a-reso-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 42, 16.3, 81, 44.4, 54.3, 12.4, 19.8,64.2 +4.36,4.36,a-reso-i1,2022-23,Lynn - Hood,01630055, 149, 18.2, 505, 48.3, 51.7, 55.8, 17.8,76.4 +4.46,4.46,a-reso-i1,2022-23,Lynn - Ingalls,01630060, 219, 17.7, 715, 47.6, 52.5, 70.2, 13.3,82.1 +5.5,5,a-reso-i1,2022-23,Lynn - Julia F Callahan,01630030, 168, 12.5, 414, 43.7, 56.3, 36.7, 35.0,73 +4.96,4.96,a-reso-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 69, 15.2, 203, 52.2, 47.8, 45.8, 19.7,63.1 +3.94,3.94,a-reso-i1,2022-23,Lynn - Lynn English High,01630510, 767, 20.3," 2,196", 47.0, 52.7, 37.1, 12.3,74 +4.279999999999999,4.28,a-reso-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 789, 18.6," 1,551", 46.0, 53.8, 12.1, 21.9,68.7 +5.5200000000000005,5,a-reso-i1,2022-23,Lynn - Lynn Woods,01630075, 61, 12.4, 159, 48.4, 51.6, 27.0, 29.6,44 +4.42,4.42,a-reso-i1,2022-23,Lynn - Pickering Middle,01630420, 305, 17.9, 581, 48.4, 51.6, 18.6, 24.8,62.1 +4.36,4.36,a-reso-i1,2022-23,Lynn - Robert L Ford,01630050, 126, 18.2, 419, 52.5, 47.5, 64.9, 14.1,77.8 +4.0600000000000005,4.06,a-reso-i1,2022-23,Lynn - Sewell-Anderson,01630085, 80, 19.7, 294, 56.5, 43.5, 53.1, 7.8,69.7 +4.0600000000000005,4.06,a-reso-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 595, 19.7," 1,316", 47.9, 52.1, 29.9, 21.1,80.6 +4.38,4.38,a-reso-i1,2022-23,Lynn - Tracy,01630100, 114, 18.1, 384, 49.0, 51.0, 69.0, 13.3,80.7 +6.1,5,a-reso-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 32, 9.5, 76, 30.3, 69.7, 7.9, 71.1,84.2 +4.6,4.6,a-reso-i1,2022-23,Lynn - Washington Elementary School,01630005, 144, 17.0, 444, 49.1, 50.9, 67.8, 24.6,83.8 +7.340000000000001,5,a-reso-i1,2022-23,Lynn - William R Fallon,01630080, 40, 3.3, 30, 16.7, 83.3, 13.3, 96.7,96.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lynn - Wm P Connery,01630040, 182, 17.2, 570, 52.3, 47.7, 65.8, 16.7,82.1 +3.9200000000000004,3.92,a-reso-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 227, 20.4, 450, 52.0, 48.0, 4.4, 16.4,11.6 +5.14,5,a-reso-i1,2022-23,Lynnfield - Lynnfield High,01640505, 269, 14.3, 566, 48.8, 51.2, 2.3, 16.1,12 +3.96,3.96,a-reso-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 393, 20.2, 720, 47.9, 51.9, 1.0, 19.9,9.3 +6.16,5,a-reso-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 19, 9.2, 46, 43.5, 56.5, 0.0, 54.4,21.7 +4.0,4.0,a-reso-i1,2022-23,Lynnfield - Summer Street,01640020, 216, 20.0, 422, 49.3, 50.7, 1.4, 13.3,6.2 +4.96,4.96,a-reso-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 19, 15.2, 48, 50.0, 50.0, 0.0, 0.0,4.2 +4.4,4.4,a-reso-i1,2022-23,Malden - Beebe,01650003, 474, 18.0, 880, 48.3, 51.7, 26.4, 13.8,60.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Malden - Ferryway,01650013, 420, 20.1, 889, 50.6, 49.4, 30.7, 15.9,67.4 +4.46,4.46,a-reso-i1,2022-23,Malden - Forestdale,01650027, 379, 17.7, 594, 45.3, 54.6, 19.2, 25.4,53 +3.62,3.62,a-reso-i1,2022-23,Malden - Linden,01650047, 373, 21.9, 856, 46.3, 53.7, 21.7, 17.6,54.2 +1.6,1.6,a-reso-i1,2022-23,Malden - Malden Early Learning Center,01650049, 30, 32.0, 321, 38.6, 61.4, 0.0, 60.8,50.8 +4.2,4.2,a-reso-i1,2022-23,Malden - Malden High,01650505, 723, 19.0," 1,879", 49.8, 50.1, 18.7, 15.9,62 +4.14,4.14,a-reso-i1,2022-23,Malden - Salemwood,01650057, 527, 19.3," 1,058", 50.3, 49.6, 41.4, 13.6,75.1 +4.16,4.16,a-reso-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 122, 19.2, 228, 58.3, 41.7, 0.9, 19.3,21.9 +5.66,5,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 305, 11.7, 416, 49.5, 50.2, 0.2, 9.6,15.4 +4.84,4.84,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 177, 15.8, 283, 51.2, 48.8, 0.4, 19.1,13.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 171, 16.4, 290, 51.0, 49.0, 0.0, 21.4,8.6 +3.78,3.78,a-reso-i1,2022-23,Mansfield - Everett W Robinson,01670007, 144, 21.1, 761, 50.5, 49.5, 3.3, 14.7,23 +4.58,4.58,a-reso-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 520, 17.1, 808, 46.9, 53.1, 1.6, 15.2,21.9 +3.8600000000000003,3.86,a-reso-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 159, 20.7, 704, 48.6, 51.3, 4.0, 19.0,20.3 +5.2,5,a-reso-i1,2022-23,Mansfield - Mansfield High,01670505, 707, 14.0," 1,103", 47.1, 52.7, 0.9, 15.1,18 +5.7,5,a-reso-i1,2022-23,Mansfield - Roland Green School,01670003, 10, 11.5, 115, 39.1, 60.9, 0.0, 37.4,30.4 +4.96,4.96,a-reso-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 167, 15.2, 289, 41.2, 54.7, 0.4, 53.3,64 +4.38,4.38,a-reso-i1,2022-23,Marblehead - Glover,01680020, 63, 18.1, 331, 44.4, 55.6, 5.7, 21.5,7.9 +3.9799999999999995,3.98,a-reso-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 79, 20.1, 454, 46.3, 53.7, 8.2, 21.8,17.4 +5.1,5,a-reso-i1,2022-23,Marblehead - Marblehead High,01680505, 583, 14.5, 883, 49.5, 49.6, 2.7, 12.2,12.9 +4.6,4.6,a-reso-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 273, 17.0, 419, 45.8, 54.2, 3.1, 20.8,13.8 +3.44,3.44,a-reso-i1,2022-23,Marblehead - Village School,01680016, 136, 22.8, 565, 48.3, 51.7, 6.4, 24.3,12.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 90, 18.9, 218, 48.2, 51.8, 11.0, 27.1,23.4 +4.24,4.24,a-reso-i1,2022-23,Marion - Sippican,01690005, 194, 18.8, 410, 47.1, 52.9, 1.5, 21.5,29.5 +4.32,4.32,a-reso-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 738, 18.4," 1,104", 50.5, 49.6, 24.4, 14.5,61.4 +3.9,3.9,a-reso-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 277, 20.5, 712, 48.0, 52.0, 43.8, 16.3,61.7 +5.4799999999999995,5,a-reso-i1,2022-23,Marlborough - Early Childhood Center,01700006, 19, 12.6, 230, 38.7, 60.9, 28.3, 47.0,51.7 +4.0600000000000005,4.06,a-reso-i1,2022-23,Marlborough - Francis J Kane,01700008, 206, 19.7, 511, 48.3, 51.7, 29.6, 17.8,57.7 +3.66,3.66,a-reso-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 313, 21.7, 843, 45.8, 54.2, 39.9, 14.6,59.8 +5.34,5,a-reso-i1,2022-23,Marlborough - Marlborough High,01700505, 694, 13.3," 1,162", 44.8, 54.9, 29.5, 13.1,59.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,Marlborough - Richer,01700025, 237, 19.9, 579, 50.3, 49.7, 37.8, 13.0,64.8 +4.6,4.6,a-reso-i1,2022-23,Marshfield - Daniel Webster,01710015, 82, 17.0, 381, 43.3, 56.7, 7.6, 29.7,32.3 +4.66,4.66,a-reso-i1,2022-23,Marshfield - Eames Way School,01710005, 62, 16.7, 263, 50.2, 49.8, 1.5, 21.3,16.7 +4.54,4.54,a-reso-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 502, 17.3, 874, 47.3, 52.8, 1.8, 21.5,19.9 +4.26,4.26,a-reso-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 89, 18.7, 355, 44.5, 55.5, 0.0, 17.5,14.4 +4.66,4.66,a-reso-i1,2022-23,Marshfield - Marshfield High,01710505, 560, 16.7," 1,177", 50.3, 49.7, 1.1, 16.7,16.2 +4.12,4.12,a-reso-i1,2022-23,Marshfield - Martinson Elementary,01710025, 111, 19.4, 463, 46.4, 53.6, 5.8, 18.8,24.8 +4.5200000000000005,4.52,a-reso-i1,2022-23,Marshfield - South River,01710010, 70, 17.4, 261, 51.0, 49.0, 0.0, 23.0,12.6 +5.26,5,a-reso-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 457, 13.7, 765, 48.8, 51.1, 14.9, 19.1,39.4 +5.76,5,a-reso-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 99, 11.2, 179, 63.1, 36.9, 2.2, 30.7,38 +4.08,4.08,a-reso-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 108, 19.6, 353, 49.9, 50.1, 15.6, 17.6,86.1 +5.279999999999999,5,a-reso-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 579, 13.6, 988, 53.7, 46.2, 0.3, 15.7,9.2 +4.64,4.64,a-reso-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 340, 16.8, 562, 50.2, 49.8, 0.2, 18.5,9.8 +4.12,4.12,a-reso-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 152, 19.4, 412, 49.0, 51.0, 13.6, 16.5,47.6 +5.32,5,a-reso-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 468, 13.4, 677, 49.2, 50.5, 2.7, 15.2,39.3 +4.04,4.04,a-reso-i1,2022-23,Mashpee - Quashnet School,01720035, 254, 19.8, 413, 44.8, 55.2, 4.6, 17.2,44.1 +4.18,4.18,a-reso-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 406, 19.1," 1,186", 51.6, 48.4, 17.7, 23.0,73.1 +4.5200000000000005,4.52,a-reso-i1,2022-23,Mattapoisett - Center,01730005, 110, 17.4, 238, 49.2, 50.8, 0.4, 19.3,24.4 +3.78,3.78,a-reso-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 84, 21.1, 188, 47.9, 52.1, 0.0, 21.3,23.4 +4.26,4.26,a-reso-i1,2022-23,Maynard - Fowler School,01740305, 313, 18.7, 462, 47.8, 51.5, 6.1, 19.7,29.2 +4.42,4.42,a-reso-i1,2022-23,Maynard - Green Meadow,01740010, 190, 17.9, 428, 49.8, 50.2, 10.3, 21.5,29.4 +5.4,5,a-reso-i1,2022-23,Maynard - Maynard High,01740505, 199, 13.0, 315, 52.7, 46.0, 5.1, 18.4,25.4 +4.46,4.46,a-reso-i1,2022-23,Medfield - Dale Street,01750005, 249, 17.7, 390, 51.5, 48.5, 0.3, 16.9,10.5 +4.68,4.68,a-reso-i1,2022-23,Medfield - Medfield Senior High,01750505, 397, 16.6, 742, 50.8, 49.2, 0.4, 11.9,7.7 +4.1,4.1,a-reso-i1,2022-23,Medfield - Memorial School,01750003, 180, 19.5, 433, 47.6, 52.4, 2.3, 12.9,9.5 +3.8,3.8,a-reso-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 189, 21.0, 384, 54.7, 45.3, 1.0, 13.5,7.3 +5.0600000000000005,5,a-reso-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 511, 14.7, 584, 45.2, 54.6, 1.0, 17.8,8.7 +4.04,4.04,a-reso-i1,2022-23,Medford - Brooks School,01760130, 156, 19.8, 568, 49.1, 50.9, 3.0, 28.2,18.1 +6.7,5,a-reso-i1,2022-23,Medford - Curtis-Tufts,01760510, 20, 6.5, 19, 47.4, 52.6, 0.0, 100.0,63.2 +4.779999999999999,4.78,a-reso-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 182, 16.1, 495, 48.9, 50.9, 32.7, 15.6,61.6 +4.82,4.82,a-reso-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 329, 15.9, 483, 44.1, 55.7, 22.8, 18.8,48.2 +4.66,4.66,a-reso-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 339, 16.7, 468, 52.4, 47.2, 0.0, 19.9,36.3 +5.4399999999999995,5,a-reso-i1,2022-23,Medford - Medford High,01760505, 710, 12.8," 1,250", 45.2, 54.2, 11.1, 20.2,44.7 +4.779999999999999,4.78,a-reso-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 199, 16.1, 554, 49.5, 50.4, 8.3, 22.6,29.4 +5.1,5,a-reso-i1,2022-23,Medford - Missituk Elementary School,01760140, 163, 14.5, 404, 49.5, 50.3, 26.7, 24.5,43.6 +3.88,3.88,a-reso-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 202, 20.6, 495, 46.3, 53.7, 5.5, 14.6,16.4 +4.3,4.3,a-reso-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 136, 18.5, 375, 49.9, 50.1, 9.3, 18.7,16.8 +4.92,4.92,a-reso-i1,2022-23,Medway - Medway High,01770505, 306, 15.4, 623, 53.0, 46.4, 1.9, 12.8,14.6 +4.5200000000000005,4.52,a-reso-i1,2022-23,Medway - Medway Middle,01770305, 361, 17.4, 658, 48.9, 51.1, 3.0, 18.8,16.3 +4.8,4.8,a-reso-i1,2022-23,Melrose - Early Childhood Center,01780003, 33, 16.0, 287, 43.6, 56.1, 1.7, 25.4,11.9 +4.04,4.04,a-reso-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 133, 19.8, 297, 49.5, 50.5, 9.8, 17.2,16.8 +3.66,3.66,a-reso-i1,2022-23,Melrose - Horace Mann,01780025, 106, 21.7, 260, 53.1, 46.5, 0.0, 15.8,2.7 +3.88,3.88,a-reso-i1,2022-23,Melrose - Lincoln,01780020, 176, 20.6, 411, 47.7, 52.3, 21.4, 16.3,29 +4.76,4.76,a-reso-i1,2022-23,Melrose - Melrose High,01780505, 384, 16.2, 918, 50.0, 49.6, 2.8, 15.7,15.9 +3.44,3.44,a-reso-i1,2022-23,Melrose - Melrose Middle,01780305, 485, 22.8, 878, 51.7, 48.1, 3.8, 17.8,17.9 +3.6799999999999997,3.68,a-reso-i1,2022-23,Melrose - Roosevelt,01780035, 168, 21.6, 411, 48.9, 50.6, 6.1, 23.8,13.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Melrose - Winthrop,01780050, 168, 21.2, 403, 50.1, 49.4, 0.3, 13.4,6.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 133, 20.1, 358, 46.7, 53.4, 7.5, 15.9,16.2 +3.5200000000000005,3.52,a-reso-i1,2022-23,Mendon-Upton - Memorial School,07100001, 184, 22.4, 529, 51.8, 48.2, 5.7, 14.7,18.5 +4.64,4.64,a-reso-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 389, 16.8, 644, 48.9, 50.9, 2.3, 20.3,16 +5.4399999999999995,5,a-reso-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 372, 12.8, 600, 52.7, 46.8, 2.3, 14.8,17.2 +4.7,4.7,a-reso-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 597, 16.5," 1,060", 48.6, 51.4, 29.4, 21.6,53.1 +4.08,4.08,a-reso-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 592, 19.6," 1,274", 47.1, 52.9, 21.8, 22.5,58.3 +4.74,4.74,a-reso-i1,2022-23,Methuen - Marsh Grammar School,01810030, 607, 16.3," 1,072", 42.7, 57.3, 12.1, 24.2,44.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Methuen - Methuen High,01810505," 1,011", 18.6," 1,996", 48.0, 51.9, 14.2, 10.3,48.5 +4.36,4.36,a-reso-i1,2022-23,Methuen - Tenney Grammar School,01810055, 655, 18.2," 1,290", 48.1, 51.9, 19.1, 21.2,63 +4.0200000000000005,4.02,a-reso-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 261, 19.9, 576, 51.2, 48.8, 3.1, 16.2,52.3 +3.9200000000000004,3.92,a-reso-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 386, 20.4, 722, 48.2, 51.8, 1.4, 18.1,42 +3.9,3.9,a-reso-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 270, 20.5, 616, 51.1, 48.9, 2.4, 20.9,35.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 94, 20.9, 308, 47.7, 52.3, 1.6, 27.0,45.1 +4.86,4.86,a-reso-i1,2022-23,Middleborough - Middleborough High,01820505, 466, 15.7, 861, 50.8, 48.9, 2.1, 14.8,35.2 +5.279999999999999,5,a-reso-i1,2022-23,Middleton - Fuller Meadow,01840003, 136, 13.6, 295, 43.4, 56.6, 5.1, 17.6,13.6 +4.66,4.66,a-reso-i1,2022-23,Middleton - Howe-Manning,01840005, 215, 16.7, 438, 53.2, 46.8, 1.4, 24.4,11 +4.2,4.2,a-reso-i1,2022-23,Milford - Brookside,01850065, 189, 19.0, 557, 45.2, 54.8, 44.2, 18.0,60.1 +4.779999999999999,4.78,a-reso-i1,2022-23,Milford - Memorial,01850010, 190, 16.1, 484, 49.0, 51.0, 56.0, 16.1,64.9 +4.58,4.58,a-reso-i1,2022-23,Milford - Milford High,01850505, 637, 17.1," 1,347", 45.2, 54.7, 20.4, 12.6,51.7 +5.84,5,a-reso-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 36, 10.8, 190, 41.1, 59.0, 36.8, 58.4,51.6 +3.66,3.66,a-reso-i1,2022-23,Milford - Stacy Middle,01850305, 494, 21.7," 1,065", 49.0, 51.0, 21.4, 16.5,55.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Milford - Woodland,01850090, 396, 18.6, 968, 47.7, 52.2, 29.2, 18.1,57.6 +4.18,4.18,a-reso-i1,2022-23,Millbury - Elmwood Street,01860017, 155, 19.1, 448, 46.2, 53.8, 5.8, 23.4,32.4 +4.8,4.8,a-reso-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 395, 16.0, 749, 47.0, 51.8, 5.1, 22.2,37.5 +4.08,4.08,a-reso-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 212, 19.6, 469, 47.8, 52.2, 5.5, 18.3,35.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Millis - Clyde F Brown,01870005, 225, 20.7, 624, 49.5, 50.5, 4.8, 20.4,18.3 +5.54,5,a-reso-i1,2022-23,Millis - Millis High School,01870505, 171, 12.3, 314, 52.2, 46.5, 1.3, 12.1,18.5 +4.7,4.7,a-reso-i1,2022-23,Millis - Millis Middle,01870020, 180, 16.5, 273, 53.9, 46.2, 1.5, 17.2,18.7 +8.0,5,a-reso-i1,2022-23,Millis - TIES,01870515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.42,4.42,a-reso-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 533, 17.9, 951, 51.4, 48.6, 1.5, 17.4,13.6 +3.8600000000000003,3.86,a-reso-i1,2022-23,Milton - Collicot,01890005, 278, 20.7, 585, 52.0, 48.0, 1.9, 16.1,7.7 +3.6399999999999997,3.64,a-reso-i1,2022-23,Milton - Cunningham School,01890007, 253, 21.8, 638, 49.1, 50.9, 3.8, 24.3,11 +3.4799999999999995,3.48,a-reso-i1,2022-23,Milton - Glover,01890010, 291, 22.6, 631, 54.7, 45.3, 3.5, 14.4,8.9 +4.62,4.62,a-reso-i1,2022-23,Milton - Milton High,01890505, 491, 16.9," 1,066", 48.8, 50.5, 2.3, 19.9,17.1 +3.44,3.44,a-reso-i1,2022-23,Milton - Tucker,01890020, 196, 22.8, 465, 45.4, 54.4, 4.7, 20.2,26.2 +5.38,5,a-reso-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 548, 13.1, 685, 36.5, 61.3, 1.0, 28.9,19.6 +4.58,4.58,a-reso-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 64, 17.1, 278, 53.2, 46.8, 0.0, 21.6,42.1 +5.4399999999999995,5,a-reso-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 32, 12.8, 105, 44.8, 55.2, 1.9, 32.4,55.2 +6.08,5,a-reso-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 269, 9.6, 284, 50.4, 48.6, 0.4, 32.0,44 +5.14,5,a-reso-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 35, 14.3, 137, 49.6, 50.4, 0.7, 16.8,40.2 +4.84,4.84,a-reso-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 119, 15.8, 145, 44.1, 55.9, 7.6, 18.6,47.6 +4.54,4.54,a-reso-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 334, 17.3, 493, 42.0, 58.0, 5.1, 24.8,39 +5.220000000000001,5,a-reso-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 470, 13.9, 706, 53.0, 46.6, 3.1, 14.2,34.1 +4.92,4.92,a-reso-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 378, 15.4, 453, 45.5, 54.3, 3.1, 23.2,40 +4.720000000000001,4.72,a-reso-i1,2022-23,Monson - Granite Valley School,01910030, 259, 16.4, 408, 49.5, 50.5, 1.0, 27.0,41.7 +5.62,5,a-reso-i1,2022-23,Monson - Monson High School,01910505, 210, 11.9, 295, 55.6, 43.7, 0.7, 25.8,40 +5.08,5,a-reso-i1,2022-23,Monson - Quarry Hill Community School,01910010, 62, 14.6, 131, 55.0, 45.0, 0.0, 29.0,38.9 +4.42,4.42,a-reso-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 584, 17.9," 1,393", 48.5, 50.3, 0.5, 17.0,38 +4.84,4.84,a-reso-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 132, 15.8, 234, 50.9, 49.2, 3.9, 20.1,41.5 +5.24,5,a-reso-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 374, 13.8, 542, 50.9, 48.2, 1.1, 17.5,23.4 +4.88,4.88,a-reso-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 242, 15.6, 440, 45.5, 53.9, 3.6, 13.9,23.6 +2.88,2.88,a-reso-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 729, 25.6," 1,605", 51.7, 48.4, 2.2, 10.5,29.2 +5.18,5,a-reso-i1,2022-23,Nahant - Johnson,01960010, 70, 14.1, 154, 41.6, 58.4, 0.0, 22.7,22.7 +4.2,4.2,a-reso-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 185, 19.0, 393, 47.6, 52.4, 12.5, 17.3,39.7 +4.54,4.54,a-reso-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 243, 17.3, 412, 52.4, 47.6, 25.7, 21.1,45.9 +4.9,4.9,a-reso-i1,2022-23,Nantucket - Nantucket High,01970505, 314, 15.5, 595, 48.2, 51.8, 12.8, 11.6,34.1 +4.42,4.42,a-reso-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 218, 17.9, 337, 49.0, 51.0, 14.0, 21.1,38.6 +3.62,3.62,a-reso-i1,2022-23,Narragansett - Narragansett Middle,07200305, 162, 21.9, 365, 49.0, 51.0, 0.8, 22.7,34.3 +4.8,4.8,a-reso-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 249, 16.0, 464, 43.8, 54.5, 1.1, 17.9,38.4 +3.6,3.6,a-reso-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 257, 22.0, 657, 48.0, 52.1, 1.4, 19.0,40.9 +4.18,4.18,a-reso-i1,2022-23,Nashoba - Center School,07250020, 172, 19.1, 496, 45.8, 54.2, 4.0, 21.6,9.1 +4.04,4.04,a-reso-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 263, 19.8, 742, 49.2, 50.8, 1.5, 17.4,8.2 +4.18,4.18,a-reso-i1,2022-23,Nashoba - Hale,07250310, 112, 19.1, 271, 53.5, 46.5, 0.4, 22.1,7.4 +4.42,4.42,a-reso-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 125, 17.9, 239, 49.8, 50.2, 4.2, 19.3,23 +4.04,4.04,a-reso-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 137, 19.8, 479, 46.8, 53.2, 4.0, 21.5,21.7 +5.38,5,a-reso-i1,2022-23,Nashoba - Nashoba Regional,07250505, 500, 13.1, 831, 49.2, 50.5, 1.4, 13.5,11.4 +5.220000000000001,5,a-reso-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 359, 13.9, 729, 37.6, 60.1, 0.6, 32.1,32.7 +4.2,4.2,a-reso-i1,2022-23,Natick - Bennett-Hemenway,01980005, 179, 19.0, 484, 48.6, 51.5, 4.8, 21.1,9.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Natick - Brown,01980010, 181, 19.7, 501, 45.3, 54.7, 13.6, 8.8,20 +3.84,3.84,a-reso-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 465, 20.8, 901, 45.6, 54.1, 4.3, 17.7,14.9 +4.6,4.6,a-reso-i1,2022-23,Natick - Johnson,01980031, 56, 17.0, 136, 45.6, 53.7, 0.0, 16.2,15.4 +4.46,4.46,a-reso-i1,2022-23,Natick - Lilja Elementary,01980035, 166, 17.7, 416, 49.8, 50.2, 7.0, 16.6,17.3 +3.84,3.84,a-reso-i1,2022-23,Natick - Memorial,01980043, 147, 20.8, 436, 50.5, 49.5, 0.2, 12.8,6 +4.84,4.84,a-reso-i1,2022-23,Natick - Natick High,01980505, 953, 15.8," 1,756", 46.4, 53.0, 2.7, 20.8,13.8 +4.26,4.26,a-reso-i1,2022-23,Natick - Wilson Middle,01980310, 443, 18.7, 780, 51.0, 48.9, 0.5, 22.7,14.7 +5.720000000000001,5,a-reso-i1,2022-23,Nauset - Nauset Regional High,06600505, 539, 11.4, 766, 54.3, 45.2, 0.9, 16.2,26.5 +4.5600000000000005,4.56,a-reso-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 305, 17.2, 538, 51.1, 48.9, 1.9, 19.5,33.3 +3.94,3.94,a-reso-i1,2022-23,Needham - Broadmeadow,01990005, 125, 20.3, 508, 46.1, 53.9, 2.6, 16.7,4.7 +4.36,4.36,a-reso-i1,2022-23,Needham - High Rock School,01990410, 310, 18.2, 449, 49.0, 51.0, 1.6, 22.1,9.1 +4.5,4.5,a-reso-i1,2022-23,Needham - John Eliot,01990020, 120, 17.5, 421, 49.4, 50.6, 7.1, 16.6,15.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Needham - Needham High,01990505, 738, 16.4," 1,641", 50.7, 48.4, 1.2, 17.6,7.6 +4.08,4.08,a-reso-i1,2022-23,Needham - Newman Elementary,01990050, 165, 19.6, 715, 46.3, 53.6, 5.3, 23.5,8.3 +4.68,4.68,a-reso-i1,2022-23,Needham - Pollard Middle,01990405, 660, 16.6, 822, 51.2, 48.7, 2.6, 18.9,7.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 125, 21.3, 532, 46.2, 53.8, 6.8, 16.5,8.7 +4.1,4.1,a-reso-i1,2022-23,Needham - William Mitchell,01990040, 115, 19.5, 449, 46.8, 53.2, 3.6, 18.9,6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 409, 15.3, 800, 48.1, 51.9, 11.0, 27.9,64.1 +3.94,3.94,a-reso-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 288, 20.3, 649, 47.0, 53.0, 36.4, 13.7,86.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 304, 17.4, 518, 48.1, 51.9, 56.2, 20.9,88.2 +4.279999999999999,4.28,a-reso-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 104, 18.6, 232, 46.1, 53.5, 6.5, 17.2,64.7 +3.8200000000000003,3.82,a-reso-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 130, 20.9, 348, 52.6, 47.4, 33.9, 21.6,88.8 +4.96,4.96,a-reso-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 330, 15.2, 578, 44.1, 55.9, 7.6, 30.6,62.6 +5.0600000000000005,5,a-reso-i1,2022-23,New Bedford - Charles S Ashley,02010010, 153, 14.7, 276, 47.5, 52.5, 17.8, 22.1,72.1 +4.0200000000000005,4.02,a-reso-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 114, 19.9, 277, 53.1, 46.9, 16.3, 25.6,76.9 +5.4799999999999995,5,a-reso-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 131, 12.6, 251, 47.8, 52.2, 39.4, 22.3,87.3 +4.6,4.6,a-reso-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 107, 17.0, 317, 43.5, 56.5, 27.1, 38.2,79.2 +4.74,4.74,a-reso-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 377, 16.3, 703, 49.5, 50.5, 46.1, 26.5,89.6 +4.14,4.14,a-reso-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 172, 19.3, 404, 47.3, 52.5, 42.6, 21.8,90.4 +4.220000000000001,4.22,a-reso-i1,2022-23,New Bedford - James B Congdon,02010040, 162, 18.9, 340, 47.9, 52.1, 28.8, 16.5,84.4 +5.279999999999999,5,a-reso-i1,2022-23,New Bedford - Jireh Swift,02010130, 117, 13.6, 252, 54.0, 46.0, 21.0, 21.4,73 +4.32,4.32,a-reso-i1,2022-23,New Bedford - John Avery Parker,02010115, 98, 18.4, 252, 50.4, 49.6, 31.0, 17.9,85.3 +4.720000000000001,4.72,a-reso-i1,2022-23,New Bedford - John B Devalles,02010050, 145, 16.4, 292, 51.7, 48.3, 42.1, 18.8,90.4 +5.08,5,a-reso-i1,2022-23,New Bedford - Keith Middle School,02010405, 506, 14.6, 865, 48.2, 51.7, 11.0, 20.9,79.8 +4.38,4.38,a-reso-i1,2022-23,New Bedford - New Bedford High,02010505," 1,384", 18.1," 3,007", 46.8, 53.0, 28.4, 17.7,78.5 +3.9,3.9,a-reso-i1,2022-23,New Bedford - Normandin Middle School,02010410, 550, 20.5," 1,066", 49.3, 50.7, 15.1, 20.2,71.4 +4.64,4.64,a-reso-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 58, 16.8, 131, 48.9, 51.2, 59.5, 18.3,90.1 +4.86,4.86,a-reso-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 426, 15.7, 816, 46.3, 53.7, 23.8, 25.4,85.4 +5.32,5,a-reso-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 375, 13.4, 623, 41.6, 58.4, 17.2, 42.2,84.4 +4.68,4.68,a-reso-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 97, 16.6, 198, 49.0, 51.0, 19.7, 21.7,80.8 +6.74,5,a-reso-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 152, 6.3, 108, 34.3, 63.9, 10.2, 99.1,89.8 +5.720000000000001,5,a-reso-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 135, 11.4, 229, 33.6, 66.4, 17.0, 32.3,92.6 +4.0600000000000005,4.06,a-reso-i1,2022-23,New Bedford - William H Taylor,02010135, 98, 19.7, 251, 50.6, 49.4, 16.7, 24.7,68.9 +3.3600000000000003,3.36,a-reso-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 195, 23.2, 692, 52.8, 47.3, 19.8, 12.0,58.4 +4.5,4.5,a-reso-i1,2022-23,New Salem-Wendell - Swift River,07280015, 88, 17.5, 140, 48.6, 51.4, 0.0, 29.3,42.1 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 176, 19.9, 286, 57.3, 42.7, 2.8, 25.5,15 +4.4399999999999995,4.44,a-reso-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 237, 17.8, 589, 49.6, 50.4, 6.5, 20.4,12.4 +4.8,4.8,a-reso-i1,2022-23,Newburyport - Newburyport High,02040505, 725, 16.0, 822, 50.9, 49.2, 2.6, 17.6,11.6 +4.76,4.76,a-reso-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 398, 16.2, 486, 49.0, 50.8, 3.9, 22.6,11.9 +4.34,4.34,a-reso-i1,2022-23,Newton - A E Angier,02070005, 146, 18.3, 377, 48.3, 50.4, 8.5, 18.3,8 +4.38,4.38,a-reso-i1,2022-23,Newton - Bigelow Middle,02070305, 271, 18.1, 450, 51.3, 48.0, 7.1, 16.7,19.6 +4.12,4.12,a-reso-i1,2022-23,Newton - Bowen,02070015, 132, 19.4, 359, 49.3, 50.4, 10.6, 17.0,10.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Newton - C C Burr,02070020, 132, 19.7, 365, 48.2, 51.0, 12.3, 18.4,14.8 +3.78,3.78,a-reso-i1,2022-23,Newton - Cabot,02070025, 152, 21.1, 452, 50.0, 49.8, 8.9, 15.9,12.8 +4.2,4.2,a-reso-i1,2022-23,Newton - Charles E Brown Middle,02070310, 441, 19.0, 763, 47.2, 51.8, 3.9, 17.3,8.5 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newton - Countryside,02070040, 139, 19.9, 387, 47.6, 52.5, 12.9, 20.2,12.9 +4.04,4.04,a-reso-i1,2022-23,Newton - F A Day Middle,02070315, 506, 19.8, 937, 49.7, 50.2, 2.7, 15.8,14.2 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newton - Franklin,02070055, 132, 19.9, 367, 54.2, 45.5, 14.4, 14.4,13.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Newton - Horace Mann,02070075, 132, 19.7, 366, 46.2, 53.6, 9.3, 15.6,16.1 +4.54,4.54,a-reso-i1,2022-23,Newton - John Ward,02070120, 80, 17.3, 196, 46.9, 53.1, 6.6, 16.3,4.6 +4.26,4.26,a-reso-i1,2022-23,Newton - Lincoln-Eliot,02070070, 132, 18.7, 341, 44.9, 54.8, 21.1, 20.5,30.8 +4.42,4.42,a-reso-i1,2022-23,Newton - Mason-Rice,02070080, 132, 17.9, 333, 51.7, 48.1, 10.5, 14.7,5.4 +4.14,4.14,a-reso-i1,2022-23,Newton - Memorial Spaulding,02070105, 146, 19.3, 395, 52.7, 47.3, 13.2, 16.5,10.6 +5.68,5,a-reso-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 24, 11.6, 221, 36.2, 63.8, 5.0, 66.5,17.2 +5.0600000000000005,5,a-reso-i1,2022-23,Newton - Newton North High,02070505," 1,142", 14.7," 2,119", 48.8, 50.5, 3.8, 16.2,16.5 +5.26,5,a-reso-i1,2022-23,Newton - Newton South High,02070510," 1,060", 13.7," 1,846", 47.7, 51.5, 2.8, 12.8,12.3 +4.92,4.92,a-reso-i1,2022-23,Newton - Oak Hill Middle,02070320, 517, 15.4, 667, 49.6, 50.1, 6.6, 22.9,13 +4.4399999999999995,4.44,a-reso-i1,2022-23,Newton - Peirce,02070100, 96, 17.8, 241, 48.6, 51.5, 7.1, 19.5,14.9 +4.46,4.46,a-reso-i1,2022-23,Newton - Underwood,02070115, 90, 17.7, 223, 54.3, 45.7, 12.6, 11.7,17.9 +4.3,4.3,a-reso-i1,2022-23,Newton - Williams,02070125, 90, 18.5, 233, 47.6, 52.4, 13.7, 20.6,13.3 +4.16,4.16,a-reso-i1,2022-23,Newton - Zervas,02070130, 153, 19.2, 411, 48.7, 51.3, 14.4, 15.8,12.9 +3.7399999999999998,3.74,a-reso-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 174, 21.3, 519, 49.3, 50.7, 2.7, 19.7,6.7 +3.3600000000000003,3.36,a-reso-i1,2022-23,Norfolk - H Olive Day,02080015, 95, 23.2, 489, 48.1, 51.9, 2.7, 18.8,6.8 +4.84,4.84,a-reso-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 511, 15.8, 585, 71.5, 27.0, 0.2, 21.9,18.8 +5.54,5,a-reso-i1,2022-23,North Adams - Brayton,02090035, 124, 12.3, 232, 39.7, 60.3, 0.9, 36.6,75.4 +5.3,5,a-reso-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 123, 13.5, 252, 45.2, 54.4, 1.2, 32.9,75.8 +5.34,5,a-reso-i1,2022-23,North Adams - Drury High,02090505, 265, 13.3, 492, 53.9, 45.9, 0.4, 23.2,66.1 +4.62,4.62,a-reso-i1,2022-23,North Adams - Greylock,02090015, 108, 16.9, 277, 49.8, 50.2, 1.1, 26.7,72.6 +4.34,4.34,a-reso-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 157, 18.3, 447, 46.1, 53.9, 4.7, 31.1,23.9 +3.8200000000000003,3.82,a-reso-i1,2022-23,North Andover - Annie L Sargent School,02110018, 199, 20.9, 467, 49.0, 51.0, 1.7, 18.4,10.7 +4.720000000000001,4.72,a-reso-i1,2022-23,North Andover - Atkinson,02110001, 150, 16.4, 276, 48.9, 51.1, 11.6, 26.5,43.5 +4.4,4.4,a-reso-i1,2022-23,North Andover - Franklin,02110010, 190, 18.0, 384, 45.3, 54.4, 3.4, 20.8,15.4 +5.0,5.0,a-reso-i1,2022-23,North Andover - Kittredge,02110015, 134, 15.0, 228, 46.9, 52.6, 6.6, 18.9,14.9 +4.9,4.9,a-reso-i1,2022-23,North Andover - North Andover High,02110505, 811, 15.5," 1,337", 49.5, 50.3, 1.5, 15.6,23.5 +3.5200000000000005,3.52,a-reso-i1,2022-23,North Andover - North Andover Middle,02110305, 753, 22.4," 1,068", 45.9, 53.8, 2.7, 18.8,24.2 +3.84,3.84,a-reso-i1,2022-23,North Andover - Thomson,02110020, 135, 20.8, 313, 47.0, 53.0, 5.8, 21.7,37.1 +3.4,3.4,a-reso-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 123, 23.0, 410, 51.0, 49.0, 5.4, 15.4,18.5 +3.5,3.5,a-reso-i1,2022-23,North Attleborough - Community,02120030, 89, 22.5, 293, 47.4, 52.2, 9.9, 31.7,54.6 +4.14,4.14,a-reso-i1,2022-23,North Attleborough - Falls,02120010, 82, 19.3, 233, 43.8, 55.8, 3.4, 19.3,18 +3.54,3.54,a-reso-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 164, 22.3, 534, 44.9, 54.9, 3.2, 22.1,21.5 +4.8,4.8,a-reso-i1,2022-23,North Attleborough - North Attleboro High,02120505, 605, 16.0," 1,119", 50.9, 48.4, 1.2, 12.6,22.3 +5.74,5,a-reso-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 85, 11.3, 192, 43.2, 56.8, 6.8, 53.7,36.5 +4.36,4.36,a-reso-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 533, 18.2, 965, 47.6, 52.4, 1.5, 20.6,24.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 82, 21.3, 254, 48.0, 52.0, 3.2, 20.5,20.5 +4.220000000000001,4.22,a-reso-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 78, 18.9, 301, 50.5, 49.5, 5.7, 23.3,49.5 +5.88,5,a-reso-i1,2022-23,North Brookfield - North Brookfield High,02150505, 86, 10.6, 145, 51.0, 49.0, 4.8, 27.6,57.9 +4.16,4.16,a-reso-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 71, 19.2, 136, 41.9, 58.1, 4.4, 25.0,32.4 +3.9,3.9,a-reso-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 264, 20.5, 473, 55.6, 44.4, 0.9, 24.5,31.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 291, 19.9, 494, 45.8, 54.3, 0.4, 27.7,28.3 +4.7,4.7,a-reso-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 383, 16.5, 759, 47.0, 52.7, 1.1, 24.6,22.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 201, 20.9, 418, 50.5, 49.5, 3.4, 20.1,25.6 +6.9,5,a-reso-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 30, 5.5, 123, 36.6, 63.4, 4.9, 45.5,38.2 +3.16,3.16,a-reso-i1,2022-23,North Middlesex - Varnum Brook,07350035, 262, 24.2, 630, 50.8, 49.2, 4.8, 21.6,29.4 +3.96,3.96,a-reso-i1,2022-23,North Reading - E Ethel Little School,02170003, 166, 20.2, 329, 49.2, 50.8, 0.0, 19.5,14.9 +4.16,4.16,a-reso-i1,2022-23,North Reading - J Turner Hood,02170010, 206, 19.2, 386, 49.5, 50.5, 1.6, 23.1,11.4 +3.34,3.34,a-reso-i1,2022-23,North Reading - L D Batchelder,02170005, 210, 23.3, 464, 46.3, 53.7, 1.3, 17.2,7.5 +4.7,4.7,a-reso-i1,2022-23,North Reading - North Reading High,02170505, 302, 16.5, 647, 51.9, 47.5, 0.2, 17.5,10.8 +4.9,4.9,a-reso-i1,2022-23,North Reading - North Reading Middle,02170305, 369, 15.5, 542, 47.2, 52.8, 0.7, 20.3,13.7 +4.34,4.34,a-reso-i1,2022-23,Northampton - Bridge Street,02100005, 86, 18.3, 286, 49.3, 50.4, 9.8, 30.1,51.8 +4.1,4.1,a-reso-i1,2022-23,Northampton - Jackson Street,02100020, 92, 19.5, 290, 45.9, 53.8, 6.2, 19.0,26.9 +5.18,5,a-reso-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 491, 14.1, 600, 45.7, 53.2, 3.5, 23.8,30.5 +4.5,4.5,a-reso-i1,2022-23,Northampton - Leeds,02100025, 94, 17.5, 306, 45.4, 54.3, 5.6, 30.1,36.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Northampton - Northampton High,02100505, 429, 15.3, 904, 49.2, 49.1, 3.5, 18.9,25.3 +4.08,4.08,a-reso-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 73, 19.6, 235, 46.4, 52.8, 4.3, 18.7,31.5 +5.5200000000000005,5,a-reso-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 464, 12.4, 571, 39.8, 58.8, 2.5, 39.1,39.1 +5.220000000000001,5,a-reso-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 752, 13.9," 1,224", 52.5, 47.4, 1.8, 16.1,13.2 +4.16,4.16,a-reso-i1,2022-23,Northborough - Fannie E Proctor,02130015, 54, 19.2, 249, 49.0, 51.0, 6.8, 16.9,22.5 +4.16,4.16,a-reso-i1,2022-23,Northborough - Lincoln Street,02130003, 63, 19.2, 292, 46.9, 53.1, 6.2, 20.2,19.2 +4.14,4.14,a-reso-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 58, 19.3, 265, 47.2, 52.8, 6.0, 26.0,21.5 +3.84,3.84,a-reso-i1,2022-23,Northborough - Marion E Zeh,02130020, 55, 20.8, 250, 48.0, 52.0, 6.0, 28.0,15.6 +4.76,4.76,a-reso-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 438, 16.2, 552, 45.3, 54.7, 3.1, 24.6,19.2 +4.2,4.2,a-reso-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 258, 19.0, 955, 45.9, 54.1, 3.1, 26.3,41.4 +5.0200000000000005,5,a-reso-i1,2022-23,Northbridge - Northbridge High,02140505, 253, 14.9, 507, 45.8, 54.2, 1.8, 15.4,33.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Northbridge - Northbridge Middle,02140305, 300, 18.6, 486, 53.9, 46.1, 2.7, 18.5,40.7 +4.32,4.32,a-reso-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 948, 18.4," 1,294", 45.1, 54.5, 3.5, 25.0,50.7 +4.96,4.96,a-reso-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 428, 15.2, 535, 38.7, 61.1, 0.0, 15.3,42.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Norton - Henri A. Yelle,02180060, 200, 20.1, 334, 49.4, 50.6, 2.7, 26.4,28.1 +4.08,4.08,a-reso-i1,2022-23,Norton - J C Solmonese,02180015, 206, 19.6, 524, 49.8, 50.2, 3.1, 24.8,23.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Norton - L G Nourse Elementary,02180010, 137, 20.4, 293, 45.7, 54.3, 3.1, 25.9,36.2 +5.220000000000001,5,a-reso-i1,2022-23,Norton - Norton High,02180505, 412, 13.9, 684, 51.0, 48.4, 1.9, 17.5,21.4 +4.779999999999999,4.78,a-reso-i1,2022-23,Norton - Norton Middle,02180305, 377, 16.1, 563, 50.6, 49.4, 2.0, 21.5,28.2 +3.96,3.96,a-reso-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 128, 20.2, 524, 45.4, 54.6, 1.2, 17.0,7.1 +5.42,5,a-reso-i1,2022-23,Norwell - Norwell High,02190505, 332, 12.9, 597, 47.1, 52.9, 0.0, 10.2,7 +4.8,4.8,a-reso-i1,2022-23,Norwell - Norwell Middle School,02190405, 505, 16.0, 498, 47.6, 52.4, 0.2, 16.3,6.6 +3.84,3.84,a-reso-i1,2022-23,Norwell - William G Vinal,02190020, 128, 20.8, 539, 48.2, 51.4, 0.7, 16.9,3.9 +4.64,4.64,a-reso-i1,2022-23,Norwood - Balch,02200005, 133, 16.8, 303, 51.8, 48.2, 40.3, 22.1,61.4 +4.4,4.4,a-reso-i1,2022-23,Norwood - Charles J Prescott,02200025, 97, 18.0, 245, 53.1, 46.9, 20.0, 17.1,35.1 +4.12,4.12,a-reso-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 90, 19.4, 234, 49.2, 50.9, 14.1, 29.9,44.9 +4.32,4.32,a-reso-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 388, 18.4, 806, 51.1, 48.9, 11.0, 27.1,43.8 +4.68,4.68,a-reso-i1,2022-23,Norwood - F A Cleveland,02200015, 138, 16.6, 312, 48.7, 51.3, 14.7, 26.0,28.9 +4.24,4.24,a-reso-i1,2022-23,Norwood - George F. Willett,02200075, 67, 18.8, 436, 46.8, 53.2, 24.5, 31.2,39.5 +4.5200000000000005,4.52,a-reso-i1,2022-23,Norwood - John P Oldham,02200020, 113, 17.4, 271, 48.0, 52.0, 12.9, 30.6,38 +5.34,5,a-reso-i1,2022-23,Norwood - Norwood High,02200505, 535, 13.3, 964, 50.8, 48.7, 8.5, 20.2,37.7 +4.84,4.84,a-reso-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 202, 15.8, 451, 47.2, 52.8, 22.6, 24.6,42.4 +5.16,5,a-reso-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 289, 14.2, 556, 35.8, 63.9, 0.0, 20.5,26.3 +5.18,5,a-reso-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 370, 14.1, 626, 49.2, 50.8, 0.2, 13.7,20.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 297, 17.8, 426, 49.1, 50.5, 0.0, 17.6,25.4 +4.0200000000000005,4.02,a-reso-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 58, 19.9, 360, 45.3, 54.7, 4.2, 18.1,38.9 +3.56,3.56,a-reso-i1,2022-23,Orange - Dexter Park,02230010, 113, 22.2, 282, 47.9, 52.1, 0.4, 32.6,75.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Orange - Fisher Hill,02230015, 108, 16.4, 223, 45.3, 54.7, 1.4, 21.1,67.3 +5.6,5,a-reso-i1,2022-23,Orleans - Orleans Elementary,02240005, 144, 12.0, 145, 54.5, 45.5, 2.1, 17.9,41.4 +4.58,4.58,a-reso-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 70, 17.1, 298, 54.0, 46.0, 7.4, 21.1,45.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Oxford - Clara Barton,02260005, 62, 15.3, 283, 50.5, 49.5, 3.5, 35.7,46.3 +5.12,5,a-reso-i1,2022-23,Oxford - Oxford High,02260505, 213, 14.4, 387, 50.1, 49.1, 2.1, 18.1,42.6 +3.9799999999999995,3.98,a-reso-i1,2022-23,Oxford - Oxford Middle,02260405, 215, 20.1, 515, 46.4, 53.6, 2.3, 17.9,47.4 +5.08,5,a-reso-i1,2022-23,Palmer - Old Mill Pond,02270008, 624, 14.6, 610, 47.2, 52.8, 4.1, 23.3,60.3 +5.4,5,a-reso-i1,2022-23,Palmer - Palmer High,02270505, 310, 13.0, 533, 46.3, 53.5, 4.1, 18.6,59.1 +5.4399999999999995,5,a-reso-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 388, 12.8, 627, 39.4, 60.1, 0.6, 23.6,41.3 +4.26,4.26,a-reso-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 163, 18.7, 295, 55.3, 44.4, 8.8, 23.1,86.8 +4.779999999999999,4.78,a-reso-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 189, 16.1, 379, 46.4, 53.3, 5.0, 39.6,40.4 +4.3,4.3,a-reso-i1,2022-23,Peabody - Center,02290015, 185, 18.5, 425, 50.1, 49.9, 23.5, 15.3,49.7 +3.8,3.8,a-reso-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 744, 21.0," 1,372", 49.9, 50.0, 12.4, 21.5,45.7 +3.78,3.78,a-reso-i1,2022-23,Peabody - John E Burke,02290007, 97, 21.1, 254, 52.4, 47.6, 3.9, 23.6,19.7 +4.82,4.82,a-reso-i1,2022-23,Peabody - John E. McCarthy,02290016, 149, 15.9, 362, 49.7, 50.3, 7.5, 32.0,43.4 +6.5200000000000005,5,a-reso-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 75, 7.4, 125, 56.8, 42.4, 3.2, 24.8,70.4 +4.88,4.88,a-reso-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 728, 15.6," 1,476", 48.0, 51.9, 10.9, 16.3,47.2 +3.94,3.94,a-reso-i1,2022-23,Peabody - South Memorial,02290035, 177, 20.3, 487, 51.5, 48.5, 8.0, 13.6,36.6 +3.66,3.66,a-reso-i1,2022-23,Peabody - Thomas Carroll,02290010, 219, 21.7, 591, 50.6, 49.4, 31.0, 11.8,61.8 +4.7,4.7,a-reso-i1,2022-23,Peabody - West Memorial,02290045, 117, 16.5, 260, 51.5, 48.5, 0.8, 20.4,19.6 +4.46,4.46,a-reso-i1,2022-23,Peabody - William A Welch Sr,02290027, 104, 17.7, 238, 49.6, 50.4, 37.0, 11.3,70.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Pelham - Pelham Elementary,02300005, 44, 17.8, 132, 39.4, 59.1, 2.3, 22.7,21.2 +4.16,4.16,a-reso-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 165, 19.2, 434, 44.7, 55.3, 3.7, 19.4,23 +4.26,4.26,a-reso-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 159, 18.7, 406, 49.5, 50.5, 2.5, 21.9,13.3 +4.16,4.16,a-reso-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 175, 19.2, 525, 49.5, 50.5, 3.4, 18.3,18.5 +4.1,4.1,a-reso-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 239, 19.5, 406, 48.5, 51.5, 0.5, 17.7,18.2 +4.96,4.96,a-reso-i1,2022-23,Pembroke - Pembroke High School,02310505, 375, 15.2, 728, 46.2, 53.7, 0.6, 11.7,17.7 +4.12,4.12,a-reso-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 99, 19.4, 222, 46.9, 53.2, 0.5, 29.3,20.7 +4.68,4.68,a-reso-i1,2022-23,Pentucket - Dr John C Page School,07450015, 182, 16.6, 321, 48.3, 51.7, 0.3, 29.3,10.6 +4.4,4.4,a-reso-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 255, 18.0, 489, 48.1, 51.9, 0.8, 22.1,16.6 +3.9,3.9,a-reso-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 124, 20.5, 249, 47.8, 52.2, 0.8, 27.3,16.5 +4.34,4.34,a-reso-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 219, 18.3, 359, 44.0, 56.0, 1.1, 22.8,16.4 +5.24,5,a-reso-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 370, 13.8, 763, 49.9, 49.7, 0.1, 17.7,17.4 +4.4399999999999995,4.44,a-reso-i1,2022-23,Petersham - Petersham Center,02340005, 55, 17.8, 125, 54.4, 45.6, 1.6, 18.4,33.6 +3.28,3.28,a-reso-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 20, 23.6, 190, 50.0, 49.5, 60.0, 10.0,80.5 +4.8,4.8,a-reso-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 53, 16.0, 117, 45.3, 54.7, 14.5, 35.0,91.5 +3.3200000000000003,3.32,a-reso-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 20, 23.4, 161, 46.6, 53.4, 18.6, 30.4,93.2 +4.36,4.36,a-reso-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 374, 18.2, 793, 52.0, 48.1, 22.1, 8.6,52.7 +4.12,4.12,a-reso-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 186, 19.4, 466, 50.6, 49.4, 22.5, 12.5,43.8 +4.5,4.5,a-reso-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 61, 17.5, 208, 54.3, 45.7, 1.0, 22.6,31.7 +4.88,4.88,a-reso-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 65, 15.6, 211, 46.0, 54.0, 1.0, 24.2,44.1 +5.5600000000000005,5,a-reso-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 217, 12.2, 257, 47.5, 52.5, 1.6, 15.2,29.6 +4.64,4.64,a-reso-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 407, 16.8, 544, 47.1, 52.6, 2.9, 15.3,22.4 +5.3,5,a-reso-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 388, 13.5, 398, 64.3, 33.7, 0.5, 22.6,38.9 +5.14,5,a-reso-i1,2022-23,Pittsfield - Allendale,02360010, 114, 14.3, 277, 46.2, 53.8, 6.1, 22.0,69.7 +5.18,5,a-reso-i1,2022-23,Pittsfield - Crosby,02360065, 87, 14.1, 273, 48.4, 51.7, 15.0, 28.2,79.9 +6.92,5,a-reso-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 5, 5.4, 27, 22.2, 77.8, 0.0, 96.3,92.6 +6.959999999999999,5,a-reso-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 27, 5.2, 22, 27.3, 72.7, 4.6, 100.0,95.5 +4.84,4.84,a-reso-i1,2022-23,Pittsfield - Egremont,02360035, 118, 15.8, 382, 52.4, 47.6, 9.7, 16.5,57.1 +5.34,5,a-reso-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 275, 13.3, 471, 50.1, 49.9, 8.5, 23.8,72.8 +5.0,5.0,a-reso-i1,2022-23,Pittsfield - Morningside Community School,02360055, 130, 15.0, 343, 54.8, 45.2, 16.9, 26.2,87.5 +5.42,5,a-reso-i1,2022-23,Pittsfield - Pittsfield High,02360505, 408, 12.9, 673, 49.0, 50.4, 6.5, 23.9,55.7 +6.2,5,a-reso-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 87, 9.0, 115, 49.6, 50.4, 1.7, 23.5,80.9 +5.279999999999999,5,a-reso-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 75, 13.6, 178, 50.0, 49.4, 1.1, 15.2,55.6 +4.92,4.92,a-reso-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 140, 15.4, 364, 51.9, 47.8, 14.8, 23.4,88.2 +4.82,4.82,a-reso-i1,2022-23,Pittsfield - Stearns,02360090, 70, 15.9, 227, 39.2, 60.8, 2.2, 32.2,55.1 +5.220000000000001,5,a-reso-i1,2022-23,Pittsfield - Taconic High,02360510, 513, 13.9, 851, 46.7, 53.1, 4.1, 21.0,63.2 +5.16,5,a-reso-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 298, 14.2, 499, 43.9, 55.3, 7.8, 19.4,62.9 +5.14,5,a-reso-i1,2022-23,Pittsfield - Williams,02360100, 88, 14.3, 258, 49.2, 50.8, 6.6, 14.0,36.4 +4.42,4.42,a-reso-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 56, 17.9, 299, 47.5, 52.5, 8.7, 29.1,30.1 +3.6399999999999997,3.64,a-reso-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 64, 21.8, 349, 47.9, 52.2, 2.6, 23.2,25.5 +4.279999999999999,4.28,a-reso-i1,2022-23,Plymouth - Cold Spring,02390005, 140, 18.6, 214, 54.7, 45.3, 19.2, 18.7,50 +4.720000000000001,4.72,a-reso-i1,2022-23,Plymouth - Federal Furnace School,02390011, 301, 16.4, 408, 45.1, 54.9, 5.9, 25.7,36.3 +4.38,4.38,a-reso-i1,2022-23,Plymouth - Hedge,02390010, 146, 18.1, 218, 47.7, 52.3, 32.6, 17.4,71.1 +4.2,4.2,a-reso-i1,2022-23,Plymouth - Indian Brook,02390012, 370, 19.0, 574, 47.6, 52.4, 0.5, 19.5,23.9 +4.04,4.04,a-reso-i1,2022-23,Plymouth - Manomet Elementary,02390015, 158, 19.8, 256, 53.1, 46.9, 0.8, 21.5,37.1 +4.32,4.32,a-reso-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 350, 18.4, 508, 48.2, 51.8, 8.1, 17.5,34.7 +4.64,4.64,a-reso-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 548, 16.8, 904, 49.7, 50.1, 6.2, 20.2,37.9 +5.96,5,a-reso-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 25, 10.2, 255, 30.6, 69.4, 1.6, 56.9,33.7 +4.9399999999999995,4.94,a-reso-i1,2022-23,Plymouth - Plymouth North High,02390505, 935, 15.3," 1,268", 47.4, 52.3, 6.6, 14.0,32.9 +5.32,5,a-reso-i1,2022-23,Plymouth - Plymouth South High,02390515, 953, 13.4," 1,019", 47.2, 52.7, 0.3, 17.8,23.5 +4.24,4.24,a-reso-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 347, 18.8, 628, 45.9, 54.1, 0.3, 23.9,30.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Plymouth - South Elementary,02390046, 440, 17.2, 623, 48.2, 51.9, 2.6, 19.7,28.3 +4.54,4.54,a-reso-i1,2022-23,Plymouth - West Elementary,02390047, 218, 17.3, 312, 45.2, 54.8, 4.2, 17.3,34.3 +4.62,4.62,a-reso-i1,2022-23,Plympton - Dennett Elementary,02400010, 113, 16.9, 239, 47.7, 52.3, 0.8, 18.4,20.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 464, 17.4, 973, 50.8, 49.2, 18.1, 16.4,59.9 +5.720000000000001,5,a-reso-i1,2022-23,Provincetown - Provincetown Schools,02420020, 150, 11.4, 146, 52.7, 47.3, 15.1, 20.6,54.8 +4.04,4.04,a-reso-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 57, 19.8, 198, 48.5, 51.5, 0.0, 34.3,55.1 +3.62,3.62,a-reso-i1,2022-23,Quabbin - Hubbardston Center,07530010, 81, 21.9, 318, 46.5, 53.5, 0.6, 24.5,23.9 +6.2,5,a-reso-i1,2022-23,Quabbin - New Braintree Grade,07530020, 10, 9.0, 43, 44.2, 55.8, 0.0, 46.5,46.5 +4.58,4.58,a-reso-i1,2022-23,Quabbin - Oakham Center,07530025, 66, 17.1, 179, 43.0, 57.0, 0.0, 26.3,31.3 +4.58,4.58,a-reso-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 450, 17.1, 574, 54.2, 45.5, 0.4, 17.1,33.1 +3.84,3.84,a-reso-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 259, 20.8, 529, 52.9, 47.1, 0.2, 18.0,36.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Quabbin - Ruggles Lane,07530030, 94, 21.8, 387, 42.9, 57.1, 0.3, 30.5,42.1 +5.4,5,a-reso-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 4, 13.0, 52, 40.4, 59.6, 0.0, 48.1,57.7 +4.9399999999999995,4.94,a-reso-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 189, 15.3, 423, 49.9, 48.9, 0.7, 14.2,37.8 +4.54,4.54,a-reso-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 140, 17.3, 204, 50.0, 49.0, 1.5, 23.0,44.6 +3.62,3.62,a-reso-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 108, 21.9, 329, 48.9, 51.1, 5.2, 29.5,58.1 +4.16,4.16,a-reso-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 80, 19.2, 263, 49.8, 49.8, 3.4, 22.4,42.6 +5.66,5,a-reso-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 11.7, 222, 33.3, 66.7, 0.0, 68.5,48.7 +5.66,5,a-reso-i1,2022-23,Quincy - Atherton Hough,02430040, 159, 11.7, 258, 39.2, 60.9, 14.3, 38.0,37.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,Quincy - Atlantic Middle,02430305, 299, 21.3, 575, 47.8, 52.0, 14.4, 18.8,45.9 +4.46,4.46,a-reso-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 147, 17.7, 334, 48.2, 51.8, 22.2, 9.9,44.6 +4.84,4.84,a-reso-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 247, 15.8, 329, 46.2, 53.8, 7.9, 31.3,55.9 +3.54,3.54,a-reso-i1,2022-23,Quincy - Central Middle,02430315, 352, 22.3, 650, 44.2, 55.2, 5.1, 11.4,32.6 +4.58,4.58,a-reso-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 140, 17.1, 330, 53.0, 47.0, 16.4, 16.7,30.9 +4.1,4.1,a-reso-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 196, 19.5, 525, 53.3, 46.7, 33.9, 13.9,54.9 +5.32,5,a-reso-i1,2022-23,Quincy - Francis W Parker,02430075, 184, 13.4, 331, 52.6, 47.4, 43.2, 20.2,58.6 +4.36,4.36,a-reso-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 234, 18.2, 561, 49.9, 49.9, 35.7, 11.1,57.4 +4.58,4.58,a-reso-i1,2022-23,Quincy - Merrymount,02430060, 142, 17.1, 327, 47.1, 52.9, 14.1, 21.7,22 +4.32,4.32,a-reso-i1,2022-23,Quincy - Montclair,02430065, 173, 18.4, 430, 49.1, 50.9, 36.3, 9.8,46.1 +4.54,4.54,a-reso-i1,2022-23,Quincy - North Quincy High,02430510, 635, 17.3," 1,492", 47.2, 52.8, 8.7, 16.8,42 +4.58,4.58,a-reso-i1,2022-23,Quincy - Point Webster Middle,02430325, 261, 17.1, 451, 53.7, 45.9, 11.8, 24.8,59.9 +5.1,5,a-reso-i1,2022-23,Quincy - Quincy High,02430505, 854, 14.5," 1,487", 48.8, 50.8, 12.0, 20.3,54.7 +6.16,5,a-reso-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 267, 9.2, 440, 40.5, 59.6, 16.8, 47.3,71.6 +5.46,5,a-reso-i1,2022-23,Quincy - South West Middle School,02430320, 417, 12.7, 453, 44.6, 55.4, 22.1, 24.7,66 +5.62,5,a-reso-i1,2022-23,Quincy - Squantum,02430095, 231, 11.9, 345, 48.4, 51.6, 14.2, 26.7,33 +4.54,4.54,a-reso-i1,2022-23,Quincy - Wollaston School,02430110, 138, 17.3, 324, 44.8, 55.3, 31.5, 12.7,40.7 +5.32,5,a-reso-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 543, 13.4, 527, 45.7, 52.2, 1.3, 26.2,56.6 +4.14,4.14,a-reso-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 94, 19.3, 302, 48.0, 52.0, 20.9, 18.2,62.9 +4.88,4.88,a-reso-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 143, 15.6, 511, 47.6, 52.5, 17.6, 33.5,63.8 +3.8,3.8,a-reso-i1,2022-23,Randolph - Margaret L Donovan,02440015, 128, 21.0, 432, 51.2, 48.6, 22.7, 13.2,59.5 +5.12,5,a-reso-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 105, 14.4, 250, 52.4, 47.6, 28.4, 23.6,66.8 +4.54,4.54,a-reso-i1,2022-23,Randolph - Randolph Community Middle,02440410, 307, 17.3, 594, 47.8, 52.2, 11.5, 19.4,61.8 +4.54,4.54,a-reso-i1,2022-23,Randolph - Randolph High,02440505, 274, 17.3, 651, 43.6, 56.4, 16.4, 20.4,59.8 +4.0,4.0,a-reso-i1,2022-23,Reading - Alice M Barrows,02460002, 69, 20.0, 358, 49.2, 50.8, 1.7, 20.4,9.2 +3.84,3.84,a-reso-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 202, 20.8, 427, 45.4, 54.3, 0.5, 19.9,8.2 +4.26,4.26,a-reso-i1,2022-23,Reading - Birch Meadow,02460005, 73, 18.7, 356, 43.8, 56.2, 1.4, 24.7,7.6 +4.0200000000000005,4.02,a-reso-i1,2022-23,Reading - J Warren Killam,02460017, 80, 19.9, 414, 48.1, 51.9, 5.3, 17.9,15.2 +3.6399999999999997,3.64,a-reso-i1,2022-23,Reading - Joshua Eaton,02460010, 69, 21.8, 391, 49.4, 50.6, 2.8, 16.4,10.5 +5.3,5,a-reso-i1,2022-23,Reading - RISE PreSchool,02460001, 27, 13.5, 122, 39.3, 60.7, 4.9, 49.2,6.6 +5.0,5.0,a-reso-i1,2022-23,Reading - Reading Memorial High,02460505, 600, 15.0," 1,102", 46.2, 53.4, 1.3, 16.6,11.2 +4.46,4.46,a-reso-i1,2022-23,Reading - Walter S Parker Middle,02460310, 266, 17.7, 464, 50.9, 49.1, 1.3, 18.5,13.6 +4.18,4.18,a-reso-i1,2022-23,Reading - Wood End Elementary School,02460020, 50, 19.1, 247, 49.0, 51.0, 0.8, 19.4,11.3 +3.94,3.94,a-reso-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 319, 20.3, 749, 47.7, 52.3, 33.8, 15.8,63.4 +3.88,3.88,a-reso-i1,2022-23,Revere - Abraham Lincoln,02480025, 272, 20.6, 638, 49.1, 50.9, 44.4, 18.8,69.6 +4.279999999999999,4.28,a-reso-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 173, 18.6, 361, 43.8, 56.2, 47.7, 24.9,67.3 +6.0200000000000005,5,a-reso-i1,2022-23,Revere - CityLab Innovation High School,02480520, 150, 9.9, 94, 40.4, 58.5, 11.7, 24.5,71.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Revere - Garfield Elementary School,02480056, 325, 21.3, 718, 51.8, 48.2, 54.9, 20.2,74.2 +3.72,3.72,a-reso-i1,2022-23,Revere - Garfield Middle School,02480057, 269, 21.4, 578, 48.3, 51.7, 28.0, 9.3,68.5 +3.44,3.44,a-reso-i1,2022-23,Revere - Paul Revere,02480050, 193, 22.8, 455, 51.0, 49.0, 44.4, 20.7,62.4 +4.1,4.1,a-reso-i1,2022-23,Revere - Revere High,02480505, 974, 19.5," 2,202", 47.5, 52.4, 23.4, 11.6,64.7 +4.54,4.54,a-reso-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 340, 17.3, 587, 47.4, 52.6, 17.9, 20.4,68.3 +4.46,4.46,a-reso-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 327, 17.7, 671, 48.4, 51.6, 43.8, 17.1,70.9 +4.16,4.16,a-reso-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 485, 19.2, 602, 54.5, 45.4, 27.6, 15.1,66.9 +5.0200000000000005,5,a-reso-i1,2022-23,Richmond - Richmond Consolidated,02490005, 116, 14.9, 152, 52.0, 48.0, 0.0, 17.1,29.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 305, 17.2, 627, 50.4, 49.0, 1.3, 27.3,23.3 +4.76,4.76,a-reso-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 108, 16.2, 287, 50.9, 49.1, 0.0, 19.9,8.4 +4.220000000000001,4.22,a-reso-i1,2022-23,Rochester - Rochester Memorial,02500005, 237, 18.9, 498, 46.8, 53.2, 1.6, 19.3,23.7 +4.86,4.86,a-reso-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 135, 15.7, 247, 49.0, 51.0, 19.0, 20.7,53 +4.1,4.1,a-reso-i1,2022-23,Rockland - John W Rogers Middle,02510305, 394, 19.5, 727, 47.7, 52.3, 8.1, 19.7,48.8 +4.82,4.82,a-reso-i1,2022-23,Rockland - Memorial Park,02510020, 137, 15.9, 252, 50.0, 50.0, 19.4, 23.8,52.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Rockland - R Stewart Esten,02510025, 169, 16.4, 323, 47.4, 52.6, 13.3, 16.4,50.5 +5.0200000000000005,5,a-reso-i1,2022-23,Rockland - Rockland Senior High,02510505, 276, 14.9, 645, 47.8, 52.1, 7.3, 16.1,45.4 +4.9399999999999995,4.94,a-reso-i1,2022-23,Rockport - Rockport Elementary,02520005, 128, 15.3, 305, 47.2, 52.8, 0.7, 20.0,28.2 +5.88,5,a-reso-i1,2022-23,Rockport - Rockport High,02520510, 185, 10.6, 231, 40.3, 59.7, 0.9, 26.4,27.7 +5.1,5,a-reso-i1,2022-23,Rockport - Rockport Middle,02520305, 163, 14.5, 194, 50.0, 50.0, 0.0, 24.7,23.2 +6.36,5,a-reso-i1,2022-23,Rowe - Rowe Elementary,02530005, 56, 8.2, 68, 42.7, 57.4, 0.0, 38.2,50 +8.0,5,a-reso-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.7,4.7,a-reso-i1,2022-23,Salem - Bates,02580003, 166, 16.5, 411, 48.2, 51.1, 19.5, 24.1,58.9 +4.82,4.82,a-reso-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 143, 15.9, 282, 47.5, 52.5, 41.1, 19.9,77 +4.6,4.6,a-reso-i1,2022-23,Salem - Carlton,02580015, 111, 17.0, 262, 51.2, 48.5, 11.8, 32.1,46.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Salem - Collins Middle,02580305, 351, 17.2, 645, 50.2, 49.8, 17.4, 26.7,63.4 +4.66,4.66,a-reso-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 120, 16.7, 301, 51.2, 48.8, 25.6, 21.6,67.1 +5.38,5,a-reso-i1,2022-23,Salem - New Liberty Innovation School,02580510, 39, 13.1, 60, 63.3, 35.0, 13.3, 33.3,75 +5.279999999999999,5,a-reso-i1,2022-23,Salem - Salem Early Childhood,02580001, 9, 13.6, 118, 44.1, 55.9, 1.7, 51.7,51.7 +5.14,5,a-reso-i1,2022-23,Salem - Salem High,02580505, 560, 14.3, 926, 47.3, 52.4, 17.0, 25.1,65.6 +7.159999999999999,5,a-reso-i1,2022-23,Salem - Salem Prep High School,02580515, 91, 4.2, 20, 45.0, 55.0, 10.0, 95.0,75 +4.8,4.8,a-reso-i1,2022-23,Salem - Saltonstall School,02580050, 189, 16.0, 397, 50.4, 49.6, 18.4, 25.7,56.2 +4.46,4.46,a-reso-i1,2022-23,Salem - Witchcraft Heights,02580070, 190, 17.7, 462, 46.1, 53.9, 24.2, 22.1,56.1 +4.34,4.34,a-reso-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 249, 18.3, 488, 50.6, 48.8, 3.7, 17.6,50.2 +4.3,4.3,a-reso-i1,2022-23,Sandwich - Forestdale School,02610002, 287, 18.5, 567, 45.7, 54.3, 2.7, 16.8,30.3 +4.1,4.1,a-reso-i1,2022-23,Sandwich - Oak Ridge,02610025, 424, 19.5, 676, 49.9, 50.2, 1.6, 23.5,25.3 +5.12,5,a-reso-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 599, 14.4, 929, 48.1, 51.2, 0.8, 23.5,20.2 +3.72,3.72,a-reso-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 525, 21.4, 826, 47.6, 52.4, 9.9, 13.4,47.1 +5.0,5.0,a-reso-i1,2022-23,Saugus - Saugus High,02620505, 402, 15.0, 736, 47.0, 52.9, 9.1, 12.1,46.5 +4.0600000000000005,4.06,a-reso-i1,2022-23,Saugus - Saugus Middle School,02620305, 264, 19.7, 628, 46.8, 53.2, 7.6, 15.1,49.5 +5.0200000000000005,5,a-reso-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 228, 14.9, 456, 40.6, 59.4, 20.8, 11.4,45.6 +6.959999999999999,5,a-reso-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 45, 5.2, 37, 48.7, 51.4, 0.0, 16.2,70.3 +4.220000000000001,4.22,a-reso-i1,2022-23,Scituate - Cushing Elementary,02640007, 157, 18.9, 354, 52.5, 47.5, 0.9, 14.4,8.5 +4.14,4.14,a-reso-i1,2022-23,Scituate - Gates Middle School,02640305, 393, 19.3, 608, 45.9, 54.0, 0.8, 17.3,14.1 +3.7399999999999998,3.74,a-reso-i1,2022-23,Scituate - Hatherly Elementary,02640010, 100, 21.3, 259, 47.1, 52.9, 0.4, 23.2,11.6 +4.26,4.26,a-reso-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 149, 18.7, 330, 47.6, 52.4, 0.9, 16.7,13.6 +5.279999999999999,5,a-reso-i1,2022-23,Scituate - Scituate High School,02640505, 519, 13.6, 765, 51.0, 48.2, 0.0, 14.8,15.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 161, 21.3, 469, 49.5, 50.5, 1.1, 24.5,11.1 +5.18,5,a-reso-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 371, 14.1, 493, 50.5, 49.5, 3.0, 20.7,18.9 +4.0,4.0,a-reso-i1,2022-23,Seekonk - George R Martin,02650007, 117, 20.0, 455, 55.0, 45.1, 4.2, 20.0,24 +4.1,4.1,a-reso-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 194, 19.5, 583, 45.8, 53.9, 3.8, 23.7,16.6 +5.279999999999999,5,a-reso-i1,2022-23,Seekonk - Seekonk High,02650505, 344, 13.6, 539, 46.4, 52.9, 1.3, 17.3,19.9 +7.2,5,a-reso-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4, 4.0, 4, 50.0, 50.0, 0.0, 100.0,75 +4.1,4.1,a-reso-i1,2022-23,Sharon - Cottage Street,02660005, 189, 19.5, 446, 48.2, 51.8, 8.1, 17.9,13 +3.78,3.78,a-reso-i1,2022-23,Sharon - East Elementary,02660010, 197, 21.1, 496, 47.2, 52.6, 8.3, 12.7,9.9 +3.3600000000000003,3.36,a-reso-i1,2022-23,Sharon - Heights Elementary,02660015, 208, 23.2, 574, 49.8, 50.2, 4.4, 14.1,12.9 +4.5,4.5,a-reso-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4, 17.5, 70, 35.7, 64.3, 0.0, 58.6,12.9 +4.92,4.92,a-reso-i1,2022-23,Sharon - Sharon High,02660505, 565, 15.4," 1,149", 48.6, 51.4, 1.7, 14.1,14.2 +4.12,4.12,a-reso-i1,2022-23,Sharon - Sharon Middle,02660305, 609, 19.4, 861, 49.8, 49.9, 1.5, 14.4,10.3 +5.5,5,a-reso-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 845, 12.5," 1,298", 37.5, 61.9, 0.4, 26.4,21 +4.220000000000001,4.22,a-reso-i1,2022-23,Sherborn - Pine Hill,02690010, 212, 18.9, 412, 52.4, 47.3, 1.2, 18.2,6.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 62, 17.2, 254, 53.9, 46.1, 16.5, 17.7,35 +4.0,4.0,a-reso-i1,2022-23,Shrewsbury - Floral Street School,02710020, 132, 20.0, 549, 44.3, 55.7, 8.4, 15.9,15.7 +4.12,4.12,a-reso-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 140, 19.4, 601, 47.4, 52.4, 4.5, 16.3,20.8 +3.5,3.5,a-reso-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 482, 22.5, 965, 50.7, 49.2, 2.9, 15.1,17.5 +5.64,5,a-reso-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 18, 11.8, 212, 44.8, 55.2, 0.0, 44.3,24.1 +3.3200000000000003,3.32,a-reso-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 567, 23.4, 974, 45.6, 54.4, 3.1, 13.4,16.9 +4.32,4.32,a-reso-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 896, 18.4," 1,838", 51.5, 48.5, 2.6, 9.7,17.5 +4.0200000000000005,4.02,a-reso-i1,2022-23,Shrewsbury - Spring Street School,02710035, 66, 19.9, 307, 45.9, 54.1, 2.0, 15.0,8.5 +4.5200000000000005,4.52,a-reso-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 72, 17.4, 295, 48.5, 51.5, 3.7, 15.9,14.6 +4.9799999999999995,4.98,a-reso-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 59, 15.1, 121, 52.1, 46.3, 0.8, 25.6,35.5 +4.4399999999999995,4.44,a-reso-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 439, 17.8," 1,040", 48.5, 51.4, 1.9, 14.1,23.9 +4.18,4.18,a-reso-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 296, 19.1, 533, 48.8, 51.2, 2.6, 18.6,23.8 +5.18,5,a-reso-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 219, 14.1, 380, 48.2, 50.3, 2.4, 27.6,52.4 +3.34,3.34,a-reso-i1,2022-23,Somerset - Chace Street,02730005, 155, 23.3, 327, 50.8, 49.2, 1.8, 22.3,29.7 +4.18,4.18,a-reso-i1,2022-23,Somerset - North Elementary,02730008, 238, 19.1, 473, 44.0, 56.0, 1.5, 23.7,31.9 +3.9,3.9,a-reso-i1,2022-23,Somerset - Somerset Middle School,02730305, 349, 20.5, 583, 48.5, 51.5, 0.7, 18.0,31.2 +3.7,3.7,a-reso-i1,2022-23,Somerset - South,02730015, 136, 21.5, 265, 49.1, 50.9, 2.3, 22.3,38.5 +4.6,4.6,a-reso-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 448, 17.0," 1,003", 50.5, 49.4, 0.5, 11.3,25.2 +4.54,4.54,a-reso-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 198, 17.3, 570, 44.7, 54.9, 32.3, 13.0,44.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Somerville - Arthur D Healey,02740075, 179, 17.6, 521, 47.4, 52.4, 38.2, 20.2,69.1 +4.18,4.18,a-reso-i1,2022-23,Somerville - Benjamin G Brown,02740015, 59, 19.1, 214, 62.2, 37.9, 7.5, 9.8,15.4 +6.42,5,a-reso-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 60, 7.9, 247, 40.1, 59.5, 9.7, 41.7,47 +4.0600000000000005,4.06,a-reso-i1,2022-23,Somerville - E Somerville Community,02740111, 236, 19.7, 722, 44.0, 55.7, 39.9, 15.1,61.8 +6.36,5,a-reso-i1,2022-23,Somerville - Full Circle High School,02740510, 250, 8.2, 74, 40.5, 58.1, 18.9, 70.3,83.8 +4.46,4.46,a-reso-i1,2022-23,Somerville - John F Kennedy,02740083, 156, 17.7, 439, 48.3, 51.7, 5.2, 21.2,27.3 +7.040000000000001,5,a-reso-i1,2022-23,Somerville - Next Wave Junior High,02740410, 144, 4.8, 22, 31.8, 68.2, 18.2, 90.9,90.9 +5.68,5,a-reso-i1,2022-23,Somerville - Somerville High,02740505, 836, 11.6," 1,342", 46.9, 51.7, 18.9, 17.4,55.4 +4.32,4.32,a-reso-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 128, 18.4, 374, 48.7, 51.1, 7.0, 17.4,36.1 +4.76,4.76,a-reso-i1,2022-23,Somerville - Winter Hill Community,02740120, 187, 16.2, 441, 44.4, 55.3, 37.9, 23.4,59.6 +4.279999999999999,4.28,a-reso-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 277, 18.6, 528, 50.8, 49.1, 3.6, 24.6,39.2 +3.9,3.9,a-reso-i1,2022-23,South Hadley - Mosier,02780020, 75, 20.5, 343, 51.9, 48.1, 5.5, 19.8,30.9 +4.88,4.88,a-reso-i1,2022-23,South Hadley - Plains Elementary,02780015, 60, 15.6, 334, 42.8, 57.2, 6.9, 26.1,38.9 +5.4799999999999995,5,a-reso-i1,2022-23,South Hadley - South Hadley High,02780505, 290, 12.6, 500, 50.0, 49.2, 4.4, 22.0,31.6 +5.62,5,a-reso-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 751, 11.9, 831, 43.0, 55.8, 15.6, 31.3,55.7 +4.3,4.3,a-reso-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 471, 18.5," 1,062", 48.0, 51.3, 10.4, 19.9,30.8 +4.9,4.9,a-reso-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 323, 15.5, 643, 33.4, 65.6, 0.2, 25.8,28.3 +4.4,4.4,a-reso-i1,2022-23,Southampton - William E Norris,02750005, 172, 18.0, 486, 46.9, 53.1, 1.4, 28.2,18.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 76, 15.3, 269, 50.2, 49.8, 6.3, 13.0,8.6 +3.94,3.94,a-reso-i1,2022-23,Southborough - Margaret A Neary,02760020, 88, 20.3, 268, 49.3, 50.8, 3.7, 14.2,8.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Southborough - Mary E Finn School,02760008, 67, 17.6, 372, 47.0, 53.0, 14.0, 23.1,9.1 +5.3,5,a-reso-i1,2022-23,Southborough - P Brent Trottier,02760305, 317, 13.5, 388, 50.5, 49.2, 1.3, 15.7,7.2 +4.66,4.66,a-reso-i1,2022-23,Southbridge - Charlton Street,02770005, 76, 16.7, 254, 51.6, 48.4, 16.1, 31.9,89.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Southbridge - Eastford Road,02770010, 92, 16.4, 365, 44.7, 55.3, 15.6, 29.6,83.8 +6.76,5,a-reso-i1,2022-23,Southbridge - Southbridge Academy,02770525, 24, 6.2, 27, 33.3, 66.7, 22.2, 96.3,96.3 +3.94,3.94,a-reso-i1,2022-23,Southbridge - Southbridge High School,02770515, 193, 20.3, 476, 44.8, 54.4, 21.6, 21.0,77.7 +4.14,4.14,a-reso-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 155, 19.3, 418, 47.9, 52.2, 18.7, 28.0,82.5 +4.68,4.68,a-reso-i1,2022-23,Southbridge - West Street,02770020, 102, 16.6, 339, 49.9, 50.2, 17.1, 21.8,81.7 +4.32,4.32,a-reso-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 665, 18.4," 1,566", 52.8, 46.2, 4.9, 15.2,42.7 +5.9799999999999995,5,a-reso-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 268, 10.1, 294, 46.9, 52.7, 3.7, 15.3,41.8 +5.58,5,a-reso-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 50, 12.1, 66, 56.1, 43.9, 0.0, 3.0,31.8 +5.4,5,a-reso-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1, 13.0, 13, 76.9, 23.1, 0.0, 0.0,23.1 +4.779999999999999,4.78,a-reso-i1,2022-23,Southern Berkshire - Undermountain,07650035, 161, 16.1, 243, 50.6, 49.4, 8.2, 9.9,44.9 +5.32,5,a-reso-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,032", 13.4," 1,183", 44.2, 55.6, 1.6, 13.4,34.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 208, 17.4, 390, 48.2, 51.8, 6.4, 18.0,38 +5.1,5,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 355, 14.5, 637, 51.2, 48.8, 2.2, 16.3,30.9 +5.08,5,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 198, 14.6, 333, 48.4, 51.7, 6.0, 16.2,36.3 +4.16,4.16,a-reso-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 178, 19.2, 367, 46.1, 53.7, 5.2, 15.0,52.6 +4.16,4.16,a-reso-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 19.2, 254, 45.3, 54.7, 2.4, 27.2,35.8 +4.32,4.32,a-reso-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 173, 18.4, 394, 45.2, 54.6, 5.1, 22.3,52.5 +4.18,4.18,a-reso-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 92, 19.1, 442, 46.6, 53.4, 6.6, 26.7,57 +3.8,3.8,a-reso-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 202, 21.0, 431, 54.5, 45.5, 4.6, 10.0,52 +4.0600000000000005,4.06,a-reso-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 174, 19.7, 303, 47.2, 52.8, 19.1, 19.8,81.2 +5.12,5,a-reso-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 183, 14.4, 228, 47.4, 52.6, 14.5, 29.4,90.8 +5.54,5,a-reso-i1,2022-23,Springfield - Balliet Preschool,02810003, 13, 12.3, 160, 35.6, 64.4, 13.8, 55.6,80 +3.7600000000000002,3.76,a-reso-i1,2022-23,Springfield - Brightwood,02810025, 261, 21.2, 474, 51.7, 48.3, 27.2, 26.8,95.4 +5.279999999999999,5,a-reso-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 175, 13.6, 273, 44.3, 55.0, 5.1, 22.0,75.8 +5.76,5,a-reso-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 204, 11.2, 311, 68.8, 30.6, 8.7, 27.7,83.6 +4.42,4.42,a-reso-i1,2022-23,Springfield - Daniel B Brunton,02810035, 218, 17.9, 366, 53.0, 47.0, 16.1, 23.2,86.6 +5.58,5,a-reso-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 17, 12.1, 205, 46.3, 53.7, 19.0, 55.1,89.8 +5.32,5,a-reso-i1,2022-23,Springfield - Edward P. Boland School,02810010, 415, 13.4, 567, 43.0, 57.0, 23.6, 41.3,93.8 +4.88,4.88,a-reso-i1,2022-23,Springfield - Elias Brookings,02810030, 207, 15.6, 285, 49.8, 50.2, 22.8, 29.8,87.4 +3.7399999999999998,3.74,a-reso-i1,2022-23,Springfield - Emergence Academy,02810318, 77, 21.3, 186, 46.8, 52.7, 98.4, 5.9,90.3 +5.26,5,a-reso-i1,2022-23,Springfield - Forest Park Middle,02810325, 262, 13.7, 396, 50.8, 49.0, 11.4, 29.6,91.7 +4.220000000000001,4.22,a-reso-i1,2022-23,Springfield - Frank H Freedman,02810075, 169, 18.9, 276, 53.3, 46.7, 12.0, 21.7,82.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Springfield - Frederick Harris,02810080, 369, 17.4, 557, 47.8, 52.2, 16.2, 28.0,78.3 +4.0,4.0,a-reso-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 1, 20.0, 20, 65.0, 35.0, 5.0, 10.0,95 +3.6,3.6,a-reso-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 1, 22.0, 22, 59.1, 40.9, 4.6, 13.6,86.4 +4.96,4.96,a-reso-i1,2022-23,Springfield - German Gerena Community School,02810195, 428, 15.2, 613, 47.2, 52.9, 24.1, 26.4,88.6 +4.32,4.32,a-reso-i1,2022-23,Springfield - Glenwood,02810065, 183, 18.4, 284, 50.0, 49.7, 19.0, 20.4,86.3 +4.720000000000001,4.72,a-reso-i1,2022-23,Springfield - Glickman Elementary,02810068, 219, 16.4, 313, 46.3, 53.7, 20.5, 38.7,86.3 +5.4399999999999995,5,a-reso-i1,2022-23,Springfield - High School Of Commerce,02810510, 737, 12.8," 1,101", 47.4, 52.5, 15.3, 22.0,85.1 +4.279999999999999,4.28,a-reso-i1,2022-23,Springfield - Hiram L Dorman,02810050, 184, 18.6, 295, 47.5, 52.5, 20.3, 27.5,91.9 +4.4399999999999995,4.44,a-reso-i1,2022-23,Springfield - Homer Street,02810085, 262, 17.8, 415, 48.4, 51.6, 22.9, 22.4,94 +3.84,3.84,a-reso-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 128, 20.8, 218, 48.2, 51.8, 6.9, 27.5,91.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 312, 18.6, 557, 47.4, 52.6, 14.0, 27.3,89.1 +4.5,4.5,a-reso-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 267, 17.5, 410, 52.4, 47.6, 12.0, 32.4,91.7 +5.04,5,a-reso-i1,2022-23,Springfield - John J Duggan Academy,02810320, 606, 14.8, 834, 46.0, 53.6, 9.0, 25.7,79.7 +4.88,4.88,a-reso-i1,2022-23,Springfield - Kensington International School,02810110, 171, 15.6, 243, 49.0, 51.0, 27.6, 25.9,94.7 +5.08,5,a-reso-i1,2022-23,Springfield - Kiley Academy,02810316, 275, 14.6, 348, 48.0, 52.0, 10.3, 35.3,94 +4.42,4.42,a-reso-i1,2022-23,Springfield - Kiley Prep,02810315, 157, 17.9, 300, 44.7, 54.7, 11.0, 32.7,90 +4.24,4.24,a-reso-i1,2022-23,Springfield - Liberty,02810115, 154, 18.8, 253, 45.9, 54.2, 19.8, 18.2,88.1 +7.220000000000001,5,a-reso-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 16, 3.9, 12, 0.0, 100.0, 8.3, 25.0,100 +3.66,3.66,a-reso-i1,2022-23,Springfield - Lincoln,02810120, 232, 21.7, 449, 50.1, 49.9, 32.1, 27.6,95.1 +5.82,5,a-reso-i1,2022-23,Springfield - Margaret C Ells,02810060, 17, 10.9, 186, 36.0, 64.0, 16.7, 59.1,85 +4.3,4.3,a-reso-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 175, 18.5, 298, 50.3, 49.7, 17.1, 22.2,77.2 +4.62,4.62,a-reso-i1,2022-23,Springfield - Mary M Lynch,02810140, 153, 16.9, 226, 50.9, 49.1, 7.5, 17.3,90.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Springfield - Mary M Walsh,02810155, 199, 15.3, 263, 50.2, 49.8, 20.5, 33.8,84.8 +3.7399999999999998,3.74,a-reso-i1,2022-23,Springfield - Mary O Pottenger,02810145, 229, 21.3, 400, 48.5, 51.3, 14.0, 17.5,84.3 +4.5,4.5,a-reso-i1,2022-23,Springfield - Milton Bradley School,02810023, 323, 17.5, 510, 49.4, 50.6, 22.0, 32.2,95.1 +4.74,4.74,a-reso-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 389, 16.3, 592, 45.4, 54.6, 20.3, 30.4,93.4 +4.54,4.54,a-reso-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 132, 17.3, 251, 47.4, 52.6, 12.8, 27.9,92 +5.220000000000001,5,a-reso-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 882, 13.9," 1,356", 53.8, 46.0, 8.0, 15.3,78.7 +5.32,5,a-reso-i1,2022-23,Springfield - STEM Middle Academy,02810350, 189, 13.4, 296, 47.3, 52.7, 7.8, 23.7,83.8 +5.34,5,a-reso-i1,2022-23,Springfield - Samuel Bowles,02810020, 198, 13.3, 218, 52.8, 47.3, 14.7, 22.0,86.7 +5.08,5,a-reso-i1,2022-23,Springfield - South End Middle School,02810355, 86, 14.6, 188, 48.9, 51.1, 10.1, 25.5,95.7 +4.76,4.76,a-reso-i1,2022-23,Springfield - Springfield Central High,02810500," 1,057", 16.2," 2,067", 45.9, 54.0, 15.0, 18.5,79.3 +4.54,4.54,a-reso-i1,2022-23,Springfield - Springfield High School,02810570, 93, 17.3, 287, 47.0, 51.9, 12.9, 31.0,91.6 +5.74,5,a-reso-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 793, 11.3," 1,075", 44.6, 55.2, 15.2, 26.1,88.1 +5.58,5,a-reso-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 12.1, 37, 59.5, 40.5, 100.0, 0.0,89.2 +5.4,5,a-reso-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 46, 13.0, 86, 30.2, 69.8, 100.0, 1.2,80.2 +4.64,4.64,a-reso-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 109, 16.8, 328, 45.7, 54.3, 23.2, 28.1,95.1 +6.9,5,a-reso-i1,2022-23,Springfield - Springfield Middle School,02810360, 33, 5.5, 32, 15.6, 84.4, 9.4, 40.6,96.9 +6.92,5,a-reso-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 117, 5.4, 45, 31.1, 68.9, 8.9, 100.0,93.3 +7.0,5,a-reso-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 88, 5.0, 53, 30.2, 69.8, 7.6, 96.2,96.2 +6.56,5,a-reso-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 63, 7.2, 71, 23.9, 76.1, 16.9, 100.0,100 +4.54,4.54,a-reso-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 131, 17.3, 134, 56.7, 43.3, 28.4, 18.7,89.6 +6.24,5,a-reso-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 20, 8.8, 82, 29.3, 70.7, 0.0, 100.0,89 +4.9,4.9,a-reso-i1,2022-23,Springfield - Sumner Avenue,02810160, 344, 15.5, 469, 47.3, 52.7, 26.2, 28.4,89.8 +5.16,5,a-reso-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 373, 14.2, 632, 52.1, 47.8, 5.9, 22.8,73.4 +5.3,5,a-reso-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 275, 13.5, 402, 49.3, 50.8, 13.4, 34.6,89.8 +4.34,4.34,a-reso-i1,2022-23,Springfield - Thomas M Balliet,02810015, 183, 18.3, 280, 50.4, 49.6, 14.3, 22.5,81.8 +5.36,5,a-reso-i1,2022-23,Springfield - Van Sickle Academy,02810485, 188, 13.2, 269, 49.8, 50.2, 14.9, 33.8,86.6 +4.84,4.84,a-reso-i1,2022-23,Springfield - Warner,02810180, 164, 15.8, 254, 45.3, 54.7, 12.2, 26.0,85 +4.62,4.62,a-reso-i1,2022-23,Springfield - Washington,02810185, 264, 16.9, 422, 50.7, 49.3, 24.2, 29.4,91 +3.6399999999999997,3.64,a-reso-i1,2022-23,Springfield - White Street,02810190, 229, 21.8, 417, 50.4, 49.6, 26.4, 17.5,91.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Springfield - William N. DeBerry,02810045, 183, 17.8, 257, 47.9, 52.1, 27.2, 27.6,93.8 +2.8,2.8,a-reso-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 770, 26.0," 1,554", 49.0, 51.0, 10.0, 19.6,61.7 +3.1,3.1,a-reso-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 194, 24.5, 497, 47.9, 51.7, 10.3, 18.7,74 +3.96,3.96,a-reso-i1,2022-23,Stoneham - Colonial Park,02840005, 95, 20.2, 256, 44.1, 55.9, 2.7, 28.1,18 +3.9200000000000004,3.92,a-reso-i1,2022-23,Stoneham - Robin Hood,02840025, 146, 20.4, 382, 49.5, 50.5, 7.6, 21.5,22.3 +3.78,3.78,a-reso-i1,2022-23,Stoneham - South,02840030, 125, 21.1, 363, 47.4, 52.3, 8.5, 26.7,28.1 +4.9,4.9,a-reso-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 510, 15.5, 683, 51.4, 48.6, 3.4, 20.8,24.3 +5.5,5,a-reso-i1,2022-23,Stoneham - Stoneham High,02840505, 435, 12.5, 619, 48.6, 50.9, 3.4, 17.1,26.7 +5.32,5,a-reso-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 12, 13.4, 151, 35.1, 64.9, 0.0, 51.0,52.3 +5.1,5,a-reso-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 151, 14.5, 266, 47.4, 52.6, 9.0, 24.8,44 +4.6,4.6,a-reso-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 168, 17.0, 357, 46.2, 53.5, 11.2, 19.9,42.6 +5.26,5,a-reso-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 223, 13.7, 384, 44.5, 55.5, 13.0, 20.8,42.7 +4.36,4.36,a-reso-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 520, 18.2, 847, 49.7, 50.3, 8.3, 17.5,48.8 +4.62,4.62,a-reso-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 139, 16.9, 289, 55.4, 44.6, 26.0, 17.7,62.3 +4.64,4.64,a-reso-i1,2022-23,Stoughton - South Elementary,02850015, 141, 16.8, 286, 50.0, 50.0, 8.7, 22.4,34.3 +4.66,4.66,a-reso-i1,2022-23,Stoughton - Stoughton High,02850505, 726, 16.7," 1,123", 49.2, 50.8, 11.0, 14.8,43.4 +3.62,3.62,a-reso-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 239, 21.9, 892, 51.2, 48.5, 3.0, 16.4,22.5 +5.18,5,a-reso-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 524, 14.1, 827, 59.9, 39.1, 1.6, 16.1,23 +4.8,4.8,a-reso-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 635, 16.0, 860, 45.6, 54.4, 0.5, 25.5,8.8 +3.9,3.9,a-reso-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 193, 20.5, 329, 55.3, 44.7, 4.6, 19.8,6.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Sudbury - Israel Loring School,02880015, 275, 20.7, 434, 48.6, 51.4, 5.3, 20.5,13.8 +4.08,4.08,a-reso-i1,2022-23,Sudbury - Josiah Haynes,02880010, 213, 19.6, 374, 46.0, 54.0, 2.9, 19.5,5.9 +3.88,3.88,a-reso-i1,2022-23,Sudbury - Peter Noyes,02880030, 279, 20.6, 584, 47.6, 52.4, 2.4, 24.8,8.4 +5.64,5,a-reso-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 158, 11.8, 177, 42.9, 55.4, 4.5, 22.0,33.3 +4.4,4.4,a-reso-i1,2022-23,Sutton - Sutton Early Learning,02900003, 80, 18.0, 329, 47.1, 52.9, 1.5, 26.4,20.1 +3.22,3.22,a-reso-i1,2022-23,Sutton - Sutton Elementary,02900005, 102, 23.9, 308, 47.4, 52.6, 2.0, 22.4,17.2 +4.8,4.8,a-reso-i1,2022-23,Sutton - Sutton High School,02900510, 162, 16.0, 371, 50.9, 48.3, 1.4, 5.1,20.5 +4.24,4.24,a-reso-i1,2022-23,Sutton - Sutton Middle School,02900305, 108, 18.8, 303, 51.8, 48.2, 1.7, 18.8,16.5 +4.26,4.26,a-reso-i1,2022-23,Swampscott - Clarke,02910005, 88, 18.7, 207, 47.8, 52.2, 17.9, 22.7,28 +4.04,4.04,a-reso-i1,2022-23,Swampscott - Hadley,02910010, 144, 19.8, 357, 48.2, 51.8, 8.7, 17.9,19.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Swampscott - Stanley,02910020, 68, 18.9, 162, 40.7, 59.3, 3.1, 23.5,11.1 +5.18,5,a-reso-i1,2022-23,Swampscott - Swampscott High,02910505, 435, 14.1, 645, 48.5, 51.2, 3.0, 18.5,21.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Swampscott - Swampscott Middle,02910305, 464, 17.4, 697, 48.1, 51.7, 3.0, 28.3,21.2 +3.2399999999999998,3.24,a-reso-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 121, 23.8, 288, 46.2, 53.8, 1.4, 13.5,26 +3.78,3.78,a-reso-i1,2022-23,Swansea - Gardner,02920015, 109, 21.1, 251, 54.6, 45.4, 2.0, 8.8,34.3 +5.16,5,a-reso-i1,2022-23,Swansea - Joseph Case High,02920505, 265, 14.2, 540, 49.3, 50.6, 0.7, 14.4,27.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 205, 17.8, 497, 48.9, 51.1, 0.8, 11.3,26 +4.58,4.58,a-reso-i1,2022-23,Swansea - Joseph G Luther,02920020, 107, 17.1, 183, 52.5, 47.5, 0.6, 21.9,24 +4.220000000000001,4.22,a-reso-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 94, 18.9, 251, 45.4, 54.6, 0.4, 23.9,29.9 +-0.6400000000000006,1,a-reso-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 786, 43.2," 3,222", 56.3, 43.4, 5.3, 23.7,56.3 +4.4399999999999995,4.44,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 393, 17.8, 556, 45.9, 54.1, 1.4, 13.5,28.4 +5.58,5,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 779, 12.1," 1,196", 45.7, 53.7, 1.4, 12.2,27.8 +5.74,5,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 73, 11.3, 504, 32.9, 66.7, 1.0, 15.9,32.5 +3.7,3.7,a-reso-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 345, 21.5, 745, 47.0, 53.0, 3.1, 18.5,56.2 +4.8,4.8,a-reso-i1,2022-23,Taunton - East Taunton Elementary,02930010, 251, 16.0, 531, 49.9, 50.1, 4.0, 26.6,54.4 +4.12,4.12,a-reso-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 117, 19.4, 291, 50.2, 49.8, 4.5, 19.2,48.8 +4.54,4.54,a-reso-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 19, 17.3, 328, 37.2, 62.8, 11.9, 61.0,58.5 +4.08,4.08,a-reso-i1,2022-23,Taunton - Elizabeth Pole,02930027, 250, 19.6, 628, 50.2, 49.8, 19.8, 17.7,70.7 +4.2,4.2,a-reso-i1,2022-23,Taunton - H H Galligan,02930057, 109, 19.0, 266, 50.0, 50.0, 18.8, 19.2,79.3 +4.46,4.46,a-reso-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 363, 17.7, 852, 49.9, 50.1, 9.6, 20.5,66.9 +3.06,3.06,a-reso-i1,2022-23,Taunton - John F Parker Middle,02930305, 213, 24.7, 543, 48.4, 51.6, 16.4, 15.7,67 +4.32,4.32,a-reso-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 188, 18.4, 456, 49.3, 50.7, 4.8, 22.6,51.5 +4.6,4.6,a-reso-i1,2022-23,Taunton - Joseph H Martin,02930042, 384, 17.0, 651, 49.5, 50.5, 5.1, 21.5,53.3 +6.62,5,a-reso-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 113, 6.9, 112, 43.8, 56.3, 4.5, 32.1,84.8 +4.12,4.12,a-reso-i1,2022-23,Taunton - Taunton High,02930505," 1,032", 19.4," 2,824", 48.5, 51.4, 7.7, 17.5,54.3 +4.14,4.14,a-reso-i1,2022-23,Tewksbury - Heath-Brook,02950010, 52, 19.3, 236, 48.3, 51.7, 12.3, 11.4,20.3 +4.04,4.04,a-reso-i1,2022-23,Tewksbury - John F. Ryan,02950023, 284, 19.8, 521, 51.6, 48.4, 2.1, 20.5,24.2 +4.04,4.04,a-reso-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 251, 19.8, 502, 50.6, 49.4, 2.2, 18.1,25.9 +4.32,4.32,a-reso-i1,2022-23,Tewksbury - L F Dewing,02950001, 90, 18.4, 481, 50.7, 49.3, 7.3, 32.6,24.3 +8.0,5,a-reso-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +8.0,5,a-reso-i1,2022-23,Tewksbury - North Street,02950020, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.5200000000000005,4.52,a-reso-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 403, 17.4, 759, 48.6, 51.0, 1.3, 12.0,21.5 +5.6,5,a-reso-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 200, 12.0, 275, 49.1, 50.9, 30.2, 22.2,54.6 +4.6,4.6,a-reso-i1,2022-23,Topsfield - Proctor Elementary,02980005, 94, 17.0, 258, 49.6, 50.4, 0.0, 22.9,8.5 +4.779999999999999,4.78,a-reso-i1,2022-23,Topsfield - Steward Elementary,02980010, 105, 16.1, 376, 48.9, 51.1, 0.0, 26.1,8 +4.64,4.64,a-reso-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 840, 16.8, 956, 39.3, 59.3, 0.2, 30.8,24.7 +4.4,4.4,a-reso-i1,2022-23,Triton - Newbury Elementary,07730020, 198, 18.0, 413, 47.5, 52.5, 0.0, 20.6,20.3 +4.4799999999999995,4.48,a-reso-i1,2022-23,Triton - Pine Grove,07730025, 217, 17.6, 432, 49.8, 50.2, 1.6, 22.2,22.5 +4.62,4.62,a-reso-i1,2022-23,Triton - Salisbury Elementary,07730015, 220, 16.9, 422, 49.1, 51.0, 5.0, 21.8,49.3 +5.3,5,a-reso-i1,2022-23,Triton - Triton Regional High School,07730505, 348, 13.5, 635, 49.1, 50.4, 1.4, 18.1,30.4 +4.82,4.82,a-reso-i1,2022-23,Triton - Triton Regional Middle School,07730405, 194, 15.9, 322, 48.5, 51.6, 0.3, 23.0,33.2 +5.36,5,a-reso-i1,2022-23,Truro - Truro Central,03000005, 67, 13.2, 101, 48.5, 51.5, 3.0, 17.8,38.6 +4.14,4.14,a-reso-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 409, 19.3, 761, 47.4, 52.6, 13.4, 26.8,28.9 +4.88,4.88,a-reso-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 330, 15.6, 419, 48.5, 51.6, 1.7, 14.6,19.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 255, 17.8, 406, 43.6, 56.2, 3.0, 20.2,22.4 +5.12,5,a-reso-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 136, 14.4, 203, 52.7, 47.3, 21.2, 34.0,86.7 +3.7600000000000002,3.76,a-reso-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 181, 21.2, 598, 50.5, 49.5, 35.8, 12.2,84.1 +4.76,4.76,a-reso-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 19, 16.2, 71, 52.1, 47.9, 0.0, 28.2,25.4 +4.96,4.96,a-reso-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 141, 15.2, 345, 47.5, 52.5, 5.5, 24.4,29.3 +5.279999999999999,5,a-reso-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 338, 13.6, 742, 42.1, 57.4, 0.4, 24.0,40.7 +8.0,5,a-reso-i1,2022-23,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.4399999999999995,4.44,a-reso-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 183, 17.8, 539, 46.8, 53.3, 2.8, 23.6,29.3 +5.279999999999999,5,a-reso-i1,2022-23,Uxbridge - Uxbridge High,03040505, 409, 13.6, 602, 43.5, 56.5, 1.7, 18.1,26.9 +4.26,4.26,a-reso-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 206, 18.7, 492, 43.9, 56.1, 2.9, 18.9,29.7 +3.54,3.54,a-reso-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 211, 22.3, 484, 53.9, 45.9, 5.4, 24.6,83.9 +4.42,4.42,a-reso-i1,2022-23,Wachusett - Central Tree Middle,07750310, 188, 17.9, 372, 50.5, 49.5, 1.1, 11.6,23.1 +4.82,4.82,a-reso-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 154, 15.9, 280, 46.1, 53.9, 1.8, 11.4,19.6 +4.14,4.14,a-reso-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 168, 19.3, 452, 47.4, 52.7, 3.3, 8.0,17.7 +4.38,4.38,a-reso-i1,2022-23,Wachusett - Dawson,07750020, 195, 18.1, 500, 53.6, 46.4, 2.8, 12.4,14.4 +4.0,4.0,a-reso-i1,2022-23,Wachusett - Early Childhood Center,07750001, 8, 20.0, 160, 35.6, 64.4, 0.0, 60.6,28.1 +4.1,4.1,a-reso-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 144, 19.5, 337, 51.3, 48.7, 2.4, 9.8,17.8 +4.76,4.76,a-reso-i1,2022-23,Wachusett - Houghton Elementary,07750027, 146, 16.2, 329, 45.3, 54.7, 6.7, 13.7,20.1 +4.18,4.18,a-reso-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 183, 19.1, 488, 48.4, 51.6, 3.5, 8.6,16.6 +3.8600000000000003,3.86,a-reso-i1,2022-23,Wachusett - Mountview Middle,07750305, 350, 20.7, 781, 47.6, 52.1, 2.1, 12.0,15.1 +4.04,4.04,a-reso-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 132, 19.8, 367, 46.6, 53.4, 1.6, 7.6,18.5 +4.4799999999999995,4.48,a-reso-i1,2022-23,Wachusett - Paxton Center,07750040, 196, 17.6, 447, 52.1, 47.9, 3.1, 19.5,14.8 +4.5200000000000005,4.52,a-reso-i1,2022-23,Wachusett - Thomas Prince,07750045, 153, 17.4, 344, 48.6, 51.5, 0.6, 12.2,11.1 +4.68,4.68,a-reso-i1,2022-23,Wachusett - Wachusett Regional High,07750505," 1,043", 16.6," 1,929", 52.8, 47.1, 1.2, 15.2,16.4 +3.6399999999999997,3.64,a-reso-i1,2022-23,Wakefield - Dolbeare,03050005, 180, 21.8, 437, 53.8, 46.2, 6.4, 15.1,16 +6.0200000000000005,5,a-reso-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 28, 9.9, 139, 41.7, 58.3, 0.0, 45.3,20.1 +3.9,3.9,a-reso-i1,2022-23,Wakefield - Galvin Middle School,03050310, 563, 20.5," 1,074", 47.6, 52.1, 2.1, 19.7,17.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Wakefield - Greenwood,03050020, 90, 21.8, 218, 45.9, 54.1, 1.4, 13.8,9.6 +5.5200000000000005,5,a-reso-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 551, 12.4, 826, 50.7, 49.2, 2.2, 17.0,18.5 +3.78,3.78,a-reso-i1,2022-23,Wakefield - Walton,03050040, 90, 21.1, 211, 42.2, 57.8, 3.3, 14.2,7.6 +4.14,4.14,a-reso-i1,2022-23,Wakefield - Woodville School,03050015, 191, 19.3, 423, 50.8, 49.2, 7.1, 18.2,26.2 +5.5,5,a-reso-i1,2022-23,Wales - Wales Elementary,03060005, 39, 12.5, 98, 39.8, 60.2, 2.0, 27.6,53.1 +4.9799999999999995,4.98,a-reso-i1,2022-23,Walpole - Bird Middle,03070305, 286, 15.1, 380, 52.6, 47.1, 2.9, 18.2,20.5 +4.74,4.74,a-reso-i1,2022-23,Walpole - Boyden,03070010, 125, 16.3, 407, 45.2, 54.8, 5.4, 19.2,20.9 +5.14,5,a-reso-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 8, 14.3, 114, 36.8, 63.2, 8.8, 50.9,19.3 +4.5,4.5,a-reso-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 280, 17.5, 420, 47.4, 52.6, 1.7, 16.2,11.9 +3.96,3.96,a-reso-i1,2022-23,Walpole - Elm Street School,03070005, 110, 20.2, 446, 54.5, 45.3, 4.9, 13.2,13.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Walpole - Fisher,03070015, 120, 19.7, 472, 49.8, 50.0, 3.6, 17.6,11 +3.8200000000000003,3.82,a-reso-i1,2022-23,Walpole - Old Post Road,03070018, 110, 20.9, 459, 50.1, 49.9, 3.3, 7.2,12.2 +4.74,4.74,a-reso-i1,2022-23,Walpole - Walpole High,03070505, 523, 16.3, 993, 49.7, 50.2, 2.3, 16.6,15.4 +4.8,4.8,a-reso-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 314, 16.0, 487, 51.1, 48.7, 10.1, 16.2,24.9 +4.88,4.88,a-reso-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 273, 15.6, 389, 53.5, 46.5, 61.2, 11.3,71.7 +4.76,4.76,a-reso-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 248, 16.2, 387, 47.0, 53.0, 16.5, 15.0,33.3 +4.8,4.8,a-reso-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 438, 16.0, 623, 45.4, 54.4, 7.7, 21.4,41.7 +5.08,5,a-reso-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 463, 14.6, 614, 45.9, 54.1, 19.7, 21.0,63.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Waltham - Northeast Elementary School,03080040, 300, 16.4, 532, 52.3, 47.7, 28.2, 20.3,50.9 +4.84,4.84,a-reso-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 239, 15.8, 358, 47.8, 52.2, 28.5, 16.8,50 +4.8,4.8,a-reso-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 142, 16.0, 210, 47.1, 52.9, 39.5, 12.9,51.4 +4.76,4.76,a-reso-i1,2022-23,Waltham - Waltham Sr High,03080505, 947, 16.2," 1,815", 45.2, 54.6, 23.2, 15.2,52.8 +5.4399999999999995,5,a-reso-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 275, 12.8, 391, 41.2, 58.8, 29.9, 35.8,47.3 +3.94,3.94,a-reso-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 68, 20.3, 401, 48.1, 51.4, 2.5, 19.5,68.8 +4.46,4.46,a-reso-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 240, 17.7, 516, 49.8, 50.2, 1.6, 20.5,57.4 +3.9200000000000004,3.92,a-reso-i1,2022-23,Ware - Ware Middle School,03090305, 89, 20.4, 252, 50.8, 49.2, 0.8, 20.2,68.3 +7.08,5,a-reso-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 26, 4.6, 31, 61.3, 38.7, 0.0, 32.3,74.2 +4.86,4.86,a-reso-i1,2022-23,Wareham - Wareham Elementary School,03100017, 700, 15.7, 927, 47.5, 52.5, 1.4, 26.4,66.9 +5.2,5,a-reso-i1,2022-23,Wareham - Wareham Middle,03100305, 291, 14.0, 437, 48.1, 51.7, 0.0, 29.1,69.1 +5.46,5,a-reso-i1,2022-23,Wareham - Wareham Senior High,03100505, 500, 12.7, 629, 49.4, 50.2, 0.2, 31.0,62.3 +4.5,4.5,a-reso-i1,2022-23,Watertown - Cunniff,03140015, 173, 17.5, 321, 49.2, 50.8, 19.3, 24.3,30.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Watertown - Hosmer,03140020, 321, 17.8, 741, 46.6, 53.3, 19.2, 20.9,33.2 +4.5200000000000005,4.52,a-reso-i1,2022-23,Watertown - James Russell Lowell,03140025, 195, 17.4, 360, 45.8, 54.2, 22.2, 19.2,35 +5.12,5,a-reso-i1,2022-23,Watertown - Watertown High,03140505, 417, 14.4, 767, 44.7, 54.9, 15.9, 16.2,46.4 +4.6,4.6,a-reso-i1,2022-23,Watertown - Watertown Middle,03140305, 351, 17.0, 551, 51.2, 48.5, 15.1, 18.3,39.2 +3.94,3.94,a-reso-i1,2022-23,Wayland - Claypit Hill School,03150005, 205, 20.3, 505, 50.7, 49.3, 6.9, 21.4,10.5 +3.96,3.96,a-reso-i1,2022-23,Wayland - Happy Hollow School,03150015, 149, 20.2, 363, 50.4, 49.6, 5.8, 16.5,10.7 +3.7,3.7,a-reso-i1,2022-23,Wayland - Loker School,03150020, 149, 21.5, 387, 51.9, 48.1, 5.4, 14.2,6.7 +5.16,5,a-reso-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5, 14.2, 71, 39.4, 60.6, 32.4, 36.6,15.5 +4.92,4.92,a-reso-i1,2022-23,Wayland - Wayland High School,03150505, 378, 15.4, 823, 51.9, 48.1, 0.4, 19.7,7.8 +5.12,5,a-reso-i1,2022-23,Wayland - Wayland Middle School,03150305, 461, 14.4, 623, 46.2, 53.6, 2.3, 22.0,8.8 +5.34,5,a-reso-i1,2022-23,Webster - Bartlett High School,03160505, 238, 13.3, 373, 45.8, 53.4, 13.7, 21.2,67.8 +4.5600000000000005,4.56,a-reso-i1,2022-23,Webster - Park Avenue Elementary,03160015, 284, 17.2, 762, 47.4, 52.6, 17.7, 28.5,74.5 +3.46,3.46,a-reso-i1,2022-23,Webster - Webster Middle School,03160315, 288, 22.7, 625, 45.8, 54.2, 11.7, 21.3,68.5 +4.84,4.84,a-reso-i1,2022-23,Wellesley - Ernest F Upham,03170050, 90, 15.8, 159, 47.2, 52.8, 1.3, 31.5,6.9 +4.7,4.7,a-reso-i1,2022-23,Wellesley - Hunnewell,03170025, 108, 16.5, 198, 50.0, 50.0, 0.5, 25.3,8.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Wellesley - John D Hardy,03170020, 110, 17.2, 210, 47.6, 52.4, 3.8, 14.8,7.1 +4.2,4.2,a-reso-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 141, 19.0, 295, 48.5, 51.5, 6.4, 9.8,10.2 +4.2,4.2,a-reso-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 126, 19.0, 266, 50.0, 50.0, 0.8, 10.5,3.4 +5.68,5,a-reso-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 29, 11.6, 119, 37.0, 63.0, 9.2, 52.1,11.8 +4.42,4.42,a-reso-i1,2022-23,Wellesley - Schofield,03170045, 168, 17.9, 331, 53.5, 46.5, 5.7, 13.3,7.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 140, 18.9, 294, 44.2, 55.8, 3.1, 19.1,10.5 +5.279999999999999,5,a-reso-i1,2022-23,Wellesley - Wellesley Middle,03170305, 715, 13.6, 935, 50.5, 49.5, 1.4, 16.6,9.1 +4.96,4.96,a-reso-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 686, 15.2," 1,411", 52.2, 47.4, 0.4, 15.9,8.3 +5.42,5,a-reso-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 80, 12.9, 93, 45.2, 54.8, 0.0, 14.0,32.3 +4.1,4.1,a-reso-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 176, 19.5, 436, 47.0, 53.0, 7.8, 21.3,31 +5.5,5,a-reso-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 344, 12.5, 437, 52.4, 47.6, 2.1, 15.3,29.3 +3.5799999999999996,3.58,a-reso-i1,2022-23,West Bridgewater - Howard School,03230305, 140, 22.1, 319, 48.6, 51.4, 4.1, 13.8,26.7 +3.46,3.46,a-reso-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 131, 22.7, 319, 46.1, 53.9, 7.2, 14.7,29.8 +3.9,3.9,a-reso-i1,2022-23,West Bridgewater - Spring Street School,03230005, 69, 20.5, 168, 44.6, 55.4, 5.4, 22.6,29.2 +4.62,4.62,a-reso-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 454, 16.9, 640, 50.6, 49.4, 2.0, 11.4,25.8 +4.08,4.08,a-reso-i1,2022-23,West Springfield - John Ashley,03320005, 45, 19.6, 177, 48.6, 51.4, 4.0, 26.0,49.2 +4.42,4.42,a-reso-i1,2022-23,West Springfield - John R Fausey,03320010, 117, 17.9, 412, 52.9, 47.1, 3.6, 17.0,42.2 +5.04,5,a-reso-i1,2022-23,West Springfield - Memorial,03320025, 67, 14.8, 192, 46.9, 53.1, 2.6, 25.0,78.1 +5.3,5,a-reso-i1,2022-23,West Springfield - Mittineague,03320030, 57, 13.5, 150, 54.0, 46.0, 4.0, 20.7,50 +4.7,4.7,a-reso-i1,2022-23,West Springfield - Philip G Coburn,03320007, 173, 16.5, 569, 49.0, 51.0, 53.4, 17.4,80.5 +4.8,4.8,a-reso-i1,2022-23,West Springfield - Tatham,03320040, 72, 16.0, 226, 46.5, 53.5, 2.7, 10.6,29.7 +6.0600000000000005,5,a-reso-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 14, 9.7, 136, 41.9, 58.1, 12.5, 58.1,72.8 +4.779999999999999,4.78,a-reso-i1,2022-23,West Springfield - West Springfield High,03320505, 685, 16.1," 1,219", 46.5, 52.6, 7.3, 18.2,51.9 +4.6,4.6,a-reso-i1,2022-23,West Springfield - West Springfield Middle,03320305, 647, 17.0, 956, 49.3, 50.3, 12.3, 17.8,58.7 +4.24,4.24,a-reso-i1,2022-23,Westborough - Annie E Fales,03210010, 117, 18.8, 340, 49.4, 50.6, 7.7, 18.5,7.1 +4.88,4.88,a-reso-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 153, 15.6, 486, 49.0, 51.0, 29.8, 22.8,22.6 +4.1,4.1,a-reso-i1,2022-23,Westborough - J Harding Armstrong,03210005, 132, 19.5, 409, 47.4, 52.6, 18.6, 17.1,19.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Westborough - Mill Pond School,03210045, 316, 21.8, 874, 51.3, 48.6, 9.8, 20.4,18 +5.0,5.0,a-reso-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 547, 15.0, 605, 46.6, 53.2, 7.9, 15.0,16.2 +5.04,5,a-reso-i1,2022-23,Westborough - Westborough High,03210505, 748, 14.8," 1,198", 50.6, 48.8, 5.0, 10.8,14.7 +4.36,4.36,a-reso-i1,2022-23,Westfield - Abner Gibbs,03250020, 102, 18.2, 181, 51.4, 48.6, 17.7, 19.9,71.3 +6.14,5,a-reso-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 9.3, 158, 41.8, 58.2, 1.9, 62.7,53.2 +4.46,4.46,a-reso-i1,2022-23,Westfield - Franklin Ave,03250015, 101, 17.7, 177, 52.0, 48.0, 0.6, 18.6,81.9 +4.04,4.04,a-reso-i1,2022-23,Westfield - Highland,03250025, 189, 19.8, 365, 52.1, 48.0, 19.2, 20.3,45.5 +4.42,4.42,a-reso-i1,2022-23,Westfield - Munger Hill,03250033, 195, 17.9, 341, 48.1, 51.9, 21.1, 24.3,43.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Westfield - Paper Mill,03250036, 164, 20.1, 330, 50.0, 50.0, 1.5, 29.1,53 +4.12,4.12,a-reso-i1,2022-23,Westfield - Southampton Road,03250040, 153, 19.4, 320, 49.4, 50.6, 1.6, 19.1,44.1 +5.04,5,a-reso-i1,2022-23,Westfield - Westfield High,03250505, 586, 14.8," 1,014", 52.5, 47.3, 6.4, 21.4,42.7 +4.84,4.84,a-reso-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 398, 15.8, 686, 51.9, 48.1, 7.6, 23.2,55.1 +4.54,4.54,a-reso-i1,2022-23,Westfield - Westfield Middle School,03250310, 335, 17.3, 689, 46.4, 53.4, 7.0, 19.6,48 +5.26,5,a-reso-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 285, 13.7, 540, 31.5, 68.2, 2.8, 24.6,45 +6.0,5,a-reso-i1,2022-23,Westfield - Westfield Virtual School,03250705, 66, 10.0, 109, 51.4, 47.7, 1.8, 31.2,70.6 +4.36,4.36,a-reso-i1,2022-23,Westford - Abbot Elementary,03260004, 199, 18.2, 365, 48.5, 51.5, 1.4, 17.5,6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Westford - Blanchard Middle,03260310, 444, 15.3, 549, 52.8, 47.0, 0.7, 18.8,7.8 +3.7600000000000002,3.76,a-reso-i1,2022-23,Westford - Col John Robinson,03260025, 150, 21.2, 362, 50.8, 49.2, 6.9, 19.6,11.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Westford - Day Elementary,03260007, 166, 20.1, 329, 50.2, 49.9, 6.4, 18.8,10.3 +3.96,3.96,a-reso-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 169, 20.2, 346, 44.2, 55.5, 4.3, 21.1,11.9 +3.94,3.94,a-reso-i1,2022-23,Westford - Nabnasset,03260015, 168, 20.3, 385, 49.4, 50.7, 4.2, 17.4,8.8 +4.0,4.0,a-reso-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 144, 20.0, 304, 35.2, 64.8, 19.7, 29.3,15.1 +4.6,4.6,a-reso-i1,2022-23,Westford - Stony Brook School,03260330, 344, 17.0, 619, 51.5, 48.3, 1.8, 18.1,9.5 +4.38,4.38,a-reso-i1,2022-23,Westford - Westford Academy,03260505, 671, 18.1," 1,519", 49.8, 50.0, 0.7, 12.6,7.4 +5.32,5,a-reso-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 57, 13.4, 105, 42.9, 57.1, 0.0, 31.4,30.5 +4.18,4.18,a-reso-i1,2022-23,Weston - Country,03300010, 84, 19.1, 333, 48.7, 51.4, 6.9, 14.7,6 +3.9,3.9,a-reso-i1,2022-23,Weston - Field Elementary School,03300012, 92, 20.5, 268, 51.1, 48.9, 4.5, 15.3,8.6 +5.36,5,a-reso-i1,2022-23,Weston - Weston High,03300505, 512, 13.2, 644, 43.6, 56.1, 1.6, 22.2,8.2 +4.46,4.46,a-reso-i1,2022-23,Weston - Weston Middle,03300305, 291, 17.7, 449, 49.0, 50.8, 0.9, 21.6,9.6 +4.18,4.18,a-reso-i1,2022-23,Weston - Woodland,03300015, 82, 19.1, 321, 50.5, 49.5, 5.3, 10.9,7.5 +5.04,5,a-reso-i1,2022-23,Westport - Alice A Macomber,03310015, 77, 14.8, 180, 57.2, 42.8, 2.8, 28.9,37.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Westport - Westport Elementary,03310030, 179, 16.4, 445, 53.3, 46.7, 2.3, 24.5,35.1 +4.58,4.58,a-reso-i1,2022-23,Westport - Westport Middle-High School,03310515, 476, 17.1, 833, 45.7, 54.0, 1.1, 19.7,32.7 +4.720000000000001,4.72,a-reso-i1,2022-23,Westwood - Deerfield School,03350010, 87, 16.4, 199, 48.2, 51.8, 1.5, 27.6,5.5 +4.34,4.34,a-reso-i1,2022-23,Westwood - Downey,03350012, 124, 18.3, 313, 43.1, 56.9, 2.6, 27.2,7 +4.0,4.0,a-reso-i1,2022-23,Westwood - E W Thurston Middle,03350305, 447, 20.0, 667, 48.6, 51.4, 0.3, 23.8,7.1 +4.42,4.42,a-reso-i1,2022-23,Westwood - Martha Jones,03350017, 108, 17.9, 267, 51.3, 48.7, 1.1, 13.5,3 +4.24,4.24,a-reso-i1,2022-23,Westwood - Paul Hanlon,03350015, 87, 18.8, 226, 48.2, 51.8, 3.1, 23.0,20.8 +5.279999999999999,5,a-reso-i1,2022-23,Westwood - Westwood High,03350505, 551, 13.6, 906, 48.1, 51.7, 0.2, 17.2,9.9 +4.6,4.6,a-reso-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3, 17.0, 51, 33.3, 66.7, 0.0, 56.9,9.8 +4.14,4.14,a-reso-i1,2022-23,Westwood - William E Sheehan,03350025, 109, 19.3, 288, 42.0, 58.0, 0.7, 20.8,4.5 +4.08,4.08,a-reso-i1,2022-23,Weymouth - Academy Avenue,03360005, 95, 19.6, 352, 50.6, 49.4, 13.1, 15.3,38.9 +3.72,3.72,a-reso-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 70, 21.4, 286, 46.5, 53.5, 9.1, 21.3,46.2 +4.92,4.92,a-reso-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 14, 15.4, 215, 42.3, 57.7, 4.7, 57.2,36.3 +3.94,3.94,a-reso-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 68, 20.3, 266, 54.9, 45.1, 6.8, 25.9,45.5 +4.6,4.6,a-reso-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,375", 17.0," 1,231", 51.9, 48.0, 6.8, 23.0,42.7 +3.8,3.8,a-reso-i1,2022-23,Weymouth - Ralph Talbot,03360085, 65, 21.0, 265, 43.0, 57.0, 10.9, 18.9,38.1 +4.2,4.2,a-reso-i1,2022-23,Weymouth - Thomas V Nash,03360060, 67, 19.0, 243, 48.2, 51.9, 11.1, 16.1,40.7 +3.78,3.78,a-reso-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 90, 21.1, 363, 49.9, 50.1, 12.1, 19.3,30.9 +4.74,4.74,a-reso-i1,2022-23,Weymouth - Wessagusset,03360110, 112, 16.3, 348, 48.9, 51.2, 9.8, 25.6,37.1 +4.9399999999999995,4.94,a-reso-i1,2022-23,Weymouth - Weymouth High School,03360505, 913, 15.3," 1,816", 50.4, 49.3, 6.3, 22.0,39.9 +3.78,3.78,a-reso-i1,2022-23,Weymouth - William Seach,03360080, 95, 21.1, 380, 49.7, 50.3, 19.7, 19.2,71.3 +4.86,4.86,a-reso-i1,2022-23,Whately - Whately Elementary,03370005, 86, 15.7, 129, 47.3, 52.7, 1.6, 16.3,24.8 +4.42,4.42,a-reso-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 223, 17.9, 447, 47.0, 53.0, 0.7, 20.1,25.7 +4.14,4.14,a-reso-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 175, 19.3, 483, 47.4, 52.6, 0.6, 14.7,24.8 +4.4,4.4,a-reso-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 168, 18.0, 433, 47.3, 52.7, 15.9, 21.0,44.3 +3.96,3.96,a-reso-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 168, 20.2, 485, 50.1, 49.9, 8.3, 15.3,30.1 +5.34,5,a-reso-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 33, 13.3, 111, 32.4, 67.6, 0.0, 33.3,27 +4.64,4.64,a-reso-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 401, 16.8," 1,075", 49.4, 50.6, 4.7, 16.3,29.5 +3.9200000000000004,3.92,a-reso-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 205, 20.4, 511, 48.5, 51.5, 5.7, 13.9,29.4 +5.68,5,a-reso-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,124", 11.6," 1,281", 44.4, 54.6, 1.6, 15.3,40.1 +4.68,4.68,a-reso-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 57, 16.6, 129, 48.1, 51.9, 1.6, 16.3,34.9 +5.34,5,a-reso-i1,2022-23,Wilmington - Boutwell,03420005, 90, 13.3, 147, 47.6, 52.4, 2.7, 21.1,8.2 +3.72,3.72,a-reso-i1,2022-23,Wilmington - North Intermediate,03420060, 131, 21.4, 249, 52.2, 47.8, 1.6, 16.9,13.7 +4.5,4.5,a-reso-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 215, 17.5, 388, 45.9, 54.1, 1.6, 20.6,16.5 +4.4399999999999995,4.44,a-reso-i1,2022-23,Wilmington - West Intermediate,03420080, 175, 17.8, 297, 47.1, 52.9, 1.0, 21.6,14.5 +5.32,5,a-reso-i1,2022-23,Wilmington - Wilmington High,03420505, 434, 13.4, 667, 49.8, 49.6, 0.8, 12.9,14.4 +5.24,5,a-reso-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 541, 13.8, 638, 48.1, 51.9, 1.4, 19.4,14.7 +4.2,4.2,a-reso-i1,2022-23,Wilmington - Woburn Street,03420020, 225, 19.0, 424, 44.3, 55.7, 4.5, 13.7,14.2 +3.88,3.88,a-reso-i1,2022-23,Winchendon - Memorial,03430040, 76, 20.6, 315, 49.8, 50.2, 1.6, 24.1,61.3 +3.2,3.2,a-reso-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 2, 24.0, 33, 30.3, 66.7, 0.0, 27.3,48.5 +5.42,5,a-reso-i1,2022-23,Winchendon - Murdock High School,03430515, 162, 12.9, 274, 49.3, 50.0, 2.6, 19.0,56.6 +4.1,4.1,a-reso-i1,2022-23,Winchendon - Murdock Middle School,03430315, 116, 19.5, 279, 38.7, 60.6, 2.9, 16.9,52.7 +3.66,3.66,a-reso-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 109, 21.7, 296, 46.0, 54.1, 1.4, 21.6,58.1 +6.38,5,a-reso-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 10, 8.1, 80, 42.5, 57.5, 2.5, 35.0,47.5 +4.5,4.5,a-reso-i1,2022-23,Winchester - Ambrose Elementary,03440045, 225, 17.5, 345, 51.6, 48.4, 0.9, 12.5,2.9 +4.26,4.26,a-reso-i1,2022-23,Winchester - Lincoln Elementary,03440005, 199, 18.7, 332, 47.0, 53.0, 4.5, 16.3,3 +4.46,4.46,a-reso-i1,2022-23,Winchester - Lynch Elementary,03440020, 284, 17.7, 496, 40.3, 59.7, 12.7, 23.2,12.5 +3.94,3.94,a-reso-i1,2022-23,Winchester - McCall Middle,03440305, 565, 20.3," 1,037", 52.0, 47.8, 1.2, 15.9,6.5 +4.5,4.5,a-reso-i1,2022-23,Winchester - Muraco Elementary,03440040, 211, 17.5, 330, 48.8, 50.9, 7.3, 12.1,9.1 +4.6,4.6,a-reso-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 274, 17.0, 408, 51.7, 48.3, 4.2, 15.0,4.7 +4.720000000000001,4.72,a-reso-i1,2022-23,Winchester - Winchester High School,03440505, 633, 16.4," 1,381", 51.4, 48.4, 1.2, 14.8,7.5 +3.8200000000000003,3.82,a-reso-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 126, 20.9, 438, 56.4, 43.6, 14.2, 17.1,39.5 +4.04,4.04,a-reso-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 117, 19.8, 523, 47.8, 52.2, 18.4, 19.9,40.3 +4.2,4.2,a-reso-i1,2022-23,Winthrop - Winthrop High School,03460505, 218, 19.0, 616, 51.1, 48.7, 7.5, 15.1,41.1 +4.16,4.16,a-reso-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 225, 19.2, 441, 46.9, 53.1, 6.1, 14.5,39.9 +4.96,4.96,a-reso-i1,2022-23,Woburn - Clyde Reeves,03470040, 248, 15.2, 433, 43.7, 56.4, 8.8, 36.0,35.6 +5.08,5,a-reso-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 442, 14.6, 468, 52.6, 47.4, 8.3, 25.2,43.2 +4.6,4.6,a-reso-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 190, 17.0, 325, 53.5, 46.5, 20.9, 23.7,45.5 +3.8600000000000003,3.86,a-reso-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 190, 20.7, 394, 47.0, 53.1, 8.4, 16.2,23.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 431, 17.6, 539, 51.0, 49.0, 7.1, 14.5,46.8 +4.7,4.7,a-reso-i1,2022-23,Woburn - Linscott-Rumford,03470025, 120, 16.5, 200, 50.5, 49.5, 17.5, 11.0,34 +4.9,4.9,a-reso-i1,2022-23,Woburn - Malcolm White,03470055, 196, 15.5, 321, 53.6, 46.1, 24.3, 21.8,48.3 +4.7,4.7,a-reso-i1,2022-23,Woburn - Mary D Altavesta,03470065, 120, 16.5, 198, 52.0, 48.0, 19.7, 23.7,48 +5.3,5,a-reso-i1,2022-23,Woburn - Shamrock,03470043, 193, 13.5, 282, 46.1, 53.9, 9.2, 35.1,53.2 +5.24,5,a-reso-i1,2022-23,Woburn - Woburn High,03470505, 649, 13.8," 1,194", 51.3, 48.2, 8.8, 15.8,37.9 +4.6,4.6,a-reso-i1,2022-23,Worcester - Belmont Street Community,03480020, 284, 17.0, 579, 48.9, 51.1, 49.4, 19.0,90 +4.68,4.68,a-reso-i1,2022-23,Worcester - Burncoat Middle School,03480405, 422, 16.6, 702, 52.0, 48.0, 23.7, 22.5,69.1 +5.12,5,a-reso-i1,2022-23,Worcester - Burncoat Senior High,03480503, 651, 14.4," 1,163", 50.2, 49.7, 23.8, 18.7,70.3 +5.8,5,a-reso-i1,2022-23,Worcester - Burncoat Street,03480035, 186, 11.0, 232, 48.7, 51.3, 32.8, 24.1,81.9 +5.42,5,a-reso-i1,2022-23,Worcester - Canterbury,03480045, 211, 12.9, 341, 46.6, 53.4, 46.6, 28.5,82.7 +4.82,4.82,a-reso-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 240, 15.9, 427, 48.7, 51.3, 51.5, 15.5,93.4 +5.4799999999999995,5,a-reso-i1,2022-23,Worcester - Chandler Magnet,03480052, 273, 12.6, 404, 55.0, 45.1, 54.7, 18.6,70.1 +5.46,5,a-reso-i1,2022-23,Worcester - City View,03480053, 292, 12.7, 446, 50.2, 49.8, 41.9, 22.7,88.3 +4.779999999999999,4.78,a-reso-i1,2022-23,Worcester - Claremont Academy,03480350, 265, 16.1, 485, 50.5, 49.5, 37.3, 12.2,85.4 +5.720000000000001,5,a-reso-i1,2022-23,Worcester - Clark St Community,03480055, 187, 11.4, 287, 48.8, 51.2, 40.8, 27.9,89.2 +5.24,5,a-reso-i1,2022-23,Worcester - Columbus Park,03480060, 229, 13.8, 397, 45.1, 54.9, 48.6, 25.4,82.1 +5.34,5,a-reso-i1,2022-23,Worcester - Doherty Memorial High,03480512, 854, 13.3," 1,323", 44.9, 55.0, 19.1, 12.6,58.7 +4.62,4.62,a-reso-i1,2022-23,Worcester - Elm Park Community,03480095, 220, 16.9, 428, 48.1, 51.9, 47.4, 14.5,91.8 +4.4,4.4,a-reso-i1,2022-23,Worcester - Flagg Street,03480090, 169, 18.0, 363, 51.2, 48.8, 14.6, 18.2,31.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Worcester - Forest Grove Middle,03480415, 584, 16.4, 924, 49.0, 51.0, 21.0, 19.6,62.2 +5.04,5,a-reso-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 129, 14.8, 235, 48.9, 51.1, 35.7, 20.9,77.5 +5.4,5,a-reso-i1,2022-23,Worcester - Gates Lane,03480110, 325, 13.0, 553, 41.6, 58.4, 38.2, 39.1,76.7 +5.54,5,a-reso-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 266, 12.3, 384, 47.4, 52.6, 52.1, 24.0,88.3 +4.2,4.2,a-reso-i1,2022-23,Worcester - Grafton Street,03480115, 203, 19.0, 436, 47.7, 52.3, 50.0, 14.0,88.3 +4.88,4.88,a-reso-i1,2022-23,Worcester - Head Start,03480002, 25, 15.6, 390, 52.3, 47.7, 1.0, 12.1,91.5 +4.76,4.76,a-reso-i1,2022-23,Worcester - Heard Street,03480136, 130, 16.2, 250, 46.4, 53.6, 22.8, 16.0,57.6 +5.08,5,a-reso-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 193, 14.6, 374, 50.3, 49.7, 31.0, 22.5,71.7 +5.18,5,a-reso-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 184, 14.1, 192, 51.6, 47.9, 49.5, 10.9,62 +4.58,4.58,a-reso-i1,2022-23,Worcester - Lake View,03480145, 155, 17.1, 307, 48.9, 51.1, 23.5, 18.2,61.6 +5.0200000000000005,5,a-reso-i1,2022-23,Worcester - Lincoln Street,03480160, 137, 14.9, 241, 48.6, 51.5, 37.8, 23.7,89.6 +4.4,4.4,a-reso-i1,2022-23,Worcester - May Street,03480175, 143, 18.0, 303, 48.5, 51.5, 22.8, 12.9,53.8 +4.9799999999999995,4.98,a-reso-i1,2022-23,Worcester - Midland Street,03480185, 119, 15.1, 211, 43.6, 56.4, 23.2, 11.9,48.3 +5.42,5,a-reso-i1,2022-23,Worcester - Nelson Place,03480200, 353, 12.9, 588, 42.2, 57.8, 24.0, 37.6,44.9 +5.7,5,a-reso-i1,2022-23,Worcester - Norrback Avenue,03480202, 349, 11.5, 518, 43.4, 56.6, 29.0, 43.6,68.9 +4.76,4.76,a-reso-i1,2022-23,Worcester - North High,03480515, 679, 16.2," 1,352", 48.5, 51.2, 34.8, 16.8,82.3 +4.7,4.7,a-reso-i1,2022-23,Worcester - Quinsigamond,03480210, 369, 16.5, 719, 48.3, 51.7, 47.0, 20.5,83.3 +4.24,4.24,a-reso-i1,2022-23,Worcester - Rice Square,03480215, 228, 18.8, 475, 49.9, 50.1, 46.3, 12.8,80 +5.54,5,a-reso-i1,2022-23,Worcester - Roosevelt,03480220, 337, 12.3, 575, 44.0, 56.0, 27.7, 37.0,64.9 +4.779999999999999,4.78,a-reso-i1,2022-23,Worcester - South High Community,03480520, 987, 16.1," 1,639", 46.9, 53.1, 27.8, 16.3,72.4 +4.88,4.88,a-reso-i1,2022-23,Worcester - Sullivan Middle,03480423, 508, 15.6, 866, 49.2, 50.8, 27.5, 19.6,73 +4.9399999999999995,4.94,a-reso-i1,2022-23,Worcester - Tatnuck,03480230, 206, 15.3, 390, 49.2, 50.8, 25.1, 23.9,59 +3.78,3.78,a-reso-i1,2022-23,Worcester - Thorndyke Road,03480235, 147, 21.1, 360, 51.4, 48.6, 34.4, 21.9,65.8 +4.8,4.8,a-reso-i1,2022-23,Worcester - Union Hill School,03480240, 221, 16.0, 400, 46.0, 54.0, 52.0, 22.3,82.5 +4.8,4.8,a-reso-i1,2022-23,Worcester - University Pk Campus School,03480285, 123, 16.0, 228, 46.9, 53.1, 19.7, 11.0,74.1 +5.14,5,a-reso-i1,2022-23,Worcester - Vernon Hill School,03480280, 281, 14.3, 529, 50.1, 49.9, 45.2, 21.2,84.7 +6.18,5,a-reso-i1,2022-23,Worcester - Wawecus Road School,03480026, 125, 9.1, 132, 52.3, 47.7, 31.8, 28.0,72.7 +4.9,4.9,a-reso-i1,2022-23,Worcester - West Tatnuck,03480260, 195, 15.5, 377, 43.8, 56.2, 17.0, 23.1,43 +4.9,4.9,a-reso-i1,2022-23,Worcester - Woodland Academy,03480030, 296, 15.5, 502, 52.2, 47.8, 62.6, 18.5,93 +4.64,4.64,a-reso-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 193, 16.8, 385, 48.8, 51.2, 18.2, 20.0,46.5 +4.64,4.64,a-reso-i1,2022-23,Worcester - Worcester East Middle,03480420, 437, 16.8, 795, 48.7, 51.3, 33.1, 17.9,83.4 +5.08,5,a-reso-i1,2022-23,Worcester - Worcester Technical High,03480605, 748, 14.6," 1,450", 56.8, 43.1, 8.2, 13.4,63.6 +6.36,5,a-reso-i1,2022-23,Worthington - R. H. Conwell,03490010, 51, 8.2, 74, 44.6, 54.1, 0.0, 25.7,36.5 +4.2,4.2,a-reso-i1,2022-23,Wrentham - Charles E Roderick,03500010, 179, 19.0, 376, 50.0, 50.0, 1.1, 18.9,15.4 +4.18,4.18,a-reso-i1,2022-23,Wrentham - Delaney,03500003, 253, 19.1, 599, 48.3, 51.8, 3.8, 18.9,16.5 4.34,4.34,a-reso-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 742, 18.3," 1,421", 53.6, 46.4, 16.0, 12.6,70.1 3.3600000000000003,3.36,a-reso-i1,2021-22,Abington - Abington Early Education Program,00010001, 16, 23.2, 93, 41.9, 58.1, 9.7, 44.1,34.4 4.66,4.66,a-reso-i1,2021-22,Abington - Abington High,00010505, 274, 16.7, 587, 47.7, 52.0, 6.8, 11.4,35.3 diff --git a/data/dashboard/admin_data/dese/3A_2_age_staffing.csv b/data/admin_data/dese/3A_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/3A_2_age_staffing.csv rename to data/admin_data/dese/3A_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/3A_2_grade_subject_staffing.csv b/data/admin_data/dese/3A_2_grade_subject_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/3A_2_grade_subject_staffing.csv rename to data/admin_data/dese/3A_2_grade_subject_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_advcoursecomprate.csv b/data/admin_data/dese/3B_1_advcoursecomprate.csv similarity index 82% rename from data/dashboard/admin_data/dese/archive/june-2023/3B_1_advcoursecomprate.csv rename to data/admin_data/dese/3B_1_advcoursecomprate.csv index d5dfe06..a3928f6 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_advcoursecomprate.csv +++ b/data/admin_data/dese/3B_1_advcoursecomprate.csv @@ -1,4 +1,412 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade 11 and 12 Students,# Students Completing Advanced,% Students Completing Advanced,% ELA,% Math,% Science and Technology,% Computer and Information Science,% History and Social Sciences,% Arts,% All Other Subjects,% All Other Subjects +11.16,5,a-curv-i2,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 178, 149, 83.7, 35.4, 66.3, 30.3, 0.0, 33.1, 13.5, 24.2, 0.0 +11.16,5,a-curv-i2,2022-23,Abington-Abington High,00010505, 282, 236, 83.7, 14.9, 83.7, 5.0, 0.0, 11.3, 0.7, 0.0, 0.0 +10.946666666666665,5,a-curv-i2,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 117, 96, 82.1, 0.0, 44.4, 34.2, 17.9, 64.1, 0.0, 8.5, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 869, 643, 74.0, 20.0, 65.0, 40.7, 7.1, 44.0, 0.0, 10.7, 0.0 +12.533333333333333,5,a-curv-i2,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 267, 251, 94.0, 5.6, 89.9, 27.0, 9.4, 46.4, 1.9, 5.2, 0.0 +8.093333333333334,5,a-curv-i2,2022-23,Agawam-Agawam High,00050505, 484, 294, 60.7, 28.3, 48.8, 31.2, 4.3, 16.3, 0.0, 0.0, 0.0 +10.28,5,a-curv-i2,2022-23,Amesbury-Amesbury High,00070505, 218, 168, 77.1, 17.0, 54.6, 21.6, 0.0, 41.3, 4.6, 6.4, 0.0 +0.0,1,a-curv-i2,2022-23,Amesbury-Amesbury Innovation High School,00070515, 20, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.04,5,a-curv-i2,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 433, 261, 60.3, 0.7, 52.7, 19.2, 2.1, 15.7, 0.0, 11.3, 0.0 +10.413333333333332,5,a-curv-i2,2022-23,Andover-Andover High,00090505, 841, 657, 78.1, 43.3, 71.8, 34.5, 6.1, 27.1, 3.1, 8.3, 0.0 +7.48,5,a-curv-i2,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 98, 55, 56.1, 36.7, 33.7, 0.0, 0.0, 24.5, 12.2, 36.7, 0.0 +11.093333333333334,5,a-curv-i2,2022-23,Arlington-Arlington High,00100505, 772, 642, 83.2, 39.8, 75.3, 32.0, 9.8, 44.9, 2.5, 12.4, 0.0 +9.4,5,a-curv-i2,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 319, 225, 70.5, 23.5, 63.3, 6.0, 0.0, 9.4, 0.0, 4.4, 0.0 +9.293333333333333,5,a-curv-i2,2022-23,Ashland-Ashland High,00140505, 399, 278, 69.7, 12.3, 65.4, 24.6, 12.8, 0.3, 0.0, 0.0, 0.0 +10.813333333333333,5,a-curv-i2,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 534, 433, 81.1, 5.2, 50.2, 17.8, 0.0, 3.9, 0.0, 28.8, 28.1 +8.466666666666667,5,a-curv-i2,2022-23,Athol-Royalston-Athol High,06150505, 178, 113, 63.5, 20.8, 35.4, 7.9, 0.6, 32.6, 0.0, 0.0, 0.0 +10.186666666666667,5,a-curv-i2,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 140, 107, 76.4, 24.3, 60.7, 36.4, 0.0, 27.9, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Attleboro-Attleboro Community Academy,00160515, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.546666666666667,5,a-curv-i2,2022-23,Attleboro-Attleboro High,00160505, 832, 471, 56.6, 12.0, 40.1, 8.4, 9.0, 33.7, 0.8, 0.1, 0.0 +5.7733333333333325,5,a-curv-i2,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 30, 13, 43.3, 3.3, 43.3, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.573333333333333,5,a-curv-i2,2022-23,Auburn-Auburn Senior High,00170505, 368, 209, 56.8, 11.7, 44.8, 20.1, 2.7, 24.2, 2.2, 3.5, 0.0 +8.693333333333333,5,a-curv-i2,2022-23,Avon-Avon Middle High School,00180510, 92, 60, 65.2, 9.8, 64.1, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0 +8.306666666666667,5,a-curv-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 183, 114, 62.3, 23.5, 48.1, 20.2, 7.1, 8.2, 0.0, 4.4, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Barnstable-Barnstable High,00200505, 652, 326, 50.0, 12.0, 39.4, 10.3, 4.1, 23.2, 2.0, 5.1, 0.0 +13.053333333333335,5,a-curv-i2,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 97, 95, 97.9, 0.0, 48.5, 49.5, 0.0, 0.0, 0.0, 0.0, 0.0 +9.826666666666666,5,a-curv-i2,2022-23,Bedford-Bedford High,00230505, 392, 289, 73.7, 15.3, 71.4, 25.8, 3.8, 0.0, 0.0, 3.3, 0.0 +8.906666666666666,5,a-curv-i2,2022-23,Belchertown-Belchertown High,00240505, 337, 225, 66.8, 7.1, 49.9, 15.4, 3.6, 23.1, 0.0, 0.3, 0.0 +11.360000000000001,5,a-curv-i2,2022-23,Bellingham-Bellingham High School,00250505, 271, 231, 85.2, 21.0, 77.1, 46.5, 0.0, 1.1, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Bellingham-Keough Memorial Academy,00250510, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +11.479999999999999,5,a-curv-i2,2022-23,Belmont-Belmont High,00260505, 648, 558, 86.1, 7.9, 77.5, 70.5, 12.7, 42.6, 5.9, 1.2, 0.0 +8.613333333333333,5,a-curv-i2,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 65, 42, 64.6, 43.1, 29.2, 4.6, 9.2, 18.5, 3.1, 7.7, 0.0 +8.4,5,a-curv-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 219, 138, 63.0, 35.6, 38.4, 26.0, 10.0, 5.9, 7.8, 5.0, 0.0 +9.813333333333333,5,a-curv-i2,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 140, 103, 73.6, 43.6, 65.7, 7.1, 7.1, 20.7, 0.0, 0.0, 0.0 +6.653333333333333,5,a-curv-i2,2022-23,Beverly-Beverly High,00300505, 629, 314, 49.9, 13.0, 37.4, 8.1, 0.0, 14.9, 1.9, 16.1, 0.0 +10.639999999999999,5,a-curv-i2,2022-23,Billerica-Billerica Memorial High School,00310505, 545, 435, 79.8, 16.3, 70.1, 24.8, 29.7, 22.8, 0.0, 9.4, 0.0 +9.026666666666667,5,a-curv-i2,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 603, 408, 67.7, 14.4, 50.2, 19.7, 1.2, 16.3, 1.5, 0.5, 23.2 +8.653333333333334,5,a-curv-i2,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 185, 120, 64.9, 21.1, 37.8, 40.5, 3.2, 5.9, 0.5, 0.0, 0.0 +8.946666666666665,5,a-curv-i2,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 431, 289, 67.1, 9.0, 58.2, 26.9, 0.0, 5.6, 0.0, 0.0, 18.3 +12.133333333333333,5,a-curv-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 145, 132, 91.0, 31.0, 84.1, 67.6, 13.1, 22.1, 11.7, 6.9, 0.0 +2.1599999999999997,2.16,a-curv-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 315, 51, 16.2, 1.0, 12.7, 4.8, 0.0, 0.0, 0.3, 0.3, 0.0 +7.493333333333334,5,a-curv-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 137, 77, 56.2, 27.7, 35.8, 52.6, 0.0, 14.6, 0.0, 4.4, 0.0 +11.333333333333334,5,a-curv-i2,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 173, 147, 85.0, 42.2, 68.8, 66.5, 12.1, 28.3, 0.0, 7.5, 0.0 +11.24,5,a-curv-i2,2022-23,Boston-Another Course To College,00350541, 121, 102, 84.3, 32.2, 62.0, 28.9, 52.1, 33.9, 13.2, 6.6, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.546666666666667,5,a-curv-i2,2022-23,Boston-Boston Arts Academy,00350546, 226, 111, 49.1, 0.9, 45.6, 10.6, 0.0, 2.2, 0.4, 0.9, 0.0 +1.84,1.84,a-curv-i2,2022-23,Boston-Boston Collaborative High School,00350755, 123, 17, 13.8, 0.8, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.1866666666666665,5,a-curv-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 206, 111, 53.9, 29.6, 35.9, 0.0, 0.0, 0.0, 0.0, 14.1, 0.0 +5.6,5,a-curv-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 157, 66, 42.0, 0.0, 39.5, 0.0, 6.4, 8.9, 0.0, 0.0, 0.0 +13.24,5,a-curv-i2,2022-23,Boston-Boston Latin Academy,00350545, 582, 578, 99.3, 21.8, 93.8, 16.7, 18.4, 66.7, 0.0, 6.5, 0.0 +13.32,5,a-curv-i2,2022-23,Boston-Boston Latin School,00350560, 797, 796, 99.9, 35.0, 96.5, 52.7, 26.5, 52.6, 6.4, 19.7, 0.0 +9.76,5,a-curv-i2,2022-23,Boston-Brighton High School,00350505, 254, 186, 73.2, 9.4, 55.1, 37.0, 3.1, 5.5, 2.4, 7.5, 0.0 +7.933333333333334,5,a-curv-i2,2022-23,Boston-Burke High School,00350525, 168, 100, 59.5, 17.9, 57.7, 0.0, 9.5, 16.7, 0.6, 1.8, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Carter School,00350036, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.213333333333334,5,a-curv-i2,2022-23,Boston-Charlestown High School,00350515, 356, 166, 46.6, 5.9, 42.1, 8.1, 3.4, 11.5, 0.3, 7.9, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Community Academy,00350518, 33, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.453333333333333,5,a-curv-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 149, 61, 40.9, 22.8, 29.5, 5.4, 0.0, 6.7, 0.0, 0.0, 0.0 +8.586666666666668,5,a-curv-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 163, 105, 64.4, 8.6, 39.9, 5.5, 22.7, 5.5, 3.7, 8.0, 0.0 +4.413333333333333,4.41,a-curv-i2,2022-23,Boston-East Boston High School,00350530, 532, 176, 33.1, 3.6, 6.4, 2.3, 22.4, 2.3, 0.0, 0.2, 0.0 +7.253333333333333,5,a-curv-i2,2022-23,Boston-English High School,00350535, 272, 148, 54.4, 10.3, 50.0, 8.5, 0.0, 7.0, 0.0, 0.0, 0.0 +6.239999999999999,5,a-curv-i2,2022-23,Boston-Excel High School,00350522, 205, 96, 46.8, 20.5, 38.5, 5.4, 13.2, 0.0, 0.0, 0.0, 0.0 +10.96,5,a-curv-i2,2022-23,Boston-Fenway High School,00350540, 174, 143, 82.2, 28.7, 44.3, 1.1, 4.0, 0.0, 0.0, 12.1, 0.0 +1.24,1.24,a-curv-i2,2022-23,Boston-Greater Egleston High School,00350543, 75, 7, 9.3, 0.0, 0.0, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0 +6.466666666666667,5,a-curv-i2,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 132, 64, 48.5, 18.2, 34.8, 13.6, 7.6, 21.2, 0.8, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +13.08,5,a-curv-i2,2022-23,Boston-Lyon High School,00350655, 53, 52, 98.1, 96.2, 45.3, 0.0, 0.0, 41.5, 0.0, 0.0, 0.0 +6.706666666666666,5,a-curv-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 459, 231, 50.3, 8.1, 47.3, 9.6, 0.9, 5.4, 0.7, 5.7, 8.5 +11.626666666666667,5,a-curv-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 133, 116, 87.2, 0.0, 54.1, 0.0, 0.0, 0.0, 0.0, 34.6, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-McKinley Schools,00350363, 42, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.08,5,a-curv-i2,2022-23,Boston-New Mission High School,00350542, 212, 192, 90.6, 42.5, 88.2, 10.8, 11.3, 22.2, 0.0, 12.3, 0.0 +13.133333333333333,5,a-curv-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575, 610, 601, 98.5, 52.6, 81.5, 41.6, 20.2, 49.5, 0.0, 16.2, 0.0 +13.186666666666667,5,a-curv-i2,2022-23,Boston-Quincy Upper School,00350565, 94, 93, 98.9, 98.9, 97.9, 98.9, 23.4, 97.9, 98.9, 96.8, 0.0 +9.746666666666666,5,a-curv-i2,2022-23,Boston-Snowden International High School,00350690, 201, 147, 73.1, 40.8, 61.7, 29.4, 0.0, 32.8, 15.9, 42.8, 0.0 +5.053333333333333,5,a-curv-i2,2022-23,Boston-TechBoston Academy,00350657, 282, 107, 37.9, 7.1, 27.7, 8.2, 5.3, 5.7, 5.7, 1.1, 0.0 +9.133333333333333,5,a-curv-i2,2022-23,Bourne-Bourne High School,00360505, 181, 124, 68.5, 12.7, 54.1, 11.0, 7.2, 25.4, 0.0, 0.6, 0.0 +9.32,5,a-curv-i2,2022-23,Braintree-Braintree High,00400505, 783, 547, 69.9, 8.8, 67.8, 20.9, 7.4, 27.6, 2.6, 5.5, 0.0 +7.760000000000001,5,a-curv-i2,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 639, 372, 58.2, 20.3, 51.0, 16.0, 0.0, 14.9, 0.9, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 5,"","","","","","","","","","" +4.1466666666666665,4.15,a-curv-i2,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 209, 65, 31.1, 0.0, 17.7, 22.5, 0.0, 0.0, 0.0, 0.0, 6.2 +9.28,5,a-curv-i2,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 635, 442, 69.6, 9.0, 17.2, 0.0, 0.0, 0.0, 0.0, 44.7, 33.1 +0.3466666666666667,1,a-curv-i2,2022-23,Brockton-Brockton Champion High School,00440515, 39, 1, 2.6, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.333333333333333,5,a-curv-i2,2022-23,Brockton-Brockton High,00440505," 1,508", 830, 55.0, 12.3, 49.5, 10.6, 4.1, 10.1, 3.1, 8.7, 0.0 +3.3333333333333335,3.33,a-curv-i2,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 32, 8, 25.0, 0.0, 25.0, 0.0, 0.0, 3.1, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Brockton-Edison Academy,00440520, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.906666666666666,5,a-curv-i2,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 218, 211, 96.8, 53.7, 75.7, 75.7, 54.6, 0.0, 0.0, 27.1, 0.0 +12.386666666666667,5,a-curv-i2,2022-23,Brookline-Brookline High,00460505, 991, 921, 92.9, 0.0, 90.6, 55.8, 6.6, 19.6, 3.1, 10.7, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,Burlington-Burlington High,00480505, 439, 325, 74.0, 23.9, 59.5, 34.6, 23.7, 31.0, 1.1, 3.9, 0.0 +9.453333333333335,5,a-curv-i2,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 899, 637, 70.9, 25.4, 53.7, 31.8, 14.3, 35.9, 3.8, 10.0, 3.0 +10.493333333333334,5,a-curv-i2,2022-23,Canton-Canton High,00500505, 414, 326, 78.7, 44.4, 60.6, 20.3, 3.1, 27.5, 2.4, 2.9, 0.0 +12.533333333333333,5,a-curv-i2,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 318, 299, 94.0, 11.0, 11.9, 0.0, 0.0, 9.4, 0.0, 92.8, 34.3 +8.96,5,a-curv-i2,2022-23,Carver-Carver Middle/High School,00520405, 192, 129, 67.2, 9.9, 51.0, 30.2, 9.4, 12.5, 0.0, 0.0, 0.0 +9.4,5,a-curv-i2,2022-23,Central Berkshire-Wahconah Regional High,06350505, 241, 170, 70.5, 22.4, 61.4, 17.8, 0.0, 17.4, 2.9, 3.7, 0.0 +9.546666666666665,5,a-curv-i2,2022-23,Chelmsford-Chelmsford High,00560505, 661, 473, 71.6, 18.8, 62.3, 23.0, 9.7, 28.6, 0.2, 13.2, 0.0 +8.506666666666666,5,a-curv-i2,2022-23,Chelsea-Chelsea High,00570505, 661, 422, 63.8, 25.1, 52.2, 6.5, 0.6, 16.5, 0.8, 14.5, 0.0 +0.92,1,a-curv-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 72, 5, 6.9, 0.0, 0.0, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.4,5,a-curv-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 25, 12, 48.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.333333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Academy,00610021, 30, 12, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.053333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 565, 214, 37.9, 9.7, 31.9, 5.3, 0.0, 10.1, 0.0, 2.1, 0.5 +6.133333333333334,5,a-curv-i2,2022-23,Chicopee-Chicopee High,00610505, 413, 190, 46.0, 12.1, 36.3, 8.5, 0.0, 24.5, 0.0, 5.8, 0.0 +4.8133333333333335,4.81,a-curv-i2,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 83, 30, 36.1, 18.1, 36.1, 0.0, 0.0, 9.6, 0.0, 0.0, 0.0 +4.293333333333334,4.29,a-curv-i2,2022-23,Clinton-Clinton Senior High,00640505, 258, 83, 32.2, 14.0, 16.3, 11.6, 5.0, 8.5, 0.0, 3.5, 0.0 +9.333333333333334,5,a-curv-i2,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 60, 42, 70.0, 46.7, 58.3, 43.3, 15.0, 0.0, 0.0, 0.0, 0.0 +12.093333333333334,5,a-curv-i2,2022-23,Cohasset-Cohasset High School,00650505, 215, 195, 90.7, 50.2, 80.9, 26.0, 0.0, 40.5, 0.0, 5.1, 0.0 +4.826666666666667,4.83,a-curv-i2,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 58, 21, 36.2, 36.2, 12.1, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0 +10.986666666666668,5,a-curv-i2,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 74, 61, 82.4, 17.6, 70.3, 21.6, 20.3, 29.7, 0.0, 0.0, 0.0 +12.32,5,a-curv-i2,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 669, 618, 92.4, 8.5, 90.3, 26.6, 0.1, 1.6, 3.1, 12.0, 0.0 +10.746666666666666,5,a-curv-i2,2022-23,Danvers-Danvers High,00710505, 403, 325, 80.6, 23.6, 54.1, 48.4, 7.7, 39.5, 8.9, 1.7, 0.0 +8.933333333333334,5,a-curv-i2,2022-23,Dartmouth-Dartmouth High,00720505, 497, 333, 67.0, 19.3, 52.7, 15.7, 9.3, 19.5, 3.0, 0.0, 0.0 +8.96,5,a-curv-i2,2022-23,Dedham-Dedham High,00730505, 344, 231, 67.2, 13.1, 59.9, 16.6, 4.1, 22.1, 6.1, 6.4, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 308, 210, 68.2, 30.8, 47.1, 22.4, 7.8, 24.0, 7.1, 6.5, 0.0 +7.306666666666667,5,a-curv-i2,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 330, 181, 54.8, 22.1, 46.1, 23.0, 0.9, 23.6, 4.8, 0.0, 0.0 +6.746666666666667,5,a-curv-i2,2022-23,Douglas-Douglas High School,00770505, 180, 91, 50.6, 19.4, 40.6, 23.3, 0.0, 16.7, 0.0, 0.0, 0.0 +12.479999999999999,5,a-curv-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 326, 305, 93.6, 38.7, 91.4, 35.6, 4.0, 46.9, 3.4, 8.6, 0.0 +8.08,5,a-curv-i2,2022-23,Dracut-Dracut Senior High,00790505, 391, 237, 60.6, 14.6, 51.4, 26.1, 0.0, 13.6, 0.0, 2.0, 0.0 +8.453333333333333,5,a-curv-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 426, 270, 63.4, 14.6, 47.4, 35.2, 2.8, 6.1, 0.5, 4.7, 0.0 +11.666666666666666,5,a-curv-i2,2022-23,Duxbury-Duxbury High,00820505, 464, 406, 87.5, 25.0, 81.9, 21.3, 0.0, 44.2, 3.2, 8.4, 0.0 +9.013333333333332,5,a-curv-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 299, 202, 67.6, 30.8, 57.5, 21.1, 0.0, 2.7, 1.7, 0.0, 0.0 +10.186666666666667,5,a-curv-i2,2022-23,East Longmeadow-East Longmeadow High,00870505, 423, 323, 76.4, 17.5, 71.4, 11.6, 5.9, 20.6, 0.0, 0.7, 0.2 +6.8133333333333335,5,a-curv-i2,2022-23,Easthampton-Easthampton High,00860505, 182, 93, 51.1, 47.3, 15.9, 1.1, 1.1, 12.6, 0.0, 1.6, 0.0 +8.48,5,a-curv-i2,2022-23,Easton-Oliver Ames High,00880505, 547, 348, 63.6, 8.2, 52.8, 23.2, 2.7, 31.8, 2.4, 1.8, 0.0 +9.613333333333333,5,a-curv-i2,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 179, 129, 72.1, 43.6, 60.3, 13.4, 0.0, 0.0, 0.0, 0.0, 0.0 +10.573333333333332,5,a-curv-i2,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 791, 627, 79.3, 5.8, 55.4, 16.7, 0.0, 32.4, 0.0, 0.0, 43.5 +0.0,1,a-curv-i2,2022-23,Everett-Devens School,00930030, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.733333333333333,5,a-curv-i2,2022-23,Everett-Everett High,00930505," 1,017", 590, 58.0, 13.5, 49.2, 5.9, 9.1, 7.1, 0.0, 0.0, 0.0 +12.92,5,a-curv-i2,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 318, 308, 96.9, 72.3, 92.8, 37.1, 5.0, 55.0, 2.5, 16.7, 0.0 +8.146666666666667,5,a-curv-i2,2022-23,Fairhaven-Fairhaven High,00940505, 316, 193, 61.1, 17.4, 55.4, 14.6, 0.0, 16.5, 0.0, 0.0, 0.0 +9.066666666666666,5,a-curv-i2,2022-23,Fall River-B M C Durfee High,00950505," 1,075", 731, 68.0, 20.0, 54.2, 34.7, 2.1, 15.4, 1.1, 12.9, 0.0 +2.76,2.76,a-curv-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 82, 17, 20.7, 0.0, 0.0, 20.7, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Fall River-Stone PK-12 School,00950340, 14, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Falmouth-Falmouth High,00960505, 370, 268, 72.4, 13.0, 64.6, 21.1, 7.3, 44.9, 6.8, 8.4, 0.0 +8.0,5,a-curv-i2,2022-23,Fitchburg-Fitchburg High,00970505, 567, 340, 60.0, 31.2, 44.6, 16.0, 8.6, 26.6, 2.6, 13.1, 0.0 +3.4266666666666667,3.43,a-curv-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 175, 45, 25.7, 0.6, 7.4, 18.9, 0.0, 0.6, 0.0, 0.6, 0.0 +0.0,1,a-curv-i2,2022-23,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 0,"","","","","","","","","","" +9.346666666666666,5,a-curv-i2,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 174, 122, 70.1, 31.0, 37.9, 34.5, 6.3, 30.5, 3.4, 10.3, 0.0 +8.906666666666666,5,a-curv-i2,2022-23,Foxborough-Foxborough High,00990505, 377, 252, 66.8, 22.0, 51.7, 12.7, 4.8, 40.3, 2.9, 9.8, 0.0 +7.760000000000001,5,a-curv-i2,2022-23,Framingham-Framingham High School,01000515," 1,187", 691, 58.2, 14.7, 43.6, 15.4, 1.5, 22.3, 3.5, 1.4, 0.0 +11.76,5,a-curv-i2,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 119, 105, 88.2, 0.0, 80.7, 53.8, 2.5, 5.9, 0.0, 2.5, 0.0 +6.96,5,a-curv-i2,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 272, 142, 52.2, 15.8, 26.5, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0 +10.266666666666667,5,a-curv-i2,2022-23,Franklin-Franklin High,01010505, 835, 643, 77.0, 15.0, 71.3, 25.9, 4.2, 38.0, 3.8, 7.5, 0.0 +7.88,5,a-curv-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 367, 217, 59.1, 29.2, 48.0, 20.4, 3.3, 34.3, 1.1, 5.2, 0.0 +8.786666666666667,5,a-curv-i2,2022-23,Frontier-Frontier Regional,06700505, 182, 120, 65.9, 25.3, 59.3, 23.6, 0.0, 13.7, 0.0, 4.4, 0.0 +9.08,5,a-curv-i2,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 91, 62, 68.1, 28.6, 54.9, 16.5, 7.7, 41.8, 11.0, 65.9, 0.0 +9.586666666666668,5,a-curv-i2,2022-23,Gardner-Gardner High,01030505, 267, 192, 71.9, 36.3, 69.3, 25.5, 5.6, 23.2, 1.5, 16.5, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Gateway-Gateway Regional High,06720505, 89, 42, 47.2, 23.6, 31.5, 20.2, 0.0, 13.5, 0.0, 1.1, 0.0 +8.8,5,a-curv-i2,2022-23,Georgetown-Georgetown High School,01050505, 150, 99, 66.0, 9.3, 61.3, 11.3, 2.7, 24.7, 0.0, 0.7, 0.0 +7.706666666666666,5,a-curv-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 90, 52, 57.8, 21.1, 40.0, 23.3, 2.2, 17.8, 7.8, 20.0, 0.0 +8.893333333333334,5,a-curv-i2,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 69, 46, 66.7, 21.7, 62.3, 1.4, 1.4, 17.4, 0.0, 1.4, 0.0 +5.52,5,a-curv-i2,2022-23,Gloucester-Gloucester High,01070505, 391, 162, 41.4, 9.2, 33.5, 19.7, 1.5, 4.9, 0.0, 0.0, 0.0 +8.306666666666667,5,a-curv-i2,2022-23,Grafton-Grafton High School,01100505, 430, 268, 62.3, 46.3, 45.8, 23.5, 6.5, 16.5, 0.0, 1.6, 0.0 +8.893333333333334,5,a-curv-i2,2022-23,Granby-Granby Jr Sr High School,01110505, 105, 70, 66.7, 23.8, 44.8, 0.0, 24.8, 14.3, 0.0, 19.0, 0.0 +4.733333333333333,4.73,a-curv-i2,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 349, 124, 35.5, 10.9, 29.2, 5.2, 0.6, 8.3, 1.4, 4.0, 0.0 +8.12,5,a-curv-i2,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 663, 404, 60.9, 9.0, 33.0, 9.8, 0.0, 0.0, 0.0, 3.0, 43.9 +8.346666666666668,5,a-curv-i2,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 821, 514, 62.6, 6.1, 49.5, 56.4, 0.0, 6.0, 0.0, 0.0, 33.9 +11.173333333333334,5,a-curv-i2,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 1,108", 929, 83.8, 7.9, 46.1, 24.0, 1.8, 0.0, 0.7, 52.3, 33.6 +4.72,4.72,a-curv-i2,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 970, 343, 35.4, 5.2, 16.7, 0.0, 0.0, 1.9, 0.0, 0.0, 25.2 +6.133333333333334,5,a-curv-i2,2022-23,Greenfield-Greenfield High,01140505, 150, 69, 46.0, 32.0, 30.0, 26.7, 0.0, 16.7, 0.0, 4.0, 0.0 +10.386666666666667,5,a-curv-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 349, 272, 77.9, 22.3, 70.8, 37.8, 0.0, 9.5, 3.7, 1.7, 0.0 +9.520000000000001,5,a-curv-i2,2022-23,Hadley-Hopkins Academy,01170505, 84, 60, 71.4, 11.9, 57.1, 48.8, 1.2, 19.0, 2.4, 0.0, 0.0 +11.360000000000001,5,a-curv-i2,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 237, 202, 85.2, 11.4, 77.2, 26.6, 3.0, 41.8, 0.0, 21.5, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 130, 130, 100.0, 40.0, 66.9, 55.4, 8.5, 33.1, 0.0, 21.5, 0.0 +12.973333333333333,5,a-curv-i2,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 75, 73, 97.3, 42.7, 57.3, 69.3, 2.7, 34.7, 0.0, 25.3, 0.0 +8.626666666666667,5,a-curv-i2,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 467, 302, 64.7, 17.8, 61.2, 11.8, 5.4, 15.2, 2.6, 2.6, 0.9 +10.386666666666667,5,a-curv-i2,2022-23,Hampshire-Hampshire Regional High,06830505, 199, 155, 77.9, 7.5, 49.2, 44.7, 7.0, 21.6, 2.0, 15.1, 0.0 +10.053333333333335,5,a-curv-i2,2022-23,Hanover-Hanover High,01220505, 350, 264, 75.4, 11.1, 72.0, 13.1, 0.0, 20.3, 3.4, 8.6, 0.0 +11.986666666666668,5,a-curv-i2,2022-23,Harvard-Bromfield,01250505, 159, 143, 89.9, 18.2, 86.2, 33.3, 6.9, 42.1, 0.0, 3.1, 0.0 +10.546666666666665,5,a-curv-i2,2022-23,Hatfield-Smith Academy,01270505, 43, 34, 79.1, 0.0, 79.1, 41.9, 0.0, 14.0, 2.3, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 3,"","","","","","","","","","" +1.9066666666666667,1.91,a-curv-i2,2022-23,Haverhill-Gateway Academy,01280515, 21, 3, 14.3, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Haverhill-Greenleaf Academy,01280033, 7, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.946666666666667,5,a-curv-i2,2022-23,Haverhill-Haverhill High,01280505, 848, 505, 59.6, 22.2, 44.8, 12.5, 4.2, 19.3, 0.1, 2.6, 0.0 +11.706666666666667,5,a-curv-i2,2022-23,Hingham-Hingham High,01310505, 599, 526, 87.8, 12.2, 87.3, 26.4, 2.7, 8.3, 1.0, 18.7, 0.0 +5.346666666666667,5,a-curv-i2,2022-23,Holbrook-Holbrook Middle High School,01330505, 162, 65, 40.1, 9.9, 37.7, 4.3, 0.0, 4.3, 0.0, 0.0, 0.0 +10.479999999999999,5,a-curv-i2,2022-23,Holliston-Holliston High,01360505, 388, 305, 78.6, 21.1, 67.0, 32.7, 10.6, 40.7, 2.1, 14.2, 0.0 +6.6,5,a-curv-i2,2022-23,Holyoke-Holyoke High,01370505, 738, 365, 49.5, 12.5, 26.2, 4.7, 0.1, 16.1, 1.2, 24.1, 3.0 +6.8133333333333335,5,a-curv-i2,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 92, 47, 51.1, 19.6, 27.2, 6.5, 0.0, 33.7, 0.0, 0.0, 0.0 +10.853333333333333,5,a-curv-i2,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 145, 118, 81.4, 40.7, 64.8, 15.9, 11.0, 39.3, 0.0, 2.1, 0.0 +10.973333333333333,5,a-curv-i2,2022-23,Hopkinton-Hopkinton High,01390505, 593, 488, 82.3, 20.6, 67.6, 35.2, 10.6, 59.5, 6.7, 3.9, 0.0 +9.453333333333335,5,a-curv-i2,2022-23,Hudson-Hudson High,01410505, 313, 222, 70.9, 28.4, 50.5, 42.5, 0.0, 14.7, 1.3, 9.9, 0.0 +10.520000000000001,5,a-curv-i2,2022-23,Hull-Hull High,01420505, 114, 90, 78.9, 31.6, 69.3, 23.7, 7.0, 67.5, 0.0, 1.8, 0.0 +7.28,5,a-curv-i2,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 174, 95, 54.6, 0.0, 50.6, 18.4, 1.1, 0.0, 0.0, 0.0, 0.0 +9.306666666666667,5,a-curv-i2,2022-23,Ipswich-Ipswich High,01440505, 248, 173, 69.8, 23.8, 52.8, 27.4, 10.9, 33.5, 0.0, 9.3, 0.0 +11.44,5,a-curv-i2,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 233, 200, 85.8, 51.1, 58.4, 37.8, 12.0, 30.5, 4.3, 27.5, 0.0 +11.04,5,a-curv-i2,2022-23,King Philip-King Philip Regional High,06900505, 559, 463, 82.8, 45.3, 78.4, 25.4, 7.9, 48.7, 3.9, 4.7, 0.0 +7.706666666666666,5,a-curv-i2,2022-23,Lawrence-High School Learning Center,01490536, 187, 108, 57.8, 0.0, 33.2, 34.8, 0.0, 0.0, 0.0, 0.0, 0.0 +10.466666666666667,5,a-curv-i2,2022-23,Lawrence-Lawrence High School,01490515," 1,324"," 1,040", 78.5, 19.0, 52.9, 21.7, 9.4, 26.1, 1.1, 25.5, 0.0 +5.613333333333333,5,a-curv-i2,2022-23,Lawrence-RISE Academy,01490615, 38, 16, 42.1, 0.0, 0.0, 42.1, 0.0, 0.0, 0.0, 0.0, 0.0 +3.64,3.64,a-curv-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 11, 3, 27.3, 0.0, 0.0, 27.3, 0.0, 0.0, 0.0, 0.0, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Lee-Lee Middle/High School,01500505, 110, 75, 68.2, 33.6, 57.3, 21.8, 9.1, 8.2, 0.0, 7.3, 0.0 +8.346666666666668,5,a-curv-i2,2022-23,Leicester-Leicester High,01510505, 211, 132, 62.6, 14.7, 58.8, 3.3, 1.9, 9.0, 0.0, 0.0, 0.0 +10.493333333333334,5,a-curv-i2,2022-23,Lenox-Lenox Memorial High,01520505, 127, 100, 78.7, 0.0, 71.7, 38.6, 10.2, 0.0, 2.4, 5.5, 0.0 +7.373333333333333,5,a-curv-i2,2022-23,Leominster-Center For Technical Education Innovation,01530605, 284, 157, 55.3, 4.2, 28.2, 3.2, 0.0, 19.4, 0.0, 0.0, 27.5 +0.0,1,a-curv-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 25, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.4,5,a-curv-i2,2022-23,Leominster-Leominster High School,01530505, 615, 295, 48.0, 16.6, 34.5, 9.8, 0.5, 21.5, 0.3, 2.8, 0.0 +12.026666666666667,5,a-curv-i2,2022-23,Lexington-Lexington High,01550505," 1,119"," 1,009", 90.2, 0.0, 84.3, 31.6, 14.4, 62.2, 5.8, 7.0, 0.0 +11.04,5,a-curv-i2,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 711, 589, 82.8, 0.0, 82.1, 14.8, 6.2, 0.3, 2.1, 0.0, 0.0 +10.093333333333334,5,a-curv-i2,2022-23,Littleton-Littleton High School,01580505, 226, 171, 75.7, 6.6, 68.6, 16.8, 8.8, 40.7, 2.2, 13.3, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Longmeadow-Longmeadow High,01590505, 436, 325, 74.5, 22.7, 62.2, 49.3, 6.4, 20.9, 6.9, 7.6, 0.0 +0.0,1,a-curv-i2,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 62, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 4,"","","","","","","","","","" +0.0,1,a-curv-i2,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.36,5,a-curv-i2,2022-23,Lowell-Lowell High,01600505," 1,358", 750, 55.2, 5.3, 30.6, 35.8, 0.0, 11.3, 0.0, 1.3, 0.0 +0.32,1,a-curv-i2,2022-23,Lowell-The Career Academy,01600515, 41, 1, 2.4, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.173333333333334,5,a-curv-i2,2022-23,Ludlow-Ludlow Senior High,01610505, 362, 222, 61.3, 29.6, 48.1, 29.0, 0.0, 17.7, 0.0, 0.0, 0.0 +8.0,5,a-curv-i2,2022-23,Lunenburg-Lunenburg High,01620505, 210, 126, 60.0, 35.7, 29.0, 11.4, 3.8, 27.6, 6.7, 0.5, 0.0 +5.64,5,a-curv-i2,2022-23,Lynn-Classical High,01630505, 795, 336, 42.3, 16.0, 26.3, 10.6, 7.9, 17.9, 1.9, 19.5, 0.0 +3.3333333333333335,3.33,a-curv-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 36, 9, 25.0, 2.8, 22.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.386666666666667,4.39,a-curv-i2,2022-23,Lynn-Lynn English High,01630510, 907, 298, 32.9, 13.3, 18.5, 7.6, 2.2, 14.7, 0.1, 14.8, 0.0 +5.2,5,a-curv-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 523, 204, 39.0, 10.5, 18.0, 6.9, 0.0, 9.6, 0.0, 13.6, 12.2 +11.853333333333333,5,a-curv-i2,2022-23,Lynnfield-Lynnfield High,01640505, 287, 255, 88.9, 32.8, 88.2, 20.2, 11.1, 55.4, 1.4, 14.6, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 98, 98, 100.0, 51.0, 100.0, 36.7, 33.7, 43.9, 8.2, 10.2, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Malden-Malden High,01650505, 874, 633, 72.4, 10.0, 68.2, 15.0, 1.4, 17.8, 1.5, 3.1, 0.0 +10.146666666666667,5,a-curv-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 209, 159, 76.1, 28.7, 61.7, 37.8, 1.9, 44.5, 0.0, 20.6, 0.0 +8.72,5,a-curv-i2,2022-23,Mansfield-Mansfield High,01670505, 583, 381, 65.4, 17.7, 48.9, 14.1, 5.0, 32.2, 3.4, 3.4, 0.0 +3.2666666666666666,3.27,a-curv-i2,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 159, 39, 24.5, 2.5, 20.1, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +9.906666666666666,5,a-curv-i2,2022-23,Marblehead-Marblehead High,01680505, 444, 330, 74.3, 25.9, 67.1, 10.4, 11.9, 0.0, 0.0, 5.0, 0.0 +7.173333333333333,5,a-curv-i2,2022-23,Marlborough-Marlborough High,01700505, 563, 303, 53.8, 29.0, 38.7, 9.6, 0.0, 22.2, 0.7, 2.0, 0.0 +9.373333333333333,5,a-curv-i2,2022-23,Marshfield-Marshfield High,01710505, 556, 391, 70.3, 13.7, 64.6, 24.5, 5.6, 29.1, 9.5, 3.8, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 16, 16, 100.0, 100.0, 100.0, 68.8, 0.0, 75.0, 75.0, 0.0, 0.0 +8.373333333333333,5,a-curv-i2,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 344, 216, 62.8, 26.2, 50.6, 16.6, 3.5, 27.3, 2.0, 14.5, 0.0 +9.8,5,a-curv-i2,2022-23,Masconomet-Masconomet Regional High School,07050505, 517, 380, 73.5, 9.5, 66.2, 23.4, 13.2, 26.5, 4.4, 9.5, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Mashpee-Mashpee Middle-High School,01720505, 204, 152, 74.5, 20.1, 70.6, 28.9, 1.5, 31.4, 11.3, 6.4, 0.0 +12.546666666666665,5,a-curv-i2,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 135, 127, 94.1, 46.7, 93.3, 26.7, 28.9, 61.5, 0.0, 18.5, 0.0 +9.106666666666666,5,a-curv-i2,2022-23,Maynard-Maynard High,01740505, 145, 99, 68.3, 22.1, 61.4, 23.4, 2.8, 17.2, 0.0, 7.6, 0.0 +11.186666666666667,5,a-curv-i2,2022-23,Medfield-Medfield Senior High,01750505, 386, 324, 83.9, 18.4, 66.6, 17.9, 0.0, 57.0, 7.0, 15.8, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Medford-Curtis-Tufts,01760510, 8, 4, 50.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.28,5,a-curv-i2,2022-23,Medford-Medford High,01760505, 599, 327, 54.6, 15.5, 42.7, 4.8, 12.2, 17.0, 1.0, 3.7, 0.0 +12.04,5,a-curv-i2,2022-23,Medway-Medway High,01770505, 308, 278, 90.3, 26.3, 84.1, 41.6, 3.6, 45.1, 0.3, 10.7, 0.0 +10.946666666666665,5,a-curv-i2,2022-23,Melrose-Melrose High,01780505, 447, 367, 82.1, 52.1, 55.5, 36.7, 3.1, 25.3, 0.0, 20.6, 0.0 +9.946666666666665,5,a-curv-i2,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 299, 223, 74.6, 25.8, 61.2, 14.7, 5.4, 36.5, 4.3, 6.0, 0.0 +6.706666666666666,5,a-curv-i2,2022-23,Methuen-Methuen High,01810505, 953, 479, 50.3, 10.4, 39.8, 8.0, 9.0, 17.6, 0.4, 1.4, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Middleborough-Middleborough High,01820505, 398, 288, 72.4, 12.3, 58.0, 26.1, 8.8, 16.6, 2.0, 9.5, 0.0 +8.266666666666667,5,a-curv-i2,2022-23,Milford-Milford High,01850505, 598, 371, 62.0, 23.1, 49.3, 27.1, 5.2, 16.7, 1.5, 4.7, 0.0 +8.76,5,a-curv-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 239, 157, 65.7, 14.6, 54.4, 15.5, 4.6, 1.3, 1.3, 0.0, 0.0 +11.653333333333334,5,a-curv-i2,2022-23,Millis-Millis High School,01870505, 167, 146, 87.4, 12.0, 86.2, 15.6, 17.4, 35.3, 2.4, 16.8, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Milton-Milton High,01890505, 547, 528, 96.5, 32.2, 96.3, 12.4, 4.9, 44.1, 3.5, 19.4, 0.0 +6.84,5,a-curv-i2,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 316, 162, 51.3, 11.1, 35.1, 33.9, 0.0, 15.5, 0.0, 0.0, 0.0 +9.106666666666666,5,a-curv-i2,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 63, 43, 68.3, 33.3, 54.0, 30.2, 0.0, 19.0, 0.0, 0.0, 0.0 +9.32,5,a-curv-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 239, 167, 69.9, 21.8, 49.4, 19.7, 7.5, 46.0, 2.1, 4.6, 0.0 +5.026666666666667,5,a-curv-i2,2022-23,Monson-Monson High School,01910505, 77, 29, 37.7, 14.3, 19.5, 14.3, 1.3, 0.0, 0.0, 2.6, 0.0 +13.146666666666667,5,a-curv-i2,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 664, 655, 98.6, 18.7, 48.0, 50.5, 1.4, 0.0, 0.0, 93.5, 35.1 +11.373333333333333,5,a-curv-i2,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 184, 157, 85.3, 37.5, 72.8, 14.7, 8.2, 50.5, 1.6, 16.3, 0.0 +13.013333333333332,5,a-curv-i2,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 169, 165, 97.6, 79.9, 83.4, 87.6, 0.0, 85.2, 7.7, 55.6, 0.0 +8.626666666666667,5,a-curv-i2,2022-23,Nantucket-Nantucket High,01970505, 269, 174, 64.7, 17.8, 59.1, 12.3, 0.0, 14.5, 0.4, 0.0, 0.0 +6.92,5,a-curv-i2,2022-23,Narragansett-Narragansett Regional High,07200505, 133, 69, 51.9, 16.5, 33.8, 23.3, 1.5, 30.1, 0.0, 0.0, 0.0 +10.733333333333333,5,a-curv-i2,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 333, 268, 80.5, 18.9, 54.4, 9.6, 0.0, 17.7, 0.0, 44.7, 32.1 +11.16,5,a-curv-i2,2022-23,Nashoba-Nashoba Regional,07250505, 416, 348, 83.7, 8.4, 82.9, 18.0, 16.1, 41.3, 1.7, 2.2, 0.0 +9.546666666666665,5,a-curv-i2,2022-23,Natick-Natick High,01980505, 771, 552, 71.6, 19.5, 58.8, 17.9, 7.3, 37.5, 0.4, 3.8, 0.0 +9.666666666666666,5,a-curv-i2,2022-23,Nauset-Nauset Regional High,06600505, 389, 282, 72.5, 21.1, 59.1, 27.0, 1.8, 37.5, 7.5, 5.4, 0.0 +12.813333333333333,5,a-curv-i2,2022-23,Needham-Needham High,01990505, 798, 767, 96.1, 21.8, 94.6, 16.0, 0.0, 37.3, 1.8, 9.0, 0.0 +8.48,5,a-curv-i2,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 129, 82, 63.6, 30.2, 48.8, 23.3, 0.0, 20.9, 0.0, 2.3, 0.0 +6.12,5,a-curv-i2,2022-23,New Bedford-New Bedford High,02010505," 1,248", 573, 45.9, 8.0, 34.4, 7.6, 2.5, 10.5, 2.2, 7.4, 0.0 +0.0,1,a-curv-i2,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 70, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.146666666666667,5,a-curv-i2,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 179, 163, 91.1, 48.6, 41.3, 30.2, 14.5, 56.4, 5.6, 73.7, 0.0 +10.066666666666666,5,a-curv-i2,2022-23,Newburyport-Newburyport High,02040505, 421, 318, 75.5, 29.7, 57.5, 39.9, 1.4, 17.3, 3.1, 6.2, 0.0 +11.253333333333334,5,a-curv-i2,2022-23,Newton-Newton North High,02070505," 1,019", 860, 84.4, 21.6, 82.5, 21.4, 0.0, 33.9, 0.9, 7.5, 0.0 +9.466666666666667,5,a-curv-i2,2022-23,Newton-Newton South High,02070510, 920, 653, 71.0, 9.7, 61.1, 17.0, 0.0, 43.5, 2.2, 5.4, 0.0 +6.72,5,a-curv-i2,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 274, 138, 50.4, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 12.8, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,North Adams-Drury High,02090505, 131, 97, 74.0, 45.0, 42.7, 29.8, 7.6, 33.6, 3.8, 0.0, 0.0 +9.04,5,a-curv-i2,2022-23,North Andover-North Andover High,02110505, 658, 446, 67.8, 17.9, 58.4, 21.7, 8.8, 33.0, 2.3, 7.6, 0.0 +8.746666666666666,5,a-curv-i2,2022-23,North Attleborough-North Attleboro High,02120505, 576, 378, 65.6, 15.3, 58.7, 14.8, 5.4, 27.8, 0.0, 0.2, 0.0 +5.333333333333333,5,a-curv-i2,2022-23,North Brookfield-North Brookfield High,02150505, 50, 20, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.093333333333334,5,a-curv-i2,2022-23,North Middlesex-North Middlesex Regional,07350505, 355, 322, 90.7, 2.0, 86.5, 40.0, 6.2, 13.0, 0.6, 2.8, 0.0 +9.76,5,a-curv-i2,2022-23,North Reading-North Reading High,02170505, 306, 224, 73.2, 14.4, 63.4, 24.2, 3.3, 30.4, 0.0, 2.6, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Northampton-Northampton High,02100505, 444, 331, 74.5, 41.0, 58.3, 46.2, 6.8, 35.1, 0.0, 5.0, 0.0 +6.693333333333333,5,a-curv-i2,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 267, 134, 50.2, 13.5, 25.8, 13.1, 0.0, 0.0, 0.0, 0.0, 21.7 +9.746666666666666,5,a-curv-i2,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 633, 463, 73.1, 34.4, 63.0, 26.2, 2.5, 42.2, 4.4, 6.2, 0.0 +4.226666666666667,4.23,a-curv-i2,2022-23,Northbridge-Northbridge High,02140505, 230, 73, 31.7, 10.0, 20.0, 4.8, 0.0, 10.0, 0.0, 0.0, 0.0 +6.973333333333333,5,a-curv-i2,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 591, 309, 52.3, 3.9, 30.6, 3.6, 1.0, 1.7, 0.0, 4.9, 28.4 +13.333333333333334,5,a-curv-i2,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 243, 243, 100.0, 71.2, 87.7, 56.4, 2.9, 59.7, 0.0, 54.3, 26.7 +5.386666666666667,5,a-curv-i2,2022-23,Norton-Norton High,02180505, 329, 133, 40.4, 0.0, 21.9, 5.2, 2.7, 32.2, 0.9, 1.5, 0.0 +12.893333333333334,5,a-curv-i2,2022-23,Norwell-Norwell High,02190505, 303, 293, 96.7, 16.8, 96.4, 17.2, 5.9, 53.8, 8.6, 15.8, 0.0 +11.346666666666666,5,a-curv-i2,2022-23,Norwood-Norwood High,02200505, 503, 428, 85.1, 16.9, 84.9, 27.0, 3.2, 34.8, 2.4, 11.7, 0.0 +12.906666666666666,5,a-curv-i2,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 278, 269, 96.8, 25.2, 56.8, 4.0, 2.5, 0.0, 0.0, 50.0, 45.3 +10.706666666666667,5,a-curv-i2,2022-23,Old Rochester-Old Rochester Regional High,07400505, 319, 256, 80.3, 15.7, 73.7, 23.2, 16.0, 17.9, 2.5, 13.2, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Oxford-Oxford High,02260505, 170, 85, 50.0, 20.0, 34.1, 5.3, 8.8, 14.1, 3.5, 4.1, 0.0 +8.546666666666665,5,a-curv-i2,2022-23,Palmer-Palmer High,02270505, 128, 82, 64.1, 25.8, 32.8, 42.2, 0.0, 19.5, 9.4, 2.3, 0.0 +6.1066666666666665,5,a-curv-i2,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 286, 131, 45.8, 11.5, 21.3, 3.1, 7.0, 17.8, 0.0, 0.7, 14.3 +5.2266666666666675,5,a-curv-i2,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 143, 56, 39.2, 0.0, 37.8, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0 +5.093333333333334,5,a-curv-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 34, 13, 38.2, 0.0, 35.3, 0.0, 0.0, 35.3, 0.0, 0.0, 0.0 +5.8,5,a-curv-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 724, 315, 43.5, 18.0, 30.2, 20.6, 1.7, 18.8, 1.4, 2.1, 0.1 +10.853333333333333,5,a-curv-i2,2022-23,Pembroke-Pembroke High School,02310505, 366, 298, 81.4, 14.8, 77.3, 18.9, 8.2, 35.8, 3.0, 7.7, 0.0 +10.213333333333333,5,a-curv-i2,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 303, 232, 76.6, 17.2, 66.0, 23.8, 7.6, 28.4, 0.3, 3.3, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 26, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 29, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 53, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.426666666666668,5,a-curv-i2,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 88, 82, 93.2, 30.7, 83.0, 48.9, 9.1, 20.5, 0.0, 4.5, 0.0 +12.04,5,a-curv-i2,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 93, 84, 90.3, 35.5, 62.4, 40.9, 25.8, 33.3, 10.8, 12.9, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 41, 41, 100.0, 100.0, 100.0, 100.0, 0.0, 100.0, 22.0, 100.0, 0.0 +8.386666666666667,5,a-curv-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 116, 73, 62.9, 6.9, 62.9, 1.7, 0.9, 0.9, 0.9, 0.0, 0.0 +12.733333333333333,5,a-curv-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 88, 84, 95.5, 27.3, 95.5, 20.5, 0.0, 17.0, 1.1, 2.3, 0.0 +7.906666666666666,5,a-curv-i2,2022-23,Pittsfield-Pittsfield High,02360505, 332, 197, 59.3, 22.6, 47.3, 11.4, 5.1, 21.7, 4.5, 11.1, 0.0 +0.9466666666666667,1,a-curv-i2,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 28, 2, 7.1, 0.0, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.786666666666666,5,a-curv-i2,2022-23,Pittsfield-Taconic High,02360510, 381, 194, 50.9, 12.6, 37.8, 6.8, 0.0, 15.5, 1.6, 6.0, 8.1 +8.28,5,a-curv-i2,2022-23,Plymouth-Plymouth North High,02390505, 614, 381, 62.1, 8.1, 58.1, 17.6, 5.9, 15.8, 2.8, 2.0, 0.0 +8.0,5,a-curv-i2,2022-23,Plymouth-Plymouth South High,02390515, 498, 299, 60.0, 19.1, 54.0, 20.1, 7.2, 25.1, 2.0, 1.8, 0.0 +11.24,5,a-curv-i2,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 134, 113, 84.3, 17.9, 64.9, 49.3, 15.7, 0.0, 0.0, 6.0, 0.0 +12.413333333333332,5,a-curv-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 275, 256, 93.1, 92.0, 61.8, 20.0, 0.0, 23.3, 0.0, 34.2, 0.0 +8.813333333333333,5,a-curv-i2,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 183, 121, 66.1, 50.3, 43.2, 37.2, 2.2, 24.0, 3.8, 0.0, 0.0 +9.386666666666667,5,a-curv-i2,2022-23,Quincy-North Quincy High,02430510, 712, 501, 70.4, 33.7, 58.0, 24.7, 7.0, 33.8, 1.5, 3.1, 0.0 +7.12,5,a-curv-i2,2022-23,Quincy-Quincy High,02430505, 753, 402, 53.4, 19.5, 42.2, 10.8, 2.0, 24.3, 1.1, 2.1, 0.0 +5.8,5,a-curv-i2,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 138, 60, 43.5, 29.0, 26.1, 26.1, 0.0, 15.2, 5.1, 1.4, 0.0 +9.613333333333333,5,a-curv-i2,2022-23,Randolph-Randolph High,02440505, 272, 196, 72.1, 4.0, 22.4, 43.4, 25.7, 11.8, 2.2, 0.0, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Reading-Reading Memorial High,02460505, 585, 399, 68.2, 11.6, 56.4, 35.6, 9.1, 25.3, 1.7, 6.2, 0.0 +7.1066666666666665,5,a-curv-i2,2022-23,Revere-CityLab Innovation High School,02480520, 30, 16, 53.3, 36.7, 13.3, 10.0, 6.7, 0.0, 3.3, 6.7, 0.0 +10.333333333333334,5,a-curv-i2,2022-23,Revere-Revere High,02480505, 906, 702, 77.5, 18.5, 74.9, 14.6, 4.9, 14.9, 0.0, 10.5, 0.0 +9.973333333333333,5,a-curv-i2,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 119, 89, 74.8, 0.0, 70.6, 25.2, 6.7, 12.6, 0.0, 0.0, 0.0 +9.2,5,a-curv-i2,2022-23,Rockland-Rockland Senior High,02510505, 258, 178, 69.0, 25.6, 41.9, 45.0, 0.4, 26.0, 0.4, 1.9, 0.0 +10.933333333333334,5,a-curv-i2,2022-23,Rockport-Rockport High,02520510, 128, 105, 82.0, 14.1, 73.4, 39.1, 4.7, 50.8, 0.0, 0.8, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 223, 223, 100.0, 80.7, 55.2, 31.8, 0.0, 97.8, 0.0, 72.2, 0.0 +11.346666666666666,5,a-curv-i2,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 134, 114, 85.1, 47.8, 50.0, 50.7, 0.0, 64.9, 9.0, 0.0, 0.0 +6.253333333333333,5,a-curv-i2,2022-23,Salem-New Liberty Innovation School,02580510, 32, 15, 46.9, 0.0, 0.0, 46.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.973333333333333,5,a-curv-i2,2022-23,Salem-Salem High,02580505, 413, 216, 52.3, 16.5, 25.4, 15.0, 6.3, 22.8, 7.7, 9.7, 2.4 +1.9066666666666667,1.91,a-curv-i2,2022-23,Salem-Salem Prep High School,02580515, 7, 1, 14.3, 0.0, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0 +8.946666666666665,5,a-curv-i2,2022-23,Sandwich-Sandwich Middle High School,02610505, 298, 200, 67.1, 28.5, 59.1, 19.8, 13.4, 28.5, 0.0, 2.0, 0.0 +11.573333333333332,5,a-curv-i2,2022-23,Saugus-Saugus High,02620505, 356, 309, 86.8, 22.2, 64.9, 39.9, 11.8, 23.0, 0.0, 52.8, 0.0 +11.466666666666667,5,a-curv-i2,2022-23,Scituate-Scituate High School,02640505, 401, 345, 86.0, 44.9, 83.3, 43.6, 7.5, 35.2, 3.2, 11.0, 0.0 +8.68,5,a-curv-i2,2022-23,Seekonk-Seekonk High,02650505, 261, 170, 65.1, 8.4, 58.6, 27.6, 8.8, 27.2, 0.8, 0.8, 0.0 +10.026666666666667,5,a-curv-i2,2022-23,Sharon-Sharon High,02660505, 565, 425, 75.2, 10.1, 70.3, 19.5, 10.6, 43.9, 2.5, 3.5, 0.0 +9.573333333333332,5,a-curv-i2,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 621, 446, 71.8, 5.6, 47.2, 1.6, 0.0, 0.0, 0.0, 0.0, 58.5 +12.360000000000001,5,a-curv-i2,2022-23,Shrewsbury-Shrewsbury High School,02710505, 885, 820, 92.7, 20.7, 92.2, 47.1, 1.7, 29.4, 1.4, 3.7, 0.0 +7.533333333333333,5,a-curv-i2,2022-23,Silver Lake-Silver Lake Regional High,07600505, 506, 286, 56.5, 24.1, 48.4, 30.4, 4.5, 30.4, 0.0, 1.2, 4.9 +6.026666666666667,5,a-curv-i2,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 93, 42, 45.2, 29.0, 24.7, 3.2, 3.2, 9.7, 1.1, 1.1, 0.0 +7.693333333333333,5,a-curv-i2,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 492, 284, 57.7, 35.4, 44.9, 19.5, 4.7, 26.0, 3.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Somerville-Full Circle High School,02740510, 24, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.013333333333334,5,a-curv-i2,2022-23,Somerville-Somerville High,02740505, 589, 354, 60.1, 20.5, 55.2, 17.7, 2.4, 21.7, 0.0, 4.9, 3.4 +5.8533333333333335,5,a-curv-i2,2022-23,South Hadley-South Hadley High,02780505, 253, 111, 43.9, 16.6, 33.6, 13.4, 3.6, 15.8, 1.6, 0.0, 0.4 +6.053333333333333,5,a-curv-i2,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 381, 173, 45.4, 11.5, 19.2, 24.4, 3.1, 3.1, 0.0, 0.0, 17.6 +10.946666666666665,5,a-curv-i2,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 145, 119, 82.1, 24.8, 71.0, 5.5, 12.4, 22.1, 0.0, 0.0, 0.0 +9.026666666666667,5,a-curv-i2,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 313, 212, 67.7, 0.0, 50.8, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0 +0.0,1,a-curv-i2,2022-23,Southbridge-Southbridge Academy,02770525, 1,"","","","","","","","","","" +8.026666666666667,5,a-curv-i2,2022-23,Southbridge-Southbridge High School,02770515, 206, 124, 60.2, 5.8, 46.1, 12.1, 14.6, 15.5, 0.0, 0.0, 0.0 +12.32,5,a-curv-i2,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 751, 694, 92.4, 21.0, 58.5, 30.2, 0.0, 9.6, 2.7, 60.6, 50.1 +10.520000000000001,5,a-curv-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 76, 60, 78.9, 34.2, 65.8, 2.6, 0.0, 35.5, 7.9, 26.3, 0.0 +7.04,5,a-curv-i2,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 553, 292, 52.8, 13.2, 26.9, 12.7, 0.0, 0.0, 0.0, 0.0, 31.1 +4.346666666666667,4.35,a-curv-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 190, 62, 32.6, 1.6, 21.1, 16.3, 5.8, 5.8, 0.0, 1.1, 0.0 +10.146666666666667,5,a-curv-i2,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 163, 124, 76.1, 35.0, 76.1, 0.0, 0.0, 20.9, 0.0, 0.0, 0.0 +6.96,5,a-curv-i2,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 184, 96, 52.2, 27.2, 21.7, 19.6, 0.0, 29.9, 0.0, 0.0, 0.0 +6.026666666666667,5,a-curv-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 84, 38, 45.2, 27.4, 14.3, 1.2, 0.0, 0.0, 13.1, 13.1, 0.0 +3.1733333333333333,3.17,a-curv-i2,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 21, 5, 23.8, 4.8, 19.0, 4.8, 0.0, 4.8, 0.0, 0.0, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 17, 17, 100.0, 0.0, 29.4, 11.8, 0.0, 17.6, 11.8, 29.4, 0.0 +8.52,5,a-curv-i2,2022-23,Springfield-High School Of Commerce,02810510, 452, 289, 63.9, 12.6, 38.5, 9.7, 2.2, 21.2, 10.6, 17.9, 0.0 +8.213333333333333,5,a-curv-i2,2022-23,Springfield-John J Duggan Academy,02810320, 138, 85, 61.6, 21.7, 52.2, 0.0, 12.3, 15.9, 0.0, 1.4, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Liberty Preparatory Academy,02810560, 6, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.386666666666667,5,a-curv-i2,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 622, 298, 47.9, 9.8, 37.8, 2.6, 1.4, 6.3, 1.8, 1.8, 10.1 +4.760000000000001,4.76,a-curv-i2,2022-23,Springfield-Springfield Central High,02810500, 855, 305, 35.7, 21.9, 21.5, 6.9, 1.5, 13.0, 0.6, 1.3, 0.0 +1.24,1.24,a-curv-i2,2022-23,Springfield-Springfield High School,02810570, 43, 4, 9.3, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.319999999999999,4.32,a-curv-i2,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 429, 139, 32.4, 13.8, 14.0, 7.5, 0.7, 9.1, 5.8, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Springfield Public Day High School,02810550, 23, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.266666666666667,5,a-curv-i2,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 137, 85, 62.0, 31.4, 55.5, 11.7, 1.5, 24.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-The Springfield Virtual School,02810705, 48, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.786666666666667,5,a-curv-i2,2022-23,Stoneham-Stoneham High,02840505, 297, 218, 73.4, 44.1, 63.6, 26.3, 3.7, 20.2, 0.0, 6.1, 0.0 +7.373333333333333,5,a-curv-i2,2022-23,Stoughton-Stoughton High,02850505, 503, 278, 55.3, 7.6, 48.5, 13.9, 10.9, 12.5, 0.0, 0.0, 0.0 +13.293333333333333,5,a-curv-i2,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 392, 391, 99.7, 99.7, 99.7, 96.2, 8.7, 99.5, 39.5, 87.0, 0.0 +11.32,5,a-curv-i2,2022-23,Sutton-Sutton High School,02900510, 186, 158, 84.9, 67.2, 65.1, 21.0, 0.0, 8.1, 0.0, 8.1, 0.0 +9.293333333333333,5,a-curv-i2,2022-23,Swampscott-Swampscott High,02910505, 310, 216, 69.7, 32.6, 54.8, 20.6, 6.5, 43.5, 6.1, 3.9, 0.0 +4.626666666666667,4.63,a-curv-i2,2022-23,Swansea-Joseph Case High,02920505, 262, 91, 34.7, 7.6, 8.0, 21.8, 10.7, 3.8, 2.7, 0.0, 0.0 +2.8266666666666667,2.83,a-curv-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 886, 188, 21.2, 5.0, 17.6, 1.1, 0.6, 3.0, 0.0, 0.2, 0.0 +9.520000000000001,5,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 336, 240, 71.4, 36.9, 65.8, 22.0, 0.6, 18.5, 3.9, 1.2, 0.0 +3.6533333333333333,3.65,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 223, 61, 27.4, 5.4, 24.2, 2.2, 0.0, 1.3, 0.0, 0.0, 0.0 +1.0933333333333333,1.09,a-curv-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 73, 6, 8.2, 0.0, 0.0, 8.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Taunton-Taunton High,02930505, 998, 471, 47.2, 10.7, 42.6, 9.9, 3.1, 16.6, 0.4, 2.8, 0.0 +9.533333333333333,5,a-curv-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 386, 276, 71.5, 20.7, 58.8, 29.3, 4.9, 29.8, 0.0, 4.1, 0.0 +11.653333333333334,5,a-curv-i2,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 444, 388, 87.4, 5.6, 60.4, 26.1, 0.0, 13.3, 0.0, 64.9, 39.2 +7.933333333333334,5,a-curv-i2,2022-23,Triton-Triton Regional High School,07730505, 316, 188, 59.5, 7.6, 54.7, 19.0, 1.6, 14.2, 0.0, 6.3, 0.0 +10.2,5,a-curv-i2,2022-23,Tyngsborough-Tyngsborough High School,03010505, 200, 153, 76.5, 11.5, 67.0, 16.0, 20.0, 5.0, 0.0, 2.5, 0.0 +7.973333333333333,5,a-curv-i2,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 333, 199, 59.8, 4.8, 39.9, 0.0, 0.0, 0.0, 0.0, 0.0, 40.8 +0.36000000000000004,1,a-curv-i2,2022-23,Uxbridge-Gateway to College,03040515, 37, 1, 2.7, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +10.479999999999999,5,a-curv-i2,2022-23,Uxbridge-Uxbridge High,03040505, 215, 169, 78.6, 40.9, 54.4, 47.9, 4.2, 15.3, 0.0, 19.1, 0.0 +8.666666666666666,5,a-curv-i2,2022-23,Wachusett-Wachusett Regional High,07750505, 973, 632, 65.0, 12.0, 60.2, 6.3, 4.5, 26.5, 1.6, 2.5, 0.0 +10.173333333333334,5,a-curv-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 393, 300, 76.3, 21.1, 69.5, 20.1, 5.1, 23.2, 2.8, 1.0, 0.0 +8.04,5,a-curv-i2,2022-23,Walpole-Walpole High,03070505, 501, 302, 60.3, 19.2, 45.1, 7.8, 8.6, 19.6, 0.0, 2.6, 0.0 +7.2,5,a-curv-i2,2022-23,Waltham-Waltham Sr High,03080505, 816, 441, 54.0, 17.6, 29.0, 11.8, 4.5, 32.0, 1.7, 7.0, 1.6 +6.2266666666666675,5,a-curv-i2,2022-23,Ware-Ware Junior/Senior High School,03090505, 120, 56, 46.7, 15.8, 44.2, 15.0, 0.8, 0.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.7733333333333325,5,a-curv-i2,2022-23,Wareham-Wareham Senior High,03100505, 180, 78, 43.3, 28.9, 24.4, 11.7, 1.7, 23.3, 11.1, 7.8, 0.0 +8.133333333333333,5,a-curv-i2,2022-23,Watertown-Watertown High,03140505, 333, 203, 61.0, 7.5, 58.3, 26.7, 5.4, 10.8, 1.5, 2.1, 0.0 +11.453333333333335,5,a-curv-i2,2022-23,Wayland-Wayland High School,03150505, 397, 341, 85.9, 11.8, 80.9, 17.6, 15.1, 25.4, 2.3, 0.0, 0.0 +6.239999999999999,5,a-curv-i2,2022-23,Webster-Bartlett High School,03160505, 158, 74, 46.8, 10.1, 19.6, 31.0, 6.3, 9.5, 0.0, 2.5, 0.0 +12.226666666666667,5,a-curv-i2,2022-23,Wellesley-Wellesley Sr High,03170505, 708, 649, 91.7, 0.3, 85.9, 64.1, 6.6, 30.2, 0.3, 9.3, 0.0 +9.413333333333332,5,a-curv-i2,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 119, 84, 70.6, 13.4, 65.5, 42.0, 1.7, 10.9, 5.9, 0.0, 0.0 +10.413333333333332,5,a-curv-i2,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 201, 157, 78.1, 26.9, 68.7, 34.3, 6.5, 2.0, 0.0, 1.0, 0.0 +8.360000000000001,5,a-curv-i2,2022-23,West Springfield-West Springfield High,03320505, 547, 343, 62.7, 27.8, 42.0, 34.9, 0.9, 24.3, 2.7, 4.4, 1.1 +8.8,5,a-curv-i2,2022-23,Westborough-Westborough High,03210505, 553, 365, 66.0, 5.4, 60.0, 28.6, 7.4, 21.7, 4.3, 4.9, 0.0 +7.8133333333333335,5,a-curv-i2,2022-23,Westfield-Westfield High,03250505, 483, 283, 58.6, 30.4, 42.7, 14.1, 2.7, 24.2, 0.6, 3.5, 0.0 +1.9333333333333333,1.93,a-curv-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 249, 36, 14.5, 7.6, 3.6, 0.0, 0.0, 6.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Westfield-Westfield Virtual School,03250705, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.226666666666667,5,a-curv-i2,2022-23,Westford-Westford Academy,03260505, 798, 552, 69.2, 16.4, 59.8, 28.8, 5.6, 33.6, 4.9, 0.5, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Weston-Weston High,03300505, 314, 303, 96.5, 5.4, 93.0, 55.4, 8.0, 74.2, 4.8, 16.6, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Westport-Westport Middle-High School,03310515, 154, 77, 50.0, 16.2, 39.6, 15.6, 3.2, 3.2, 0.0, 0.6, 0.0 +10.266666666666667,5,a-curv-i2,2022-23,Westwood-Westwood High,03350505, 488, 376, 77.0, 21.7, 65.4, 23.6, 10.0, 51.4, 8.0, 4.7, 0.0 +7.586666666666667,5,a-curv-i2,2022-23,Weymouth-Weymouth High School,03360505, 867, 493, 56.9, 11.0, 51.7, 11.3, 4.3, 16.5, 0.6, 4.6, 2.0 +3.1199999999999997,3.12,a-curv-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 548, 128, 23.4, 18.6, 16.1, 9.7, 0.0, 8.9, 0.0, 0.0, 0.0 +13.306666666666667,5,a-curv-i2,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 639, 638, 99.8, 32.1, 99.5, 1.6, 1.7, 18.3, 0.0, 58.8, 57.7 +9.360000000000001,5,a-curv-i2,2022-23,Wilmington-Wilmington High,03420505, 359, 252, 70.2, 22.0, 61.0, 32.9, 2.2, 33.7, 0.0, 6.1, 0.0 +0.0,1,a-curv-i2,2022-23,Winchendon-Murdock Academy for Success,03430405, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.413333333333333,5,a-curv-i2,2022-23,Winchendon-Murdock High School,03430515, 101, 41, 40.6, 24.8, 22.8, 8.9, 5.9, 4.0, 0.0, 0.0, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Winchester-Winchester High School,03440505, 688, 664, 96.5, 25.3, 94.9, 69.3, 8.9, 35.9, 0.0, 13.8, 0.0 +11.106666666666666,5,a-curv-i2,2022-23,Winthrop-Winthrop High School,03460505, 275, 229, 83.3, 34.9, 71.6, 26.5, 1.8, 37.8, 0.0, 0.0, 0.0 +8.04,5,a-curv-i2,2022-23,Woburn-Woburn High,03470505, 557, 336, 60.3, 11.0, 45.8, 17.4, 5.2, 28.9, 0.9, 12.4, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Worcester-Burncoat Senior High,03480503, 570, 269, 47.2, 20.5, 26.7, 9.8, 3.3, 17.5, 8.4, 8.1, 0.0 +7.426666666666667,5,a-curv-i2,2022-23,Worcester-Claremont Academy,03480350, 149, 83, 55.7, 10.7, 24.2, 18.8, 2.0, 26.8, 0.7, 12.8, 0.0 +6.48,5,a-curv-i2,2022-23,Worcester-Doherty Memorial High,03480512, 621, 302, 48.6, 13.8, 30.6, 15.1, 4.5, 19.6, 3.7, 11.9, 0.0 +5.506666666666666,5,a-curv-i2,2022-23,Worcester-North High,03480515, 624, 258, 41.3, 14.1, 19.6, 7.2, 3.7, 6.1, 5.9, 4.2, 0.0 +6.16,5,a-curv-i2,2022-23,Worcester-South High Community,03480520, 770, 356, 46.2, 13.9, 29.2, 19.6, 6.2, 16.4, 1.6, 5.8, 0.0 +10.626666666666667,5,a-curv-i2,2022-23,Worcester-University Pk Campus School,03480285, 74, 59, 79.7, 54.1, 29.7, 20.3, 24.3, 32.4, 1.4, 24.3, 0.0 +5.88,5,a-curv-i2,2022-23,Worcester-Worcester Technical High,03480605, 690, 304, 44.1, 19.3, 27.0, 5.8, 1.2, 11.4, 1.4, 9.0, 0.0 11.213333333333333,5,a-curv-i2,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 182, 153, 84.1, 31.9, 68.1, 28.0, 0.0, 35.7, 16.5, 30.8, 0.0 10.520000000000001,5,a-curv-i2,2021-22,Abington-Abington High,00010505, 294, 232, 78.9, 13.6, 78.2, 6.8, 0.0, 14.3, 0.7, 0.0, 0.0 11.360000000000001,5,a-curv-i2,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 115, 98, 85.2, 1.7, 51.3, 35.7, 23.5, 60.0, 2.6, 37.4, 0.0 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_ap.csv b/data/admin_data/dese/3B_1_ap.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/3B_1_ap.csv rename to data/admin_data/dese/3B_1_ap.csv index 57fc940..920b111 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_ap.csv +++ b/data/admin_data/dese/3B_1_ap.csv @@ -1,4 +1,342 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Tests Taken,Score=1,Score=2,Score=3,Score=4,Score=5,% Score 1-2,% Score 3-5 +9.14,5,a-curv-i3,2022-23,Abington - Abington High,00010505, 164, 40, 49, 51, 21, 3, 54.3, 45.7 +1.16,1.16,a-curv-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 154, 120, 25, 5, 3, 1, 94.2, 5.8 +18.6,5,a-curv-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,442", 22, 79, 229, 473, 639, 7.0, 93.0 +16.48,5,a-curv-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 387, 17, 51, 87, 118, 114, 17.6, 82.4 +12.24,5,a-curv-i3,2022-23,Agawam - Agawam High,00050505, 423, 60, 104, 140, 82, 37, 38.8, 61.2 +16.8,5,a-curv-i3,2022-23,Amesbury - Amesbury High,00070505, 100, 4, 12, 31, 27, 26, 16.0, 84.0 +16.78,5,a-curv-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 224, 7, 29, 58, 79, 51, 16.1, 83.9 +16.22,5,a-curv-i3,2022-23,Andover - Andover High,00090505," 1,173", 55, 167, 281, 378, 292, 18.9, 81.1 +15.62,5,a-curv-i3,2022-23,Arlington - Arlington High,00100505," 1,408", 94, 215, 379, 397, 323, 21.9, 78.1 +11.9,5,a-curv-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 195, 21, 58, 62, 35, 19, 40.5, 59.5 +18.4,5,a-curv-i3,2022-23,Ashland - Ashland High,00140505, 436, 10, 25, 78, 146, 177, 8.0, 92.0 +7.459999999999999,5,a-curv-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110, 32, 37, 31, 9, 1, 62.7, 37.3 +6.0600000000000005,5,a-curv-i3,2022-23,Athol-Royalston - Athol High,06150505, 99, 56, 13, 18, 9, 3, 69.7, 30.3 +3.1,3.1,a-curv-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 116, 67, 31, 14, 4, 0, 84.5, 15.5 +8.6,5,a-curv-i3,2022-23,Attleboro - Attleboro High,00160505, 646, 187, 181, 152, 99, 27, 57.0, 43.0 +10.0,5,a-curv-i3,2022-23,Auburn - Auburn Senior High,00170505, 352, 70, 106, 109, 43, 24, 50.0, 50.0 +9.559999999999999,5,a-curv-i3,2022-23,Avon - Avon Middle High School,00180510, 23, 3, 9, 6, 5, 0, 52.2, 47.8 +13.219999999999999,5,a-curv-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 118, 12, 28, 33, 35, 10, 33.9, 66.1 +8.6,5,a-curv-i3,2022-23,Barnstable - Barnstable High,00200505, 565, 146, 176, 125, 85, 33, 57.0, 43.0 +1.8199999999999998,1.82,a-curv-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 22, 14, 6, 1, 1, 0, 90.9, 9.1 +17.78,5,a-curv-i3,2022-23,Bedford - Bedford High,00230505, 478, 13, 40, 88, 139, 198, 11.1, 88.9 +13.34,5,a-curv-i3,2022-23,Belchertown - Belchertown High,00240505, 111, 6, 31, 32, 24, 18, 33.3, 66.7 +8.84,5,a-curv-i3,2022-23,Bellingham - Bellingham High School,00250505, 163, 45, 46, 43, 23, 6, 55.8, 44.2 +18.5,5,a-curv-i3,2022-23,Belmont - Belmont High,00260505," 1,391", 16, 88, 232, 448, 607, 7.5, 92.5 +14.280000000000001,5,a-curv-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 5, 3, 12, 7, 1, 28.6, 71.4 +14.219999999999999,5,a-curv-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 90, 5, 21, 24, 17, 23, 28.9, 71.1 +13.48,5,a-curv-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 144, 11, 36, 60, 22, 15, 32.6, 67.4 +12.64,5,a-curv-i3,2022-23,Beverly - Beverly High,00300505, 456, 67, 101, 135, 98, 55, 36.8, 63.2 +10.92,5,a-curv-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 599, 127, 145, 163, 102, 62, 45.4, 54.6 +9.74,5,a-curv-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 374, 82, 110, 89, 68, 25, 51.3, 48.7 +14.8,5,a-curv-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 77, 3, 17, 31, 17, 9, 26.0, 74.0 +14.52,5,a-curv-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 62, 3, 14, 24, 16, 5, 27.4, 72.6 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Another Course To College,00350541, 118, 97, 14, 3, 4, 0, 94.1, 5.9 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Boston Arts Academy,00350546, 34, 28, 4, 2, 0, 0, 94.1, 5.9 +0.0,1,a-curv-i3,2022-23,Boston - Boston Collaborative High School,00350755, 1,"","","","","","","" +3.5,3.5,a-curv-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 120, 59, 40, 21, 0, 0, 82.5, 17.5 +3.34,3.34,a-curv-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 30, 18, 7, 4, 1, 0, 83.3, 16.7 +10.459999999999999,5,a-curv-i3,2022-23,Boston - Boston Latin Academy,00350545," 1,107", 198, 330, 332, 160, 87, 47.7, 52.3 +16.84,5,a-curv-i3,2022-23,Boston - Boston Latin School,00350560," 2,341", 111, 259, 585, 709, 677, 15.8, 84.2 +5.42,5,a-curv-i3,2022-23,Boston - Brighton High School,00350505, 70, 40, 11, 5, 3, 11, 72.9, 27.1 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Burke High School,00350525, 68, 59, 5, 4, 0, 0, 94.1, 5.9 +2.8,2.8,a-curv-i3,2022-23,Boston - Charlestown High School,00350515, 93, 64, 16, 12, 1, 0, 86.0, 14.0 +2.98,2.98,a-curv-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 47, 28, 12, 6, 0, 1, 85.1, 14.9 +0.0,1,a-curv-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 36, 26, 10, 0, 0, 0, 100.0, .0 +3.18,3.18,a-curv-i3,2022-23,Boston - East Boston High School,00350530, 88, 56, 18, 5, 4, 5, 84.1, 15.9 +1.7,1.7,a-curv-i3,2022-23,Boston - English High School,00350535, 82, 58, 17, 4, 2, 1, 91.5, 8.5 +3.8200000000000003,3.82,a-curv-i3,2022-23,Boston - Excel High School,00350522, 94, 48, 28, 12, 5, 1, 80.9, 19.1 +10.28,5,a-curv-i3,2022-23,Boston - Fenway High School,00350540, 35, 11, 6, 11, 5, 2, 48.6, 51.4 +2.32,2.32,a-curv-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 86, 49, 27, 6, 3, 1, 88.4, 11.6 +0.0,1,a-curv-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"","","","","","","" +2.3,2.3,a-curv-i3,2022-23,Boston - Lyon High School,00350655, 26, 17, 6, 2, 1, 0, 88.5, 11.5 +0.64,1,a-curv-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 31, 15, 15, 1, 0, 0, 96.8, 3.2 +13.34,5,a-curv-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 42, 5, 9, 22, 1, 5, 33.3, 66.7 +2.6,2.6,a-curv-i3,2022-23,Boston - New Mission High School,00350542, 192, 122, 45, 16, 4, 5, 87.0, 13.0 +9.14,5,a-curv-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,288", 279, 421, 351, 162, 75, 54.3, 45.7 +0.0,1,a-curv-i3,2022-23,Boston - Snowden International High School,00350690, 3,"","","","","","","" +6.6,5,a-curv-i3,2022-23,Boston - TechBoston Academy,00350657, 112, 28, 47, 27, 10, 0, 67.0, 33.0 +6.0,5,a-curv-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 223, 91, 65, 42, 18, 7, 70.0, 30.0 +1.98,1.98,a-curv-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 71, 47, 17, 6, 1, 0, 90.1, 9.9 +3.54,3.54,a-curv-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 175, 90, 54, 24, 2, 5, 82.3, 17.7 +7.5,5,a-curv-i3,2022-23,Bourne - Bourne High School,00360505, 128, 47, 33, 24, 17, 7, 62.5, 37.5 +16.7,5,a-curv-i3,2022-23,Braintree - Braintree High,00400505, 771, 25, 102, 192, 235, 217, 16.5, 83.5 +11.4,5,a-curv-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 440, 77, 112, 123, 80, 48, 43.0, 57.0 +13.580000000000002,5,a-curv-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 81, 7, 19, 31, 20, 4, 32.1, 67.9 +5.24,5,a-curv-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 61, 24, 21, 5, 11, 0, 73.8, 26.2 +6.840000000000001,5,a-curv-i3,2022-23,Brockton - Brockton High,00440505, 407, 124, 144, 99, 32, 8, 65.8, 34.2 +5.16,5,a-curv-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 597, 262, 181, 92, 44, 18, 74.2, 25.8 +18.64,5,a-curv-i3,2022-23,Brookline - Brookline High,00460505," 1,109", 9, 66, 225, 316, 493, 6.8, 93.2 +13.12,5,a-curv-i3,2022-23,Burlington - Burlington High,00480505, 462, 70, 89, 106, 111, 86, 34.4, 65.6 +16.1,5,a-curv-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 841, 53, 111, 209, 209, 259, 19.5, 80.5 +13.680000000000001,5,a-curv-i3,2022-23,Canton - Canton High,00500505, 500, 48, 110, 149, 128, 65, 31.6, 68.4 +7.94,5,a-curv-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 58, 3, 32, 18, 5, 0, 60.3, 39.7 +10.0,5,a-curv-i3,2022-23,Carver - Carver Middle/High School,00520405, 130, 30, 35, 32, 26, 7, 50.0, 50.0 +9.68,5,a-curv-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 157, 25, 56, 42, 27, 7, 51.6, 48.4 +14.459999999999999,5,a-curv-i3,2022-23,Chelmsford - Chelmsford High,00560505, 552, 42, 111, 187, 140, 72, 27.7, 72.3 +7.140000000000001,5,a-curv-i3,2022-23,Chelsea - Chelsea High,00570505, 367, 120, 116, 67, 42, 22, 64.3, 35.7 +0.0,1,a-curv-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 2,"","","","","","","" +8.98,5,a-curv-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 225, 46, 78, 55, 32, 14, 55.1, 44.9 +10.5,5,a-curv-i3,2022-23,Chicopee - Chicopee High,00610505, 122, 17, 41, 46, 13, 5, 47.5, 52.5 +2.2199999999999998,2.22,a-curv-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27, 16, 8, 3, 0, 0, 88.9, 11.1 +7.42,5,a-curv-i3,2022-23,Clinton - Clinton Senior High,00640505, 167, 66, 39, 36, 18, 8, 62.9, 37.1 +0.0,1,a-curv-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 61, 59, 2, 0, 0, 0, 100.0, .0 +15.940000000000001,5,a-curv-i3,2022-23,Cohasset - Cohasset High School,00650505, 409, 34, 49, 107, 105, 114, 20.3, 79.7 +8.48,5,a-curv-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33, 6, 13, 8, 4, 2, 57.6, 42.4 +6.959999999999999,5,a-curv-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 69, 23, 22, 13, 6, 5, 65.2, 34.8 +18.1,5,a-curv-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 783, 15, 59, 138, 263, 308, 9.5, 90.5 +10.459999999999999,5,a-curv-i3,2022-23,Danvers - Danvers High,00710505, 486, 90, 142, 119, 99, 36, 47.7, 52.3 +13.559999999999999,5,a-curv-i3,2022-23,Dartmouth - Dartmouth High,00720505, 550, 65, 112, 159, 140, 74, 32.2, 67.8 +12.72,5,a-curv-i3,2022-23,Dedham - Dedham High,00730505, 382, 63, 76, 109, 78, 56, 36.4, 63.6 +10.6,5,a-curv-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 315, 55, 93, 74, 70, 23, 47.0, 53.0 +13.5,5,a-curv-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 197, 15, 49, 58, 49, 26, 32.5, 67.5 +11.84,5,a-curv-i3,2022-23,Douglas - Douglas High School,00770505, 157, 17, 47, 54, 30, 9, 40.8, 59.2 +18.98,5,a-curv-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 534, 1, 26, 105, 183, 219, 5.1, 94.9 +10.559999999999999,5,a-curv-i3,2022-23,Dracut - Dracut Senior High,00790505, 265, 42, 83, 73, 51, 16, 47.2, 52.8 +12.120000000000001,5,a-curv-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 325, 66, 62, 79, 72, 46, 39.4, 60.6 +13.52,5,a-curv-i3,2022-23,Duxbury - Duxbury High,00820505, 749, 98, 145, 222, 167, 117, 32.4, 67.6 +11.559999999999999,5,a-curv-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 268, 40, 73, 90, 48, 17, 42.2, 57.8 +13.02,5,a-curv-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 335, 40, 77, 92, 76, 50, 34.9, 65.1 +12.459999999999999,5,a-curv-i3,2022-23,Easthampton - Easthampton High,00860505, 167, 25, 38, 64, 21, 19, 37.7, 62.3 +15.52,5,a-curv-i3,2022-23,Easton - Oliver Ames High,00880505, 575, 27, 102, 161, 171, 114, 22.4, 77.6 +2.18,2.18,a-curv-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 101, 47, 43, 8, 2, 1, 89.1, 10.9 +13.52,5,a-curv-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 148, 17, 31, 43, 36, 21, 32.4, 67.6 +8.58,5,a-curv-i3,2022-23,Everett - Everett High,00930505, 476, 136, 136, 133, 43, 28, 57.1, 42.9 +6.7,5,a-curv-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 768, 321, 190, 156, 72, 29, 66.5, 33.5 +12.440000000000001,5,a-curv-i3,2022-23,Fairhaven - Fairhaven High,00940505, 275, 35, 69, 87, 54, 30, 37.8, 62.2 +8.8,5,a-curv-i3,2022-23,Fall River - B M C Durfee High,00950505, 614, 148, 196, 188, 54, 28, 56.0, 44.0 +14.36,5,a-curv-i3,2022-23,Falmouth - Falmouth High,00960505, 372, 32, 73, 100, 95, 72, 28.2, 71.8 +6.540000000000001,5,a-curv-i3,2022-23,Fitchburg - Fitchburg High,00970505, 520, 203, 147, 101, 38, 31, 67.3, 32.7 +0.0,1,a-curv-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 3,"","","","","","","" +14.12,5,a-curv-i3,2022-23,Foxborough - Foxborough High,00990505, 480, 35, 106, 148, 123, 68, 29.4, 70.6 +10.040000000000001,5,a-curv-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 255, 58, 69, 76, 34, 18, 49.8, 50.2 +15.52,5,a-curv-i3,2022-23,Framingham - Framingham High School,01000515, 924, 69, 138, 233, 272, 212, 22.4, 77.6 +18.0,5,a-curv-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 20, 0, 2, 8, 6, 4, 10.0, 90.0 +14.959999999999999,5,a-curv-i3,2022-23,Franklin - Franklin High,01010505," 1,157", 90, 201, 345, 297, 224, 25.2, 74.8 +5.88,5,a-curv-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51, 15, 21, 12, 3, 0, 70.6, 29.4 +16.0,5,a-curv-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 365, 15, 58, 116, 116, 60, 20.0, 80.0 +16.56,5,a-curv-i3,2022-23,Frontier - Frontier Regional,06700505, 157, 1, 26, 47, 38, 45, 17.2, 82.8 +8.36,5,a-curv-i3,2022-23,Gardner - Gardner High,01030505, 67, 17, 22, 17, 6, 5, 58.2, 41.8 +11.0,5,a-curv-i3,2022-23,Gateway - Gateway Regional High,06720505, 40, 6, 12, 11, 8, 3, 45.0, 55.0 +17.18,5,a-curv-i3,2022-23,Georgetown - Georgetown High School,01050505, 99, 3, 11, 21, 39, 25, 14.1, 85.9 +11.42,5,a-curv-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 21, 2, 7, 1, 8, 3, 42.9, 57.1 +0.0,1,a-curv-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 1,"","","","","","","" +10.559999999999999,5,a-curv-i3,2022-23,Gloucester - Gloucester High,01070505, 246, 58, 58, 63, 40, 27, 47.2, 52.8 +15.440000000000001,5,a-curv-i3,2022-23,Grafton - Grafton High School,01100505, 337, 26, 51, 90, 122, 48, 22.8, 77.2 +8.8,5,a-curv-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 50, 9, 19, 12, 8, 2, 56.0, 44.0 +14.540000000000001,5,a-curv-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 11, 2, 1, 2, 3, 3, 27.3, 72.7 +6.659999999999999,5,a-curv-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 114, 32, 44, 29, 7, 2, 66.7, 33.3 +7.359999999999999,5,a-curv-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 223, 62, 79, 56, 21, 5, 63.2, 36.8 +7.12,5,a-curv-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 104, 35, 32, 20, 17, 0, 64.4, 35.6 +11.879999999999999,5,a-curv-i3,2022-23,Greenfield - Greenfield High,01140505, 96, 14, 25, 35, 15, 7, 40.6, 59.4 +14.86,5,a-curv-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 335, 20, 66, 87, 84, 78, 25.7, 74.3 +11.82,5,a-curv-i3,2022-23,Hadley - Hopkins Academy,01170505, 44, 6, 12, 12, 9, 5, 40.9, 59.1 +16.740000000000002,5,a-curv-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 331, 17, 37, 107, 98, 72, 16.3, 83.7 +10.84,5,a-curv-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 192, 44, 44, 46, 37, 21, 45.8, 54.2 +0.0,1,a-curv-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 4,"","","","","","","" +15.1,5,a-curv-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 298, 24, 49, 85, 86, 54, 24.5, 75.5 +15.040000000000001,5,a-curv-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 157, 7, 32, 46, 49, 23, 24.8, 75.2 +15.38,5,a-curv-i3,2022-23,Hanover - Hanover High,01220505, 428, 26, 73, 134, 139, 56, 23.1, 76.9 +18.82,5,a-curv-i3,2022-23,Harvard - Bromfield,01250505, 237, 5, 9, 41, 77, 105, 5.9, 94.1 +7.779999999999999,5,a-curv-i3,2022-23,Hatfield - Smith Academy,01270505, 18, 2, 9, 6, 1, 0, 61.1, 38.9 +11.18,5,a-curv-i3,2022-23,Haverhill - Haverhill High,01280505, 406, 60, 119, 104, 81, 42, 44.1, 55.9 +18.78,5,a-curv-i3,2022-23,Hingham - Hingham High,01310505, 588, 7, 29, 144, 184, 224, 6.1, 93.9 +14.6,5,a-curv-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 37, 4, 6, 9, 14, 4, 27.0, 73.0 +14.940000000000001,5,a-curv-i3,2022-23,Holliston - Holliston High,01360505, 423, 36, 71, 112, 118, 86, 25.3, 74.7 +5.62,5,a-curv-i3,2022-23,Holyoke - Holyoke High,01370505, 196, 72, 69, 38, 14, 3, 71.9, 28.1 +5.46,5,a-curv-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 121, 50, 38, 25, 8, 0, 72.7, 27.3 +15.62,5,a-curv-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 192, 18, 24, 71, 53, 26, 21.9, 78.1 +18.080000000000002,5,a-curv-i3,2022-23,Hopkinton - Hopkinton High,01390505," 1,236", 26, 93, 227, 387, 503, 9.6, 90.4 +10.18,5,a-curv-i3,2022-23,Hudson - Hudson High,01410505, 334, 67, 97, 102, 39, 29, 49.1, 50.9 +14.64,5,a-curv-i3,2022-23,Hull - Hull High,01420505, 138, 11, 26, 36, 38, 27, 26.8, 73.2 +2.2199999999999998,2.22,a-curv-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 18, 10, 6, 1, 1, 0, 88.9, 11.1 +18.14,5,a-curv-i3,2022-23,Ipswich - Ipswich High,01440505, 302, 4, 24, 83, 111, 80, 9.3, 90.7 +8.86,5,a-curv-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 246, 66, 71, 66, 32, 11, 55.7, 44.3 +13.2,5,a-curv-i3,2022-23,King Philip - King Philip Regional High,06900505, 987, 145, 191, 260, 226, 165, 34.0, 66.0 +5.32,5,a-curv-i3,2022-23,Lawrence - Lawrence High School,01490515, 925, 540, 139, 121, 74, 51, 73.4, 26.6 +12.26,5,a-curv-i3,2022-23,Lee - Lee Middle/High School,01500505, 93, 14, 22, 40, 13, 4, 38.7, 61.3 +15.0,5,a-curv-i3,2022-23,Leicester - Leicester High,01510505, 100, 6, 19, 42, 20, 13, 25.0, 75.0 +8.74,5,a-curv-i3,2022-23,Lenox - Lenox Memorial High,01520505, 119, 34, 33, 23, 15, 14, 56.3, 43.7 +11.7,5,a-curv-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 41, 3, 14, 8, 13, 3, 41.5, 58.5 +12.379999999999999,5,a-curv-i3,2022-23,Leominster - Leominster High School,01530505, 226, 34, 52, 61, 62, 17, 38.1, 61.9 +18.28,5,a-curv-i3,2022-23,Lexington - Lexington High,01550505," 2,555", 52, 169, 402, 744," 1,188", 8.6, 91.4 +4.4799999999999995,4.48,a-curv-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 76, 49, 10, 10, 6, 1, 77.6, 22.4 +18.98,5,a-curv-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 530, 11, 16, 89, 161, 253, 5.1, 94.9 +15.440000000000001,5,a-curv-i3,2022-23,Littleton - Littleton High School,01580505, 237, 22, 32, 56, 72, 55, 22.8, 77.2 +18.16,5,a-curv-i3,2022-23,Longmeadow - Longmeadow High,01590505, 444, 6, 35, 121, 144, 138, 9.2, 90.8 +9.2,5,a-curv-i3,2022-23,Lowell - Lowell High,01600505, 389, 99, 111, 95, 56, 28, 54.0, 46.0 +13.080000000000002,5,a-curv-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 315, 36, 73, 91, 74, 41, 34.6, 65.4 +15.16,5,a-curv-i3,2022-23,Lunenburg - Lunenburg High,01620505, 165, 8, 32, 63, 43, 19, 24.2, 75.8 +7.06,5,a-curv-i3,2022-23,Lynn - Classical High,01630505, 371, 144, 96, 81, 36, 14, 64.7, 35.3 +7.1,5,a-curv-i3,2022-23,Lynn - Lynn English High,01630510, 287, 117, 68, 58, 29, 15, 64.5, 35.5 +7.62,5,a-curv-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 21, 7, 6, 5, 3, 0, 61.9, 38.1 +14.459999999999999,5,a-curv-i3,2022-23,Lynnfield - Lynnfield High,01640505, 488, 52, 83, 148, 125, 80, 27.7, 72.3 +17.46,5,a-curv-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 142, 7, 11, 24, 43, 57, 12.7, 87.3 +12.02,5,a-curv-i3,2022-23,Malden - Malden High,01650505, 594, 101, 136, 159, 113, 85, 39.9, 60.1 +16.44,5,a-curv-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 349, 13, 49, 106, 105, 76, 17.8, 82.2 +15.559999999999999,5,a-curv-i3,2022-23,Mansfield - Mansfield High,01670505, 553, 33, 90, 151, 176, 103, 22.2, 77.8 +13.88,5,a-curv-i3,2022-23,Marblehead - Marblehead High,01680505, 677, 72, 135, 191, 177, 102, 30.6, 69.4 +10.02,5,a-curv-i3,2022-23,Marlborough - Marlborough High,01700505, 359, 82, 97, 93, 51, 36, 49.9, 50.1 +14.74,5,a-curv-i3,2022-23,Marshfield - Marshfield High,01710505, 520, 36, 101, 185, 119, 79, 26.3, 73.7 +12.32,5,a-curv-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 323, 53, 71, 84, 81, 34, 38.4, 61.6 +17.48,5,a-curv-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 437, 14, 41, 117, 150, 115, 12.6, 87.4 +10.66,5,a-curv-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 246, 57, 58, 75, 46, 10, 46.7, 53.3 +4.8,4.8,a-curv-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 304, 157, 74, 48, 20, 5, 76.0, 24.0 +15.180000000000001,5,a-curv-i3,2022-23,Maynard - Maynard High,01740505, 158, 18, 20, 44, 43, 33, 24.1, 75.9 +15.280000000000001,5,a-curv-i3,2022-23,Medfield - Medfield Senior High,01750505, 538, 46, 81, 155, 148, 108, 23.6, 76.4 +15.36,5,a-curv-i3,2022-23,Medford - Medford High,01760505, 332, 34, 43, 98, 89, 68, 23.2, 76.8 +13.14,5,a-curv-i3,2022-23,Medway - Medway High,01770505, 568, 66, 129, 147, 118, 108, 34.3, 65.7 +12.4,5,a-curv-i3,2022-23,Melrose - Melrose High,01780505, 747, 94, 190, 190, 180, 93, 38.0, 62.0 +15.280000000000001,5,a-curv-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 368, 24, 63, 91, 103, 87, 23.6, 76.4 +11.959999999999999,5,a-curv-i3,2022-23,Methuen - Methuen High,01810505, 570, 99, 130, 193, 111, 37, 40.2, 59.8 +11.14,5,a-curv-i3,2022-23,Middleborough - Middleborough High,01820505, 253, 49, 63, 69, 49, 23, 44.3, 55.7 +10.14,5,a-curv-i3,2022-23,Milford - Milford High,01850505, 458, 101, 125, 129, 75, 28, 49.3, 50.7 +12.620000000000001,5,a-curv-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 130, 18, 30, 46, 30, 6, 36.9, 63.1 +12.98,5,a-curv-i3,2022-23,Millis - Millis High School,01870505, 194, 37, 31, 47, 43, 36, 35.1, 64.9 +16.68,5,a-curv-i3,2022-23,Milton - Milton High,01890505, 819, 51, 85, 219, 294, 170, 16.6, 83.4 +9.26,5,a-curv-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 67, 18, 18, 18, 6, 7, 53.7, 46.3 +13.959999999999999,5,a-curv-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 53, 0, 16, 18, 15, 4, 30.2, 69.8 +10.66,5,a-curv-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 317, 53, 95, 97, 52, 20, 46.7, 53.3 +8.7,5,a-curv-i3,2022-23,Monson - Monson High School,01910505, 23, 7, 6, 6, 3, 1, 56.5, 43.5 +11.32,5,a-curv-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 244, 34, 72, 80, 40, 18, 43.4, 56.6 +13.8,5,a-curv-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 352, 43, 66, 108, 84, 51, 31.0, 69.0 +11.959999999999999,5,a-curv-i3,2022-23,Nantucket - Nantucket High,01970505, 164, 27, 39, 48, 30, 20, 40.2, 59.8 +6.94,5,a-curv-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 101, 27, 39, 25, 8, 2, 65.3, 34.7 +15.52,5,a-curv-i3,2022-23,Nashoba - Nashoba Regional,07250505, 460, 34, 69, 112, 150, 95, 22.4, 77.6 +4.16,4.16,a-curv-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 77, 36, 25, 12, 3, 1, 79.2, 20.8 +17.68,5,a-curv-i3,2022-23,Natick - Natick High,01980505," 1,053", 29, 93, 227, 328, 376, 11.6, 88.4 +14.780000000000001,5,a-curv-i3,2022-23,Nauset - Nauset Regional High,06600505, 501, 41, 90, 154, 134, 82, 26.1, 73.9 +17.96,5,a-curv-i3,2022-23,Needham - Needham High,01990505, 958, 20, 78, 194, 299, 367, 10.2, 89.8 +3.78,3.78,a-curv-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 90, 51, 22, 16, 1, 0, 81.1, 18.9 +11.24,5,a-curv-i3,2022-23,New Bedford - New Bedford High,02010505, 553, 95, 147, 172, 92, 47, 43.8, 56.2 +16.34,5,a-curv-i3,2022-23,Newburyport - Newburyport High,02040505, 416, 17, 59, 124, 140, 76, 18.3, 81.7 +16.44,5,a-curv-i3,2022-23,Newton - Newton North High,02070505," 1,237", 55, 165, 275, 369, 373, 17.8, 82.2 +17.32,5,a-curv-i3,2022-23,Newton - Newton South High,02070510," 1,118", 35, 115, 234, 347, 387, 13.4, 86.6 +9.1,5,a-curv-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 11, 0, 6, 2, 3, 0, 54.5, 45.5 +4.46,4.46,a-curv-i3,2022-23,North Adams - Drury High,02090505, 179, 103, 36, 34, 5, 1, 77.7, 22.3 +14.8,5,a-curv-i3,2022-23,North Andover - North Andover High,02110505, 543, 40, 101, 159, 146, 97, 26.0, 74.0 +14.2,5,a-curv-i3,2022-23,North Attleborough - North Attleboro High,02120505, 573, 44, 122, 162, 161, 84, 29.0, 71.0 +3.44,3.44,a-curv-i3,2022-23,North Brookfield - North Brookfield High,02150505, 29, 8, 16, 4, 1, 0, 82.8, 17.2 +13.14,5,a-curv-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 204, 18, 52, 69, 41, 24, 34.3, 65.7 +16.06,5,a-curv-i3,2022-23,North Reading - North Reading High,02170505, 319, 15, 48, 65, 117, 74, 19.7, 80.3 +14.34,5,a-curv-i3,2022-23,Northampton - Northampton High,02100505, 484, 31, 106, 147, 131, 69, 28.3, 71.7 +2.3,2.3,a-curv-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 61, 41, 13, 5, 2, 0, 88.5, 11.5 +16.94,5,a-curv-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 962, 56, 91, 224, 284, 307, 15.3, 84.7 +12.78,5,a-curv-i3,2022-23,Northbridge - Northbridge High,02140505, 158, 27, 30, 46, 31, 24, 36.1, 63.9 +3.38,3.38,a-curv-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 136, 82, 31, 18, 3, 2, 83.1, 16.9 +4.4799999999999995,4.48,a-curv-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 49, 23, 15, 3, 8, 0, 77.6, 22.4 +14.2,5,a-curv-i3,2022-23,Norton - Norton High,02180505, 338, 27, 71, 115, 85, 40, 29.0, 71.0 +15.98,5,a-curv-i3,2022-23,Norwell - Norwell High,02190505, 433, 20, 67, 131, 125, 90, 20.1, 79.9 +11.08,5,a-curv-i3,2022-23,Norwood - Norwood High,02200505, 527, 87, 148, 172, 85, 35, 44.6, 55.4 +9.9,5,a-curv-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 97, 11, 38, 28, 17, 3, 50.5, 49.5 +13.080000000000002,5,a-curv-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 332, 53, 62, 104, 72, 41, 34.6, 65.4 +7.7,5,a-curv-i3,2022-23,Oxford - Oxford High,02260505, 78, 16, 32, 14, 9, 7, 61.5, 38.5 +9.120000000000001,5,a-curv-i3,2022-23,Palmer - Palmer High,02270505, 103, 26, 30, 20, 25, 2, 54.4, 45.6 +3.5200000000000005,3.52,a-curv-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 136, 68, 44, 19, 5, 0, 82.4, 17.6 +0.0,1,a-curv-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 10, 9, 1, 0, 0, 0, 100.0, .0 +13.02,5,a-curv-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 564, 56, 141, 178, 137, 52, 34.9, 65.1 +13.040000000000001,5,a-curv-i3,2022-23,Pembroke - Pembroke High School,02310505, 428, 53, 96, 130, 81, 68, 34.8, 65.2 +15.02,5,a-curv-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 297, 30, 44, 87, 97, 39, 24.9, 75.1 +12.040000000000001,5,a-curv-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 123, 19, 30, 36, 26, 12, 39.8, 60.2 +14.9,5,a-curv-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 161, 16, 25, 56, 44, 20, 25.5, 74.5 +7.92,5,a-curv-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 48, 16, 13, 8, 7, 4, 60.4, 39.6 +0.0,1,a-curv-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8,"","","","","","","" +10.18,5,a-curv-i3,2022-23,Pittsfield - Pittsfield High,02360505, 344, 72, 97, 99, 51, 25, 49.1, 50.9 +6.840000000000001,5,a-curv-i3,2022-23,Pittsfield - Taconic High,02360510, 184, 62, 59, 42, 16, 5, 65.8, 34.2 +14.059999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth North High,02390505, 367, 30, 79, 110, 93, 55, 29.7, 70.3 +12.379999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth South High,02390515, 428, 64, 99, 124, 88, 53, 38.1, 61.9 +5.779999999999999,5,a-curv-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 142, 71, 30, 23, 14, 4, 71.1, 28.9 +12.14,5,a-curv-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 122, 18, 30, 39, 20, 15, 39.3, 60.7 +13.34,5,a-curv-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 207, 22, 47, 68, 44, 26, 33.3, 66.7 +14.8,5,a-curv-i3,2022-23,Quincy - North Quincy High,02430510, 739, 91, 101, 213, 200, 134, 26.0, 74.0 +11.68,5,a-curv-i3,2022-23,Quincy - Quincy High,02430505, 461, 76, 116, 107, 104, 58, 41.6, 58.4 +11.64,5,a-curv-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 55, 12, 11, 15, 12, 5, 41.8, 58.2 +5.96,5,a-curv-i3,2022-23,Randolph - Randolph High,02440505, 168, 79, 39, 36, 9, 5, 70.2, 29.8 +12.459999999999999,5,a-curv-i3,2022-23,Reading - Reading Memorial High,02460505, 616, 98, 134, 157, 129, 98, 37.7, 62.3 +8.8,5,a-curv-i3,2022-23,Revere - Revere High,02480505, 639, 189, 169, 129, 86, 66, 56.0, 44.0 +8.24,5,a-curv-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 34, 8, 12, 9, 4, 1, 58.8, 41.2 +9.14,5,a-curv-i3,2022-23,Rockland - Rockland Senior High,02510505, 232, 41, 85, 69, 24, 13, 54.3, 45.7 +9.68,5,a-curv-i3,2022-23,Rockport - Rockport High,02520510, 159, 25, 57, 46, 23, 8, 51.6, 48.4 +3.8600000000000003,3.86,a-curv-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 876, 443, 264, 140, 27, 2, 80.7, 19.3 +9.28,5,a-curv-i3,2022-23,Salem - Salem High,02580505, 207, 68, 43, 44, 39, 13, 53.6, 46.4 +7.2,5,a-curv-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 333, 120, 93, 66, 42, 12, 64.0, 36.0 +14.16,5,a-curv-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 367, 40, 67, 106, 102, 52, 29.2, 70.8 +8.66,5,a-curv-i3,2022-23,Saugus - Saugus High,02620505, 270, 86, 67, 59, 41, 17, 56.7, 43.3 +13.680000000000001,5,a-curv-i3,2022-23,Scituate - Scituate High School,02640505, 585, 61, 124, 182, 145, 73, 31.6, 68.4 +9.72,5,a-curv-i3,2022-23,Seekonk - Seekonk High,02650505, 249, 64, 64, 58, 39, 24, 51.4, 48.6 +18.2,5,a-curv-i3,2022-23,Sharon - Sharon High,02660505, 800, 20, 52, 163, 228, 337, 9.0, 91.0 +16.8,5,a-curv-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 909, 35, 110, 198, 285, 281, 16.0, 84.0 +13.419999999999998,5,a-curv-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 431, 46, 96, 130, 99, 60, 32.9, 67.1 +8.879999999999999,5,a-curv-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 18, 5, 5, 3, 3, 2, 55.6, 44.4 +15.059999999999999,5,a-curv-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 465, 39, 76, 139, 149, 62, 24.7, 75.3 +12.059999999999999,5,a-curv-i3,2022-23,Somerville - Somerville High,02740505, 605, 106, 134, 136, 123, 106, 39.7, 60.3 +16.2,5,a-curv-i3,2022-23,South Hadley - South Hadley High,02780505, 158, 8, 22, 41, 52, 35, 19.0, 81.0 +9.379999999999999,5,a-curv-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 113, 28, 32, 31, 10, 12, 53.1, 46.9 +10.059999999999999,5,a-curv-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 145, 26, 46, 30, 27, 16, 49.7, 50.3 +0.0,1,a-curv-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 8,"","","","","","","" +5.42,5,a-curv-i3,2022-23,Southbridge - Southbridge High School,02770515, 59, 22, 21, 10, 3, 3, 72.9, 27.1 +9.92,5,a-curv-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 268, 63, 72, 106, 20, 7, 50.4, 49.6 +15.34,5,a-curv-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 30, 3, 4, 12, 7, 4, 23.3, 76.7 +9.28,5,a-curv-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 183, 46, 52, 44, 32, 9, 53.6, 46.4 +11.0,5,a-curv-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 120, 19, 35, 23, 28, 15, 45.0, 55.0 +10.08,5,a-curv-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 119, 33, 26, 28, 16, 16, 49.6, 50.4 +3.84,3.84,a-curv-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 26, 12, 9, 3, 2, 0, 80.8, 19.2 +6.44,5,a-curv-i3,2022-23,Springfield - High School Of Commerce,02810510, 171, 66, 50, 43, 9, 3, 67.8, 32.2 +3.9,3.9,a-curv-i3,2022-23,Springfield - John J Duggan Academy,02810320, 87, 48, 22, 15, 2, 0, 80.5, 19.5 +4.0,4.0,a-curv-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 115, 52, 40, 16, 7, 0, 80.0, 20.0 +7.62,5,a-curv-i3,2022-23,Springfield - Springfield Central High,02810500, 412, 144, 111, 103, 42, 12, 61.9, 38.1 +2.48,2.48,a-curv-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 145, 89, 38, 16, 2, 0, 87.6, 12.4 +4.0,4.0,a-curv-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 130, 78, 26, 15, 8, 3, 80.0, 20.0 +4.279999999999999,4.28,a-curv-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 131, 72, 31, 17, 10, 1, 78.6, 21.4 +10.8,5,a-curv-i3,2022-23,Stoneham - Stoneham High,02840505, 337, 59, 96, 100, 59, 23, 46.0, 54.0 +10.72,5,a-curv-i3,2022-23,Stoughton - Stoughton High,02850505, 321, 75, 74, 77, 56, 39, 46.4, 53.6 +10.459999999999999,5,a-curv-i3,2022-23,Sutton - Sutton High School,02900510, 279, 50, 83, 74, 50, 22, 47.7, 52.3 +13.919999999999998,5,a-curv-i3,2022-23,Swampscott - Swampscott High,02910505, 438, 45, 88, 125, 114, 66, 30.4, 69.6 +10.98,5,a-curv-i3,2022-23,Swansea - Joseph Case High,02920505, 162, 30, 43, 48, 31, 10, 45.1, 54.9 +12.059999999999999,5,a-curv-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 68, 13, 14, 20, 10, 11, 39.7, 60.3 +16.5,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 246, 6, 37, 83, 69, 51, 17.5, 82.5 +12.0,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 15, 0, 6, 4, 4, 1, 40.0, 60.0 +9.2,5,a-curv-i3,2022-23,Taunton - Taunton High,02930505, 641, 178, 168, 175, 90, 30, 54.0, 46.0 +13.36,5,a-curv-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 416, 45, 93, 122, 88, 68, 33.2, 66.8 +7.6,5,a-curv-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 142, 42, 46, 31, 17, 6, 62.0, 38.0 +12.9,5,a-curv-i3,2022-23,Triton - Triton Regional High School,07730505, 203, 21, 51, 55, 48, 28, 35.5, 64.5 +14.48,5,a-curv-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 105, 6, 23, 31, 24, 21, 27.6, 72.4 +14.66,5,a-curv-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 15, 2, 2, 10, 1, 0, 26.7, 73.3 +11.2,5,a-curv-i3,2022-23,Uxbridge - Uxbridge High,03040505, 116, 20, 31, 37, 18, 10, 44.0, 56.0 +16.64,5,a-curv-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 786, 22, 110, 192, 237, 225, 16.8, 83.2 +10.36,5,a-curv-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 409, 116, 81, 89, 79, 44, 48.2, 51.8 +17.36,5,a-curv-i3,2022-23,Walpole - Walpole High,03070505, 425, 11, 45, 102, 152, 115, 13.2, 86.8 +10.74,5,a-curv-i3,2022-23,Waltham - Waltham Sr High,03080505, 620, 118, 169, 151, 108, 74, 46.3, 53.7 +11.48,5,a-curv-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 47, 7, 13, 17, 9, 1, 42.6, 57.4 +4.1,4.1,a-curv-i3,2022-23,Wareham - Wareham Senior High,03100505, 73, 37, 21, 9, 6, 0, 79.5, 20.5 +14.74,5,a-curv-i3,2022-23,Watertown - Watertown High,03140505, 281, 32, 42, 79, 76, 52, 26.3, 73.7 +18.36,5,a-curv-i3,2022-23,Wayland - Wayland High School,03150505, 561, 11, 35, 111, 183, 221, 8.2, 91.8 +9.42,5,a-curv-i3,2022-23,Webster - Bartlett High School,03160505, 68, 18, 18, 15, 13, 4, 52.9, 47.1 +18.16,5,a-curv-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 925, 16, 69, 151, 322, 367, 9.2, 90.8 +15.559999999999999,5,a-curv-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 72, 5, 11, 27, 17, 12, 22.2, 77.8 +8.66,5,a-curv-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 203, 29, 86, 60, 19, 9, 56.7, 43.3 +12.42,5,a-curv-i3,2022-23,West Springfield - West Springfield High,03320505, 480, 73, 109, 167, 88, 43, 37.9, 62.1 +17.580000000000002,5,a-curv-i3,2022-23,Westborough - Westborough High,03210505, 628, 10, 66, 118, 224, 210, 12.1, 87.9 +8.98,5,a-curv-i3,2022-23,Westfield - Westfield High,03250505, 216, 56, 63, 50, 33, 14, 55.1, 44.9 +18.16,5,a-curv-i3,2022-23,Westford - Westford Academy,03260505," 1,063", 21, 77, 192, 359, 414, 9.2, 90.8 +17.32,5,a-curv-i3,2022-23,Weston - Weston High,03300505, 610, 21, 61, 137, 162, 229, 13.4, 86.6 +10.48,5,a-curv-i3,2022-23,Westport - Westport Middle-High School,03310515, 82, 20, 19, 23, 13, 7, 47.6, 52.4 +17.580000000000002,5,a-curv-i3,2022-23,Westwood - Westwood High,03350505, 841, 17, 85, 190, 255, 294, 12.1, 87.9 +14.66,5,a-curv-i3,2022-23,Weymouth - Weymouth High School,03360505, 555, 54, 94, 169, 164, 74, 26.7, 73.3 +12.1,5,a-curv-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 458, 61, 120, 127, 106, 44, 39.5, 60.5 +7.92,5,a-curv-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 48, 14, 15, 15, 3, 1, 60.4, 39.6 +13.64,5,a-curv-i3,2022-23,Wilmington - Wilmington High,03420505, 403, 45, 83, 108, 94, 73, 31.8, 68.2 +10.18,5,a-curv-i3,2022-23,Winchendon - Murdock High School,03430515, 53, 10, 16, 10, 14, 3, 49.1, 50.9 +17.54,5,a-curv-i3,2022-23,Winchester - Winchester High School,03440505," 1,165", 28, 115, 289, 365, 368, 12.3, 87.7 +5.4,5,a-curv-i3,2022-23,Winthrop - Winthrop High School,03460505, 319, 157, 76, 54, 29, 3, 73.0, 27.0 +11.379999999999999,5,a-curv-i3,2022-23,Woburn - Woburn High,03470505, 397, 103, 68, 108, 79, 39, 43.1, 56.9 +7.08,5,a-curv-i3,2022-23,Worcester - Burncoat Senior High,03480503, 396, 160, 96, 70, 49, 21, 64.6, 35.4 +3.4200000000000004,3.42,a-curv-i3,2022-23,Worcester - Claremont Academy,03480350, 117, 95, 2, 10, 6, 4, 82.9, 17.1 +8.82,5,a-curv-i3,2022-23,Worcester - Doherty Memorial High,03480512, 513, 176, 111, 118, 71, 37, 55.9, 44.1 +3.3,3.3,a-curv-i3,2022-23,Worcester - North High,03480515, 249, 141, 67, 26, 12, 3, 83.5, 16.5 +10.459999999999999,5,a-curv-i3,2022-23,Worcester - South High Community,03480520, 618, 153, 142, 156, 101, 66, 47.7, 52.3 +5.84,5,a-curv-i3,2022-23,Worcester - University Pk Campus School,03480285, 72, 33, 18, 16, 4, 1, 70.8, 29.2 +5.92,5,a-curv-i3,2022-23,Worcester - Worcester Technical High,03480605, 318, 102, 122, 50, 34, 10, 70.4, 29.6 12.88,5,a-curv-i3,2021-22,Abington - Abington High,00010505, 149, 15, 38, 50, 33, 13, 35.6, 64.4 1.48,1.48,a-curv-i3,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 135, 110, 15, 9, 1, 0, 92.6, 7.4 18.740000000000002,5,a-curv-i3,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,134", 19, 52, 145, 337, 581, 6.3, 93.7 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_masscore.csv b/data/admin_data/dese/3B_1_masscore.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/3B_1_masscore.csv rename to data/admin_data/dese/3B_1_masscore.csv index a517d3c..6f7fc7f 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/3B_1_masscore.csv +++ b/data/admin_data/dese/3B_1_masscore.csv @@ -1,4 +1,396 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Graduated,# Completed MassCore,% Completed MassCore +4.444444444444445,4.44,a-curv-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 88, 88, 100.0 +1.9066666666666665,1.91,a-curv-i1,2022-23,Abington - Abington High,00010505, 133, 57, 42.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 52, 52, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 445, 395, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 138, 138, 100.0 +3.897777777777778,3.9,a-curv-i1,2022-23,Agawam - Agawam High,00050505, 235, 206, 87.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Amesbury - Amesbury High,00070505, 104, 104, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 202, 202, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Andover - Andover High,00090505, 420, 420, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 43, 43, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Arlington - Arlington High,00100505, 368, 368, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 163, 163, 100.0 +3.6711111111111108,3.67,a-curv-i1,2022-23,Ashland - Ashland High,00140505, 178, 147, 82.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 256, 256, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Athol-Royalston - Athol High,06150505, 73, 73, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 77, 77, 100.0 +2.6,2.6,a-curv-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 41, 24, 58.5 +3.982222222222222,3.98,a-curv-i1,2022-23,Attleboro - Attleboro High,00160505, 383, 343, 89.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 12, 12, 100.0 +4.004444444444444,4.0,a-curv-i1,2022-23,Auburn - Auburn Senior High,00170505, 192, 173, 90.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Avon - Avon Middle High School,00180510, 45, 45, 100.0 +4.342222222222222,4.34,a-curv-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 86, 84, 97.7 +4.431111111111111,4.43,a-curv-i1,2022-23,Barnstable - Barnstable High,00200505, 328, 327, 99.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 47, 47, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bedford - Bedford High,00230505, 199, 199, 100.0 +3.7644444444444445,3.76,a-curv-i1,2022-23,Belchertown - Belchertown High,00240505, 170, 144, 84.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Bellingham - Bellingham High School,00250505, 117, 117, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Belmont - Belmont High,00260505, 314, 314, 100.0 +3.493333333333333,3.49,a-curv-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 22, 78.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 109, 109, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 60, 60, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Beverly - Beverly High,00300505, 317, 317, 100.0 +4.102222222222222,4.1,a-curv-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 274, 253, 92.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 294, 294, 100.0 +4.395555555555556,4.4,a-curv-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 95, 94, 98.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 206, 206, 100.0 +2.373333333333333,2.37,a-curv-i1,2022-23,Boston - Another Course To College,00350541, 58, 31, 53.4 +0.21333333333333332,1,a-curv-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 105, 5, 4.8 +2.8577777777777778,2.86,a-curv-i1,2022-23,Boston - Boston Arts Academy,00350546, 98, 63, 64.3 +0.26222222222222225,1,a-curv-i1,2022-23,Boston - Boston Collaborative High School,00350755, 85, 5, 5.9 +1.5066666666666666,1.51,a-curv-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 112, 38, 33.9 +0.05777777777777778,1,a-curv-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 75, 1, 1.3 +2.608888888888889,2.61,a-curv-i1,2022-23,Boston - Boston Latin Academy,00350545, 300, 176, 58.7 +3.2844444444444445,3.28,a-curv-i1,2022-23,Boston - Boston Latin School,00350560, 410, 303, 73.9 +1.6622222222222223,1.66,a-curv-i1,2022-23,Boston - Brighton High School,00350505, 107, 40, 37.4 +0.28444444444444444,1,a-curv-i1,2022-23,Boston - Burke High School,00350525, 78, 5, 6.4 +1.0044444444444445,1.0,a-curv-i1,2022-23,Boston - Charlestown High School,00350515, 137, 31, 22.6 +0.0,1,a-curv-i1,2022-23,Boston - Community Academy,00350518, 18, 0, 0.0 +0.6933333333333334,1,a-curv-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 45, 7, 15.6 +0.3644444444444444,1,a-curv-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 73, 6, 8.2 +2.2533333333333334,2.25,a-curv-i1,2022-23,Boston - East Boston High School,00350530, 229, 116, 50.7 +2.3644444444444446,2.36,a-curv-i1,2022-23,Boston - English High School,00350535, 126, 67, 53.2 +1.7066666666666666,1.71,a-curv-i1,2022-23,Boston - Excel High School,00350522, 86, 33, 38.4 +1.8222222222222222,1.82,a-curv-i1,2022-23,Boston - Fenway High School,00350540, 83, 34, 41.0 +0.1288888888888889,1,a-curv-i1,2022-23,Boston - Greater Egleston High School,00350543, 34, 1, 2.9 +2.7333333333333334,2.73,a-curv-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 65, 40, 61.5 +1.7377777777777779,1.74,a-curv-i1,2022-23,Boston - Lyon High School,00350655, 23, 9, 39.1 +2.8177777777777777,2.82,a-curv-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 183, 116, 63.4 +0.0,1,a-curv-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 65, 0, 0.0 +0.0,1,a-curv-i1,2022-23,Boston - McKinley Schools,00350363, 13, 0, 0.0 +2.1555555555555554,2.16,a-curv-i1,2022-23,Boston - New Mission High School,00350542, 97, 47, 48.5 +4.208888888888889,4.21,a-curv-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 318, 301, 94.7 +3.728888888888889,3.73,a-curv-i1,2022-23,Boston - Quincy Upper School,00350565, 31, 26, 83.9 +1.7866666666666668,1.79,a-curv-i1,2022-23,Boston - Snowden International High School,00350690, 92, 37, 40.2 +1.2844444444444443,1.28,a-curv-i1,2022-23,Boston - TechBoston Academy,00350657, 128, 37, 28.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 76, 76, 100.0 +0.0,1,a-curv-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 49, 0, 0.0 +0.15555555555555556,1,a-curv-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 57, 2, 3.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 69, 69, 100.0 +3.1333333333333333,3.13,a-curv-i1,2022-23,Bourne - Bourne High School,00360505, 88, 62, 70.5 +4.253333333333334,4.25,a-curv-i1,2022-23,Braintree - Braintree High,00400505, 399, 382, 95.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 315, 315, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 102, 102, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 311, 311, 100.0 +0.0,1,a-curv-i1,2022-23,Brockton - Brockton Champion High School,00440515, 25, 0, 0.0 +1.8711111111111112,1.87,a-curv-i1,2022-23,Brockton - Brockton High,00440505, 760, 320, 42.1 +1.2133333333333334,1.21,a-curv-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 11, 3, 27.3 +0.0,1,a-curv-i1,2022-23,Brockton - Edison Academy,00440520, 153, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 98, 98, 100.0 +4.248888888888889,4.25,a-curv-i1,2022-23,Brookline - Brookline High,00460505, 478, 457, 95.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Burlington - Burlington High,00480505, 217, 217, 100.0 +4.355555555555555,4.36,a-curv-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 461, 452, 98.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Canton - Canton High,00500505, 205, 205, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 156, 156, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Carver - Carver Middle/High School,00520405, 88, 88, 100.0 +3.151111111111111,3.15,a-curv-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 110, 78, 70.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelmsford - Chelmsford High,00560505, 309, 309, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea High,00570505, 271, 271, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 33, 33, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 15, 15, 100.0 +1.9466666666666665,1.95,a-curv-i1,2022-23,Chicopee - Chicopee Academy,00610021, 16, 7, 43.8 +1.702222222222222,1.7,a-curv-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 253, 97, 38.3 +1.271111111111111,1.27,a-curv-i1,2022-23,Chicopee - Chicopee High,00610505, 185, 53, 28.6 +4.444444444444445,4.44,a-curv-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 35, 35, 100.0 +4.1288888888888895,4.13,a-curv-i1,2022-23,Clinton - Clinton Senior High,00640505, 112, 104, 92.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 27, 27, 100.0 +4.404444444444445,4.4,a-curv-i1,2022-23,Cohasset - Cohasset High School,00650505, 114, 113, 99.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 27, 27, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 27, 27, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 336, 336, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Danvers - Danvers High,00710505, 190, 190, 100.0 +4.346666666666667,4.35,a-curv-i1,2022-23,Dartmouth - Dartmouth High,00720505, 232, 227, 97.8 +2.688888888888889,2.69,a-curv-i1,2022-23,Dedham - Dedham High,00730505, 172, 104, 60.5 +4.413333333333333,4.41,a-curv-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 148, 147, 99.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 153, 153, 100.0 +4.12,4.12,a-curv-i1,2022-23,Douglas - Douglas High School,00770505, 82, 76, 92.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 149, 149, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Dracut - Dracut Senior High,00790505, 188, 188, 100.0 +3.04,3.04,a-curv-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 212, 145, 68.4 +4.426666666666667,4.43,a-curv-i1,2022-23,Duxbury - Duxbury High,00820505, 226, 225, 99.6 +4.444444444444445,4.44,a-curv-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 158, 158, 100.0 +0.4444444444444444,1,a-curv-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 211, 21, 10.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Easthampton - Easthampton High,00860505, 93, 93, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Easton - Oliver Ames High,00880505, 270, 225, 83.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 83, 83, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 393, 393, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Everett - Everett High,00930505, 436, 436, 100.0 +1.7955555555555556,1.8,a-curv-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 161, 65, 40.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Fairhaven - Fairhaven High,00940505, 163, 163, 100.0 +3.577777777777778,3.58,a-curv-i1,2022-23,Fall River - B M C Durfee High,00950505, 483, 389, 80.5 +0.36,1,a-curv-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 37, 3, 8.1 +3.813333333333333,3.81,a-curv-i1,2022-23,Falmouth - Falmouth High,00960505, 190, 163, 85.8 +4.137777777777777,4.14,a-curv-i1,2022-23,Fitchburg - Fitchburg High,00970505, 261, 243, 93.1 +0.42666666666666664,1,a-curv-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 135, 13, 9.6 +3.791111111111111,3.79,a-curv-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 34, 29, 85.3 +3.013333333333333,3.01,a-curv-i1,2022-23,Foxborough - Foxborough High,00990505, 177, 120, 67.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 86, 86, 100.0 +3.7688888888888887,3.77,a-curv-i1,2022-23,Framingham - Framingham High School,01000515, 545, 462, 84.8 +4.013333333333334,4.01,a-curv-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 62, 56, 90.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Franklin - Franklin High,01010505, 421, 421, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 124, 124, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 184, 184, 100.0 +4.2444444444444445,4.24,a-curv-i1,2022-23,Frontier - Frontier Regional,06700505, 88, 84, 95.5 +2.102222222222222,2.1,a-curv-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 55, 26, 47.3 +3.066666666666667,3.07,a-curv-i1,2022-23,Gardner - Gardner High,01030505, 126, 87, 69.0 +3.466666666666667,3.47,a-curv-i1,2022-23,Gateway - Gateway Regional High,06720505, 41, 32, 78.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Georgetown - Georgetown High School,01050505, 78, 78, 100.0 +3.728888888888889,3.73,a-curv-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 31, 26, 83.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43, 43, 100.0 +2.7022222222222223,2.7,a-curv-i1,2022-23,Gloucester - Gloucester High,01070505, 181, 110, 60.8 +4.426666666666667,4.43,a-curv-i1,2022-23,Grafton - Grafton High School,01100505, 228, 227, 99.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 56, 56, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 132, 132, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 315, 315, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 402, 402, 100.0 +0.0,1,a-curv-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 525, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 448, 448, 100.0 +2.351111111111111,2.35,a-curv-i1,2022-23,Greenfield - Greenfield High,01140505, 68, 36, 52.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 168, 168, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hadley - Hopkins Academy,01170505, 37, 37, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 118, 118, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 25, 25, 100.0 +3.7422222222222223,3.74,a-curv-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 221, 186, 84.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 98, 98, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hanover - Hanover High,01220505, 167, 167, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Harvard - Bromfield,01250505, 76, 76, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hatfield - Smith Academy,01270505, 24, 24, 100.0 +0.0,1,a-curv-i1,2022-23,Haverhill - Gateway Academy,01280515, 10, 0, 0.0 +2.04,2.04,a-curv-i1,2022-23,Haverhill - Haverhill High,01280505, 405, 186, 45.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Hingham - Hingham High,01310505, 317, 317, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 78, 78, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Holliston - Holliston High,01360505, 194, 194, 100.0 +1.4133333333333333,1.41,a-curv-i1,2022-23,Holyoke - Holyoke High,01370505, 318, 101, 31.8 +2.631111111111111,2.63,a-curv-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 49, 29, 59.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 62, 62, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hopkinton - Hopkinton High,01390505, 310, 310, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hudson - Hudson High,01410505, 153, 153, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hull - Hull High,01420505, 60, 60, 100.0 +3.9644444444444447,3.96,a-curv-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 83, 74, 89.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Ipswich - Ipswich High,01440505, 120, 120, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,King Philip - King Philip Regional High,06900505, 265, 265, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - High School Learning Center,01490536, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - Lawrence High School,01490515, 589, 589, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - RISE Academy,01490615, 11, 11, 100.0 +2.8355555555555556,2.84,a-curv-i1,2022-23,Lee - Lee Middle/High School,01500505, 58, 37, 63.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Leicester - Leicester High,01510505, 97, 97, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lenox - Lenox Memorial High,01520505, 63, 63, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 130, 130, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 10, 10, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster High School,01530505, 289, 289, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lexington - Lexington High,01550505, 572, 572, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 358, 358, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Littleton - Littleton High School,01580505, 105, 105, 100.0 +2.6133333333333333,2.61,a-curv-i1,2022-23,Longmeadow - Longmeadow High,01590505, 211, 124, 58.8 +1.0577777777777777,1.06,a-curv-i1,2022-23,Lowell - Lowell High,01600505, 585, 139, 23.8 +0.0,1,a-curv-i1,2022-23,Lowell - The Career Academy,01600515, 49, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 31, 31, 100.0 +3.7688888888888887,3.77,a-curv-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 191, 162, 84.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Lunenburg - Lunenburg High,01620505, 97, 97, 100.0 +0.21333333333333332,1,a-curv-i1,2022-23,Lynn - Classical High,01630505, 414, 20, 4.8 +0.23555555555555555,1,a-curv-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 19, 1, 5.3 +0.24444444444444444,1,a-curv-i1,2022-23,Lynn - Lynn English High,01630510, 384, 21, 5.5 +1.24,1.24,a-curv-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 251, 70, 27.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Lynnfield - Lynnfield High,01640505, 134, 134, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 50, 50, 100.0 +2.373333333333333,2.37,a-curv-i1,2022-23,Malden - Malden High,01650505, 401, 214, 53.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 123, 123, 100.0 +4.413333333333333,4.41,a-curv-i1,2022-23,Mansfield - Mansfield High,01670505, 290, 288, 99.3 +1.8933333333333333,1.89,a-curv-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 54, 23, 42.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Marblehead - Marblehead High,01680505, 220, 220, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Marlborough - Marlborough High,01700505, 263, 263, 100.0 +4.431111111111111,4.43,a-curv-i1,2022-23,Marshfield - Marshfield High,01710505, 297, 296, 99.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 179, 179, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 9, 9, 100.0 +2.9555555555555557,2.96,a-curv-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 266, 177, 66.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 109, 109, 100.0 +0.0,1,a-curv-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 59, 0, 0.0 +3.9511111111111115,3.95,a-curv-i1,2022-23,Maynard - Maynard High,01740505, 72, 64, 88.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Medfield - Medfield Senior High,01750505, 198, 198, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Medford - Medford High,01760505, 307, 307, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Medway - Medway High,01770505, 161, 161, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Melrose - Melrose High,01780505, 218, 218, 100.0 +2.888888888888889,2.89,a-curv-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 140, 91, 65.0 +3.4444444444444446,3.44,a-curv-i1,2022-23,Methuen - Methuen High,01810505, 462, 358, 77.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Middleborough - Middleborough High,01820505, 194, 194, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Milford - Milford High,01850505, 287, 287, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 124, 124, 100.0 +4.382222222222222,4.38,a-curv-i1,2022-23,Millis - Millis High School,01870505, 73, 72, 98.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Milton - Milton High,01890505, 266, 266, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 148, 148, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 25, 25, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 118, 118, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Monson - Monson High School,01910505, 35, 35, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 317, 317, 100.0 +2.7644444444444445,2.76,a-curv-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 82, 51, 62.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 72, 72, 100.0 +4.413333333333333,4.41,a-curv-i1,2022-23,Nantucket - Nantucket High,01970505, 145, 144, 99.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 62, 62, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba - Nashoba Regional,07250505, 192, 192, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 160, 160, 100.0 +4.293333333333333,4.29,a-curv-i1,2022-23,Natick - Natick High,01980505, 377, 364, 96.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Nauset - Nauset Regional High,06600505, 198, 198, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Needham - Needham High,01990505, 375, 375, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 55, 55, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - New Bedford High,02010505, 570, 570, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 41, 41, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 80, 80, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Newburyport - Newburyport High,02040505, 207, 207, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton North High,02070505, 491, 436, 88.8 +3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton South High,02070510, 475, 422, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 132, 132, 100.0 +3.204444444444444,3.2,a-curv-i1,2022-23,North Adams - Drury High,02090505, 61, 44, 72.1 +4.444444444444445,4.44,a-curv-i1,2022-23,North Andover - North Andover High,02110505, 302, 302, 100.0 +4.359999999999999,4.36,a-curv-i1,2022-23,North Attleborough - North Attleboro High,02120505, 257, 252, 98.1 +4.444444444444445,4.44,a-curv-i1,2022-23,North Brookfield - North Brookfield High,02150505, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 171, 171, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,North Reading - North Reading High,02170505, 173, 173, 100.0 +0.017777777777777778,1,a-curv-i1,2022-23,Northampton - Northampton High,02100505, 233, 1, 0.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 128, 128, 100.0 +2.28,2.28,a-curv-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 312, 160, 51.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Northbridge - Northbridge High,02140505, 125, 125, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 281, 281, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 123, 123, 100.0 +3.9555555555555557,3.96,a-curv-i1,2022-23,Norton - Norton High,02180505, 163, 145, 89.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Norwell - Norwell High,02190505, 149, 149, 100.0 +2.2666666666666666,2.27,a-curv-i1,2022-23,Norwood - Norwood High,02200505, 257, 131, 51.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 140, 140, 100.0 +3.911111111111111,3.91,a-curv-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 167, 147, 88.0 +4.391111111111111,4.39,a-curv-i1,2022-23,Oxford - Oxford High,02260505, 80, 79, 98.8 +4.008888888888889,4.01,a-curv-i1,2022-23,Palmer - Palmer High,02270505, 61, 55, 90.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 125, 125, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 47, 47, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 12, 10, 83.3 +3.1333333333333333,3.13,a-curv-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 346, 244, 70.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Pembroke - Pembroke High School,02310505, 195, 195, 100.0 +3.7511111111111113,3.75,a-curv-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 154, 130, 84.4 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 7, 7, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12, 12, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 44, 44, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 46, 46, 100.0 +4.262222222222222,4.26,a-curv-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 49, 47, 95.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 19, 19, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 57, 57, 100.0 +3.7111111111111112,3.71,a-curv-i1,2022-23,Pittsfield - Pittsfield High,02360505, 139, 116, 83.5 +2.2222222222222223,2.22,a-curv-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 12, 6, 50.0 +3.2977777777777777,3.3,a-curv-i1,2022-23,Pittsfield - Taconic High,02360510, 178, 132, 74.2 +3.684444444444445,3.68,a-curv-i1,2022-23,Plymouth - Plymouth North High,02390505, 292, 242, 82.9 +3.6799999999999997,3.68,a-curv-i1,2022-23,Plymouth - Plymouth South High,02390515, 238, 197, 82.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 127, 127, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 94, 94, 100.0 +1.6444444444444444,1.64,a-curv-i1,2022-23,Quincy - North Quincy High,02430510, 332, 123, 37.0 +2.697777777777778,2.7,a-curv-i1,2022-23,Quincy - Quincy High,02430505, 379, 230, 60.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 77, 77, 100.0 +2.2933333333333334,2.29,a-curv-i1,2022-23,Randolph - Randolph High,02440505, 128, 66, 51.6 +4.262222222222222,4.26,a-curv-i1,2022-23,Reading - Reading Memorial High,02460505, 294, 282, 95.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Revere - CityLab Innovation High School,02480520, 14, 14, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Revere - Revere High,02480505, 433, 433, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rockland - Rockland Senior High,02510505, 133, 133, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rockport - Rockport High,02520510, 61, 61, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - New Liberty Innovation School,02580510, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem High,02580505, 218, 218, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem Prep High School,02580515, 6, 6, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 65, 65, 100.0 +4.386666666666667,4.39,a-curv-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 157, 155, 98.7 +3.902222222222222,3.9,a-curv-i1,2022-23,Saugus - Saugus High,02620505, 172, 151, 87.8 +4.111111111111111,4.11,a-curv-i1,2022-23,Scituate - Scituate High School,02640505, 187, 173, 92.5 +2.088888888888889,2.09,a-curv-i1,2022-23,Seekonk - Seekonk High,02650505, 134, 63, 47.0 +3.7511111111111113,3.75,a-curv-i1,2022-23,Sharon - Sharon High,02660505, 289, 244, 84.4 +0.8933333333333334,1,a-curv-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 283, 57, 20.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 440, 440, 100.0 +4.342222222222222,4.34,a-curv-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 256, 250, 97.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 38, 38, 100.0 +3.3244444444444445,3.32,a-curv-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 226, 169, 74.8 +3.888888888888889,3.89,a-curv-i1,2022-23,Somerville - Full Circle High School,02740510, 8, 7, 87.5 +3.0577777777777775,3.06,a-curv-i1,2022-23,Somerville - Somerville High,02740505, 266, 183, 68.8 +2.7022222222222223,2.7,a-curv-i1,2022-23,South Hadley - South Hadley High,02780505, 125, 76, 60.8 +4.115555555555555,4.12,a-curv-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 175, 162, 92.6 +2.7688888888888887,2.77,a-curv-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 77, 48, 62.3 +4.444444444444445,4.44,a-curv-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 154, 154, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Southbridge - Southbridge High School,02770515, 87, 87, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 364, 364, 100.0 +3.48,3.48,a-curv-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 46, 36, 78.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 267, 267, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 90, 75, 83.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 67, 67, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 37, 37, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 15, 15, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 19, 19, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - High School Of Commerce,02810510, 195, 195, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - John J Duggan Academy,02810320, 81, 81, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 313, 313, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Central High,02810500, 465, 465, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School,02810570, 34, 34, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 247, 247, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 11, 11, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 72, 72, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 20, 20, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 84, 84, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Stoneham - Stoneham High,02840505, 141, 141, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Stoughton - Stoughton High,02850505, 217, 217, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 207, 207, 100.0 +3.9955555555555557,4.0,a-curv-i1,2022-23,Sutton - Sutton High School,02900510, 89, 80, 89.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Swampscott - Swampscott High,02910505, 150, 150, 100.0 +0.0,1,a-curv-i1,2022-23,Swansea - Joseph Case High,02920505, 106, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 339, 339, 100.0 +4.1466666666666665,4.15,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 165, 154, 93.3 +2.9466666666666663,2.95,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 101, 67, 66.3 +0.39111111111111113,1,a-curv-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 34, 3, 8.8 +3.9511111111111115,3.95,a-curv-i1,2022-23,Taunton - Taunton High,02930505, 458, 407, 88.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 189, 189, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 211, 211, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Triton - Triton Regional High School,07730505, 169, 150, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 103, 103, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 152, 152, 100.0 +3.457777777777778,3.46,a-curv-i1,2022-23,Uxbridge - Gateway to College,03040515, 9, 7, 77.8 +3.6711111111111108,3.67,a-curv-i1,2022-23,Uxbridge - Uxbridge High,03040505, 109, 90, 82.6 +3.817777777777778,3.82,a-curv-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 467, 401, 85.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 198, 198, 100.0 +2.7688888888888887,2.77,a-curv-i1,2022-23,Walpole - Walpole High,03070505, 244, 152, 62.3 +3.795555555555556,3.8,a-curv-i1,2022-23,Waltham - Waltham Sr High,03080505, 363, 310, 85.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 54, 54, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 12, 12, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Senior High,03100505, 81, 81, 100.0 +3.3422222222222224,3.34,a-curv-i1,2022-23,Watertown - Watertown High,03140505, 149, 112, 75.2 +3.471111111111111,3.47,a-curv-i1,2022-23,Wayland - Wayland High School,03150505, 187, 146, 78.1 +3.4755555555555557,3.48,a-curv-i1,2022-23,Webster - Bartlett High School,03160505, 78, 61, 78.2 +2.2044444444444444,2.2,a-curv-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 351, 174, 49.6 +4.444444444444445,4.44,a-curv-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 60, 60, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 99, 99, 100.0 +2.9422222222222225,2.94,a-curv-i1,2022-23,West Springfield - West Springfield High,03320505, 269, 178, 66.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Westborough - Westborough High,03210505, 259, 259, 100.0 +2.8311111111111114,2.83,a-curv-i1,2022-23,Westfield - Westfield High,03250505, 215, 137, 63.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 126, 126, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Virtual School,03250705, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Westford - Westford Academy,03260505, 418, 418, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Weston - Weston High,03300505, 154, 154, 100.0 +3.008888888888889,3.01,a-curv-i1,2022-23,Westport - Westport Middle-High School,03310515, 65, 44, 67.7 +4.248888888888889,4.25,a-curv-i1,2022-23,Westwood - Westwood High,03350505, 248, 237, 95.6 +2.0,2.0,a-curv-i1,2022-23,Weymouth - Weymouth High School,03360505, 409, 184, 45.0 +4.1288888888888895,4.13,a-curv-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 282, 262, 92.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 319, 319, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wilmington - Wilmington High,03420505, 191, 191, 100.0 +4.0,4.0,a-curv-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 10, 9, 90.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Winchendon - Murdock High School,03430515, 45, 45, 100.0 +3.9155555555555552,3.92,a-curv-i1,2022-23,Winchester - Winchester High School,03440505, 337, 297, 88.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Winthrop - Winthrop High School,03460505, 128, 128, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Woburn - Woburn High,03470505, 264, 264, 100.0 +4.177777777777778,4.18,a-curv-i1,2022-23,Worcester - Burncoat Senior High,03480503, 265, 249, 94.0 +4.142222222222222,4.14,a-curv-i1,2022-23,Worcester - Claremont Academy,03480350, 73, 68, 93.2 +4.053333333333334,4.05,a-curv-i1,2022-23,Worcester - Doherty Memorial High,03480512, 294, 268, 91.2 +4.102222222222222,4.1,a-curv-i1,2022-23,Worcester - North High,03480515, 272, 251, 92.3 +3.8577777777777778,3.86,a-curv-i1,2022-23,Worcester - South High Community,03480520, 318, 276, 86.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Worcester - University Pk Campus School,03480285, 39, 39, 100.0 +4.404444444444445,4.4,a-curv-i1,2022-23,Worcester - Worcester Technical High,03480605, 347, 344, 99.1 4.444444444444445,4.44,a-curv-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 91, 91, 100.0 2.8044444444444445,2.8,a-curv-i1,2021-22,Abington - Abington High,00010505, 149, 94, 63.1 4.368888888888889,4.37,a-curv-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 59, 58, 98.3 diff --git a/data/admin_data/dese/3B_1_student_courses_ratio.csv b/data/admin_data/dese/3B_1_student_courses_ratio.csv new file mode 100644 index 0000000..bfe6d15 --- /dev/null +++ b/data/admin_data/dese/3B_1_student_courses_ratio.csv @@ -0,0 +1,12899 @@ +Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Total # of Classes,Average Class Size,Number of Students,Female %,Male %,English Language Learner %,Students with Disabilities %,Low Income %,Number of Students +NA,NA,a-curv-i5,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 735, 19.0," 1,418", 53.6, 46.4, 18.8, 12.1,57 +NA,NA,a-curv-i5,2022-23,Abington - Abington Early Education Program,00010001, 16, 25.3, 101, 36.6, 63.4, 13.9, 40.6,36.6 +NA,NA,a-curv-i5,2022-23,Abington - Abington High,00010505, 278, 15.6, 563, 48.0, 51.9, 10.0, 12.3,36.2 +NA,NA,a-curv-i5,2022-23,Abington - Abington Middle School,00010405, 379, 21.4, 663, 49.0, 50.5, 8.5, 18.7,34.7 +NA,NA,a-curv-i5,2022-23,Abington - Beaver Brook Elementary,00010020, 234, 20.4, 530, 50.9, 49.1, 17.0, 15.3,37 +NA,NA,a-curv-i5,2022-23,Abington - Woodsdale Elementary School,00010015, 126, 24.6, 343, 47.2, 52.5, 13.4, 19.5,35.9 +NA,NA,a-curv-i5,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 215, 17.9, 468, 49.2, 50.9, 9.6, 24.4,58.8 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 695, 18.1," 1,691", 47.5, 51.9, 1.2, 12.3,10.1 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 172, 20.9, 505, 49.1, 50.7, 9.3, 17.2,10.3 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 130, 21.0, 385, 46.5, 53.5, 6.0, 15.1,16.4 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 14, 9.4, 119, 37.8, 62.2, 28.6, 48.7,21.9 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Luther Conant School,06000030, 137, 21.3, 408, 48.5, 51.5, 12.0, 16.9,10.1 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 150, 21.3, 453, 48.1, 51.7, 6.8, 18.8,13.9 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Merriam School,06000010, 144, 22.0, 445, 49.7, 49.9, 8.1, 16.2,10.8 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 124, 19.9, 346, 50.0, 50.0, 9.0, 11.9,12.4 +NA,NA,a-curv-i5,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 560, 20.2, 835, 47.0, 52.8, 3.2, 15.3,11 +NA,NA,a-curv-i5,2022-23,Acushnet - Acushnet Elementary School,00030025, 294, 18.0, 552, 44.9, 55.1, 0.2, 18.1,35.7 +NA,NA,a-curv-i5,2022-23,Acushnet - Albert F Ford Middle School,00030305, 220, 16.7, 408, 51.2, 48.5, 0.3, 12.8,29.4 +NA,NA,a-curv-i5,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 504, 18.2, 957, 45.1, 54.1, 1.6, 7.6,16.1 +NA,NA,a-curv-i5,2022-23,Agawam - Agawam Early Childhood Center,00050003, 16, 10.0, 156, 38.5, 61.5, 10.9, 44.2,41 +NA,NA,a-curv-i5,2022-23,Agawam - Agawam High,00050505, 550, 14.6," 1,052", 47.6, 51.3, 3.2, 16.6,35.6 +NA,NA,a-curv-i5,2022-23,Agawam - Agawam Junior High,00050405, 545, 11.2, 537, 44.0, 55.9, 4.8, 19.2,42.5 +NA,NA,a-curv-i5,2022-23,Agawam - Benjamin J Phelps,00050020, 159, 20.5, 311, 47.0, 53.1, 8.0, 17.4,46.3 +NA,NA,a-curv-i5,2022-23,Agawam - Clifford M Granger,00050010, 181, 19.8, 338, 50.0, 50.0, 9.2, 16.3,36.4 +NA,NA,a-curv-i5,2022-23,Agawam - James Clark School,00050030, 159, 20.9, 314, 47.5, 52.6, 11.2, 16.9,45.5 +NA,NA,a-curv-i5,2022-23,Agawam - Roberta G. Doering School,00050303, 275, 19.6, 533, 50.1, 49.9, 5.3, 16.3,42.8 +NA,NA,a-curv-i5,2022-23,Agawam - Robinson Park,00050025, 159, 19.2, 289, 52.9, 47.1, 20.4, 12.5,56.1 +NA,NA,a-curv-i5,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 322, 22.3," 1,036", 53.6, 46.4, 29.4, 20.3,74.3 +NA,NA,a-curv-i5,2022-23,Amesbury - Amesbury Elementary,00070005, 134, 20.5, 344, 48.6, 51.5, 0.9, 24.4,32.6 +NA,NA,a-curv-i5,2022-23,Amesbury - Amesbury High,00070505, 409, 12.5, 459, 49.7, 50.3, 1.5, 19.4,28.3 +7.4375,5,a-curv-i5,2022-23,Amesbury - Amesbury Innovation High School,00070515, 64, 8.8, 54, 51.9, 48.2, 0.0, 48.2,81.5,45 +NA,NA,a-curv-i5,2022-23,Amesbury - Amesbury Middle,00070013, 332, 15.9, 588, 44.6, 55.4, 1.5, 23.5,34.7 +NA,NA,a-curv-i5,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 161, 20.1, 394, 49.0, 51.0, 7.4, 28.7,35.3 +NA,NA,a-curv-i5,2022-23,Amherst - Crocker Farm Elementary,00080009, 110, 16.3, 346, 51.5, 46.8, 16.8, 25.1,32.4 +NA,NA,a-curv-i5,2022-23,Amherst - Fort River Elementary,00080020, 120, 19.0, 378, 44.4, 55.3, 12.2, 25.1,34.7 +NA,NA,a-curv-i5,2022-23,Amherst - Wildwood Elementary,00080050, 106, 17.8, 316, 52.5, 46.8, 14.6, 23.7,42.4 +NA,NA,a-curv-i5,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 685, 12.7, 874, 47.3, 51.1, 7.4, 25.3,30 +NA,NA,a-curv-i5,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 301, 14.2, 384, 43.5, 55.2, 7.8, 22.9,30.2 +NA,NA,a-curv-i5,2022-23,Andover - Andover High,00090505, 980, 15.2," 1,700", 51.2, 48.7, 1.5, 15.8,13.1 +NA,NA,a-curv-i5,2022-23,Andover - Andover West Middle,00090310, 328, 17.2, 524, 51.5, 47.9, 2.9, 20.4,13.4 +NA,NA,a-curv-i5,2022-23,Andover - Bancroft Elementary,00090003, 182, 21.0, 547, 50.6, 49.2, 2.6, 21.4,8.4 +NA,NA,a-curv-i5,2022-23,Andover - Doherty Middle,00090305, 298, 16.6, 464, 49.4, 50.4, 0.2, 16.8,9.1 +NA,NA,a-curv-i5,2022-23,Andover - Henry C Sanborn Elementary,00090010, 126, 19.3, 347, 45.8, 54.2, 10.1, 8.9,11.8 +NA,NA,a-curv-i5,2022-23,Andover - High Plain Elementary,00090004, 175, 21.5, 537, 49.4, 50.7, 11.2, 16.6,12.5 +NA,NA,a-curv-i5,2022-23,Andover - Shawsheen School,00090005, 12, 10.3, 124, 35.5, 64.5, 0.8, 57.3,25 +NA,NA,a-curv-i5,2022-23,Andover - South Elementary,00090020, 161, 19.8, 455, 45.3, 54.7, 1.3, 14.1,5.3 +NA,NA,a-curv-i5,2022-23,Andover - West Elementary,00090025, 196, 20.0, 560, 46.3, 53.8, 5.5, 27.1,13.6 +NA,NA,a-curv-i5,2022-23,Andover - Wood Hill Middle School,00090350, 227, 15.6, 346, 46.0, 54.1, 2.0, 17.3,12.4 +NA,NA,a-curv-i5,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 360, 16.2, 543, 44.6, 55.4, 22.1, 25.1,74.2 +NA,NA,a-curv-i5,2022-23,Arlington - Arlington High,00100505, 997, 13.8," 1,540", 50.4, 47.6, 1.7, 13.5,11.1 +NA,NA,a-curv-i5,2022-23,Arlington - Brackett,00100010, 162, 18.7, 420, 46.7, 53.3, 5.2, 16.0,3.3 +NA,NA,a-curv-i5,2022-23,Arlington - Cyrus E Dallin,00100025, 164, 18.4, 416, 51.4, 48.3, 4.3, 11.3,7.5 +NA,NA,a-curv-i5,2022-23,Arlington - Gibbs School,00100305, 320, 19.1, 514, 46.9, 52.7, 3.9, 19.5,11.7 +NA,NA,a-curv-i5,2022-23,Arlington - Hardy,00100030, 143, 19.9, 392, 49.2, 50.5, 8.9, 19.9,12.8 +NA,NA,a-curv-i5,2022-23,Arlington - John A Bishop,00100005, 136, 21.3, 397, 47.4, 52.6, 9.3, 12.6,6.1 +NA,NA,a-curv-i5,2022-23,Arlington - M Norcross Stratton,00100055, 156, 20.5, 443, 49.9, 49.9, 9.5, 17.2,10.4 +NA,NA,a-curv-i5,2022-23,Arlington - Menotomy Preschool,00100038, 7, 14.3, 100, 37.0, 63.0, 0.0, 51.0,20 +NA,NA,a-curv-i5,2022-23,Arlington - Ottoson Middle,00100410, 579, 17.9, 933, 49.0, 50.1, 3.3, 22.0,10 +NA,NA,a-curv-i5,2022-23,Arlington - Peirce,00100045, 128, 20.4, 361, 46.8, 52.6, 8.0, 13.0,10.5 +NA,NA,a-curv-i5,2022-23,Arlington - Thompson,00100050, 170, 21.9, 515, 53.4, 46.2, 8.0, 16.5,21.8 +NA,NA,a-curv-i5,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 269, 19.6, 520, 51.2, 48.9, 4.8, 22.7,28.5 +NA,NA,a-curv-i5,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 105, 16.1, 199, 50.3, 49.8, 4.0, 9.1,24.6 +6.442603550295859,5,a-curv-i5,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 338, 15.9, 654, 46.5, 52.0, 0.2, 16.1,22.5,658 +NA,NA,a-curv-i5,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 332, 20.6, 540, 48.5, 50.4, 0.0, 14.1,25.2 +NA,NA,a-curv-i5,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 219, 20.0, 387, 50.4, 49.6, 1.3, 19.9,21.2 +NA,NA,a-curv-i5,2022-23,Ashland - Ashland High,00140505, 437, 16.9, 861, 49.8, 50.1, 7.2, 14.6,23.2 +NA,NA,a-curv-i5,2022-23,Ashland - Ashland Middle,00140405, 386, 20.2, 700, 48.6, 51.3, 5.4, 20.0,24.3 +NA,NA,a-curv-i5,2022-23,Ashland - David Mindess,00140015, 305, 22.3, 652, 46.6, 53.4, 9.8, 24.2,26.1 +NA,NA,a-curv-i5,2022-23,Ashland - Henry E Warren Elementary,00140010, 198, 20.1, 632, 48.4, 51.4, 13.3, 16.3,22.9 +NA,NA,a-curv-i5,2022-23,Ashland - William Pittaway Elementary,00140005, 19, 5.0, 85, 48.2, 51.8, 21.2, 40.0,20 +6.505960264900662,5,a-curv-i5,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 604, 17.4," 1,118", 43.8, 55.2, 6.3, 24.1,41.4,1128 +NA,NA,a-curv-i5,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 211, 20.7, 589, 46.7, 53.1, 3.2, 26.7,69.3 +NA,NA,a-curv-i5,2022-23,Athol-Royalston - Athol High,06150505, 246, 16.6, 401, 43.9, 56.1, 2.7, 23.4,62.3 +NA,NA,a-curv-i5,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 269, 19.5, 447, 47.7, 52.4, 1.1, 28.4,64.2 +NA,NA,a-curv-i5,2022-23,Athol-Royalston - Royalston Community School,06150050, 54, 18.4, 156, 43.0, 57.1, 0.0, 15.4,48.7 +NA,NA,a-curv-i5,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 532, 20.4," 1,296", 52.7, 47.1, 18.1, 16.8,61.2 +NA,NA,a-curv-i5,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 169, 18.6, 349, 47.3, 52.4, 9.7, 20.1,39.5 +NA,NA,a-curv-i5,2022-23,Attleboro - Attleboro Community Academy,00160515, 91, 11.0, 77, 45.5, 53.3, 5.2, 10.4,61 +NA,NA,a-curv-i5,2022-23,Attleboro - Attleboro High,00160505, 958, 18.6," 1,883", 45.5, 54.0, 4.1, 12.2,37.4 +NA,NA,a-curv-i5,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 70, 5.0, 48, 25.0, 75.0, 0.0, 6.3,37.5 +NA,NA,a-curv-i5,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 281, 21.3, 642, 50.8, 49.1, 7.3, 17.9,46.6 +NA,NA,a-curv-i5,2022-23,Attleboro - Early Learning Center,00160008, 18, 12.8, 231, 36.8, 63.2, 0.0, 54.6,47.2 +NA,NA,a-curv-i5,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 175, 21.6, 412, 47.3, 52.7, 11.2, 14.3,43.5 +NA,NA,a-curv-i5,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 180, 23.1, 462, 50.2, 49.8, 14.9, 18.6,41.8 +NA,NA,a-curv-i5,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 272, 14.6, 443, 45.8, 54.0, 8.4, 24.2,50.8 +NA,NA,a-curv-i5,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 254, 22.7, 587, 44.3, 55.5, 0.5, 15.7,35.6 +NA,NA,a-curv-i5,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 140, 24.1, 377, 49.9, 50.1, 10.3, 21.8,42.7 +NA,NA,a-curv-i5,2022-23,Attleboro - Wamsutta Middle School,00160320, 228, 21.9, 592, 50.2, 49.8, 3.4, 16.1,37.7 +NA,NA,a-curv-i5,2022-23,Auburn - Auburn Middle,00170305, 423, 17.4, 652, 47.9, 52.2, 2.3, 12.9,27.6 +NA,NA,a-curv-i5,2022-23,Auburn - Auburn Senior High,00170505, 656, 15.3, 860, 49.8, 49.8, 1.5, 11.5,28.8 +NA,NA,a-curv-i5,2022-23,Auburn - Bryn Mawr,00170010, 112, 18.8, 264, 44.7, 55.3, 4.2, 14.8,39.4 +NA,NA,a-curv-i5,2022-23,Auburn - Pakachoag School,00170025, 112, 17.3, 242, 47.9, 52.1, 1.7, 16.1,25.2 +NA,NA,a-curv-i5,2022-23,Auburn - Swanson Road Intermediate School,00170030, 243, 18.1, 551, 48.3, 51.7, 2.5, 15.1,26.9 +6.891803278688525,5,a-curv-i5,2022-23,Avon - Avon Middle High School,00180510, 244, 12.7, 338, 48.2, 51.5, 7.1, 21.9,45.9,338 +NA,NA,a-curv-i5,2022-23,Avon - Ralph D Butler,00180010, 107, 18.9, 398, 48.2, 51.8, 17.3, 20.6,48.2 +6.6529914529914524,5,a-curv-i5,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 234, 16.4, 401, 47.4, 52.1, 3.5, 15.5,30.4,394 +NA,NA,a-curv-i5,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 207, 19.7, 382, 46.9, 53.1, 2.9, 16.8,35.1 +NA,NA,a-curv-i5,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 180, 18.9, 337, 46.3, 53.7, 5.3, 25.5,32.1 +NA,NA,a-curv-i5,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 233, 19.6, 550, 46.2, 53.8, 6.7, 20.4,38.7 +NA,NA,a-curv-i5,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 124, 18.8, 288, 47.9, 52.1, 45.8, 6.3,63.5 +NA,NA,a-curv-i5,2022-23,Barnstable - Barnstable High,00200505, 871, 12.8," 1,671", 48.7, 50.9, 15.7, 15.6,53.1 +NA,NA,a-curv-i5,2022-23,Barnstable - Barnstable Intermediate School,00200315, 597, 16.6, 684, 47.2, 52.6, 19.4, 18.6,58.6 +NA,NA,a-curv-i5,2022-23,Barnstable - Barnstable United Elementary School,00200050, 464, 15.5, 737, 49.0, 50.8, 23.1, 17.8,55.4 +NA,NA,a-curv-i5,2022-23,Barnstable - Centerville Elementary,00200010, 90, 20.2, 257, 45.1, 54.5, 18.7, 19.1,47.9 +NA,NA,a-curv-i5,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 24, 7.9, 190, 37.9, 62.1, 36.8, 49.0,56.8 +NA,NA,a-curv-i5,2022-23,Barnstable - Hyannis West Elementary,00200025, 112, 21.4, 336, 53.0, 47.0, 50.6, 16.7,78.9 +NA,NA,a-curv-i5,2022-23,Barnstable - West Barnstable Elementary,00200005, 90, 21.0, 275, 41.5, 58.6, 19.6, 16.7,44.4 +NA,NA,a-curv-i5,2022-23,Barnstable - West Villages Elementary School,00200045, 131, 20.3, 394, 45.9, 54.1, 11.9, 13.2,36.8 +NA,NA,a-curv-i5,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 248, 14.7, 398, 44.7, 55.3, 9.1, 21.9,82.4 +NA,NA,a-curv-i5,2022-23,Bedford - Bedford High,00230505, 519, 13.3, 837, 48.8, 50.4, 1.0, 14.5,10.4 +NA,NA,a-curv-i5,2022-23,Bedford - John Glenn Middle,00230305, 405, 15.5, 594, 50.3, 49.7, 2.0, 17.7,14 +NA,NA,a-curv-i5,2022-23,Bedford - Lt Eleazer Davis,00230010, 82, 18.8, 529, 46.3, 53.7, 7.9, 20.6,11.7 +NA,NA,a-curv-i5,2022-23,Bedford - Lt Job Lane School,00230012, 164, 19.1, 581, 47.0, 53.0, 3.6, 20.7,12.1 +NA,NA,a-curv-i5,2022-23,Belchertown - Belchertown High,00240505, 431, 13.7, 643, 50.4, 48.5, 1.2, 17.3,20.4 +NA,NA,a-curv-i5,2022-23,Belchertown - Chestnut Hill Community School,00240006, 191, 21.0, 484, 51.2, 48.8, 0.8, 24.0,26 +NA,NA,a-curv-i5,2022-23,Belchertown - Cold Spring,00240005, 38, 15.1, 196, 46.4, 53.6, 3.1, 31.6,27.6 +NA,NA,a-curv-i5,2022-23,Belchertown - Jabish Middle School,00240025, 286, 14.8, 351, 46.4, 53.0, 1.7, 23.9,28.2 +NA,NA,a-curv-i5,2022-23,Belchertown - Swift River Elementary,00240018, 233, 18.4, 477, 47.2, 52.8, 5.0, 26.0,27.5 +NA,NA,a-curv-i5,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 11, 10.9, 117, 45.3, 53.9, 0.0, 48.7,32.5 +6.439686684073107,5,a-curv-i5,2022-23,Bellingham - Bellingham High School,00250505, 383, 17.2, 746, 51.1, 48.9, 2.4, 17.6,29.4,747 +NA,NA,a-curv-i5,2022-23,Bellingham - Bellingham Memorial School,00250315, 335, 19.3, 594, 47.3, 52.7, 4.6, 24.4,37.7 +NA,NA,a-curv-i5,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 64, 18.8, 300, 50.7, 49.3, 7.0, 18.3,29.3 +NA,NA,a-curv-i5,2022-23,Bellingham - Keough Memorial Academy,00250510, 33, 8.2, 35, 57.1, 42.9, 0.0, 97.1,48.6 +NA,NA,a-curv-i5,2022-23,Bellingham - Stall Brook,00250025, 53, 19.0, 245, 49.0, 51.0, 10.2, 20.0,35.5 +NA,NA,a-curv-i5,2022-23,Belmont - Belmont High,00260505, 470, 21.1," 1,369", 50.0, 49.7, 2.6, 8.4,11.1 +NA,NA,a-curv-i5,2022-23,Belmont - Daniel Butler,00260015, 130, 21.4, 326, 47.6, 51.8, 24.9, 12.0,15 +NA,NA,a-curv-i5,2022-23,Belmont - Mary Lee Burbank,00260010, 142, 19.8, 340, 51.5, 48.2, 15.0, 13.2,9.1 +NA,NA,a-curv-i5,2022-23,Belmont - Roger E Wellington,00260035, 207, 20.2, 568, 50.0, 49.8, 19.5, 21.7,18.5 +NA,NA,a-curv-i5,2022-23,Belmont - Winn Brook,00260005, 168, 21.5, 436, 54.1, 45.9, 19.5, 9.2,6 +NA,NA,a-curv-i5,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 690, 20.3," 1,387", 48.7, 50.6, 5.3, 15.5,11 +NA,NA,a-curv-i5,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 64, 21.7, 327, 52.6, 47.1, 6.4, 14.1,64.5 +NA,NA,a-curv-i5,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 292, 23.6, 867, 50.4, 49.6, 8.5, 18.3,18.7 +NA,NA,a-curv-i5,2022-23,Berkley - Berkley Community School,00270010, 168, 19.1, 484, 50.6, 49.4, 1.5, 18.8,29.3 +NA,NA,a-curv-i5,2022-23,Berkley - Berkley Middle School,00270305, 192, 17.3, 370, 51.4, 48.7, 1.1, 18.4,23.2 +NA,NA,a-curv-i5,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 182, 18.6, 375, 48.8, 48.3, 1.1, 21.3,63.2 +NA,NA,a-curv-i5,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 342, 11.9, 483, 46.0, 53.6, 8.7, 14.3,39.3 +NA,NA,a-curv-i5,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 223, 16.3, 378, 50.8, 48.9, 9.5, 20.9,50.8 +NA,NA,a-curv-i5,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 278, 18.3, 334, 48.8, 49.7, 5.1, 17.1,42.8 +NA,NA,a-curv-i5,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 140, 16.4, 226, 49.1, 50.4, 3.1, 20.8,20.4 +NA,NA,a-curv-i5,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 182, 19.2, 340, 43.5, 56.5, 2.4, 21.2,13.2 +NA,NA,a-curv-i5,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 319, 14.9, 518, 52.5, 46.7, 2.7, 14.1,18.2 +NA,NA,a-curv-i5,2022-23,Beverly - Ayers/Ryal Side School,00300055, 84, 18.7, 392, 50.8, 49.2, 6.1, 13.5,24.7 +NA,NA,a-curv-i5,2022-23,Beverly - Beverly High,00300505, 604, 17.9," 1,278", 49.8, 49.8, 4.2, 17.8,32.9 +NA,NA,a-curv-i5,2022-23,Beverly - Beverly Middle School,00300305, 587, 21.8," 1,386", 48.6, 51.1, 3.2, 21.4,34.4 +NA,NA,a-curv-i5,2022-23,Beverly - Centerville Elementary,00300010, 82, 15.8, 327, 45.6, 54.4, 7.0, 23.9,40.7 +NA,NA,a-curv-i5,2022-23,Beverly - Cove Elementary,00300015, 103, 16.5, 426, 47.4, 52.6, 7.3, 25.8,36.9 +NA,NA,a-curv-i5,2022-23,Beverly - Hannah Elementary,00300033, 80, 16.2, 323, 49.9, 50.2, 5.0, 18.0,28.5 +NA,NA,a-curv-i5,2022-23,Beverly - McKeown School,00300002, 14, 11.5, 161, 34.8, 65.2, 3.7, 46.6,36 +NA,NA,a-curv-i5,2022-23,Beverly - North Beverly Elementary,00300040, 96, 14.4, 346, 41.6, 58.4, 9.3, 21.7,31.2 +6.071508379888268,5,a-curv-i5,2022-23,Billerica - Billerica Memorial High School,00310505, 716, 19.3," 1,813", 48.5, 51.4, 2.4, 21.0,26.5,1726 +NA,NA,a-curv-i5,2022-23,Billerica - Frederick J Dutile,00310007, 123, 20.4, 288, 49.0, 51.0, 0.4, 23.3,23.3 +NA,NA,a-curv-i5,2022-23,Billerica - Hajjar Elementary,00310026, 176, 19.1, 381, 53.8, 45.9, 12.3, 17.3,37.5 +NA,NA,a-curv-i5,2022-23,Billerica - John F Kennedy,00310012, 150, 18.4, 313, 53.7, 46.3, 0.3, 23.0,19.5 +NA,NA,a-curv-i5,2022-23,Billerica - Locke Middle,00310310, 344, 15.9, 553, 48.1, 51.9, 0.0, 23.9,21.3 +NA,NA,a-curv-i5,2022-23,Billerica - Marshall Middle School,00310305, 316, 19.2, 614, 52.0, 48.1, 2.1, 25.4,31.3 +NA,NA,a-curv-i5,2022-23,Billerica - Parker,00310015, 185, 20.1, 423, 53.7, 46.3, 1.7, 26.0,29.3 +NA,NA,a-curv-i5,2022-23,Billerica - Thomas Ditson,00310005, 240, 20.5, 557, 50.3, 49.7, 3.8, 19.2,25 +NA,NA,a-curv-i5,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 660, 16.9," 1,221", 44.5, 54.8, 0.5, 11.8,15.6 +NA,NA,a-curv-i5,2022-23,Blackstone-Millville - A F Maloney,06220015, 104, 23.1, 253, 47.8, 52.2, 0.8, 18.6,37.9 +NA,NA,a-curv-i5,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 245, 13.5, 415, 48.0, 51.1, 1.2, 14.7,29.2 +NA,NA,a-curv-i5,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 263, 16.4, 356, 44.7, 54.8, 2.0, 17.4,36.2 +NA,NA,a-curv-i5,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 49, 20.2, 110, 53.6, 46.4, 7.3, 14.6,46.4 +NA,NA,a-curv-i5,2022-23,Blackstone-Millville - Millville Elementary,06220010, 151, 17.5, 388, 49.5, 50.5, 4.9, 20.4,33.5 +NA,NA,a-curv-i5,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 435, 15.4, 901, 48.0, 52.1, 1.6, 26.3,39.5 +NA,NA,a-curv-i5,2022-23,Boston - Adams Elementary School,00350302, 177, 12.3, 253, 48.6, 51.4, 55.3, 24.9,80.2 +NA,NA,a-curv-i5,2022-23,Boston - Alighieri Dante Montessori School,00350066, 142, 6.4, 101, 46.5, 53.5, 27.7, 17.8,38.6 +NA,NA,a-curv-i5,2022-23,Boston - Another Course To College,00350541, 109, 15.2, 255, 43.1, 56.5, 17.7, 32.9,77.3 +NA,NA,a-curv-i5,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 89, 14.2, 172, 49.4, 50.6, 43.6, 21.5,55.8 +NA,NA,a-curv-i5,2022-23,Boston - Bates Elementary School,00350278, 149, 16.6, 282, 40.4, 59.6, 23.8, 33.0,50.7 +NA,NA,a-curv-i5,2022-23,Boston - Beethoven Elementary School,00350021, 149, 15.6, 280, 46.1, 53.9, 41.8, 19.3,59.6 +NA,NA,a-curv-i5,2022-23,Boston - Blackstone Elementary School,00350390, 459, 13.8, 612, 47.7, 52.3, 49.2, 27.5,89.2 +NA,NA,a-curv-i5,2022-23,Boston - Boston Adult Tech Academy,00350548, 87, 12.1, 220, 43.2, 56.8, 70.5, 12.3,82.7 +NA,NA,a-curv-i5,2022-23,Boston - Boston Arts Academy,00350546, 375, 14.4, 486, 68.9, 29.2, 6.2, 22.4,63.6 +7.056953642384106,5,a-curv-i5,2022-23,Boston - Boston Collaborative High School,00350755, 151, 11.0, 290, 47.9, 51.7, 25.9, 26.2,85.9,178 +NA,NA,a-curv-i5,2022-23,Boston - Boston Community Leadership Academy,00350558, 338, 13.7, 645, 50.5, 48.8, 36.1, 29.5,83.9 +6.201904761904762,5,a-curv-i5,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 210, 14.7, 535, 38.7, 61.3, 92.0, 5.8,87.3,472 +NA,NA,a-curv-i5,2022-23,Boston - Boston Latin Academy,00350545, 531, 22.0," 1,710", 57.1, 42.6, 1.4, 4.4,44.3 +NA,NA,a-curv-i5,2022-23,Boston - Boston Latin School,00350560, 874, 23.1," 2,418", 52.6, 46.9, 0.8, 3.7,27.5 +NA,NA,a-curv-i5,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 134, 19.2, 316, 47.8, 52.2, 17.7, 25.3,54.8 +NA,NA,a-curv-i5,2022-23,Boston - Bradley Elementary School,00350215, 134, 17.7, 292, 52.1, 48.0, 26.7, 23.0,62.3 +6.740828402366864,5,a-curv-i5,2022-23,Boston - Brighton High School,00350505, 338, 14.0, 710, 45.5, 54.5, 58.7, 20.9,81,532 +6.656000000000001,5,a-curv-i5,2022-23,Boston - Burke High School,00350525, 250, 11.5, 418, 45.2, 54.8, 25.1, 25.4,84.5,420 +NA,NA,a-curv-i5,2022-23,Boston - Carter School,00350036, 2, 32.0, 32, 46.9, 53.1, 37.5, 100.0,78.1 +NA,NA,a-curv-i5,2022-23,Boston - Channing Elementary School,00350360, 140, 13.2, 189, 40.7, 59.3, 35.5, 29.6,74.1 +6.5825503355704695,5,a-curv-i5,2022-23,Boston - Charlestown High School,00350515, 447, 13.3, 840, 43.6, 56.3, 43.8, 29.3,81.7,792 +NA,NA,a-curv-i5,2022-23,Boston - Chittick Elementary School,00350154, 254, 9.4, 232, 44.8, 55.2, 31.5, 42.2,81.5 +NA,NA,a-curv-i5,2022-23,Boston - Clap Elementary School,00350298, 69, 13.1, 107, 44.9, 55.1, 24.3, 30.8,80.4 +NA,NA,a-curv-i5,2022-23,Boston - Community Academy,00350518, 38, 9.0, 66, 39.4, 59.1, 10.6, 51.5,87.9 +NA,NA,a-curv-i5,2022-23,Boston - Community Academy of Science and Health,00350581, 150, 13.4, 342, 48.3, 51.8, 24.6, 42.4,86.3 +NA,NA,a-curv-i5,2022-23,Boston - Condon K-8 School,00350146, 448, 14.9, 664, 44.1, 55.9, 39.8, 29.7,84.6 +NA,NA,a-curv-i5,2022-23,Boston - Conley Elementary School,00350122, 116, 11.3, 164, 45.1, 54.9, 29.9, 48.8,61 +NA,NA,a-curv-i5,2022-23,Boston - Curley K-8 School,00350020, 710, 15.6, 957, 43.4, 56.6, 26.4, 33.9,54 +NA,NA,a-curv-i5,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 244, 17.8, 591, 46.7, 53.1, 31.5, 21.7,81.7 +NA,NA,a-curv-i5,2022-23,Boston - Dever Elementary School,00350268, 217, 17.6, 406, 42.6, 57.4, 51.5, 17.7,89.9 +NA,NA,a-curv-i5,2022-23,Boston - East Boston Early Education Center,00350009, 88, 16.9, 187, 47.1, 52.9, 54.6, 15.5,66.3 +5.873333333333333,5,a-curv-i5,2022-23,Boston - East Boston High School,00350530, 480, 15.9," 1,334", 43.6, 56.3, 42.4, 21.5,76.3,1276 +NA,NA,a-curv-i5,2022-23,Boston - Edison K-8 School,00350375, 466, 13.7, 629, 45.5, 54.5, 52.9, 20.4,81.7 +NA,NA,a-curv-i5,2022-23,Boston - Eliot K-8 Innovation School,00350096, 440, 20.1, 820, 48.1, 52.0, 6.7, 20.2,26.1 +NA,NA,a-curv-i5,2022-23,Boston - Ellis Elementary School,00350072, 279, 13.3, 352, 48.9, 51.1, 50.0, 15.6,91.2 +NA,NA,a-curv-i5,2022-23,Boston - Ellison-Parks Early Education School,00350008, 94, 16.1, 195, 50.3, 49.7, 55.4, 33.9,80 +6.877586206896552,5,a-curv-i5,2022-23,Boston - English High School,00350535, 464, 15.6, 695, 45.0, 54.8, 32.1, 25.5,82,651 +NA,NA,a-curv-i5,2022-23,Boston - Everett Elementary School,00350088, 145, 17.7, 286, 51.1, 49.0, 20.3, 22.0,76.6 +6.081767955801105,5,a-curv-i5,2022-23,Boston - Excel High School,00350522, 181, 13.4, 408, 40.4, 58.8, 22.3, 29.2,83.3,434 +6.204761904761905,5,a-curv-i5,2022-23,Boston - Fenway High School,00350540, 168, 14.3, 372, 52.7, 47.0, 21.2, 22.9,74.7,377 +NA,NA,a-curv-i5,2022-23,Boston - Frederick Pilot Middle School,00350383, 249, 14.0, 377, 47.8, 52.3, 50.9, 26.8,90.2 +NA,NA,a-curv-i5,2022-23,Boston - Gardner Pilot Academy,00350326, 150, 18.2, 381, 47.5, 52.0, 35.4, 23.1,78.2 +7.1325301204819285,5,a-curv-i5,2022-23,Boston - Greater Egleston High School,00350543, 83, 9.2, 115, 53.0, 47.0, 13.9, 26.1,92.2,90 +NA,NA,a-curv-i5,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 255, 15.7, 397, 50.4, 49.6, 60.7, 20.9,90.2 +NA,NA,a-curv-i5,2022-23,Boston - Grew Elementary School,00350135, 119, 16.2, 210, 40.5, 59.5, 14.3, 14.8,73.8 +NA,NA,a-curv-i5,2022-23,Boston - Guild Elementary School,00350062, 147, 15.1, 259, 47.9, 52.1, 65.6, 27.8,77.6 +NA,NA,a-curv-i5,2022-23,Boston - Hale Elementary School,00350243, 94, 18.6, 176, 50.6, 49.4, 12.5, 16.5,59.1 +NA,NA,a-curv-i5,2022-23,Boston - Haley Pilot School,00350077, 207, 20.3, 386, 48.2, 51.8, 19.2, 38.9,62.2 +NA,NA,a-curv-i5,2022-23,Boston - Harvard-Kent Elementary School,00350200, 216, 14.3, 369, 45.0, 55.0, 27.1, 31.7,64.8 +NA,NA,a-curv-i5,2022-23,Boston - Haynes Early Education Center,00350010, 128, 17.9, 218, 50.9, 49.1, 49.1, 23.9,80.7 +NA,NA,a-curv-i5,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 72, 20.7, 207, 46.9, 53.1, 25.1, 28.5,65.2 +NA,NA,a-curv-i5,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 330, 18.7, 712, 47.1, 52.7, 14.8, 35.0,76.3 +NA,NA,a-curv-i5,2022-23,Boston - Hennigan K-8 School,00350153, 471, 15.2, 567, 48.2, 51.9, 48.7, 22.1,87.5 +NA,NA,a-curv-i5,2022-23,Boston - Hernandez K-8 School,00350691, 222, 21.8, 427, 52.7, 47.3, 46.8, 14.8,67.9 +NA,NA,a-curv-i5,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 86, 12.3, 130, 45.4, 54.6, 62.3, 46.9,90 +NA,NA,a-curv-i5,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 144, 11.4, 192, 42.2, 57.8, 28.7, 40.1,93.2 +NA,NA,a-curv-i5,2022-23,Boston - Holmes Elementary School,00350138, 189, 14.8, 294, 40.5, 59.5, 21.4, 35.7,91.8 +NA,NA,a-curv-i5,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 177, 4.3, 73, 30.1, 69.9, 60.3, 98.6,80.8 +NA,NA,a-curv-i5,2022-23,Boston - Hurley K-8 School,00350182, 158, 20.3, 363, 53.7, 46.0, 36.1, 18.2,63.4 +NA,NA,a-curv-i5,2022-23,Boston - Kennedy John F Elementary School,00350166, 210, 17.0, 402, 50.0, 50.0, 34.6, 19.4,70.2 +NA,NA,a-curv-i5,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 151, 17.2, 274, 45.3, 54.7, 65.0, 20.8,85.8 +NA,NA,a-curv-i5,2022-23,Boston - Kenny Elementary School,00350328, 181, 17.3, 347, 44.7, 55.0, 22.8, 30.3,59.7 +NA,NA,a-curv-i5,2022-23,Boston - Kilmer K-8 School,00350190, 236, 14.4, 399, 44.9, 54.9, 13.8, 32.3,44.4 +NA,NA,a-curv-i5,2022-23,Boston - King Elementary School,00350376, 303, 13.1, 468, 44.2, 55.8, 37.2, 41.2,91.5 +NA,NA,a-curv-i5,2022-23,Boston - Lee Academy,00350001, 89, 15.7, 205, 44.9, 55.1, 33.7, 33.7,77.1 +NA,NA,a-curv-i5,2022-23,Boston - Lee K-8 School,00350183, 398, 12.7, 563, 41.2, 58.8, 26.1, 46.2,85.8 +NA,NA,a-curv-i5,2022-23,Boston - Lyndon K-8 School,00350262, 337, 15.8, 578, 49.0, 51.0, 8.3, 16.3,29.9 +6.635294117647058,5,a-curv-i5,2022-23,Boston - Lyon High School,00350655, 68, 12.5, 114, 40.4, 58.8, 13.2, 41.2,72.8,116 +NA,NA,a-curv-i5,2022-23,Boston - Lyon K-8 School,00350004, 101, 12.6, 139, 46.8, 53.2, 23.0, 33.8,69.8 +6.218032786885246,5,a-curv-i5,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 488, 15.7," 1,122", 40.1, 59.7, 30.7, 36.8,83.8,1087 +NA,NA,a-curv-i5,2022-23,Boston - Manning Elementary School,00350184, 88, 20.1, 165, 52.7, 47.3, 5.5, 30.3,22.4 +NA,NA,a-curv-i5,2022-23,Boston - Margarita Muniz Academy,00350549, 130, 18.8, 301, 55.2, 44.9, 48.8, 11.6,89.4 +NA,NA,a-curv-i5,2022-23,Boston - Mario Umana Academy,00350656, 411, 16.9, 621, 46.4, 53.6, 71.0, 16.4,83.9 +NA,NA,a-curv-i5,2022-23,Boston - Mason Elementary School,00350304, 123, 14.1, 196, 46.9, 52.6, 29.1, 32.1,82.7 +NA,NA,a-curv-i5,2022-23,Boston - Mather Elementary School,00350227, 314, 16.8, 492, 50.8, 49.2, 34.6, 18.3,74.6 +NA,NA,a-curv-i5,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 10.4, 489, 38.2, 61.8, 37.6, 34.2,81.6 +NA,NA,a-curv-i5,2022-23,Boston - McKay K-8 School,00350080, 324, 19.1, 681, 49.2, 50.8, 45.1, 21.6,77.2 +NA,NA,a-curv-i5,2022-23,Boston - McKinley Schools,00350363, 289, 5.8, 167, 26.4, 73.7, 20.4, 100.0,91.6 +NA,NA,a-curv-i5,2022-23,Boston - Mendell Elementary School,00350100, 143, 19.2, 321, 48.0, 52.0, 17.8, 24.3,57.3 +NA,NA,a-curv-i5,2022-23,Boston - Mildred Avenue K-8 School,00350378, 331, 16.2, 669, 46.8, 53.2, 28.3, 22.9,84.6 +NA,NA,a-curv-i5,2022-23,Boston - Mozart Elementary School,00350237, 79, 19.3, 177, 40.7, 59.3, 14.7, 27.1,36.7 +NA,NA,a-curv-i5,2022-23,Boston - Murphy K-8 School,00350240, 442, 18.5, 872, 47.1, 52.8, 29.4, 21.2,68 +6.180740740740741,5,a-curv-i5,2022-23,Boston - New Mission High School,00350542, 270, 17.7, 621, 49.1, 50.7, 21.1, 18.8,71.3,614 +NA,NA,a-curv-i5,2022-23,Boston - O'Bryant School of Math & Science,00350575, 442, 22.9," 1,547", 51.8, 47.8, 1.7, 4.5,59.3 +NA,NA,a-curv-i5,2022-23,Boston - O'Donnell Elementary School,00350141, 134, 19.5, 297, 52.9, 47.1, 65.7, 11.5,86.2 +NA,NA,a-curv-i5,2022-23,Boston - Ohrenberger School,00350258, 344, 16.0, 487, 46.8, 53.2, 33.7, 22.2,68.8 +NA,NA,a-curv-i5,2022-23,Boston - Orchard Gardens K-8 School,00350257, 408, 15.7, 738, 47.8, 52.2, 50.8, 24.0,86.5 +NA,NA,a-curv-i5,2022-23,Boston - Otis Elementary School,00350156, 222, 19.8, 415, 50.1, 49.9, 52.5, 11.1,74 +NA,NA,a-curv-i5,2022-23,Boston - Perkins Elementary School,00350231, 93, 13.8, 158, 50.0, 50.0, 35.4, 37.3,91.1 +NA,NA,a-curv-i5,2022-23,Boston - Perry Elementary School,00350255, 134, 11.9, 186, 46.8, 53.2, 11.3, 31.7,35 +NA,NA,a-curv-i5,2022-23,Boston - Philbrick Elementary School,00350172, 79, 14.7, 119, 52.1, 47.9, 16.8, 16.0,64.7 +NA,NA,a-curv-i5,2022-23,Boston - Quincy Elementary School,00350286, 544, 16.7, 759, 52.2, 47.8, 37.0, 16.7,57.7 +NA,NA,a-curv-i5,2022-23,Boston - Quincy Upper School,00350565, 210, 22.0, 547, 48.1, 51.7, 17.6, 19.4,70.6 +NA,NA,a-curv-i5,2022-23,Boston - Roosevelt K-8 School,00350116, 159, 17.3, 362, 47.0, 53.0, 16.6, 29.6,66.9 +NA,NA,a-curv-i5,2022-23,Boston - Russell Elementary School,00350366, 168, 19.1, 384, 49.0, 51.0, 49.0, 9.1,80.2 +NA,NA,a-curv-i5,2022-23,Boston - Shaw Elementary School,00350014, 99, 15.1, 182, 51.1, 48.9, 29.1, 15.9,89.6 +5.964835164835165,5,a-curv-i5,2022-23,Boston - Snowden International High School,00350690, 182, 17.1, 470, 49.6, 50.4, 18.3, 23.0,79.4,463 +NA,NA,a-curv-i5,2022-23,Boston - Sumner Elementary School,00350052, 370, 15.7, 553, 48.1, 51.9, 37.4, 21.7,63.8 +NA,NA,a-curv-i5,2022-23,Boston - Taylor Elementary School,00350054, 316, 12.0, 389, 46.0, 54.0, 50.9, 18.5,90.5 +NA,NA,a-curv-i5,2022-23,Boston - TechBoston Academy,00350657, 444, 14.7, 926, 44.8, 55.2, 23.8, 24.1,84 +NA,NA,a-curv-i5,2022-23,Boston - Tobin K-8 School,00350229, 243, 18.2, 423, 48.0, 52.0, 31.0, 19.2,88.9 +NA,NA,a-curv-i5,2022-23,Boston - Trotter Elementary School,00350370, 228, 13.3, 319, 46.7, 53.3, 20.4, 31.4,89 +NA,NA,a-curv-i5,2022-23,Boston - Tynan Elementary School,00350181, 187, 10.3, 201, 38.8, 61.2, 29.9, 53.2,83.1 +NA,NA,a-curv-i5,2022-23,Boston - UP Academy Holland,00350167, 247, 19.3, 621, 50.4, 49.6, 32.7, 18.2,89.7 +NA,NA,a-curv-i5,2022-23,Boston - Warren-Prescott K-8 School,00350346, 249, 18.6, 527, 45.9, 54.1, 13.1, 22.8,41.2 +NA,NA,a-curv-i5,2022-23,Boston - West Zone Early Learning Center,00350006, 59, 14.8, 106, 46.2, 53.8, 56.6, 28.3,71.7 +NA,NA,a-curv-i5,2022-23,Boston - Winship Elementary School,00350374, 149, 20.6, 339, 51.9, 48.1, 27.4, 12.7,60.5 +NA,NA,a-curv-i5,2022-23,Boston - Winthrop Elementary School,00350180, 127, 16.9, 234, 54.3, 45.7, 26.5, 15.0,91 +NA,NA,a-curv-i5,2022-23,Boston - Young Achievers K-8 School,00350380, 354, 15.3, 527, 44.6, 55.4, 36.1, 24.9,89 +NA,NA,a-curv-i5,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 315, 20.1, 713, 47.8, 51.9, 5.5, 18.8,44 +NA,NA,a-curv-i5,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 470, 12.7, 400, 53.0, 46.3, 14.0, 43.3,75.8 +NA,NA,a-curv-i5,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 227, 16.2, 473, 50.3, 49.7, 12.7, 31.5,77.4 +NA,NA,a-curv-i5,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 274, 18.0, 693, 49.8, 50.2, 18.0, 20.4,67.5 +NA,NA,a-curv-i5,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 286, 21.0, 948, 53.4, 46.6, 13.9, 12.6,69.4 +6.746428571428572,5,a-curv-i5,2022-23,Bourne - Bourne High School,00360505, 224, 13.7, 355, 53.5, 46.5, 1.4, 17.8,31.3,351 +NA,NA,a-curv-i5,2022-23,Bourne - Bourne Intermediate School,00360030, 260, 19.0, 381, 52.0, 48.0, 1.8, 22.6,40.4 +NA,NA,a-curv-i5,2022-23,Bourne - Bourne Middle School,00360325, 325, 15.9, 444, 50.2, 49.8, 0.9, 20.1,37.6 +NA,NA,a-curv-i5,2022-23,Bourne - Bournedale Elementary School,00360005, 249, 17.1, 416, 46.4, 53.6, 2.6, 25.2,35.6 +NA,NA,a-curv-i5,2022-23,Boxford - Harry Lee Cole,00380005, 126, 15.3, 354, 47.5, 52.5, 1.4, 19.2,7.6 +NA,NA,a-curv-i5,2022-23,Boxford - Spofford Pond,00380013, 187, 17.1, 385, 47.8, 52.2, 0.8, 23.6,10.9 +NA,NA,a-curv-i5,2022-23,Braintree - Archie T Morrison,00400033, 211, 13.2, 302, 54.3, 45.7, 14.9, 25.2,37.4 +NA,NA,a-curv-i5,2022-23,Braintree - Braintree High,00400505, 847, 16.3," 1,755", 48.8, 50.9, 5.0, 25.0,27.1 +NA,NA,a-curv-i5,2022-23,Braintree - Donald Ross,00400050, 111, 17.1, 205, 57.1, 42.9, 19.5, 20.5,41 +NA,NA,a-curv-i5,2022-23,Braintree - East Middle School,00400305, 523, 17.0, 989, 46.8, 53.1, 5.4, 24.7,34.3 +NA,NA,a-curv-i5,2022-23,Braintree - Highlands,00400015, 190, 19.7, 412, 47.3, 52.7, 8.0, 18.0,20.2 +NA,NA,a-curv-i5,2022-23,Braintree - Hollis,00400005, 231, 13.3, 332, 46.4, 53.3, 15.4, 25.3,30.7 +NA,NA,a-curv-i5,2022-23,Braintree - Liberty,00400025, 173, 19.0, 360, 44.4, 55.6, 9.4, 15.8,16.4 +NA,NA,a-curv-i5,2022-23,Braintree - Mary E Flaherty School,00400020, 134, 18.2, 296, 44.9, 55.1, 12.2, 26.4,25 +NA,NA,a-curv-i5,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 100, 17.4, 201, 44.8, 55.2, 14.4, 14.4,30.4 +NA,NA,a-curv-i5,2022-23,Braintree - South Middle School,00400310, 301, 15.7, 520, 51.2, 48.7, 2.5, 17.3,21.5 +NA,NA,a-curv-i5,2022-23,Brewster - Eddy Elementary,00410010, 123, 18.5, 202, 49.0, 51.0, 3.0, 27.2,43.1 +NA,NA,a-curv-i5,2022-23,Brewster - Stony Brook Elementary,00410005, 143, 16.3, 234, 54.7, 45.3, 4.7, 22.2,36.3 +NA,NA,a-curv-i5,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 103, 17.4, 334, 53.0, 47.0, 25.8, 22.2,74.6 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 285, 21.6, 765, 48.6, 51.4, 2.6, 18.7,27.8 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 576, 16.5," 1,388", 48.4, 51.5, 2.0, 14.8,27 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 166, 21.5, 498, 47.0, 53.0, 2.6, 18.1,25.7 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 104, 24.2, 357, 47.9, 52.1, 5.6, 14.9,28.3 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 290, 20.5," 1,004", 48.1, 51.9, 3.7, 27.4,26.4 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 247, 24.1, 732, 49.9, 50.1, 0.8, 18.0,25.7 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 18, 3.3, 14, 64.3, 35.7, 0.0, 92.9,57.1 +NA,NA,a-curv-i5,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 253, 23.0, 803, 47.1, 52.9, 4.7, 21.5,28.6 +NA,NA,a-curv-i5,2022-23,Brimfield - Brimfield Elementary,00430005, 81, 18.1, 291, 51.2, 48.8, 1.0, 14.1,30.2 +NA,NA,a-curv-i5,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 300, 18.2, 550, 68.7, 31.1, 0.2, 15.3,30.7 +NA,NA,a-curv-i5,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 975, 17.4," 1,309", 43.0, 56.8, 0.5, 14.8,30.9 +NA,NA,a-curv-i5,2022-23,Brockton - Ashfield Middle School,00440421, 221, 17.8, 481, 47.4, 52.6, 25.4, 21.2,63.8 +NA,NA,a-curv-i5,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 33, 10.5, 337, 40.7, 59.4, 15.1, 63.8,75.7 +7.264,5,a-curv-i5,2022-23,Brockton - Brockton Champion High School,00440515, 150, 9.9, 200, 48.0, 51.5, 17.0, 30.0,80.5,138 +NA,NA,a-curv-i5,2022-23,Brockton - Brockton High,00440505," 1,880", 16.7," 3,715", 44.9, 55.0, 28.4, 15.5,69.6 +NA,NA,a-curv-i5,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 167, 11.3, 219, 51.1, 48.4, 11.9, 24.2,79 +NA,NA,a-curv-i5,2022-23,Brockton - Brookfield,00440010, 235, 16.1, 444, 47.5, 52.5, 37.4, 22.3,71.6 +NA,NA,a-curv-i5,2022-23,Brockton - Downey,00440110, 282, 15.9, 583, 43.7, 56.3, 20.4, 31.4,81 +NA,NA,a-curv-i5,2022-23,Brockton - Dr W Arnone Community School,00440001, 407, 15.4, 788, 47.7, 52.3, 34.0, 24.8,83.8 +NA,NA,a-curv-i5,2022-23,Brockton - East Middle School,00440405, 255, 20.0, 493, 45.0, 55.0, 41.2, 23.7,78.7 +NA,NA,a-curv-i5,2022-23,Brockton - Edgar B Davis,00440023, 525, 20.5, 948, 51.6, 48.4, 29.3, 10.0,78.4 +NA,NA,a-curv-i5,2022-23,Brockton - Edison Academy,00440520, 110, 12.0, 311, 44.1, 56.0, 55.6, 8.4,76.5 +NA,NA,a-curv-i5,2022-23,Brockton - Gilmore Elementary School,00440055, 166, 24.9, 413, 47.9, 52.1, 47.9, 10.9,85.2 +NA,NA,a-curv-i5,2022-23,Brockton - Hancock,00440045, 267, 19.6, 648, 53.7, 46.3, 28.6, 13.1,66.5 +NA,NA,a-curv-i5,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 52, 6.0, 37, 32.4, 64.9, 18.9, 100.0,91.9 +NA,NA,a-curv-i5,2022-23,Brockton - John F Kennedy,00440017, 258, 18.2, 552, 51.8, 48.2, 35.0, 15.4,67.8 +NA,NA,a-curv-i5,2022-23,Brockton - Louis F Angelo Elementary,00440065, 390, 18.1, 829, 44.5, 55.5, 35.8, 21.2,77.3 +NA,NA,a-curv-i5,2022-23,Brockton - Manthala George Jr. School,00440003, 346, 18.7, 836, 50.4, 49.6, 36.1, 13.6,72.5 +NA,NA,a-curv-i5,2022-23,Brockton - Mary E. Baker School,00440002, 404, 14.9, 700, 50.0, 50.0, 28.4, 22.3,68.7 +NA,NA,a-curv-i5,2022-23,Brockton - North Middle School,00440410, 210, 19.0, 463, 49.5, 50.5, 14.9, 12.5,81.9 +NA,NA,a-curv-i5,2022-23,Brockton - Oscar F Raymond,00440078, 363, 18.9, 806, 47.8, 52.2, 40.0, 20.8,85.5 +NA,NA,a-curv-i5,2022-23,Brockton - PROMISE College and Career Academy,00440525, 67, 9.8, 39, 43.6, 56.4, 12.8, 10.3,59 +NA,NA,a-curv-i5,2022-23,Brockton - Plouffe Middle School,00440422, 359, 20.1, 706, 49.9, 50.1, 30.6, 17.9,75.1 +NA,NA,a-curv-i5,2022-23,Brockton - South Middle School,00440415, 308, 15.5, 549, 45.9, 54.1, 32.6, 18.9,78.3 +NA,NA,a-curv-i5,2022-23,Brockton - West Middle School,00440420, 363, 17.4, 573, 48.0, 52.0, 9.4, 20.8,64.1 +NA,NA,a-curv-i5,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 907, 19.2," 2,215", 51.5, 48.2, 8.4, 14.2,62.5 +NA,NA,a-curv-i5,2022-23,Brookfield - Brookfield Elementary,00450005, 77, 19.2, 292, 48.0, 52.1, 1.0, 14.7,40.1 +NA,NA,a-curv-i5,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 12.0, 60, 35.0, 65.0, 11.7, 35.0,15 +NA,NA,a-curv-i5,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 6, 12.7, 76, 43.4, 56.6, 11.8, 26.3,10.5 +NA,NA,a-curv-i5,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 4, 13.8, 55, 41.8, 58.2, 12.7, 32.7,12.7 +NA,NA,a-curv-i5,2022-23,Brookline - Brookline High,00460505," 1,157", 14.5," 2,079", 49.7, 49.4, 2.8, 18.3,15.2 +NA,NA,a-curv-i5,2022-23,Brookline - Edith C Baker,00460005, 404, 17.7, 677, 48.9, 51.1, 18.8, 17.3,14.9 +NA,NA,a-curv-i5,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 465, 18.9, 852, 51.6, 48.4, 17.3, 16.0,17.7 +NA,NA,a-curv-i5,2022-23,Brookline - Heath,00460025, 281, 17.1, 453, 48.8, 51.2, 8.0, 16.8,12.6 +NA,NA,a-curv-i5,2022-23,Brookline - John D Runkle,00460045, 290, 17.6, 504, 45.8, 54.0, 11.5, 23.6,10.9 +NA,NA,a-curv-i5,2022-23,Brookline - Lawrence,00460030, 380, 17.5, 618, 52.1, 47.9, 21.8, 17.0,12.6 +NA,NA,a-curv-i5,2022-23,Brookline - Michael Driscoll,00460020, 287, 17.1, 472, 46.2, 53.8, 11.0, 14.8,12.3 +NA,NA,a-curv-i5,2022-23,Brookline - Pierce,00460040, 400, 18.3, 692, 51.3, 48.0, 13.9, 14.7,12.4 +NA,NA,a-curv-i5,2022-23,Brookline - The Lynch Center,00460060, 5, 11.6, 58, 39.7, 60.3, 12.1, 41.4,29.3 +NA,NA,a-curv-i5,2022-23,Brookline - William H Lincoln,00460035, 322, 15.7, 478, 51.1, 49.0, 18.4, 25.5,19.5 +NA,NA,a-curv-i5,2022-23,Burlington - Burlington High,00480505, 562, 12.8," 1,010", 47.1, 52.6, 9.0, 11.5,18.8 +NA,NA,a-curv-i5,2022-23,Burlington - Fox Hill,00480007, 205, 16.7, 433, 52.0, 48.0, 7.6, 14.3,18.7 +NA,NA,a-curv-i5,2022-23,Burlington - Francis Wyman Elementary,00480035, 259, 15.2, 499, 49.7, 50.3, 7.6, 16.2,21 +NA,NA,a-curv-i5,2022-23,Burlington - Marshall Simonds Middle,00480303, 557, 17.5, 840, 50.1, 49.4, 4.6, 16.1,21.1 +NA,NA,a-curv-i5,2022-23,Burlington - Memorial,00480015, 190, 16.7, 399, 49.1, 50.9, 11.0, 14.3,24.3 +NA,NA,a-curv-i5,2022-23,Burlington - Pine Glen Elementary,00480020, 167, 15.8, 332, 47.3, 52.7, 15.1, 19.3,16 +NA,NA,a-curv-i5,2022-23,Cambridge - Amigos School,00490006, 194, 18.7, 404, 49.5, 50.3, 8.2, 12.1,26 +NA,NA,a-curv-i5,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,150", 14.5," 1,910", 50.9, 48.5, 5.0, 19.6,37.7 +NA,NA,a-curv-i5,2022-23,Cambridge - Cambridge Street Upper School,00490305, 231, 15.6, 297, 50.2, 49.5, 2.7, 29.0,45.5 +NA,NA,a-curv-i5,2022-23,Cambridge - Cambridgeport,00490007, 127, 17.1, 266, 50.4, 48.5, 5.6, 19.2,29.7 +NA,NA,a-curv-i5,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 228, 10.3, 248, 41.5, 58.5, 10.9, 36.3,66.1 +NA,NA,a-curv-i5,2022-23,Cambridge - Graham and Parks,00490080, 181, 15.3, 375, 46.7, 53.3, 36.5, 21.1,29.9 +NA,NA,a-curv-i5,2022-23,Cambridge - Haggerty,00490020, 110, 16.2, 244, 52.9, 47.1, 13.9, 28.7,35.7 +NA,NA,a-curv-i5,2022-23,Cambridge - John M Tobin,00490065, 293, 7.5, 324, 46.9, 53.1, 4.3, 30.3,28.1 +NA,NA,a-curv-i5,2022-23,Cambridge - Kennedy-Longfellow,00490040, 163, 10.8, 205, 47.8, 52.2, 44.4, 23.4,54.6 +NA,NA,a-curv-i5,2022-23,Cambridge - King Open,00490035, 238, 12.9, 366, 48.1, 51.9, 9.3, 27.1,39.3 +NA,NA,a-curv-i5,2022-23,Cambridge - Maria L. Baldwin,00490005, 194, 15.2, 348, 51.2, 48.9, 6.9, 19.8,19.5 +NA,NA,a-curv-i5,2022-23,Cambridge - Martin Luther King Jr.,00490030, 182, 15.6, 322, 49.4, 50.6, 10.3, 18.6,20.2 +NA,NA,a-curv-i5,2022-23,Cambridge - Morse,00490045, 157, 14.7, 308, 48.1, 52.0, 9.1, 30.5,36 +NA,NA,a-curv-i5,2022-23,Cambridge - Peabody,00490050, 135, 19.6, 318, 48.1, 51.9, 9.4, 27.4,31.1 +NA,NA,a-curv-i5,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 133, 17.8, 248, 47.2, 52.8, 3.6, 25.4,52.4 +NA,NA,a-curv-i5,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 140, 21.9, 281, 47.7, 51.6, 2.9, 18.2,29.9 +NA,NA,a-curv-i5,2022-23,Cambridge - Vassal Lane Upper School,00490320, 147, 16.3, 282, 47.9, 51.8, 17.0, 25.2,39.4 +NA,NA,a-curv-i5,2022-23,Canton - Canton High,00500505, 534, 15.0, 907, 54.7, 45.0, 1.1, 13.5,20.8 +NA,NA,a-curv-i5,2022-23,Canton - Dean S Luce,00500020, 433, 18.2, 454, 47.8, 52.2, 8.4, 17.4,24.2 +NA,NA,a-curv-i5,2022-23,Canton - John F Kennedy,00500017, 434, 19.2, 477, 47.0, 53.0, 4.8, 13.8,15.9 +NA,NA,a-curv-i5,2022-23,Canton - Lt Peter M Hansen,00500012, 435, 21.2, 537, 46.7, 53.3, 2.8, 16.2,22.7 +NA,NA,a-curv-i5,2022-23,Canton - Rodman Early Childhood Center,00500010, 32, 12.8, 102, 42.2, 57.8, 0.0, 43.1,25.5 +NA,NA,a-curv-i5,2022-23,Canton - Wm H Galvin Middle,00500305, 486, 16.4, 749, 51.5, 48.5, 2.4, 16.2,23.1 +NA,NA,a-curv-i5,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 192, 16.9, 249, 51.4, 48.6, 0.0, 20.9,22.9 +NA,NA,a-curv-i5,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 395, 16.0, 676, 38.2, 61.7, 2.1, 20.6,45 +NA,NA,a-curv-i5,2022-23,Carlisle - Carlisle School,00510025, 313, 17.1, 605, 49.4, 50.4, 2.2, 13.7,5.1 +NA,NA,a-curv-i5,2022-23,Carver - Carver Elementary School,00520015, 422, 19.0, 794, 50.5, 49.5, 2.9, 17.0,30 +6.794388777555111,5,a-curv-i5,2022-23,Carver - Carver Middle/High School,00520405, 499, 14.2, 765, 46.8, 53.1, 0.5, 21.6,33.5,752 +NA,NA,a-curv-i5,2022-23,Central Berkshire - Becket Washington School,06350005, 50, 15.2, 114, 51.8, 48.3, 0.9, 28.1,58.8 +NA,NA,a-curv-i5,2022-23,Central Berkshire - Craneville,06350025, 178, 20.2, 443, 48.5, 51.2, 0.9, 17.6,45.2 +NA,NA,a-curv-i5,2022-23,Central Berkshire - Kittredge,06350035, 56, 19.0, 163, 50.9, 49.1, 0.6, 22.1,38.7 +NA,NA,a-curv-i5,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 183, 20.6, 349, 48.7, 51.3, 0.3, 20.1,43.6 +NA,NA,a-curv-i5,2022-23,Central Berkshire - Wahconah Regional High,06350505, 263, 13.8, 483, 49.9, 50.1, 1.0, 12.0,35 +NA,NA,a-curv-i5,2022-23,Chelmsford - Byam School,00560030, 169, 21.5, 511, 48.1, 51.9, 8.0, 19.0,17.8 +NA,NA,a-curv-i5,2022-23,Chelmsford - Center Elementary School,00560005, 162, 21.8, 496, 47.0, 52.8, 7.7, 16.3,16.7 +NA,NA,a-curv-i5,2022-23,Chelmsford - Charles D Harrington,00560025, 162, 20.7, 477, 52.2, 47.8, 6.1, 16.8,29.4 +NA,NA,a-curv-i5,2022-23,Chelmsford - Chelmsford High,00560505, 689, 16.8," 1,367", 47.6, 51.9, 1.5, 14.7,14.8 +NA,NA,a-curv-i5,2022-23,Chelmsford - Col Moses Parker School,00560305, 448, 15.0, 731, 48.2, 51.7, 2.6, 22.4,22.2 +NA,NA,a-curv-i5,2022-23,Chelmsford - Community Education Center,00560001, 136, 14.1, 239, 33.5, 66.5, 18.0, 59.4,25.1 +NA,NA,a-curv-i5,2022-23,Chelmsford - McCarthy Middle School,00560310, 427, 18.5, 855, 47.8, 51.6, 2.5, 20.8,20.1 +NA,NA,a-curv-i5,2022-23,Chelmsford - South Row,00560015, 148, 22.9, 480, 48.8, 51.3, 9.2, 17.5,15.6 +NA,NA,a-curv-i5,2022-23,Chelsea - Chelsea High,00570505, 590, 24.6," 1,712", 45.2, 54.7, 35.8, 12.6,77.8 +NA,NA,a-curv-i5,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 75, 6.3, 126, 30.2, 69.8, 61.9, 14.3,79.4 +NA,NA,a-curv-i5,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 42, 10.4, 115, 63.5, 36.5, 27.0, 24.4,85.2 +NA,NA,a-curv-i5,2022-23,Chelsea - Clark Avenue School,00570050, 323, 25.3, 714, 48.3, 51.7, 35.0, 18.2,79.6 +NA,NA,a-curv-i5,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 125, 20.1, 503, 44.5, 55.5, 54.3, 20.1,80.1 +NA,NA,a-curv-i5,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 246, 18.3, 471, 50.1, 49.9, 27.8, 26.8,79.8 +NA,NA,a-curv-i5,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 115, 21.5, 495, 50.1, 49.9, 58.4, 11.1,88.5 +NA,NA,a-curv-i5,2022-23,Chelsea - George F. Kelly Elementary,00570035, 135, 20.0, 479, 52.6, 47.4, 52.2, 12.9,76.8 +NA,NA,a-curv-i5,2022-23,Chelsea - Joseph A. Browne School,00570055, 216, 24.6, 554, 44.0, 56.0, 43.1, 15.0,82.9 +NA,NA,a-curv-i5,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 146, 18.4, 872, 46.3, 53.7, 65.9, 23.4,81.7 +NA,NA,a-curv-i5,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 120, 18.8, 452, 55.8, 44.3, 46.0, 21.2,83.6 +NA,NA,a-curv-i5,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 65, 15.7, 154, 42.9, 57.1, 0.0, 17.5,39 +NA,NA,a-curv-i5,2022-23,Chicopee - Barry,00610003, 107, 16.9, 363, 45.2, 54.8, 6.9, 21.8,62.5 +NA,NA,a-curv-i5,2022-23,Chicopee - Belcher,00610010, 53, 18.2, 232, 49.1, 50.9, 8.2, 19.4,77.2 +NA,NA,a-curv-i5,2022-23,Chicopee - Bellamy Middle,00610305, 434, 18.0, 823, 47.5, 52.4, 5.7, 19.2,64.5 +NA,NA,a-curv-i5,2022-23,Chicopee - Bowe,00610015, 101, 20.7, 417, 50.4, 49.6, 17.3, 15.6,86.6 +NA,NA,a-curv-i5,2022-23,Chicopee - Bowie,00610020, 94, 17.8, 273, 52.4, 47.6, 4.4, 15.4,46.9 +NA,NA,a-curv-i5,2022-23,Chicopee - Chicopee Academy,00610021, 84, 7.3, 97, 32.0, 67.0, 3.1, 25.8,85.6 +6.466136724960253,5,a-curv-i5,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 629, 14.6," 1,203", 41.4, 58.3, 3.6, 12.9,51.2,1206 +NA,NA,a-curv-i5,2022-23,Chicopee - Chicopee High,00610505, 481, 16.4, 927, 52.1, 47.7, 7.0, 17.9,70.7 +NA,NA,a-curv-i5,2022-23,Chicopee - Dupont Middle,00610310, 436, 16.8, 703, 44.7, 55.1, 7.7, 20.9,69.6 +NA,NA,a-curv-i5,2022-23,Chicopee - Fairview Elementary,00610050, 127, 14.2, 371, 45.8, 54.2, 9.4, 23.2,81.9 +NA,NA,a-curv-i5,2022-23,Chicopee - Gen John J Stefanik,00610090, 94, 17.2, 396, 48.5, 51.5, 13.1, 20.5,83.8 +NA,NA,a-curv-i5,2022-23,Chicopee - Lambert-Lavoie,00610040, 71, 13.4, 233, 42.9, 57.1, 3.0, 16.3,62.2 +NA,NA,a-curv-i5,2022-23,Chicopee - Litwin,00610022, 108, 15.7, 338, 49.7, 50.3, 6.8, 19.5,67.2 +NA,NA,a-curv-i5,2022-23,Chicopee - Streiber Memorial School,00610065, 79, 14.6, 228, 44.7, 55.3, 4.4, 16.2,57 +NA,NA,a-curv-i5,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 30, 12.6, 293, 43.0, 57.0, 0.0, 59.7,63.5 +NA,NA,a-curv-i5,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 139, 18.4, 329, 40.7, 57.5, 7.0, 24.6,50.5 +NA,NA,a-curv-i5,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 96, 13.9, 190, 51.1, 49.0, 22.6, 18.4,77.4 +NA,NA,a-curv-i5,2022-23,Clarksburg - Clarksburg Elementary,00630010, 75, 16.0, 193, 46.6, 53.4, 0.0, 20.2,38.3 +NA,NA,a-curv-i5,2022-23,Clinton - Clinton Elementary,00640050, 322, 21.2, 853, 47.4, 52.6, 21.2, 23.2,54.3 +NA,NA,a-curv-i5,2022-23,Clinton - Clinton Middle School,00640305, 283, 16.4, 557, 47.8, 52.2, 19.2, 20.7,56 +NA,NA,a-curv-i5,2022-23,Clinton - Clinton Senior High,00640505, 264, 14.0, 572, 42.5, 57.3, 14.0, 17.1,50 +NA,NA,a-curv-i5,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 125, 15.7, 342, 49.7, 50.3, 10.2, 22.8,80.1 +6.891318327974277,5,a-curv-i5,2022-23,Cohasset - Cohasset High School,00650505, 311, 14.0, 433, 47.1, 52.9, 0.0, 12.9,8.6,431 +NA,NA,a-curv-i5,2022-23,Cohasset - Cohasset Middle School,00650305, 217, 13.9, 298, 49.3, 50.7, 0.7, 20.5,7.4 +NA,NA,a-curv-i5,2022-23,Cohasset - Deer Hill,00650005, 120, 20.4, 306, 52.3, 47.7, 0.3, 16.7,7.5 +NA,NA,a-curv-i5,2022-23,Cohasset - Joseph Osgood,00650010, 146, 19.2, 374, 50.5, 49.5, 0.0, 16.3,4 +NA,NA,a-curv-i5,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 385, 27.1," 1,169", 51.5, 48.4, 28.8, 8.6,64.4 +NA,NA,a-curv-i5,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 147, 11.0, 256, 57.4, 42.6, 13.7, 19.1,58.6 +NA,NA,a-curv-i5,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 331, 21.9," 1,208", 50.6, 49.4, 24.4, 15.0,71.5 +NA,NA,a-curv-i5,2022-23,Concord - Alcott,00670005, 254, 18.2, 425, 51.1, 48.9, 2.4, 17.9,14.6 +NA,NA,a-curv-i5,2022-23,Concord - Concord Middle,00670305, 407, 17.6, 656, 48.5, 51.4, 2.1, 19.2,10.2 +NA,NA,a-curv-i5,2022-23,Concord - Thoreau,00670020, 265, 18.1, 442, 47.3, 52.7, 2.7, 24.7,7.2 +NA,NA,a-curv-i5,2022-23,Concord - Willard,00670030, 277, 17.8, 456, 50.7, 49.3, 3.5, 19.5,6.4 +NA,NA,a-curv-i5,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 566, 18.8," 1,316", 46.7, 52.8, 0.7, 16.6,8.2 +NA,NA,a-curv-i5,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 228, 16.7, 446, 52.2, 47.8, 9.4, 21.8,68.6 +NA,NA,a-curv-i5,2022-23,Conway - Conway Grammar,00680005, 108, 13.4, 136, 42.7, 57.4, 0.0, 24.3,25.7 +NA,NA,a-curv-i5,2022-23,Danvers - Danvers High,00710505, 450, 14.2, 779, 49.6, 49.6, 1.7, 19.4,24.8 +NA,NA,a-curv-i5,2022-23,Danvers - Great Oak,00710015, 191, 18.1, 305, 52.1, 47.9, 3.9, 15.7,29.2 +NA,NA,a-curv-i5,2022-23,Danvers - Highlands,00710010, 194, 21.7, 388, 45.9, 54.1, 4.6, 14.7,28.1 +NA,NA,a-curv-i5,2022-23,Danvers - Holten Richmond Middle School,00710305, 635, 16.8, 781, 50.8, 48.9, 1.2, 19.1,26.4 +NA,NA,a-curv-i5,2022-23,Danvers - Ivan G Smith,00710032, 203, 18.2, 337, 48.7, 51.3, 2.4, 22.0,17.2 +NA,NA,a-curv-i5,2022-23,Danvers - Riverside,00710030, 183, 17.1, 332, 43.7, 56.3, 3.6, 31.9,26.2 +NA,NA,a-curv-i5,2022-23,Danvers - Willis E Thorpe,00710045, 173, 19.0, 338, 52.1, 47.9, 3.0, 25.2,21.6 +NA,NA,a-curv-i5,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 38, 13.7, 142, 43.7, 56.3, 2.1, 36.6,38 +NA,NA,a-curv-i5,2022-23,Dartmouth - Dartmouth High,00720505, 486, 17.5, 990, 52.2, 47.7, 1.1, 15.4,26 +NA,NA,a-curv-i5,2022-23,Dartmouth - Dartmouth Middle,00720050, 651, 14.7, 805, 46.0, 54.0, 0.6, 20.1,31.6 +NA,NA,a-curv-i5,2022-23,Dartmouth - George H Potter,00720030, 160, 21.5, 403, 50.4, 49.6, 3.2, 17.6,33 +NA,NA,a-curv-i5,2022-23,Dartmouth - James M. Quinn School,00720040, 300, 20.8, 707, 46.4, 53.6, 2.1, 21.8,30.4 +NA,NA,a-curv-i5,2022-23,Dartmouth - Joseph Demello,00720015, 180, 17.4, 348, 49.4, 50.3, 1.7, 21.6,29.9 +NA,NA,a-curv-i5,2022-23,Dedham - Avery,00730010, 84, 17.5, 295, 45.8, 54.2, 15.9, 25.4,45.1 +NA,NA,a-curv-i5,2022-23,Dedham - Dedham High,00730505, 388, 14.7, 728, 46.4, 52.3, 6.2, 18.3,28.3 +NA,NA,a-curv-i5,2022-23,Dedham - Dedham Middle School,00730305, 453, 15.7, 567, 49.7, 50.3, 5.1, 26.3,31.4 +NA,NA,a-curv-i5,2022-23,Dedham - Early Childhood Center,00730005, 100, 15.3, 330, 50.0, 50.0, 7.9, 20.9,23.9 +NA,NA,a-curv-i5,2022-23,Dedham - Greenlodge,00730025, 77, 18.4, 281, 47.0, 52.7, 3.9, 22.8,14.2 +NA,NA,a-curv-i5,2022-23,Dedham - Oakdale,00730030, 59, 17.6, 246, 54.9, 45.1, 4.1, 19.5,16.3 +NA,NA,a-curv-i5,2022-23,Dedham - Riverdale,00730045, 50, 18.3, 183, 49.2, 50.8, 8.2, 31.7,34.4 +NA,NA,a-curv-i5,2022-23,Deerfield - Deerfield Elementary,00740015, 230, 15.8, 327, 45.9, 53.8, 0.6, 23.9,19.3 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 366, 17.0, 479, 48.6, 51.4, 16.5, 18.8,57.2 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 356, 15.1, 484, 43.2, 56.6, 11.6, 15.1,55.2 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 634, 13.2, 900, 49.6, 50.0, 11.7, 18.2,54.3 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 111, 13.8, 365, 47.4, 52.6, 15.6, 25.8,61.6 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 76, 13.0, 302, 46.4, 53.6, 25.5, 20.2,63.3 +NA,NA,a-curv-i5,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 88, 19.1, 419, 44.9, 55.1, 13.4, 8.6,51.3 +NA,NA,a-curv-i5,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 244, 17.9, 466, 48.9, 51.1, 1.5, 23.4,27 +NA,NA,a-curv-i5,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 296, 17.1, 368, 47.3, 52.5, 1.1, 17.9,21.5 +6.420689655172414,5,a-curv-i5,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 348, 15.3, 683, 47.9, 51.8, 0.4, 15.8,23.4,687 +NA,NA,a-curv-i5,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 277, 16.6, 454, 50.2, 49.3, 0.7, 20.0,17.6 +NA,NA,a-curv-i5,2022-23,Dighton-Rehoboth - Palmer River,06500010, 332, 19.0, 594, 45.8, 54.2, 0.7, 19.2,18.4 +NA,NA,a-curv-i5,2022-23,Douglas - Douglas Elementary School,00770015, 120, 21.7, 346, 47.1, 52.9, 2.9, 17.9,26.3 +6.606451612903226,5,a-curv-i5,2022-23,Douglas - Douglas High School,00770505, 186, 13.1, 324, 48.2, 51.5, 0.9, 18.8,25.9,324 +NA,NA,a-curv-i5,2022-23,Douglas - Douglas Middle School,00770305, 158, 21.4, 305, 47.5, 52.5, 1.6, 23.6,22 +NA,NA,a-curv-i5,2022-23,Douglas - Douglas Primary School,00770005, 75, 16.6, 219, 42.0, 58.0, 1.8, 14.2,26.9 +NA,NA,a-curv-i5,2022-23,Dover - Chickering,00780005, 184, 19.0, 514, 46.9, 53.1, 2.3, 18.5,4.5 +NA,NA,a-curv-i5,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 376, 15.6, 667, 50.1, 49.5, 0.6, 13.9,6.3 +NA,NA,a-curv-i5,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 335, 17.0, 484, 47.5, 52.5, 0.4, 17.2,6.4 +NA,NA,a-curv-i5,2022-23,Dracut - Brookside Elementary,00790035, 197, 20.1, 512, 48.6, 51.4, 5.7, 17.2,40.6 +NA,NA,a-curv-i5,2022-23,Dracut - Dracut Senior High,00790505, 419, 17.2, 855, 50.4, 49.1, 6.3, 13.2,33.1 +NA,NA,a-curv-i5,2022-23,Dracut - George H. Englesby Elementary School,00790045, 194, 23.1, 550, 46.9, 53.1, 5.1, 16.7,43.8 +NA,NA,a-curv-i5,2022-23,Dracut - Greenmont Avenue,00790030, 98, 19.4, 236, 46.6, 53.4, 10.2, 12.7,47.5 +NA,NA,a-curv-i5,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 232, 19.6, 602, 45.2, 54.8, 7.0, 19.9,24.8 +NA,NA,a-curv-i5,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 752, 17.9, 876, 47.2, 52.5, 5.4, 15.5,35.2 +NA,NA,a-curv-i5,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 15, 26.6, 282, 48.9, 51.1, 27.7, 17.0,76.2 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 116, 19.7, 357, 48.5, 51.5, 6.4, 26.6,35.9 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 362, 17.0, 604, 46.9, 53.2, 1.3, 18.1,26.8 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 124, 22.7, 342, 49.4, 50.6, 7.3, 24.0,40.6 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 255, 20.3, 566, 45.6, 54.4, 2.3, 17.8,39.6 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 186, 22.7, 449, 48.6, 51.2, 6.5, 20.9,32.1 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 86, 17.9, 239, 47.7, 52.3, 5.9, 17.2,38.1 +NA,NA,a-curv-i5,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 407, 17.7, 928, 52.1, 47.4, 1.1, 12.1,30.4 +NA,NA,a-curv-i5,2022-23,Duxbury - Alden School,00820004, 300, 20.2, 598, 46.7, 53.3, 0.7, 18.7,8.2 +NA,NA,a-curv-i5,2022-23,Duxbury - Chandler Elementary,00820006, 314, 20.0, 659, 49.8, 50.1, 1.5, 16.2,10.2 +NA,NA,a-curv-i5,2022-23,Duxbury - Duxbury High,00820505, 469, 17.2, 929, 48.4, 51.5, 0.3, 12.0,7.9 +NA,NA,a-curv-i5,2022-23,Duxbury - Duxbury Middle,00820305, 279, 20.2, 620, 50.2, 49.8, 0.2, 15.8,7.3 +NA,NA,a-curv-i5,2022-23,East Bridgewater - Central,00830005, 270, 14.7, 524, 47.5, 52.5, 4.2, 23.3,30 +6.6277039848197346,5,a-curv-i5,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 527, 19.0, 920, 45.3, 54.5, 1.5, 17.5,25.5,904 +NA,NA,a-curv-i5,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 331, 21.4, 639, 51.3, 48.7, 3.1, 18.5,28.6 +NA,NA,a-curv-i5,2022-23,East Longmeadow - Birchland Park,00870305, 454, 16.7, 600, 42.5, 57.3, 1.2, 21.8,28 +NA,NA,a-curv-i5,2022-23,East Longmeadow - East Longmeadow High,00870505, 331, 17.9, 817, 48.4, 51.5, 0.5, 18.1,25.5 +NA,NA,a-curv-i5,2022-23,East Longmeadow - Mapleshade,00870010, 166, 16.8, 290, 49.3, 50.7, 4.1, 24.1,32.8 +NA,NA,a-curv-i5,2022-23,East Longmeadow - Meadow Brook,00870013, 192, 18.6, 575, 45.9, 54.1, 5.7, 25.2,28.7 +NA,NA,a-curv-i5,2022-23,East Longmeadow - Mountain View,00870015, 121, 16.1, 271, 48.7, 51.3, 0.4, 25.8,21.4 +NA,NA,a-curv-i5,2022-23,Eastham - Eastham Elementary,00850005, 133, 15.4, 196, 44.9, 55.1, 4.1, 16.8,46.9 +NA,NA,a-curv-i5,2022-23,Easthampton - Easthampton High,00860505, 188, 12.8, 375, 47.5, 51.2, 1.9, 23.7,39.2 +NA,NA,a-curv-i5,2022-23,Easthampton - Mountain View School,00860415, 287, 18.2," 1,053", 47.7, 52.0, 3.3, 30.0,39.9 +NA,NA,a-curv-i5,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 192, 18.9, 771, 44.6, 55.4, 7.0, 16.7,22.4 +NA,NA,a-curv-i5,2022-23,Easton - Easton Middle School,00880405, 502, 18.4, 832, 48.9, 51.1, 1.2, 23.4,20.3 +NA,NA,a-curv-i5,2022-23,Easton - Oliver Ames High,00880505, 517, 17.0," 1,092", 49.5, 50.2, 1.7, 13.7,19.6 +NA,NA,a-curv-i5,2022-23,Easton - Richardson Olmsted School,00880025, 181, 21.2, 767, 48.4, 51.6, 3.5, 20.9,21.3 +NA,NA,a-curv-i5,2022-23,Edgartown - Edgartown Elementary,00890005, 274, 15.6, 420, 49.8, 50.2, 19.5, 23.6,49.5 +NA,NA,a-curv-i5,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 185, 19.0, 378, 66.9, 33.1, 14.0, 24.3,78.8 +NA,NA,a-curv-i5,2022-23,Erving - Erving Elementary,00910030, 38, 13.8, 128, 43.8, 56.3, 0.0, 19.5,46.1 +NA,NA,a-curv-i5,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,141", 19.7," 1,675", 57.3, 42.5, 0.6, 17.9,23.2 +NA,NA,a-curv-i5,2022-23,Everett - Adams School,00930003, 64, 13.8, 221, 48.0, 52.0, 36.2, 7.2,73.8 +NA,NA,a-curv-i5,2022-23,Everett - Devens School,00930030, 115, 3.7, 57, 24.6, 73.7, 17.5, 68.4,80.7 +NA,NA,a-curv-i5,2022-23,Everett - Everett High,00930505, 951, 20.0," 2,303", 49.3, 50.7, 27.8, 13.9,71 +NA,NA,a-curv-i5,2022-23,Everett - George Keverian School,00930028, 427, 21.6, 906, 51.9, 48.0, 39.6, 13.0,77.3 +NA,NA,a-curv-i5,2022-23,Everett - Lafayette School,00930038, 639, 20.6," 1,052", 49.1, 50.9, 36.9, 14.7,71.6 +NA,NA,a-curv-i5,2022-23,Everett - Madeline English School,00930018, 489, 20.6, 770, 48.7, 51.3, 40.5, 13.6,73.1 +NA,NA,a-curv-i5,2022-23,Everett - Parlin School,00930058, 522, 24.8," 1,112", 50.5, 49.5, 52.7, 8.3,80.3 +NA,NA,a-curv-i5,2022-23,Everett - Sumner G. Whittier School,00930010, 305, 21.6, 650, 48.2, 51.9, 46.8, 9.7,82 +NA,NA,a-curv-i5,2022-23,Everett - Webster Extension,00930001, 80, 10.2, 200, 43.0, 57.0, 47.5, 15.5,62.5 +NA,NA,a-curv-i5,2022-23,Everett - Webster School,00930015, 240, 13.1, 332, 46.4, 53.6, 31.6, 28.0,71.4 +NA,NA,a-curv-i5,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 390, 22.4," 1,357", 49.3, 50.7, 11.9, 17.7,64.6 +NA,NA,a-curv-i5,2022-23,Fairhaven - East Fairhaven,00940010, 261, 13.8, 319, 47.3, 52.7, 2.8, 27.6,41.1 +NA,NA,a-curv-i5,2022-23,Fairhaven - Fairhaven High,00940505, 339, 15.4, 633, 49.6, 50.2, 0.8, 10.1,32.7 +NA,NA,a-curv-i5,2022-23,Fairhaven - Hastings Middle,00940305, 275, 18.3, 442, 50.5, 49.6, 0.0, 17.7,41.9 +NA,NA,a-curv-i5,2022-23,Fairhaven - Leroy Wood,00940030, 300, 17.3, 445, 47.4, 52.6, 3.8, 21.6,41.4 +NA,NA,a-curv-i5,2022-23,Fall River - B M C Durfee High,00950505," 1,332", 17.1," 2,459", 50.4, 49.5, 20.8, 18.0,75.4 +NA,NA,a-curv-i5,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 313, 18.4, 691, 50.5, 49.5, 31.7, 18.7,86.3 +NA,NA,a-curv-i5,2022-23,Fall River - Early Learning Center,00950001, 55, 7.3, 108, 30.6, 69.4, 3.7, 75.0,86.1 +NA,NA,a-curv-i5,2022-23,Fall River - Henry Lord Community School,00950017, 418, 17.1, 824, 48.2, 51.8, 28.2, 33.9,88.7 +NA,NA,a-curv-i5,2022-23,Fall River - James Tansey,00950140, 96, 22.9, 279, 48.8, 50.9, 3.9, 18.6,67 +NA,NA,a-curv-i5,2022-23,Fall River - John J Doran,00950045, 207, 17.1, 513, 46.2, 53.8, 9.8, 26.5,84.4 +NA,NA,a-curv-i5,2022-23,Fall River - Letourneau Elementary School,00950013, 228, 20.6, 640, 45.9, 54.1, 35.8, 22.0,82.8 +NA,NA,a-curv-i5,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 238, 23.0, 656, 50.5, 49.5, 34.5, 20.3,88.7 +NA,NA,a-curv-i5,2022-23,Fall River - Matthew J Kuss Middle,00950320, 407, 16.1, 701, 48.4, 51.6, 22.3, 21.5,82 +NA,NA,a-curv-i5,2022-23,Fall River - Morton Middle,00950315, 360, 18.9, 684, 45.6, 54.4, 15.9, 26.5,72.8 +NA,NA,a-curv-i5,2022-23,Fall River - North End Elementary,00950005, 248, 19.2, 693, 48.6, 51.4, 10.4, 33.2,68.3 +NA,NA,a-curv-i5,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 125, 10.5, 254, 41.7, 58.3, 16.1, 33.9,91.3 +NA,NA,a-curv-i5,2022-23,Fall River - Samuel Watson,00950145, 88, 19.5, 237, 52.7, 47.3, 15.6, 19.0,89.9 +NA,NA,a-curv-i5,2022-23,Fall River - Spencer Borden,00950130, 259, 16.7, 588, 45.8, 54.3, 10.2, 34.5,69.7 +NA,NA,a-curv-i5,2022-23,Fall River - Stone PK-12 School,00950340, 122, 4.7, 83, 30.1, 69.9, 10.8, 96.4,90.4 +NA,NA,a-curv-i5,2022-23,Fall River - Talbot Innovation School,00950305, 406, 15.9, 561, 51.5, 48.5, 25.7, 24.2,82 +NA,NA,a-curv-i5,2022-23,Fall River - William S Greene,00950065, 328, 17.1, 730, 47.1, 52.9, 35.1, 22.1,84.8 +NA,NA,a-curv-i5,2022-23,Falmouth - East Falmouth Elementary,00960005, 69, 15.5, 303, 40.3, 59.7, 9.2, 41.6,53.8 +NA,NA,a-curv-i5,2022-23,Falmouth - Falmouth High,00960505, 698, 13.9, 774, 46.4, 52.7, 5.4, 20.7,36.6 +NA,NA,a-curv-i5,2022-23,Falmouth - Lawrence,00960405, 417, 14.7, 490, 49.4, 50.4, 5.9, 22.7,41 +NA,NA,a-curv-i5,2022-23,Falmouth - Morse Pond School,00960305, 258, 19.6, 487, 44.8, 55.0, 6.0, 24.2,41.9 +NA,NA,a-curv-i5,2022-23,Falmouth - Mullen-Hall,00960020, 120, 15.9, 382, 49.5, 50.5, 10.7, 19.1,41.9 +NA,NA,a-curv-i5,2022-23,Falmouth - North Falmouth Elementary,00960030, 100, 15.6, 311, 53.7, 46.3, 3.9, 17.0,22.2 +NA,NA,a-curv-i5,2022-23,Falmouth - Teaticket,00960015, 79, 15.7, 272, 44.5, 54.4, 12.9, 29.4,56.6 +NA,NA,a-curv-i5,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 77, 15.1, 124, 51.6, 48.4, 0.0, 25.0,55.7 +NA,NA,a-curv-i5,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 353, 20.5, 620, 48.1, 51.9, 17.6, 21.6,76.5 +NA,NA,a-curv-i5,2022-23,Fitchburg - Crocker Elementary,00970016, 234, 20.8, 607, 50.6, 49.4, 24.2, 23.2,76.9 +NA,NA,a-curv-i5,2022-23,Fitchburg - Fitchburg High,00970505, 546, 17.3," 1,205", 50.0, 49.9, 13.6, 18.3,67.6 +NA,NA,a-curv-i5,2022-23,Fitchburg - Goodrich Academy,00970510, 201, 8.1, 283, 50.5, 49.1, 6.0, 29.3,75.6 +NA,NA,a-curv-i5,2022-23,Fitchburg - McKay Elementary School,00970340, 353, 18.9, 736, 45.2, 54.8, 28.7, 24.5,79.4 +NA,NA,a-curv-i5,2022-23,Fitchburg - Memorial Middle School,00970048, 274, 21.7, 606, 50.5, 49.2, 9.1, 19.5,69.5 +NA,NA,a-curv-i5,2022-23,Fitchburg - Reingold Elementary,00970043, 315, 19.1, 664, 45.5, 54.5, 21.1, 20.9,71.1 +NA,NA,a-curv-i5,2022-23,Fitchburg - South Street Early Learning Center,00970060, 173, 20.5, 624, 46.2, 53.9, 15.9, 30.9,76.9 +NA,NA,a-curv-i5,2022-23,Florida - Abbott Memorial,00980005, 61, 8.9, 91, 46.2, 53.9, 0.0, 15.4,40.7 +NA,NA,a-curv-i5,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Foxborough - Charles Taylor Elementary,00990050, 115, 19.8, 259, 44.4, 55.6, 3.1, 17.8,17.8 +NA,NA,a-curv-i5,2022-23,Foxborough - Foxborough High,00990505, 492, 14.7, 801, 50.1, 49.8, 1.8, 15.0,20.2 +NA,NA,a-curv-i5,2022-23,Foxborough - John J Ahern,00990405, 444, 17.8, 748, 48.5, 51.3, 2.4, 22.5,23.3 +NA,NA,a-curv-i5,2022-23,Foxborough - Mabelle M Burrell,00990015, 123, 18.4, 348, 44.8, 55.2, 1.7, 22.7,18.1 +NA,NA,a-curv-i5,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 150, 21.2, 363, 44.1, 55.9, 6.1, 16.0,24.5 +NA,NA,a-curv-i5,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 707, 19.1," 1,538", 52.2, 47.9, 6.1, 9.8,41 +NA,NA,a-curv-i5,2022-23,Framingham - Barbieri Elementary,01000035, 344, 19.3, 672, 53.1, 46.9, 59.1, 16.8,67.4 +NA,NA,a-curv-i5,2022-23,Framingham - Brophy,01000006, 335, 13.8, 476, 47.3, 52.5, 47.9, 26.5,59.2 +NA,NA,a-curv-i5,2022-23,Framingham - Cameron Middle School,01000302, 347, 17.7, 576, 46.0, 54.0, 31.9, 21.5,64.8 +NA,NA,a-curv-i5,2022-23,Framingham - Charlotte A Dunning,01000007, 367, 11.2, 431, 48.5, 51.3, 29.2, 26.9,40.6 +6.264750633981403,5,a-curv-i5,2022-23,Framingham - Framingham High School,01000515," 1,183", 16.4," 2,587", 49.6, 50.1, 26.5, 19.8,53.2,2566 +NA,NA,a-curv-i5,2022-23,Framingham - Fuller Middle,01000305, 473, 15.7, 682, 47.7, 52.1, 45.9, 24.1,69.1 +NA,NA,a-curv-i5,2022-23,Framingham - Harmony Grove Elementary,01000055, 307, 17.0, 475, 44.6, 55.2, 75.0, 13.9,84.2 +NA,NA,a-curv-i5,2022-23,Framingham - Hemenway,01000015, 378, 13.9, 556, 48.0, 51.8, 26.8, 20.3,35.4 +NA,NA,a-curv-i5,2022-23,Framingham - Juniper Hill School,01000001, 472, 5.4, 316, 37.7, 62.3, 27.2, 62.0,42.1 +NA,NA,a-curv-i5,2022-23,Framingham - King Elementary School,01000005, 278, 12.7, 399, 50.1, 49.6, 33.3, 25.6,45.1 +NA,NA,a-curv-i5,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 279, 12.0, 353, 48.2, 51.8, 40.2, 33.1,63.7 +NA,NA,a-curv-i5,2022-23,Framingham - Miriam F McCarthy School,01000050, 430, 11.9, 531, 46.5, 53.5, 45.8, 31.8,67.6 +NA,NA,a-curv-i5,2022-23,Framingham - Potter Road,01000039, 292, 17.9, 541, 48.6, 51.4, 49.9, 19.4,50.5 +NA,NA,a-curv-i5,2022-23,Framingham - Walsh Middle,01000310, 491, 17.3, 815, 53.7, 45.4, 19.3, 21.6,45.9 +NA,NA,a-curv-i5,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 229, 17.4, 391, 51.7, 44.0, 0.0, 18.7,12 +NA,NA,a-curv-i5,2022-23,Franklin - Annie Sullivan Middle School,01010040, 221, 14.9, 327, 44.7, 55.4, 1.5, 19.6,16.8 +NA,NA,a-curv-i5,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 11, 15.9, 175, 38.3, 61.7, 1.7, 49.1,21.1 +NA,NA,a-curv-i5,2022-23,Franklin - Franklin High,01010505," 1,025", 15.1," 1,640", 49.2, 50.2, 1.3, 14.2,11.8 +NA,NA,a-curv-i5,2022-23,Franklin - Helen Keller Elementary,01010012, 240, 18.0, 539, 49.0, 51.0, 3.3, 22.6,15.4 +NA,NA,a-curv-i5,2022-23,Franklin - Horace Mann,01010405, 221, 17.9, 380, 47.4, 52.6, 0.5, 19.2,13.2 +NA,NA,a-curv-i5,2022-23,Franklin - J F Kennedy Memorial,01010013, 136, 19.7, 335, 41.2, 58.5, 2.7, 19.7,8.7 +NA,NA,a-curv-i5,2022-23,Franklin - Jefferson Elementary,01010010, 192, 14.5, 349, 42.4, 57.3, 0.9, 28.1,11.8 +NA,NA,a-curv-i5,2022-23,Franklin - Oak Street Elementary,01010030, 176, 16.6, 365, 49.3, 50.7, 2.2, 18.9,16.4 +NA,NA,a-curv-i5,2022-23,Franklin - Parmenter,01010032, 144, 16.2, 292, 50.3, 49.7, 3.1, 20.2,28.8 +NA,NA,a-curv-i5,2022-23,Franklin - Remington Middle,01010310, 230, 16.8, 377, 47.2, 52.8, 1.3, 22.0,21.8 +NA,NA,a-curv-i5,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 304, 13.5, 595, 42.4, 57.7, 0.2, 21.9,53.5 +NA,NA,a-curv-i5,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 327, 15.7, 692, 52.5, 47.0, 0.3, 13.6,18.2 +NA,NA,a-curv-i5,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 224, 19.2, 491, 51.1, 48.9, 2.0, 16.3,25.7 +NA,NA,a-curv-i5,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 217, 15.5, 433, 46.9, 53.1, 2.8, 20.1,25.2 +NA,NA,a-curv-i5,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 293, 20.3, 676, 47.8, 52.2, 1.2, 21.6,25.9 +NA,NA,a-curv-i5,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 154, 20.3, 446, 49.3, 50.7, 0.5, 15.3,24 +NA,NA,a-curv-i5,2022-23,Frontier - Frontier Regional,06700505, 580, 11.4, 601, 47.3, 52.3, 0.8, 18.5,26.8 +NA,NA,a-curv-i5,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 43, 7.4, 48, 35.4, 64.6, 0.0, 39.6,79.2 +NA,NA,a-curv-i5,2022-23,Gardner - Gardner Elementary School,01030001, 628, 21.3," 1,034", 44.5, 55.4, 12.8, 24.4,69.5 +NA,NA,a-curv-i5,2022-23,Gardner - Gardner High,01030505, 345, 16.9, 739, 46.6, 52.4, 3.0, 19.4,61 +NA,NA,a-curv-i5,2022-23,Gardner - Gardner Middle School,01030405, 265, 19.2, 493, 52.5, 47.3, 6.5, 24.1,66.5 +NA,NA,a-curv-i5,2022-23,Gateway - Chester Elementary,06720059, 57, 15.0, 125, 47.2, 52.8, 0.0, 35.2,41.6 +NA,NA,a-curv-i5,2022-23,Gateway - Gateway Regional High,06720505, 235, 6.6, 169, 50.3, 49.7, 0.0, 24.9,44.4 +NA,NA,a-curv-i5,2022-23,Gateway - Gateway Regional Middle School,06720405, 144, 14.7, 199, 44.7, 54.8, 1.5, 24.6,51.8 +NA,NA,a-curv-i5,2022-23,Gateway - Littleville Elementary School,06720143, 129, 18.9, 305, 48.9, 51.2, 3.3, 28.2,50.5 +7.175172413793104,5,a-curv-i5,2022-23,Georgetown - Georgetown High School,01050505, 290, 10.5, 300, 51.0, 49.0, 2.3, 19.0,17.7,299 +NA,NA,a-curv-i5,2022-23,Georgetown - Georgetown Middle School,01050305, 147, 15.7, 189, 48.2, 51.9, 0.5, 19.1,14.8 +NA,NA,a-curv-i5,2022-23,Georgetown - Penn Brook,01050010, 281, 20.4, 702, 48.0, 52.0, 1.4, 15.7,14.7 +NA,NA,a-curv-i5,2022-23,Georgetown - Perley Elementary,01050005, 3, 27.3, 82, 47.6, 52.4, 0.0, 23.2,14.6 +NA,NA,a-curv-i5,2022-23,Gill-Montague - Gill Elementary,06740005, 50, 16.8, 105, 49.5, 50.5, 0.0, 21.9,42.9 +NA,NA,a-curv-i5,2022-23,Gill-Montague - Great Falls Middle,06740310, 168, 11.9, 213, 43.7, 55.9, 2.8, 29.1,59.6 +NA,NA,a-curv-i5,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 72, 17.0, 154, 46.1, 53.9, 11.7, 37.0,63.6 +NA,NA,a-curv-i5,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 108, 15.9, 214, 41.6, 58.4, 8.4, 29.0,64 +NA,NA,a-curv-i5,2022-23,Gill-Montague - Turners Fall High,06740505, 166, 10.1, 181, 41.4, 58.0, 3.3, 26.0,56.9 +NA,NA,a-curv-i5,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 336, 16.7, 496, 51.4, 48.6, 9.1, 13.3,70 +NA,NA,a-curv-i5,2022-23,Gloucester - Beeman Memorial,01070010, 72, 17.2, 309, 52.8, 47.3, 17.2, 21.0,61.2 +NA,NA,a-curv-i5,2022-23,Gloucester - East Gloucester Elementary,01070020, 48, 15.8, 190, 55.3, 44.7, 11.6, 17.9,44.7 +NA,NA,a-curv-i5,2022-23,Gloucester - Gloucester High,01070505, 432, 13.7, 808, 46.3, 53.0, 10.0, 30.5,42.8 +NA,NA,a-curv-i5,2022-23,Gloucester - Gloucester PreSchool,01070025, 12, 11.5, 138, 47.8, 52.2, 0.0, 49.3,47.1 +NA,NA,a-curv-i5,2022-23,Gloucester - Plum Cove School,01070042, 48, 16.8, 201, 49.8, 50.3, 6.0, 23.9,28.9 +NA,NA,a-curv-i5,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 363, 17.1, 635, 48.8, 51.0, 7.6, 25.8,47.1 +NA,NA,a-curv-i5,2022-23,Gloucester - Veterans Memorial,01070045, 48, 18.0, 216, 48.2, 51.9, 22.2, 20.8,68.1 +NA,NA,a-curv-i5,2022-23,Gloucester - West Parish,01070050, 77, 19.3, 373, 48.3, 51.7, 2.1, 27.9,38.6 +NA,NA,a-curv-i5,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +6.43400447427293,5,a-curv-i5,2022-23,Grafton - Grafton High School,01100505, 447, 16.3, 875, 49.9, 49.7, 1.1, 13.0,16,875 +NA,NA,a-curv-i5,2022-23,Grafton - Grafton Middle,01100305, 294, 20.2, 532, 47.7, 51.9, 2.4, 17.1,19 +NA,NA,a-curv-i5,2022-23,Grafton - Millbury Street Elementary School,01100200, 302, 19.9, 594, 44.3, 55.7, 2.7, 21.9,17.5 +NA,NA,a-curv-i5,2022-23,Grafton - North Grafton Elementary,01100025, 118, 16.2, 250, 47.2, 52.8, 5.2, 22.0,12.8 +NA,NA,a-curv-i5,2022-23,Grafton - North Street Elementary School,01100030, 279, 20.1, 551, 50.5, 49.4, 2.9, 16.9,17.8 +NA,NA,a-curv-i5,2022-23,Grafton - South Grafton Elementary,01100005, 117, 19.0, 303, 46.9, 53.1, 4.3, 22.4,13.9 +NA,NA,a-curv-i5,2022-23,Granby - East Meadow,01110004, 180, 18.6, 409, 49.1, 50.9, 6.6, 23.5,38.6 +6.87420814479638,5,a-curv-i5,2022-23,Granby - Granby Jr Sr High School,01110505, 221, 12.6, 310, 44.5, 55.5, 3.9, 20.0,32.3,311 +NA,NA,a-curv-i5,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 359, 19.1," 1,204", 55.5, 43.4, 3.0, 24.8,60.6 +NA,NA,a-curv-i5,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,347", 13.7," 1,405", 42.1, 57.2, 2.1, 9.8,45.6 +NA,NA,a-curv-i5,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,663", 16.0," 1,692", 52.3, 47.5, 9.3, 11.6,66.3 +NA,NA,a-curv-i5,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,722", 17.8," 2,334", 47.5, 51.6, 6.6, 17.0,51.3 +NA,NA,a-curv-i5,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,961", 15.1," 2,092", 47.2, 52.6, 5.0, 11.7,50.8 +NA,NA,a-curv-i5,2022-23,Greenfield - Discovery School at Four Corners,01140025, 54, 16.2, 216, 41.2, 58.8, 8.3, 23.2,46.8 +NA,NA,a-curv-i5,2022-23,Greenfield - Federal Street School,01140010, 46, 17.9, 205, 54.6, 45.4, 8.3, 16.6,70.7 +NA,NA,a-curv-i5,2022-23,Greenfield - Greenfield High,01140505, 308, 12.5, 451, 49.7, 50.1, 8.7, 22.6,60.5 +NA,NA,a-curv-i5,2022-23,Greenfield - Greenfield Middle,01140305, 199, 15.9, 311, 44.7, 55.3, 8.0, 18.0,65.6 +NA,NA,a-curv-i5,2022-23,Greenfield - Newton School,01140035, 49, 18.1, 211, 50.7, 49.3, 9.0, 18.0,76.8 +NA,NA,a-curv-i5,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 10.6, 95, 45.3, 54.7, 0.0, 35.8,64.2 +NA,NA,a-curv-i5,2022-23,Groton-Dunstable - Boutwell School,06730001, 7, 14.4, 101, 40.6, 59.4, 0.0, 35.6,10.9 +NA,NA,a-curv-i5,2022-23,Groton-Dunstable - Florence Roche School,06730010, 145, 21.0, 526, 48.1, 51.9, 3.6, 15.4,10.5 +NA,NA,a-curv-i5,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 402, 15.8, 680, 48.7, 51.0, 0.7, 15.2,7.4 +NA,NA,a-curv-i5,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 355, 18.9, 723, 47.2, 52.8, 0.7, 16.7,10.1 +NA,NA,a-curv-i5,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 90, 21.8, 327, 45.0, 55.1, 3.1, 20.8,11.3 +NA,NA,a-curv-i5,2022-23,Hadley - Hadley Elementary,01170015, 262, 17.2, 279, 44.1, 55.9, 5.4, 24.7,30.5 +NA,NA,a-curv-i5,2022-23,Hadley - Hopkins Academy,01170505, 134, 11.7, 220, 49.6, 50.5, 3.6, 11.4,25.9 +NA,NA,a-curv-i5,2022-23,Halifax - Halifax Elementary,01180005, 230, 20.0, 560, 47.3, 52.7, 0.9, 20.0,26.6 +NA,NA,a-curv-i5,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 104, 20.3, 264, 43.9, 56.1, 4.9, 16.3,11.4 +NA,NA,a-curv-i5,2022-23,Hamilton-Wenham - Cutler School,06750010, 115, 17.7, 255, 51.4, 48.6, 0.4, 20.4,7.1 +NA,NA,a-curv-i5,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 282, 13.6, 450, 54.2, 45.6, 0.7, 12.2,10 +NA,NA,a-curv-i5,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 330, 14.5, 375, 54.1, 45.9, 0.8, 19.2,10.4 +NA,NA,a-curv-i5,2022-23,Hamilton-Wenham - Winthrop School,06750015, 131, 17.9, 323, 49.5, 50.5, 0.3, 25.1,6.5 +NA,NA,a-curv-i5,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 252, 18.7, 551, 47.6, 51.9, 4.5, 14.9,61 +NA,NA,a-curv-i5,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 189, 16.7, 373, 44.8, 55.2, 4.6, 18.0,61.4 +NA,NA,a-curv-i5,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 102, 17.1, 325, 47.7, 52.3, 1.9, 24.3,29.5 +NA,NA,a-curv-i5,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 73, 21.2, 366, 47.8, 52.2, 1.9, 20.8,19.1 +6.434990059642146,5,a-curv-i5,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 503, 15.7, 973, 49.6, 50.4, 0.1, 13.0,21.8,984 +NA,NA,a-curv-i5,2022-23,Hampden-Wilbraham - Soule Road,06800030, 71, 22.7, 311, 51.5, 48.6, 1.9, 17.4,20.9 +NA,NA,a-curv-i5,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 70, 21.6, 303, 46.9, 53.1, 3.0, 17.8,23.4 +NA,NA,a-curv-i5,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 337, 17.4, 606, 48.0, 52.0, 0.8, 18.5,24.4 +NA,NA,a-curv-i5,2022-23,Hampshire - Hampshire Regional High,06830505, 585, 11.9, 671, 52.2, 46.9, 1.8, 23.1,21.3 +NA,NA,a-curv-i5,2022-23,Hancock - Hancock Elementary,01210005, 76, 7.5, 61, 60.7, 39.3, 0.0, 26.2,36.1 +NA,NA,a-curv-i5,2022-23,Hanover - Cedar Elementary,01220004, 184, 19.0, 504, 46.4, 53.6, 4.0, 25.0,11.5 +NA,NA,a-curv-i5,2022-23,Hanover - Center Elementary,01220005, 241, 22.3, 645, 50.4, 49.5, 1.6, 24.7,11.5 +NA,NA,a-curv-i5,2022-23,Hanover - Hanover High,01220505, 337, 15.0, 671, 47.8, 52.0, 0.5, 17.9,12.8 +NA,NA,a-curv-i5,2022-23,Hanover - Hanover Middle,01220305, 780, 20.3, 811, 47.2, 52.8, 0.4, 23.7,9.7 +NA,NA,a-curv-i5,2022-23,Harvard - Bromfield,01250505, 300, 14.5, 560, 50.7, 49.1, 1.6, 8.0,7.5 +NA,NA,a-curv-i5,2022-23,Harvard - Hildreth Elementary School,01250005, 245, 17.6, 466, 46.1, 53.9, 3.9, 6.9,8.6 +NA,NA,a-curv-i5,2022-23,Hatfield - Hatfield Elementary,01270005, 130, 14.3, 217, 51.2, 48.4, 0.5, 31.8,25.4 +NA,NA,a-curv-i5,2022-23,Hatfield - Smith Academy,01270505, 126, 8.7, 134, 41.8, 58.2, 0.0, 23.1,14.2 +NA,NA,a-curv-i5,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 58, 2.5, 31, 16.1, 83.9, 6.5, 100.0,83.9 +NA,NA,a-curv-i5,2022-23,Haverhill - Bradford Elementary,01280008, 327, 17.0, 514, 44.6, 55.5, 19.5, 23.0,66.9 +NA,NA,a-curv-i5,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 489, 20.8," 1,078", 48.4, 51.5, 5.8, 21.0,45.8 +NA,NA,a-curv-i5,2022-23,Haverhill - Consentino Middle School,01280100, 345, 20.9, 743, 47.6, 52.2, 14.8, 17.1,70 +NA,NA,a-curv-i5,2022-23,Haverhill - Dr Paul Nettle,01280050, 227, 22.9, 584, 48.1, 51.9, 11.1, 24.1,69.4 +NA,NA,a-curv-i5,2022-23,Haverhill - Gateway Academy,01280515, 93, 11.4, 94, 52.1, 47.9, 8.5, 42.6,81.9 +NA,NA,a-curv-i5,2022-23,Haverhill - Golden Hill,01280026, 290, 17.0, 458, 52.6, 47.4, 14.9, 19.9,65.1 +NA,NA,a-curv-i5,2022-23,Haverhill - Greenleaf Academy,01280033, 50, 6.7, 42, 26.2, 73.8, 2.4, 100.0,85.7 +NA,NA,a-curv-i5,2022-23,Haverhill - Haverhill High,01280505, 896, 16.5," 2,062", 47.6, 52.1, 10.7, 21.4,54.7 +NA,NA,a-curv-i5,2022-23,Haverhill - John G Whittier,01280085, 180, 24.8, 495, 48.9, 50.7, 7.3, 18.6,61.6 +NA,NA,a-curv-i5,2022-23,Haverhill - Moody,01280045, 324, 7.4, 200, 38.5, 61.5, 4.5, 66.5,63.5 +NA,NA,a-curv-i5,2022-23,Haverhill - Moody Preschool Extension,01280001, 126, 9.5, 133, 37.6, 62.4, 0.0, 59.4,57.1 +NA,NA,a-curv-i5,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 327, 16.6, 526, 47.0, 53.0, 15.2, 28.1,71.9 +NA,NA,a-curv-i5,2022-23,Haverhill - Silver Hill Elementary School,01280067, 220, 20.3, 486, 53.9, 46.1, 14.4, 20.8,61.3 +NA,NA,a-curv-i5,2022-23,Haverhill - Tilton,01280075, 154, 19.4, 326, 45.7, 54.3, 21.5, 19.6,73.3 +NA,NA,a-curv-i5,2022-23,Haverhill - Tilton Upper Middle School,01280105, 77, 20.0, 179, 53.1, 46.9, 16.8, 22.9,72.6 +NA,NA,a-curv-i5,2022-23,Haverhill - Walnut Square,01280080, 92, 17.5, 141, 47.5, 52.5, 13.5, 23.4,53.9 +NA,NA,a-curv-i5,2022-23,Hawlemont - Hawlemont Regional,06850005, 31, 11.3, 91, 52.8, 47.3, 2.2, 36.3,58.2 +NA,NA,a-curv-i5,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 75, 9.3, 107, 49.5, 50.5, 7.5, 19.6,78.5 +NA,NA,a-curv-i5,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 119, 21.3, 318, 50.0, 50.0, 7.9, 23.0,41.5 +NA,NA,a-curv-i5,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 53, 26.8, 218, 41.3, 56.0, 0.0, 20.6,20.2 +NA,NA,a-curv-i5,2022-23,Hingham - East Elementary School,01310005, 206, 19.5, 521, 43.4, 56.6, 1.5, 26.9,8.6 +NA,NA,a-curv-i5,2022-23,Hingham - Hingham High,01310505, 625, 13.7," 1,158", 47.0, 52.7, 0.2, 7.3,6.9 +NA,NA,a-curv-i5,2022-23,Hingham - Hingham Middle School,01310410, 622, 14.2, 840, 49.3, 50.6, 0.5, 18.6,8 +NA,NA,a-curv-i5,2022-23,Hingham - Plymouth River,01310019, 152, 22.7, 383, 49.1, 50.9, 1.6, 19.3,8.1 +NA,NA,a-curv-i5,2022-23,Hingham - South Elementary,01310020, 192, 23.6, 503, 48.7, 51.3, 0.6, 18.9,5.8 +NA,NA,a-curv-i5,2022-23,Hingham - Wm L Foster Elementary,01310010, 168, 21.7, 405, 49.4, 50.6, 1.5, 21.0,8.4 +6.6489361702127665,5,a-curv-i5,2022-23,Holbrook - Holbrook Middle High School,01330505, 376, 15.5, 653, 46.1, 53.6, 6.9, 17.3,42.4,635 +NA,NA,a-curv-i5,2022-23,Holbrook - John F Kennedy,01330018, 322, 17.8, 685, 48.9, 51.1, 8.9, 23.8,44.2 +NA,NA,a-curv-i5,2022-23,Holland - Holland Elementary,01350005, 73, 15.0, 229, 49.8, 50.2, 0.9, 10.9,40.6 +NA,NA,a-curv-i5,2022-23,Holliston - Holliston High,01360505, 516, 14.8, 811, 48.0, 51.1, 1.0, 16.7,12 +NA,NA,a-curv-i5,2022-23,Holliston - Miller School,01360007, 351, 18.1, 605, 49.1, 50.7, 3.0, 23.0,9.1 +NA,NA,a-curv-i5,2022-23,Holliston - Placentino Elementary,01360010, 234, 16.7, 721, 44.9, 54.8, 5.4, 18.2,10 +NA,NA,a-curv-i5,2022-23,Holliston - Robert H. Adams Middle School,01360305, 331, 18.0, 655, 48.2, 51.3, 1.5, 20.8,11 +NA,NA,a-curv-i5,2022-23,Holyoke - E N White Elementary,01370045, 157, 17.3, 415, 48.2, 51.8, 8.0, 28.7,72.3 +NA,NA,a-curv-i5,2022-23,Holyoke - H.B. Lawrence School,01370070, 79, 14.4, 185, 50.8, 49.2, 14.1, 17.3,97.3 +NA,NA,a-curv-i5,2022-23,Holyoke - Holyoke High,01370505," 1,066", 16.0," 1,445", 46.7, 53.0, 19.8, 26.9,83.3 +NA,NA,a-curv-i5,2022-23,Holyoke - Holyoke Middle School,01370325, 103, 21.1, 297, 46.1, 53.9, 25.9, 39.1,94.6 +NA,NA,a-curv-i5,2022-23,Holyoke - Holyoke STEM Academy,01370320, 102, 19.1, 313, 45.4, 54.6, 19.5, 32.0,90.1 +NA,NA,a-curv-i5,2022-23,Holyoke - Joseph Metcalf School,01370003, 162, 19.7, 387, 51.2, 48.8, 30.8, 20.2,69.8 +NA,NA,a-curv-i5,2022-23,Holyoke - Kelly Elementary,01370040, 108, 19.5, 331, 51.1, 48.9, 24.2, 26.0,94.3 +NA,NA,a-curv-i5,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 157, 15.5, 423, 47.3, 52.7, 16.6, 32.9,89.8 +NA,NA,a-curv-i5,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 154, 17.8, 348, 45.7, 54.3, 13.8, 33.3,78.2 +NA,NA,a-curv-i5,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 202, 10.9, 351, 40.7, 59.3, 15.4, 47.6,95.2 +NA,NA,a-curv-i5,2022-23,Holyoke - Morgan Full Service Community School,01370025, 68, 17.2, 325, 50.8, 49.2, 18.2, 27.1,94.8 +NA,NA,a-curv-i5,2022-23,Holyoke - William R. Peck School,01370030, 95, 13.4, 216, 49.5, 50.5, 18.1, 35.7,95.8 +NA,NA,a-curv-i5,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 207, 23.3, 697, 54.2, 45.8, 10.0, 25.3,83.5 +NA,NA,a-curv-i5,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 143, 18.6, 390, 45.9, 54.1, 1.3, 28.7,63.6 +6.527272727272728,5,a-curv-i5,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 176, 12.0, 328, 51.8, 48.2, 0.9, 26.8,60.1,324 +NA,NA,a-curv-i5,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 204, 16.4, 298, 49.0, 50.7, 1.0, 23.5,59.4 +NA,NA,a-curv-i5,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 325, 12.6, 440, 48.9, 50.5, 2.1, 19.3,24.1 +NA,NA,a-curv-i5,2022-23,Hopedale - Memorial,01380010, 260, 19.8, 554, 45.9, 54.2, 9.0, 24.4,20.8 +NA,NA,a-curv-i5,2022-23,Hopedale - Park Street School,01380003, 112, 7.1, 113, 44.3, 55.8, 0.0, 20.4,17.7 +NA,NA,a-curv-i5,2022-23,Hopkinton - Elmwood,01390010, 153, 21.4, 637, 48.7, 51.3, 10.8, 10.4,6.4 +NA,NA,a-curv-i5,2022-23,Hopkinton - Hopkins Elementary School,01390015, 265, 23.3, 640, 50.0, 50.0, 4.1, 13.3,6.4 +NA,NA,a-curv-i5,2022-23,Hopkinton - Hopkinton High,01390505," 1,013", 18.2," 1,245", 49.8, 49.8, 1.6, 13.4,9.6 +NA,NA,a-curv-i5,2022-23,Hopkinton - Hopkinton Middle School,01390305, 586, 21.9, 983, 49.0, 50.8, 1.2, 14.1,6.4 +NA,NA,a-curv-i5,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 15, 10.5, 112, 42.0, 58.0, 13.4, 50.9,9.8 +NA,NA,a-curv-i5,2022-23,Hopkinton - Marathon Elementary School,01390005, 168, 19.4, 604, 46.5, 53.3, 19.5, 13.1,7.3 +NA,NA,a-curv-i5,2022-23,Hudson - C A Farley,01410030, 202, 18.9, 433, 51.3, 48.7, 27.0, 18.5,41.6 +NA,NA,a-curv-i5,2022-23,Hudson - David J. Quinn Middle School,01410410, 301, 18.8, 578, 45.7, 54.2, 13.5, 21.6,41.9 +NA,NA,a-curv-i5,2022-23,Hudson - Forest Avenue Elementary,01410015, 144, 18.2, 291, 51.2, 48.8, 19.2, 16.5,30.9 +NA,NA,a-curv-i5,2022-23,Hudson - Hudson High,01410505, 498, 13.9, 831, 53.0, 46.8, 11.2, 16.7,37.6 +NA,NA,a-curv-i5,2022-23,Hudson - Mulready Elementary,01410007, 116, 18.3, 248, 47.6, 52.4, 22.2, 30.2,36.7 +NA,NA,a-curv-i5,2022-23,Hull - Hull High,01420505, 216, 9.6, 243, 43.6, 55.1, 2.9, 17.7,31.7 +NA,NA,a-curv-i5,2022-23,Hull - Lillian M Jacobs,01420015, 185, 15.4, 360, 44.7, 55.3, 0.6, 26.4,33.9 +NA,NA,a-curv-i5,2022-23,Hull - Memorial Middle,01420305, 102, 14.0, 167, 49.1, 50.9, 1.8, 19.8,29.9 +NA,NA,a-curv-i5,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 436, 18.5, 793, 50.4, 49.1, 1.4, 23.6,27.1 +NA,NA,a-curv-i5,2022-23,Ipswich - Ipswich High,01440505, 366, 11.7, 500, 52.0, 47.8, 1.8, 16.0,19.2 +NA,NA,a-curv-i5,2022-23,Ipswich - Ipswich Middle School,01440305, 267, 16.8, 365, 51.2, 48.8, 1.1, 18.6,19.2 +NA,NA,a-curv-i5,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 234, 17.5, 370, 48.7, 51.4, 3.0, 24.3,15.7 +NA,NA,a-curv-i5,2022-23,Ipswich - Winthrop,01440015, 226, 18.2, 384, 49.2, 50.8, 6.8, 24.7,27.3 +NA,NA,a-curv-i5,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 157, 21.7, 576, 48.8, 51.2, 14.8, 20.0,76.6 +NA,NA,a-curv-i5,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 555, 23.9," 1,604", 50.1, 49.9, 14.4, 15.0,65.8 +NA,NA,a-curv-i5,2022-23,King Philip - King Philip Middle School,06900510, 398, 15.8, 677, 48.9, 50.7, 0.7, 19.9,18.6 +NA,NA,a-curv-i5,2022-23,King Philip - King Philip Regional High,06900505, 482, 16.1," 1,140", 49.2, 50.4, 0.3, 15.5,15.4 +NA,NA,a-curv-i5,2022-23,Kingston - Kingston Elementary,01450005, 166, 22.7, 666, 43.5, 56.5, 4.8, 26.9,26 +NA,NA,a-curv-i5,2022-23,Kingston - Kingston Intermediate,01450020, 236, 21.3, 600, 50.0, 50.0, 4.2, 20.7,23 +NA,NA,a-curv-i5,2022-23,Lawrence - Alexander B Bruce,01490015, 279, 16.9, 406, 49.0, 50.5, 42.1, 15.8,87.2 +NA,NA,a-curv-i5,2022-23,Lawrence - Arlington Elementary,01490009, 211, 22.2, 620, 47.1, 52.1, 61.5, 16.9,91.8 +NA,NA,a-curv-i5,2022-23,Lawrence - Arlington Middle School,01490017, 314, 24.1, 598, 48.2, 51.7, 45.7, 15.2,91.5 +NA,NA,a-curv-i5,2022-23,Lawrence - Edward F. Parthum,01490053, 350, 20.8, 679, 45.7, 54.2, 36.4, 17.8,85.6 +NA,NA,a-curv-i5,2022-23,Lawrence - Emily G Wetherbee,01490080, 393, 14.4, 504, 50.6, 49.2, 32.3, 24.4,83.3 +NA,NA,a-curv-i5,2022-23,Lawrence - Francis M Leahy,01490040, 192, 19.6, 395, 44.3, 55.7, 46.8, 13.7,92.4 +NA,NA,a-curv-i5,2022-23,Lawrence - Frost Middle School,01490525, 241, 22.7, 503, 49.5, 50.3, 23.9, 21.9,77.3 +NA,NA,a-curv-i5,2022-23,Lawrence - Gerard A. Guilmette,01490022, 335, 18.2, 481, 45.1, 54.9, 44.7, 15.2,86.3 +NA,NA,a-curv-i5,2022-23,Lawrence - Guilmette Middle School,01490025, 303, 15.3, 437, 49.4, 50.6, 40.3, 19.0,88.1 +5.494949494949495,5,a-curv-i5,2022-23,Lawrence - High School Learning Center,01490536, 99, 17.3, 203, 38.4, 61.6, 52.7, 20.2,85.7,310 +NA,NA,a-curv-i5,2022-23,Lawrence - James F Hennessey,01490020, 143, 11.9, 316, 45.6, 54.4, 52.5, 35.1,87.7 +NA,NA,a-curv-i5,2022-23,Lawrence - John Breen School,01490003, 64, 13.2, 313, 41.2, 58.8, 35.5, 48.9,85.3 +NA,NA,a-curv-i5,2022-23,Lawrence - John K Tarbox,01490075, 135, 19.0, 291, 42.3, 57.7, 41.9, 18.6,88 +NA,NA,a-curv-i5,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 42, 21.1, 200, 48.0, 52.0, 36.5, 21.5,91.5 +NA,NA,a-curv-i5,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 78, 14.6, 239, 46.4, 53.6, 40.6, 39.3,88.3 +6.119512195121951,5,a-curv-i5,2022-23,Lawrence - Lawrence High School,01490515," 1,312", 20.1," 3,139", 46.8, 52.9, 42.9, 14.2,82.2,3084 +NA,NA,a-curv-i5,2022-23,Lawrence - Leonard Middle School,01490090, 112, 27.1, 338, 46.2, 53.9, 40.8, 12.1,85.5 +NA,NA,a-curv-i5,2022-23,Lawrence - Oliver Elementary School,01490048, 219, 21.0, 473, 49.5, 50.5, 49.3, 15.6,88.6 +NA,NA,a-curv-i5,2022-23,Lawrence - Oliver Middle School,01490049, 86, 29.1, 357, 46.2, 53.5, 38.9, 19.1,87.7 +NA,NA,a-curv-i5,2022-23,Lawrence - Parthum Middle School,01490027, 280, 20.9, 532, 45.5, 54.5, 28.0, 18.8,81.4 +NA,NA,a-curv-i5,2022-23,Lawrence - RISE Academy,01490615, 49, 19.6, 85, 27.1, 72.9, 28.2, 41.2,85.9 +NA,NA,a-curv-i5,2022-23,Lawrence - Robert Frost,01490018, 216, 20.2, 549, 50.3, 49.2, 39.2, 21.1,79.2 +NA,NA,a-curv-i5,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 37, 14.7, 232, 42.2, 57.8, 50.9, 45.7,87.5 +NA,NA,a-curv-i5,2022-23,Lawrence - School for Exceptional Studies,01490537, 200, 4.4, 109, 17.4, 82.6, 30.3, 100.0,96.3 +NA,NA,a-curv-i5,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 330, 22.0, 684, 49.7, 50.2, 43.6, 18.0,88.7 +NA,NA,a-curv-i5,2022-23,Lawrence - Spark Academy,01490085, 179, 17.8, 457, 44.6, 55.4, 34.1, 19.3,89.3 +NA,NA,a-curv-i5,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 394, 21.4, 853, 54.9, 45.1, 33.2, 7.5,76.3 +NA,NA,a-curv-i5,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 234, 24.3, 657, 50.1, 49.9, 26.6, 16.1,79 +NA,NA,a-curv-i5,2022-23,Lee - Lee Elementary,01500025, 117, 15.4, 343, 49.0, 51.0, 7.6, 19.2,39.9 +6.912133891213389,5,a-curv-i5,2022-23,Lee - Lee Middle/High School,01500505, 239, 11.0, 322, 45.3, 54.4, 3.7, 14.6,41.9,325 +NA,NA,a-curv-i5,2022-23,Leicester - Leicester Elementary,01510005, 208, 18.7, 487, 52.0, 48.1, 9.0, 24.9,43.5 +NA,NA,a-curv-i5,2022-23,Leicester - Leicester High,01510505, 244, 17.1, 418, 45.0, 55.0, 3.6, 12.4,31.6 +NA,NA,a-curv-i5,2022-23,Leicester - Leicester Integrated Preschool,01510001, 12, 19.0, 57, 33.3, 66.7, 0.0, 73.7,45.6 +NA,NA,a-curv-i5,2022-23,Leicester - Leicester Middle,01510015, 232, 17.1, 415, 46.5, 53.3, 5.8, 19.8,38.6 +NA,NA,a-curv-i5,2022-23,Lenox - Lenox Memorial High,01520505, 325, 12.0, 442, 48.0, 52.0, 2.7, 9.1,25.1 +NA,NA,a-curv-i5,2022-23,Lenox - Morris,01520015, 149, 17.6, 344, 47.1, 52.9, 4.9, 11.1,24.7 +NA,NA,a-curv-i5,2022-23,Leominster - Bennett,01530003, 18, 6.7, 120, 36.7, 63.3, 5.0, 55.8,44.2 +NA,NA,a-curv-i5,2022-23,Leominster - Center For Technical Education Innovation,01530605, 158, 12.6, 771, 35.0, 64.7, 10.9, 25.8,54.6 +NA,NA,a-curv-i5,2022-23,Leominster - Fall Brook,01530007, 299, 22.1, 617, 44.6, 55.3, 17.0, 24.3,49.3 +NA,NA,a-curv-i5,2022-23,Leominster - Frances Drake School,01530010, 285, 15.8, 467, 49.3, 50.8, 24.6, 36.4,66.2 +NA,NA,a-curv-i5,2022-23,Leominster - Johnny Appleseed,01530025, 333, 20.7, 654, 50.9, 49.1, 14.1, 19.0,52.8 +NA,NA,a-curv-i5,2022-23,Leominster - Leominster Center for Excellence,01530515, 8, 16.3, 51, 60.8, 33.3, 5.9, 49.0,66.7 +6.70344827586207,5,a-curv-i5,2022-23,Leominster - Leominster High School,01530505, 638, 19.4," 1,786", 47.3, 52.4, 10.8, 19.9,52.6,1034 +NA,NA,a-curv-i5,2022-23,Leominster - Lincoln School,01530005, 4, 8.8, 35, 45.7, 54.3, 0.0, 60.0,57.1 +NA,NA,a-curv-i5,2022-23,Leominster - Northwest,01530030, 346, 22.9, 729, 52.3, 47.7, 24.1, 22.4,61.3 +NA,NA,a-curv-i5,2022-23,Leominster - Priest Street,01530040, 49, 17.6, 123, 48.0, 52.0, 24.4, 24.4,66.7 +NA,NA,a-curv-i5,2022-23,Leominster - Samoset School,01530045, 369, 15.1, 521, 45.1, 54.9, 10.0, 22.5,51.1 +NA,NA,a-curv-i5,2022-23,Leominster - Sky View Middle School,01530320, 669, 20.7, 928, 48.3, 51.6, 13.5, 22.6,60.1 +NA,NA,a-curv-i5,2022-23,Leverett - Leverett Elementary,01540005, 53, 16.2, 139, 51.1, 48.9, 0.0, 22.3,23.7 +NA,NA,a-curv-i5,2022-23,Lexington - Bowman,01550008, 117, 21.6, 445, 49.2, 50.8, 19.1, 8.8,5.2 +NA,NA,a-curv-i5,2022-23,Lexington - Bridge,01550006, 111, 19.3, 383, 50.7, 49.4, 14.9, 14.1,12.3 +NA,NA,a-curv-i5,2022-23,Lexington - Fiske,01550015, 110, 17.5, 345, 47.5, 52.5, 14.8, 23.5,5.8 +NA,NA,a-curv-i5,2022-23,Lexington - Harrington,01550030, 121, 18.6, 397, 51.9, 48.1, 14.6, 13.1,9.1 +NA,NA,a-curv-i5,2022-23,Lexington - Jonas Clarke Middle,01550305, 553, 16.2, 835, 49.3, 50.5, 5.0, 12.9,9.1 +NA,NA,a-curv-i5,2022-23,Lexington - Joseph Estabrook,01550010, 142, 21.6, 551, 47.2, 52.8, 14.9, 15.4,7.1 +NA,NA,a-curv-i5,2022-23,Lexington - Lexington Children's Place,01550001, 7, 12.6, 88, 43.2, 56.8, 27.3, 53.4,22.7 +NA,NA,a-curv-i5,2022-23,Lexington - Lexington High,01550505," 1,183", 18.0," 2,329", 50.2, 49.5, 3.7, 12.4,7.6 +NA,NA,a-curv-i5,2022-23,Lexington - Maria Hastings,01550035, 161, 21.4, 621, 49.0, 51.1, 14.0, 16.3,7.9 +NA,NA,a-curv-i5,2022-23,Lexington - Wm Diamond Middle,01550310, 500, 19.9, 965, 47.2, 52.8, 7.5, 15.3,9 +NA,NA,a-curv-i5,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Lincoln - Hanscom Middle,01570305, 138, 14.0, 226, 46.5, 53.5, 0.0, 23.0,4.4 +NA,NA,a-curv-i5,2022-23,Lincoln - Hanscom Primary,01570006, 76, 14.4, 229, 52.0, 48.0, 2.6, 25.3,3.1 +NA,NA,a-curv-i5,2022-23,Lincoln - Lincoln School,01570025, 252, 17.2, 547, 49.7, 50.1, 4.9, 21.4,21.8 +NA,NA,a-curv-i5,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,233", 17.9," 1,490", 51.1, 48.6, 0.3, 20.3,8.9 +6.439024390243903,5,a-curv-i5,2022-23,Littleton - Littleton High School,01580505, 246, 13.8, 480, 50.6, 48.8, 0.6, 12.1,11.3,480 +NA,NA,a-curv-i5,2022-23,Littleton - Littleton Middle School,01580305, 187, 20.3, 382, 50.3, 49.7, 0.5, 17.3,12 +NA,NA,a-curv-i5,2022-23,Littleton - Russell St Elementary,01580015, 198, 21.7, 390, 49.2, 50.5, 1.3, 17.4,10.8 +NA,NA,a-curv-i5,2022-23,Littleton - Shaker Lane Elementary,01580005, 210, 19.2, 453, 45.9, 54.1, 4.0, 21.9,9.9 +NA,NA,a-curv-i5,2022-23,Longmeadow - Blueberry Hill,01590005, 190, 19.2, 395, 52.2, 47.9, 4.1, 21.3,8.1 +NA,NA,a-curv-i5,2022-23,Longmeadow - Center,01590010, 216, 17.9, 425, 49.7, 50.4, 0.2, 20.2,11.3 +NA,NA,a-curv-i5,2022-23,Longmeadow - Glenbrook Middle,01590017, 181, 18.4, 335, 47.8, 52.2, 1.5, 19.4,12.2 +NA,NA,a-curv-i5,2022-23,Longmeadow - Longmeadow High,01590505, 390, 17.6, 898, 48.8, 50.6, 0.3, 17.2,11.5 +NA,NA,a-curv-i5,2022-23,Longmeadow - Williams Middle,01590305, 177, 16.6, 284, 42.3, 57.4, 0.0, 21.1,9.5 +NA,NA,a-curv-i5,2022-23,Longmeadow - Wolf Swamp Road,01590025, 191, 18.0, 447, 48.3, 51.7, 0.7, 25.5,17.9 +NA,NA,a-curv-i5,2022-23,Lowell - Abraham Lincoln,01600020, 322, 17.0, 481, 50.7, 49.3, 34.7, 17.9,81.7 +NA,NA,a-curv-i5,2022-23,Lowell - B.F. Butler Middle School,01600310, 200, 23.2, 536, 50.2, 49.8, 20.5, 19.8,75.2 +NA,NA,a-curv-i5,2022-23,Lowell - Bartlett Community Partnership,01600090, 334, 18.6, 512, 52.5, 47.5, 30.1, 26.4,77.9 +NA,NA,a-curv-i5,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 144, 10.5, 116, 41.4, 58.6, 20.7, 52.6,72.4 +NA,NA,a-curv-i5,2022-23,Lowell - Charles W Morey,01600030, 332, 16.9, 490, 50.6, 49.4, 30.6, 22.5,70.6 +NA,NA,a-curv-i5,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 308, 17.3, 467, 50.1, 49.9, 37.3, 20.1,88.2 +NA,NA,a-curv-i5,2022-23,Lowell - Dr An Wang School,01600345, 292, 23.6, 697, 47.6, 52.2, 21.5, 19.8,67.7 +NA,NA,a-curv-i5,2022-23,Lowell - Dr Gertrude Bailey,01600002, 308, 17.2, 469, 46.7, 53.3, 31.6, 20.5,64.8 +NA,NA,a-curv-i5,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 155, 3.1, 59, 23.7, 76.3, 8.5, 100.0,71.2 +NA,NA,a-curv-i5,2022-23,Lowell - Greenhalge,01600015, 313, 18.0, 493, 47.5, 52.5, 34.9, 21.5,85 +NA,NA,a-curv-i5,2022-23,Lowell - Henry J Robinson Middle,01600330, 271, 23.3, 645, 50.9, 49.2, 29.6, 20.2,82.3 +NA,NA,a-curv-i5,2022-23,Lowell - James S Daley Middle School,01600315, 335, 22.3, 697, 45.6, 54.2, 15.6, 21.0,60.8 +NA,NA,a-curv-i5,2022-23,Lowell - James Sullivan Middle School,01600340, 360, 20.8, 646, 48.5, 51.4, 31.0, 22.5,74 +NA,NA,a-curv-i5,2022-23,Lowell - John J Shaughnessy,01600050, 338, 16.7, 498, 47.4, 52.6, 28.5, 21.5,76.1 +NA,NA,a-curv-i5,2022-23,Lowell - Joseph McAvinnue,01600010, 306, 17.3, 467, 49.5, 50.5, 34.7, 21.4,79.2 +NA,NA,a-curv-i5,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 351, 19.5, 667, 44.2, 55.6, 24.7, 16.2,79.8 +NA,NA,a-curv-i5,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 41, 2.5, 16, 25.0, 75.0, 25.0, 100.0,100 +NA,NA,a-curv-i5,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 92, 5.5, 44, 29.6, 70.5, 2.3, 100.0,93.2 +NA,NA,a-curv-i5,2022-23,Lowell - Lowell High,01600505," 2,172", 19.4," 3,256", 46.0, 53.8, 27.0, 14.1,68.5 +NA,NA,a-curv-i5,2022-23,Lowell - Moody Elementary,01600027, 138, 20.6, 249, 51.8, 48.2, 50.2, 16.5,88.4 +NA,NA,a-curv-i5,2022-23,Lowell - Pawtucketville Memorial,01600036, 318, 17.0, 473, 49.1, 51.0, 21.4, 23.0,64.3 +NA,NA,a-curv-i5,2022-23,Lowell - Peter W Reilly,01600040, 301, 18.2, 484, 52.5, 47.5, 22.3, 21.9,56 +NA,NA,a-curv-i5,2022-23,Lowell - Pyne Arts,01600018, 393, 16.6, 505, 47.9, 52.1, 22.8, 26.3,60.6 +NA,NA,a-curv-i5,2022-23,Lowell - Rogers STEM Academy,01600005, 459, 21.2, 883, 48.1, 51.9, 33.0, 16.3,85.2 +NA,NA,a-curv-i5,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 276, 20.3, 493, 51.7, 48.3, 28.2, 19.7,80.7 +NA,NA,a-curv-i5,2022-23,Lowell - The Career Academy,01600515, 102, 7.8, 84, 39.3, 60.7, 15.5, 29.8,77.4 +NA,NA,a-curv-i5,2022-23,Lowell - Washington,01600055, 207, 14.1, 255, 41.2, 58.8, 42.0, 29.8,73.3 +NA,NA,a-curv-i5,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 339, 21.3, 807, 51.1, 48.8, 53.7, 12.3,67.3 +NA,NA,a-curv-i5,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 107, 17.7, 118, 59.3, 38.1, 0.0, 42.4,76.3 +NA,NA,a-curv-i5,2022-23,Ludlow - East Street Elementary School,01610010, 202, 13.8, 369, 43.4, 56.6, 15.2, 25.2,42.3 +NA,NA,a-curv-i5,2022-23,Ludlow - Harris Brook Elementary School,01610665, 358, 16.3, 654, 46.6, 53.4, 9.8, 18.8,41.6 +NA,NA,a-curv-i5,2022-23,Ludlow - Ludlow Senior High,01610505, 391, 13.8, 789, 48.8, 51.1, 2.7, 16.4,31.2 +NA,NA,a-curv-i5,2022-23,Ludlow - Paul R Baird Middle,01610305, 342, 16.6, 519, 51.1, 48.9, 4.6, 18.9,38.9 +NA,NA,a-curv-i5,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1, 6.0, 6, 50.0, 50.0, 0.0, 100.0,66.7 +NA,NA,a-curv-i5,2022-23,Lunenburg - Lunenburg High,01620505, 244, 13.9, 444, 47.1, 52.7, 1.1, 9.9,21.6 +NA,NA,a-curv-i5,2022-23,Lunenburg - Lunenburg Middle School,01620305, 213, 21.8, 387, 49.1, 50.7, 1.0, 17.1,22.5 +NA,NA,a-curv-i5,2022-23,Lunenburg - Lunenburg Primary School,01620010, 167, 20.6, 390, 50.0, 50.0, 5.1, 18.7,28.2 +NA,NA,a-curv-i5,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 272, 22.0, 363, 51.0, 49.0, 1.9, 15.4,25.9 +NA,NA,a-curv-i5,2022-23,Lynn - A Drewicz Elementary,01630016, 137, 20.1, 521, 53.2, 46.8, 66.6, 16.9,83.7 +NA,NA,a-curv-i5,2022-23,Lynn - Aborn,01630011, 55, 16.3, 219, 49.3, 50.7, 31.5, 13.2,53.9 +NA,NA,a-curv-i5,2022-23,Lynn - Breed Middle School,01630405, 728, 20.6," 1,309", 47.3, 52.7, 27.7, 23.1,76.5 +NA,NA,a-curv-i5,2022-23,Lynn - Brickett Elementary,01630020, 105, 16.6, 327, 46.5, 53.5, 56.6, 15.9,81.4 +NA,NA,a-curv-i5,2022-23,Lynn - Capt William G Shoemaker,01630090, 170, 9.6, 326, 39.6, 60.4, 23.3, 50.6,50.9 +NA,NA,a-curv-i5,2022-23,Lynn - Classical High,01630505, 660, 20.3," 1,872", 46.3, 53.6, 34.2, 15.7,74 +NA,NA,a-curv-i5,2022-23,Lynn - Cobbet Elementary,01630035, 214, 15.9, 626, 44.9, 55.1, 72.0, 16.5,87.1 +NA,NA,a-curv-i5,2022-23,Lynn - E J Harrington,01630045, 207, 16.2, 632, 49.1, 51.0, 58.1, 22.3,86.1 +NA,NA,a-curv-i5,2022-23,Lynn - Edward A Sisson,01630095, 141, 16.2, 443, 49.4, 50.6, 40.0, 21.0,56.7 +7.657142857142857,5,a-curv-i5,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 182, 8.1, 332, 41.6, 57.2, 52.7, 20.8,88,78 +NA,NA,a-curv-i5,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 42, 16.3, 81, 44.4, 54.3, 12.4, 19.8,64.2 +NA,NA,a-curv-i5,2022-23,Lynn - Hood,01630055, 149, 18.2, 505, 48.3, 51.7, 55.8, 17.8,76.4 +NA,NA,a-curv-i5,2022-23,Lynn - Ingalls,01630060, 219, 17.7, 715, 47.6, 52.5, 70.2, 13.3,82.1 +NA,NA,a-curv-i5,2022-23,Lynn - Julia F Callahan,01630030, 168, 12.5, 414, 43.7, 56.3, 36.7, 35.0,73 +NA,NA,a-curv-i5,2022-23,Lynn - Lincoln-Thomson,01630070, 69, 15.2, 203, 52.2, 47.8, 45.8, 19.7,63.1 +NA,NA,a-curv-i5,2022-23,Lynn - Lynn English High,01630510, 767, 20.3," 2,196", 47.0, 52.7, 37.1, 12.3,74 +NA,NA,a-curv-i5,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 789, 18.6," 1,551", 46.0, 53.8, 12.1, 21.9,68.7 +NA,NA,a-curv-i5,2022-23,Lynn - Lynn Woods,01630075, 61, 12.4, 159, 48.4, 51.6, 27.0, 29.6,44 +NA,NA,a-curv-i5,2022-23,Lynn - Pickering Middle,01630420, 305, 17.9, 581, 48.4, 51.6, 18.6, 24.8,62.1 +NA,NA,a-curv-i5,2022-23,Lynn - Robert L Ford,01630050, 126, 18.2, 419, 52.5, 47.5, 64.9, 14.1,77.8 +NA,NA,a-curv-i5,2022-23,Lynn - Sewell-Anderson,01630085, 80, 19.7, 294, 56.5, 43.5, 53.1, 7.8,69.7 +NA,NA,a-curv-i5,2022-23,Lynn - Thurgood Marshall Mid,01630305, 595, 19.7," 1,316", 47.9, 52.1, 29.9, 21.1,80.6 +NA,NA,a-curv-i5,2022-23,Lynn - Tracy,01630100, 114, 18.1, 384, 49.0, 51.0, 69.0, 13.3,80.7 +NA,NA,a-curv-i5,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 32, 9.5, 76, 30.3, 69.7, 7.9, 71.1,84.2 +NA,NA,a-curv-i5,2022-23,Lynn - Washington Elementary School,01630005, 144, 17.0, 444, 49.1, 50.9, 67.8, 24.6,83.8 +NA,NA,a-curv-i5,2022-23,Lynn - William R Fallon,01630080, 40, 3.3, 30, 16.7, 83.3, 13.3, 96.7,96.7 +NA,NA,a-curv-i5,2022-23,Lynn - Wm P Connery,01630040, 182, 17.2, 570, 52.3, 47.7, 65.8, 16.7,82.1 +NA,NA,a-curv-i5,2022-23,Lynnfield - Huckleberry Hill,01640010, 227, 20.4, 450, 52.0, 48.0, 4.4, 16.4,11.6 +NA,NA,a-curv-i5,2022-23,Lynnfield - Lynnfield High,01640505, 269, 14.3, 566, 48.8, 51.2, 2.3, 16.1,12 +NA,NA,a-curv-i5,2022-23,Lynnfield - Lynnfield Middle School,01640405, 393, 20.2, 720, 47.9, 51.9, 1.0, 19.9,9.3 +NA,NA,a-curv-i5,2022-23,Lynnfield - Lynnfield Preschool,01640005, 19, 9.2, 46, 43.5, 56.5, 0.0, 54.4,21.7 +NA,NA,a-curv-i5,2022-23,Lynnfield - Summer Street,01640020, 216, 20.0, 422, 49.3, 50.7, 1.4, 13.3,6.2 +NA,NA,a-curv-i5,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 19, 15.2, 48, 50.0, 50.0, 0.0, 0.0,4.2 +NA,NA,a-curv-i5,2022-23,Malden - Beebe,01650003, 474, 18.0, 880, 48.3, 51.7, 26.4, 13.8,60.3 +NA,NA,a-curv-i5,2022-23,Malden - Ferryway,01650013, 420, 20.1, 889, 50.6, 49.4, 30.7, 15.9,67.4 +NA,NA,a-curv-i5,2022-23,Malden - Forestdale,01650027, 379, 17.7, 594, 45.3, 54.6, 19.2, 25.4,53 +NA,NA,a-curv-i5,2022-23,Malden - Linden,01650047, 373, 21.9, 856, 46.3, 53.7, 21.7, 17.6,54.2 +NA,NA,a-curv-i5,2022-23,Malden - Malden Early Learning Center,01650049, 30, 32.0, 321, 38.6, 61.4, 0.0, 60.8,50.8 +NA,NA,a-curv-i5,2022-23,Malden - Malden High,01650505, 723, 19.0," 1,879", 49.8, 50.1, 18.7, 15.9,62 +NA,NA,a-curv-i5,2022-23,Malden - Salemwood,01650057, 527, 19.3," 1,058", 50.3, 49.6, 41.4, 13.6,75.1 +NA,NA,a-curv-i5,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 122, 19.2, 228, 58.3, 41.7, 0.9, 19.3,21.9 +6.9088524590163924,5,a-curv-i5,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 305, 11.7, 416, 49.5, 50.2, 0.2, 9.6,15.4,416 +NA,NA,a-curv-i5,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 177, 15.8, 283, 51.2, 48.8, 0.4, 19.1,13.8 +NA,NA,a-curv-i5,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 171, 16.4, 290, 51.0, 49.0, 0.0, 21.4,8.6 +NA,NA,a-curv-i5,2022-23,Mansfield - Everett W Robinson,01670007, 144, 21.1, 761, 50.5, 49.5, 3.3, 14.7,23 +NA,NA,a-curv-i5,2022-23,Mansfield - Harold L Qualters Middle,01670035, 520, 17.1, 808, 46.9, 53.1, 1.6, 15.2,21.9 +NA,NA,a-curv-i5,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 159, 20.7, 704, 48.6, 51.3, 4.0, 19.0,20.3 +NA,NA,a-curv-i5,2022-23,Mansfield - Mansfield High,01670505, 707, 14.0," 1,103", 47.1, 52.7, 0.9, 15.1,18 +NA,NA,a-curv-i5,2022-23,Mansfield - Roland Green School,01670003, 10, 11.5, 115, 39.1, 60.9, 0.0, 37.4,30.4 +NA,NA,a-curv-i5,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 167, 15.2, 289, 41.2, 54.7, 0.4, 53.3,64 +NA,NA,a-curv-i5,2022-23,Marblehead - Glover,01680020, 63, 18.1, 331, 44.4, 55.6, 5.7, 21.5,7.9 +NA,NA,a-curv-i5,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 79, 20.1, 454, 46.3, 53.7, 8.2, 21.8,17.4 +NA,NA,a-curv-i5,2022-23,Marblehead - Marblehead High,01680505, 583, 14.5, 883, 49.5, 49.6, 2.7, 12.2,12.9 +NA,NA,a-curv-i5,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 273, 17.0, 419, 45.8, 54.2, 3.1, 20.8,13.8 +NA,NA,a-curv-i5,2022-23,Marblehead - Village School,01680016, 136, 22.8, 565, 48.3, 51.7, 6.4, 24.3,12.6 +NA,NA,a-curv-i5,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 90, 18.9, 218, 48.2, 51.8, 11.0, 27.1,23.4 +NA,NA,a-curv-i5,2022-23,Marion - Sippican,01690005, 194, 18.8, 410, 47.1, 52.9, 1.5, 21.5,29.5 +NA,NA,a-curv-i5,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 738, 18.4," 1,104", 50.5, 49.6, 24.4, 14.5,61.4 +NA,NA,a-curv-i5,2022-23,Marlborough - Charles Jaworek School,01700030, 277, 20.5, 712, 48.0, 52.0, 43.8, 16.3,61.7 +NA,NA,a-curv-i5,2022-23,Marlborough - Early Childhood Center,01700006, 19, 12.6, 230, 38.7, 60.9, 28.3, 47.0,51.7 +NA,NA,a-curv-i5,2022-23,Marlborough - Francis J Kane,01700008, 206, 19.7, 511, 48.3, 51.7, 29.6, 17.8,57.7 +NA,NA,a-curv-i5,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 313, 21.7, 843, 45.8, 54.2, 39.9, 14.6,59.8 +NA,NA,a-curv-i5,2022-23,Marlborough - Marlborough High,01700505, 694, 13.3," 1,162", 44.8, 54.9, 29.5, 13.1,59.9 +NA,NA,a-curv-i5,2022-23,Marlborough - Richer,01700025, 237, 19.9, 579, 50.3, 49.7, 37.8, 13.0,64.8 +NA,NA,a-curv-i5,2022-23,Marshfield - Daniel Webster,01710015, 82, 17.0, 381, 43.3, 56.7, 7.6, 29.7,32.3 +NA,NA,a-curv-i5,2022-23,Marshfield - Eames Way School,01710005, 62, 16.7, 263, 50.2, 49.8, 1.5, 21.3,16.7 +NA,NA,a-curv-i5,2022-23,Marshfield - Furnace Brook Middle,01710310, 502, 17.3, 874, 47.3, 52.8, 1.8, 21.5,19.9 +NA,NA,a-curv-i5,2022-23,Marshfield - Gov Edward Winslow,01710020, 89, 18.7, 355, 44.5, 55.5, 0.0, 17.5,14.4 +NA,NA,a-curv-i5,2022-23,Marshfield - Marshfield High,01710505, 560, 16.7," 1,177", 50.3, 49.7, 1.1, 16.7,16.2 +NA,NA,a-curv-i5,2022-23,Marshfield - Martinson Elementary,01710025, 111, 19.4, 463, 46.4, 53.6, 5.8, 18.8,24.8 +NA,NA,a-curv-i5,2022-23,Marshfield - South River,01710010, 70, 17.4, 261, 51.0, 49.0, 0.0, 23.0,12.6 +NA,NA,a-curv-i5,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 457, 13.7, 765, 48.8, 51.1, 14.9, 19.1,39.4 +NA,NA,a-curv-i5,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 99, 11.2, 179, 63.1, 36.9, 2.2, 30.7,38 +NA,NA,a-curv-i5,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 108, 19.6, 353, 49.9, 50.1, 15.6, 17.6,86.1 +6.632124352331607,5,a-curv-i5,2022-23,Masconomet - Masconomet Regional High School,07050505, 579, 13.6, 988, 53.7, 46.2, 0.3, 15.7,9.2,990 +NA,NA,a-curv-i5,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 340, 16.8, 562, 50.2, 49.8, 0.2, 18.5,9.8 +NA,NA,a-curv-i5,2022-23,Mashpee - Kenneth Coombs School,01720005, 152, 19.4, 412, 49.0, 51.0, 13.6, 16.5,47.6 +6.880341880341881,5,a-curv-i5,2022-23,Mashpee - Mashpee Middle-High School,01720505, 468, 13.4, 677, 49.2, 50.5, 2.7, 15.2,39.3,655 +NA,NA,a-curv-i5,2022-23,Mashpee - Quashnet School,01720035, 254, 19.8, 413, 44.8, 55.2, 4.6, 17.2,44.1 +NA,NA,a-curv-i5,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 406, 19.1," 1,186", 51.6, 48.4, 17.7, 23.0,73.1 +NA,NA,a-curv-i5,2022-23,Mattapoisett - Center,01730005, 110, 17.4, 238, 49.2, 50.8, 0.4, 19.3,24.4 +NA,NA,a-curv-i5,2022-23,Mattapoisett - Old Hammondtown,01730010, 84, 21.1, 188, 47.9, 52.1, 0.0, 21.3,23.4 +NA,NA,a-curv-i5,2022-23,Maynard - Fowler School,01740305, 313, 18.7, 462, 47.8, 51.5, 6.1, 19.7,29.2 +NA,NA,a-curv-i5,2022-23,Maynard - Green Meadow,01740010, 190, 17.9, 428, 49.8, 50.2, 10.3, 21.5,29.4 +6.72964824120603,5,a-curv-i5,2022-23,Maynard - Maynard High,01740505, 199, 13.0, 315, 52.7, 46.0, 5.1, 18.4,25.4,316 +NA,NA,a-curv-i5,2022-23,Medfield - Dale Street,01750005, 249, 17.7, 390, 51.5, 48.5, 0.3, 16.9,10.5 +NA,NA,a-curv-i5,2022-23,Medfield - Medfield Senior High,01750505, 397, 16.6, 742, 50.8, 49.2, 0.4, 11.9,7.7 +NA,NA,a-curv-i5,2022-23,Medfield - Memorial School,01750003, 180, 19.5, 433, 47.6, 52.4, 2.3, 12.9,9.5 +NA,NA,a-curv-i5,2022-23,Medfield - Ralph Wheelock School,01750007, 189, 21.0, 384, 54.7, 45.3, 1.0, 13.5,7.3 +NA,NA,a-curv-i5,2022-23,Medfield - Thomas Blake Middle,01750305, 511, 14.7, 584, 45.2, 54.6, 1.0, 17.8,8.7 +NA,NA,a-curv-i5,2022-23,Medford - Brooks School,01760130, 156, 19.8, 568, 49.1, 50.9, 3.0, 28.2,18.1 +NA,NA,a-curv-i5,2022-23,Medford - Curtis-Tufts,01760510, 20, 6.5, 19, 47.4, 52.6, 0.0, 100.0,63.2 +NA,NA,a-curv-i5,2022-23,Medford - John J McGlynn Elementary School,01760068, 182, 16.1, 495, 48.9, 50.9, 32.7, 15.6,61.6 +NA,NA,a-curv-i5,2022-23,Medford - John J. McGlynn Middle School,01760320, 329, 15.9, 483, 44.1, 55.7, 22.8, 18.8,48.2 +NA,NA,a-curv-i5,2022-23,Medford - Madeleine Dugger Andrews,01760315, 339, 16.7, 468, 52.4, 47.2, 0.0, 19.9,36.3 +NA,NA,a-curv-i5,2022-23,Medford - Medford High,01760505, 710, 12.8," 1,250", 45.2, 54.2, 11.1, 20.2,44.7 +NA,NA,a-curv-i5,2022-23,Medford - Milton Fuller Roberts,01760150, 199, 16.1, 554, 49.5, 50.4, 8.3, 22.6,29.4 +NA,NA,a-curv-i5,2022-23,Medford - Missituk Elementary School,01760140, 163, 14.5, 404, 49.5, 50.3, 26.7, 24.5,43.6 +NA,NA,a-curv-i5,2022-23,Medway - Burke/Memorial Elementary School,01770015, 202, 20.6, 495, 46.3, 53.7, 5.5, 14.6,16.4 +NA,NA,a-curv-i5,2022-23,Medway - John D Mc Govern Elementary,01770013, 136, 18.5, 375, 49.9, 50.1, 9.3, 18.7,16.8 +NA,NA,a-curv-i5,2022-23,Medway - Medway High,01770505, 306, 15.4, 623, 53.0, 46.4, 1.9, 12.8,14.6 +NA,NA,a-curv-i5,2022-23,Medway - Medway Middle,01770305, 361, 17.4, 658, 48.9, 51.1, 3.0, 18.8,16.3 +NA,NA,a-curv-i5,2022-23,Melrose - Early Childhood Center,01780003, 33, 16.0, 287, 43.6, 56.1, 1.7, 25.4,11.9 +NA,NA,a-curv-i5,2022-23,Melrose - Herbert Clark Hoover,01780017, 133, 19.8, 297, 49.5, 50.5, 9.8, 17.2,16.8 +NA,NA,a-curv-i5,2022-23,Melrose - Horace Mann,01780025, 106, 21.7, 260, 53.1, 46.5, 0.0, 15.8,2.7 +NA,NA,a-curv-i5,2022-23,Melrose - Lincoln,01780020, 176, 20.6, 411, 47.7, 52.3, 21.4, 16.3,29 +NA,NA,a-curv-i5,2022-23,Melrose - Melrose High,01780505, 384, 16.2, 918, 50.0, 49.6, 2.8, 15.7,15.9 +NA,NA,a-curv-i5,2022-23,Melrose - Melrose Middle,01780305, 485, 22.8, 878, 51.7, 48.1, 3.8, 17.8,17.9 +NA,NA,a-curv-i5,2022-23,Melrose - Roosevelt,01780035, 168, 21.6, 411, 48.9, 50.6, 6.1, 23.8,13.6 +NA,NA,a-curv-i5,2022-23,Melrose - Winthrop,01780050, 168, 21.2, 403, 50.1, 49.4, 0.3, 13.4,6.7 +NA,NA,a-curv-i5,2022-23,Mendon-Upton - Henry P Clough,07100179, 133, 20.1, 358, 46.7, 53.4, 7.5, 15.9,16.2 +NA,NA,a-curv-i5,2022-23,Mendon-Upton - Memorial School,07100001, 184, 22.4, 529, 51.8, 48.2, 5.7, 14.7,18.5 +NA,NA,a-curv-i5,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 389, 16.8, 644, 48.9, 50.9, 2.3, 20.3,16 +NA,NA,a-curv-i5,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 372, 12.8, 600, 52.7, 46.8, 2.3, 14.8,17.2 +NA,NA,a-curv-i5,2022-23,Methuen - Comprehensive Grammar School,01810050, 597, 16.5," 1,060", 48.6, 51.4, 29.4, 21.6,53.1 +NA,NA,a-curv-i5,2022-23,Methuen - Donald P Timony Grammar,01810060, 592, 19.6," 1,274", 47.1, 52.9, 21.8, 22.5,58.3 +NA,NA,a-curv-i5,2022-23,Methuen - Marsh Grammar School,01810030, 607, 16.3," 1,072", 42.7, 57.3, 12.1, 24.2,44.7 +NA,NA,a-curv-i5,2022-23,Methuen - Methuen High,01810505," 1,011", 18.6," 1,996", 48.0, 51.9, 14.2, 10.3,48.5 +NA,NA,a-curv-i5,2022-23,Methuen - Tenney Grammar School,01810055, 655, 18.2," 1,290", 48.1, 51.9, 19.1, 21.2,63 +NA,NA,a-curv-i5,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 261, 19.9, 576, 51.2, 48.8, 3.1, 16.2,52.3 +NA,NA,a-curv-i5,2022-23,Middleborough - John T. Nichols Middle,01820305, 386, 20.4, 722, 48.2, 51.8, 1.4, 18.1,42 +NA,NA,a-curv-i5,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 270, 20.5, 616, 51.1, 48.9, 2.4, 20.9,35.4 +NA,NA,a-curv-i5,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 94, 20.9, 308, 47.7, 52.3, 1.6, 27.0,45.1 +NA,NA,a-curv-i5,2022-23,Middleborough - Middleborough High,01820505, 466, 15.7, 861, 50.8, 48.9, 2.1, 14.8,35.2 +NA,NA,a-curv-i5,2022-23,Middleton - Fuller Meadow,01840003, 136, 13.6, 295, 43.4, 56.6, 5.1, 17.6,13.6 +NA,NA,a-curv-i5,2022-23,Middleton - Howe-Manning,01840005, 215, 16.7, 438, 53.2, 46.8, 1.4, 24.4,11 +NA,NA,a-curv-i5,2022-23,Milford - Brookside,01850065, 189, 19.0, 557, 45.2, 54.8, 44.2, 18.0,60.1 +NA,NA,a-curv-i5,2022-23,Milford - Memorial,01850010, 190, 16.1, 484, 49.0, 51.0, 56.0, 16.1,64.9 +NA,NA,a-curv-i5,2022-23,Milford - Milford High,01850505, 637, 17.1," 1,347", 45.2, 54.7, 20.4, 12.6,51.7 +NA,NA,a-curv-i5,2022-23,Milford - Shining Star Early Childhood Center,01850075, 36, 10.8, 190, 41.1, 59.0, 36.8, 58.4,51.6 +NA,NA,a-curv-i5,2022-23,Milford - Stacy Middle,01850305, 494, 21.7," 1,065", 49.0, 51.0, 21.4, 16.5,55.9 +NA,NA,a-curv-i5,2022-23,Milford - Woodland,01850090, 396, 18.6, 968, 47.7, 52.2, 29.2, 18.1,57.6 +NA,NA,a-curv-i5,2022-23,Millbury - Elmwood Street,01860017, 155, 19.1, 448, 46.2, 53.8, 5.8, 23.4,32.4 +NA,NA,a-curv-i5,2022-23,Millbury - Millbury Junior/Senior High,01860505, 395, 16.0, 749, 47.0, 51.8, 5.1, 22.2,37.5 +NA,NA,a-curv-i5,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 212, 19.6, 469, 47.8, 52.2, 5.5, 18.3,35.4 +NA,NA,a-curv-i5,2022-23,Millis - Clyde F Brown,01870005, 225, 20.7, 624, 49.5, 50.5, 4.8, 20.4,18.3 +6.535672514619883,5,a-curv-i5,2022-23,Millis - Millis High School,01870505, 171, 12.3, 314, 52.2, 46.5, 1.3, 12.1,18.5,313 +NA,NA,a-curv-i5,2022-23,Millis - Millis Middle,01870020, 180, 16.5, 273, 53.9, 46.2, 1.5, 17.2,18.7 +NA,NA,a-curv-i5,2022-23,Millis - TIES,01870515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Milton - Charles S Pierce Middle,01890410, 533, 17.9, 951, 51.4, 48.6, 1.5, 17.4,13.6 +NA,NA,a-curv-i5,2022-23,Milton - Collicot,01890005, 278, 20.7, 585, 52.0, 48.0, 1.9, 16.1,7.7 +NA,NA,a-curv-i5,2022-23,Milton - Cunningham School,01890007, 253, 21.8, 638, 49.1, 50.9, 3.8, 24.3,11 +NA,NA,a-curv-i5,2022-23,Milton - Glover,01890010, 291, 22.6, 631, 54.7, 45.3, 3.5, 14.4,8.9 +NA,NA,a-curv-i5,2022-23,Milton - Milton High,01890505, 491, 16.9," 1,066", 48.8, 50.5, 2.3, 19.9,17.1 +NA,NA,a-curv-i5,2022-23,Milton - Tucker,01890020, 196, 22.8, 465, 45.4, 54.4, 4.7, 20.2,26.2 +NA,NA,a-curv-i5,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 548, 13.1, 685, 36.5, 61.3, 1.0, 28.9,19.6 +NA,NA,a-curv-i5,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 64, 17.1, 278, 53.2, 46.8, 0.0, 21.6,42.1 +NA,NA,a-curv-i5,2022-23,Mohawk Trail - Colrain Central,07170010, 32, 12.8, 105, 44.8, 55.2, 1.9, 32.4,55.2 +7.194052044609665,5,a-curv-i5,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 269, 9.6, 284, 50.4, 48.6, 0.4, 32.0,44,271 +NA,NA,a-curv-i5,2022-23,Mohawk Trail - Sanderson Academy,07170020, 35, 14.3, 137, 49.6, 50.4, 0.7, 16.8,40.2 +NA,NA,a-curv-i5,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 119, 15.8, 145, 44.1, 55.9, 7.6, 18.6,47.6 +NA,NA,a-curv-i5,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 334, 17.3, 493, 42.0, 58.0, 5.1, 24.8,39 +6.805106382978724,5,a-curv-i5,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 470, 13.9, 706, 53.0, 46.6, 3.1, 14.2,34.1,702 +NA,NA,a-curv-i5,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 378, 15.4, 453, 45.5, 54.3, 3.1, 23.2,40 +NA,NA,a-curv-i5,2022-23,Monson - Granite Valley School,01910030, 259, 16.4, 408, 49.5, 50.5, 1.0, 27.0,41.7 +6.876190476190476,5,a-curv-i5,2022-23,Monson - Monson High School,01910505, 210, 11.9, 295, 55.6, 43.7, 0.7, 25.8,40,295 +NA,NA,a-curv-i5,2022-23,Monson - Quarry Hill Community School,01910010, 62, 14.6, 131, 55.0, 45.0, 0.0, 29.0,38.9 +NA,NA,a-curv-i5,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 584, 17.9," 1,393", 48.5, 50.3, 0.5, 17.0,38 +NA,NA,a-curv-i5,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 132, 15.8, 234, 50.9, 49.2, 3.9, 20.1,41.5 +NA,NA,a-curv-i5,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 374, 13.8, 542, 50.9, 48.2, 1.1, 17.5,23.4 +NA,NA,a-curv-i5,2022-23,Mount Greylock - Williamstown Elementary,07150010, 242, 15.6, 440, 45.5, 53.9, 3.6, 13.9,23.6 +NA,NA,a-curv-i5,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 729, 25.6," 1,605", 51.7, 48.4, 2.2, 10.5,29.2 +NA,NA,a-curv-i5,2022-23,Nahant - Johnson,01960010, 70, 14.1, 154, 41.6, 58.4, 0.0, 22.7,22.7 +NA,NA,a-curv-i5,2022-23,Nantucket - Cyrus Peirce,01970010, 185, 19.0, 393, 47.6, 52.4, 12.5, 17.3,39.7 +NA,NA,a-curv-i5,2022-23,Nantucket - Nantucket Elementary,01970005, 243, 17.3, 412, 52.4, 47.6, 25.7, 21.1,45.9 +NA,NA,a-curv-i5,2022-23,Nantucket - Nantucket High,01970505, 314, 15.5, 595, 48.2, 51.8, 12.8, 11.6,34.1 +NA,NA,a-curv-i5,2022-23,Nantucket - Nantucket Intermediate School,01970020, 218, 17.9, 337, 49.0, 51.0, 14.0, 21.1,38.6 +NA,NA,a-curv-i5,2022-23,Narragansett - Narragansett Middle,07200305, 162, 21.9, 365, 49.0, 51.0, 0.8, 22.7,34.3 +NA,NA,a-curv-i5,2022-23,Narragansett - Narragansett Regional High,07200505, 249, 16.0, 464, 43.8, 54.5, 1.1, 17.9,38.4 +NA,NA,a-curv-i5,2022-23,Narragansett - Templeton Elementary School,07200020, 257, 22.0, 657, 48.0, 52.1, 1.4, 19.0,40.9 +NA,NA,a-curv-i5,2022-23,Nashoba - Center School,07250020, 172, 19.1, 496, 45.8, 54.2, 4.0, 21.6,9.1 +NA,NA,a-curv-i5,2022-23,Nashoba - Florence Sawyer School,07250025, 263, 19.8, 742, 49.2, 50.8, 1.5, 17.4,8.2 +NA,NA,a-curv-i5,2022-23,Nashoba - Hale,07250310, 112, 19.1, 271, 53.5, 46.5, 0.4, 22.1,7.4 +NA,NA,a-curv-i5,2022-23,Nashoba - Luther Burbank Middle School,07250305, 125, 17.9, 239, 49.8, 50.2, 4.2, 19.3,23 +NA,NA,a-curv-i5,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 137, 19.8, 479, 46.8, 53.2, 4.0, 21.5,21.7 +NA,NA,a-curv-i5,2022-23,Nashoba - Nashoba Regional,07250505, 500, 13.1, 831, 49.2, 50.5, 1.4, 13.5,11.4 +6.328690807799442,5,a-curv-i5,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 359, 13.9, 729, 37.6, 60.1, 0.6, 32.1,32.7,750 +NA,NA,a-curv-i5,2022-23,Natick - Bennett-Hemenway,01980005, 179, 19.0, 484, 48.6, 51.5, 4.8, 21.1,9.9 +NA,NA,a-curv-i5,2022-23,Natick - Brown,01980010, 181, 19.7, 501, 45.3, 54.7, 13.6, 8.8,20 +NA,NA,a-curv-i5,2022-23,Natick - J F Kennedy Middle School,01980305, 465, 20.8, 901, 45.6, 54.1, 4.3, 17.7,14.9 +NA,NA,a-curv-i5,2022-23,Natick - Johnson,01980031, 56, 17.0, 136, 45.6, 53.7, 0.0, 16.2,15.4 +NA,NA,a-curv-i5,2022-23,Natick - Lilja Elementary,01980035, 166, 17.7, 416, 49.8, 50.2, 7.0, 16.6,17.3 +NA,NA,a-curv-i5,2022-23,Natick - Memorial,01980043, 147, 20.8, 436, 50.5, 49.5, 0.2, 12.8,6 +NA,NA,a-curv-i5,2022-23,Natick - Natick High,01980505, 953, 15.8," 1,756", 46.4, 53.0, 2.7, 20.8,13.8 +NA,NA,a-curv-i5,2022-23,Natick - Wilson Middle,01980310, 443, 18.7, 780, 51.0, 48.9, 0.5, 22.7,14.7 +NA,NA,a-curv-i5,2022-23,Nauset - Nauset Regional High,06600505, 539, 11.4, 766, 54.3, 45.2, 0.9, 16.2,26.5 +NA,NA,a-curv-i5,2022-23,Nauset - Nauset Regional Middle,06600305, 305, 17.2, 538, 51.1, 48.9, 1.9, 19.5,33.3 +NA,NA,a-curv-i5,2022-23,Needham - Broadmeadow,01990005, 125, 20.3, 508, 46.1, 53.9, 2.6, 16.7,4.7 +NA,NA,a-curv-i5,2022-23,Needham - High Rock School,01990410, 310, 18.2, 449, 49.0, 51.0, 1.6, 22.1,9.1 +NA,NA,a-curv-i5,2022-23,Needham - John Eliot,01990020, 120, 17.5, 421, 49.4, 50.6, 7.1, 16.6,15.4 +NA,NA,a-curv-i5,2022-23,Needham - Needham High,01990505, 738, 16.4," 1,641", 50.7, 48.4, 1.2, 17.6,7.6 +NA,NA,a-curv-i5,2022-23,Needham - Newman Elementary,01990050, 165, 19.6, 715, 46.3, 53.6, 5.3, 23.5,8.3 +NA,NA,a-curv-i5,2022-23,Needham - Pollard Middle,01990405, 660, 16.6, 822, 51.2, 48.7, 2.6, 18.9,7.5 +NA,NA,a-curv-i5,2022-23,Needham - Sunita L. Williams Elementary,01990035, 125, 21.3, 532, 46.2, 53.8, 6.8, 16.5,8.7 +NA,NA,a-curv-i5,2022-23,Needham - William Mitchell,01990040, 115, 19.5, 449, 46.8, 53.2, 3.6, 18.9,6 +NA,NA,a-curv-i5,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 409, 15.3, 800, 48.1, 51.9, 11.0, 27.9,64.1 +NA,NA,a-curv-i5,2022-23,New Bedford - Abraham Lincoln,02010095, 288, 20.3, 649, 47.0, 53.0, 36.4, 13.7,86.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Alfred J Gomes,02010063, 304, 17.4, 518, 48.1, 51.9, 56.2, 20.9,88.2 +NA,NA,a-curv-i5,2022-23,New Bedford - Betsey B Winslow,02010140, 104, 18.6, 232, 46.1, 53.5, 6.5, 17.2,64.7 +NA,NA,a-curv-i5,2022-23,New Bedford - Carlos Pacheco,02010105, 130, 20.9, 348, 52.6, 47.4, 33.9, 21.6,88.8 +NA,NA,a-curv-i5,2022-23,New Bedford - Casimir Pulaski,02010123, 330, 15.2, 578, 44.1, 55.9, 7.6, 30.6,62.6 +NA,NA,a-curv-i5,2022-23,New Bedford - Charles S Ashley,02010010, 153, 14.7, 276, 47.5, 52.5, 17.8, 22.1,72.1 +NA,NA,a-curv-i5,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 114, 19.9, 277, 53.1, 46.9, 16.3, 25.6,76.9 +NA,NA,a-curv-i5,2022-23,New Bedford - Ellen R Hathaway,02010075, 131, 12.6, 251, 47.8, 52.2, 39.4, 22.3,87.3 +NA,NA,a-curv-i5,2022-23,New Bedford - Elwyn G Campbell,02010020, 107, 17.0, 317, 43.5, 56.5, 27.1, 38.2,79.2 +NA,NA,a-curv-i5,2022-23,New Bedford - Hayden/McFadden,02010078, 377, 16.3, 703, 49.5, 50.5, 46.1, 26.5,89.6 +NA,NA,a-curv-i5,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 172, 19.3, 404, 47.3, 52.5, 42.6, 21.8,90.4 +NA,NA,a-curv-i5,2022-23,New Bedford - James B Congdon,02010040, 162, 18.9, 340, 47.9, 52.1, 28.8, 16.5,84.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Jireh Swift,02010130, 117, 13.6, 252, 54.0, 46.0, 21.0, 21.4,73 +NA,NA,a-curv-i5,2022-23,New Bedford - John Avery Parker,02010115, 98, 18.4, 252, 50.4, 49.6, 31.0, 17.9,85.3 +NA,NA,a-curv-i5,2022-23,New Bedford - John B Devalles,02010050, 145, 16.4, 292, 51.7, 48.3, 42.1, 18.8,90.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Keith Middle School,02010405, 506, 14.6, 865, 48.2, 51.7, 11.0, 20.9,79.8 +NA,NA,a-curv-i5,2022-23,New Bedford - New Bedford High,02010505," 1,384", 18.1," 3,007", 46.8, 53.0, 28.4, 17.7,78.5 +NA,NA,a-curv-i5,2022-23,New Bedford - Normandin Middle School,02010410, 550, 20.5," 1,066", 49.3, 50.7, 15.1, 20.2,71.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 58, 16.8, 131, 48.9, 51.2, 59.5, 18.3,90.1 +NA,NA,a-curv-i5,2022-23,New Bedford - Roosevelt Middle School,02010415, 426, 15.7, 816, 46.3, 53.7, 23.8, 25.4,85.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 375, 13.4, 623, 41.6, 58.4, 17.2, 42.2,84.4 +NA,NA,a-curv-i5,2022-23,New Bedford - Thomas R Rodman,02010125, 97, 16.6, 198, 49.0, 51.0, 19.7, 21.7,80.8 +NA,NA,a-curv-i5,2022-23,New Bedford - Trinity Day Academy,02010510, 152, 6.3, 108, 34.3, 63.9, 10.2, 99.1,89.8 +7.2,5,a-curv-i5,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 135, 11.4, 229, 33.6, 66.4, 17.0, 32.3,92.6,135 +NA,NA,a-curv-i5,2022-23,New Bedford - William H Taylor,02010135, 98, 19.7, 251, 50.6, 49.4, 16.7, 24.7,68.9 +NA,NA,a-curv-i5,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 195, 23.2, 692, 52.8, 47.3, 19.8, 12.0,58.4 +NA,NA,a-curv-i5,2022-23,New Salem-Wendell - Swift River,07280015, 88, 17.5, 140, 48.6, 51.4, 0.0, 29.3,42.1 +NA,NA,a-curv-i5,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 176, 19.9, 286, 57.3, 42.7, 2.8, 25.5,15 +NA,NA,a-curv-i5,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 237, 17.8, 589, 49.6, 50.4, 6.5, 20.4,12.4 +NA,NA,a-curv-i5,2022-23,Newburyport - Newburyport High,02040505, 725, 16.0, 822, 50.9, 49.2, 2.6, 17.6,11.6 +NA,NA,a-curv-i5,2022-23,Newburyport - Rupert A Nock Middle,02040305, 398, 16.2, 486, 49.0, 50.8, 3.9, 22.6,11.9 +NA,NA,a-curv-i5,2022-23,Newton - A E Angier,02070005, 146, 18.3, 377, 48.3, 50.4, 8.5, 18.3,8 +NA,NA,a-curv-i5,2022-23,Newton - Bigelow Middle,02070305, 271, 18.1, 450, 51.3, 48.0, 7.1, 16.7,19.6 +NA,NA,a-curv-i5,2022-23,Newton - Bowen,02070015, 132, 19.4, 359, 49.3, 50.4, 10.6, 17.0,10.9 +NA,NA,a-curv-i5,2022-23,Newton - C C Burr,02070020, 132, 19.7, 365, 48.2, 51.0, 12.3, 18.4,14.8 +NA,NA,a-curv-i5,2022-23,Newton - Cabot,02070025, 152, 21.1, 452, 50.0, 49.8, 8.9, 15.9,12.8 +NA,NA,a-curv-i5,2022-23,Newton - Charles E Brown Middle,02070310, 441, 19.0, 763, 47.2, 51.8, 3.9, 17.3,8.5 +NA,NA,a-curv-i5,2022-23,Newton - Countryside,02070040, 139, 19.9, 387, 47.6, 52.5, 12.9, 20.2,12.9 +NA,NA,a-curv-i5,2022-23,Newton - F A Day Middle,02070315, 506, 19.8, 937, 49.7, 50.2, 2.7, 15.8,14.2 +NA,NA,a-curv-i5,2022-23,Newton - Franklin,02070055, 132, 19.9, 367, 54.2, 45.5, 14.4, 14.4,13.9 +NA,NA,a-curv-i5,2022-23,Newton - Horace Mann,02070075, 132, 19.7, 366, 46.2, 53.6, 9.3, 15.6,16.1 +NA,NA,a-curv-i5,2022-23,Newton - John Ward,02070120, 80, 17.3, 196, 46.9, 53.1, 6.6, 16.3,4.6 +NA,NA,a-curv-i5,2022-23,Newton - Lincoln-Eliot,02070070, 132, 18.7, 341, 44.9, 54.8, 21.1, 20.5,30.8 +NA,NA,a-curv-i5,2022-23,Newton - Mason-Rice,02070080, 132, 17.9, 333, 51.7, 48.1, 10.5, 14.7,5.4 +NA,NA,a-curv-i5,2022-23,Newton - Memorial Spaulding,02070105, 146, 19.3, 395, 52.7, 47.3, 13.2, 16.5,10.6 +NA,NA,a-curv-i5,2022-23,Newton - Newton Early Childhood Program,02070108, 24, 11.6, 221, 36.2, 63.8, 5.0, 66.5,17.2 +NA,NA,a-curv-i5,2022-23,Newton - Newton North High,02070505," 1,142", 14.7," 2,119", 48.8, 50.5, 3.8, 16.2,16.5 +NA,NA,a-curv-i5,2022-23,Newton - Newton South High,02070510," 1,060", 13.7," 1,846", 47.7, 51.5, 2.8, 12.8,12.3 +NA,NA,a-curv-i5,2022-23,Newton - Oak Hill Middle,02070320, 517, 15.4, 667, 49.6, 50.1, 6.6, 22.9,13 +NA,NA,a-curv-i5,2022-23,Newton - Peirce,02070100, 96, 17.8, 241, 48.6, 51.5, 7.1, 19.5,14.9 +NA,NA,a-curv-i5,2022-23,Newton - Underwood,02070115, 90, 17.7, 223, 54.3, 45.7, 12.6, 11.7,17.9 +NA,NA,a-curv-i5,2022-23,Newton - Williams,02070125, 90, 18.5, 233, 47.6, 52.4, 13.7, 20.6,13.3 +NA,NA,a-curv-i5,2022-23,Newton - Zervas,02070130, 153, 19.2, 411, 48.7, 51.3, 14.4, 15.8,12.9 +NA,NA,a-curv-i5,2022-23,Norfolk - Freeman-Kennedy School,02080005, 174, 21.3, 519, 49.3, 50.7, 2.7, 19.7,6.7 +NA,NA,a-curv-i5,2022-23,Norfolk - H Olive Day,02080015, 95, 23.2, 489, 48.1, 51.9, 2.7, 18.8,6.8 +NA,NA,a-curv-i5,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 511, 15.8, 585, 71.5, 27.0, 0.2, 21.9,18.8 +NA,NA,a-curv-i5,2022-23,North Adams - Brayton,02090035, 124, 12.3, 232, 39.7, 60.3, 0.9, 36.6,75.4 +NA,NA,a-curv-i5,2022-23,North Adams - Colegrove Park Elementary,02090008, 123, 13.5, 252, 45.2, 54.4, 1.2, 32.9,75.8 +NA,NA,a-curv-i5,2022-23,North Adams - Drury High,02090505, 265, 13.3, 492, 53.9, 45.9, 0.4, 23.2,66.1 +NA,NA,a-curv-i5,2022-23,North Adams - Greylock,02090015, 108, 16.9, 277, 49.8, 50.2, 1.1, 26.7,72.6 +NA,NA,a-curv-i5,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 157, 18.3, 447, 46.1, 53.9, 4.7, 31.1,23.9 +NA,NA,a-curv-i5,2022-23,North Andover - Annie L Sargent School,02110018, 199, 20.9, 467, 49.0, 51.0, 1.7, 18.4,10.7 +NA,NA,a-curv-i5,2022-23,North Andover - Atkinson,02110001, 150, 16.4, 276, 48.9, 51.1, 11.6, 26.5,43.5 +NA,NA,a-curv-i5,2022-23,North Andover - Franklin,02110010, 190, 18.0, 384, 45.3, 54.4, 3.4, 20.8,15.4 +NA,NA,a-curv-i5,2022-23,North Andover - Kittredge,02110015, 134, 15.0, 228, 46.9, 52.6, 6.6, 18.9,14.9 +NA,NA,a-curv-i5,2022-23,North Andover - North Andover High,02110505, 811, 15.5," 1,337", 49.5, 50.3, 1.5, 15.6,23.5 +NA,NA,a-curv-i5,2022-23,North Andover - North Andover Middle,02110305, 753, 22.4," 1,068", 45.9, 53.8, 2.7, 18.8,24.2 +NA,NA,a-curv-i5,2022-23,North Andover - Thomson,02110020, 135, 20.8, 313, 47.0, 53.0, 5.8, 21.7,37.1 +NA,NA,a-curv-i5,2022-23,North Attleborough - Amvet Boulevard,02120007, 123, 23.0, 410, 51.0, 49.0, 5.4, 15.4,18.5 +NA,NA,a-curv-i5,2022-23,North Attleborough - Community,02120030, 89, 22.5, 293, 47.4, 52.2, 9.9, 31.7,54.6 +NA,NA,a-curv-i5,2022-23,North Attleborough - Falls,02120010, 82, 19.3, 233, 43.8, 55.8, 3.4, 19.3,18 +NA,NA,a-curv-i5,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 164, 22.3, 534, 44.9, 54.9, 3.2, 22.1,21.5 +NA,NA,a-curv-i5,2022-23,North Attleborough - North Attleboro High,02120505, 605, 16.0," 1,119", 50.9, 48.4, 1.2, 12.6,22.3 +NA,NA,a-curv-i5,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 85, 11.3, 192, 43.2, 56.8, 6.8, 53.7,36.5 +NA,NA,a-curv-i5,2022-23,North Attleborough - North Attleborough Middle,02120305, 533, 18.2, 965, 47.6, 52.4, 1.5, 20.6,24.2 +NA,NA,a-curv-i5,2022-23,North Attleborough - Roosevelt Avenue,02120015, 82, 21.3, 254, 48.0, 52.0, 3.2, 20.5,20.5 +NA,NA,a-curv-i5,2022-23,North Brookfield - North Brookfield Elementary,02150015, 78, 18.9, 301, 50.5, 49.5, 5.7, 23.3,49.5 +NA,NA,a-curv-i5,2022-23,North Brookfield - North Brookfield High,02150505, 86, 10.6, 145, 51.0, 49.0, 4.8, 27.6,57.9 +NA,NA,a-curv-i5,2022-23,North Middlesex - Ashby Elementary,07350010, 71, 19.2, 136, 41.9, 58.1, 4.4, 25.0,32.4 +NA,NA,a-curv-i5,2022-23,North Middlesex - Hawthorne Brook,07350030, 264, 20.5, 473, 55.6, 44.4, 0.9, 24.5,31.9 +NA,NA,a-curv-i5,2022-23,North Middlesex - Nissitissit Middle School,07350310, 291, 19.9, 494, 45.8, 54.3, 0.4, 27.7,28.3 +NA,NA,a-curv-i5,2022-23,North Middlesex - North Middlesex Regional,07350505, 383, 16.5, 759, 47.0, 52.7, 1.1, 24.6,22.4 +NA,NA,a-curv-i5,2022-23,North Middlesex - Spaulding Memorial,07350005, 201, 20.9, 418, 50.5, 49.5, 3.4, 20.1,25.6 +NA,NA,a-curv-i5,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 30, 5.5, 123, 36.6, 63.4, 4.9, 45.5,38.2 +NA,NA,a-curv-i5,2022-23,North Middlesex - Varnum Brook,07350035, 262, 24.2, 630, 50.8, 49.2, 4.8, 21.6,29.4 +NA,NA,a-curv-i5,2022-23,North Reading - E Ethel Little School,02170003, 166, 20.2, 329, 49.2, 50.8, 0.0, 19.5,14.9 +NA,NA,a-curv-i5,2022-23,North Reading - J Turner Hood,02170010, 206, 19.2, 386, 49.5, 50.5, 1.6, 23.1,11.4 +NA,NA,a-curv-i5,2022-23,North Reading - L D Batchelder,02170005, 210, 23.3, 464, 46.3, 53.7, 1.3, 17.2,7.5 +NA,NA,a-curv-i5,2022-23,North Reading - North Reading High,02170505, 302, 16.5, 647, 51.9, 47.5, 0.2, 17.5,10.8 +NA,NA,a-curv-i5,2022-23,North Reading - North Reading Middle,02170305, 369, 15.5, 542, 47.2, 52.8, 0.7, 20.3,13.7 +NA,NA,a-curv-i5,2022-23,Northampton - Bridge Street,02100005, 86, 18.3, 286, 49.3, 50.4, 9.8, 30.1,51.8 +NA,NA,a-curv-i5,2022-23,Northampton - Jackson Street,02100020, 92, 19.5, 290, 45.9, 53.8, 6.2, 19.0,26.9 +NA,NA,a-curv-i5,2022-23,Northampton - John F Kennedy Middle School,02100410, 491, 14.1, 600, 45.7, 53.2, 3.5, 23.8,30.5 +NA,NA,a-curv-i5,2022-23,Northampton - Leeds,02100025, 94, 17.5, 306, 45.4, 54.3, 5.6, 30.1,36.3 +NA,NA,a-curv-i5,2022-23,Northampton - Northampton High,02100505, 429, 15.3, 904, 49.2, 49.1, 3.5, 18.9,25.3 +NA,NA,a-curv-i5,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 73, 19.6, 235, 46.4, 52.8, 4.3, 18.7,31.5 +NA,NA,a-curv-i5,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 464, 12.4, 571, 39.8, 58.8, 2.5, 39.1,39.1 +NA,NA,a-curv-i5,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 752, 13.9," 1,224", 52.5, 47.4, 1.8, 16.1,13.2 +NA,NA,a-curv-i5,2022-23,Northborough - Fannie E Proctor,02130015, 54, 19.2, 249, 49.0, 51.0, 6.8, 16.9,22.5 +NA,NA,a-curv-i5,2022-23,Northborough - Lincoln Street,02130003, 63, 19.2, 292, 46.9, 53.1, 6.2, 20.2,19.2 +NA,NA,a-curv-i5,2022-23,Northborough - Marguerite E Peaslee,02130014, 58, 19.3, 265, 47.2, 52.8, 6.0, 26.0,21.5 +NA,NA,a-curv-i5,2022-23,Northborough - Marion E Zeh,02130020, 55, 20.8, 250, 48.0, 52.0, 6.0, 28.0,15.6 +NA,NA,a-curv-i5,2022-23,Northborough - Robert E. Melican Middle School,02130305, 438, 16.2, 552, 45.3, 54.7, 3.1, 24.6,19.2 +NA,NA,a-curv-i5,2022-23,Northbridge - Northbridge Elementary School,02140001, 258, 19.0, 955, 45.9, 54.1, 3.1, 26.3,41.4 +NA,NA,a-curv-i5,2022-23,Northbridge - Northbridge High,02140505, 253, 14.9, 507, 45.8, 54.2, 1.8, 15.4,33.9 +NA,NA,a-curv-i5,2022-23,Northbridge - Northbridge Middle,02140305, 300, 18.6, 486, 53.9, 46.1, 2.7, 18.5,40.7 +NA,NA,a-curv-i5,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 948, 18.4," 1,294", 45.1, 54.5, 3.5, 25.0,50.7 +NA,NA,a-curv-i5,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 428, 15.2, 535, 38.7, 61.1, 0.0, 15.3,42.4 +NA,NA,a-curv-i5,2022-23,Norton - Henri A. Yelle,02180060, 200, 20.1, 334, 49.4, 50.6, 2.7, 26.4,28.1 +NA,NA,a-curv-i5,2022-23,Norton - J C Solmonese,02180015, 206, 19.6, 524, 49.8, 50.2, 3.1, 24.8,23.7 +NA,NA,a-curv-i5,2022-23,Norton - L G Nourse Elementary,02180010, 137, 20.4, 293, 45.7, 54.3, 3.1, 25.9,36.2 +NA,NA,a-curv-i5,2022-23,Norton - Norton High,02180505, 412, 13.9, 684, 51.0, 48.4, 1.9, 17.5,21.4 +NA,NA,a-curv-i5,2022-23,Norton - Norton Middle,02180305, 377, 16.1, 563, 50.6, 49.4, 2.0, 21.5,28.2 +NA,NA,a-curv-i5,2022-23,Norwell - Grace Farrar Cole,02190005, 128, 20.2, 524, 45.4, 54.6, 1.2, 17.0,7.1 +NA,NA,a-curv-i5,2022-23,Norwell - Norwell High,02190505, 332, 12.9, 597, 47.1, 52.9, 0.0, 10.2,7 +NA,NA,a-curv-i5,2022-23,Norwell - Norwell Middle School,02190405, 505, 16.0, 498, 47.6, 52.4, 0.2, 16.3,6.6 +NA,NA,a-curv-i5,2022-23,Norwell - William G Vinal,02190020, 128, 20.8, 539, 48.2, 51.4, 0.7, 16.9,3.9 +NA,NA,a-curv-i5,2022-23,Norwood - Balch,02200005, 133, 16.8, 303, 51.8, 48.2, 40.3, 22.1,61.4 +NA,NA,a-curv-i5,2022-23,Norwood - Charles J Prescott,02200025, 97, 18.0, 245, 53.1, 46.9, 20.0, 17.1,35.1 +NA,NA,a-curv-i5,2022-23,Norwood - Cornelius M Callahan,02200010, 90, 19.4, 234, 49.2, 50.9, 14.1, 29.9,44.9 +NA,NA,a-curv-i5,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 388, 18.4, 806, 51.1, 48.9, 11.0, 27.1,43.8 +NA,NA,a-curv-i5,2022-23,Norwood - F A Cleveland,02200015, 138, 16.6, 312, 48.7, 51.3, 14.7, 26.0,28.9 +NA,NA,a-curv-i5,2022-23,Norwood - George F. Willett,02200075, 67, 18.8, 436, 46.8, 53.2, 24.5, 31.2,39.5 +NA,NA,a-curv-i5,2022-23,Norwood - John P Oldham,02200020, 113, 17.4, 271, 48.0, 52.0, 12.9, 30.6,38 +NA,NA,a-curv-i5,2022-23,Norwood - Norwood High,02200505, 535, 13.3, 964, 50.8, 48.7, 8.5, 20.2,37.7 +NA,NA,a-curv-i5,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 202, 15.8, 451, 47.2, 52.8, 22.6, 24.6,42.4 +NA,NA,a-curv-i5,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 289, 14.2, 556, 35.8, 63.9, 0.0, 20.5,26.3 +NA,NA,a-curv-i5,2022-23,Old Rochester - Old Rochester Regional High,07400505, 370, 14.1, 626, 49.2, 50.8, 0.2, 13.7,20.1 +NA,NA,a-curv-i5,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 297, 17.8, 426, 49.1, 50.5, 0.0, 17.6,25.4 +NA,NA,a-curv-i5,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 58, 19.9, 360, 45.3, 54.7, 4.2, 18.1,38.9 +NA,NA,a-curv-i5,2022-23,Orange - Dexter Park,02230010, 113, 22.2, 282, 47.9, 52.1, 0.4, 32.6,75.2 +NA,NA,a-curv-i5,2022-23,Orange - Fisher Hill,02230015, 108, 16.4, 223, 45.3, 54.7, 1.4, 21.1,67.3 +NA,NA,a-curv-i5,2022-23,Orleans - Orleans Elementary,02240005, 144, 12.0, 145, 54.5, 45.5, 2.1, 17.9,41.4 +NA,NA,a-curv-i5,2022-23,Oxford - Alfred M Chaffee,02260010, 70, 17.1, 298, 54.0, 46.0, 7.4, 21.1,45.6 +NA,NA,a-curv-i5,2022-23,Oxford - Clara Barton,02260005, 62, 15.3, 283, 50.5, 49.5, 3.5, 35.7,46.3 +NA,NA,a-curv-i5,2022-23,Oxford - Oxford High,02260505, 213, 14.4, 387, 50.1, 49.1, 2.1, 18.1,42.6 +NA,NA,a-curv-i5,2022-23,Oxford - Oxford Middle,02260405, 215, 20.1, 515, 46.4, 53.6, 2.3, 17.9,47.4 +NA,NA,a-curv-i5,2022-23,Palmer - Old Mill Pond,02270008, 624, 14.6, 610, 47.2, 52.8, 4.1, 23.3,60.3 +NA,NA,a-curv-i5,2022-23,Palmer - Palmer High,02270505, 310, 13.0, 533, 46.3, 53.5, 4.1, 18.6,59.1 +NA,NA,a-curv-i5,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 388, 12.8, 627, 39.4, 60.1, 0.6, 23.6,41.3 +NA,NA,a-curv-i5,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 163, 18.7, 295, 55.3, 44.4, 8.8, 23.1,86.8 +NA,NA,a-curv-i5,2022-23,Peabody - Captain Samuel Brown,02290005, 189, 16.1, 379, 46.4, 53.3, 5.0, 39.6,40.4 +NA,NA,a-curv-i5,2022-23,Peabody - Center,02290015, 185, 18.5, 425, 50.1, 49.9, 23.5, 15.3,49.7 +NA,NA,a-curv-i5,2022-23,Peabody - J Henry Higgins Middle,02290305, 744, 21.0," 1,372", 49.9, 50.0, 12.4, 21.5,45.7 +NA,NA,a-curv-i5,2022-23,Peabody - John E Burke,02290007, 97, 21.1, 254, 52.4, 47.6, 3.9, 23.6,19.7 +NA,NA,a-curv-i5,2022-23,Peabody - John E. McCarthy,02290016, 149, 15.9, 362, 49.7, 50.3, 7.5, 32.0,43.4 +NA,NA,a-curv-i5,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 75, 7.4, 125, 56.8, 42.4, 3.2, 24.8,70.4 +NA,NA,a-curv-i5,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 728, 15.6," 1,476", 48.0, 51.9, 10.9, 16.3,47.2 +NA,NA,a-curv-i5,2022-23,Peabody - South Memorial,02290035, 177, 20.3, 487, 51.5, 48.5, 8.0, 13.6,36.6 +NA,NA,a-curv-i5,2022-23,Peabody - Thomas Carroll,02290010, 219, 21.7, 591, 50.6, 49.4, 31.0, 11.8,61.8 +NA,NA,a-curv-i5,2022-23,Peabody - West Memorial,02290045, 117, 16.5, 260, 51.5, 48.5, 0.8, 20.4,19.6 +NA,NA,a-curv-i5,2022-23,Peabody - William A Welch Sr,02290027, 104, 17.7, 238, 49.6, 50.4, 37.0, 11.3,70.6 +NA,NA,a-curv-i5,2022-23,Pelham - Pelham Elementary,02300005, 44, 17.8, 132, 39.4, 59.1, 2.3, 22.7,21.2 +NA,NA,a-curv-i5,2022-23,Pembroke - Bryantville Elementary,02310003, 165, 19.2, 434, 44.7, 55.3, 3.7, 19.4,23 +NA,NA,a-curv-i5,2022-23,Pembroke - Hobomock Elementary,02310010, 159, 18.7, 406, 49.5, 50.5, 2.5, 21.9,13.3 +NA,NA,a-curv-i5,2022-23,Pembroke - North Pembroke Elementary,02310015, 175, 19.2, 525, 49.5, 50.5, 3.4, 18.3,18.5 +NA,NA,a-curv-i5,2022-23,Pembroke - Pembroke Community Middle School,02310305, 239, 19.5, 406, 48.5, 51.5, 0.5, 17.7,18.2 +6.436266666666667,5,a-curv-i5,2022-23,Pembroke - Pembroke High School,02310505, 375, 15.2, 728, 46.2, 53.7, 0.6, 11.7,17.7,733 +NA,NA,a-curv-i5,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 99, 19.4, 222, 46.9, 53.2, 0.5, 29.3,20.7 +NA,NA,a-curv-i5,2022-23,Pentucket - Dr John C Page School,07450015, 182, 16.6, 321, 48.3, 51.7, 0.3, 29.3,10.6 +NA,NA,a-curv-i5,2022-23,Pentucket - Elmer S Bagnall,07450005, 255, 18.0, 489, 48.1, 51.9, 0.8, 22.1,16.6 +NA,NA,a-curv-i5,2022-23,Pentucket - Helen R Donaghue School,07450010, 124, 20.5, 249, 47.8, 52.2, 0.8, 27.3,16.5 +NA,NA,a-curv-i5,2022-23,Pentucket - Pentucket Regional Middle,07450405, 219, 18.3, 359, 44.0, 56.0, 1.1, 22.8,16.4 +NA,NA,a-curv-i5,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 370, 13.8, 763, 49.9, 49.7, 0.1, 17.7,17.4 +NA,NA,a-curv-i5,2022-23,Petersham - Petersham Center,02340005, 55, 17.8, 125, 54.4, 45.6, 1.6, 18.4,33.6 +-0.12000000000000029,1,a-curv-i5,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 20, 23.6, 190, 50.0, 49.5, 60.0, 10.0,80.5,203 +6.113207547169812,5,a-curv-i5,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 53, 16.0, 117, 45.3, 54.7, 14.5, 35.0,91.5,125 +1.3599999999999994,1.36,a-curv-i5,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 20, 23.4, 161, 46.6, 53.4, 18.6, 30.4,93.2,166 +NA,NA,a-curv-i5,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 374, 18.2, 793, 52.0, 48.1, 22.1, 8.6,52.7 +NA,NA,a-curv-i5,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 186, 19.4, 466, 50.6, 49.4, 22.5, 12.5,43.8 +NA,NA,a-curv-i5,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 61, 17.5, 208, 54.3, 45.7, 1.0, 22.6,31.7 +NA,NA,a-curv-i5,2022-23,Pioneer Valley - Northfield Elementary,07500008, 65, 15.6, 211, 46.0, 54.0, 1.0, 24.2,44.1 +NA,NA,a-curv-i5,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 217, 12.2, 257, 47.5, 52.5, 1.6, 15.2,29.6 +NA,NA,a-curv-i5,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 407, 16.8, 544, 47.1, 52.6, 2.9, 15.3,22.4 +NA,NA,a-curv-i5,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 388, 13.5, 398, 64.3, 33.7, 0.5, 22.6,38.9 +NA,NA,a-curv-i5,2022-23,Pittsfield - Allendale,02360010, 114, 14.3, 277, 46.2, 53.8, 6.1, 22.0,69.7 +NA,NA,a-curv-i5,2022-23,Pittsfield - Crosby,02360065, 87, 14.1, 273, 48.4, 51.7, 15.0, 28.2,79.9 +NA,NA,a-curv-i5,2022-23,Pittsfield - Crosby Educational Academy,02360030, 5, 5.4, 27, 22.2, 77.8, 0.0, 96.3,92.6 +NA,NA,a-curv-i5,2022-23,Pittsfield - Eagle Education Academy,02360525, 27, 5.2, 22, 27.3, 72.7, 4.6, 100.0,95.5 +NA,NA,a-curv-i5,2022-23,Pittsfield - Egremont,02360035, 118, 15.8, 382, 52.4, 47.6, 9.7, 16.5,57.1 +NA,NA,a-curv-i5,2022-23,Pittsfield - John T Reid Middle,02360305, 275, 13.3, 471, 50.1, 49.9, 8.5, 23.8,72.8 +NA,NA,a-curv-i5,2022-23,Pittsfield - Morningside Community School,02360055, 130, 15.0, 343, 54.8, 45.2, 16.9, 26.2,87.5 +NA,NA,a-curv-i5,2022-23,Pittsfield - Pittsfield High,02360505, 408, 12.9, 673, 49.0, 50.4, 6.5, 23.9,55.7 +NA,NA,a-curv-i5,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 87, 9.0, 115, 49.6, 50.4, 1.7, 23.5,80.9 +NA,NA,a-curv-i5,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 75, 13.6, 178, 50.0, 49.4, 1.1, 15.2,55.6 +NA,NA,a-curv-i5,2022-23,Pittsfield - Silvio O Conte Community,02360105, 140, 15.4, 364, 51.9, 47.8, 14.8, 23.4,88.2 +NA,NA,a-curv-i5,2022-23,Pittsfield - Stearns,02360090, 70, 15.9, 227, 39.2, 60.8, 2.2, 32.2,55.1 +NA,NA,a-curv-i5,2022-23,Pittsfield - Taconic High,02360510, 513, 13.9, 851, 46.7, 53.1, 4.1, 21.0,63.2 +NA,NA,a-curv-i5,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 298, 14.2, 499, 43.9, 55.3, 7.8, 19.4,62.9 +NA,NA,a-curv-i5,2022-23,Pittsfield - Williams,02360100, 88, 14.3, 258, 49.2, 50.8, 6.6, 14.0,36.4 +NA,NA,a-curv-i5,2022-23,Plainville - Anna Ware Jackson,02380010, 56, 17.9, 299, 47.5, 52.5, 8.7, 29.1,30.1 +NA,NA,a-curv-i5,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 64, 21.8, 349, 47.9, 52.2, 2.6, 23.2,25.5 +NA,NA,a-curv-i5,2022-23,Plymouth - Cold Spring,02390005, 140, 18.6, 214, 54.7, 45.3, 19.2, 18.7,50 +NA,NA,a-curv-i5,2022-23,Plymouth - Federal Furnace School,02390011, 301, 16.4, 408, 45.1, 54.9, 5.9, 25.7,36.3 +NA,NA,a-curv-i5,2022-23,Plymouth - Hedge,02390010, 146, 18.1, 218, 47.7, 52.3, 32.6, 17.4,71.1 +NA,NA,a-curv-i5,2022-23,Plymouth - Indian Brook,02390012, 370, 19.0, 574, 47.6, 52.4, 0.5, 19.5,23.9 +NA,NA,a-curv-i5,2022-23,Plymouth - Manomet Elementary,02390015, 158, 19.8, 256, 53.1, 46.9, 0.8, 21.5,37.1 +NA,NA,a-curv-i5,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 350, 18.4, 508, 48.2, 51.8, 8.1, 17.5,34.7 +NA,NA,a-curv-i5,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 548, 16.8, 904, 49.7, 50.1, 6.2, 20.2,37.9 +NA,NA,a-curv-i5,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 25, 10.2, 255, 30.6, 69.4, 1.6, 56.9,33.7 +NA,NA,a-curv-i5,2022-23,Plymouth - Plymouth North High,02390505, 935, 15.3," 1,268", 47.4, 52.3, 6.6, 14.0,32.9 +NA,NA,a-curv-i5,2022-23,Plymouth - Plymouth South High,02390515, 953, 13.4," 1,019", 47.2, 52.7, 0.3, 17.8,23.5 +NA,NA,a-curv-i5,2022-23,Plymouth - Plymouth South Middle,02390305, 347, 18.8, 628, 45.9, 54.1, 0.3, 23.9,30.7 +NA,NA,a-curv-i5,2022-23,Plymouth - South Elementary,02390046, 440, 17.2, 623, 48.2, 51.9, 2.6, 19.7,28.3 +NA,NA,a-curv-i5,2022-23,Plymouth - West Elementary,02390047, 218, 17.3, 312, 45.2, 54.8, 4.2, 17.3,34.3 +NA,NA,a-curv-i5,2022-23,Plympton - Dennett Elementary,02400010, 113, 16.9, 239, 47.7, 52.3, 0.8, 18.4,20.9 +NA,NA,a-curv-i5,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 464, 17.4, 973, 50.8, 49.2, 18.1, 16.4,59.9 +NA,NA,a-curv-i5,2022-23,Provincetown - Provincetown Schools,02420020, 150, 11.4, 146, 52.7, 47.3, 15.1, 20.6,54.8 +NA,NA,a-curv-i5,2022-23,Quabbin - Hardwick Elementary,07530005, 57, 19.8, 198, 48.5, 51.5, 0.0, 34.3,55.1 +NA,NA,a-curv-i5,2022-23,Quabbin - Hubbardston Center,07530010, 81, 21.9, 318, 46.5, 53.5, 0.6, 24.5,23.9 +NA,NA,a-curv-i5,2022-23,Quabbin - New Braintree Grade,07530020, 10, 9.0, 43, 44.2, 55.8, 0.0, 46.5,46.5 +NA,NA,a-curv-i5,2022-23,Quabbin - Oakham Center,07530025, 66, 17.1, 179, 43.0, 57.0, 0.0, 26.3,31.3 +6.993777777777777,5,a-curv-i5,2022-23,Quabbin - Quabbin Regional High School,07530505, 450, 17.1, 574, 54.2, 45.5, 0.4, 17.1,33.1,566 +NA,NA,a-curv-i5,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 259, 20.8, 529, 52.9, 47.1, 0.2, 18.0,36.3 +NA,NA,a-curv-i5,2022-23,Quabbin - Ruggles Lane,07530030, 94, 21.8, 387, 42.9, 57.1, 0.3, 30.5,42.1 +NA,NA,a-curv-i5,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 4, 13.0, 52, 40.4, 59.6, 0.0, 48.1,57.7 +NA,NA,a-curv-i5,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 189, 15.3, 423, 49.9, 48.9, 0.7, 14.2,37.8 +NA,NA,a-curv-i5,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 140, 17.3, 204, 50.0, 49.0, 1.5, 23.0,44.6 +NA,NA,a-curv-i5,2022-23,Quaboag Regional - Warren Elementary,07780005, 108, 21.9, 329, 48.9, 51.1, 5.2, 29.5,58.1 +NA,NA,a-curv-i5,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 80, 19.2, 263, 49.8, 49.8, 3.4, 22.4,42.6 +NA,NA,a-curv-i5,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 11.7, 222, 33.3, 66.7, 0.0, 68.5,48.7 +NA,NA,a-curv-i5,2022-23,Quincy - Atherton Hough,02430040, 159, 11.7, 258, 39.2, 60.9, 14.3, 38.0,37.2 +NA,NA,a-curv-i5,2022-23,Quincy - Atlantic Middle,02430305, 299, 21.3, 575, 47.8, 52.0, 14.4, 18.8,45.9 +NA,NA,a-curv-i5,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 147, 17.7, 334, 48.2, 51.8, 22.2, 9.9,44.6 +NA,NA,a-curv-i5,2022-23,Quincy - Broad Meadows Middle,02430310, 247, 15.8, 329, 46.2, 53.8, 7.9, 31.3,55.9 +NA,NA,a-curv-i5,2022-23,Quincy - Central Middle,02430315, 352, 22.3, 650, 44.2, 55.2, 5.1, 11.4,32.6 +NA,NA,a-curv-i5,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 140, 17.1, 330, 53.0, 47.0, 16.4, 16.7,30.9 +NA,NA,a-curv-i5,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 196, 19.5, 525, 53.3, 46.7, 33.9, 13.9,54.9 +NA,NA,a-curv-i5,2022-23,Quincy - Francis W Parker,02430075, 184, 13.4, 331, 52.6, 47.4, 43.2, 20.2,58.6 +NA,NA,a-curv-i5,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 234, 18.2, 561, 49.9, 49.9, 35.7, 11.1,57.4 +NA,NA,a-curv-i5,2022-23,Quincy - Merrymount,02430060, 142, 17.1, 327, 47.1, 52.9, 14.1, 21.7,22 +NA,NA,a-curv-i5,2022-23,Quincy - Montclair,02430065, 173, 18.4, 430, 49.1, 50.9, 36.3, 9.8,46.1 +NA,NA,a-curv-i5,2022-23,Quincy - North Quincy High,02430510, 635, 17.3," 1,492", 47.2, 52.8, 8.7, 16.8,42 +NA,NA,a-curv-i5,2022-23,Quincy - Point Webster Middle,02430325, 261, 17.1, 451, 53.7, 45.9, 11.8, 24.8,59.9 +NA,NA,a-curv-i5,2022-23,Quincy - Quincy High,02430505, 854, 14.5," 1,487", 48.8, 50.8, 12.0, 20.3,54.7 +NA,NA,a-curv-i5,2022-23,Quincy - Snug Harbor Community School,02430090, 267, 9.2, 440, 40.5, 59.6, 16.8, 47.3,71.6 +NA,NA,a-curv-i5,2022-23,Quincy - South West Middle School,02430320, 417, 12.7, 453, 44.6, 55.4, 22.1, 24.7,66 +NA,NA,a-curv-i5,2022-23,Quincy - Squantum,02430095, 231, 11.9, 345, 48.4, 51.6, 14.2, 26.7,33 +NA,NA,a-curv-i5,2022-23,Quincy - Wollaston School,02430110, 138, 17.3, 324, 44.8, 55.3, 31.5, 12.7,40.7 +NA,NA,a-curv-i5,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 543, 13.4, 527, 45.7, 52.2, 1.3, 26.2,56.6 +NA,NA,a-curv-i5,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 94, 19.3, 302, 48.0, 52.0, 20.9, 18.2,62.9 +NA,NA,a-curv-i5,2022-23,Randolph - J F Kennedy Elementary,02440018, 143, 15.6, 511, 47.6, 52.5, 17.6, 33.5,63.8 +NA,NA,a-curv-i5,2022-23,Randolph - Margaret L Donovan,02440015, 128, 21.0, 432, 51.2, 48.6, 22.7, 13.2,59.5 +NA,NA,a-curv-i5,2022-23,Randolph - Martin E Young Elementary,02440040, 105, 14.4, 250, 52.4, 47.6, 28.4, 23.6,66.8 +NA,NA,a-curv-i5,2022-23,Randolph - Randolph Community Middle,02440410, 307, 17.3, 594, 47.8, 52.2, 11.5, 19.4,61.8 +NA,NA,a-curv-i5,2022-23,Randolph - Randolph High,02440505, 274, 17.3, 651, 43.6, 56.4, 16.4, 20.4,59.8 +NA,NA,a-curv-i5,2022-23,Reading - Alice M Barrows,02460002, 69, 20.0, 358, 49.2, 50.8, 1.7, 20.4,9.2 +NA,NA,a-curv-i5,2022-23,Reading - Arthur W Coolidge Middle,02460305, 202, 20.8, 427, 45.4, 54.3, 0.5, 19.9,8.2 +NA,NA,a-curv-i5,2022-23,Reading - Birch Meadow,02460005, 73, 18.7, 356, 43.8, 56.2, 1.4, 24.7,7.6 +NA,NA,a-curv-i5,2022-23,Reading - J Warren Killam,02460017, 80, 19.9, 414, 48.1, 51.9, 5.3, 17.9,15.2 +NA,NA,a-curv-i5,2022-23,Reading - Joshua Eaton,02460010, 69, 21.8, 391, 49.4, 50.6, 2.8, 16.4,10.5 +NA,NA,a-curv-i5,2022-23,Reading - RISE PreSchool,02460001, 27, 13.5, 122, 39.3, 60.7, 4.9, 49.2,6.6 +NA,NA,a-curv-i5,2022-23,Reading - Reading Memorial High,02460505, 600, 15.0," 1,102", 46.2, 53.4, 1.3, 16.6,11.2 +NA,NA,a-curv-i5,2022-23,Reading - Walter S Parker Middle,02460310, 266, 17.7, 464, 50.9, 49.1, 1.3, 18.5,13.6 +NA,NA,a-curv-i5,2022-23,Reading - Wood End Elementary School,02460020, 50, 19.1, 247, 49.0, 51.0, 0.8, 19.4,11.3 +NA,NA,a-curv-i5,2022-23,Revere - A. C. Whelan Elementary School,02480003, 319, 20.3, 749, 47.7, 52.3, 33.8, 15.8,63.4 +NA,NA,a-curv-i5,2022-23,Revere - Abraham Lincoln,02480025, 272, 20.6, 638, 49.1, 50.9, 44.4, 18.8,69.6 +NA,NA,a-curv-i5,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 173, 18.6, 361, 43.8, 56.2, 47.7, 24.9,67.3 +7.493333333333334,5,a-curv-i5,2022-23,Revere - CityLab Innovation High School,02480520, 150, 9.9, 94, 40.4, 58.5, 11.7, 24.5,71.3,95 +NA,NA,a-curv-i5,2022-23,Revere - Garfield Elementary School,02480056, 325, 21.3, 718, 51.8, 48.2, 54.9, 20.2,74.2 +NA,NA,a-curv-i5,2022-23,Revere - Garfield Middle School,02480057, 269, 21.4, 578, 48.3, 51.7, 28.0, 9.3,68.5 +NA,NA,a-curv-i5,2022-23,Revere - Paul Revere,02480050, 193, 22.8, 455, 51.0, 49.0, 44.4, 20.7,62.4 +NA,NA,a-curv-i5,2022-23,Revere - Revere High,02480505, 974, 19.5," 2,202", 47.5, 52.4, 23.4, 11.6,64.7 +NA,NA,a-curv-i5,2022-23,Revere - Rumney Marsh Academy,02480014, 340, 17.3, 587, 47.4, 52.6, 17.9, 20.4,68.3 +NA,NA,a-curv-i5,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 327, 17.7, 671, 48.4, 51.6, 43.8, 17.1,70.9 +NA,NA,a-curv-i5,2022-23,Revere - Susan B. Anthony Middle School,02480305, 485, 19.2, 602, 54.5, 45.4, 27.6, 15.1,66.9 +NA,NA,a-curv-i5,2022-23,Richmond - Richmond Consolidated,02490005, 116, 14.9, 152, 52.0, 48.0, 0.0, 17.1,29.6 +NA,NA,a-curv-i5,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 305, 17.2, 627, 50.4, 49.0, 1.3, 27.3,23.3 +NA,NA,a-curv-i5,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 108, 16.2, 287, 50.9, 49.1, 0.0, 19.9,8.4 +NA,NA,a-curv-i5,2022-23,Rochester - Rochester Memorial,02500005, 237, 18.9, 498, 46.8, 53.2, 1.6, 19.3,23.7 +NA,NA,a-curv-i5,2022-23,Rockland - Jefferson Elementary School,02510060, 135, 15.7, 247, 49.0, 51.0, 19.0, 20.7,53 +NA,NA,a-curv-i5,2022-23,Rockland - John W Rogers Middle,02510305, 394, 19.5, 727, 47.7, 52.3, 8.1, 19.7,48.8 +NA,NA,a-curv-i5,2022-23,Rockland - Memorial Park,02510020, 137, 15.9, 252, 50.0, 50.0, 19.4, 23.8,52.4 +NA,NA,a-curv-i5,2022-23,Rockland - R Stewart Esten,02510025, 169, 16.4, 323, 47.4, 52.6, 13.3, 16.4,50.5 +NA,NA,a-curv-i5,2022-23,Rockland - Rockland Senior High,02510505, 276, 14.9, 645, 47.8, 52.1, 7.3, 16.1,45.4 +NA,NA,a-curv-i5,2022-23,Rockport - Rockport Elementary,02520005, 128, 15.3, 305, 47.2, 52.8, 0.7, 20.0,28.2 +NA,NA,a-curv-i5,2022-23,Rockport - Rockport High,02520510, 185, 10.6, 231, 40.3, 59.7, 0.9, 26.4,27.7 +NA,NA,a-curv-i5,2022-23,Rockport - Rockport Middle,02520305, 163, 14.5, 194, 50.0, 50.0, 0.0, 24.7,23.2 +NA,NA,a-curv-i5,2022-23,Rowe - Rowe Elementary,02530005, 56, 8.2, 68, 42.7, 57.4, 0.0, 38.2,50 +NA,NA,a-curv-i5,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Salem - Bates,02580003, 166, 16.5, 411, 48.2, 51.1, 19.5, 24.1,58.9 +NA,NA,a-curv-i5,2022-23,Salem - Bentley Academy Innovation School,02580010, 143, 15.9, 282, 47.5, 52.5, 41.1, 19.9,77 +NA,NA,a-curv-i5,2022-23,Salem - Carlton,02580015, 111, 17.0, 262, 51.2, 48.5, 11.8, 32.1,46.6 +NA,NA,a-curv-i5,2022-23,Salem - Collins Middle,02580305, 351, 17.2, 645, 50.2, 49.8, 17.4, 26.7,63.4 +NA,NA,a-curv-i5,2022-23,Salem - Horace Mann Laboratory,02580030, 120, 16.7, 301, 51.2, 48.8, 25.6, 21.6,67.1 +NA,NA,a-curv-i5,2022-23,Salem - New Liberty Innovation School,02580510, 39, 13.1, 60, 63.3, 35.0, 13.3, 33.3,75 +NA,NA,a-curv-i5,2022-23,Salem - Salem Early Childhood,02580001, 9, 13.6, 118, 44.1, 55.9, 1.7, 51.7,51.7 +NA,NA,a-curv-i5,2022-23,Salem - Salem High,02580505, 560, 14.3, 926, 47.3, 52.4, 17.0, 25.1,65.6 +7.876923076923077,5,a-curv-i5,2022-23,Salem - Salem Prep High School,02580515, 91, 4.2, 20, 45.0, 55.0, 10.0, 95.0,75,14 +NA,NA,a-curv-i5,2022-23,Salem - Saltonstall School,02580050, 189, 16.0, 397, 50.4, 49.6, 18.4, 25.7,56.2 +NA,NA,a-curv-i5,2022-23,Salem - Witchcraft Heights,02580070, 190, 17.7, 462, 46.1, 53.9, 24.2, 22.1,56.1 +NA,NA,a-curv-i5,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 249, 18.3, 488, 50.6, 48.8, 3.7, 17.6,50.2 +NA,NA,a-curv-i5,2022-23,Sandwich - Forestdale School,02610002, 287, 18.5, 567, 45.7, 54.3, 2.7, 16.8,30.3 +NA,NA,a-curv-i5,2022-23,Sandwich - Oak Ridge,02610025, 424, 19.5, 676, 49.9, 50.2, 1.6, 23.5,25.3 +6.760601001669448,5,a-curv-i5,2022-23,Sandwich - Sandwich Middle High School,02610505, 599, 14.4, 929, 48.1, 51.2, 0.8, 23.5,20.2,928 +NA,NA,a-curv-i5,2022-23,Saugus - Belmonte STEAM Academy,02620060, 525, 21.4, 826, 47.6, 52.4, 9.9, 13.4,47.1 +NA,NA,a-curv-i5,2022-23,Saugus - Saugus High,02620505, 402, 15.0, 736, 47.0, 52.9, 9.1, 12.1,46.5 +NA,NA,a-curv-i5,2022-23,Saugus - Saugus Middle School,02620305, 264, 19.7, 628, 46.8, 53.2, 7.6, 15.1,49.5 +NA,NA,a-curv-i5,2022-23,Saugus - Veterans Early Learning Center,02620065, 228, 14.9, 456, 40.6, 59.4, 20.8, 11.4,45.6 +NA,NA,a-curv-i5,2022-23,Savoy - Emma L Miller Elementary School,02630010, 45, 5.2, 37, 48.7, 51.4, 0.0, 16.2,70.3 +NA,NA,a-curv-i5,2022-23,Scituate - Cushing Elementary,02640007, 157, 18.9, 354, 52.5, 47.5, 0.9, 14.4,8.5 +NA,NA,a-curv-i5,2022-23,Scituate - Gates Middle School,02640305, 393, 19.3, 608, 45.9, 54.0, 0.8, 17.3,14.1 +NA,NA,a-curv-i5,2022-23,Scituate - Hatherly Elementary,02640010, 100, 21.3, 259, 47.1, 52.9, 0.4, 23.2,11.6 +NA,NA,a-curv-i5,2022-23,Scituate - Jenkins Elementary School,02640015, 149, 18.7, 330, 47.6, 52.4, 0.9, 16.7,13.6 +6.823892100192678,5,a-curv-i5,2022-23,Scituate - Scituate High School,02640505, 519, 13.6, 765, 51.0, 48.2, 0.0, 14.8,15.3,763 +NA,NA,a-curv-i5,2022-23,Scituate - Wampatuck Elementary,02640020, 161, 21.3, 469, 49.5, 50.5, 1.1, 24.5,11.1 +NA,NA,a-curv-i5,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 371, 14.1, 493, 50.5, 49.5, 3.0, 20.7,18.9 +NA,NA,a-curv-i5,2022-23,Seekonk - George R Martin,02650007, 117, 20.0, 455, 55.0, 45.1, 4.2, 20.0,24 +NA,NA,a-curv-i5,2022-23,Seekonk - Mildred Aitken School,02650015, 194, 19.5, 583, 45.8, 53.9, 3.8, 23.7,16.6 +NA,NA,a-curv-i5,2022-23,Seekonk - Seekonk High,02650505, 344, 13.6, 539, 46.4, 52.9, 1.3, 17.3,19.9 +NA,NA,a-curv-i5,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4, 4.0, 4, 50.0, 50.0, 0.0, 100.0,75 +NA,NA,a-curv-i5,2022-23,Sharon - Cottage Street,02660005, 189, 19.5, 446, 48.2, 51.8, 8.1, 17.9,13 +NA,NA,a-curv-i5,2022-23,Sharon - East Elementary,02660010, 197, 21.1, 496, 47.2, 52.6, 8.3, 12.7,9.9 +NA,NA,a-curv-i5,2022-23,Sharon - Heights Elementary,02660015, 208, 23.2, 574, 49.8, 50.2, 4.4, 14.1,12.9 +NA,NA,a-curv-i5,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4, 17.5, 70, 35.7, 64.3, 0.0, 58.6,12.9 +NA,NA,a-curv-i5,2022-23,Sharon - Sharon High,02660505, 565, 15.4," 1,149", 48.6, 51.4, 1.7, 14.1,14.2 +NA,NA,a-curv-i5,2022-23,Sharon - Sharon Middle,02660305, 609, 19.4, 861, 49.8, 49.9, 1.5, 14.4,10.3 +6.77680473372781,5,a-curv-i5,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 845, 12.5," 1,298", 37.5, 61.9, 0.4, 26.4,21,1292 +NA,NA,a-curv-i5,2022-23,Sherborn - Pine Hill,02690010, 212, 18.9, 412, 52.4, 47.3, 1.2, 18.2,6.1 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 62, 17.2, 254, 53.9, 46.1, 16.5, 17.7,35 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Floral Street School,02710020, 132, 20.0, 549, 44.3, 55.7, 8.4, 15.9,15.7 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 140, 19.4, 601, 47.4, 52.4, 4.5, 16.3,20.8 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Oak Middle School,02710030, 482, 22.5, 965, 50.7, 49.2, 2.9, 15.1,17.5 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Parker Road Preschool,02710040, 18, 11.8, 212, 44.8, 55.2, 0.0, 44.3,24.1 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Sherwood Middle School,02710305, 567, 23.4, 974, 45.6, 54.4, 3.1, 13.4,16.9 +6.3723214285714285,5,a-curv-i5,2022-23,Shrewsbury - Shrewsbury High School,02710505, 896, 18.4," 1,838", 51.5, 48.5, 2.6, 9.7,17.5,1823 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Spring Street School,02710035, 66, 19.9, 307, 45.9, 54.1, 2.0, 15.0,8.5 +NA,NA,a-curv-i5,2022-23,Shrewsbury - Walter J. Paton School,02710025, 72, 17.4, 295, 48.5, 51.5, 3.7, 15.9,14.6 +NA,NA,a-curv-i5,2022-23,Shutesbury - Shutesbury Elementary,02720005, 59, 15.1, 121, 52.1, 46.3, 0.8, 25.6,35.5 +NA,NA,a-curv-i5,2022-23,Silver Lake - Silver Lake Regional High,07600505, 439, 17.8," 1,040", 48.5, 51.4, 1.9, 14.1,23.9 +NA,NA,a-curv-i5,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 296, 19.1, 533, 48.8, 51.2, 2.6, 18.6,23.8 +NA,NA,a-curv-i5,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 219, 14.1, 380, 48.2, 50.3, 2.4, 27.6,52.4 +NA,NA,a-curv-i5,2022-23,Somerset - Chace Street,02730005, 155, 23.3, 327, 50.8, 49.2, 1.8, 22.3,29.7 +NA,NA,a-curv-i5,2022-23,Somerset - North Elementary,02730008, 238, 19.1, 473, 44.0, 56.0, 1.5, 23.7,31.9 +NA,NA,a-curv-i5,2022-23,Somerset - Somerset Middle School,02730305, 349, 20.5, 583, 48.5, 51.5, 0.7, 18.0,31.2 +NA,NA,a-curv-i5,2022-23,Somerset - South,02730015, 136, 21.5, 265, 49.1, 50.9, 2.3, 22.3,38.5 +6.208928571428571,5,a-curv-i5,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 448, 17.0," 1,003", 50.5, 49.4, 0.5, 11.3,25.2,1003 +NA,NA,a-curv-i5,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 198, 17.3, 570, 44.7, 54.9, 32.3, 13.0,44.6 +NA,NA,a-curv-i5,2022-23,Somerville - Arthur D Healey,02740075, 179, 17.6, 521, 47.4, 52.4, 38.2, 20.2,69.1 +NA,NA,a-curv-i5,2022-23,Somerville - Benjamin G Brown,02740015, 59, 19.1, 214, 62.2, 37.9, 7.5, 9.8,15.4 +NA,NA,a-curv-i5,2022-23,Somerville - Capuano Early Childhood Center,02740005, 60, 7.9, 247, 40.1, 59.5, 9.7, 41.7,47 +NA,NA,a-curv-i5,2022-23,Somerville - E Somerville Community,02740111, 236, 19.7, 722, 44.0, 55.7, 39.9, 15.1,61.8 +7.8271999999999995,5,a-curv-i5,2022-23,Somerville - Full Circle High School,02740510, 250, 8.2, 74, 40.5, 58.1, 18.9, 70.3,83.8,54 +NA,NA,a-curv-i5,2022-23,Somerville - John F Kennedy,02740083, 156, 17.7, 439, 48.3, 51.7, 5.2, 21.2,27.3 +NA,NA,a-curv-i5,2022-23,Somerville - Next Wave Junior High,02740410, 144, 4.8, 22, 31.8, 68.2, 18.2, 90.9,90.9 +NA,NA,a-curv-i5,2022-23,Somerville - Somerville High,02740505, 836, 11.6," 1,342", 46.9, 51.7, 18.9, 17.4,55.4 +NA,NA,a-curv-i5,2022-23,Somerville - West Somerville Neighborhood,02740115, 128, 18.4, 374, 48.7, 51.1, 7.0, 17.4,36.1 +NA,NA,a-curv-i5,2022-23,Somerville - Winter Hill Community,02740120, 187, 16.2, 441, 44.4, 55.3, 37.9, 23.4,59.6 +NA,NA,a-curv-i5,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 277, 18.6, 528, 50.8, 49.1, 3.6, 24.6,39.2 +NA,NA,a-curv-i5,2022-23,South Hadley - Mosier,02780020, 75, 20.5, 343, 51.9, 48.1, 5.5, 19.8,30.9 +NA,NA,a-curv-i5,2022-23,South Hadley - Plains Elementary,02780015, 60, 15.6, 334, 42.8, 57.2, 6.9, 26.1,38.9 +NA,NA,a-curv-i5,2022-23,South Hadley - South Hadley High,02780505, 290, 12.6, 500, 50.0, 49.2, 4.4, 22.0,31.6 +7.10306258322237,5,a-curv-i5,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 751, 11.9, 831, 43.0, 55.8, 15.6, 31.3,55.7,842 +NA,NA,a-curv-i5,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 471, 18.5," 1,062", 48.0, 51.3, 10.4, 19.9,30.8 +NA,NA,a-curv-i5,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 323, 15.5, 643, 33.4, 65.6, 0.2, 25.8,28.3 +NA,NA,a-curv-i5,2022-23,Southampton - William E Norris,02750005, 172, 18.0, 486, 46.9, 53.1, 1.4, 28.2,18.3 +NA,NA,a-curv-i5,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 76, 15.3, 269, 50.2, 49.8, 6.3, 13.0,8.6 +NA,NA,a-curv-i5,2022-23,Southborough - Margaret A Neary,02760020, 88, 20.3, 268, 49.3, 50.8, 3.7, 14.2,8.6 +NA,NA,a-curv-i5,2022-23,Southborough - Mary E Finn School,02760008, 67, 17.6, 372, 47.0, 53.0, 14.0, 23.1,9.1 +NA,NA,a-curv-i5,2022-23,Southborough - P Brent Trottier,02760305, 317, 13.5, 388, 50.5, 49.2, 1.3, 15.7,7.2 +NA,NA,a-curv-i5,2022-23,Southbridge - Charlton Street,02770005, 76, 16.7, 254, 51.6, 48.4, 16.1, 31.9,89.8 +NA,NA,a-curv-i5,2022-23,Southbridge - Eastford Road,02770010, 92, 16.4, 365, 44.7, 55.3, 15.6, 29.6,83.8 +NA,NA,a-curv-i5,2022-23,Southbridge - Southbridge Academy,02770525, 24, 6.2, 27, 33.3, 66.7, 22.2, 96.3,96.3 +6.105699481865285,5,a-curv-i5,2022-23,Southbridge - Southbridge High School,02770515, 193, 20.3, 476, 44.8, 54.4, 21.6, 21.0,77.7,457 +NA,NA,a-curv-i5,2022-23,Southbridge - Southbridge Middle School,02770315, 155, 19.3, 418, 47.9, 52.2, 18.7, 28.0,82.5 +NA,NA,a-curv-i5,2022-23,Southbridge - West Street,02770020, 102, 16.6, 339, 49.9, 50.2, 17.1, 21.8,81.7 +NA,NA,a-curv-i5,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 665, 18.4," 1,566", 52.8, 46.2, 4.9, 15.2,42.7 +NA,NA,a-curv-i5,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 268, 10.1, 294, 46.9, 52.7, 3.7, 15.3,41.8 +NA,NA,a-curv-i5,2022-23,Southern Berkshire - New Marlborough Central,07650018, 50, 12.1, 66, 56.1, 43.9, 0.0, 3.0,31.8 +NA,NA,a-curv-i5,2022-23,Southern Berkshire - South Egremont,07650030, 1, 13.0, 13, 76.9, 23.1, 0.0, 0.0,23.1 +NA,NA,a-curv-i5,2022-23,Southern Berkshire - Undermountain,07650035, 161, 16.1, 243, 50.6, 49.4, 8.2, 9.9,44.9 +7.0813953488372094,5,a-curv-i5,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,032", 13.4," 1,183", 44.2, 55.6, 1.6, 13.4,34.4,1185 +NA,NA,a-curv-i5,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 208, 17.4, 390, 48.2, 51.8, 6.4, 18.0,38 +NA,NA,a-curv-i5,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 355, 14.5, 637, 51.2, 48.8, 2.2, 16.3,30.9 +NA,NA,a-curv-i5,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 198, 14.6, 333, 48.4, 51.7, 6.0, 16.2,36.3 +NA,NA,a-curv-i5,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 178, 19.2, 367, 46.1, 53.7, 5.2, 15.0,52.6 +NA,NA,a-curv-i5,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 19.2, 254, 45.3, 54.7, 2.4, 27.2,35.8 +NA,NA,a-curv-i5,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 173, 18.4, 394, 45.2, 54.6, 5.1, 22.3,52.5 +NA,NA,a-curv-i5,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 92, 19.1, 442, 46.6, 53.4, 6.6, 26.7,57 +NA,NA,a-curv-i5,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 202, 21.0, 431, 54.5, 45.5, 4.6, 10.0,52 +NA,NA,a-curv-i5,2022-23,Springfield - Alice B Beal Elementary,02810175, 174, 19.7, 303, 47.2, 52.8, 19.1, 19.8,81.2 +NA,NA,a-curv-i5,2022-23,Springfield - Arthur T Talmadge,02810165, 183, 14.4, 228, 47.4, 52.6, 14.5, 29.4,90.8 +NA,NA,a-curv-i5,2022-23,Springfield - Balliet Preschool,02810003, 13, 12.3, 160, 35.6, 64.4, 13.8, 55.6,80 +NA,NA,a-curv-i5,2022-23,Springfield - Brightwood,02810025, 261, 21.2, 474, 51.7, 48.3, 27.2, 26.8,95.4 +NA,NA,a-curv-i5,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 175, 13.6, 273, 44.3, 55.0, 5.1, 22.0,75.8 +NA,NA,a-curv-i5,2022-23,Springfield - Conservatory of the Arts,02810475, 204, 11.2, 311, 68.8, 30.6, 8.7, 27.7,83.6 +NA,NA,a-curv-i5,2022-23,Springfield - Daniel B Brunton,02810035, 218, 17.9, 366, 53.0, 47.0, 16.1, 23.2,86.6 +NA,NA,a-curv-i5,2022-23,Springfield - Early Childhood Education Center,02810001, 17, 12.1, 205, 46.3, 53.7, 19.0, 55.1,89.8 +NA,NA,a-curv-i5,2022-23,Springfield - Edward P. Boland School,02810010, 415, 13.4, 567, 43.0, 57.0, 23.6, 41.3,93.8 +NA,NA,a-curv-i5,2022-23,Springfield - Elias Brookings,02810030, 207, 15.6, 285, 49.8, 50.2, 22.8, 29.8,87.4 +NA,NA,a-curv-i5,2022-23,Springfield - Emergence Academy,02810318, 77, 21.3, 186, 46.8, 52.7, 98.4, 5.9,90.3 +NA,NA,a-curv-i5,2022-23,Springfield - Forest Park Middle,02810325, 262, 13.7, 396, 50.8, 49.0, 11.4, 29.6,91.7 +NA,NA,a-curv-i5,2022-23,Springfield - Frank H Freedman,02810075, 169, 18.9, 276, 53.3, 46.7, 12.0, 21.7,82.3 +NA,NA,a-curv-i5,2022-23,Springfield - Frederick Harris,02810080, 369, 17.4, 557, 47.8, 52.2, 16.2, 28.0,78.3 +NA,NA,a-curv-i5,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 1, 20.0, 20, 65.0, 35.0, 5.0, 10.0,95 +NA,NA,a-curv-i5,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 1, 22.0, 22, 59.1, 40.9, 4.6, 13.6,86.4 +NA,NA,a-curv-i5,2022-23,Springfield - German Gerena Community School,02810195, 428, 15.2, 613, 47.2, 52.9, 24.1, 26.4,88.6 +NA,NA,a-curv-i5,2022-23,Springfield - Glenwood,02810065, 183, 18.4, 284, 50.0, 49.7, 19.0, 20.4,86.3 +NA,NA,a-curv-i5,2022-23,Springfield - Glickman Elementary,02810068, 219, 16.4, 313, 46.3, 53.7, 20.5, 38.7,86.3 +6.802713704206241,5,a-curv-i5,2022-23,Springfield - High School Of Commerce,02810510, 737, 12.8," 1,101", 47.4, 52.5, 15.3, 22.0,85.1,1103 +NA,NA,a-curv-i5,2022-23,Springfield - Hiram L Dorman,02810050, 184, 18.6, 295, 47.5, 52.5, 20.3, 27.5,91.9 +NA,NA,a-curv-i5,2022-23,Springfield - Homer Street,02810085, 262, 17.8, 415, 48.4, 51.6, 22.9, 22.4,94 +NA,NA,a-curv-i5,2022-23,Springfield - Impact Prep at Chestnut,02810366, 128, 20.8, 218, 48.2, 51.8, 6.9, 27.5,91.7 +NA,NA,a-curv-i5,2022-23,Springfield - Indian Orchard Elementary,02810100, 312, 18.6, 557, 47.4, 52.6, 14.0, 27.3,89.1 +NA,NA,a-curv-i5,2022-23,Springfield - John F Kennedy Middle,02810328, 267, 17.5, 410, 52.4, 47.6, 12.0, 32.4,91.7 +NA,NA,a-curv-i5,2022-23,Springfield - John J Duggan Academy,02810320, 606, 14.8, 834, 46.0, 53.6, 9.0, 25.7,79.7 +NA,NA,a-curv-i5,2022-23,Springfield - Kensington International School,02810110, 171, 15.6, 243, 49.0, 51.0, 27.6, 25.9,94.7 +NA,NA,a-curv-i5,2022-23,Springfield - Kiley Academy,02810316, 275, 14.6, 348, 48.0, 52.0, 10.3, 35.3,94 +NA,NA,a-curv-i5,2022-23,Springfield - Kiley Prep,02810315, 157, 17.9, 300, 44.7, 54.7, 11.0, 32.7,90 +NA,NA,a-curv-i5,2022-23,Springfield - Liberty,02810115, 154, 18.8, 253, 45.9, 54.2, 19.8, 18.2,88.1 +NA,NA,a-curv-i5,2022-23,Springfield - Liberty Preparatory Academy,02810560, 16, 3.9, 12, 0.0, 100.0, 8.3, 25.0,100 +NA,NA,a-curv-i5,2022-23,Springfield - Lincoln,02810120, 232, 21.7, 449, 50.1, 49.9, 32.1, 27.6,95.1 +NA,NA,a-curv-i5,2022-23,Springfield - Margaret C Ells,02810060, 17, 10.9, 186, 36.0, 64.0, 16.7, 59.1,85 +NA,NA,a-curv-i5,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 175, 18.5, 298, 50.3, 49.7, 17.1, 22.2,77.2 +NA,NA,a-curv-i5,2022-23,Springfield - Mary M Lynch,02810140, 153, 16.9, 226, 50.9, 49.1, 7.5, 17.3,90.3 +NA,NA,a-curv-i5,2022-23,Springfield - Mary M Walsh,02810155, 199, 15.3, 263, 50.2, 49.8, 20.5, 33.8,84.8 +NA,NA,a-curv-i5,2022-23,Springfield - Mary O Pottenger,02810145, 229, 21.3, 400, 48.5, 51.3, 14.0, 17.5,84.3 +NA,NA,a-curv-i5,2022-23,Springfield - Milton Bradley School,02810023, 323, 17.5, 510, 49.4, 50.6, 22.0, 32.2,95.1 +NA,NA,a-curv-i5,2022-23,Springfield - Rebecca M Johnson,02810055, 389, 16.3, 592, 45.4, 54.6, 20.3, 30.4,93.4 +NA,NA,a-curv-i5,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 132, 17.3, 251, 47.4, 52.6, 12.8, 27.9,92 +NA,NA,a-curv-i5,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 882, 13.9," 1,356", 53.8, 46.0, 8.0, 15.3,78.7 +NA,NA,a-curv-i5,2022-23,Springfield - STEM Middle Academy,02810350, 189, 13.4, 296, 47.3, 52.7, 7.8, 23.7,83.8 +NA,NA,a-curv-i5,2022-23,Springfield - Samuel Bowles,02810020, 198, 13.3, 218, 52.8, 47.3, 14.7, 22.0,86.7 +NA,NA,a-curv-i5,2022-23,Springfield - South End Middle School,02810355, 86, 14.6, 188, 48.9, 51.1, 10.1, 25.5,95.7 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Central High,02810500," 1,057", 16.2," 2,067", 45.9, 54.0, 15.0, 18.5,79.3 +6.253763440860215,5,a-curv-i5,2022-23,Springfield - Springfield High School,02810570, 93, 17.3, 287, 47.0, 51.9, 12.9, 31.0,91.6,203 +6.903404791929381,5,a-curv-i5,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 793, 11.3," 1,075", 44.6, 55.2, 15.2, 26.1,88.1,1087 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 12.1, 37, 59.5, 40.5, 100.0, 0.0,89.2 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 46, 13.0, 86, 30.2, 69.8, 100.0, 1.2,80.2 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Legacy Academy,02810317, 109, 16.8, 328, 45.7, 54.3, 23.2, 28.1,95.1 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Middle School,02810360, 33, 5.5, 32, 15.6, 84.4, 9.4, 40.6,96.9 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 117, 5.4, 45, 31.1, 68.9, 8.9, 100.0,93.3 +7.445454545454545,5,a-curv-i5,2022-23,Springfield - Springfield Public Day High School,02810550, 88, 5.0, 53, 30.2, 69.8, 7.6, 96.2,96.2,61 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Public Day Middle School,02810345, 63, 7.2, 71, 23.9, 76.1, 16.9, 100.0,100 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Realization Academy,02810335, 131, 17.3, 134, 56.7, 43.3, 28.4, 18.7,89.6 +NA,NA,a-curv-i5,2022-23,Springfield - Springfield Transition Academy,02810675, 20, 8.8, 82, 29.3, 70.7, 0.0, 100.0,89 +NA,NA,a-curv-i5,2022-23,Springfield - Sumner Avenue,02810160, 344, 15.5, 469, 47.3, 52.7, 26.2, 28.4,89.8 +NA,NA,a-curv-i5,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 373, 14.2, 632, 52.1, 47.8, 5.9, 22.8,73.4 +NA,NA,a-curv-i5,2022-23,Springfield - The Springfield Virtual School,02810705, 275, 13.5, 402, 49.3, 50.8, 13.4, 34.6,89.8 +NA,NA,a-curv-i5,2022-23,Springfield - Thomas M Balliet,02810015, 183, 18.3, 280, 50.4, 49.6, 14.3, 22.5,81.8 +NA,NA,a-curv-i5,2022-23,Springfield - Van Sickle Academy,02810485, 188, 13.2, 269, 49.8, 50.2, 14.9, 33.8,86.6 +NA,NA,a-curv-i5,2022-23,Springfield - Warner,02810180, 164, 15.8, 254, 45.3, 54.7, 12.2, 26.0,85 +NA,NA,a-curv-i5,2022-23,Springfield - Washington,02810185, 264, 16.9, 422, 50.7, 49.3, 24.2, 29.4,91 +NA,NA,a-curv-i5,2022-23,Springfield - White Street,02810190, 229, 21.8, 417, 50.4, 49.6, 26.4, 17.5,91.1 +NA,NA,a-curv-i5,2022-23,Springfield - William N. DeBerry,02810045, 183, 17.8, 257, 47.9, 52.1, 27.2, 27.6,93.8 +NA,NA,a-curv-i5,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 770, 26.0," 1,554", 49.0, 51.0, 10.0, 19.6,61.7 +NA,NA,a-curv-i5,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 194, 24.5, 497, 47.9, 51.7, 10.3, 18.7,74 +NA,NA,a-curv-i5,2022-23,Stoneham - Colonial Park,02840005, 95, 20.2, 256, 44.1, 55.9, 2.7, 28.1,18 +NA,NA,a-curv-i5,2022-23,Stoneham - Robin Hood,02840025, 146, 20.4, 382, 49.5, 50.5, 7.6, 21.5,22.3 +NA,NA,a-curv-i5,2022-23,Stoneham - South,02840030, 125, 21.1, 363, 47.4, 52.3, 8.5, 26.7,28.1 +NA,NA,a-curv-i5,2022-23,Stoneham - Stoneham Central Middle School,02840405, 510, 15.5, 683, 51.4, 48.6, 3.4, 20.8,24.3 +NA,NA,a-curv-i5,2022-23,Stoneham - Stoneham High,02840505, 435, 12.5, 619, 48.6, 50.9, 3.4, 17.1,26.7 +NA,NA,a-curv-i5,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 12, 13.4, 151, 35.1, 64.9, 0.0, 51.0,52.3 +NA,NA,a-curv-i5,2022-23,Stoughton - Helen Hansen Elementary,02850010, 151, 14.5, 266, 47.4, 52.6, 9.0, 24.8,44 +NA,NA,a-curv-i5,2022-23,Stoughton - Joseph H Gibbons,02850025, 168, 17.0, 357, 46.2, 53.5, 11.2, 19.9,42.6 +NA,NA,a-curv-i5,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 223, 13.7, 384, 44.5, 55.5, 13.0, 20.8,42.7 +NA,NA,a-curv-i5,2022-23,Stoughton - O'Donnell Middle School,02850405, 520, 18.2, 847, 49.7, 50.3, 8.3, 17.5,48.8 +NA,NA,a-curv-i5,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 139, 16.9, 289, 55.4, 44.6, 26.0, 17.7,62.3 +NA,NA,a-curv-i5,2022-23,Stoughton - South Elementary,02850015, 141, 16.8, 286, 50.0, 50.0, 8.7, 22.4,34.3 +NA,NA,a-curv-i5,2022-23,Stoughton - Stoughton High,02850505, 726, 16.7," 1,123", 49.2, 50.8, 11.0, 14.8,43.4 +NA,NA,a-curv-i5,2022-23,Sturbridge - Burgess Elementary,02870005, 239, 21.9, 892, 51.2, 48.5, 3.0, 16.4,22.5 +NA,NA,a-curv-i5,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 524, 14.1, 827, 59.9, 39.1, 1.6, 16.1,23 +NA,NA,a-curv-i5,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 635, 16.0, 860, 45.6, 54.4, 0.5, 25.5,8.8 +NA,NA,a-curv-i5,2022-23,Sudbury - General John Nixon Elementary,02880025, 193, 20.5, 329, 55.3, 44.7, 4.6, 19.8,6.4 +NA,NA,a-curv-i5,2022-23,Sudbury - Israel Loring School,02880015, 275, 20.7, 434, 48.6, 51.4, 5.3, 20.5,13.8 +NA,NA,a-curv-i5,2022-23,Sudbury - Josiah Haynes,02880010, 213, 19.6, 374, 46.0, 54.0, 2.9, 19.5,5.9 +NA,NA,a-curv-i5,2022-23,Sudbury - Peter Noyes,02880030, 279, 20.6, 584, 47.6, 52.4, 2.4, 24.8,8.4 +NA,NA,a-curv-i5,2022-23,Sunderland - Sunderland Elementary,02890005, 158, 11.8, 177, 42.9, 55.4, 4.5, 22.0,33.3 +NA,NA,a-curv-i5,2022-23,Sutton - Sutton Early Learning,02900003, 80, 18.0, 329, 47.1, 52.9, 1.5, 26.4,20.1 +NA,NA,a-curv-i5,2022-23,Sutton - Sutton Elementary,02900005, 102, 23.9, 308, 47.4, 52.6, 2.0, 22.4,17.2 +6.177777777777778,5,a-curv-i5,2022-23,Sutton - Sutton High School,02900510, 162, 16.0, 371, 50.9, 48.3, 1.4, 5.1,20.5,369 +NA,NA,a-curv-i5,2022-23,Sutton - Sutton Middle School,02900305, 108, 18.8, 303, 51.8, 48.2, 1.7, 18.8,16.5 +NA,NA,a-curv-i5,2022-23,Swampscott - Clarke,02910005, 88, 18.7, 207, 47.8, 52.2, 17.9, 22.7,28 +NA,NA,a-curv-i5,2022-23,Swampscott - Hadley,02910010, 144, 19.8, 357, 48.2, 51.8, 8.7, 17.9,19.6 +NA,NA,a-curv-i5,2022-23,Swampscott - Stanley,02910020, 68, 18.9, 162, 40.7, 59.3, 3.1, 23.5,11.1 +NA,NA,a-curv-i5,2022-23,Swampscott - Swampscott High,02910505, 435, 14.1, 645, 48.5, 51.2, 3.0, 18.5,21.9 +NA,NA,a-curv-i5,2022-23,Swampscott - Swampscott Middle,02910305, 464, 17.4, 697, 48.1, 51.7, 3.0, 28.3,21.2 +NA,NA,a-curv-i5,2022-23,Swansea - Elizabeth S Brown,02920006, 121, 23.8, 288, 46.2, 53.8, 1.4, 13.5,26 +NA,NA,a-curv-i5,2022-23,Swansea - Gardner,02920015, 109, 21.1, 251, 54.6, 45.4, 2.0, 8.8,34.3 +NA,NA,a-curv-i5,2022-23,Swansea - Joseph Case High,02920505, 265, 14.2, 540, 49.3, 50.6, 0.7, 14.4,27.6 +NA,NA,a-curv-i5,2022-23,Swansea - Joseph Case Jr High,02920305, 205, 17.8, 497, 48.9, 51.1, 0.8, 11.3,26 +NA,NA,a-curv-i5,2022-23,Swansea - Joseph G Luther,02920020, 107, 17.1, 183, 52.5, 47.5, 0.6, 21.9,24 +NA,NA,a-curv-i5,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 94, 18.9, 251, 45.4, 54.6, 0.4, 23.9,29.9 +NA,NA,a-curv-i5,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 786, 43.2," 3,222", 56.3, 43.4, 5.3, 23.7,56.3 +NA,NA,a-curv-i5,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 393, 17.8, 556, 45.9, 54.1, 1.4, 13.5,28.4 +NA,NA,a-curv-i5,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 779, 12.1," 1,196", 45.7, 53.7, 1.4, 12.2,27.8 +NA,NA,a-curv-i5,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 73, 11.3, 504, 32.9, 66.7, 1.0, 15.9,32.5 +NA,NA,a-curv-i5,2022-23,Taunton - Benjamin Friedman Middle,02930315, 345, 21.5, 745, 47.0, 53.0, 3.1, 18.5,56.2 +NA,NA,a-curv-i5,2022-23,Taunton - East Taunton Elementary,02930010, 251, 16.0, 531, 49.9, 50.1, 4.0, 26.6,54.4 +NA,NA,a-curv-i5,2022-23,Taunton - Edmund Hatch Bennett,02930007, 117, 19.4, 291, 50.2, 49.8, 4.5, 19.2,48.8 +NA,NA,a-curv-i5,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 19, 17.3, 328, 37.2, 62.8, 11.9, 61.0,58.5 +NA,NA,a-curv-i5,2022-23,Taunton - Elizabeth Pole,02930027, 250, 19.6, 628, 50.2, 49.8, 19.8, 17.7,70.7 +NA,NA,a-curv-i5,2022-23,Taunton - H H Galligan,02930057, 109, 19.0, 266, 50.0, 50.0, 18.8, 19.2,79.3 +NA,NA,a-curv-i5,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 363, 17.7, 852, 49.9, 50.1, 9.6, 20.5,66.9 +NA,NA,a-curv-i5,2022-23,Taunton - John F Parker Middle,02930305, 213, 24.7, 543, 48.4, 51.6, 16.4, 15.7,67 +NA,NA,a-curv-i5,2022-23,Taunton - Joseph C Chamberlain,02930008, 188, 18.4, 456, 49.3, 50.7, 4.8, 22.6,51.5 +NA,NA,a-curv-i5,2022-23,Taunton - Joseph H Martin,02930042, 384, 17.0, 651, 49.5, 50.5, 5.1, 21.5,53.3 +7.511504424778761,5,a-curv-i5,2022-23,Taunton - Taunton Alternative High School,02930525, 113, 6.9, 112, 43.8, 56.3, 4.5, 32.1,84.8,69 +NA,NA,a-curv-i5,2022-23,Taunton - Taunton High,02930505," 1,032", 19.4," 2,824", 48.5, 51.4, 7.7, 17.5,54.3 +NA,NA,a-curv-i5,2022-23,Tewksbury - Heath-Brook,02950010, 52, 19.3, 236, 48.3, 51.7, 12.3, 11.4,20.3 +NA,NA,a-curv-i5,2022-23,Tewksbury - John F. Ryan,02950023, 284, 19.8, 521, 51.6, 48.4, 2.1, 20.5,24.2 +NA,NA,a-curv-i5,2022-23,Tewksbury - John W. Wynn Middle,02950305, 251, 19.8, 502, 50.6, 49.4, 2.2, 18.1,25.9 +NA,NA,a-curv-i5,2022-23,Tewksbury - L F Dewing,02950001, 90, 18.4, 481, 50.7, 49.3, 7.3, 32.6,24.3 +NA,NA,a-curv-i5,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Tewksbury - North Street,02950020, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 403, 17.4, 759, 48.6, 51.0, 1.3, 12.0,21.5 +NA,NA,a-curv-i5,2022-23,Tisbury - Tisbury Elementary,02960005, 200, 12.0, 275, 49.1, 50.9, 30.2, 22.2,54.6 +NA,NA,a-curv-i5,2022-23,Topsfield - Proctor Elementary,02980005, 94, 17.0, 258, 49.6, 50.4, 0.0, 22.9,8.5 +NA,NA,a-curv-i5,2022-23,Topsfield - Steward Elementary,02980010, 105, 16.1, 376, 48.9, 51.1, 0.0, 26.1,8 +NA,NA,a-curv-i5,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 840, 16.8, 956, 39.3, 59.3, 0.2, 30.8,24.7 +NA,NA,a-curv-i5,2022-23,Triton - Newbury Elementary,07730020, 198, 18.0, 413, 47.5, 52.5, 0.0, 20.6,20.3 +NA,NA,a-curv-i5,2022-23,Triton - Pine Grove,07730025, 217, 17.6, 432, 49.8, 50.2, 1.6, 22.2,22.5 +NA,NA,a-curv-i5,2022-23,Triton - Salisbury Elementary,07730015, 220, 16.9, 422, 49.1, 51.0, 5.0, 21.8,49.3 +6.512643678160918,5,a-curv-i5,2022-23,Triton - Triton Regional High School,07730505, 348, 13.5, 635, 49.1, 50.4, 1.4, 18.1,30.4,647 +NA,NA,a-curv-i5,2022-23,Triton - Triton Regional Middle School,07730405, 194, 15.9, 322, 48.5, 51.6, 0.3, 23.0,33.2 +NA,NA,a-curv-i5,2022-23,Truro - Truro Central,03000005, 67, 13.2, 101, 48.5, 51.5, 3.0, 17.8,38.6 +NA,NA,a-curv-i5,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 409, 19.3, 761, 47.4, 52.6, 13.4, 26.8,28.9 +6.996363636363637,5,a-curv-i5,2022-23,Tyngsborough - Tyngsborough High School,03010505, 330, 15.6, 419, 48.5, 51.6, 1.7, 14.6,19.6,414 +NA,NA,a-curv-i5,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 255, 17.8, 406, 43.6, 56.2, 3.0, 20.2,22.4 +NA,NA,a-curv-i5,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 136, 14.4, 203, 52.7, 47.3, 21.2, 34.0,86.7 +NA,NA,a-curv-i5,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 181, 21.2, 598, 50.5, 49.5, 35.8, 12.2,84.1 +NA,NA,a-curv-i5,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 19, 16.2, 71, 52.1, 47.9, 0.0, 28.2,25.4 +NA,NA,a-curv-i5,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 141, 15.2, 345, 47.5, 52.5, 5.5, 24.4,29.3 +NA,NA,a-curv-i5,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 338, 13.6, 742, 42.1, 57.4, 0.4, 24.0,40.7 +NA,NA,a-curv-i5,2022-23,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2022-23,Uxbridge - Taft Early Learning Center,03040005, 183, 17.8, 539, 46.8, 53.3, 2.8, 23.6,29.3 +NA,NA,a-curv-i5,2022-23,Uxbridge - Uxbridge High,03040505, 409, 13.6, 602, 43.5, 56.5, 1.7, 18.1,26.9 +NA,NA,a-curv-i5,2022-23,Uxbridge - Whitin Intermediate,03040405, 206, 18.7, 492, 43.9, 56.1, 2.9, 18.9,29.7 +NA,NA,a-curv-i5,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 211, 22.3, 484, 53.9, 45.9, 5.4, 24.6,83.9 +NA,NA,a-curv-i5,2022-23,Wachusett - Central Tree Middle,07750310, 188, 17.9, 372, 50.5, 49.5, 1.1, 11.6,23.1 +NA,NA,a-curv-i5,2022-23,Wachusett - Chocksett Middle School,07750315, 154, 15.9, 280, 46.1, 53.9, 1.8, 11.4,19.6 +NA,NA,a-curv-i5,2022-23,Wachusett - Davis Hill Elementary,07750018, 168, 19.3, 452, 47.4, 52.7, 3.3, 8.0,17.7 +NA,NA,a-curv-i5,2022-23,Wachusett - Dawson,07750020, 195, 18.1, 500, 53.6, 46.4, 2.8, 12.4,14.4 +NA,NA,a-curv-i5,2022-23,Wachusett - Early Childhood Center,07750001, 8, 20.0, 160, 35.6, 64.4, 0.0, 60.6,28.1 +NA,NA,a-curv-i5,2022-23,Wachusett - Glenwood Elementary School,07750060, 144, 19.5, 337, 51.3, 48.7, 2.4, 9.8,17.8 +NA,NA,a-curv-i5,2022-23,Wachusett - Houghton Elementary,07750027, 146, 16.2, 329, 45.3, 54.7, 6.7, 13.7,20.1 +NA,NA,a-curv-i5,2022-23,Wachusett - Leroy E.Mayo,07750032, 183, 19.1, 488, 48.4, 51.6, 3.5, 8.6,16.6 +NA,NA,a-curv-i5,2022-23,Wachusett - Mountview Middle,07750305, 350, 20.7, 781, 47.6, 52.1, 2.1, 12.0,15.1 +NA,NA,a-curv-i5,2022-23,Wachusett - Naquag Elementary School,07750005, 132, 19.8, 367, 46.6, 53.4, 1.6, 7.6,18.5 +NA,NA,a-curv-i5,2022-23,Wachusett - Paxton Center,07750040, 196, 17.6, 447, 52.1, 47.9, 3.1, 19.5,14.8 +NA,NA,a-curv-i5,2022-23,Wachusett - Thomas Prince,07750045, 153, 17.4, 344, 48.6, 51.5, 0.6, 12.2,11.1 +NA,NA,a-curv-i5,2022-23,Wachusett - Wachusett Regional High,07750505," 1,043", 16.6," 1,929", 52.8, 47.1, 1.2, 15.2,16.4 +NA,NA,a-curv-i5,2022-23,Wakefield - Dolbeare,03050005, 180, 21.8, 437, 53.8, 46.2, 6.4, 15.1,16 +NA,NA,a-curv-i5,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 28, 9.9, 139, 41.7, 58.3, 0.0, 45.3,20.1 +NA,NA,a-curv-i5,2022-23,Wakefield - Galvin Middle School,03050310, 563, 20.5," 1,074", 47.6, 52.1, 2.1, 19.7,17.3 +NA,NA,a-curv-i5,2022-23,Wakefield - Greenwood,03050020, 90, 21.8, 218, 45.9, 54.1, 1.4, 13.8,9.6 +NA,NA,a-curv-i5,2022-23,Wakefield - Wakefield Memorial High,03050505, 551, 12.4, 826, 50.7, 49.2, 2.2, 17.0,18.5 +NA,NA,a-curv-i5,2022-23,Wakefield - Walton,03050040, 90, 21.1, 211, 42.2, 57.8, 3.3, 14.2,7.6 +NA,NA,a-curv-i5,2022-23,Wakefield - Woodville School,03050015, 191, 19.3, 423, 50.8, 49.2, 7.1, 18.2,26.2 +NA,NA,a-curv-i5,2022-23,Wales - Wales Elementary,03060005, 39, 12.5, 98, 39.8, 60.2, 2.0, 27.6,53.1 +NA,NA,a-curv-i5,2022-23,Walpole - Bird Middle,03070305, 286, 15.1, 380, 52.6, 47.1, 2.9, 18.2,20.5 +NA,NA,a-curv-i5,2022-23,Walpole - Boyden,03070010, 125, 16.3, 407, 45.2, 54.8, 5.4, 19.2,20.9 +NA,NA,a-curv-i5,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 8, 14.3, 114, 36.8, 63.2, 8.8, 50.9,19.3 +NA,NA,a-curv-i5,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 280, 17.5, 420, 47.4, 52.6, 1.7, 16.2,11.9 +NA,NA,a-curv-i5,2022-23,Walpole - Elm Street School,03070005, 110, 20.2, 446, 54.5, 45.3, 4.9, 13.2,13.9 +NA,NA,a-curv-i5,2022-23,Walpole - Fisher,03070015, 120, 19.7, 472, 49.8, 50.0, 3.6, 17.6,11 +NA,NA,a-curv-i5,2022-23,Walpole - Old Post Road,03070018, 110, 20.9, 459, 50.1, 49.9, 3.3, 7.2,12.2 +NA,NA,a-curv-i5,2022-23,Walpole - Walpole High,03070505, 523, 16.3, 993, 49.7, 50.2, 2.3, 16.6,15.4 +NA,NA,a-curv-i5,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 314, 16.0, 487, 51.1, 48.7, 10.1, 16.2,24.9 +NA,NA,a-curv-i5,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 273, 15.6, 389, 53.5, 46.5, 61.2, 11.3,71.7 +NA,NA,a-curv-i5,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 248, 16.2, 387, 47.0, 53.0, 16.5, 15.0,33.3 +NA,NA,a-curv-i5,2022-23,Waltham - John F Kennedy Middle,03080404, 438, 16.0, 623, 45.4, 54.4, 7.7, 21.4,41.7 +NA,NA,a-curv-i5,2022-23,Waltham - John W. McDevitt Middle School,03080415, 463, 14.6, 614, 45.9, 54.1, 19.7, 21.0,63.2 +NA,NA,a-curv-i5,2022-23,Waltham - Northeast Elementary School,03080040, 300, 16.4, 532, 52.3, 47.7, 28.2, 20.3,50.9 +NA,NA,a-curv-i5,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 239, 15.8, 358, 47.8, 52.2, 28.5, 16.8,50 +NA,NA,a-curv-i5,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 142, 16.0, 210, 47.1, 52.9, 39.5, 12.9,51.4 +NA,NA,a-curv-i5,2022-23,Waltham - Waltham Sr High,03080505, 947, 16.2," 1,815", 45.2, 54.6, 23.2, 15.2,52.8 +NA,NA,a-curv-i5,2022-23,Waltham - William F. Stanley Elementary School,03080005, 275, 12.8, 391, 41.2, 58.8, 29.9, 35.8,47.3 +NA,NA,a-curv-i5,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 68, 20.3, 401, 48.1, 51.4, 2.5, 19.5,68.8 +6.343333333333334,5,a-curv-i5,2022-23,Ware - Ware Junior/Senior High School,03090505, 240, 17.7, 516, 49.8, 50.2, 1.6, 20.5,57.4,497 +NA,NA,a-curv-i5,2022-23,Ware - Ware Middle School,03090305, 89, 20.4, 252, 50.8, 49.2, 0.8, 20.2,68.3 +NA,NA,a-curv-i5,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 26, 4.6, 31, 61.3, 38.7, 0.0, 32.3,74.2 +NA,NA,a-curv-i5,2022-23,Wareham - Wareham Elementary School,03100017, 700, 15.7, 927, 47.5, 52.5, 1.4, 26.4,66.9 +NA,NA,a-curv-i5,2022-23,Wareham - Wareham Middle,03100305, 291, 14.0, 437, 48.1, 51.7, 0.0, 29.1,69.1 +NA,NA,a-curv-i5,2022-23,Wareham - Wareham Senior High,03100505, 500, 12.7, 629, 49.4, 50.2, 0.2, 31.0,62.3 +NA,NA,a-curv-i5,2022-23,Watertown - Cunniff,03140015, 173, 17.5, 321, 49.2, 50.8, 19.3, 24.3,30.2 +NA,NA,a-curv-i5,2022-23,Watertown - Hosmer,03140020, 321, 17.8, 741, 46.6, 53.3, 19.2, 20.9,33.2 +NA,NA,a-curv-i5,2022-23,Watertown - James Russell Lowell,03140025, 195, 17.4, 360, 45.8, 54.2, 22.2, 19.2,35 +NA,NA,a-curv-i5,2022-23,Watertown - Watertown High,03140505, 417, 14.4, 767, 44.7, 54.9, 15.9, 16.2,46.4 +NA,NA,a-curv-i5,2022-23,Watertown - Watertown Middle,03140305, 351, 17.0, 551, 51.2, 48.5, 15.1, 18.3,39.2 +NA,NA,a-curv-i5,2022-23,Wayland - Claypit Hill School,03150005, 205, 20.3, 505, 50.7, 49.3, 6.9, 21.4,10.5 +NA,NA,a-curv-i5,2022-23,Wayland - Happy Hollow School,03150015, 149, 20.2, 363, 50.4, 49.6, 5.8, 16.5,10.7 +NA,NA,a-curv-i5,2022-23,Wayland - Loker School,03150020, 149, 21.5, 387, 51.9, 48.1, 5.4, 14.2,6.7 +NA,NA,a-curv-i5,2022-23,Wayland - The Children's Way Preschool,03150025, 5, 14.2, 71, 39.4, 60.6, 32.4, 36.6,15.5 +6.2560846560846555,5,a-curv-i5,2022-23,Wayland - Wayland High School,03150505, 378, 15.4, 823, 51.9, 48.1, 0.4, 19.7,7.8,824 +NA,NA,a-curv-i5,2022-23,Wayland - Wayland Middle School,03150305, 461, 14.4, 623, 46.2, 53.6, 2.3, 22.0,8.8 +6.773109243697479,5,a-curv-i5,2022-23,Webster - Bartlett High School,03160505, 238, 13.3, 373, 45.8, 53.4, 13.7, 21.2,67.8,365 +NA,NA,a-curv-i5,2022-23,Webster - Park Avenue Elementary,03160015, 284, 17.2, 762, 47.4, 52.6, 17.7, 28.5,74.5 +NA,NA,a-curv-i5,2022-23,Webster - Webster Middle School,03160315, 288, 22.7, 625, 45.8, 54.2, 11.7, 21.3,68.5 +NA,NA,a-curv-i5,2022-23,Wellesley - Ernest F Upham,03170050, 90, 15.8, 159, 47.2, 52.8, 1.3, 31.5,6.9 +NA,NA,a-curv-i5,2022-23,Wellesley - Hunnewell,03170025, 108, 16.5, 198, 50.0, 50.0, 0.5, 25.3,8.1 +NA,NA,a-curv-i5,2022-23,Wellesley - John D Hardy,03170020, 110, 17.2, 210, 47.6, 52.4, 3.8, 14.8,7.1 +NA,NA,a-curv-i5,2022-23,Wellesley - Joseph E Fiske,03170015, 141, 19.0, 295, 48.5, 51.5, 6.4, 9.8,10.2 +NA,NA,a-curv-i5,2022-23,Wellesley - Katharine Lee Bates,03170005, 126, 19.0, 266, 50.0, 50.0, 0.8, 10.5,3.4 +NA,NA,a-curv-i5,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 29, 11.6, 119, 37.0, 63.0, 9.2, 52.1,11.8 +NA,NA,a-curv-i5,2022-23,Wellesley - Schofield,03170045, 168, 17.9, 331, 53.5, 46.5, 5.7, 13.3,7.6 +NA,NA,a-curv-i5,2022-23,Wellesley - Sprague Elementary School,03170048, 140, 18.9, 294, 44.2, 55.8, 3.1, 19.1,10.5 +NA,NA,a-curv-i5,2022-23,Wellesley - Wellesley Middle,03170305, 715, 13.6, 935, 50.5, 49.5, 1.4, 16.6,9.1 +NA,NA,a-curv-i5,2022-23,Wellesley - Wellesley Sr High,03170505, 686, 15.2," 1,411", 52.2, 47.4, 0.4, 15.9,8.3 +NA,NA,a-curv-i5,2022-23,Wellfleet - Wellfleet Elementary,03180005, 80, 12.9, 93, 45.2, 54.8, 0.0, 14.0,32.3 +NA,NA,a-curv-i5,2022-23,West Boylston - Major Edwards Elementary,03220005, 176, 19.5, 436, 47.0, 53.0, 7.8, 21.3,31 +NA,NA,a-curv-i5,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 344, 12.5, 437, 52.4, 47.6, 2.1, 15.3,29.3 +NA,NA,a-curv-i5,2022-23,West Bridgewater - Howard School,03230305, 140, 22.1, 319, 48.6, 51.4, 4.1, 13.8,26.7 +NA,NA,a-curv-i5,2022-23,West Bridgewater - Rose L Macdonald,03230003, 131, 22.7, 319, 46.1, 53.9, 7.2, 14.7,29.8 +NA,NA,a-curv-i5,2022-23,West Bridgewater - Spring Street School,03230005, 69, 20.5, 168, 44.6, 55.4, 5.4, 22.6,29.2 +NA,NA,a-curv-i5,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 454, 16.9, 640, 50.6, 49.4, 2.0, 11.4,25.8 +NA,NA,a-curv-i5,2022-23,West Springfield - John Ashley,03320005, 45, 19.6, 177, 48.6, 51.4, 4.0, 26.0,49.2 +NA,NA,a-curv-i5,2022-23,West Springfield - John R Fausey,03320010, 117, 17.9, 412, 52.9, 47.1, 3.6, 17.0,42.2 +NA,NA,a-curv-i5,2022-23,West Springfield - Memorial,03320025, 67, 14.8, 192, 46.9, 53.1, 2.6, 25.0,78.1 +NA,NA,a-curv-i5,2022-23,West Springfield - Mittineague,03320030, 57, 13.5, 150, 54.0, 46.0, 4.0, 20.7,50 +NA,NA,a-curv-i5,2022-23,West Springfield - Philip G Coburn,03320007, 173, 16.5, 569, 49.0, 51.0, 53.4, 17.4,80.5 +NA,NA,a-curv-i5,2022-23,West Springfield - Tatham,03320040, 72, 16.0, 226, 46.5, 53.5, 2.7, 10.6,29.7 +NA,NA,a-curv-i5,2022-23,West Springfield - West Springfield Early Childhood,03320001, 14, 9.7, 136, 41.9, 58.1, 12.5, 58.1,72.8 +NA,NA,a-curv-i5,2022-23,West Springfield - West Springfield High,03320505, 685, 16.1," 1,219", 46.5, 52.6, 7.3, 18.2,51.9 +NA,NA,a-curv-i5,2022-23,West Springfield - West Springfield Middle,03320305, 647, 17.0, 956, 49.3, 50.3, 12.3, 17.8,58.7 +NA,NA,a-curv-i5,2022-23,Westborough - Annie E Fales,03210010, 117, 18.8, 340, 49.4, 50.6, 7.7, 18.5,7.1 +NA,NA,a-curv-i5,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 153, 15.6, 486, 49.0, 51.0, 29.8, 22.8,22.6 +NA,NA,a-curv-i5,2022-23,Westborough - J Harding Armstrong,03210005, 132, 19.5, 409, 47.4, 52.6, 18.6, 17.1,19.3 +NA,NA,a-curv-i5,2022-23,Westborough - Mill Pond School,03210045, 316, 21.8, 874, 51.3, 48.6, 9.8, 20.4,18 +NA,NA,a-curv-i5,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 547, 15.0, 605, 46.6, 53.2, 7.9, 15.0,16.2 +NA,NA,a-curv-i5,2022-23,Westborough - Westborough High,03210505, 748, 14.8," 1,198", 50.6, 48.8, 5.0, 10.8,14.7 +NA,NA,a-curv-i5,2022-23,Westfield - Abner Gibbs,03250020, 102, 18.2, 181, 51.4, 48.6, 17.7, 19.9,71.3 +NA,NA,a-curv-i5,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 9.3, 158, 41.8, 58.2, 1.9, 62.7,53.2 +NA,NA,a-curv-i5,2022-23,Westfield - Franklin Ave,03250015, 101, 17.7, 177, 52.0, 48.0, 0.6, 18.6,81.9 +NA,NA,a-curv-i5,2022-23,Westfield - Highland,03250025, 189, 19.8, 365, 52.1, 48.0, 19.2, 20.3,45.5 +NA,NA,a-curv-i5,2022-23,Westfield - Munger Hill,03250033, 195, 17.9, 341, 48.1, 51.9, 21.1, 24.3,43.4 +NA,NA,a-curv-i5,2022-23,Westfield - Paper Mill,03250036, 164, 20.1, 330, 50.0, 50.0, 1.5, 29.1,53 +NA,NA,a-curv-i5,2022-23,Westfield - Southampton Road,03250040, 153, 19.4, 320, 49.4, 50.6, 1.6, 19.1,44.1 +NA,NA,a-curv-i5,2022-23,Westfield - Westfield High,03250505, 586, 14.8," 1,014", 52.5, 47.3, 6.4, 21.4,42.7 +NA,NA,a-curv-i5,2022-23,Westfield - Westfield Intermediate School,03250075, 398, 15.8, 686, 51.9, 48.1, 7.6, 23.2,55.1 +NA,NA,a-curv-i5,2022-23,Westfield - Westfield Middle School,03250310, 335, 17.3, 689, 46.4, 53.4, 7.0, 19.6,48 +NA,NA,a-curv-i5,2022-23,Westfield - Westfield Technical Academy,03250605, 285, 13.7, 540, 31.5, 68.2, 2.8, 24.6,45 +NA,NA,a-curv-i5,2022-23,Westfield - Westfield Virtual School,03250705, 66, 10.0, 109, 51.4, 47.7, 1.8, 31.2,70.6 +NA,NA,a-curv-i5,2022-23,Westford - Abbot Elementary,03260004, 199, 18.2, 365, 48.5, 51.5, 1.4, 17.5,6 +NA,NA,a-curv-i5,2022-23,Westford - Blanchard Middle,03260310, 444, 15.3, 549, 52.8, 47.0, 0.7, 18.8,7.8 +NA,NA,a-curv-i5,2022-23,Westford - Col John Robinson,03260025, 150, 21.2, 362, 50.8, 49.2, 6.9, 19.6,11.3 +NA,NA,a-curv-i5,2022-23,Westford - Day Elementary,03260007, 166, 20.1, 329, 50.2, 49.9, 6.4, 18.8,10.3 +NA,NA,a-curv-i5,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 169, 20.2, 346, 44.2, 55.5, 4.3, 21.1,11.9 +NA,NA,a-curv-i5,2022-23,Westford - Nabnasset,03260015, 168, 20.3, 385, 49.4, 50.7, 4.2, 17.4,8.8 +NA,NA,a-curv-i5,2022-23,Westford - Rita E. Miller Elementary School,03260055, 144, 20.0, 304, 35.2, 64.8, 19.7, 29.3,15.1 +NA,NA,a-curv-i5,2022-23,Westford - Stony Brook School,03260330, 344, 17.0, 619, 51.5, 48.3, 1.8, 18.1,9.5 +NA,NA,a-curv-i5,2022-23,Westford - Westford Academy,03260505, 671, 18.1," 1,519", 49.8, 50.0, 0.7, 12.6,7.4 +NA,NA,a-curv-i5,2022-23,Westhampton - Westhampton Elementary School,03270005, 57, 13.4, 105, 42.9, 57.1, 0.0, 31.4,30.5 +NA,NA,a-curv-i5,2022-23,Weston - Country,03300010, 84, 19.1, 333, 48.7, 51.4, 6.9, 14.7,6 +NA,NA,a-curv-i5,2022-23,Weston - Field Elementary School,03300012, 92, 20.5, 268, 51.1, 48.9, 4.5, 15.3,8.6 +NA,NA,a-curv-i5,2022-23,Weston - Weston High,03300505, 512, 13.2, 644, 43.6, 56.1, 1.6, 22.2,8.2 +NA,NA,a-curv-i5,2022-23,Weston - Weston Middle,03300305, 291, 17.7, 449, 49.0, 50.8, 0.9, 21.6,9.6 +NA,NA,a-curv-i5,2022-23,Weston - Woodland,03300015, 82, 19.1, 321, 50.5, 49.5, 5.3, 10.9,7.5 +NA,NA,a-curv-i5,2022-23,Westport - Alice A Macomber,03310015, 77, 14.8, 180, 57.2, 42.8, 2.8, 28.9,37.2 +NA,NA,a-curv-i5,2022-23,Westport - Westport Elementary,03310030, 179, 16.4, 445, 53.3, 46.7, 2.3, 24.5,35.1 +6.601680672268907,5,a-curv-i5,2022-23,Westport - Westport Middle-High School,03310515, 476, 17.1, 833, 45.7, 54.0, 1.1, 19.7,32.7,832 +NA,NA,a-curv-i5,2022-23,Westwood - Deerfield School,03350010, 87, 16.4, 199, 48.2, 51.8, 1.5, 27.6,5.5 +NA,NA,a-curv-i5,2022-23,Westwood - Downey,03350012, 124, 18.3, 313, 43.1, 56.9, 2.6, 27.2,7 +NA,NA,a-curv-i5,2022-23,Westwood - E W Thurston Middle,03350305, 447, 20.0, 667, 48.6, 51.4, 0.3, 23.8,7.1 +NA,NA,a-curv-i5,2022-23,Westwood - Martha Jones,03350017, 108, 17.9, 267, 51.3, 48.7, 1.1, 13.5,3 +NA,NA,a-curv-i5,2022-23,Westwood - Paul Hanlon,03350015, 87, 18.8, 226, 48.2, 51.8, 3.1, 23.0,20.8 +NA,NA,a-curv-i5,2022-23,Westwood - Westwood High,03350505, 551, 13.6, 906, 48.1, 51.7, 0.2, 17.2,9.9 +NA,NA,a-curv-i5,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3, 17.0, 51, 33.3, 66.7, 0.0, 56.9,9.8 +NA,NA,a-curv-i5,2022-23,Westwood - William E Sheehan,03350025, 109, 19.3, 288, 42.0, 58.0, 0.7, 20.8,4.5 +NA,NA,a-curv-i5,2022-23,Weymouth - Academy Avenue,03360005, 95, 19.6, 352, 50.6, 49.4, 13.1, 15.3,38.9 +NA,NA,a-curv-i5,2022-23,Weymouth - Frederick C Murphy,03360050, 70, 21.4, 286, 46.5, 53.5, 9.1, 21.3,46.2 +NA,NA,a-curv-i5,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 14, 15.4, 215, 42.3, 57.7, 4.7, 57.2,36.3 +NA,NA,a-curv-i5,2022-23,Weymouth - Lawrence W Pingree,03360065, 68, 20.3, 266, 54.9, 45.1, 6.8, 25.9,45.5 +NA,NA,a-curv-i5,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,375", 17.0," 1,231", 51.9, 48.0, 6.8, 23.0,42.7 +NA,NA,a-curv-i5,2022-23,Weymouth - Ralph Talbot,03360085, 65, 21.0, 265, 43.0, 57.0, 10.9, 18.9,38.1 +NA,NA,a-curv-i5,2022-23,Weymouth - Thomas V Nash,03360060, 67, 19.0, 243, 48.2, 51.9, 11.1, 16.1,40.7 +NA,NA,a-curv-i5,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 90, 21.1, 363, 49.9, 50.1, 12.1, 19.3,30.9 +NA,NA,a-curv-i5,2022-23,Weymouth - Wessagusset,03360110, 112, 16.3, 348, 48.9, 51.2, 9.8, 25.6,37.1 +6.416648411829135,5,a-curv-i5,2022-23,Weymouth - Weymouth High School,03360505, 913, 15.3," 1,816", 50.4, 49.3, 6.3, 22.0,39.9,1807 +NA,NA,a-curv-i5,2022-23,Weymouth - William Seach,03360080, 95, 21.1, 380, 49.7, 50.3, 19.7, 19.2,71.3 +NA,NA,a-curv-i5,2022-23,Whately - Whately Elementary,03370005, 86, 15.7, 129, 47.3, 52.7, 1.6, 16.3,24.8 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 223, 17.9, 447, 47.0, 53.0, 0.7, 20.1,25.7 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - Indian Head,07800035, 175, 19.3, 483, 47.4, 52.6, 0.6, 14.7,24.8 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - John H Duval,07800030, 168, 18.0, 433, 47.3, 52.7, 15.9, 21.0,44.3 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - Louise A Conley,07800010, 168, 20.2, 485, 50.1, 49.9, 8.3, 15.3,30.1 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 33, 13.3, 111, 32.4, 67.6, 0.0, 33.3,27 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 401, 16.8," 1,075", 49.4, 50.6, 4.7, 16.3,29.5 +NA,NA,a-curv-i5,2022-23,Whitman-Hanson - Whitman Middle,07800310, 205, 20.4, 511, 48.5, 51.5, 5.7, 13.9,29.4 +NA,NA,a-curv-i5,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,124", 11.6," 1,281", 44.4, 54.6, 1.6, 15.3,40.1 +NA,NA,a-curv-i5,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 57, 16.6, 129, 48.1, 51.9, 1.6, 16.3,34.9 +NA,NA,a-curv-i5,2022-23,Wilmington - Boutwell,03420005, 90, 13.3, 147, 47.6, 52.4, 2.7, 21.1,8.2 +NA,NA,a-curv-i5,2022-23,Wilmington - North Intermediate,03420060, 131, 21.4, 249, 52.2, 47.8, 1.6, 16.9,13.7 +NA,NA,a-curv-i5,2022-23,Wilmington - Shawsheen Elementary,03420025, 215, 17.5, 388, 45.9, 54.1, 1.6, 20.6,16.5 +NA,NA,a-curv-i5,2022-23,Wilmington - West Intermediate,03420080, 175, 17.8, 297, 47.1, 52.9, 1.0, 21.6,14.5 +NA,NA,a-curv-i5,2022-23,Wilmington - Wilmington High,03420505, 434, 13.4, 667, 49.8, 49.6, 0.8, 12.9,14.4 +NA,NA,a-curv-i5,2022-23,Wilmington - Wilmington Middle School,03420330, 541, 13.8, 638, 48.1, 51.9, 1.4, 19.4,14.7 +NA,NA,a-curv-i5,2022-23,Wilmington - Woburn Street,03420020, 225, 19.0, 424, 44.3, 55.7, 4.5, 13.7,14.2 +NA,NA,a-curv-i5,2022-23,Winchendon - Memorial,03430040, 76, 20.6, 315, 49.8, 50.2, 1.6, 24.1,61.3 +NA,NA,a-curv-i5,2022-23,Winchendon - Murdock Academy for Success,03430405, 2, 24.0, 33, 30.3, 66.7, 0.0, 27.3,48.5 +6.701234567901234,5,a-curv-i5,2022-23,Winchendon - Murdock High School,03430515, 162, 12.9, 274, 49.3, 50.0, 2.6, 19.0,56.6,263 +NA,NA,a-curv-i5,2022-23,Winchendon - Murdock Middle School,03430315, 116, 19.5, 279, 38.7, 60.6, 2.9, 16.9,52.7 +NA,NA,a-curv-i5,2022-23,Winchendon - Toy Town Elementary,03430050, 109, 21.7, 296, 46.0, 54.1, 1.4, 21.6,58.1 +NA,NA,a-curv-i5,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 10, 8.1, 80, 42.5, 57.5, 2.5, 35.0,47.5 +NA,NA,a-curv-i5,2022-23,Winchester - Ambrose Elementary,03440045, 225, 17.5, 345, 51.6, 48.4, 0.9, 12.5,2.9 +NA,NA,a-curv-i5,2022-23,Winchester - Lincoln Elementary,03440005, 199, 18.7, 332, 47.0, 53.0, 4.5, 16.3,3 +NA,NA,a-curv-i5,2022-23,Winchester - Lynch Elementary,03440020, 284, 17.7, 496, 40.3, 59.7, 12.7, 23.2,12.5 +NA,NA,a-curv-i5,2022-23,Winchester - McCall Middle,03440305, 565, 20.3," 1,037", 52.0, 47.8, 1.2, 15.9,6.5 +NA,NA,a-curv-i5,2022-23,Winchester - Muraco Elementary,03440040, 211, 17.5, 330, 48.8, 50.9, 7.3, 12.1,9.1 +NA,NA,a-curv-i5,2022-23,Winchester - Vinson-Owen Elementary,03440025, 274, 17.0, 408, 51.7, 48.3, 4.2, 15.0,4.7 +6.252132701421801,5,a-curv-i5,2022-23,Winchester - Winchester High School,03440505, 633, 16.4," 1,381", 51.4, 48.4, 1.2, 14.8,7.5,1383 +NA,NA,a-curv-i5,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 126, 20.9, 438, 56.4, 43.6, 14.2, 17.1,39.5 +NA,NA,a-curv-i5,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 117, 19.8, 523, 47.8, 52.2, 18.4, 19.9,40.3 +5.820183486238532,5,a-curv-i5,2022-23,Winthrop - Winthrop High School,03460505, 218, 19.0, 616, 51.1, 48.7, 7.5, 15.1,41.1,594 +NA,NA,a-curv-i5,2022-23,Winthrop - Winthrop Middle School,03460305, 225, 19.2, 441, 46.9, 53.1, 6.1, 14.5,39.9 +NA,NA,a-curv-i5,2022-23,Woburn - Clyde Reeves,03470040, 248, 15.2, 433, 43.7, 56.4, 8.8, 36.0,35.6 +NA,NA,a-curv-i5,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 442, 14.6, 468, 52.6, 47.4, 8.3, 25.2,43.2 +NA,NA,a-curv-i5,2022-23,Woburn - Goodyear Elementary School,03470005, 190, 17.0, 325, 53.5, 46.5, 20.9, 23.7,45.5 +NA,NA,a-curv-i5,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 190, 20.7, 394, 47.0, 53.1, 8.4, 16.2,23.6 +NA,NA,a-curv-i5,2022-23,Woburn - John F Kennedy Middle School,03470405, 431, 17.6, 539, 51.0, 49.0, 7.1, 14.5,46.8 +NA,NA,a-curv-i5,2022-23,Woburn - Linscott-Rumford,03470025, 120, 16.5, 200, 50.5, 49.5, 17.5, 11.0,34 +NA,NA,a-curv-i5,2022-23,Woburn - Malcolm White,03470055, 196, 15.5, 321, 53.6, 46.1, 24.3, 21.8,48.3 +NA,NA,a-curv-i5,2022-23,Woburn - Mary D Altavesta,03470065, 120, 16.5, 198, 52.0, 48.0, 19.7, 23.7,48 +NA,NA,a-curv-i5,2022-23,Woburn - Shamrock,03470043, 193, 13.5, 282, 46.1, 53.9, 9.2, 35.1,53.2 +NA,NA,a-curv-i5,2022-23,Woburn - Woburn High,03470505, 649, 13.8," 1,194", 51.3, 48.2, 8.8, 15.8,37.9 +NA,NA,a-curv-i5,2022-23,Worcester - Belmont Street Community,03480020, 284, 17.0, 579, 48.9, 51.1, 49.4, 19.0,90 +NA,NA,a-curv-i5,2022-23,Worcester - Burncoat Middle School,03480405, 422, 16.6, 702, 52.0, 48.0, 23.7, 22.5,69.1 +NA,NA,a-curv-i5,2022-23,Worcester - Burncoat Senior High,03480503, 651, 14.4," 1,163", 50.2, 49.7, 23.8, 18.7,70.3 +NA,NA,a-curv-i5,2022-23,Worcester - Burncoat Street,03480035, 186, 11.0, 232, 48.7, 51.3, 32.8, 24.1,81.9 +NA,NA,a-curv-i5,2022-23,Worcester - Canterbury,03480045, 211, 12.9, 341, 46.6, 53.4, 46.6, 28.5,82.7 +NA,NA,a-curv-i5,2022-23,Worcester - Chandler Elementary Community,03480050, 240, 15.9, 427, 48.7, 51.3, 51.5, 15.5,93.4 +NA,NA,a-curv-i5,2022-23,Worcester - Chandler Magnet,03480052, 273, 12.6, 404, 55.0, 45.1, 54.7, 18.6,70.1 +NA,NA,a-curv-i5,2022-23,Worcester - City View,03480053, 292, 12.7, 446, 50.2, 49.8, 41.9, 22.7,88.3 +NA,NA,a-curv-i5,2022-23,Worcester - Claremont Academy,03480350, 265, 16.1, 485, 50.5, 49.5, 37.3, 12.2,85.4 +NA,NA,a-curv-i5,2022-23,Worcester - Clark St Community,03480055, 187, 11.4, 287, 48.8, 51.2, 40.8, 27.9,89.2 +NA,NA,a-curv-i5,2022-23,Worcester - Columbus Park,03480060, 229, 13.8, 397, 45.1, 54.9, 48.6, 25.4,82.1 +NA,NA,a-curv-i5,2022-23,Worcester - Doherty Memorial High,03480512, 854, 13.3," 1,323", 44.9, 55.0, 19.1, 12.6,58.7 +NA,NA,a-curv-i5,2022-23,Worcester - Elm Park Community,03480095, 220, 16.9, 428, 48.1, 51.9, 47.4, 14.5,91.8 +NA,NA,a-curv-i5,2022-23,Worcester - Flagg Street,03480090, 169, 18.0, 363, 51.2, 48.8, 14.6, 18.2,31.4 +NA,NA,a-curv-i5,2022-23,Worcester - Forest Grove Middle,03480415, 584, 16.4, 924, 49.0, 51.0, 21.0, 19.6,62.2 +NA,NA,a-curv-i5,2022-23,Worcester - Francis J McGrath Elementary,03480177, 129, 14.8, 235, 48.9, 51.1, 35.7, 20.9,77.5 +NA,NA,a-curv-i5,2022-23,Worcester - Gates Lane,03480110, 325, 13.0, 553, 41.6, 58.4, 38.2, 39.1,76.7 +NA,NA,a-curv-i5,2022-23,Worcester - Goddard School/Science Technical,03480100, 266, 12.3, 384, 47.4, 52.6, 52.1, 24.0,88.3 +NA,NA,a-curv-i5,2022-23,Worcester - Grafton Street,03480115, 203, 19.0, 436, 47.7, 52.3, 50.0, 14.0,88.3 +NA,NA,a-curv-i5,2022-23,Worcester - Head Start,03480002, 25, 15.6, 390, 52.3, 47.7, 1.0, 12.1,91.5 +NA,NA,a-curv-i5,2022-23,Worcester - Heard Street,03480136, 130, 16.2, 250, 46.4, 53.6, 22.8, 16.0,57.6 +NA,NA,a-curv-i5,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 193, 14.6, 374, 50.3, 49.7, 31.0, 22.5,71.7 +NA,NA,a-curv-i5,2022-23,Worcester - La Familia Dual Language School,03480025, 184, 14.1, 192, 51.6, 47.9, 49.5, 10.9,62 +NA,NA,a-curv-i5,2022-23,Worcester - Lake View,03480145, 155, 17.1, 307, 48.9, 51.1, 23.5, 18.2,61.6 +NA,NA,a-curv-i5,2022-23,Worcester - Lincoln Street,03480160, 137, 14.9, 241, 48.6, 51.5, 37.8, 23.7,89.6 +NA,NA,a-curv-i5,2022-23,Worcester - May Street,03480175, 143, 18.0, 303, 48.5, 51.5, 22.8, 12.9,53.8 +NA,NA,a-curv-i5,2022-23,Worcester - Midland Street,03480185, 119, 15.1, 211, 43.6, 56.4, 23.2, 11.9,48.3 +NA,NA,a-curv-i5,2022-23,Worcester - Nelson Place,03480200, 353, 12.9, 588, 42.2, 57.8, 24.0, 37.6,44.9 +NA,NA,a-curv-i5,2022-23,Worcester - Norrback Avenue,03480202, 349, 11.5, 518, 43.4, 56.6, 29.0, 43.6,68.9 +NA,NA,a-curv-i5,2022-23,Worcester - North High,03480515, 679, 16.2," 1,352", 48.5, 51.2, 34.8, 16.8,82.3 +NA,NA,a-curv-i5,2022-23,Worcester - Quinsigamond,03480210, 369, 16.5, 719, 48.3, 51.7, 47.0, 20.5,83.3 +NA,NA,a-curv-i5,2022-23,Worcester - Rice Square,03480215, 228, 18.8, 475, 49.9, 50.1, 46.3, 12.8,80 +NA,NA,a-curv-i5,2022-23,Worcester - Roosevelt,03480220, 337, 12.3, 575, 44.0, 56.0, 27.7, 37.0,64.9 +NA,NA,a-curv-i5,2022-23,Worcester - South High Community,03480520, 987, 16.1," 1,639", 46.9, 53.1, 27.8, 16.3,72.4 +NA,NA,a-curv-i5,2022-23,Worcester - Sullivan Middle,03480423, 508, 15.6, 866, 49.2, 50.8, 27.5, 19.6,73 +NA,NA,a-curv-i5,2022-23,Worcester - Tatnuck,03480230, 206, 15.3, 390, 49.2, 50.8, 25.1, 23.9,59 +NA,NA,a-curv-i5,2022-23,Worcester - Thorndyke Road,03480235, 147, 21.1, 360, 51.4, 48.6, 34.4, 21.9,65.8 +NA,NA,a-curv-i5,2022-23,Worcester - Union Hill School,03480240, 221, 16.0, 400, 46.0, 54.0, 52.0, 22.3,82.5 +NA,NA,a-curv-i5,2022-23,Worcester - University Pk Campus School,03480285, 123, 16.0, 228, 46.9, 53.1, 19.7, 11.0,74.1 +NA,NA,a-curv-i5,2022-23,Worcester - Vernon Hill School,03480280, 281, 14.3, 529, 50.1, 49.9, 45.2, 21.2,84.7 +NA,NA,a-curv-i5,2022-23,Worcester - Wawecus Road School,03480026, 125, 9.1, 132, 52.3, 47.7, 31.8, 28.0,72.7 +NA,NA,a-curv-i5,2022-23,Worcester - West Tatnuck,03480260, 195, 15.5, 377, 43.8, 56.2, 17.0, 23.1,43 +NA,NA,a-curv-i5,2022-23,Worcester - Woodland Academy,03480030, 296, 15.5, 502, 52.2, 47.8, 62.6, 18.5,93 +NA,NA,a-curv-i5,2022-23,Worcester - Worcester Arts Magnet School,03480225, 193, 16.8, 385, 48.8, 51.2, 18.2, 20.0,46.5 +NA,NA,a-curv-i5,2022-23,Worcester - Worcester East Middle,03480420, 437, 16.8, 795, 48.7, 51.3, 33.1, 17.9,83.4 +NA,NA,a-curv-i5,2022-23,Worcester - Worcester Technical High,03480605, 748, 14.6," 1,450", 56.8, 43.1, 8.2, 13.4,63.6 +NA,NA,a-curv-i5,2022-23,Worthington - R. H. Conwell,03490010, 51, 8.2, 74, 44.6, 54.1, 0.0, 25.7,36.5 +NA,NA,a-curv-i5,2022-23,Wrentham - Charles E Roderick,03500010, 179, 19.0, 376, 50.0, 50.0, 1.1, 18.9,15.4 +NA,NA,a-curv-i5,2022-23,Wrentham - Delaney,03500003, 253, 19.1, 599, 48.3, 51.8, 3.8, 18.9,16.5 +NA,NA,a-curv-i5,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 742, 18.3," 1,421", 53.6, 46.4, 16.0, 12.6,70.1 +NA,NA,a-curv-i5,2021-22,Abington - Abington Early Education Program,00010001, 16, 23.2, 93, 41.9, 58.1, 9.7, 44.1,34.4 +NA,NA,a-curv-i5,2021-22,Abington - Abington High,00010505, 274, 16.7, 587, 47.7, 52.0, 6.8, 11.4,35.3 +NA,NA,a-curv-i5,2021-22,Abington - Abington Middle School,00010405, 380, 21.4, 667, 49.5, 49.9, 9.5, 16.5,37.3 +NA,NA,a-curv-i5,2021-22,Abington - Beaver Brook Elementary,00010020, 207, 23.5, 542, 51.1, 48.7, 15.3, 17.9,39.3 +NA,NA,a-curv-i5,2021-22,Abington - Woodsdale Elementary School,00010015, 117, 24.7, 318, 49.7, 50.3, 10.1, 20.4,33 +NA,NA,a-curv-i5,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 202, 17.3, 497, 49.3, 50.7, 7.4, 28.0,61.6 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 742, 17.0," 1,713", 47.9, 51.6, 1.5, 10.6,8.8 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 170, 20.7, 496, 50.6, 49.4, 8.9, 15.1,9.3 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 128, 21.3, 386, 49.5, 50.5, 6.0, 13.5,14 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 12, 11.8, 127, 39.4, 60.6, 23.6, 45.7,15.8 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Luther Conant School,06000030, 136, 20.8, 395, 45.3, 54.4, 15.7, 15.2,9.4 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 150, 21.7, 458, 51.1, 48.7, 7.6, 16.8,14.2 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Merriam School,06000010, 149, 22.1, 465, 49.7, 49.9, 6.9, 15.7,12.3 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 122, 21.6, 372, 47.3, 52.7, 9.4, 10.2,12.4 +NA,NA,a-curv-i5,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 579, 19.7, 842, 47.5, 52.0, 3.1, 17.5,12.1 +NA,NA,a-curv-i5,2021-22,Acushnet - Acushnet Elementary School,00030025, 280, 18.6, 541, 45.5, 54.5, 0.4, 16.1,40.9 +NA,NA,a-curv-i5,2021-22,Acushnet - Albert F Ford Middle School,00030305, 213, 17.3, 395, 49.1, 50.9, 0.3, 12.4,33.9 +NA,NA,a-curv-i5,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 495, 18.5, 965, 45.9, 53.6, 2.6, 6.8,14.3 +NA,NA,a-curv-i5,2021-22,Agawam - Agawam Early Childhood Center,00050003, 18, 10.8, 186, 37.1, 62.9, 11.8, 41.4,50.5 +NA,NA,a-curv-i5,2021-22,Agawam - Agawam High,00050505, 578, 14.2," 1,054", 47.7, 52.3, 2.3, 15.8,37.4 +NA,NA,a-curv-i5,2021-22,Agawam - Agawam Junior High,00050405, 531, 12.4, 592, 46.6, 53.2, 2.2, 17.4,43.9 +NA,NA,a-curv-i5,2021-22,Agawam - Benjamin J Phelps,00050020, 167, 19.3, 307, 49.5, 50.5, 5.9, 7.8,48.2 +NA,NA,a-curv-i5,2021-22,Agawam - Clifford M Granger,00050010, 176, 18.5, 314, 50.3, 49.7, 8.0, 12.4,40.1 +NA,NA,a-curv-i5,2021-22,Agawam - James Clark School,00050030, 157, 19.4, 294, 50.3, 49.7, 9.2, 14.6,48.3 +NA,NA,a-curv-i5,2021-22,Agawam - Roberta G. Doering School,00050303, 377, 18.7, 543, 50.1, 49.7, 3.3, 20.6,44.2 +NA,NA,a-curv-i5,2021-22,Agawam - Robinson Park,00050025, 156, 19.0, 283, 50.2, 49.8, 13.8, 11.3,57.6 +NA,NA,a-curv-i5,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 280, 22.6, 938, 53.8, 46.2, 31.0, 19.6,75.7 +NA,NA,a-curv-i5,2021-22,Amesbury - Amesbury Elementary,00070005, 143, 18.2, 329, 46.8, 53.2, 0.6, 23.1,33.7 +NA,NA,a-curv-i5,2021-22,Amesbury - Amesbury High,00070505, 395, 12.7, 466, 49.8, 50.2, 1.7, 18.0,28.5 +7.38360655737705,5,a-curv-i5,2021-22,Amesbury - Amesbury Innovation High School,00070515, 61, 9.0, 52, 50.0, 50.0, 0.0, 46.2,65.4,47 +NA,NA,a-curv-i5,2021-22,Amesbury - Amesbury Middle,00070013, 401, 15.6, 627, 43.2, 56.8, 0.8, 21.7,36.4 +NA,NA,a-curv-i5,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 177, 17.1, 373, 49.9, 50.1, 6.2, 30.3,37.3 +NA,NA,a-curv-i5,2021-22,Amherst - Crocker Farm Elementary,00080009, 114, 16.7, 363, 46.8, 51.5, 15.7, 24.8,35.3 +NA,NA,a-curv-i5,2021-22,Amherst - Fort River Elementary,00080020, 109, 18.5, 345, 46.1, 53.9, 10.7, 25.2,36.2 +NA,NA,a-curv-i5,2021-22,Amherst - Wildwood Elementary,00080050, 114, 18.0, 335, 52.5, 46.9, 14.0, 23.0,45.7 +NA,NA,a-curv-i5,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 624, 13.6, 868, 46.5, 52.7, 9.0, 22.7,33.1 +NA,NA,a-curv-i5,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 282, 17.2, 420, 46.9, 52.1, 6.9, 21.4,31.9 +NA,NA,a-curv-i5,2021-22,Andover - Andover High,00090505, 995, 14.8," 1,677", 50.5, 49.1, 0.5, 16.1,13.3 +NA,NA,a-curv-i5,2021-22,Andover - Andover West Middle,00090310, 313, 18.1, 537, 50.8, 49.0, 1.5, 19.0,14.2 +NA,NA,a-curv-i5,2021-22,Andover - Bancroft Elementary,00090003, 189, 19.3, 523, 49.0, 51.1, 3.3, 19.3,9.8 +NA,NA,a-curv-i5,2021-22,Andover - Doherty Middle,00090305, 301, 16.0, 458, 51.5, 48.5, 0.7, 17.0,8.1 +NA,NA,a-curv-i5,2021-22,Andover - Henry C Sanborn Elementary,00090010, 126, 18.5, 333, 48.1, 52.0, 5.1, 10.2,12.3 +NA,NA,a-curv-i5,2021-22,Andover - High Plain Elementary,00090004, 182, 20.5, 534, 48.9, 51.1, 11.8, 16.1,15 +NA,NA,a-curv-i5,2021-22,Andover - Shawsheen School,00090005, 11, 9.5, 104, 39.4, 60.6, 5.8, 54.8,17.3 +NA,NA,a-curv-i5,2021-22,Andover - South Elementary,00090020, 168, 18.2, 437, 44.9, 55.2, 2.1, 15.6,6.6 +NA,NA,a-curv-i5,2021-22,Andover - West Elementary,00090025, 203, 19.1, 554, 46.4, 53.6, 5.1, 27.1,14.3 +NA,NA,a-curv-i5,2021-22,Andover - Wood Hill Middle School,00090350, 234, 16.3, 374, 49.7, 50.3, 2.4, 17.1,14.4 +NA,NA,a-curv-i5,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 298, 19.2, 582, 46.4, 53.6, 20.8, 26.3,77.7 +NA,NA,a-curv-i5,2021-22,Arlington - Arlington High,00100505, 912, 14.7," 1,504", 51.8, 46.9, 1.5, 11.4,12.1 +NA,NA,a-curv-i5,2021-22,Arlington - Brackett,00100010, 182, 17.1, 445, 44.5, 55.3, 4.3, 18.0,4.5 +NA,NA,a-curv-i5,2021-22,Arlington - Cyrus E Dallin,00100025, 175, 17.5, 437, 50.1, 49.9, 4.1, 10.1,8 +NA,NA,a-curv-i5,2021-22,Arlington - Gibbs School,00100305, 323, 17.0, 458, 52.6, 46.9, 3.3, 22.3,10.9 +NA,NA,a-curv-i5,2021-22,Arlington - Hardy,00100030, 154, 18.7, 412, 52.4, 47.6, 9.7, 17.7,11.4 +NA,NA,a-curv-i5,2021-22,Arlington - John A Bishop,00100005, 133, 21.0, 399, 47.6, 52.4, 8.3, 12.3,6.5 +NA,NA,a-curv-i5,2021-22,Arlington - M Norcross Stratton,00100055, 154, 20.5, 451, 48.3, 51.4, 9.5, 18.4,8.9 +NA,NA,a-curv-i5,2021-22,Arlington - Menotomy Preschool,00100038, 7, 14.0, 98, 36.7, 63.3, 0.0, 56.1,18.4 +NA,NA,a-curv-i5,2021-22,Arlington - Ottoson Middle,00100410, 559, 17.7, 923, 45.9, 53.5, 2.5, 19.5,13.5 +NA,NA,a-curv-i5,2021-22,Arlington - Peirce,00100045, 119, 19.4, 330, 43.3, 56.4, 9.4, 12.4,10.9 +NA,NA,a-curv-i5,2021-22,Arlington - Thompson,00100050, 168, 21.3, 511, 52.5, 47.4, 10.0, 15.9,22.9 +NA,NA,a-curv-i5,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 273, 19.4, 540, 48.9, 51.1, 4.8, 23.0,28.3 +NA,NA,a-curv-i5,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 114, 16.6, 168, 50.0, 50.0, 7.1, 13.7,24.4 +6.538011695906432,5,a-curv-i5,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 342, 15.1, 630, 46.0, 53.0, 0.5, 15.4,24.4,625 +NA,NA,a-curv-i5,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 410, 22.4, 572, 48.3, 51.2, 0.4, 15.0,26.8 +NA,NA,a-curv-i5,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 215, 21.0, 382, 50.3, 49.5, 2.4, 19.9,25.9 +NA,NA,a-curv-i5,2021-22,Ashland - Ashland High,00140505, 386, 17.2, 842, 50.2, 49.8, 4.0, 13.8,23.9 +NA,NA,a-curv-i5,2021-22,Ashland - Ashland Middle,00140405, 400, 20.9, 716, 48.3, 51.7, 8.2, 19.1,25.7 +NA,NA,a-curv-i5,2021-22,Ashland - David Mindess,00140015, 297, 23.1, 652, 47.4, 52.6, 11.5, 24.1,24.2 +NA,NA,a-curv-i5,2021-22,Ashland - Henry E Warren Elementary,00140010, 192, 21.9, 662, 46.4, 53.6, 13.8, 16.0,23.6 +NA,NA,a-curv-i5,2021-22,Ashland - William Pittaway Elementary,00140005, 18, 5.1, 84, 42.9, 57.1, 0.0, 40.5,19.1 +6.4863787375415285,5,a-curv-i5,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 602, 17.6," 1,121", 42.0, 56.9, 5.2, 26.0,42.8,1139 +NA,NA,a-curv-i5,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 214, 20.0, 599, 46.7, 53.3, 4.5, 25.9,71.1 +NA,NA,a-curv-i5,2021-22,Athol-Royalston - Athol High,06150505, 174, 14.2, 366, 44.8, 55.2, 2.2, 24.9,60.9 +NA,NA,a-curv-i5,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 279, 19.4, 459, 44.7, 55.3, 1.7, 25.5,69.3 +NA,NA,a-curv-i5,2021-22,Athol-Royalston - Royalston Community School,06150050, 52, 19.6, 139, 45.3, 54.7, 0.0, 14.4,50.4 +NA,NA,a-curv-i5,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 493, 21.2," 1,288", 53.3, 46.6, 17.1, 14.7,64.6 +NA,NA,a-curv-i5,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 193, 18.3, 349, 50.1, 49.9, 8.0, 20.1,42.1 +NA,NA,a-curv-i5,2021-22,Attleboro - Attleboro Community Academy,00160515, 46, 16.2, 101, 44.6, 53.5, 5.0, 21.8,60.4 +NA,NA,a-curv-i5,2021-22,Attleboro - Attleboro High,00160505, 763, 19.3," 1,800", 45.3, 54.3, 3.4, 15.9,37.7 +NA,NA,a-curv-i5,2021-22,Attleboro - Attleboro Virtual Academy,00160705, 51, 7.0, 59, 52.5, 47.5, 1.7, 15.3,47.5 +NA,NA,a-curv-i5,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 267, 20.8, 626, 49.4, 50.2, 7.0, 17.7,49.7 +NA,NA,a-curv-i5,2021-22,Attleboro - Early Learning Center,00160008, 16, 13.3, 213, 38.0, 62.0, 0.0, 52.1,47.4 +NA,NA,a-curv-i5,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 190, 20.9, 397, 51.4, 48.6, 12.3, 15.9,48.1 +NA,NA,a-curv-i5,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 200, 22.8, 456, 51.3, 48.7, 12.9, 18.6,41 +NA,NA,a-curv-i5,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 330, 15.5, 464, 46.8, 53.2, 8.0, 24.1,51.9 +NA,NA,a-curv-i5,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 233, 23.3, 613, 44.7, 55.0, 0.7, 14.5,37.9 +NA,NA,a-curv-i5,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 149, 22.4, 360, 48.9, 51.1, 11.4, 19.2,47.8 +NA,NA,a-curv-i5,2021-22,Attleboro - Wamsutta Middle School,00160320, 209, 22.2, 586, 48.5, 51.4, 2.9, 15.4,39.1 +NA,NA,a-curv-i5,2021-22,Auburn - Auburn Middle,00170305, 414, 18.7, 651, 50.5, 49.5, 2.8, 12.0,28.3 +NA,NA,a-curv-i5,2021-22,Auburn - Auburn Senior High,00170505, 622, 16.3, 848, 49.4, 50.2, 1.7, 11.1,29.5 +NA,NA,a-curv-i5,2021-22,Auburn - Bryn Mawr,00170010, 104, 20.2, 263, 47.9, 52.1, 3.8, 12.6,36.9 +NA,NA,a-curv-i5,2021-22,Auburn - Pakachoag School,00170025, 112, 18.4, 257, 52.9, 47.1, 1.6, 12.1,30.7 +NA,NA,a-curv-i5,2021-22,Auburn - Swanson Road Intermediate School,00170030, 232, 19.9, 579, 47.7, 52.3, 3.1, 13.8,29.7 +6.9888,5,a-curv-i5,2021-22,Avon - Avon Middle High School,00180510, 250, 12.3, 316, 46.5, 53.5, 4.4, 21.8,49.4,316 +NA,NA,a-curv-i5,2021-22,Avon - Ralph D Butler,00180010, 110, 19.4, 396, 49.5, 50.5, 15.4, 23.2,44.7 +6.778423236514523,5,a-curv-i5,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 241, 15.1, 372, 47.6, 51.9, 2.7, 17.5,30.9,368 +NA,NA,a-curv-i5,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 208, 20.5, 387, 46.5, 53.5, 2.1, 17.3,31.5 +NA,NA,a-curv-i5,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 186, 17.9, 323, 46.1, 53.9, 1.2, 22.3,33.1 +NA,NA,a-curv-i5,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 242, 19.1, 535, 48.6, 51.4, 7.7, 19.8,37.6 +NA,NA,a-curv-i5,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 122, 18.3, 284, 49.7, 50.0, 40.5, 6.3,63.7 +NA,NA,a-curv-i5,2021-22,Barnstable - Barnstable High,00200505, 816, 13.8," 1,671", 49.6, 50.3, 13.4, 15.9,50.5 +NA,NA,a-curv-i5,2021-22,Barnstable - Barnstable Intermediate School,00200315, 359, 18.5, 725, 45.9, 53.7, 16.4, 19.0,57.1 +NA,NA,a-curv-i5,2021-22,Barnstable - Barnstable United Elementary School,00200050, 423, 17.7, 744, 48.3, 51.5, 17.6, 17.5,56.7 +NA,NA,a-curv-i5,2021-22,Barnstable - Centerville Elementary,00200010, 91, 22.7, 249, 47.0, 53.0, 18.1, 20.1,49.4 +NA,NA,a-curv-i5,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 22, 7.6, 167, 35.9, 64.1, 23.4, 55.7,56.9 +NA,NA,a-curv-i5,2021-22,Barnstable - Hyannis West Elementary,00200025, 117, 20.0, 326, 50.0, 50.0, 46.3, 16.6,78.5 +NA,NA,a-curv-i5,2021-22,Barnstable - West Barnstable Elementary,00200005, 88, 19.5, 247, 42.5, 57.5, 21.9, 13.0,53.4 +NA,NA,a-curv-i5,2021-22,Barnstable - West Villages Elementary School,00200045, 134, 18.9, 381, 48.6, 51.4, 11.0, 11.6,41.2 +NA,NA,a-curv-i5,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 260, 14.7, 432, 44.9, 55.1, 6.7, 20.4,84.3 +NA,NA,a-curv-i5,2021-22,Bedford - Bedford High,00230505, 539, 12.9, 843, 47.6, 52.2, 0.7, 13.9,12.7 +NA,NA,a-curv-i5,2021-22,Bedford - John Glenn Middle,00230305, 409, 15.6, 616, 49.4, 50.3, 2.3, 17.7,13.5 +NA,NA,a-curv-i5,2021-22,Bedford - Lt Elezer Davis,00230010, 95, 17.6, 567, 44.3, 55.7, 9.4, 23.6,12.5 +NA,NA,a-curv-i5,2021-22,Bedford - Lt Job Lane School,00230012, 177, 17.8, 602, 49.5, 50.5, 5.2, 18.3,13 +NA,NA,a-curv-i5,2021-22,Belchertown - Belchertown High,00240505, 420, 14.1, 661, 50.4, 48.6, 0.5, 15.6,21.5 +NA,NA,a-curv-i5,2021-22,Belchertown - Chestnut Hill Community School,00240006, 198, 19.9, 480, 49.6, 50.4, 1.0, 22.3,26.9 +NA,NA,a-curv-i5,2021-22,Belchertown - Cold Spring,00240005, 36, 19.1, 220, 50.5, 49.6, 2.7, 25.9,27.7 +NA,NA,a-curv-i5,2021-22,Belchertown - Jabish Middle School,00240025, 282, 14.9, 342, 47.4, 52.3, 1.2, 25.4,27.8 +NA,NA,a-curv-i5,2021-22,Belchertown - Swift River Elementary,00240018, 234, 17.2, 447, 47.9, 52.1, 4.9, 24.6,29.5 +NA,NA,a-curv-i5,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 9, 10.7, 96, 54.2, 45.8, 0.0, 33.3,34.4 +6.313881019830029,5,a-curv-i5,2021-22,Bellingham - Bellingham High School,00250505, 353, 17.9, 753, 51.4, 48.6, 2.7, 18.2,29.6,744 +NA,NA,a-curv-i5,2021-22,Bellingham - Bellingham Memorial School,00250315, 348, 19.1, 603, 46.6, 53.2, 2.7, 20.7,34.7 +NA,NA,a-curv-i5,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 72, 16.5, 297, 51.9, 48.2, 6.7, 16.8,31.7 +NA,NA,a-curv-i5,2021-22,Bellingham - Keough Memorial Academy,00250510, 38, 5.3, 30, 56.7, 43.3, 0.0, 100.0,56.7 +NA,NA,a-curv-i5,2021-22,Bellingham - Stall Brook,00250025, 56, 17.0, 238, 49.6, 50.4, 9.7, 16.8,36.1 +NA,NA,a-curv-i5,2021-22,Belmont - Belmont High,00260505, 470, 20.7," 1,347", 50.7, 49.3, 2.4, 9.9,12.8 +NA,NA,a-curv-i5,2021-22,Belmont - Daniel Butler,00260015, 128, 21.5, 332, 50.3, 49.4, 20.8, 11.8,13.3 +NA,NA,a-curv-i5,2021-22,Belmont - Mary Lee Burbank,00260010, 150, 19.7, 362, 51.7, 48.3, 14.4, 10.8,9.7 +NA,NA,a-curv-i5,2021-22,Belmont - Roger E Wellington,00260035, 211, 19.7, 570, 48.6, 51.2, 19.7, 19.1,17.4 +NA,NA,a-curv-i5,2021-22,Belmont - Winn Brook,00260005, 165, 21.3, 429, 53.9, 46.2, 15.9, 9.6,5.6 +NA,NA,a-curv-i5,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 694, 20.0," 1,384", 49.4, 50.5, 4.3, 14.1,12.2 +NA,NA,a-curv-i5,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 64, 21.8, 329, 49.9, 49.9, 6.1, 14.6,68.7 +NA,NA,a-curv-i5,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 270, 23.6, 819, 49.5, 50.6, 7.9, 16.5,18.9 +NA,NA,a-curv-i5,2021-22,Berkley - Berkley Community School,00270010, 168, 18.4, 471, 48.8, 51.2, 1.5, 18.3,29.7 +NA,NA,a-curv-i5,2021-22,Berkley - Berkley Middle School,00270305, 195, 18.5, 401, 49.4, 50.6, 0.8, 18.0,26.4 +NA,NA,a-curv-i5,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 186, 18.2, 373, 42.9, 54.2, 0.8, 20.9,56.3 +NA,NA,a-curv-i5,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 378, 10.9, 508, 49.6, 50.2, 6.5, 12.8,37 +NA,NA,a-curv-i5,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 227, 13.7, 336, 53.9, 46.1, 6.3, 19.1,50.9 +NA,NA,a-curv-i5,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 232, 17.6, 357, 45.1, 54.3, 5.0, 18.8,45.9 +NA,NA,a-curv-i5,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 140, 15.8, 219, 48.4, 51.6, 3.2, 19.2,22.4 +NA,NA,a-curv-i5,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 182, 17.3, 307, 46.3, 53.8, 2.0, 21.2,13.7 +NA,NA,a-curv-i5,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 318, 15.5, 533, 50.3, 48.8, 2.8, 14.1,18.2 +NA,NA,a-curv-i5,2021-22,Beverly - Ayers/Ryal Side School,00300055, 83, 18.6, 389, 50.1, 49.9, 5.1, 12.9,27.5 +NA,NA,a-curv-i5,2021-22,Beverly - Beverly High,00300505, 554, 20.3," 1,300", 47.6, 52.1, 3.5, 17.1,33.9 +NA,NA,a-curv-i5,2021-22,Beverly - Beverly Middle School,00300305, 548, 22.1," 1,442", 49.2, 50.7, 2.7, 18.1,36 +NA,NA,a-curv-i5,2021-22,Beverly - Centerville Elementary,00300010, 88, 13.6, 299, 49.2, 50.8, 5.7, 25.1,42.8 +NA,NA,a-curv-i5,2021-22,Beverly - Cove Elementary,00300015, 116, 14.5, 419, 50.1, 49.9, 7.2, 23.2,37 +NA,NA,a-curv-i5,2021-22,Beverly - Hannah Elementary,00300033, 77, 17.6, 338, 46.8, 53.3, 4.4, 18.3,28.4 +NA,NA,a-curv-i5,2021-22,Beverly - McKeown School,00300002, 13, 11.6, 151, 35.8, 64.2, 4.0, 47.7,37.1 +NA,NA,a-curv-i5,2021-22,Beverly - North Beverly Elementary,00300040, 92, 15.5, 351, 42.5, 57.6, 7.1, 22.2,34.5 +6.0532577903682725,5,a-curv-i5,2021-22,Billerica - Billerica Memorial High School,00310505, 706, 19.2," 1,771", 48.8, 51.1, 2.0, 19.8,27,1718 +NA,NA,a-curv-i5,2021-22,Billerica - Frederick J Dutile,00310007, 123, 18.6, 260, 53.9, 46.2, 0.4, 25.4,21.9 +NA,NA,a-curv-i5,2021-22,Billerica - Hajjar Elementary,00310026, 167, 20.3, 384, 55.0, 44.8, 18.0, 16.9,35.9 +NA,NA,a-curv-i5,2021-22,Billerica - John F Kennedy,00310012, 149, 18.9, 320, 54.7, 45.3, 0.0, 22.8,21.3 +NA,NA,a-curv-i5,2021-22,Billerica - Locke Middle,00310310, 345, 15.3, 535, 49.2, 50.5, 0.0, 22.2,21.7 +NA,NA,a-curv-i5,2021-22,Billerica - Marshall Middle School,00310305, 330, 18.4, 610, 47.4, 52.3, 2.5, 25.9,32.1 +NA,NA,a-curv-i5,2021-22,Billerica - Parker,00310015, 184, 19.5, 410, 52.0, 48.1, 1.2, 26.6,31 +NA,NA,a-curv-i5,2021-22,Billerica - Thomas Ditson,00310005, 226, 20.5, 526, 47.5, 52.5, 1.3, 21.5,28 +NA,NA,a-curv-i5,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 800, 17.2," 1,223", 49.3, 50.5, 0.5, 10.6,15.5 +NA,NA,a-curv-i5,2021-22,Blackstone-Millville - A F Maloney,06220015, 153, 20.6, 341, 48.7, 51.3, 1.2, 18.8,39.6 +NA,NA,a-curv-i5,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 259, 12.7, 417, 49.4, 49.9, 1.2, 14.2,32.4 +NA,NA,a-curv-i5,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 208, 19.6, 406, 44.3, 55.2, 0.7, 19.0,36.7 +NA,NA,a-curv-i5,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 45, 20.4, 102, 52.0, 48.0, 5.9, 12.8,46.1 +NA,NA,a-curv-i5,2021-22,Blackstone-Millville - Millville Elementary,06220010, 112, 16.7, 293, 50.9, 49.2, 4.8, 21.5,35.2 +NA,NA,a-curv-i5,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 433, 15.5, 907, 47.5, 52.5, 1.5, 25.0,39.4 +NA,NA,a-curv-i5,2021-22,Boston - Adams Elementary School,00350302, 182, 11.8, 253, 51.8, 48.2, 56.5, 24.5,81.4 +NA,NA,a-curv-i5,2021-22,Boston - Alighieri Dante Montessori School,00350066, 108, 8.2, 107, 52.3, 47.7, 32.7, 11.2,40.2 +NA,NA,a-curv-i5,2021-22,Boston - Another Course To College,00350541, 140, 15.2, 260, 41.2, 58.5, 14.2, 38.1,76.2 +NA,NA,a-curv-i5,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 89, 12.6, 151, 47.0, 53.0, 44.4, 20.5,53 +NA,NA,a-curv-i5,2021-22,Boston - Bates Elementary School,00350278, 126, 16.6, 233, 44.2, 55.8, 25.8, 31.8,50.6 +NA,NA,a-curv-i5,2021-22,Boston - Beethoven Elementary School,00350021, 141, 16.1, 273, 43.6, 56.4, 33.3, 17.2,57.1 +NA,NA,a-curv-i5,2021-22,Boston - Blackstone Elementary School,00350390, 404, 13.1, 488, 46.9, 53.1, 48.8, 31.2,89.1 +NA,NA,a-curv-i5,2021-22,Boston - Boston Adult Tech Academy,00350548, 81, 10.4, 175, 46.3, 53.7, 67.4, 20.6,82.9 +NA,NA,a-curv-i5,2021-22,Boston - Boston Arts Academy,00350546, 317, 14.9, 481, 68.2, 31.0, 4.8, 20.6,65.5 +7.07764705882353,5,a-curv-i5,2021-22,Boston - Boston Collaborative High School,00350755, 85, 6.8, 176, 51.7, 47.7, 26.7, 25.0,82.4,98 +NA,NA,a-curv-i5,2021-22,Boston - Boston Community Leadership Academy,00350558, 341, 15.2, 700, 50.0, 49.6, 33.1, 24.1,83.7 +6.619672131147541,5,a-curv-i5,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 244, 14.4, 528, 38.5, 61.6, 91.1, 5.9,86,421 +NA,NA,a-curv-i5,2021-22,Boston - Boston Latin Academy,00350545, 583, 23.2," 1,675", 57.3, 42.5, 0.2, 4.2,45.1 +NA,NA,a-curv-i5,2021-22,Boston - Boston Latin School,00350560, 812, 23.2," 2,377", 53.1, 46.5, 0.2, 3.3,25.3 +NA,NA,a-curv-i5,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 128, 16.2, 318, 49.1, 50.9, 15.7, 23.3,52.2 +NA,NA,a-curv-i5,2021-22,Boston - Bradley Elementary School,00350215, 144, 18.4, 296, 48.3, 51.7, 27.0, 22.6,66.6 +6.952727272727273,5,a-curv-i5,2021-22,Boston - Brighton High School,00350505, 275, 12.6, 514, 45.1, 54.9, 51.8, 24.5,81.1,360 +6.5729729729729724,5,a-curv-i5,2021-22,Boston - Burke High School,00350525, 185, 12.1, 365, 40.8, 59.2, 25.2, 29.3,82.7,330 +NA,NA,a-curv-i5,2021-22,Boston - Carter School,00350036, 2, 27.0, 27, 48.2, 51.9, 33.3, 100.0,88.9 +NA,NA,a-curv-i5,2021-22,Boston - Channing Elementary School,00350360, 146, 13.3, 202, 44.6, 55.5, 30.7, 27.2,74.3 +6.74895238095238,5,a-curv-i5,2021-22,Boston - Charlestown High School,00350515, 525, 13.8, 892, 44.5, 55.5, 36.1, 30.9,82.7,821 +NA,NA,a-curv-i5,2021-22,Boston - Chittick Elementary School,00350154, 256, 9.4, 220, 45.0, 55.0, 28.6, 38.2,85.9 +NA,NA,a-curv-i5,2021-22,Boston - Clap Elementary School,00350298, 61, 14.7, 120, 45.8, 54.2, 19.2, 36.7,86.7 +NA,NA,a-curv-i5,2021-22,Boston - Community Academy,00350518, 44, 9.9, 68, 39.7, 60.3, 14.7, 44.1,91.2 +NA,NA,a-curv-i5,2021-22,Boston - Community Academy of Science and Health,00350581, 198, 12.9, 342, 48.0, 52.1, 20.5, 40.1,81.9 +NA,NA,a-curv-i5,2021-22,Boston - Condon K-8 School,00350146, 430, 15.2, 718, 48.9, 51.1, 38.0, 29.5,85.1 +NA,NA,a-curv-i5,2021-22,Boston - Conley Elementary School,00350122, 119, 12.4, 190, 46.8, 53.2, 25.3, 44.2,62.1 +NA,NA,a-curv-i5,2021-22,Boston - Curley K-8 School,00350020, 625, 12.4, 952, 46.2, 53.8, 24.8, 30.9,57.6 +NA,NA,a-curv-i5,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 235, 19.2, 609, 50.4, 49.3, 31.2, 19.4,83.1 +NA,NA,a-curv-i5,2021-22,Boston - Dever Elementary School,00350268, 222, 16.3, 374, 45.5, 54.6, 46.8, 14.4,90.6 +NA,NA,a-curv-i5,2021-22,Boston - East Boston Early Education Center,00350009, 92, 15.8, 188, 49.5, 50.5, 49.5, 14.9,63.3 +6.0720173535791755,5,a-curv-i5,2021-22,Boston - East Boston High School,00350530, 461, 16.3," 1,217", 42.0, 57.9, 42.9, 22.6,79.7,1111 +NA,NA,a-curv-i5,2021-22,Boston - Edison K-8 School,00350375, 337, 13.1, 536, 45.9, 54.1, 53.9, 22.8,84.3 +NA,NA,a-curv-i5,2021-22,Boston - Eliot K-8 Innovation School,00350096, 435, 20.0, 809, 48.8, 51.2, 6.9, 20.3,26.2 +NA,NA,a-curv-i5,2021-22,Boston - Ellis Elementary School,00350072, 202, 14.5, 327, 52.3, 47.7, 45.9, 11.0,93 +NA,NA,a-curv-i5,2021-22,Boston - Ellison-Parks Early Education School,00350008, 94, 15.3, 185, 50.3, 49.7, 54.1, 31.4,80 +7.025522041763341,5,a-curv-i5,2021-22,Boston - English High School,00350535, 431, 15.3, 600, 47.8, 52.2, 35.3, 24.7,83.7,525 +NA,NA,a-curv-i5,2021-22,Boston - Everett Elementary School,00350088, 137, 18.6, 292, 47.6, 52.4, 19.2, 20.2,84.3 +6.52436974789916,5,a-curv-i5,2021-22,Boston - Excel High School,00350522, 238, 13.4, 445, 42.5, 57.1, 22.0, 27.6,84.3,439 +6.440609137055837,5,a-curv-i5,2021-22,Boston - Fenway High School,00350540, 197, 17.0, 380, 51.8, 48.2, 21.1, 22.9,81.3,384 +NA,NA,a-curv-i5,2021-22,Boston - Frederick Pilot Middle School,00350383, 265, 14.0, 409, 45.2, 54.8, 44.3, 29.3,90.5 +NA,NA,a-curv-i5,2021-22,Boston - Gardner Pilot Academy,00350326, 160, 18.7, 387, 48.1, 50.9, 38.5, 24.8,78 +7.315463917525773,5,a-curv-i5,2021-22,Boston - Greater Egleston High School,00350543, 97, 10.7, 124, 54.0, 46.0, 15.3, 24.2,92.7,83 +NA,NA,a-curv-i5,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 233, 14.7, 392, 53.3, 46.7, 54.1, 21.4,88.8 +NA,NA,a-curv-i5,2021-22,Boston - Grew Elementary School,00350135, 110, 15.7, 206, 39.3, 60.7, 15.1, 10.2,74.3 +NA,NA,a-curv-i5,2021-22,Boston - Guild Elementary School,00350062, 156, 14.4, 260, 49.6, 50.4, 66.5, 30.8,79.2 +NA,NA,a-curv-i5,2021-22,Boston - Hale Elementary School,00350243, 86, 22.1, 185, 51.4, 48.7, 10.8, 16.2,64.9 +NA,NA,a-curv-i5,2021-22,Boston - Haley Pilot School,00350077, 215, 18.3, 360, 47.2, 52.8, 19.2, 33.1,61.9 +NA,NA,a-curv-i5,2021-22,Boston - Harvard-Kent Elementary School,00350200, 217, 13.2, 366, 44.0, 56.0, 28.1, 27.9,71.3 +NA,NA,a-curv-i5,2021-22,Boston - Haynes Early Education Center,00350010, 129, 16.6, 204, 47.1, 52.9, 53.9, 22.6,80.4 +NA,NA,a-curv-i5,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 72, 18.6, 211, 46.9, 53.1, 22.8, 28.4,52.6 +NA,NA,a-curv-i5,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 337, 19.7, 753, 46.4, 53.4, 13.3, 38.8,73.6 +NA,NA,a-curv-i5,2021-22,Boston - Hennigan K-8 School,00350153, 471, 13.9, 548, 49.8, 50.2, 47.3, 25.2,90.2 +NA,NA,a-curv-i5,2021-22,Boston - Hernandez K-8 School,00350691, 212, 21.6, 427, 52.7, 47.3, 48.5, 12.4,68.4 +NA,NA,a-curv-i5,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 104, 10.1, 125, 47.2, 52.8, 47.2, 41.6,93.6 +NA,NA,a-curv-i5,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 135, 12.5, 201, 50.3, 49.8, 23.9, 42.3,92.5 +NA,NA,a-curv-i5,2021-22,Boston - Holmes Elementary School,00350138, 152, 14.8, 263, 40.3, 59.7, 22.8, 34.2,90.5 +NA,NA,a-curv-i5,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 156, 5.0, 78, 30.8, 69.2, 69.2, 97.4,80.8 +NA,NA,a-curv-i5,2021-22,Boston - Hurley K-8 School,00350182, 157, 20.0, 353, 53.0, 46.7, 38.0, 20.1,65.4 +NA,NA,a-curv-i5,2021-22,Boston - Irving Middle School,00350445, 118, 10.2, 132, 45.5, 54.6, 28.0, 51.5,89.4 +NA,NA,a-curv-i5,2021-22,Boston - Jackson-Mann K-8 School,00350013, 247, 10.8, 363, 42.2, 57.9, 41.1, 27.3,85.1 +NA,NA,a-curv-i5,2021-22,Boston - Kennedy John F Elementary School,00350166, 176, 16.8, 353, 47.9, 52.1, 34.3, 16.2,75.4 +NA,NA,a-curv-i5,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 143, 17.1, 271, 45.8, 54.2, 59.4, 19.2,83.4 +NA,NA,a-curv-i5,2021-22,Boston - Kenny Elementary School,00350328, 175, 17.4, 348, 50.0, 50.0, 17.8, 28.7,62.4 +NA,NA,a-curv-i5,2021-22,Boston - Kilmer K-8 School,00350190, 234, 15.5, 417, 44.4, 55.4, 13.7, 32.9,44.8 +NA,NA,a-curv-i5,2021-22,Boston - King K-8 School,00350376, 417, 14.8, 571, 47.6, 52.4, 32.2, 32.8,90.5 +NA,NA,a-curv-i5,2021-22,Boston - Lee Academy,00350001, 82, 15.1, 182, 45.6, 54.4, 30.2, 23.6,84.1 +NA,NA,a-curv-i5,2021-22,Boston - Lee K-8 School,00350183, 491, 11.8, 578, 41.7, 58.3, 23.5, 46.0,83.4 +NA,NA,a-curv-i5,2021-22,Boston - Lyndon K-8 School,00350262, 362, 17.0, 659, 47.7, 52.4, 8.5, 18.4,31.9 +6.361904761904762,5,a-curv-i5,2021-22,Boston - Lyon High School,00350655, 63, 13.8, 131, 34.4, 65.7, 8.4, 43.5,71.8,129 +NA,NA,a-curv-i5,2021-22,Boston - Lyon K-8 School,00350004, 93, 13.4, 137, 48.9, 51.1, 13.1, 32.9,65 +6.029723991507431,5,a-curv-i5,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 471, 16.4," 1,098", 39.5, 60.4, 32.1, 38.5,84.6,1160 +NA,NA,a-curv-i5,2021-22,Boston - Manning Elementary School,00350184, 78, 19.5, 161, 49.7, 50.3, 4.4, 28.0,28 +NA,NA,a-curv-i5,2021-22,Boston - Margarita Muniz Academy,00350549, 118, 18.3, 313, 52.1, 47.9, 46.0, 13.4,86.6 +NA,NA,a-curv-i5,2021-22,Boston - Mario Umana Academy,00350656, 429, 18.1, 710, 47.2, 52.5, 58.9, 15.2,84.2 +NA,NA,a-curv-i5,2021-22,Boston - Mason Elementary School,00350304, 122, 13.7, 203, 42.9, 56.7, 27.1, 33.5,84.2 +NA,NA,a-curv-i5,2021-22,Boston - Mather Elementary School,00350227, 363, 15.5, 485, 50.3, 49.7, 39.4, 16.3,80.6 +NA,NA,a-curv-i5,2021-22,Boston - Mattahunt Elementary School,00350016, 427, 11.2, 448, 39.5, 60.5, 34.4, 34.8,79.5 +NA,NA,a-curv-i5,2021-22,Boston - McKay K-8 School,00350080, 320, 19.5, 692, 51.2, 48.7, 41.9, 21.8,80.6 +NA,NA,a-curv-i5,2021-22,Boston - McKinley Schools,00350363, 390, 6.2, 239, 21.8, 77.8, 22.2, 98.7,90.4 +NA,NA,a-curv-i5,2021-22,Boston - Mendell Elementary School,00350100, 119, 18.7, 276, 46.7, 53.3, 18.5, 25.4,59.4 +NA,NA,a-curv-i5,2021-22,Boston - Mildred Avenue K-8 School,00350378, 284, 16.8, 672, 45.8, 54.2, 25.9, 19.8,86.3 +NA,NA,a-curv-i5,2021-22,Boston - Mission Hill K-8 School,00350382, 229, 8.5, 210, 43.3, 56.7, 12.9, 28.6,51 +NA,NA,a-curv-i5,2021-22,Boston - Mozart Elementary School,00350237, 105, 13.3, 160, 43.8, 56.3, 18.1, 27.5,36.3 +NA,NA,a-curv-i5,2021-22,Boston - Murphy K-8 School,00350240, 429, 19.6, 887, 47.6, 52.2, 28.6, 19.6,68 +6.86875,5,a-curv-i5,2021-22,Boston - New Mission High School,00350542, 384, 16.3, 538, 52.0, 47.8, 14.7, 17.7,71.9,543 +NA,NA,a-curv-i5,2021-22,Boston - O'Bryant School of Math & Science,00350575, 544, 21.3," 1,528", 53.2, 46.5, 0.9, 5.6,60.7 +NA,NA,a-curv-i5,2021-22,Boston - O'Donnell Elementary School,00350141, 122, 19.3, 295, 50.2, 49.8, 64.1, 12.5,84.8 +NA,NA,a-curv-i5,2021-22,Boston - Ohrenberger School,00350258, 337, 16.7, 506, 51.2, 48.8, 27.1, 24.9,67 +NA,NA,a-curv-i5,2021-22,Boston - Orchard Gardens K-8 School,00350257, 462, 16.8, 791, 48.3, 51.7, 51.7, 21.2,86.5 +NA,NA,a-curv-i5,2021-22,Boston - Otis Elementary School,00350156, 218, 18.7, 400, 50.8, 49.3, 49.5, 12.3,78.3 +NA,NA,a-curv-i5,2021-22,Boston - Perkins Elementary School,00350231, 100, 14.2, 171, 49.7, 50.3, 27.5, 28.7,92.4 +NA,NA,a-curv-i5,2021-22,Boston - Perry K-8 School,00350255, 128, 13.1, 190, 46.8, 53.2, 13.2, 30.5,46.3 +NA,NA,a-curv-i5,2021-22,Boston - Philbrick Elementary School,00350172, 63, 14.0, 103, 53.4, 46.6, 17.5, 18.5,68.9 +NA,NA,a-curv-i5,2021-22,Boston - Quincy Elementary School,00350286, 626, 16.5, 741, 51.3, 48.7, 35.5, 16.2,63.3 +NA,NA,a-curv-i5,2021-22,Boston - Quincy Upper School,00350565, 239, 19.8, 564, 47.3, 52.7, 14.9, 19.2,73.6 +NA,NA,a-curv-i5,2021-22,Boston - Roosevelt K-8 School,00350116, 161, 19.0, 404, 45.5, 54.5, 15.6, 28.2,68.1 +NA,NA,a-curv-i5,2021-22,Boston - Russell Elementary School,00350366, 176, 19.5, 391, 49.1, 50.9, 46.0, 11.8,80.1 +NA,NA,a-curv-i5,2021-22,Boston - Shaw Elementary School,00350014, 85, 13.5, 158, 46.2, 53.8, 26.0, 16.5,87.3 +6.275555555555556,5,a-curv-i5,2021-22,Boston - Snowden International High School,00350690, 225, 17.4, 479, 52.0, 48.0, 17.1, 22.8,84.3,485 +NA,NA,a-curv-i5,2021-22,Boston - Sumner Elementary School,00350052, 300, 16.2, 480, 44.6, 55.4, 40.0, 20.0,68.1 +NA,NA,a-curv-i5,2021-22,Boston - Taylor Elementary School,00350054, 313, 10.5, 339, 48.7, 51.3, 43.4, 17.7,87.9 +NA,NA,a-curv-i5,2021-22,Boston - TechBoston Academy,00350657, 438, 12.7, 916, 42.7, 57.2, 22.3, 24.6,83.6 +NA,NA,a-curv-i5,2021-22,Boston - Timilty Middle School,00350485, 200, 13.0, 194, 42.8, 56.7, 30.4, 30.9,89.7 +NA,NA,a-curv-i5,2021-22,Boston - Tobin K-8 School,00350229, 239, 17.1, 402, 49.8, 50.3, 29.9, 15.2,87.8 +NA,NA,a-curv-i5,2021-22,Boston - Trotter K-8 School,00350370, 220, 16.2, 378, 48.4, 51.6, 14.0, 21.2,89.2 +NA,NA,a-curv-i5,2021-22,Boston - Tynan Elementary School,00350181, 218, 9.1, 210, 44.3, 55.7, 28.6, 49.1,82.9 +NA,NA,a-curv-i5,2021-22,Boston - UP Academy Holland,00350167, 262, 20.2, 667, 50.7, 49.3, 30.9, 15.6,91 +NA,NA,a-curv-i5,2021-22,Boston - Warren-Prescott K-8 School,00350346, 274, 17.5, 518, 46.7, 53.3, 10.2, 23.4,46.7 +NA,NA,a-curv-i5,2021-22,Boston - West Zone Early Learning Center,00350006, 60, 12.3, 92, 46.7, 53.3, 51.1, 22.8,72.8 +NA,NA,a-curv-i5,2021-22,Boston - Winship Elementary School,00350374, 132, 18.7, 274, 54.4, 45.6, 28.8, 15.0,58 +NA,NA,a-curv-i5,2021-22,Boston - Winthrop Elementary School,00350180, 108, 16.7, 216, 57.9, 42.1, 30.6, 12.0,88.9 +NA,NA,a-curv-i5,2021-22,Boston - Young Achievers K-8 School,00350380, 328, 14.9, 575, 43.1, 56.9, 30.8, 24.7,88.9 +NA,NA,a-curv-i5,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 297, 19.8, 715, 49.8, 50.2, 4.3, 19.6,45.9 +NA,NA,a-curv-i5,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 491, 12.7, 417, 53.0, 46.8, 10.8, 38.4,78.2 +NA,NA,a-curv-i5,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 260, 14.6, 457, 46.4, 53.6, 14.7, 33.7,79.2 +NA,NA,a-curv-i5,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 228, 18.2, 673, 49.9, 50.1, 18.9, 21.1,70.1 +NA,NA,a-curv-i5,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 330, 20.9, 955, 53.1, 46.9, 13.3, 11.3,71 +6.435820895522388,5,a-curv-i5,2021-22,Bourne - Bourne High School,00360505, 201, 14.0, 381, 51.4, 48.3, 1.1, 16.0,33.3,393 +NA,NA,a-curv-i5,2021-22,Bourne - Bourne Intermediate School,00360030, 217, 17.5, 367, 52.9, 47.1, 1.4, 22.9,42.2 +NA,NA,a-curv-i5,2021-22,Bourne - Bourne Middle School,00360325, 313, 16.7, 456, 50.4, 49.6, 0.4, 19.1,38.8 +NA,NA,a-curv-i5,2021-22,Bourne - Bournedale Elementary School,00360005, 236, 16.2, 397, 45.8, 54.2, 2.3, 23.7,38 +NA,NA,a-curv-i5,2021-22,Boxford - Harry Lee Cole,00380005, 137, 14.2, 352, 47.4, 52.6, 2.0, 21.0,7.1 +NA,NA,a-curv-i5,2021-22,Boxford - Spofford Pond,00380013, 184, 18.1, 398, 48.5, 51.5, 0.8, 24.1,10.1 +NA,NA,a-curv-i5,2021-22,Braintree - Archie T Morrison,00400033, 248, 13.3, 305, 50.2, 49.8, 12.1, 20.7,37.7 +NA,NA,a-curv-i5,2021-22,Braintree - Braintree High,00400505, 847, 16.5," 1,761", 49.9, 50.0, 4.7, 24.1,28.4 +NA,NA,a-curv-i5,2021-22,Braintree - Donald Ross,00400050, 148, 14.1, 198, 53.5, 46.5, 19.7, 20.2,40.9 +NA,NA,a-curv-i5,2021-22,Braintree - East Middle School,00400305, 515, 17.8," 1,029", 50.1, 50.0, 4.9, 22.0,33.9 +NA,NA,a-curv-i5,2021-22,Braintree - Highlands,00400015, 217, 19.2, 402, 50.0, 50.0, 7.7, 18.2,16.9 +NA,NA,a-curv-i5,2021-22,Braintree - Hollis,00400005, 252, 13.6, 314, 42.4, 57.3, 14.3, 29.0,34.1 +NA,NA,a-curv-i5,2021-22,Braintree - Liberty,00400025, 209, 17.9, 356, 46.1, 53.9, 10.1, 16.3,20.8 +NA,NA,a-curv-i5,2021-22,Braintree - Mary E Flaherty School,00400020, 145, 18.0, 274, 48.5, 51.5, 11.7, 25.2,26.6 +NA,NA,a-curv-i5,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 105, 18.7, 253, 45.1, 54.9, 20.6, 13.8,33.6 +NA,NA,a-curv-i5,2021-22,Braintree - South Middle School,00400310, 313, 15.8, 545, 50.3, 49.5, 1.7, 19.8,20.7 +NA,NA,a-curv-i5,2021-22,Brewster - Eddy Elementary,00410010, 139, 17.1, 213, 51.6, 48.4, 3.3, 26.3,41.8 +NA,NA,a-curv-i5,2021-22,Brewster - Stony Brook Elementary,00410005, 136, 16.2, 229, 48.9, 51.1, 6.6, 21.4,38 +NA,NA,a-curv-i5,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 113, 17.0, 334, 53.3, 46.7, 27.5, 18.9,75.5 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 179, 22.8, 512, 51.4, 48.6, 2.7, 16.4,30.7 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 540, 16.0," 1,381", 47.9, 52.1, 1.2, 13.9,26.5 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 165, 22.4, 519, 48.8, 51.3, 3.3, 18.7,28.5 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 108, 21.6, 331, 47.1, 52.9, 4.2, 14.5,29.3 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 384, 20.0," 1,246", 47.4, 52.7, 3.9, 23.7,29.8 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 229, 25.2, 725, 50.1, 49.9, 1.2, 16.8,27.7 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 13, 3.9, 13, 38.5, 61.5, 0.0, 100.0,76.9 +NA,NA,a-curv-i5,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 265, 21.6, 751, 46.6, 53.4, 2.8, 19.6,28.4 +NA,NA,a-curv-i5,2021-22,Brimfield - Brimfield Elementary,00430005, 81, 17.4, 281, 51.3, 48.8, 0.7, 15.0,32.7 +NA,NA,a-curv-i5,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 265, 18.7, 503, 72.0, 28.0, 0.0, 14.5,32.8 +NA,NA,a-curv-i5,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 972, 17.3," 1,326", 40.5, 59.4, 0.8, 16.7,35.8 +NA,NA,a-curv-i5,2021-22,Brockton - Ashfield Middle School,00440421, 255, 17.7, 502, 43.8, 56.2, 21.9, 20.7,67.1 +NA,NA,a-curv-i5,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 23, 9.4, 214, 41.1, 58.9, 7.5, 64.5,73.4 +7.2916030534351135,5,a-curv-i5,2021-22,Brockton - Brockton Champion High School,00440515, 131, 10.0, 214, 40.7, 59.4, 17.3, 37.4,82.7,116 +NA,NA,a-curv-i5,2021-22,Brockton - Brockton High,00440505," 1,895", 16.1," 3,829", 46.2, 53.7, 26.9, 13.9,71.1 +NA,NA,a-curv-i5,2021-22,Brockton - Brockton Virtual Learning Academy,00440705, 190, 13.2, 336, 49.1, 50.9, 14.3, 23.2,79.8 +NA,NA,a-curv-i5,2021-22,Brockton - Brookfield,00440010, 225, 17.9, 473, 49.9, 50.1, 37.6, 19.7,72.5 +NA,NA,a-curv-i5,2021-22,Brockton - Downey,00440110, 263, 16.9, 574, 42.2, 57.8, 17.3, 28.6,81.4 +NA,NA,a-curv-i5,2021-22,Brockton - Dr W Arnone Community School,00440001, 342, 15.8, 695, 46.2, 53.8, 20.0, 29.4,82 +NA,NA,a-curv-i5,2021-22,Brockton - East Middle School,00440405, 344, 19.3, 533, 45.0, 55.0, 37.0, 20.3,79.6 +NA,NA,a-curv-i5,2021-22,Brockton - Edgar B Davis,00440023, 433, 21.0, 935, 52.4, 47.6, 25.8, 9.3,80.1 +NA,NA,a-curv-i5,2021-22,Brockton - Edison Academy,00440520, 111, 13.6, 374, 37.2, 62.8, 53.7, 11.2,76.2 +NA,NA,a-curv-i5,2021-22,Brockton - Frederick Douglass Academy,00440080, 44, 8.9, 118, 39.8, 60.2, 23.7, 28.0,86.4 +NA,NA,a-curv-i5,2021-22,Brockton - Gilmore Elementary School,00440055, 192, 26.3, 447, 51.2, 48.8, 51.0, 7.4,86.4 +NA,NA,a-curv-i5,2021-22,Brockton - Hancock,00440045, 232, 16.7, 506, 52.2, 47.8, 13.0, 14.6,64 +NA,NA,a-curv-i5,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 196, 6.8, 80, 31.3, 67.5, 15.0, 92.5,90 +NA,NA,a-curv-i5,2021-22,Brockton - John F Kennedy,00440017, 223, 21.1, 566, 49.5, 50.5, 38.2, 11.3,71 +NA,NA,a-curv-i5,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 549, 18.0, 747, 49.3, 50.7, 22.5, 16.1,72.7 +NA,NA,a-curv-i5,2021-22,Brockton - Louis F Angelo Elementary,00440065, 369, 18.1, 792, 45.7, 54.3, 37.4, 19.8,79.2 +NA,NA,a-curv-i5,2021-22,Brockton - Manthala George Jr. School,00440003, 363, 19.8, 839, 50.7, 49.3, 47.8, 9.8,78.4 +NA,NA,a-curv-i5,2021-22,Brockton - Mary E. Baker School,00440002, 389, 14.8, 693, 48.6, 51.4, 30.9, 18.0,73.5 +NA,NA,a-curv-i5,2021-22,Brockton - North Middle School,00440410, 137, 18.1, 309, 50.2, 49.8, 15.2, 10.7,84.1 +NA,NA,a-curv-i5,2021-22,Brockton - Oscar F Raymond,00440078, 369, 17.2, 748, 46.5, 53.5, 40.8, 19.8,87.6 +NA,NA,a-curv-i5,2021-22,Brockton - South Middle School,00440415, 465, 15.9, 601, 44.8, 55.1, 34.4, 17.8,78.9 +NA,NA,a-curv-i5,2021-22,Brockton - West Middle School,00440420, 465, 20.3, 615, 47.0, 53.0, 9.6, 18.5,70.9 +NA,NA,a-curv-i5,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 816, 19.1," 2,148", 51.7, 48.3, 8.9, 13.5,65.8 +NA,NA,a-curv-i5,2021-22,Brookfield - Brookfield Elementary,00450005, 77, 19.1, 282, 49.7, 50.4, 1.1, 11.7,39.4 +NA,NA,a-curv-i5,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 11.2, 56, 39.3, 60.7, 8.9, 26.8,12.5 +NA,NA,a-curv-i5,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 6, 13.0, 78, 37.2, 62.8, 5.1, 29.5,15.4 +NA,NA,a-curv-i5,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 5, 12.4, 62, 46.8, 53.2, 3.2, 29.0,12.9 +NA,NA,a-curv-i5,2021-22,Brookline - Brookline High,00460505," 1,179", 14.1," 2,089", 48.6, 50.8, 2.5, 14.8,17 +NA,NA,a-curv-i5,2021-22,Brookline - Edith C Baker,00460005, 405, 17.2, 648, 47.1, 52.8, 17.0, 18.4,13.4 +NA,NA,a-curv-i5,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 501, 17.7, 846, 50.2, 49.3, 15.5, 16.2,18 +NA,NA,a-curv-i5,2021-22,Brookline - Heath,00460025, 279, 17.6, 463, 49.0, 50.8, 6.9, 16.6,10.6 +NA,NA,a-curv-i5,2021-22,Brookline - John D Runkle,00460045, 305, 16.9, 498, 46.4, 53.2, 12.5, 25.3,14.3 +NA,NA,a-curv-i5,2021-22,Brookline - Lawrence,00460030, 406, 17.0, 612, 50.5, 49.4, 23.4, 16.2,13.6 +NA,NA,a-curv-i5,2021-22,Brookline - Michael Driscoll,00460020, 293, 17.0, 468, 44.2, 55.8, 11.8, 17.5,8.8 +NA,NA,a-curv-i5,2021-22,Brookline - Pierce,00460040, 437, 17.8, 733, 51.3, 48.2, 12.0, 12.8,13.2 +NA,NA,a-curv-i5,2021-22,Brookline - The Lynch Center,00460060, 5, 13.0, 65, 50.8, 49.2, 9.2, 26.2,26.2 +NA,NA,a-curv-i5,2021-22,Brookline - William H Lincoln,00460035, 321, 15.8, 473, 51.0, 49.1, 14.8, 24.7,20.1 +NA,NA,a-curv-i5,2021-22,Burlington - Burlington High,00480505, 558, 12.7," 1,018", 47.3, 52.5, 6.4, 11.1,20.3 +NA,NA,a-curv-i5,2021-22,Burlington - Fox Hill,00480007, 213, 18.5, 498, 51.8, 48.0, 8.0, 14.3,22.9 +NA,NA,a-curv-i5,2021-22,Burlington - Francis Wyman Elementary,00480035, 255, 16.2, 524, 48.7, 51.3, 6.1, 16.8,19.3 +NA,NA,a-curv-i5,2021-22,Burlington - Marshall Simonds Middle,00480303, 498, 17.5, 777, 52.1, 47.9, 4.1, 14.0,20.5 +NA,NA,a-curv-i5,2021-22,Burlington - Memorial,00480015, 189, 17.1, 411, 50.6, 49.4, 11.4, 13.4,22.4 +NA,NA,a-curv-i5,2021-22,Burlington - Pine Glen Elementary,00480020, 165, 13.3, 278, 44.2, 55.8, 12.2, 21.6,15.1 +NA,NA,a-curv-i5,2021-22,Cambridge - Amigos School,00490006, 191, 18.6, 403, 50.4, 49.4, 4.2, 11.2,25.3 +NA,NA,a-curv-i5,2021-22,Cambridge - Cambridge Rindge and Latin,00490506," 1,053", 13.9," 1,889", 50.6, 48.9, 4.0, 19.9,43.1 +NA,NA,a-curv-i5,2021-22,Cambridge - Cambridge Street Upper School,00490305, 164, 18.2, 283, 44.2, 55.5, 1.8, 33.2,46.6 +NA,NA,a-curv-i5,2021-22,Cambridge - Cambridgeport,00490007, 147, 14.1, 265, 45.7, 52.5, 1.5, 19.3,27.9 +NA,NA,a-curv-i5,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 238, 9.9, 249, 42.2, 57.8, 7.6, 34.5,65.9 +NA,NA,a-curv-i5,2021-22,Cambridge - Graham and Parks,00490080, 181, 15.0, 370, 48.4, 51.6, 29.2, 20.8,29.7 +NA,NA,a-curv-i5,2021-22,Cambridge - Haggerty,00490020, 103, 16.8, 237, 49.4, 50.6, 8.4, 26.2,34.2 +NA,NA,a-curv-i5,2021-22,Cambridge - John M Tobin,00490065, 264, 8.3, 318, 46.2, 53.8, 2.5, 24.8,30.2 +NA,NA,a-curv-i5,2021-22,Cambridge - Kennedy-Longfellow,00490040, 173, 11.0, 224, 47.3, 52.7, 42.0, 21.4,59.4 +NA,NA,a-curv-i5,2021-22,Cambridge - King Open,00490035, 249, 11.5, 343, 49.6, 50.4, 6.1, 27.4,44 +NA,NA,a-curv-i5,2021-22,Cambridge - Maria L. Baldwin,00490005, 177, 16.2, 340, 50.6, 49.4, 3.8, 20.6,21.5 +NA,NA,a-curv-i5,2021-22,Cambridge - Martin Luther King Jr.,00490030, 184, 15.0, 310, 47.1, 52.9, 8.7, 17.1,21 +NA,NA,a-curv-i5,2021-22,Cambridge - Morse,00490045, 170, 13.0, 295, 45.8, 54.2, 6.4, 31.2,40 +NA,NA,a-curv-i5,2021-22,Cambridge - Peabody,00490050, 137, 19.8, 319, 48.9, 50.8, 7.8, 27.0,32.6 +NA,NA,a-curv-i5,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 135, 19.1, 258, 46.5, 53.5, 3.5, 24.0,53.1 +NA,NA,a-curv-i5,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 144, 20.4, 271, 55.0, 44.3, 3.0, 19.2,34.7 +NA,NA,a-curv-i5,2021-22,Cambridge - Vassal Lane Upper School,00490320, 138, 19.9, 294, 47.3, 52.4, 11.2, 25.9,40.8 +NA,NA,a-curv-i5,2021-22,Canton - Canton High,00500505, 501, 15.8, 902, 55.4, 44.1, 0.9, 10.9,21.4 +NA,NA,a-curv-i5,2021-22,Canton - Dean S Luce,00500020, 357, 20.2, 467, 47.3, 52.7, 7.3, 16.1,26.3 +NA,NA,a-curv-i5,2021-22,Canton - John F Kennedy,00500017, 384, 18.8, 471, 47.6, 52.4, 5.9, 12.3,15.9 +NA,NA,a-curv-i5,2021-22,Canton - Lt Peter M Hansen,00500012, 385, 21.2, 532, 48.3, 51.7, 4.7, 13.5,25 +NA,NA,a-curv-i5,2021-22,Canton - Rodman Early Childhood Center,00500010, 31, 12.6, 99, 38.4, 61.6, 1.0, 43.4,26.3 +NA,NA,a-curv-i5,2021-22,Canton - Wm H Galvin Middle,00500305, 477, 18.4, 794, 52.6, 47.4, 2.4, 15.9,23.9 +NA,NA,a-curv-i5,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 168, 16.3, 249, 48.2, 51.4, 0.4, 19.3,27.3 +NA,NA,a-curv-i5,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 395, 14.6, 642, 37.7, 62.2, 2.5, 24.6,48.9 +NA,NA,a-curv-i5,2021-22,Carlisle - Carlisle School,00510025, 309, 17.4, 623, 49.6, 50.4, 1.8, 14.9,4.7 +NA,NA,a-curv-i5,2021-22,Carver - Carver Elementary School,00520015, 462, 18.7, 781, 51.0, 49.0, 2.3, 17.0,34.6 +6.861660079051385,5,a-curv-i5,2021-22,Carver - Carver Middle/High School,00520405, 506, 13.7, 725, 46.6, 53.2, 1.5, 21.8,34.1,720 +NA,NA,a-curv-i5,2021-22,Central Berkshire - Becket Washington School,06350005, 49, 14.1, 112, 49.1, 50.9, 0.9, 32.1,52.7 +NA,NA,a-curv-i5,2021-22,Central Berkshire - Craneville,06350025, 178, 19.7, 432, 49.5, 50.5, 0.7, 16.7,46.8 +NA,NA,a-curv-i5,2021-22,Central Berkshire - Kittredge,06350035, 50, 20.3, 163, 54.0, 46.0, 0.6, 22.1,37.4 +NA,NA,a-curv-i5,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 182, 19.6, 337, 46.0, 54.0, 0.3, 16.9,48.7 +NA,NA,a-curv-i5,2021-22,Central Berkshire - Wahconah Regional High,06350505, 260, 14.6, 505, 47.5, 52.5, 0.8, 11.9,38 +NA,NA,a-curv-i5,2021-22,Chelmsford - Byam School,00560030, 169, 21.7, 517, 48.4, 51.6, 7.5, 17.6,21.1 +NA,NA,a-curv-i5,2021-22,Chelmsford - Center Elementary School,00560005, 169, 21.5, 506, 44.7, 55.3, 7.7, 16.4,18.6 +NA,NA,a-curv-i5,2021-22,Chelmsford - Charles D Harrington,00560025, 169, 20.1, 478, 49.4, 50.6, 8.0, 18.4,27.2 +NA,NA,a-curv-i5,2021-22,Chelmsford - Chelmsford High,00560505, 729, 15.9," 1,357", 49.7, 50.1, 1.6, 14.2,15.6 +NA,NA,a-curv-i5,2021-22,Chelmsford - Col Moses Parker School,00560305, 450, 15.6, 733, 43.5, 56.3, 3.4, 18.1,22.7 +NA,NA,a-curv-i5,2021-22,Chelmsford - Community Education Center,00560001, 112, 12.4, 173, 31.8, 68.2, 12.7, 61.3,26.6 +NA,NA,a-curv-i5,2021-22,Chelmsford - McCarthy Middle School,00560310, 403, 19.3, 844, 48.8, 51.0, 2.0, 17.7,21.1 +NA,NA,a-curv-i5,2021-22,Chelmsford - South Row,00560015, 149, 21.7, 454, 49.8, 50.2, 6.0, 14.5,16.3 +NA,NA,a-curv-i5,2021-22,Chelsea - Chelsea High,00570505, 614, 23.7," 1,637", 45.3, 54.6, 36.5, 12.3,79.4 +NA,NA,a-curv-i5,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 76, 6.2, 147, 34.7, 65.3, 61.2, 8.8,76.9 +NA,NA,a-curv-i5,2021-22,Chelsea - Chelsea Virtual Learning Academy,00570705, 54, 6.2, 74, 60.8, 39.2, 16.2, 31.1,86.5 +NA,NA,a-curv-i5,2021-22,Chelsea - Clark Avenue School,00570050, 321, 26.1, 745, 48.5, 51.5, 30.1, 17.7,82 +NA,NA,a-curv-i5,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 130, 19.9, 517, 47.8, 52.2, 56.9, 17.6,82 +NA,NA,a-curv-i5,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 222, 20.0, 497, 48.3, 51.7, 25.2, 25.2,84.7 +NA,NA,a-curv-i5,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 120, 20.6, 494, 52.6, 47.4, 61.1, 10.1,88.1 +NA,NA,a-curv-i5,2021-22,Chelsea - George F. Kelly Elementary,00570035, 141, 17.3, 429, 50.8, 49.2, 44.8, 16.1,77.6 +NA,NA,a-curv-i5,2021-22,Chelsea - Joseph A. Browne School,00570055, 246, 22.7, 599, 43.6, 56.4, 36.7, 10.2,85 +NA,NA,a-curv-i5,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 153, 19.7, 926, 48.0, 52.1, 63.9, 21.1,83.9 +NA,NA,a-curv-i5,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 135, 16.6, 447, 53.7, 46.3, 47.9, 17.7,86.4 +NA,NA,a-curv-i5,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 64, 14.8, 147, 44.2, 55.8, 0.0, 18.4,37.4 +NA,NA,a-curv-i5,2021-22,Chicopee - Barry,00610003, 79, 17.8, 356, 44.1, 55.9, 9.6, 19.4,66 +NA,NA,a-curv-i5,2021-22,Chicopee - Belcher,00610010, 47, 20.6, 226, 49.1, 50.9, 10.2, 9.7,74.8 +NA,NA,a-curv-i5,2021-22,Chicopee - Bellamy Middle,00610305, 459, 18.7, 824, 48.2, 51.7, 4.9, 19.8,69.2 +NA,NA,a-curv-i5,2021-22,Chicopee - Bowe,00610015, 102, 21.6, 440, 49.8, 50.2, 19.3, 16.1,87.7 +NA,NA,a-curv-i5,2021-22,Chicopee - Bowie,00610020, 96, 17.4, 273, 50.2, 49.8, 3.7, 15.4,53.5 +NA,NA,a-curv-i5,2021-22,Chicopee - Chicopee Academy,00610021, 87, 7.8, 102, 31.4, 68.6, 2.9, 32.4,87.3 +6.4790774299835245,5,a-curv-i5,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 607, 14.6," 1,161", 43.5, 56.2, 3.3, 12.3,54.9,1154 +NA,NA,a-curv-i5,2021-22,Chicopee - Chicopee High,00610505, 491, 16.3, 931, 51.5, 48.3, 6.7, 17.2,70.8 +NA,NA,a-curv-i5,2021-22,Chicopee - Dupont Middle,00610310, 398, 21.1, 797, 44.4, 55.2, 7.9, 21.1,72.7 +NA,NA,a-curv-i5,2021-22,Chicopee - Fairview Elementary,00610050, 134, 14.9, 399, 42.1, 57.9, 10.5, 20.3,86.2 +NA,NA,a-curv-i5,2021-22,Chicopee - Gen John J Stefanik,00610090, 94, 14.2, 329, 50.5, 49.5, 12.5, 19.8,85.4 +NA,NA,a-curv-i5,2021-22,Chicopee - Lambert-Lavoie,00610040, 75, 13.5, 248, 42.7, 57.3, 2.4, 14.1,66.1 +NA,NA,a-curv-i5,2021-22,Chicopee - Litwin,00610022, 116, 14.5, 333, 50.2, 49.9, 8.4, 20.7,66.4 +NA,NA,a-curv-i5,2021-22,Chicopee - Streiber Memorial School,00610065, 78, 14.7, 228, 43.0, 57.0, 2.6, 13.6,55.3 +NA,NA,a-curv-i5,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 33, 10.4, 265, 40.8, 59.3, 0.0, 59.6,64.5 +NA,NA,a-curv-i5,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 177, 19.0, 389, 45.8, 54.2, 4.9, 18.3,51.4 +NA,NA,a-curv-i5,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 82, 14.1, 204, 49.5, 50.5, 26.5, 21.1,75.5 +NA,NA,a-curv-i5,2021-22,Clarksburg - Clarksburg Elementary,00630010, 85, 17.1, 208, 46.6, 53.4, 0.0, 20.2,44.7 +NA,NA,a-curv-i5,2021-22,Clinton - Clinton Elementary,00640050, 385, 19.0, 854, 47.2, 52.8, 21.2, 22.6,54.3 +NA,NA,a-curv-i5,2021-22,Clinton - Clinton Middle School,00640305, 294, 18.3, 609, 48.8, 51.2, 15.6, 21.2,55.2 +NA,NA,a-curv-i5,2021-22,Clinton - Clinton Senior High,00640505, 246, 15.5, 521, 46.3, 53.4, 13.1, 20.7,53.4 +NA,NA,a-curv-i5,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 145, 14.7, 340, 50.6, 49.4, 11.5, 23.5,82.7 +6.909324758842445,5,a-curv-i5,2021-22,Cohasset - Cohasset High School,00650505, 311, 14.3, 428, 48.8, 50.9, 0.0, 13.1,8.9,424 +NA,NA,a-curv-i5,2021-22,Cohasset - Cohasset Middle School,00650305, 203, 16.8, 318, 48.1, 51.9, 0.0, 15.7,6.6 +NA,NA,a-curv-i5,2021-22,Cohasset - Deer Hill,00650005, 128, 19.5, 312, 52.2, 47.8, 0.0, 17.0,6.1 +NA,NA,a-curv-i5,2021-22,Cohasset - Joseph Osgood,00650010, 138, 19.8, 368, 50.5, 49.5, 0.0, 16.0,6.8 +NA,NA,a-curv-i5,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 341, 26.8," 1,072", 50.6, 49.4, 21.2, 7.8,66.4 +NA,NA,a-curv-i5,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 132, 13.0, 290, 56.9, 43.1, 6.9, 17.2,61.4 +NA,NA,a-curv-i5,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 120, 20.0, 401, 49.6, 50.4, 22.7, 12.5,72.6 +NA,NA,a-curv-i5,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 114, 21.2, 405, 50.9, 49.1, 24.7, 13.6,73.8 +NA,NA,a-curv-i5,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 120, 20.4, 409, 51.1, 48.9, 25.4, 13.2,75.8 +NA,NA,a-curv-i5,2021-22,Concord - Alcott,00670005, 254, 17.8, 426, 49.1, 50.9, 1.9, 15.7,13.9 +NA,NA,a-curv-i5,2021-22,Concord - Concord Middle,00670305, 414, 18.4, 687, 48.2, 51.8, 1.2, 17.6,11.4 +NA,NA,a-curv-i5,2021-22,Concord - Thoreau,00670020, 277, 18.0, 454, 47.4, 52.6, 1.8, 21.8,6 +NA,NA,a-curv-i5,2021-22,Concord - Willard,00670030, 277, 17.6, 447, 51.5, 48.6, 3.6, 13.2,4.9 +NA,NA,a-curv-i5,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 544, 19.3," 1,326", 49.8, 49.6, 0.7, 15.5,8.9 +NA,NA,a-curv-i5,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 141, 17.9, 442, 52.0, 48.0, 18.3, 19.0,71 +NA,NA,a-curv-i5,2021-22,Conway - Conway Grammar,00680005, 99, 15.1, 145, 43.5, 56.6, 0.0, 21.4,31.7 +NA,NA,a-curv-i5,2021-22,Danvers - Danvers High,00710505, 446, 15.2, 805, 49.1, 50.2, 0.9, 19.4,25.6 +NA,NA,a-curv-i5,2021-22,Danvers - Great Oak,00710015, 200, 18.0, 321, 52.0, 48.0, 3.1, 11.8,33.6 +NA,NA,a-curv-i5,2021-22,Danvers - Highlands,00710010, 191, 20.8, 370, 46.5, 53.5, 4.1, 11.1,27.6 +NA,NA,a-curv-i5,2021-22,Danvers - Holten Richmond Middle School,00710305, 660, 17.3, 781, 48.4, 51.3, 1.2, 21.1,27.5 +NA,NA,a-curv-i5,2021-22,Danvers - Ivan G Smith,00710032, 192, 17.9, 315, 51.1, 48.9, 2.2, 22.9,19.4 +NA,NA,a-curv-i5,2021-22,Danvers - Riverside,00710030, 189, 16.7, 337, 41.3, 58.8, 3.9, 30.6,30 +NA,NA,a-curv-i5,2021-22,Danvers - Willis E Thorpe,00710045, 175, 18.4, 338, 51.2, 48.8, 1.5, 24.0,24 +NA,NA,a-curv-i5,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 38, 15.1, 145, 53.1, 46.9, 1.4, 35.2,33.1 +NA,NA,a-curv-i5,2021-22,Dartmouth - Dartmouth High,00720505, 478, 18.4," 1,041", 49.9, 50.1, 1.3, 15.9,30.8 +NA,NA,a-curv-i5,2021-22,Dartmouth - Dartmouth Middle,00720050, 659, 14.8, 817, 48.2, 51.7, 0.5, 19.2,35 +NA,NA,a-curv-i5,2021-22,Dartmouth - George H Potter,00720030, 160, 21.1, 394, 49.5, 50.5, 1.5, 18.8,33.5 +NA,NA,a-curv-i5,2021-22,Dartmouth - James M. Quinn School,00720040, 283, 20.5, 657, 45.8, 54.2, 2.3, 21.8,31.1 +NA,NA,a-curv-i5,2021-22,Dartmouth - Joseph Demello,00720015, 180, 19.0, 380, 46.6, 53.2, 2.9, 21.3,34.7 +NA,NA,a-curv-i5,2021-22,Dedham - Avery,00730010, 72, 15.8, 288, 49.7, 50.4, 13.9, 28.8,51.7 +NA,NA,a-curv-i5,2021-22,Dedham - Dedham High,00730505, 388, 14.8, 716, 47.4, 51.3, 4.3, 18.4,31.4 +NA,NA,a-curv-i5,2021-22,Dedham - Dedham Middle School,00730305, 455, 16.5, 578, 49.3, 50.5, 4.8, 24.4,29.2 +NA,NA,a-curv-i5,2021-22,Dedham - Early Childhood Center,00730005, 78, 16.5, 339, 49.6, 50.4, 8.6, 20.4,24.5 +NA,NA,a-curv-i5,2021-22,Dedham - Greenlodge,00730025, 64, 16.4, 258, 43.4, 56.2, 3.9, 25.6,12.4 +NA,NA,a-curv-i5,2021-22,Dedham - Oakdale,00730030, 56, 17.4, 243, 50.2, 49.8, 4.9, 15.6,19.3 +NA,NA,a-curv-i5,2021-22,Dedham - Riverdale,00730045, 40, 17.0, 170, 47.1, 52.9, 10.0, 31.8,32.9 +NA,NA,a-curv-i5,2021-22,Deerfield - Deerfield Elementary,00740015, 231, 16.0, 333, 47.8, 52.3, 1.5, 24.0,22.8 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 627, 11.4, 916, 49.0, 50.4, 10.6, 18.2,54.6 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 111, 13.0, 324, 51.9, 48.2, 18.8, 26.2,59 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 75, 13.4, 304, 44.7, 55.3, 22.7, 26.0,69.7 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 355, 13.8, 431, 46.9, 53.1, 8.8, 17.4,56.2 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 297, 16.9, 454, 46.5, 53.5, 16.5, 18.5,61.2 +NA,NA,a-curv-i5,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 92, 18.8, 433, 47.3, 52.7, 13.6, 9.2,53.8 +NA,NA,a-curv-i5,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 242, 17.7, 455, 46.6, 53.4, 1.8, 23.7,27.7 +NA,NA,a-curv-i5,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 235, 17.9, 390, 46.2, 53.6, 1.0, 16.2,23.1 +6.379428571428571,5,a-curv-i5,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 350, 16.1, 712, 49.2, 50.4, 0.4, 15.0,25.1,709 +NA,NA,a-curv-i5,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 263, 16.2, 466, 51.9, 48.1, 0.6, 20.4,19.7 +NA,NA,a-curv-i5,2021-22,Dighton-Rehoboth - Palmer River,06500010, 298, 21.0, 596, 45.0, 54.9, 0.7, 20.5,20.1 +NA,NA,a-curv-i5,2021-22,Douglas - Douglas Elementary School,00770015, 120, 23.6, 374, 46.5, 53.5, 1.1, 20.6,27.8 +6.592670157068062,5,a-curv-i5,2021-22,Douglas - Douglas High School,00770505, 191, 13.5, 340, 47.9, 52.1, 0.3, 20.6,23.5,336 +NA,NA,a-curv-i5,2021-22,Douglas - Douglas Middle School,00770305, 146, 20.4, 278, 48.9, 51.1, 0.4, 21.9,24.1 +NA,NA,a-curv-i5,2021-22,Douglas - Douglas Primary School,00770005, 71, 15.9, 202, 47.0, 53.0, 2.5, 16.8,29.2 +NA,NA,a-curv-i5,2021-22,Dover - Chickering,00780005, 184, 18.6, 499, 46.1, 53.9, 2.0, 16.0,3.8 +NA,NA,a-curv-i5,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 357, 15.9, 659, 49.0, 50.7, 0.2, 15.3,5.8 +NA,NA,a-curv-i5,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 314, 18.6, 508, 47.8, 52.2, 0.4, 16.3,5.9 +NA,NA,a-curv-i5,2021-22,Dracut - Brookside Elementary,00790035, 192, 19.4, 495, 48.3, 51.7, 3.6, 13.9,43 +NA,NA,a-curv-i5,2021-22,Dracut - Dracut Senior High,00790505, 406, 18.2, 882, 49.6, 50.0, 3.9, 13.7,35.2 +NA,NA,a-curv-i5,2021-22,Dracut - George H. Englesby Elementary School,00790045, 202, 21.5, 535, 49.5, 50.5, 2.8, 13.3,45.1 +NA,NA,a-curv-i5,2021-22,Dracut - Greenmont Avenue,00790030, 98, 21.6, 262, 47.0, 53.1, 7.6, 13.4,50.8 +NA,NA,a-curv-i5,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 222, 20.5, 596, 46.6, 53.4, 4.2, 19.6,27.9 +NA,NA,a-curv-i5,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 492, 19.1, 910, 47.8, 52.0, 3.1, 16.0,36.5 +NA,NA,a-curv-i5,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 15, 26.6, 284, 48.2, 51.8, 34.5, 18.3,82 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 112, 20.3, 331, 51.1, 48.9, 8.8, 21.8,37.8 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 385, 16.3, 619, 47.7, 52.3, 1.6, 15.2,25.2 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 136, 20.4, 346, 48.6, 51.5, 5.2, 19.1,38.7 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 259, 20.5, 565, 47.1, 52.9, 1.8, 19.1,40.4 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 183, 22.1, 438, 47.3, 52.5, 5.3, 20.1,34 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 96, 18.4, 270, 47.8, 52.2, 7.0, 23.0,38.5 +NA,NA,a-curv-i5,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 407, 16.5, 922, 52.3, 47.6, 1.2, 11.9,31.3 +NA,NA,a-curv-i5,2021-22,Duxbury - Alden School,00820004, 300, 19.6, 589, 48.7, 51.3, 0.7, 13.8,7.8 +NA,NA,a-curv-i5,2021-22,Duxbury - Chandler Elementary,00820006, 314, 19.2, 639, 50.1, 49.9, 0.9, 7.5,9.4 +NA,NA,a-curv-i5,2021-22,Duxbury - Duxbury High,00820505, 468, 17.3, 949, 49.6, 50.4, 0.5, 13.3,8.4 +NA,NA,a-curv-i5,2021-22,Duxbury - Duxbury Middle,00820305, 299, 20.1, 649, 47.9, 52.1, 0.2, 12.9,7.6 +NA,NA,a-curv-i5,2021-22,East Bridgewater - Central,00830005, 268, 15.8, 546, 49.1, 50.9, 3.9, 17.8,32.1 +6.556589147286822,5,a-curv-i5,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 516, 19.5, 953, 45.4, 54.5, 1.2, 17.1,26.6,931 +NA,NA,a-curv-i5,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 332, 21.4, 640, 49.4, 50.6, 2.5, 18.9,29.5 +NA,NA,a-curv-i5,2021-22,East Longmeadow - Birchland Park,00870305, 574, 16.9, 605, 46.0, 53.9, 0.7, 18.4,28.6 +NA,NA,a-curv-i5,2021-22,East Longmeadow - East Longmeadow High,00870505, 322, 18.3, 816, 48.2, 51.8, 0.3, 16.7,26.6 +NA,NA,a-curv-i5,2021-22,East Longmeadow - Mapleshade,00870010, 160, 16.0, 270, 46.3, 53.7, 1.9, 25.9,34.8 +NA,NA,a-curv-i5,2021-22,East Longmeadow - Meadow Brook,00870013, 193, 18.7, 551, 45.7, 54.3, 2.9, 23.4,31 +NA,NA,a-curv-i5,2021-22,East Longmeadow - Mountain View,00870015, 117, 16.3, 263, 51.0, 49.1, 0.4, 21.7,19 +NA,NA,a-curv-i5,2021-22,Eastham - Eastham Elementary,00850005, 134, 14.5, 194, 46.4, 53.6, 5.2, 16.5,56.2 +NA,NA,a-curv-i5,2021-22,Easthampton - Center School,00860005, 43, 18.4, 188, 50.0, 50.0, 2.1, 20.7,31.4 +NA,NA,a-curv-i5,2021-22,Easthampton - Easthampton High,00860505, 192, 14.6, 410, 50.5, 48.3, 1.2, 19.3,37.3 +NA,NA,a-curv-i5,2021-22,Easthampton - Maple,00860010, 48, 17.5, 243, 44.9, 54.3, 0.4, 43.2,49.8 +NA,NA,a-curv-i5,2021-22,Easthampton - Neil A Pepin,00860020, 45, 17.2, 183, 50.3, 49.7, 7.7, 17.5,44.3 +NA,NA,a-curv-i5,2021-22,Easthampton - White Brook Middle School,00860305, 214, 18.2, 435, 45.5, 54.0, 3.7, 30.6,40.7 +NA,NA,a-curv-i5,2021-22,Easton - Center School,00880003, 48, 18.1, 217, 46.5, 53.5, 8.8, 12.0,29.5 +NA,NA,a-curv-i5,2021-22,Easton - Easton Middle School,00880405, 468, 19.7, 844, 47.4, 52.6, 1.1, 22.2,20.7 +NA,NA,a-curv-i5,2021-22,Easton - Moreau Hall,00880020, 39, 20.5, 230, 44.8, 55.2, 7.4, 15.7,27.4 +NA,NA,a-curv-i5,2021-22,Easton - Oliver Ames High,00880505, 521, 17.4," 1,123", 49.7, 50.0, 1.5, 18.3,19.8 +NA,NA,a-curv-i5,2021-22,Easton - Parkview Elementary,00880015, 59, 19.0, 305, 43.6, 56.4, 1.6, 13.4,15.7 +NA,NA,a-curv-i5,2021-22,Easton - Richardson Olmsted School,00880025, 137, 22.1, 758, 50.0, 50.0, 2.0, 21.9,20.2 +NA,NA,a-curv-i5,2021-22,Edgartown - Edgartown Elementary,00890005, 323, 14.8, 419, 49.6, 50.4, 23.6, 24.3,51.8 +NA,NA,a-curv-i5,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 161, 18.3, 375, 66.1, 33.9, 12.8, 23.2,82.4 +NA,NA,a-curv-i5,2021-22,Erving - Erving Elementary,00910030, 39, 18.3, 134, 41.8, 58.2, 0.8, 19.4,47 +NA,NA,a-curv-i5,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,252", 17.6," 1,627", 57.4, 42.2, 0.3, 17.7,22.9 +NA,NA,a-curv-i5,2021-22,Everett - Adams School,00930003, 64, 9.6, 153, 52.3, 47.7, 30.7, 16.3,76.5 +NA,NA,a-curv-i5,2021-22,Everett - Devens School,00930030, 106, 4.9, 65, 27.7, 72.3, 18.5, 86.2,89.2 +NA,NA,a-curv-i5,2021-22,Everett - Everett High,00930505, 938, 22.2," 2,353", 48.8, 51.2, 24.9, 14.5,71.1 +NA,NA,a-curv-i5,2021-22,Everett - George Keverian School,00930028, 403, 25.3," 1,028", 50.4, 49.6, 36.5, 15.2,78.2 +NA,NA,a-curv-i5,2021-22,Everett - Lafayette School,00930038, 608, 21.6," 1,063", 49.1, 50.9, 34.9, 19.3,73.8 +NA,NA,a-curv-i5,2021-22,Everett - Madeline English School,00930018, 434, 20.8, 772, 47.5, 52.5, 31.4, 15.7,74.4 +NA,NA,a-curv-i5,2021-22,Everett - Parlin School,00930058, 521, 26.3," 1,105", 52.7, 47.3, 51.0, 10.6,82.4 +NA,NA,a-curv-i5,2021-22,Everett - Sumner G. Whittier School,00930010, 319, 25.8, 793, 50.4, 49.6, 49.1, 12.6,78.6 +NA,NA,a-curv-i5,2021-22,Everett - Webster Extension,00930001, 80, 9.9, 197, 40.6, 59.4, 27.4, 35.0,67 +NA,NA,a-curv-i5,2021-22,Everett - Webster School,00930015, 237, 13.8, 356, 45.5, 54.5, 29.5, 29.2,74.2 +NA,NA,a-curv-i5,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 419, 22.9," 1,388", 49.4, 50.6, 11.3, 19.2,67.2 +NA,NA,a-curv-i5,2021-22,Fairhaven - East Fairhaven,00940010, 232, 13.3, 324, 49.4, 50.6, 2.5, 19.4,42 +NA,NA,a-curv-i5,2021-22,Fairhaven - Fairhaven High,00940505, 354, 15.2, 631, 51.4, 48.5, 0.2, 10.3,33.3 +NA,NA,a-curv-i5,2021-22,Fairhaven - Hastings Middle,00940305, 292, 18.6, 455, 50.3, 49.7, 0.2, 18.0,42.9 +NA,NA,a-curv-i5,2021-22,Fairhaven - Leroy Wood,00940030, 247, 17.0, 467, 48.8, 51.2, 3.0, 20.1,47.5 +NA,NA,a-curv-i5,2021-22,Fall River - B M C Durfee High,00950505," 1,026", 19.9," 2,519", 49.3, 50.5, 18.8, 12.9,77 +NA,NA,a-curv-i5,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 304, 20.0, 770, 48.7, 51.3, 33.4, 14.6,88.2 +NA,NA,a-curv-i5,2021-22,Fall River - Henry Lord Community School,00950017, 386, 18.6, 872, 47.3, 52.8, 25.8, 32.0,89.5 +NA,NA,a-curv-i5,2021-22,Fall River - James Tansey,00950140, 96, 24.2, 287, 51.6, 48.1, 3.8, 18.1,62 +NA,NA,a-curv-i5,2021-22,Fall River - John J Doran,00950045, 237, 17.9, 526, 48.7, 51.3, 12.0, 27.4,88.8 +NA,NA,a-curv-i5,2021-22,Fall River - Letourneau Elementary School,00950013, 260, 20.7, 672, 47.9, 52.1, 38.1, 19.4,85.6 +NA,NA,a-curv-i5,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 277, 23.7, 754, 48.4, 51.6, 26.9, 22.2,90.9 +NA,NA,a-curv-i5,2021-22,Fall River - Matthew J Kuss Middle,00950320, 847, 11.4, 749, 51.7, 48.3, 16.8, 19.5,81.7 +NA,NA,a-curv-i5,2021-22,Fall River - Morton Middle,00950315, 342, 23.4, 738, 45.7, 54.3, 10.3, 24.9,75.6 +NA,NA,a-curv-i5,2021-22,Fall River - North End Elementary,00950005, 262, 21.5, 787, 48.8, 51.2, 11.2, 33.2,72.3 +NA,NA,a-curv-i5,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 192, 9.0, 248, 33.9, 66.1, 14.1, 32.3,91.9 +NA,NA,a-curv-i5,2021-22,Fall River - Samuel Watson,00950145, 96, 21.0, 259, 52.5, 47.5, 14.3, 19.7,89.2 +NA,NA,a-curv-i5,2021-22,Fall River - Spencer Borden,00950130, 282, 17.0, 607, 46.1, 53.9, 11.9, 33.9,74.1 +NA,NA,a-curv-i5,2021-22,Fall River - Stone PK-12 School,00950340, 119, 5.9, 101, 28.7, 71.3, 9.9, 85.2,97 +NA,NA,a-curv-i5,2021-22,Fall River - Talbot Innovation School,00950305, 316, 22.6, 686, 50.6, 49.3, 31.1, 21.0,85.4 +NA,NA,a-curv-i5,2021-22,Fall River - William S Greene,00950065, 309, 18.8, 718, 49.0, 51.0, 31.2, 23.8,86.4 +NA,NA,a-curv-i5,2021-22,Falmouth - East Falmouth Elementary,00960005, 73, 14.7, 294, 41.8, 58.2, 7.8, 36.1,57.1 +NA,NA,a-curv-i5,2021-22,Falmouth - Falmouth High,00960505, 680, 14.6, 816, 47.9, 51.2, 4.2, 18.1,36.9 +NA,NA,a-curv-i5,2021-22,Falmouth - Lawrence,00960405, 430, 14.1, 510, 48.0, 51.4, 3.5, 21.6,43.1 +NA,NA,a-curv-i5,2021-22,Falmouth - Morse Pond School,00960305, 256, 19.0, 471, 49.5, 50.5, 5.3, 24.4,43.5 +NA,NA,a-curv-i5,2021-22,Falmouth - Mullen-Hall,00960020, 120, 16.7, 400, 44.3, 55.8, 8.3, 18.0,40.3 +NA,NA,a-curv-i5,2021-22,Falmouth - North Falmouth Elementary,00960030, 105, 16.2, 340, 53.8, 46.2, 2.9, 16.5,24.7 +NA,NA,a-curv-i5,2021-22,Falmouth - Teaticket,00960015, 79, 14.7, 254, 44.1, 54.7, 8.3, 29.1,61 +NA,NA,a-curv-i5,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 77, 14.2, 117, 53.9, 46.2, 0.0, 27.4,51.3 +NA,NA,a-curv-i5,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 343, 20.2, 687, 46.4, 53.3, 13.7, 26.1,79.9 +NA,NA,a-curv-i5,2021-22,Fitchburg - Crocker Elementary,00970016, 212, 21.1, 592, 49.8, 50.2, 26.4, 24.3,81.4 +NA,NA,a-curv-i5,2021-22,Fitchburg - Fitchburg High,00970505, 538, 18.1," 1,271", 48.1, 51.9, 10.6, 20.1,70.6 +NA,NA,a-curv-i5,2021-22,Fitchburg - Goodrich Academy,00970510, 125, 8.1, 270, 44.8, 54.8, 9.3, 25.6,74.4 +NA,NA,a-curv-i5,2021-22,Fitchburg - McKay Arts Academy,00970340, 436, 19.3, 703, 46.7, 53.3, 22.2, 20.9,76.5 +NA,NA,a-curv-i5,2021-22,Fitchburg - Memorial Middle School,00970048, 344, 20.8, 689, 54.1, 45.9, 9.0, 15.8,72.7 +NA,NA,a-curv-i5,2021-22,Fitchburg - Reingold Elementary,00970043, 247, 18.8, 605, 44.5, 55.5, 20.3, 22.6,71.9 +NA,NA,a-curv-i5,2021-22,Fitchburg - South Street Elementary,00970060, 298, 15.1, 605, 46.0, 54.1, 23.3, 29.8,80.3 +NA,NA,a-curv-i5,2021-22,Florida - Abbott Memorial,00980005, 91, 10.2, 104, 43.3, 56.7, 0.0, 19.2,57.7 +NA,NA,a-curv-i5,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 209, 13.3, 228, 55.3, 43.9, 0.0, 14.9,33.8 +NA,NA,a-curv-i5,2021-22,Foxborough - Charles Taylor Elementary,00990050, 115, 18.9, 246, 44.7, 55.3, 2.9, 17.5,19.5 +NA,NA,a-curv-i5,2021-22,Foxborough - Foxborough High,00990505, 498, 14.4, 805, 47.3, 52.4, 1.1, 16.2,20.9 +NA,NA,a-curv-i5,2021-22,Foxborough - John J Ahern,00990405, 442, 18.5, 774, 48.1, 51.9, 2.7, 22.4,25.1 +NA,NA,a-curv-i5,2021-22,Foxborough - Mabelle M Burrell,00990015, 123, 19.5, 361, 46.3, 53.7, 1.1, 27.7,19.4 +NA,NA,a-curv-i5,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 150, 20.5, 350, 44.6, 55.4, 5.4, 16.6,27.1 +NA,NA,a-curv-i5,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 667, 20.3," 1,657", 52.4, 47.6, 6.2, 9.5,43.6 +NA,NA,a-curv-i5,2021-22,Framingham - Barbieri Elementary,01000035, 339, 19.5, 677, 52.3, 47.7, 57.8, 16.1,68.7 +NA,NA,a-curv-i5,2021-22,Framingham - Brophy,01000006, 336, 13.9, 475, 46.1, 53.7, 46.1, 21.5,64 +NA,NA,a-curv-i5,2021-22,Framingham - Cameron Middle School,01000302, 353, 18.3, 618, 46.9, 53.1, 24.4, 22.3,63.8 +NA,NA,a-curv-i5,2021-22,Framingham - Charlotte A Dunning,01000007, 343, 11.6, 422, 45.0, 55.0, 23.9, 25.4,37.4 +6.360744500846023,5,a-curv-i5,2021-22,Framingham - Framingham High School,01000515," 1,182", 16.9," 2,562", 50.0, 49.9, 23.4, 17.9,51.5,2422 +NA,NA,a-curv-i5,2021-22,Framingham - Fuller Middle,01000305, 423, 17.0, 700, 48.4, 51.3, 46.4, 21.1,74.4 +NA,NA,a-curv-i5,2021-22,Framingham - Harmony Grove Elementary,01000055, 340, 17.1, 531, 43.1, 56.7, 75.9, 10.9,84.6 +NA,NA,a-curv-i5,2021-22,Framingham - Hemenway,01000015, 413, 12.4, 544, 48.5, 51.5, 24.1, 23.4,37.7 +NA,NA,a-curv-i5,2021-22,Framingham - Juniper Hill School,01000001, 434, 5.5, 312, 34.3, 65.7, 1.3, 60.6,50.3 +NA,NA,a-curv-i5,2021-22,Framingham - King Elementary School,01000005, 290, 13.8, 409, 47.7, 52.1, 31.3, 17.9,42.3 +NA,NA,a-curv-i5,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 260, 12.6, 344, 45.1, 54.9, 40.4, 28.5,63.7 +NA,NA,a-curv-i5,2021-22,Framingham - Miriam F McCarthy School,01000050, 362, 13.8, 518, 51.7, 48.3, 42.5, 23.9,68.7 +NA,NA,a-curv-i5,2021-22,Framingham - Potter Road,01000039, 297, 17.8, 548, 48.7, 51.3, 46.4, 14.4,56.2 +NA,NA,a-curv-i5,2021-22,Framingham - Walsh Middle,01000310, 522, 16.5, 813, 51.7, 47.7, 14.3, 22.0,45 +NA,NA,a-curv-i5,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 237, 16.6, 379, 57.5, 42.0, 0.0, 15.3,12.9 +NA,NA,a-curv-i5,2021-22,Franklin - Annie Sullivan Middle School,01010040, 217, 15.5, 337, 45.7, 54.3, 4.5, 18.7,19 +NA,NA,a-curv-i5,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 9, 16.8, 151, 37.1, 62.9, 0.0, 40.4,16.6 +NA,NA,a-curv-i5,2021-22,Franklin - Franklin High,01010505, 953, 15.6," 1,683", 49.7, 49.7, 0.9, 10.5,11.4 +NA,NA,a-curv-i5,2021-22,Franklin - Helen Keller Elementary,01010012, 240, 18.4, 553, 49.6, 50.5, 4.2, 20.4,17.2 +NA,NA,a-curv-i5,2021-22,Franklin - Horace Mann,01010405, 227, 16.8, 371, 47.7, 52.3, 1.1, 18.1,13.5 +NA,NA,a-curv-i5,2021-22,Franklin - J F Kennedy Memorial,01010013, 152, 18.0, 341, 44.6, 55.1, 2.4, 18.2,10.6 +NA,NA,a-curv-i5,2021-22,Franklin - Jefferson Elementary,01010010, 208, 13.1, 341, 40.8, 58.9, 2.9, 28.7,14.4 +NA,NA,a-curv-i5,2021-22,Franklin - Oak Street Elementary,01010030, 184, 16.7, 383, 49.6, 50.4, 2.6, 16.5,17.2 +NA,NA,a-curv-i5,2021-22,Franklin - Parmenter,01010032, 152, 15.8, 300, 50.3, 49.7, 2.7, 20.7,31.7 +NA,NA,a-curv-i5,2021-22,Franklin - Remington Middle,01010310, 227, 17.3, 386, 49.2, 50.8, 2.1, 19.4,20.5 +NA,NA,a-curv-i5,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 321, 13.0, 566, 39.6, 60.4, 0.4, 23.7,44.9 +NA,NA,a-curv-i5,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 368, 14.9, 699, 52.9, 46.6, 0.1, 15.7,21 +NA,NA,a-curv-i5,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 90, 21.5, 484, 51.2, 48.8, 2.3, 14.9,26.9 +NA,NA,a-curv-i5,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 92, 17.5, 446, 44.6, 55.4, 2.9, 19.5,27.1 +NA,NA,a-curv-i5,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 298, 20.4, 677, 49.0, 51.0, 0.6, 19.2,27.2 +NA,NA,a-curv-i5,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 152, 20.2, 439, 48.3, 51.7, 1.8, 16.0,26.9 +NA,NA,a-curv-i5,2021-22,Frontier - Frontier Regional,06700505, 581, 11.5, 612, 48.2, 51.8, 0.3, 18.8,27.9 +NA,NA,a-curv-i5,2021-22,Gardner - Elm Street School,01030001, 106, 17.9, 473, 47.2, 52.6, 9.9, 23.7,70.2 +NA,NA,a-curv-i5,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 44, 9.5, 42, 28.6, 71.4, 9.5, 40.5,88.1 +NA,NA,a-curv-i5,2021-22,Gardner - Gardner High,01030505, 351, 15.8, 707, 46.0, 53.8, 3.4, 18.5,60.8 +NA,NA,a-curv-i5,2021-22,Gardner - Gardner Middle School,01030405, 257, 19.5, 511, 50.5, 49.5, 6.7, 24.3,63.4 +NA,NA,a-curv-i5,2021-22,Gardner - Waterford Street,01030020, 97, 19.4, 461, 45.1, 54.9, 10.9, 27.6,70.5 +NA,NA,a-curv-i5,2021-22,Gateway - Chester Elementary,06720059, 65, 13.1, 109, 38.5, 61.5, 0.0, 30.3,41.3 +NA,NA,a-curv-i5,2021-22,Gateway - Gateway Regional High,06720505, 249, 7.0, 179, 48.0, 51.4, 1.1, 25.1,46.4 +NA,NA,a-curv-i5,2021-22,Gateway - Gateway Regional Middle School,06720405, 102, 12.7, 138, 47.1, 52.9, 0.0, 25.4,48.6 +NA,NA,a-curv-i5,2021-22,Gateway - Littleville Elementary School,06720143, 140, 18.2, 336, 50.9, 49.1, 3.9, 26.2,46.7 +2.6333333333333337,2.63,a-curv-i5,2021-22,Georgetown - Georgetown High School,01050505, 48, 2.8, 21, 38.1, 61.9, 23.8, 14.3,42.9,322 +NA,NA,a-curv-i5,2021-22,Georgetown - Georgetown Middle School,01050305, 97, 13.5, 90, 47.8, 52.2, 0.0, 21.1,16.7 +NA,NA,a-curv-i5,2021-22,Georgetown - Penn Brook,01050010, 175, 19.6, 677, 49.9, 50.1, 0.6, 17.4,14.2 +NA,NA,a-curv-i5,2021-22,Georgetown - Perley Elementary,01050005, 3, 25.0, 75, 45.3, 54.7, 0.0, 28.0,17.3 +NA,NA,a-curv-i5,2021-22,Gill-Montague - Gill Elementary,06740005, 50, 18.4, 115, 45.2, 54.8, 0.9, 29.6,36.5 +NA,NA,a-curv-i5,2021-22,Gill-Montague - Great Falls Middle,06740310, 160, 10.8, 186, 46.2, 53.2, 4.3, 27.4,60.8 +NA,NA,a-curv-i5,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 72, 16.0, 144, 45.1, 54.9, 11.8, 34.0,63.2 +NA,NA,a-curv-i5,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 108, 15.4, 208, 41.4, 58.2, 9.6, 29.8,68.8 +NA,NA,a-curv-i5,2021-22,Gill-Montague - Turners Fall High,06740505, 165, 8.9, 170, 51.8, 47.7, 5.9, 25.3,59.4 +NA,NA,a-curv-i5,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 321, 16.8, 510, 51.0, 49.0, 9.6, 11.8,72 +NA,NA,a-curv-i5,2021-22,Gloucester - Beeman Memorial,01070010, 72, 17.9, 323, 56.4, 43.7, 15.8, 22.0,62.2 +NA,NA,a-curv-i5,2021-22,Gloucester - East Gloucester Elementary,01070020, 48, 14.2, 170, 54.1, 45.9, 11.2, 19.4,41.8 +NA,NA,a-curv-i5,2021-22,Gloucester - Gloucester High,01070505, 436, 14.3, 844, 44.9, 54.5, 8.8, 28.9,46.7 +NA,NA,a-curv-i5,2021-22,Gloucester - Gloucester PreSchool,01070025, 13, 8.2, 107, 36.5, 63.6, 0.0, 51.4,53.3 +NA,NA,a-curv-i5,2021-22,Gloucester - Plum Cove School,01070042, 48, 17.9, 215, 50.2, 49.8, 5.6, 18.1,34.4 +NA,NA,a-curv-i5,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 329, 19.0, 642, 47.8, 52.0, 7.5, 27.4,50.3 +NA,NA,a-curv-i5,2021-22,Gloucester - Veterans Memorial,01070045, 49, 17.8, 219, 48.9, 51.1, 24.2, 24.7,68.5 +NA,NA,a-curv-i5,2021-22,Gloucester - West Parish,01070050, 84, 17.5, 367, 48.0, 52.0, 2.5, 25.9,39 +NA,NA,a-curv-i5,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +6.208866995073892,5,a-curv-i5,2021-22,Grafton - Grafton High School,01100505, 406, 17.9, 903, 50.6, 49.3, 1.9, 12.6,18.4,909 +NA,NA,a-curv-i5,2021-22,Grafton - Grafton Middle,01100305, 295, 20.3, 533, 45.6, 54.4, 0.9, 19.3,21.8 +NA,NA,a-curv-i5,2021-22,Grafton - Millbury Street Elementary School,01100200, 307, 20.5, 625, 44.5, 55.5, 3.7, 20.2,19.2 +NA,NA,a-curv-i5,2021-22,Grafton - North Grafton Elementary,01100025, 121, 17.7, 276, 42.4, 57.6, 4.0, 26.8,18.5 +NA,NA,a-curv-i5,2021-22,Grafton - North Street Elementary School,01100030, 275, 19.4, 537, 51.4, 48.4, 3.2, 14.3,17.7 +NA,NA,a-curv-i5,2021-22,Grafton - South Grafton Elementary,01100005, 124, 17.6, 285, 48.1, 51.9, 3.5, 23.5,17.9 +NA,NA,a-curv-i5,2021-22,Granby - East Meadow,01110004, 146, 19.1, 409, 49.6, 50.4, 4.7, 25.2,46.7 +6.834615384615384,5,a-curv-i5,2021-22,Granby - Granby Jr Sr High School,01110505, 208, 13.4, 310, 41.3, 57.7, 1.3, 16.1,29.7,303 +NA,NA,a-curv-i5,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 396, 17.1," 1,142", 54.3, 45.0, 3.2, 24.3,57.2 +NA,NA,a-curv-i5,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 886, 15.5," 1,403", 43.5, 56.2, 1.3, 9.3,47.8 +NA,NA,a-curv-i5,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,458", 13.1," 1,638", 51.3, 48.5, 8.4, 13.1,70.9 +NA,NA,a-curv-i5,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,507", 18.4," 2,275", 48.8, 50.4, 7.5, 16.8,56.7 +NA,NA,a-curv-i5,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,987", 15.2," 2,102", 47.5, 52.5, 4.7, 10.3,52.2 +NA,NA,a-curv-i5,2021-22,Greenfield - Discovery School at Four Corners,01140025, 71, 16.6, 243, 40.3, 59.7, 5.8, 18.5,45.7 +NA,NA,a-curv-i5,2021-22,Greenfield - Federal Street School,01140010, 55, 19.6, 203, 51.7, 48.3, 6.9, 16.8,71.9 +NA,NA,a-curv-i5,2021-22,Greenfield - Greenfield High,01140505, 326, 14.4, 512, 50.6, 49.2, 4.9, 20.3,64.1 +NA,NA,a-curv-i5,2021-22,Greenfield - Greenfield Middle,01140305, 229, 16.8, 376, 48.7, 51.3, 3.7, 20.0,66.8 +NA,NA,a-curv-i5,2021-22,Greenfield - Newton School,01140035, 55, 18.8, 200, 53.0, 47.0, 7.0, 21.0,79.5 +NA,NA,a-curv-i5,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 7, 12.4, 87, 46.0, 54.0, 0.0, 27.6,59.8 +NA,NA,a-curv-i5,2021-22,Groton-Dunstable - Boutwell School,06730001, 5, 17.4, 87, 44.8, 55.2, 0.0, 33.3,16.1 +NA,NA,a-curv-i5,2021-22,Groton-Dunstable - Florence Roche School,06730010, 157, 20.2, 526, 48.3, 51.7, 3.4, 16.7,14.3 +NA,NA,a-curv-i5,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 406, 16.0, 711, 48.1, 51.2, 0.6, 13.2,10.1 +NA,NA,a-curv-i5,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 388, 18.9, 733, 47.8, 52.3, 1.0, 16.2,10.5 +NA,NA,a-curv-i5,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 90, 20.8, 312, 46.5, 53.5, 1.9, 16.4,13.5 +NA,NA,a-curv-i5,2021-22,Hadley - Hadley Elementary,01170015, 247, 17.6, 275, 42.6, 57.1, 3.6, 18.2,31.3 +NA,NA,a-curv-i5,2021-22,Hadley - Hopkins Academy,01170505, 145, 13.3, 230, 48.3, 50.9, 2.6, 11.3,23 +NA,NA,a-curv-i5,2021-22,Halifax - Halifax Elementary,01180005, 229, 20.2, 567, 48.9, 51.2, 0.7, 17.3,26.1 +NA,NA,a-curv-i5,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 104, 19.2, 250, 44.4, 55.6, 4.0, 12.8,11.6 +NA,NA,a-curv-i5,2021-22,Hamilton-Wenham - Cutler School,06750010, 112, 17.8, 250, 53.6, 46.4, 0.0, 21.2,10 +NA,NA,a-curv-i5,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 288, 14.2, 490, 53.5, 46.5, 0.0, 10.0,9.6 +NA,NA,a-curv-i5,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 328, 15.7, 379, 52.0, 48.0, 0.8, 20.1,9.8 +NA,NA,a-curv-i5,2021-22,Hamilton-Wenham - Winthrop School,06750015, 136, 16.4, 313, 51.1, 48.9, 0.0, 24.6,9.9 +NA,NA,a-curv-i5,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 290, 17.4, 553, 48.6, 51.2, 4.9, 13.9,62.9 +NA,NA,a-curv-i5,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 182, 16.4, 362, 47.0, 53.0, 8.0, 19.3,62.7 +NA,NA,a-curv-i5,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 106, 16.9, 345, 47.5, 52.5, 2.3, 22.9,32.8 +NA,NA,a-curv-i5,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 73, 19.2, 342, 48.8, 51.2, 2.6, 20.5,20.2 +6.417120622568094,5,a-curv-i5,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 514, 16.1," 1,010", 51.5, 48.5, 0.1, 12.3,20.9,1017 +NA,NA,a-curv-i5,2021-22,Hampden-Wilbraham - Soule Road,06800030, 70, 22.8, 319, 50.2, 49.8, 1.6, 16.9,19.8 +NA,NA,a-curv-i5,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 70, 22.1, 309, 48.2, 51.8, 2.9, 15.9,22 +NA,NA,a-curv-i5,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 317, 18.0, 584, 47.4, 52.4, 0.5, 17.1,24 +NA,NA,a-curv-i5,2021-22,Hampshire - Hampshire Regional High,06830505, 601, 11.8, 689, 54.3, 45.3, 2.0, 21.3,21.5 +NA,NA,a-curv-i5,2021-22,Hancock - Hancock Elementary,01210005, 77, 7.0, 56, 55.4, 44.6, 0.0, 19.6,39.3 +NA,NA,a-curv-i5,2021-22,Hanover - Cedar Elementary,01220004, 196, 18.4, 509, 49.1, 50.9, 3.9, 20.0,11 +NA,NA,a-curv-i5,2021-22,Hanover - Center Elementary,01220005, 224, 23.0, 623, 48.2, 51.7, 1.6, 25.4,11.2 +NA,NA,a-curv-i5,2021-22,Hanover - Hanover High,01220505, 353, 15.0, 709, 47.0, 53.0, 0.7, 17.8,13.1 +NA,NA,a-curv-i5,2021-22,Hanover - Hanover Middle,01220305, 858, 20.0, 802, 48.0, 52.0, 0.5, 21.7,11.1 +NA,NA,a-curv-i5,2021-22,Harvard - Bromfield,01250505, 318, 15.2, 584, 52.4, 47.4, 1.2, 8.9,8.2 +NA,NA,a-curv-i5,2021-22,Harvard - Hildreth Elementary School,01250005, 236, 17.9, 464, 46.1, 53.9, 3.0, 8.6,9.3 +NA,NA,a-curv-i5,2021-22,Hatfield - Hatfield Elementary,01270005, 154, 13.0, 212, 50.5, 49.1, 0.5, 32.1,27.8 +NA,NA,a-curv-i5,2021-22,Hatfield - Smith Academy,01270505, 137, 10.2, 169, 47.9, 51.5, 0.0, 23.7,17.2 +NA,NA,a-curv-i5,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 45, 3.3, 30, 20.0, 80.0, 3.3, 100.0,90 +NA,NA,a-curv-i5,2021-22,Haverhill - Bradford Elementary,01280008, 336, 16.9, 527, 46.3, 53.7, 13.7, 21.3,63.8 +NA,NA,a-curv-i5,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 471, 21.5," 1,074", 48.4, 51.6, 6.1, 18.5,49.5 +NA,NA,a-curv-i5,2021-22,Haverhill - Consentino Middle School,01280100, 371, 19.7, 745, 47.3, 52.8, 12.2, 16.4,69.1 +NA,NA,a-curv-i5,2021-22,Haverhill - Crowell,01280515, 10, 15.9, 37, 40.5, 59.5, 13.5, 32.4,89.2 +NA,NA,a-curv-i5,2021-22,Haverhill - Dr Paul Nettle,01280050, 231, 23.2, 604, 46.4, 53.6, 10.4, 27.2,71 +NA,NA,a-curv-i5,2021-22,Haverhill - Golden Hill,01280026, 285, 18.4, 491, 50.1, 49.9, 13.9, 18.9,69.3 +NA,NA,a-curv-i5,2021-22,Haverhill - Greenleaf Academy,01280033, 31, 5.8, 30, 23.3, 76.7, 0.0, 100.0,96.7 +NA,NA,a-curv-i5,2021-22,Haverhill - Haverhill High,01280505, 858, 17.2," 2,020", 47.9, 51.9, 8.1, 21.2,53.8 +NA,NA,a-curv-i5,2021-22,Haverhill - John G Whittier,01280085, 198, 24.3, 542, 51.3, 48.5, 6.6, 19.2,60.2 +NA,NA,a-curv-i5,2021-22,Haverhill - Moody,01280045, 276, 8.7, 195, 40.5, 59.5, 7.7, 64.1,61.5 +NA,NA,a-curv-i5,2021-22,Haverhill - Moody Preschool Extension,01280001, 108, 8.8, 106, 29.3, 70.8, 2.8, 67.9,69.8 +NA,NA,a-curv-i5,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 293, 17.2, 481, 46.6, 53.4, 12.9, 27.0,69 +NA,NA,a-curv-i5,2021-22,Haverhill - Silver Hill Elementary School,01280067, 239, 20.2, 526, 51.0, 49.1, 12.4, 17.3,63.5 +NA,NA,a-curv-i5,2021-22,Haverhill - Tilton,01280075, 183, 17.1, 340, 44.7, 55.3, 17.9, 18.8,75.3 +NA,NA,a-curv-i5,2021-22,Haverhill - Tilton Upper Middle School,01280105, 77, 17.1, 155, 49.7, 50.3, 14.2, 24.5,79.4 +NA,NA,a-curv-i5,2021-22,Haverhill - Walnut Square,01280080, 79, 16.9, 118, 51.7, 48.3, 10.2, 11.9,57.6 +NA,NA,a-curv-i5,2021-22,Hawlemont - Hawlemont Regional,06850005, 39, 14.2, 119, 58.0, 42.0, 3.4, 26.9,52.1 +NA,NA,a-curv-i5,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 74, 13.3, 155, 52.9, 47.1, 1.9, 15.5,73.6 +NA,NA,a-curv-i5,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 118, 20.7, 302, 49.0, 51.0, 5.6, 21.2,40.7 +NA,NA,a-curv-i5,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 55, 26.4, 217, 45.6, 52.5, 0.0, 16.1,21.7 +NA,NA,a-curv-i5,2021-22,Hingham - East Elementary School,01310005, 195, 17.6, 498, 46.8, 53.2, 1.0, 24.9,9.8 +NA,NA,a-curv-i5,2021-22,Hingham - Hingham High,01310505, 622, 14.2," 1,201", 47.0, 52.5, 0.1, 8.7,8.6 +NA,NA,a-curv-i5,2021-22,Hingham - Hingham Middle School,01310410, 622, 15.2, 882, 49.2, 50.7, 0.1, 15.5,7.4 +NA,NA,a-curv-i5,2021-22,Hingham - Plymouth River,01310019, 152, 19.9, 378, 49.2, 50.8, 1.6, 22.8,10.9 +NA,NA,a-curv-i5,2021-22,Hingham - South Elementary,01310020, 191, 21.0, 502, 51.2, 48.8, 0.2, 16.3,5.8 +NA,NA,a-curv-i5,2021-22,Hingham - Wm L Foster Elementary,01310010, 175, 19.4, 425, 47.5, 52.5, 1.2, 20.7,8 +6.673170731707318,5,a-curv-i5,2021-22,Holbrook - Holbrook Middle High School,01330505, 369, 14.3, 617, 49.6, 50.1, 6.5, 17.5,45.9,612 +NA,NA,a-curv-i5,2021-22,Holbrook - John F Kennedy,01330018, 312, 18.8, 701, 47.5, 52.5, 7.3, 23.0,47.9 +NA,NA,a-curv-i5,2021-22,Holland - Holland Elementary,01350005, 69, 16.3, 238, 48.3, 51.7, 0.0, 9.2,43.3 +NA,NA,a-curv-i5,2021-22,Holliston - Holliston High,01360505, 439, 16.1, 823, 49.9, 49.2, 1.1, 14.5,10.7 +NA,NA,a-curv-i5,2021-22,Holliston - Miller School,01360007, 362, 18.0, 622, 46.1, 53.4, 2.7, 20.1,11.1 +NA,NA,a-curv-i5,2021-22,Holliston - Placentino Elementary,01360010, 227, 16.4, 718, 45.0, 54.7, 5.7, 16.3,10.7 +NA,NA,a-curv-i5,2021-22,Holliston - Robert H. Adams Middle School,01360305, 375, 14.8, 682, 49.0, 50.7, 1.5, 18.9,12.8 +NA,NA,a-curv-i5,2021-22,Holyoke - E N White Elementary,01370045, 161, 19.0, 411, 48.7, 51.3, 7.3, 27.0,75.7 +NA,NA,a-curv-i5,2021-22,Holyoke - H.B. Lawrence School,01370070, 66, 13.1, 183, 49.7, 50.3, 13.1, 15.3,96.7 +NA,NA,a-curv-i5,2021-22,Holyoke - Holyoke High,01370505," 1,054", 15.2," 1,434", 47.8, 51.7, 20.4, 25.1,81.9 +NA,NA,a-curv-i5,2021-22,Holyoke - Holyoke STEM Academy,01370320, 96, 21.1, 282, 41.5, 57.8, 23.8, 31.2,89.4 +NA,NA,a-curv-i5,2021-22,Holyoke - Joseph Metcalf School,01370003, 140, 20.1, 362, 53.3, 46.7, 32.0, 23.2,72.7 +NA,NA,a-curv-i5,2021-22,Holyoke - Kelly Elementary,01370040, 99, 18.1, 291, 50.5, 49.5, 22.7, 25.1,96.2 +NA,NA,a-curv-i5,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 205, 15.7, 469, 46.3, 53.7, 16.8, 26.7,89.1 +NA,NA,a-curv-i5,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 136, 18.4, 359, 45.4, 54.6, 11.7, 32.3,79.1 +NA,NA,a-curv-i5,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 182, 15.3, 393, 43.8, 56.2, 16.0, 42.5,96.2 +NA,NA,a-curv-i5,2021-22,Holyoke - Morgan Full Service Community School,01370025, 60, 17.3, 296, 50.7, 49.3, 13.2, 24.3,97.3 +NA,NA,a-curv-i5,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 177, 20.5, 401, 45.6, 54.1, 30.4, 36.9,96.3 +NA,NA,a-curv-i5,2021-22,Holyoke - William R. Peck School,01370030, 97, 14.9, 231, 46.8, 53.3, 25.5, 39.8,95.7 +NA,NA,a-curv-i5,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 202, 21.5, 653, 54.1, 45.9, 12.3, 23.4,84.4 +NA,NA,a-curv-i5,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 132, 16.8, 369, 45.5, 54.5, 0.8, 26.3,67.5 +6.590673575129534,5,a-curv-i5,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 193, 13.9, 337, 49.0, 50.7, 0.6, 22.3,54.3,340 +NA,NA,a-curv-i5,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 197, 18.4, 322, 50.0, 50.0, 1.6, 26.4,63.7 +NA,NA,a-curv-i5,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 324, 13.7, 470, 48.5, 51.1, 2.3, 17.7,23.4 +NA,NA,a-curv-i5,2021-22,Hopedale - Memorial,01380010, 264, 19.6, 548, 46.7, 53.1, 8.4, 22.1,21 +NA,NA,a-curv-i5,2021-22,Hopedale - Park Street School,01380003, 105, 7.0, 105, 47.6, 52.4, 0.0, 23.8,19.1 +NA,NA,a-curv-i5,2021-22,Hopkinton - Elmwood,01390010, 155, 21.3, 640, 49.4, 50.6, 8.0, 10.0,7.2 +NA,NA,a-curv-i5,2021-22,Hopkinton - Hopkins Elementary School,01390015, 264, 22.4, 616, 49.4, 50.7, 2.3, 14.6,7.3 +NA,NA,a-curv-i5,2021-22,Hopkinton - Hopkinton High,01390505," 1,009", 18.1," 1,213", 50.2, 49.5, 0.8, 13.4,7.8 +NA,NA,a-curv-i5,2021-22,Hopkinton - Hopkinton Middle School,01390305, 617, 21.4, 943, 49.5, 50.4, 0.7, 13.4,8.6 +NA,NA,a-curv-i5,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 17, 7.7, 95, 48.4, 51.6, 13.7, 52.6,11.6 +NA,NA,a-curv-i5,2021-22,Hopkinton - Marathon Elementary School,01390005, 185, 17.7, 572, 44.6, 55.2, 14.7, 9.6,6.8 +NA,NA,a-curv-i5,2021-22,Hudson - C A Farley,01410030, 193, 19.5, 428, 50.9, 49.1, 25.5, 16.1,43.2 +NA,NA,a-curv-i5,2021-22,Hudson - David J. Quinn Middle School,01410410, 295, 18.5, 562, 52.1, 47.7, 15.7, 19.2,41.3 +NA,NA,a-curv-i5,2021-22,Hudson - Forest Avenue Elementary,01410015, 153, 18.5, 314, 50.0, 50.0, 18.5, 16.6,31.9 +NA,NA,a-curv-i5,2021-22,Hudson - Hudson High,01410505, 501, 14.3, 857, 53.3, 46.3, 10.0, 16.0,35.6 +NA,NA,a-curv-i5,2021-22,Hudson - Mulready Elementary,01410007, 112, 18.5, 237, 47.3, 52.7, 22.4, 27.9,38.4 +NA,NA,a-curv-i5,2021-22,Hull - Hull High,01420505, 235, 9.5, 248, 43.6, 55.7, 1.6, 19.4,35.9 +NA,NA,a-curv-i5,2021-22,Hull - Lillian M Jacobs,01420015, 190, 14.0, 383, 47.0, 53.0, 0.5, 25.1,36.8 +NA,NA,a-curv-i5,2021-22,Hull - Memorial Middle,01420305, 119, 12.8, 178, 47.8, 52.3, 1.1, 19.7,34.3 +NA,NA,a-curv-i5,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 426, 18.4, 772, 52.5, 47.3, 2.7, 23.2,26.9 +NA,NA,a-curv-i5,2021-22,Ipswich - Ipswich High,01440505, 390, 11.7, 528, 51.9, 47.9, 1.1, 13.3,18.6 +NA,NA,a-curv-i5,2021-22,Ipswich - Ipswich Middle School,01440305, 201, 20.4, 367, 50.7, 48.5, 1.9, 17.2,18.8 +NA,NA,a-curv-i5,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 176, 19.4, 354, 50.3, 49.7, 3.1, 21.5,17.5 +NA,NA,a-curv-i5,2021-22,Ipswich - Winthrop,01440015, 196, 19.8, 406, 49.5, 50.5, 5.2, 24.4,27.1 +NA,NA,a-curv-i5,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 135, 32.6, 611, 47.6, 52.4, 17.7, 20.8,79.5 +NA,NA,a-curv-i5,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 518, 24.5," 1,617", 50.2, 49.8, 13.5, 12.0,71.7 +NA,NA,a-curv-i5,2021-22,King Philip - King Philip Middle School,06900510, 469, 15.9, 721, 46.3, 53.3, 0.3, 20.5,17.2 +NA,NA,a-curv-i5,2021-22,King Philip - King Philip Regional High,06900505, 486, 17.0," 1,172", 49.8, 50.0, 0.5, 13.7,15.4 +NA,NA,a-curv-i5,2021-22,Kingston - Kingston Elementary,01450005, 150, 21.9, 464, 48.7, 51.3, 5.8, 15.3,25.4 +NA,NA,a-curv-i5,2021-22,Kingston - Kingston Intermediate,01450020, 238, 21.0, 591, 48.9, 51.1, 3.7, 21.0,22.5 +NA,NA,a-curv-i5,2021-22,Lawrence - Alexander B Bruce,01490015, 205, 20.1, 458, 48.3, 51.3, 43.2, 17.5,91.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Arlington Elementary,01490009, 122, 23.4, 575, 49.2, 49.7, 59.1, 13.0,94.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Arlington Middle School,01490017, 279, 25.6, 596, 48.8, 51.0, 43.0, 16.6,92.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Edward F. Parthum,01490053, 223, 21.8, 683, 46.7, 53.0, 33.1, 18.9,87.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Emily G Wetherbee,01490080, 206, 19.4, 535, 49.7, 50.1, 33.8, 22.4,85.8 +NA,NA,a-curv-i5,2021-22,Lawrence - Francis M Leahy,01490040, 111, 20.6, 411, 44.3, 55.7, 46.2, 13.9,91.2 +NA,NA,a-curv-i5,2021-22,Lawrence - Frost Middle School,01490525, 200, 24.7, 547, 49.9, 50.1, 21.9, 22.1,79.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Gerard A. Guilmette,01490022, 179, 20.8, 480, 45.8, 54.2, 43.1, 16.3,89.8 +NA,NA,a-curv-i5,2021-22,Lawrence - Guilmette Middle School,01490025, 213, 16.9, 482, 46.3, 53.7, 37.1, 21.4,88.8 +4.974545454545455,4.97,a-curv-i5,2021-22,Lawrence - High School Learning Center,01490536, 55, 14.8, 176, 40.9, 58.5, 49.4, 19.9,85.2,208 +NA,NA,a-curv-i5,2021-22,Lawrence - James F Hennessey,01490020, 83, 11.5, 319, 47.0, 53.0, 56.7, 31.4,88.7 +NA,NA,a-curv-i5,2021-22,Lawrence - John Breen School,01490003, 103, 11.1, 306, 43.5, 56.5, 25.8, 48.4,85 +NA,NA,a-curv-i5,2021-22,Lawrence - John K Tarbox,01490075, 75, 18.6, 280, 43.2, 56.4, 41.4, 13.2,91.4 +NA,NA,a-curv-i5,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 32, 20.5, 170, 52.4, 47.7, 28.2, 10.0,94.7 +NA,NA,a-curv-i5,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 54, 16.5, 202, 45.5, 54.5, 45.1, 21.3,84.7 +6.399483204134367,5,a-curv-i5,2021-22,Lawrence - Lawrence High School,01490515," 1,548", 17.3," 2,935", 47.6, 52.1, 38.5, 14.6,84.5,3097 +NA,NA,a-curv-i5,2021-22,Lawrence - Oliver Partnership School,01490048, 105, 22.2, 464, 51.5, 48.5, 47.6, 14.0,90.5 +NA,NA,a-curv-i5,2021-22,Lawrence - Parthum Middle School,01490027, 242, 22.6, 565, 47.3, 52.7, 25.0, 19.1,83.9 +NA,NA,a-curv-i5,2021-22,Lawrence - RISE Academy,01490615, 41, 11.1, 79, 20.3, 79.8, 25.3, 38.0,92.4 +NA,NA,a-curv-i5,2021-22,Lawrence - Robert Frost,01490018, 129, 22.1, 571, 46.9, 52.7, 36.1, 21.0,82.3 +NA,NA,a-curv-i5,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 53, 12.3, 218, 36.7, 63.3, 44.5, 48.2,92.7 +NA,NA,a-curv-i5,2021-22,Lawrence - School for Exceptional Studies,01490537, 186, 4.0, 114, 14.0, 86.0, 25.4, 99.1,97.4 +NA,NA,a-curv-i5,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 208, 23.1, 692, 47.7, 51.9, 41.6, 19.2,89.6 +NA,NA,a-curv-i5,2021-22,Lawrence - Spark Academy,01490085, 172, 17.5, 433, 46.2, 53.8, 31.4, 20.3,91 +NA,NA,a-curv-i5,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 96, 27.2, 348, 50.0, 50.0, 37.1, 12.1,92.8 +NA,NA,a-curv-i5,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 84, 28.4, 343, 43.7, 55.7, 41.4, 19.0,91.3 +NA,NA,a-curv-i5,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 397, 19.6, 804, 55.0, 45.0, 26.6, 8.2,79.5 +NA,NA,a-curv-i5,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 189, 24.4, 660, 51.2, 48.8, 27.0, 12.9,80.6 +NA,NA,a-curv-i5,2021-22,Lee - Lee Elementary,01500025, 195, 15.3, 347, 48.4, 51.6, 4.6, 17.9,45.2 +6.917842323651452,5,a-curv-i5,2021-22,Lee - Lee Middle/High School,01500505, 241, 11.0, 332, 47.0, 53.0, 4.5, 16.6,47,326 +NA,NA,a-curv-i5,2021-22,Leicester - Leicester Elementary,01510005, 196, 20.9, 515, 49.9, 50.1, 8.2, 21.2,44.5 +NA,NA,a-curv-i5,2021-22,Leicester - Leicester High,01510505, 216, 18.2, 433, 49.4, 50.6, 2.5, 12.7,27 +NA,NA,a-curv-i5,2021-22,Leicester - Leicester Integrated Preschool,01510001, 12, 17.7, 53, 58.5, 41.5, 0.0, 54.7,37.7 +NA,NA,a-curv-i5,2021-22,Leicester - Leicester Middle,01510015, 246, 17.0, 421, 42.5, 57.5, 3.8, 18.5,37.8 +NA,NA,a-curv-i5,2021-22,Lenox - Lenox Memorial High,01520505, 368, 11.8, 424, 50.2, 49.8, 2.4, 8.5,25.2 +NA,NA,a-curv-i5,2021-22,Lenox - Morris,01520015, 168, 15.7, 308, 48.4, 51.6, 4.2, 13.3,25 +NA,NA,a-curv-i5,2021-22,Leominster - Bennett,01530003, 16, 6.7, 107, 42.1, 57.9, 0.0, 50.5,50.5 +NA,NA,a-curv-i5,2021-22,Leominster - Center For Technical Education Innovation,01530605, 150, 13.7, 748, 35.4, 64.6, 8.7, 27.7,56.8 +NA,NA,a-curv-i5,2021-22,Leominster - Fall Brook,01530007, 308, 20.7, 580, 44.3, 55.7, 18.1, 19.7,48.6 +NA,NA,a-curv-i5,2021-22,Leominster - Frances Drake School,01530010, 318, 16.1, 516, 46.3, 53.7, 28.5, 34.3,69.8 +NA,NA,a-curv-i5,2021-22,Leominster - Johnny Appleseed,01530025, 357, 19.8, 652, 51.5, 48.5, 17.6, 17.9,53.8 +NA,NA,a-curv-i5,2021-22,Leominster - Leominster Center for Excellence,01530515, 14, 15.4, 45, 44.4, 48.9, 6.7, 46.7,55.6 +6.653810264385692,5,a-curv-i5,2021-22,Leominster - Leominster High School,01530505, 643, 19.2," 1,718", 49.4, 50.4, 9.6, 20.4,53,1082 +NA,NA,a-curv-i5,2021-22,Leominster - Lincoln School,01530005, 5, 7.4, 37, 56.8, 43.2, 0.0, 67.6,64.9 +NA,NA,a-curv-i5,2021-22,Leominster - Northwest,01530030, 330, 22.9, 685, 49.3, 50.7, 20.2, 19.9,60.6 +NA,NA,a-curv-i5,2021-22,Leominster - Priest Street,01530040, 56, 19.8, 159, 49.7, 50.3, 26.4, 22.6,69.8 +NA,NA,a-curv-i5,2021-22,Leominster - Samoset School,01530045, 292, 17.6, 537, 45.8, 54.0, 8.8, 22.7,51.6 +NA,NA,a-curv-i5,2021-22,Leominster - Sky View Middle School,01530320, 616, 20.3, 908, 50.2, 49.8, 13.8, 22.9,62.7 +NA,NA,a-curv-i5,2021-22,Leverett - Leverett Elementary,01540005, 53, 16.3, 141, 48.2, 51.8, 1.4, 18.4,22.7 +NA,NA,a-curv-i5,2021-22,Lexington - Bowman,01550008, 126, 20.5, 456, 49.6, 50.4, 15.6, 7.9,4.8 +NA,NA,a-curv-i5,2021-22,Lexington - Bridge,01550006, 109, 18.6, 368, 50.3, 49.7, 7.1, 13.0,12.2 +NA,NA,a-curv-i5,2021-22,Lexington - Fiske,01550015, 107, 18.3, 354, 43.2, 56.8, 11.6, 24.3,9 +NA,NA,a-curv-i5,2021-22,Lexington - Harrington,01550030, 125, 19.1, 422, 52.1, 47.9, 11.9, 12.3,9.5 +NA,NA,a-curv-i5,2021-22,Lexington - Jonas Clarke Middle,01550305, 582, 15.7, 847, 46.3, 53.6, 4.5, 14.4,8.2 +NA,NA,a-curv-i5,2021-22,Lexington - Joseph Estabrook,01550010, 142, 20.9, 539, 48.1, 52.0, 13.0, 13.9,7.8 +NA,NA,a-curv-i5,2021-22,Lexington - Lexington Children's Place,01550001, 6, 13.7, 82, 41.5, 58.5, 30.5, 50.0,25.6 +NA,NA,a-curv-i5,2021-22,Lexington - Lexington High,01550505," 1,141", 18.3," 2,287", 51.0, 48.7, 2.0, 12.2,7 +NA,NA,a-curv-i5,2021-22,Lexington - Maria Hastings,01550035, 161, 21.7, 627, 48.8, 51.2, 12.9, 15.2,8.6 +NA,NA,a-curv-i5,2021-22,Lexington - Wm Diamond Middle,01550310, 553, 17.6, 936, 48.2, 51.7, 4.4, 13.1,8 +NA,NA,a-curv-i5,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 80, 21.4, 314, 52.2, 47.8, 25.5, 21.7,87.3 +NA,NA,a-curv-i5,2021-22,Lincoln - Hanscom Middle,01570305, 137, 13.3, 221, 50.7, 48.9, 0.5, 24.0,3.2 +NA,NA,a-curv-i5,2021-22,Lincoln - Hanscom Primary,01570006, 95, 13.1, 250, 51.6, 48.4, 3.2, 23.2,2.4 +NA,NA,a-curv-i5,2021-22,Lincoln - Lincoln School,01570025, 265, 16.7, 557, 50.5, 49.4, 5.0, 18.5,20.1 +NA,NA,a-curv-i5,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,237", 18.1," 1,520", 50.3, 49.4, 0.6, 19.6,8.9 +6.36,5,a-curv-i5,2021-22,Littleton - Littleton High School,01580505, 220, 14.6, 446, 49.3, 49.8, 0.5, 12.3,11.4,451 +NA,NA,a-curv-i5,2021-22,Littleton - Littleton Middle School,01580305, 185, 21.5, 399, 50.4, 49.6, 0.5, 12.8,11.8 +NA,NA,a-curv-i5,2021-22,Littleton - Russell St Elementary,01580015, 198, 21.2, 381, 49.1, 50.7, 1.8, 20.0,8.9 +NA,NA,a-curv-i5,2021-22,Littleton - Shaker Lane Elementary,01580005, 204, 19.5, 437, 45.3, 54.7, 4.6, 20.4,10.1 +NA,NA,a-curv-i5,2021-22,Longmeadow - Blueberry Hill,01590005, 193, 19.5, 408, 49.8, 50.3, 2.2, 20.6,9.1 +NA,NA,a-curv-i5,2021-22,Longmeadow - Center,01590010, 225, 17.1, 415, 48.7, 51.3, 0.0, 21.0,11.6 +NA,NA,a-curv-i5,2021-22,Longmeadow - Glenbrook Middle,01590017, 176, 19.4, 342, 46.5, 53.5, 0.9, 17.3,13.5 +NA,NA,a-curv-i5,2021-22,Longmeadow - Longmeadow High,01590505, 401, 17.5, 900, 48.1, 51.4, 0.2, 17.7,12.1 +NA,NA,a-curv-i5,2021-22,Longmeadow - Williams Middle,01590305, 178, 17.7, 316, 48.4, 51.3, 0.0, 20.3,10.8 +NA,NA,a-curv-i5,2021-22,Longmeadow - Wolf Swamp Road,01590025, 185, 18.0, 432, 45.6, 54.4, 0.9, 25.0,20.1 +NA,NA,a-curv-i5,2021-22,Lowell - Abraham Lincoln,01600020, 310, 18.6, 507, 50.7, 49.3, 37.9, 18.2,82.5 +NA,NA,a-curv-i5,2021-22,Lowell - B.F. Butler Middle School,01600310, 250, 23.9, 566, 48.1, 51.8, 18.9, 18.7,75.8 +NA,NA,a-curv-i5,2021-22,Lowell - Bartlett Community Partnership,01600090, 299, 19.9, 526, 51.5, 48.5, 27.8, 24.3,80.6 +NA,NA,a-curv-i5,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 143, 10.2, 109, 34.9, 65.1, 16.5, 45.9,74.3 +NA,NA,a-curv-i5,2021-22,Lowell - Charles W Morey,01600030, 332, 17.0, 498, 49.4, 50.6, 36.4, 18.5,68.1 +NA,NA,a-curv-i5,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 310, 17.7, 486, 47.7, 52.3, 38.1, 18.7,89.1 +NA,NA,a-curv-i5,2021-22,Lowell - Dr An Wang School,01600345, 285, 24.2, 696, 48.6, 51.4, 22.7, 17.8,71.3 +NA,NA,a-curv-i5,2021-22,Lowell - Dr Gertrude Bailey,01600002, 330, 16.5, 479, 47.2, 52.8, 28.6, 20.3,66 +NA,NA,a-curv-i5,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 138, 3.1, 59, 22.0, 78.0, 6.8, 100.0,74.6 +NA,NA,a-curv-i5,2021-22,Lowell - Greenhalge,01600015, 313, 18.2, 502, 47.4, 52.6, 33.1, 22.7,88.5 +NA,NA,a-curv-i5,2021-22,Lowell - Henry J Robinson Middle,01600330, 269, 25.4, 681, 50.5, 49.3, 27.6, 19.8,84.6 +NA,NA,a-curv-i5,2021-22,Lowell - James S Daley Middle School,01600315, 334, 21.1, 687, 46.0, 53.9, 17.3, 20.8,63 +NA,NA,a-curv-i5,2021-22,Lowell - James Sullivan Middle School,01600340, 288, 22.8, 684, 49.0, 51.0, 31.3, 20.3,76.6 +NA,NA,a-curv-i5,2021-22,Lowell - John J Shaughnessy,01600050, 315, 17.4, 489, 50.1, 49.9, 29.9, 18.4,78.3 +NA,NA,a-curv-i5,2021-22,Lowell - Joseph McAvinnue,01600010, 318, 16.9, 475, 47.4, 52.6, 37.5, 23.0,82.1 +NA,NA,a-curv-i5,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 337, 21.9, 682, 44.6, 55.3, 24.6, 16.0,81.8 +NA,NA,a-curv-i5,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 28, 3.3, 13, 7.7, 92.3, 7.7, 100.0,100 +NA,NA,a-curv-i5,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 91, 4.6, 44, 45.5, 52.3, 6.8, 100.0,90.9 +NA,NA,a-curv-i5,2021-22,Lowell - Lowell High,01600505," 2,103", 19.6," 3,180", 47.3, 52.6, 22.8, 14.2,70.1 +NA,NA,a-curv-i5,2021-22,Lowell - Moody Elementary,01600027, 138, 21.4, 261, 53.3, 46.4, 55.2, 12.3,90 +NA,NA,a-curv-i5,2021-22,Lowell - Pawtucketville Memorial,01600036, 332, 17.2, 496, 49.8, 50.2, 25.2, 20.2,63.7 +NA,NA,a-curv-i5,2021-22,Lowell - Peter W Reilly,01600040, 304, 18.6, 500, 51.0, 49.0, 27.6, 19.4,61.6 +NA,NA,a-curv-i5,2021-22,Lowell - Pyne Arts,01600018, 413, 17.1, 520, 45.8, 54.2, 25.4, 25.0,60.6 +NA,NA,a-curv-i5,2021-22,Lowell - Rogers STEM Academy,01600005, 451, 20.4, 909, 47.0, 53.0, 32.0, 13.5,85.7 +NA,NA,a-curv-i5,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 299, 19.6, 519, 51.3, 48.8, 29.7, 19.7,82.1 +NA,NA,a-curv-i5,2021-22,Lowell - The Career Academy,01600515, 108, 8.2, 89, 32.6, 67.4, 13.5, 25.8,91 +NA,NA,a-curv-i5,2021-22,Lowell - Washington,01600055, 218, 13.6, 259, 37.5, 62.6, 44.4, 25.9,77.6 +NA,NA,a-curv-i5,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 336, 21.6, 808, 50.3, 49.6, 52.0, 13.7,71.7 +NA,NA,a-curv-i5,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 80, 17.4, 109, 56.0, 41.3, 1.8, 34.9,76.2 +NA,NA,a-curv-i5,2021-22,Ludlow - East Street Elementary School,01610010, 211, 12.3, 362, 42.5, 57.5, 9.9, 23.8,47 +NA,NA,a-curv-i5,2021-22,Ludlow - Harris Brook Elementary School,01610665, 458, 17.2, 620, 49.4, 50.7, 9.7, 18.4,42.7 +NA,NA,a-curv-i5,2021-22,Ludlow - Ludlow Senior High,01610505, 403, 14.5, 835, 49.5, 50.3, 2.8, 16.2,33.4 +NA,NA,a-curv-i5,2021-22,Ludlow - Paul R Baird Middle,01610305, 277, 15.2, 537, 52.3, 47.7, 3.5, 19.9,39.3 +NA,NA,a-curv-i5,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 1, 4.0, 4, 50.0, 50.0, 0.0, 100.0,50 +NA,NA,a-curv-i5,2021-22,Lunenburg - Lunenburg High,01620505, 235, 15.3, 460, 47.4, 52.4, 1.3, 9.8,21.3 +NA,NA,a-curv-i5,2021-22,Lunenburg - Lunenburg Middle School,01620305, 226, 22.8, 408, 49.5, 50.5, 1.2, 10.5,25.3 +NA,NA,a-curv-i5,2021-22,Lunenburg - Lunenburg Primary School,01620010, 79, 36.5, 386, 50.5, 49.5, 2.3, 14.3,33.2 +NA,NA,a-curv-i5,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 151, 22.3, 358, 50.0, 50.0, 2.0, 14.0,26.3 +NA,NA,a-curv-i5,2021-22,Lynn - A Drewicz Elementary,01630016, 122, 20.8, 467, 52.0, 48.0, 64.2, 14.1,82.2 +NA,NA,a-curv-i5,2021-22,Lynn - Aborn,01630011, 71, 17.3, 228, 47.4, 52.6, 27.6, 8.8,54 +NA,NA,a-curv-i5,2021-22,Lynn - Breed Middle School,01630405, 465, 23.5," 1,256", 45.9, 53.9, 21.2, 20.9,77.1 +NA,NA,a-curv-i5,2021-22,Lynn - Brickett Elementary,01630020, 80, 19.3, 331, 48.0, 52.0, 52.3, 13.9,84.3 +NA,NA,a-curv-i5,2021-22,Lynn - Capt William G Shoemaker,01630090, 116, 14.0, 317, 39.1, 60.9, 15.5, 51.1,50.8 +NA,NA,a-curv-i5,2021-22,Lynn - Classical High,01630505, 608, 19.9," 1,738", 46.4, 53.5, 29.9, 14.2,71.3 +NA,NA,a-curv-i5,2021-22,Lynn - Cobbet Elementary,01630035, 199, 17.1, 589, 44.8, 55.2, 66.6, 15.5,88.6 +NA,NA,a-curv-i5,2021-22,Lynn - E J Harrington,01630045, 199, 17.9, 637, 47.3, 52.8, 54.3, 22.5,88.1 +NA,NA,a-curv-i5,2021-22,Lynn - Edward A Sisson,01630095, 27, 17.8, 444, 49.8, 50.2, 34.7, 20.1,61 +6.434782608695653,5,a-curv-i5,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 46, 11.0, 221, 41.6, 57.5, 53.9, 20.8,88.7,90 +NA,NA,a-curv-i5,2021-22,Lynn - Hood,01630055, 152, 18.4, 523, 46.9, 53.2, 49.0, 18.7,77.4 +NA,NA,a-curv-i5,2021-22,Lynn - Ingalls,01630060, 210, 18.9, 689, 50.2, 49.8, 67.9, 11.6,83.7 +NA,NA,a-curv-i5,2021-22,Lynn - Julia F Callahan,01630030, 149, 13.9, 399, 43.9, 56.1, 36.1, 32.3,68.4 +NA,NA,a-curv-i5,2021-22,Lynn - Lincoln-Thomson,01630070, 63, 14.6, 208, 47.1, 52.9, 33.7, 17.3,67.8 +NA,NA,a-curv-i5,2021-22,Lynn - Lynn English High,01630510, 734, 20.3," 2,078", 47.6, 52.3, 34.2, 12.0,74.3 +NA,NA,a-curv-i5,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 724, 19.6," 1,517", 46.9, 52.8, 11.8, 22.0,72.3 +NA,NA,a-curv-i5,2021-22,Lynn - Lynn Woods,01630075, 54, 15.7, 159, 49.1, 50.9, 17.0, 21.4,47.8 +NA,NA,a-curv-i5,2021-22,Lynn - Pickering Middle,01630420, 261, 19.6, 551, 51.4, 48.6, 15.1, 23.2,59.7 +NA,NA,a-curv-i5,2021-22,Lynn - Robert L Ford,01630050, 134, 18.8, 442, 50.5, 49.6, 63.1, 12.0,81 +NA,NA,a-curv-i5,2021-22,Lynn - Sewell-Anderson,01630085, 86, 18.8, 287, 54.7, 45.3, 50.5, 9.1,64.1 +NA,NA,a-curv-i5,2021-22,Lynn - Thurgood Marshall Mid,01630305, 544, 21.8," 1,293", 47.3, 52.6, 25.2, 19.5,80.1 +NA,NA,a-curv-i5,2021-22,Lynn - Tracy,01630100, 149, 14.9, 383, 46.5, 53.5, 61.6, 10.7,85.4 +NA,NA,a-curv-i5,2021-22,Lynn - Washington Elementary School,01630005, 167, 16.6, 488, 45.3, 54.7, 61.7, 26.4,87.9 +NA,NA,a-curv-i5,2021-22,Lynn - William R Fallon,01630080, 19, 4.8, 29, 17.2, 82.8, 17.2, 100.0,100 +NA,NA,a-curv-i5,2021-22,Lynn - Wm P Connery,01630040, 177, 18.2, 566, 55.1, 44.9, 62.5, 12.9,82.9 +NA,NA,a-curv-i5,2021-22,Lynnfield - Huckleberry Hill,01640010, 110, 20.5, 450, 53.8, 46.2, 5.1, 19.1,13.6 +NA,NA,a-curv-i5,2021-22,Lynnfield - Lynnfield High,01640505, 262, 14.6, 568, 51.1, 48.8, 1.6, 18.1,10.7 +NA,NA,a-curv-i5,2021-22,Lynnfield - Lynnfield Middle School,01640405, 397, 19.3, 693, 47.2, 52.8, 1.6, 17.6,12.4 +NA,NA,a-curv-i5,2021-22,Lynnfield - Lynnfield Preschool,01640005, 4, 11.8, 46, 43.5, 56.5, 0.0, 52.2,28.3 +NA,NA,a-curv-i5,2021-22,Lynnfield - Summer Street,01640020, 110, 19.8, 435, 48.3, 51.7, 1.2, 15.4,5.5 +NA,NA,a-curv-i5,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 340, 20.9," 1,225", 51.5, 48.5, 17.3, 21.5,78.1 +NA,NA,a-curv-i5,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 19, 15.8, 50, 46.0, 54.0, 0.0, 0.0,2 +NA,NA,a-curv-i5,2021-22,Malden - Beebe,01650003, 440, 21.9, 979, 49.3, 50.7, 21.8, 13.2,64.4 +NA,NA,a-curv-i5,2021-22,Malden - Ferryway,01650013, 388, 22.7," 1,005", 48.3, 51.6, 27.5, 14.5,70.8 +NA,NA,a-curv-i5,2021-22,Malden - Forestdale,01650027, 349, 21.7, 645, 45.7, 54.3, 16.7, 23.3,58.1 +NA,NA,a-curv-i5,2021-22,Malden - Linden,01650047, 431, 20.1, 891, 44.4, 55.6, 16.2, 16.4,57.5 +NA,NA,a-curv-i5,2021-22,Malden - Malden Early Learning Center,01650049, 27, 36.0, 324, 34.0, 66.1, 0.0, 54.9,52.2 +NA,NA,a-curv-i5,2021-22,Malden - Malden High,01650505, 783, 22.0," 1,844", 50.3, 49.6, 14.6, 15.8,65.4 +NA,NA,a-curv-i5,2021-22,Malden - Salemwood,01650057, 527, 18.4," 1,003", 50.6, 49.5, 39.6, 11.1,77.4 +NA,NA,a-curv-i5,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 133, 18.4, 222, 57.2, 42.8, 2.3, 19.4,20.3 +6.709677419354838,5,a-curv-i5,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 279, 11.8, 449, 47.9, 51.5, 0.0, 8.2,14.3,450 +NA,NA,a-curv-i5,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 181, 15.8, 284, 47.9, 52.1, 0.4, 16.2,12 +NA,NA,a-curv-i5,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 201, 16.6, 307, 51.1, 48.9, 0.7, 21.2,10.1 +NA,NA,a-curv-i5,2021-22,Mansfield - Everett W Robinson,01670007, 145, 20.3, 733, 49.3, 50.6, 4.4, 16.0,23.9 +NA,NA,a-curv-i5,2021-22,Mansfield - Harold L Qualters Middle,01670035, 519, 17.0, 809, 45.9, 54.1, 1.1, 15.1,22.3 +NA,NA,a-curv-i5,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 165, 20.8, 728, 48.4, 51.7, 3.9, 16.5,23.5 +NA,NA,a-curv-i5,2021-22,Mansfield - Mansfield High,01670505, 679, 14.4," 1,108", 48.0, 51.8, 0.5, 11.8,19.2 +NA,NA,a-curv-i5,2021-22,Mansfield - Roland Green School,01670003, 10, 11.0, 110, 38.2, 61.8, 0.0, 41.8,24.6 +NA,NA,a-curv-i5,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 150, 14.7, 237, 40.9, 54.4, 0.0, 51.9,65.8 +NA,NA,a-curv-i5,2021-22,Marblehead - Glover,01680020, 150, 16.8, 310, 45.8, 54.2, 5.8, 22.9,9.4 +NA,NA,a-curv-i5,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 202, 19.9, 436, 46.3, 53.7, 10.1, 24.1,17 +NA,NA,a-curv-i5,2021-22,Marblehead - Marblehead High,01680505, 615, 14.7, 937, 48.7, 50.7, 2.8, 13.7,13.7 +NA,NA,a-curv-i5,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 275, 15.8, 394, 47.7, 52.0, 2.8, 20.3,15.5 +NA,NA,a-curv-i5,2021-22,Marblehead - Village School,01680016, 245, 24.4, 572, 46.7, 53.3, 5.2, 25.4,13.8 +NA,NA,a-curv-i5,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 85, 20.3, 222, 51.4, 48.7, 5.9, 28.4,23.9 +NA,NA,a-curv-i5,2021-22,Marion - Sippican,01690005, 152, 19.3, 415, 46.8, 53.3, 0.2, 21.7,30.4 +NA,NA,a-curv-i5,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 658, 22.6," 1,221", 49.6, 50.5, 23.2, 14.3,59.8 +NA,NA,a-curv-i5,2021-22,Marlborough - Charles Jaworek School,01700030, 278, 20.1, 704, 50.1, 49.9, 43.5, 14.8,62.9 +NA,NA,a-curv-i5,2021-22,Marlborough - Early Childhood Center,01700006, 16, 13.0, 203, 39.4, 60.6, 26.1, 46.3,46.8 +NA,NA,a-curv-i5,2021-22,Marlborough - Francis J Kane,01700008, 198, 21.4, 530, 50.0, 50.0, 27.4, 14.2,54.3 +NA,NA,a-curv-i5,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 295, 21.6, 805, 46.7, 53.3, 39.3, 13.5,58 +NA,NA,a-curv-i5,2021-22,Marlborough - Marlborough High,01700505, 628, 13.6," 1,137", 43.3, 56.4, 28.8, 12.9,57.7 +NA,NA,a-curv-i5,2021-22,Marlborough - Richer,01700025, 233, 19.6, 577, 46.8, 53.2, 39.3, 14.7,62.6 +NA,NA,a-curv-i5,2021-22,Marshfield - Daniel Webster,01710015, 83, 17.9, 396, 46.7, 53.3, 6.6, 27.8,32.8 +NA,NA,a-curv-i5,2021-22,Marshfield - Eames Way School,01710005, 56, 18.2, 217, 47.0, 53.0, 0.0, 14.8,8.3 +NA,NA,a-curv-i5,2021-22,Marshfield - Furnace Brook Middle,01710310, 549, 15.9, 856, 50.2, 49.8, 2.3, 21.4,20.2 +NA,NA,a-curv-i5,2021-22,Marshfield - Gov Edward Winslow,01710020, 98, 17.7, 370, 43.2, 56.8, 0.0, 20.8,14.3 +NA,NA,a-curv-i5,2021-22,Marshfield - Marshfield High,01710505, 550, 17.8," 1,237", 49.4, 50.6, 0.7, 17.5,17.1 +NA,NA,a-curv-i5,2021-22,Marshfield - Martinson Elementary,01710025, 108, 20.5, 529, 44.4, 55.6, 6.2, 19.5,27.2 +NA,NA,a-curv-i5,2021-22,Marshfield - South River,01710010, 75, 16.3, 261, 46.4, 53.6, 0.0, 23.4,16.5 +NA,NA,a-curv-i5,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 406, 13.0, 728, 44.8, 55.2, 14.4, 18.4,42.2 +NA,NA,a-curv-i5,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 98, 11.3, 176, 61.4, 38.6, 4.0, 27.3,52.3 +NA,NA,a-curv-i5,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 144, 20.0, 360, 45.6, 54.4, 25.8, 16.4,88.1 +6.631372549019607,5,a-curv-i5,2021-22,Masconomet - Masconomet Regional High School,07050505, 612, 13.6," 1,035", 52.8, 47.2, 0.4, 15.4,10.7,1047 +NA,NA,a-curv-i5,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 328, 18.7, 599, 52.1, 47.9, 0.5, 16.0,8.5 +NA,NA,a-curv-i5,2021-22,Mashpee - Kenneth Coombs School,01720005, 153, 17.9, 380, 49.2, 50.8, 12.4, 15.0,49.2 +NA,NA,a-curv-i5,2021-22,Mashpee - Mashpee High,01720505, 310, 11.6, 448, 47.3, 52.5, 0.9, 15.0,35.7 +NA,NA,a-curv-i5,2021-22,Mashpee - Mashpee Middle School,01720020, 155, 16.7, 241, 51.9, 48.1, 4.6, 13.3,44 +NA,NA,a-curv-i5,2021-22,Mashpee - Quashnet School,01720035, 290, 20.3, 438, 47.3, 52.7, 3.7, 17.6,47 +NA,NA,a-curv-i5,2021-22,Mattapoisett - Center,01730005, 109, 18.6, 254, 46.1, 53.9, 0.4, 20.5,26.8 +NA,NA,a-curv-i5,2021-22,Mattapoisett - Old Hammondtown,01730010, 83, 20.9, 187, 50.3, 49.7, 0.0, 16.0,25.1 +NA,NA,a-curv-i5,2021-22,Maynard - Fowler School,01740305, 267, 18.8, 460, 48.3, 51.1, 3.9, 19.8,28.5 +NA,NA,a-curv-i5,2021-22,Maynard - Green Meadow,01740010, 213, 17.4, 422, 49.1, 51.0, 10.0, 19.2,28.2 +6.826415094339623,5,a-curv-i5,2021-22,Maynard - Maynard High,01740505, 212, 13.2, 327, 49.9, 48.9, 5.8, 17.1,23.9,311 +NA,NA,a-curv-i5,2021-22,Medfield - Dale Street,01750005, 251, 17.8, 395, 51.1, 48.9, 1.3, 16.5,10.1 +NA,NA,a-curv-i5,2021-22,Medfield - Medfield Senior High,01750505, 386, 16.8, 751, 50.3, 49.7, 0.4, 10.8,6.8 +NA,NA,a-curv-i5,2021-22,Medfield - Memorial School,01750003, 178, 19.6, 437, 49.4, 50.6, 2.5, 12.1,9.6 +NA,NA,a-curv-i5,2021-22,Medfield - Ralph Wheelock School,01750007, 183, 21.9, 400, 50.0, 50.0, 3.0, 12.3,8.8 +NA,NA,a-curv-i5,2021-22,Medfield - Thomas Blake Middle,01750305, 511, 14.5, 566, 47.0, 52.8, 1.2, 15.4,7.6 +NA,NA,a-curv-i5,2021-22,Medford - Brooks School,01760130, 156, 18.8, 535, 47.3, 52.5, 2.1, 26.4,16.8 +NA,NA,a-curv-i5,2021-22,Medford - Curtis-Tufts,01760510, 24, 6.7, 22, 54.6, 40.9, 0.0, 90.9,77.3 +NA,NA,a-curv-i5,2021-22,Medford - John J McGlynn Elementary School,01760068, 151, 17.3, 451, 50.3, 49.5, 22.8, 13.5,57.4 +NA,NA,a-curv-i5,2021-22,Medford - John J. McGlynn Middle School,01760320, 328, 16.6, 509, 46.2, 53.6, 23.2, 21.4,51.3 +NA,NA,a-curv-i5,2021-22,Medford - Madeleine Dugger Andrews,01760315, 353, 16.2, 466, 51.3, 48.7, 0.0, 21.2,40.8 +NA,NA,a-curv-i5,2021-22,Medford - Medford High,01760505, 688, 13.0," 1,242", 46.2, 53.4, 11.8, 19.0,44.7 +NA,NA,a-curv-i5,2021-22,Medford - Milton Fuller Roberts,01760150, 185, 16.0, 520, 47.7, 51.9, 7.1, 20.8,31.7 +NA,NA,a-curv-i5,2021-22,Medford - Missituk Elementary School,01760140, 179, 16.2, 478, 47.7, 52.3, 33.9, 19.5,50.2 +NA,NA,a-curv-i5,2021-22,Medway - Burke/Memorial Elementary School,01770015, 201, 19.9, 476, 49.0, 51.1, 4.2, 14.3,15.6 +NA,NA,a-curv-i5,2021-22,Medway - John D Mc Govern Elementary,01770013, 125, 17.7, 353, 44.2, 55.8, 5.7, 17.9,12.8 +NA,NA,a-curv-i5,2021-22,Medway - Medway High,01770505, 312, 15.3, 637, 50.6, 49.1, 0.6, 12.9,11.9 +NA,NA,a-curv-i5,2021-22,Medway - Medway Middle,01770305, 345, 17.0, 673, 50.8, 49.2, 2.1, 17.1,17.8 +NA,NA,a-curv-i5,2021-22,Melrose - Early Childhood Center,01780003, 41, 15.9, 264, 38.6, 61.4, 6.8, 17.4,10.6 +NA,NA,a-curv-i5,2021-22,Melrose - Herbert Clark Hoover,01780017, 133, 20.1, 301, 49.5, 50.5, 11.0, 9.3,19.3 +NA,NA,a-curv-i5,2021-22,Melrose - Horace Mann,01780025, 106, 22.3, 267, 55.1, 44.6, 0.0, 15.7,3.8 +NA,NA,a-curv-i5,2021-22,Melrose - Lincoln,01780020, 176, 20.5, 410, 47.6, 52.2, 23.4, 13.2,29.8 +NA,NA,a-curv-i5,2021-22,Melrose - Melrose High,01780505, 384, 16.4, 928, 50.8, 49.0, 1.8, 15.4,15.1 +NA,NA,a-curv-i5,2021-22,Melrose - Melrose Middle,01780305, 506, 21.9, 847, 52.7, 47.2, 3.8, 15.4,18.1 +NA,NA,a-curv-i5,2021-22,Melrose - Roosevelt,01780035, 176, 21.1, 421, 49.2, 50.8, 6.7, 19.0,14.5 +NA,NA,a-curv-i5,2021-22,Melrose - Winthrop,01780050, 168, 21.2, 403, 49.4, 50.4, 1.0, 13.7,7.7 +NA,NA,a-curv-i5,2021-22,Mendon-Upton - Henry P Clough,07100179, 135, 19.8, 347, 49.6, 50.4, 5.5, 14.4,16.7 +NA,NA,a-curv-i5,2021-22,Mendon-Upton - Memorial School,07100001, 184, 21.2, 497, 49.9, 50.1, 4.4, 12.7,14.3 +NA,NA,a-curv-i5,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 392, 19.3, 672, 48.4, 51.6, 2.4, 21.7,15.6 +NA,NA,a-curv-i5,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 351, 14.0, 633, 51.2, 48.7, 1.3, 15.6,13.4 +NA,NA,a-curv-i5,2021-22,Methuen - Comprehensive Grammar School,01810050, 532, 16.9," 1,000", 48.4, 51.6, 22.4, 21.8,50.2 +NA,NA,a-curv-i5,2021-22,Methuen - Donald P Timony Grammar,01810060, 590, 19.2," 1,267", 46.0, 54.0, 19.2, 22.2,59.4 +NA,NA,a-curv-i5,2021-22,Methuen - Marsh Grammar School,01810030, 591, 16.7," 1,056", 42.8, 57.2, 8.9, 24.8,43.5 +NA,NA,a-curv-i5,2021-22,Methuen - Methuen High,01810505," 1,071", 17.5," 1,967", 48.5, 51.4, 10.8, 10.2,47.9 +NA,NA,a-curv-i5,2021-22,Methuen - Tenney Grammar School,01810055, 657, 18.4," 1,272", 48.2, 51.8, 16.7, 19.8,63 +NA,NA,a-curv-i5,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 274, 18.0, 547, 50.8, 49.2, 3.7, 17.6,52.3 +NA,NA,a-curv-i5,2021-22,Middleborough - John T. Nichols Middle,01820305, 401, 20.0, 723, 48.1, 51.7, 1.1, 17.8,42.2 +NA,NA,a-curv-i5,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 261, 21.1, 611, 49.6, 50.4, 1.6, 20.8,37.3 +NA,NA,a-curv-i5,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 102, 18.6, 300, 50.0, 50.0, 0.3, 23.0,40 +NA,NA,a-curv-i5,2021-22,Middleborough - Middleborough High,01820505, 463, 15.7, 887, 49.6, 50.2, 1.5, 14.7,35.7 +NA,NA,a-curv-i5,2021-22,Middleton - Fuller Meadow,01840003, 157, 12.1, 289, 47.8, 52.3, 2.1, 17.0,12.1 +NA,NA,a-curv-i5,2021-22,Middleton - Howe-Manning,01840005, 211, 16.2, 424, 50.2, 49.8, 3.1, 20.1,13.7 +NA,NA,a-curv-i5,2021-22,Milford - Brookside,01850065, 189, 16.4, 483, 45.3, 54.7, 39.3, 17.0,59 +NA,NA,a-curv-i5,2021-22,Milford - Memorial,01850010, 191, 16.9, 519, 49.5, 50.5, 51.3, 17.0,62.2 +NA,NA,a-curv-i5,2021-22,Milford - Milford High,01850505, 625, 17.8," 1,323", 45.4, 54.6, 19.1, 12.9,50.7 +NA,NA,a-curv-i5,2021-22,Milford - Shining Star Early Childhood Center,01850075, 31, 11.4, 172, 43.6, 56.4, 36.6, 57.6,50 +NA,NA,a-curv-i5,2021-22,Milford - Stacy Middle,01850305, 510, 22.1," 1,097", 48.0, 52.0, 20.1, 15.1,58.2 +NA,NA,a-curv-i5,2021-22,Milford - Woodland,01850090, 448, 18.3," 1,010", 47.2, 52.8, 28.0, 18.3,58.8 +NA,NA,a-curv-i5,2021-22,Millbury - Elmwood Street,01860017, 201, 18.6, 547, 45.3, 54.7, 6.6, 19.6,34.9 +NA,NA,a-curv-i5,2021-22,Millbury - Millbury Junior/Senior High,01860505, 417, 16.4, 754, 48.9, 50.8, 3.3, 21.5,37.9 +NA,NA,a-curv-i5,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 164, 19.4, 345, 47.5, 52.5, 3.8, 21.2,37.4 +NA,NA,a-curv-i5,2021-22,Millis - Clyde F Brown,01870005, 215, 20.8, 594, 50.5, 49.5, 4.2, 15.8,19 +6.465497076023392,5,a-curv-i5,2021-22,Millis - Millis High School,01870505, 171, 13.1, 329, 49.5, 49.5, 0.3, 11.3,20.4,328 +NA,NA,a-curv-i5,2021-22,Millis - Millis Middle,01870020, 193, 15.5, 271, 51.3, 48.7, 1.1, 16.6,18.8 +NA,NA,a-curv-i5,2021-22,Milton - Charles S Pierce Middle,01890410, 523, 17.4, 932, 49.6, 50.3, 1.4, 18.1,14.1 +NA,NA,a-curv-i5,2021-22,Milton - Collicot,01890005, 278, 21.9, 616, 50.8, 49.2, 3.1, 17.4,8.9 +NA,NA,a-curv-i5,2021-22,Milton - Cunningham School,01890007, 252, 22.1, 639, 49.6, 50.4, 4.1, 22.4,12.2 +NA,NA,a-curv-i5,2021-22,Milton - Glover,01890010, 288, 22.6, 631, 52.3, 47.7, 3.5, 14.3,10.6 +NA,NA,a-curv-i5,2021-22,Milton - Milton High,01890505, 535, 17.0," 1,107", 49.1, 50.6, 2.2, 19.2,18.8 +NA,NA,a-curv-i5,2021-22,Milton - Tucker,01890020, 196, 22.7, 463, 49.9, 50.1, 3.5, 18.8,25.5 +NA,NA,a-curv-i5,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 541, 12.6, 643, 36.2, 62.1, 0.6, 30.2,20.7 +NA,NA,a-curv-i5,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 65, 17.6, 272, 50.0, 49.6, 1.1, 21.7,47.1 +NA,NA,a-curv-i5,2021-22,Mohawk Trail - Colrain Central,07170010, 33, 12.5, 105, 43.8, 56.2, 2.9, 26.7,59.1 +7.220143884892087,5,a-curv-i5,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 278, 9.0, 276, 49.6, 49.6, 0.7, 29.0,47.8,271 +NA,NA,a-curv-i5,2021-22,Mohawk Trail - Sanderson Academy,07170020, 35, 13.5, 132, 50.0, 50.0, 0.0, 15.2,42.4 +NA,NA,a-curv-i5,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 119, 16.2, 149, 47.7, 52.4, 6.0, 22.8,45.6 +NA,NA,a-curv-i5,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 346, 17.9, 520, 42.5, 57.3, 4.4, 23.3,42.9 +6.776255707762557,5,a-curv-i5,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 438, 14.4, 683, 50.7, 48.9, 2.2, 15.2,35.4,670 +NA,NA,a-curv-i5,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 360, 15.8, 461, 48.4, 51.6, 4.1, 18.0,41.2 +NA,NA,a-curv-i5,2021-22,Monson - Granite Valley School,01910030, 273, 17.6, 414, 51.2, 48.8, 0.7, 23.7,45.9 +6.8018433179723505,5,a-curv-i5,2021-22,Monson - Monson High School,01910505, 217, 13.4, 333, 52.0, 47.5, 0.6, 22.2,39.6,325 +NA,NA,a-curv-i5,2021-22,Monson - Quarry Hill Community School,01910010, 55, 13.9, 104, 52.9, 47.1, 0.0, 22.1,34.6 +NA,NA,a-curv-i5,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 632, 17.9," 1,393", 49.3, 50.0, 0.6, 15.7,36 +NA,NA,a-curv-i5,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 118, 14.5, 212, 50.9, 49.1, 3.3, 21.2,46.2 +NA,NA,a-curv-i5,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 385, 13.1, 528, 53.0, 46.0, 1.0, 15.3,21.6 +NA,NA,a-curv-i5,2021-22,Mount Greylock - Williamstown Elementary,07150010, 241, 15.1, 432, 46.5, 53.2, 3.0, 12.7,22.2 +NA,NA,a-curv-i5,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 781, 23.4," 1,582", 51.8, 48.2, 1.6, 10.7,30.8 +NA,NA,a-curv-i5,2021-22,Nahant - Johnson,01960010, 61, 15.3, 166, 41.6, 58.4, 0.0, 13.3,24.1 +NA,NA,a-curv-i5,2021-22,Nantucket - Cyrus Peirce,01970010, 188, 19.2, 437, 46.7, 53.3, 10.5, 16.7,38.4 +NA,NA,a-curv-i5,2021-22,Nantucket - Nantucket Elementary,01970005, 232, 15.8, 393, 49.6, 50.4, 28.2, 22.1,45.6 +NA,NA,a-curv-i5,2021-22,Nantucket - Nantucket High,01970505, 304, 15.4, 574, 47.2, 52.8, 12.7, 12.5,37.8 +NA,NA,a-curv-i5,2021-22,Nantucket - Nantucket Intermediate School,01970020, 203, 18.5, 328, 50.0, 50.0, 16.2, 18.9,47.6 +NA,NA,a-curv-i5,2021-22,Narragansett - Narragansett Middle,07200305, 209, 17.9, 359, 48.5, 51.5, 0.6, 24.2,41.5 +NA,NA,a-curv-i5,2021-22,Narragansett - Narragansett Regional High,07200505, 248, 15.2, 423, 45.6, 53.7, 0.5, 16.8,42.1 +NA,NA,a-curv-i5,2021-22,Narragansett - Templeton Elementary School,07200020, 256, 21.6, 637, 47.6, 52.4, 0.5, 20.4,42.4 +NA,NA,a-curv-i5,2021-22,Nashoba - Center School,07250020, 172, 19.7, 506, 48.6, 51.4, 3.8, 19.6,8.9 +NA,NA,a-curv-i5,2021-22,Nashoba - Florence Sawyer School,07250025, 255, 20.0, 733, 50.2, 49.8, 1.8, 16.9,8.6 +NA,NA,a-curv-i5,2021-22,Nashoba - Hale,07250310, 118, 18.9, 280, 51.4, 48.6, 0.0, 21.4,8.6 +NA,NA,a-curv-i5,2021-22,Nashoba - Luther Burbank Middle School,07250305, 126, 16.7, 228, 47.8, 52.2, 1.3, 20.6,26.3 +NA,NA,a-curv-i5,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 143, 18.9, 474, 46.4, 53.6, 4.4, 21.3,23.2 +NA,NA,a-curv-i5,2021-22,Nashoba - Nashoba Regional,07250505, 530, 13.4, 890, 50.5, 49.1, 1.7, 12.6,11.4 +6.567396593673966,5,a-curv-i5,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 411, 13.4, 707, 38.2, 60.7, 0.4, 31.5,30.8,736 +NA,NA,a-curv-i5,2021-22,Natick - Bennett-Hemenway,01980005, 175, 20.5, 512, 45.9, 54.1, 2.5, 20.9,8.4 +NA,NA,a-curv-i5,2021-22,Natick - Brown,01980010, 176, 18.5, 456, 47.2, 52.9, 14.5, 9.7,17.3 +NA,NA,a-curv-i5,2021-22,Natick - J F Kennedy Middle School,01980305, 468, 20.2, 874, 44.1, 55.7, 3.9, 18.0,13.8 +NA,NA,a-curv-i5,2021-22,Natick - Johnson,01980031, 77, 19.8, 218, 47.3, 52.3, 1.8, 13.8,18.4 +NA,NA,a-curv-i5,2021-22,Natick - Lilja Elementary,01980035, 159, 17.3, 390, 50.3, 49.7, 5.1, 15.6,15.9 +NA,NA,a-curv-i5,2021-22,Natick - Memorial,01980043, 147, 18.9, 396, 49.5, 50.5, 1.0, 11.4,5.3 +NA,NA,a-curv-i5,2021-22,Natick - Natick High,01980505, 917, 16.1," 1,689", 47.5, 51.7, 2.7, 18.6,14.4 +NA,NA,a-curv-i5,2021-22,Natick - Wilson Middle,01980310, 469, 19.2, 829, 50.3, 49.6, 0.4, 20.6,15.3 +NA,NA,a-curv-i5,2021-22,Nauset - Nauset Regional High,06600505, 528, 12.7, 824, 54.3, 45.2, 1.9, 14.8,28.5 +NA,NA,a-curv-i5,2021-22,Nauset - Nauset Regional Middle,06600305, 340, 15.9, 540, 48.7, 51.3, 2.4, 24.1,38 +NA,NA,a-curv-i5,2021-22,Needham - Broadmeadow,01990005, 125, 20.8, 520, 46.5, 53.5, 3.5, 16.4,7.3 +NA,NA,a-curv-i5,2021-22,Needham - High Rock School,01990410, 302, 19.4, 454, 52.9, 47.1, 2.4, 17.6,7.9 +NA,NA,a-curv-i5,2021-22,Needham - John Eliot,01990020, 120, 18.2, 436, 48.9, 51.2, 6.9, 17.9,16.7 +NA,NA,a-curv-i5,2021-22,Needham - Needham High,01990505, 728, 16.9," 1,671", 50.4, 48.8, 1.2, 17.1,7.6 +NA,NA,a-curv-i5,2021-22,Needham - Newman Elementary,01990050, 163, 19.2, 693, 46.6, 53.4, 5.2, 24.0,8.5 +NA,NA,a-curv-i5,2021-22,Needham - Pollard Middle,01990405, 675, 16.7, 836, 51.1, 48.7, 1.7, 20.9,9.3 +NA,NA,a-curv-i5,2021-22,Needham - Sunita L. Williams Elementary,01990035, 125, 20.3, 508, 45.1, 54.9, 7.1, 16.3,8.3 +NA,NA,a-curv-i5,2021-22,Needham - William Mitchell,01990040, 120, 18.5, 445, 47.9, 52.1, 3.6, 15.5,6.1 +NA,NA,a-curv-i5,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 396, 16.6, 802, 50.0, 50.0, 10.5, 24.1,63.6 +NA,NA,a-curv-i5,2021-22,New Bedford - Abraham Lincoln,02010095, 286, 20.7, 658, 47.0, 53.0, 33.4, 12.8,87.7 +NA,NA,a-curv-i5,2021-22,New Bedford - Alfred J Gomes,02010063, 271, 18.9, 506, 49.2, 50.8, 56.9, 20.8,91.1 +NA,NA,a-curv-i5,2021-22,New Bedford - Betsey B Winslow,02010140, 104, 18.5, 231, 52.4, 47.2, 7.4, 15.2,65.8 +NA,NA,a-curv-i5,2021-22,New Bedford - Carlos Pacheco,02010105, 156, 14.9, 308, 53.6, 46.4, 38.6, 26.0,90.3 +NA,NA,a-curv-i5,2021-22,New Bedford - Casimir Pulaski,02010123, 321, 15.7, 570, 46.0, 54.0, 9.0, 31.2,61.4 +NA,NA,a-curv-i5,2021-22,New Bedford - Charles S Ashley,02010010, 137, 15.8, 266, 48.9, 51.1, 17.3, 21.8,70.7 +NA,NA,a-curv-i5,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 113, 21.0, 293, 53.9, 46.1, 15.4, 19.1,77.5 +NA,NA,a-curv-i5,2021-22,New Bedford - Ellen R Hathaway,02010075, 119, 15.6, 290, 48.3, 51.7, 33.1, 17.6,85.9 +NA,NA,a-curv-i5,2021-22,New Bedford - Elwyn G Campbell,02010020, 110, 16.9, 293, 42.7, 57.3, 29.0, 38.2,76.8 +NA,NA,a-curv-i5,2021-22,New Bedford - Hayden/McFadden,02010078, 407, 14.2, 657, 50.5, 49.5, 46.4, 27.4,90.3 +NA,NA,a-curv-i5,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 171, 18.6, 390, 50.5, 49.2, 44.4, 18.2,92.8 +NA,NA,a-curv-i5,2021-22,New Bedford - James B Congdon,02010040, 148, 15.9, 284, 50.0, 50.0, 31.3, 16.9,87 +NA,NA,a-curv-i5,2021-22,New Bedford - Jireh Swift,02010130, 93, 14.3, 218, 53.7, 46.3, 19.7, 13.8,75.2 +NA,NA,a-curv-i5,2021-22,New Bedford - John Avery Parker,02010115, 90, 20.9, 253, 46.6, 53.4, 33.6, 19.4,85.8 +NA,NA,a-curv-i5,2021-22,New Bedford - John B Devalles,02010050, 144, 17.5, 315, 52.4, 47.6, 36.8, 16.5,91.4 +NA,NA,a-curv-i5,2021-22,New Bedford - Keith Middle School,02010405, 500, 17.1, 962, 45.6, 54.3, 12.5, 21.6,82 +NA,NA,a-curv-i5,2021-22,New Bedford - New Bedford High,02010505," 1,365", 18.3," 3,030", 46.8, 53.1, 28.8, 18.3,78.8 +NA,NA,a-curv-i5,2021-22,New Bedford - Normandin Middle School,02010410, 577, 20.3," 1,103", 47.4, 52.6, 14.9, 18.7,73 +NA,NA,a-curv-i5,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 65, 18.3, 160, 51.3, 48.8, 58.1, 20.0,89.4 +NA,NA,a-curv-i5,2021-22,New Bedford - Roosevelt Middle School,02010415, 468, 16.8, 815, 48.2, 51.8, 25.3, 25.6,87.5 +NA,NA,a-curv-i5,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 380, 13.6, 637, 42.9, 57.1, 17.1, 36.4,88.5 +NA,NA,a-curv-i5,2021-22,New Bedford - Thomas R Rodman,02010125, 97, 18.3, 219, 47.5, 52.5, 21.5, 21.9,81.7 +NA,NA,a-curv-i5,2021-22,New Bedford - Trinity Day Academy,02010510, 135, 6.3, 102, 31.4, 67.7, 12.8, 100.0,92.2 +7.584496124031008,5,a-curv-i5,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 129, 7.7, 152, 33.6, 66.5, 21.1, 36.8,90.8,67 +NA,NA,a-curv-i5,2021-22,New Bedford - William H Taylor,02010135, 110, 18.3, 257, 47.1, 52.9, 15.2, 21.4,76.3 +NA,NA,a-curv-i5,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 233, 21.1, 651, 49.0, 51.0, 16.9, 10.9,61.8 +NA,NA,a-curv-i5,2021-22,New Salem-Wendell - Swift River,07280015, 88, 16.5, 132, 50.0, 50.0, 0.0, 31.1,48.5 +NA,NA,a-curv-i5,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 139, 18.9, 286, 53.2, 46.9, 4.9, 26.2,15 +NA,NA,a-curv-i5,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 206, 19.5, 631, 49.6, 50.4, 5.9, 21.9,14.6 +NA,NA,a-curv-i5,2021-22,Newburyport - Newburyport High,02040505, 677, 16.5, 801, 50.4, 49.4, 2.5, 16.1,12.4 +NA,NA,a-curv-i5,2021-22,Newburyport - Rupert A Nock Middle,02040305, 387, 16.9, 493, 49.1, 50.9, 3.5, 24.3,12.6 +NA,NA,a-curv-i5,2021-22,Newton - A E Angier,02070005, 167, 17.9, 421, 48.2, 51.3, 8.3, 17.6,8.6 +NA,NA,a-curv-i5,2021-22,Newton - Bigelow Middle,02070305, 290, 17.8, 479, 52.2, 47.6, 7.1, 18.8,18.2 +NA,NA,a-curv-i5,2021-22,Newton - Bowen,02070015, 131, 18.7, 345, 49.9, 49.9, 9.3, 17.7,11.6 +NA,NA,a-curv-i5,2021-22,Newton - C C Burr,02070020, 125, 20.3, 356, 48.3, 51.1, 12.9, 17.7,16.6 +NA,NA,a-curv-i5,2021-22,Newton - Cabot,02070025, 145, 20.4, 419, 49.6, 50.1, 7.4, 15.3,12.9 +NA,NA,a-curv-i5,2021-22,Newton - Charles E Brown Middle,02070310, 503, 19.9, 777, 46.2, 53.4, 3.0, 19.1,10.8 +NA,NA,a-curv-i5,2021-22,Newton - Countryside,02070040, 132, 20.3, 377, 47.2, 52.3, 11.4, 16.7,10.3 +NA,NA,a-curv-i5,2021-22,Newton - F A Day Middle,02070315, 508, 19.5, 945, 50.0, 49.8, 2.0, 15.3,12.6 +NA,NA,a-curv-i5,2021-22,Newton - Franklin,02070055, 146, 19.7, 404, 55.2, 44.8, 11.6, 14.1,15.6 +NA,NA,a-curv-i5,2021-22,Newton - Horace Mann,02070075, 132, 19.8, 369, 46.1, 53.4, 8.1, 14.1,15.7 +NA,NA,a-curv-i5,2021-22,Newton - John Ward,02070120, 88, 17.1, 213, 52.1, 47.9, 6.1, 13.2,4.2 +NA,NA,a-curv-i5,2021-22,Newton - Lincoln-Eliot,02070070, 125, 18.8, 326, 45.1, 54.6, 21.5, 21.8,31.6 +NA,NA,a-curv-i5,2021-22,Newton - Mason-Rice,02070080, 137, 17.5, 342, 50.9, 49.1, 9.4, 14.0,5.6 +NA,NA,a-curv-i5,2021-22,Newton - Memorial Spaulding,02070105, 153, 18.8, 404, 54.2, 45.8, 12.9, 18.1,8.9 +NA,NA,a-curv-i5,2021-22,Newton - Newton Early Childhood Program,02070108, 25, 11.3, 220, 37.3, 62.7, 10.9, 66.8,19.6 +NA,NA,a-curv-i5,2021-22,Newton - Newton North High,02070505," 1,168", 14.2," 2,100", 48.0, 51.4, 3.1, 15.0,15.1 +NA,NA,a-curv-i5,2021-22,Newton - Newton South High,02070510," 1,116", 13.0," 1,856", 47.1, 52.5, 2.4, 16.9,11.8 +NA,NA,a-curv-i5,2021-22,Newton - Oak Hill Middle,02070320, 496, 15.5, 671, 49.2, 50.7, 5.2, 20.3,14 +NA,NA,a-curv-i5,2021-22,Newton - Peirce,02070100, 96, 17.9, 243, 48.6, 51.4, 6.6, 17.3,12.4 +NA,NA,a-curv-i5,2021-22,Newton - Underwood,02070115, 90, 17.4, 220, 55.0, 45.0, 11.8, 10.9,15.5 +NA,NA,a-curv-i5,2021-22,Newton - Williams,02070125, 88, 18.1, 225, 46.2, 53.8, 6.7, 16.9,11.6 +NA,NA,a-curv-i5,2021-22,Newton - Zervas,02070130, 160, 18.7, 422, 48.8, 51.2, 10.0, 18.5,12.3 +NA,NA,a-curv-i5,2021-22,Norfolk - Freeman-Kennedy School,02080005, 174, 22.4, 545, 47.5, 52.5, 1.8, 21.5,9 +NA,NA,a-curv-i5,2021-22,Norfolk - H Olive Day,02080015, 95, 23.4, 496, 50.0, 50.0, 3.2, 15.1,6.7 +NA,NA,a-curv-i5,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 488, 16.5, 591, 73.9, 25.4, 0.3, 21.5,23.7 +NA,NA,a-curv-i5,2021-22,North Adams - Brayton,02090035, 125, 13.2, 249, 41.0, 59.0, 0.4, 25.7,79.1 +NA,NA,a-curv-i5,2021-22,North Adams - Colegrove Park Elementary,02090008, 125, 14.3, 258, 47.3, 52.7, 3.5, 22.5,76.4 +NA,NA,a-curv-i5,2021-22,North Adams - Drury High,02090505, 261, 14.0, 517, 54.9, 45.1, 0.0, 23.4,71.8 +NA,NA,a-curv-i5,2021-22,North Adams - Greylock,02090015, 107, 16.2, 268, 50.8, 49.3, 0.8, 24.3,71.6 +NA,NA,a-curv-i5,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 157, 17.4, 441, 40.1, 59.6, 2.7, 32.7,25.9 +NA,NA,a-curv-i5,2021-22,North Andover - Annie L Sargent School,02110018, 214, 19.4, 463, 47.5, 52.5, 0.9, 20.1,11.2 +NA,NA,a-curv-i5,2021-22,North Andover - Atkinson,02110001, 159, 16.1, 285, 48.1, 51.9, 8.8, 21.4,42.5 +NA,NA,a-curv-i5,2021-22,North Andover - Franklin,02110010, 217, 15.8, 383, 45.7, 54.3, 2.1, 21.7,13.3 +NA,NA,a-curv-i5,2021-22,North Andover - Kittredge,02110015, 126, 16.1, 225, 46.2, 53.8, 4.0, 18.7,12.9 +NA,NA,a-curv-i5,2021-22,North Andover - North Andover High,02110505, 806, 16.3," 1,351", 48.3, 51.6, 0.7, 14.4,22.1 +NA,NA,a-curv-i5,2021-22,North Andover - North Andover Middle,02110305, 744, 23.3," 1,092", 50.7, 49.2, 2.4, 18.2,24.9 +NA,NA,a-curv-i5,2021-22,North Andover - Thomson,02110020, 135, 20.7, 310, 51.6, 48.4, 7.4, 22.6,35.5 +NA,NA,a-curv-i5,2021-22,North Attleborough - Amvet Boulevard,02120007, 150, 19.0, 419, 51.3, 48.7, 3.3, 13.4,19.6 +NA,NA,a-curv-i5,2021-22,North Attleborough - Community,02120030, 136, 13.8, 275, 50.9, 49.1, 11.6, 31.3,61.1 +NA,NA,a-curv-i5,2021-22,North Attleborough - Falls,02120010, 110, 13.3, 216, 47.7, 52.3, 1.4, 20.4,23.6 +NA,NA,a-curv-i5,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 213, 18.8, 583, 44.9, 55.1, 2.1, 20.4,20.2 +NA,NA,a-curv-i5,2021-22,North Attleborough - North Attleboro High,02120505, 646, 16.6," 1,152", 49.4, 49.9, 0.5, 12.6,23.5 +NA,NA,a-curv-i5,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 85, 10.5, 178, 37.6, 62.4, 8.4, 57.9,37.1 +NA,NA,a-curv-i5,2021-22,North Attleborough - North Attleborough Middle,02120305, 537, 18.3, 970, 50.3, 49.7, 0.8, 18.9,24.6 +NA,NA,a-curv-i5,2021-22,North Attleborough - Roosevelt Avenue,02120015, 82, 21.4, 256, 46.9, 53.1, 2.0, 17.6,20.7 +NA,NA,a-curv-i5,2021-22,North Brookfield - North Brookfield Elementary,02150015, 51, 19.0, 304, 50.3, 49.7, 3.6, 22.7,48 +NA,NA,a-curv-i5,2021-22,North Brookfield - North Brookfield High,02150505, 89, 10.6, 173, 50.3, 49.7, 3.5, 24.9,54.3 +NA,NA,a-curv-i5,2021-22,North Middlesex - Ashby Elementary,07350010, 70, 20.3, 142, 46.5, 53.5, 1.4, 19.0,34.5 +NA,NA,a-curv-i5,2021-22,North Middlesex - Hawthorne Brook,07350030, 296, 21.1, 496, 49.8, 50.2, 1.8, 24.8,36.7 +NA,NA,a-curv-i5,2021-22,North Middlesex - Nissitissit Middle School,07350310, 341, 18.2, 496, 44.4, 55.2, 0.6, 27.2,26.2 +NA,NA,a-curv-i5,2021-22,North Middlesex - North Middlesex Regional,07350505, 460, 17.4, 802, 49.3, 50.4, 2.1, 21.8,23.8 +NA,NA,a-curv-i5,2021-22,North Middlesex - Spaulding Memorial,07350005, 201, 22.8, 457, 51.0, 49.0, 3.3, 14.2,28.9 +NA,NA,a-curv-i5,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 27, 5.6, 111, 35.1, 64.9, 4.5, 40.5,39.6 +NA,NA,a-curv-i5,2021-22,North Middlesex - Varnum Brook,07350035, 250, 23.3, 582, 51.2, 48.8, 2.1, 18.6,29 +NA,NA,a-curv-i5,2021-22,North Reading - E Ethel Little School,02170003, 158, 19.4, 299, 50.2, 49.8, 0.3, 19.1,13.4 +NA,NA,a-curv-i5,2021-22,North Reading - J Turner Hood,02170010, 192, 19.4, 362, 45.0, 55.0, 1.1, 19.6,14.1 +NA,NA,a-curv-i5,2021-22,North Reading - L D Batchelder,02170005, 210, 23.4, 464, 44.4, 55.6, 0.4, 16.6,7.3 +NA,NA,a-curv-i5,2021-22,North Reading - North Reading High,02170505, 314, 16.1, 635, 50.4, 49.0, 0.5, 17.2,11 +NA,NA,a-curv-i5,2021-22,North Reading - North Reading Middle,02170305, 367, 16.2, 564, 50.9, 49.1, 0.7, 20.4,12.6 +NA,NA,a-curv-i5,2021-22,Northampton - Bridge Street,02100005, 87, 17.9, 295, 46.4, 53.2, 11.5, 31.2,49.2 +NA,NA,a-curv-i5,2021-22,Northampton - Jackson Street,02100020, 112, 17.5, 305, 47.2, 52.5, 7.5, 18.7,28.5 +NA,NA,a-curv-i5,2021-22,Northampton - John F Kennedy Middle School,02100410, 474, 14.6, 586, 47.3, 51.7, 3.8, 22.7,34.6 +NA,NA,a-curv-i5,2021-22,Northampton - Leeds,02100025, 92, 18.9, 320, 41.3, 58.4, 9.7, 29.1,35 +NA,NA,a-curv-i5,2021-22,Northampton - Northampton High,02100505, 426, 15.9, 917, 49.5, 49.0, 3.2, 17.8,26.7 +NA,NA,a-curv-i5,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 73, 20.7, 247, 47.8, 51.4, 6.5, 23.1,32 +NA,NA,a-curv-i5,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 450, 12.3, 555, 41.3, 58.2, 3.6, 40.0,40.2 +NA,NA,a-curv-i5,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 759, 14.3," 1,268", 52.4, 47.6, 2.4, 14.5,12.8 +NA,NA,a-curv-i5,2021-22,Northborough - Fannie E Proctor,02130015, 54, 19.8, 257, 47.5, 52.5, 8.6, 16.3,23.4 +NA,NA,a-curv-i5,2021-22,Northborough - Lincoln Street,02130003, 57, 19.7, 273, 46.5, 53.5, 4.8, 18.7,18.7 +NA,NA,a-curv-i5,2021-22,Northborough - Marguerite E Peaslee,02130014, 59, 19.0, 262, 48.5, 51.5, 8.0, 25.6,18.3 +NA,NA,a-curv-i5,2021-22,Northborough - Marion E Zeh,02130020, 54, 21.1, 253, 47.4, 52.6, 7.1, 27.7,17.8 +NA,NA,a-curv-i5,2021-22,Northborough - Robert E. Melican Middle School,02130305, 340, 17.9, 529, 46.5, 53.5, 3.2, 24.2,18.9 +NA,NA,a-curv-i5,2021-22,Northbridge - Northbridge Elementary School,02140001, 259, 19.1, 967, 47.3, 52.7, 3.5, 24.4,43.2 +NA,NA,a-curv-i5,2021-22,Northbridge - Northbridge High,02140505, 315, 15.3, 539, 44.3, 55.7, 2.4, 13.9,35.6 +NA,NA,a-curv-i5,2021-22,Northbridge - Northbridge Middle,02140305, 282, 20.8, 520, 54.4, 45.6, 2.3, 15.4,41.7 +NA,NA,a-curv-i5,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 977, 18.3," 1,324", 43.7, 56.1, 3.4, 25.8,52 +NA,NA,a-curv-i5,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 433, 15.9, 530, 39.1, 60.9, 0.0, 12.3,46.2 +NA,NA,a-curv-i5,2021-22,Norton - Henri A. Yelle,02180060, 201, 21.3, 357, 51.8, 48.2, 2.5, 25.8,30.5 +NA,NA,a-curv-i5,2021-22,Norton - J C Solmonese,02180015, 206, 18.3, 494, 51.4, 48.6, 2.6, 26.7,24.1 +NA,NA,a-curv-i5,2021-22,Norton - L G Nourse Elementary,02180010, 139, 18.7, 278, 47.8, 52.2, 2.5, 25.9,37.8 +NA,NA,a-curv-i5,2021-22,Norton - Norton High,02180505, 406, 14.2, 664, 49.4, 50.2, 1.5, 17.3,22.1 +NA,NA,a-curv-i5,2021-22,Norton - Norton Middle,02180305, 366, 17.3, 594, 49.3, 50.7, 1.9, 19.0,28.6 +NA,NA,a-curv-i5,2021-22,Norwell - Grace Farrar Cole,02190005, 116, 20.2, 530, 44.2, 55.9, 0.9, 17.4,8.7 +NA,NA,a-curv-i5,2021-22,Norwell - Norwell High,02190505, 332, 13.3, 630, 50.3, 49.7, 0.0, 14.0,5.9 +NA,NA,a-curv-i5,2021-22,Norwell - Norwell Middle School,02190405, 494, 16.9, 502, 47.6, 52.4, 0.0, 14.1,7.8 +NA,NA,a-curv-i5,2021-22,Norwell - William G Vinal,02190020, 115, 20.6, 533, 47.7, 52.0, 0.8, 15.4,2.6 +NA,NA,a-curv-i5,2021-22,Norwood - Balch,02200005, 135, 17.6, 319, 49.5, 50.5, 35.4, 20.4,62.1 +NA,NA,a-curv-i5,2021-22,Norwood - Charles J Prescott,02200025, 100, 17.3, 243, 52.7, 47.3, 18.9, 21.8,29.6 +NA,NA,a-curv-i5,2021-22,Norwood - Cornelius M Callahan,02200010, 97, 17.6, 229, 47.6, 52.4, 14.4, 30.6,41.5 +NA,NA,a-curv-i5,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 372, 17.5, 730, 52.1, 47.5, 10.3, 25.8,43.6 +NA,NA,a-curv-i5,2021-22,Norwood - F A Cleveland,02200015, 138, 16.4, 308, 45.5, 54.6, 15.3, 26.3,33.4 +NA,NA,a-curv-i5,2021-22,Norwood - George F. Willett,02200075, 67, 17.7, 405, 51.4, 48.6, 22.7, 31.9,43.7 +NA,NA,a-curv-i5,2021-22,Norwood - John P Oldham,02200020, 113, 16.8, 263, 49.4, 50.6, 11.0, 29.3,40.7 +NA,NA,a-curv-i5,2021-22,Norwood - Norwood High,02200505, 519, 14.3," 1,002", 50.6, 49.0, 6.0, 19.0,37.6 +NA,NA,a-curv-i5,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 206, 15.9, 445, 47.6, 52.4, 22.7, 23.6,43.8 +NA,NA,a-curv-i5,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 272, 15.3, 552, 35.5, 64.3, 0.0, 20.8,26.6 +NA,NA,a-curv-i5,2021-22,Old Rochester - Old Rochester Regional High,07400505, 360, 15.6, 682, 47.8, 52.2, 0.2, 14.2,20.4 +NA,NA,a-curv-i5,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 298, 17.5, 415, 46.5, 53.3, 0.0, 18.3,24.8 +NA,NA,a-curv-i5,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 44, 20.0, 320, 45.3, 54.7, 3.8, 19.4,42.2 +NA,NA,a-curv-i5,2021-22,Orange - Dexter Park,02230010, 85, 23.4, 284, 49.7, 50.4, 1.8, 36.3,78.2 +NA,NA,a-curv-i5,2021-22,Orange - Fisher Hill,02230015, 65, 17.3, 242, 45.5, 54.6, 1.7, 23.1,74.8 +NA,NA,a-curv-i5,2021-22,Orleans - Orleans Elementary,02240005, 178, 10.9, 164, 56.1, 43.9, 4.9, 21.3,37.8 +NA,NA,a-curv-i5,2021-22,Oxford - Alfred M Chaffee,02260010, 78, 14.8, 287, 53.3, 46.7, 2.8, 20.6,42.5 +NA,NA,a-curv-i5,2021-22,Oxford - Clara Barton,02260005, 64, 14.0, 254, 49.2, 50.8, 1.6, 29.1,47.6 +NA,NA,a-curv-i5,2021-22,Oxford - Oxford High,02260505, 259, 15.5, 520, 51.7, 47.5, 0.8, 17.7,47.5 +NA,NA,a-curv-i5,2021-22,Oxford - Oxford Middle,02260405, 192, 20.1, 412, 44.4, 55.6, 1.7, 18.9,46.1 +NA,NA,a-curv-i5,2021-22,Palmer - Old Mill Pond,02270008, 639, 15.0, 625, 47.4, 52.6, 4.8, 23.0,60.2 +NA,NA,a-curv-i5,2021-22,Palmer - Palmer High,02270505, 302, 14.1, 586, 47.1, 52.4, 3.9, 19.3,59.7 +NA,NA,a-curv-i5,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 529, 11.7, 610, 38.7, 60.5, 0.3, 27.5,43 +NA,NA,a-curv-i5,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Peabody - Captain Samuel Brown,02290005, 191, 15.3, 366, 46.2, 53.8, 7.1, 38.0,44.5 +NA,NA,a-curv-i5,2021-22,Peabody - Center,02290015, 177, 19.3, 424, 50.9, 49.1, 21.0, 13.9,50.9 +NA,NA,a-curv-i5,2021-22,Peabody - J Henry Higgins Middle,02290305, 771, 21.9," 1,437", 50.1, 49.8, 10.4, 21.0,46.8 +NA,NA,a-curv-i5,2021-22,Peabody - John E Burke,02290007, 97, 20.7, 249, 52.2, 47.8, 4.0, 23.3,22.5 +NA,NA,a-curv-i5,2021-22,Peabody - John E. McCarthy,02290016, 161, 14.6, 359, 49.6, 50.4, 5.6, 35.4,42.1 +NA,NA,a-curv-i5,2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 68, 9.3, 127, 63.8, 36.2, 4.7, 15.0,68.5 +NA,NA,a-curv-i5,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 764, 15.5," 1,473", 47.9, 52.0, 9.6, 15.6,46 +NA,NA,a-curv-i5,2021-22,Peabody - South Memorial,02290035, 161, 19.4, 420, 53.6, 46.4, 7.4, 11.4,33.8 +NA,NA,a-curv-i5,2021-22,Peabody - Thomas Carroll,02290010, 212, 22.0, 583, 50.9, 49.1, 28.3, 13.9,65.9 +NA,NA,a-curv-i5,2021-22,Peabody - West Memorial,02290045, 120, 16.2, 261, 45.2, 54.8, 1.9, 21.8,24.1 +NA,NA,a-curv-i5,2021-22,Peabody - William A Welch Sr,02290027, 153, 17.6, 343, 46.9, 53.1, 17.8, 15.5,73.5 +NA,NA,a-curv-i5,2021-22,Pelham - Pelham Elementary,02300005, 43, 16.8, 120, 36.7, 62.5, 1.7, 18.3,21.7 +NA,NA,a-curv-i5,2021-22,Pembroke - Bryantville Elementary,02310003, 165, 19.7, 442, 45.5, 54.5, 4.3, 19.2,28.5 +NA,NA,a-curv-i5,2021-22,Pembroke - Hobomock Elementary,02310010, 159, 18.8, 410, 48.1, 52.0, 2.2, 21.5,15.1 +NA,NA,a-curv-i5,2021-22,Pembroke - North Pembroke Elementary,02310015, 168, 19.9, 519, 50.9, 49.1, 1.9, 18.3,17.2 +NA,NA,a-curv-i5,2021-22,Pembroke - Pembroke Community Middle School,02310305, 243, 19.5, 416, 46.4, 53.6, 1.2, 17.3,22.8 +6.316353887399464,5,a-curv-i5,2021-22,Pembroke - Pembroke High School,02310505, 373, 16.3, 786, 48.5, 51.2, 0.4, 12.9,16.9,785 +NA,NA,a-curv-i5,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 108, 17.1, 205, 45.4, 54.6, 1.0, 29.3,17.1 +NA,NA,a-curv-i5,2021-22,Pentucket - Dr John C Page School,07450015, 177, 16.0, 304, 47.4, 52.6, 0.7, 29.9,10.9 +NA,NA,a-curv-i5,2021-22,Pentucket - Elmer S Bagnall,07450005, 271, 16.7, 480, 47.9, 52.1, 1.0, 23.1,15.4 +NA,NA,a-curv-i5,2021-22,Pentucket - Helen R Donaghue School,07450010, 123, 20.6, 249, 48.2, 51.8, 0.0, 23.7,17.7 +NA,NA,a-curv-i5,2021-22,Pentucket - Pentucket Regional Middle,07450405, 209, 17.1, 334, 45.8, 53.9, 0.3, 22.5,17.7 +NA,NA,a-curv-i5,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 406, 13.3, 632, 48.6, 51.1, 0.2, 16.8,18.5 +NA,NA,a-curv-i5,2021-22,Petersham - Petersham Center,02340005, 49, 16.9, 117, 47.9, 52.1, 1.7, 18.0,37.6 +5.094736842105263,5,a-curv-i5,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 38, 23.8, 143, 44.8, 55.2, 19.6, 26.6,88.8,138 +7.428571428571428,5,a-curv-i5,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 245, 14.1, 150, 46.7, 53.3, 12.7, 26.7,88.7,175 +NA,NA,a-curv-i5,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 25, 21.7, 178, 47.2, 52.8, 57.9, 11.2,80.9 +NA,NA,a-curv-i5,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 367, 18.2, 798, 52.1, 47.9, 22.8, 8.3,57 +NA,NA,a-curv-i5,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 160, 18.9, 382, 55.0, 45.0, 11.5, 14.7,47.4 +NA,NA,a-curv-i5,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 57, 16.2, 186, 54.3, 45.7, 0.5, 23.1,35 +NA,NA,a-curv-i5,2021-22,Pioneer Valley - Northfield Elementary,07500008, 74, 14.5, 205, 46.8, 53.2, 2.0, 22.9,47.3 +NA,NA,a-curv-i5,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 229, 11.9, 260, 50.0, 50.0, 1.2, 15.8,33.9 +NA,NA,a-curv-i5,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 334, 16.5, 553, 49.7, 50.1, 2.7, 13.0,24.6 +NA,NA,a-curv-i5,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 338, 13.5, 405, 64.2, 34.8, 0.3, 23.5,40 +NA,NA,a-curv-i5,2021-22,Pittsfield - Allendale,02360010, 104, 13.8, 248, 44.0, 56.1, 5.2, 16.9,69 +NA,NA,a-curv-i5,2021-22,Pittsfield - Crosby,02360065, 95, 12.7, 269, 49.1, 50.9, 8.6, 25.3,83.6 +NA,NA,a-curv-i5,2021-22,Pittsfield - Crosby Educational Academy,02360030, 4, 5.3, 21, 33.3, 66.7, 0.0, 100.0,95.2 +NA,NA,a-curv-i5,2021-22,Pittsfield - Eagle Education Academy,02360525, 37, 4.4, 24, 16.7, 83.3, 4.2, 100.0,100 +NA,NA,a-curv-i5,2021-22,Pittsfield - Egremont,02360035, 124, 16.3, 420, 51.0, 49.1, 8.6, 18.8,58.1 +NA,NA,a-curv-i5,2021-22,Pittsfield - John T Reid Middle,02360305, 343, 13.4, 466, 46.6, 53.4, 5.2, 25.5,74.3 +NA,NA,a-curv-i5,2021-22,Pittsfield - Morningside Community School,02360055, 125, 15.9, 342, 53.2, 46.5, 12.9, 25.2,84.8 +NA,NA,a-curv-i5,2021-22,Pittsfield - Pittsfield High,02360505, 413, 12.3, 667, 49.8, 49.9, 4.8, 23.7,55.9 +NA,NA,a-curv-i5,2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 68, 14.0, 164, 52.4, 47.6, 1.8, 11.6,57.9 +NA,NA,a-curv-i5,2021-22,Pittsfield - Silvio O Conte Community,02360105, 125, 14.8, 312, 52.9, 46.8, 10.3, 19.2,90.7 +NA,NA,a-curv-i5,2021-22,Pittsfield - Stearns,02360090, 65, 16.2, 221, 40.7, 59.3, 1.8, 29.4,60.6 +NA,NA,a-curv-i5,2021-22,Pittsfield - Taconic High,02360510, 422, 13.6, 825, 50.1, 49.7, 2.8, 20.0,63 +NA,NA,a-curv-i5,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 286, 13.7, 471, 46.7, 53.1, 5.3, 18.9,61.6 +NA,NA,a-curv-i5,2021-22,Pittsfield - Williams,02360100, 92, 13.6, 258, 47.3, 52.7, 8.9, 13.2,32.2 +NA,NA,a-curv-i5,2021-22,Plainville - Anna Ware Jackson,02380010, 59, 17.1, 299, 46.5, 53.5, 7.4, 28.4,28.1 +NA,NA,a-curv-i5,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 64, 22.2, 355, 47.6, 52.4, 2.8, 20.6,29 +NA,NA,a-curv-i5,2021-22,Plymouth - Cold Spring,02390005, 146, 19.2, 230, 53.5, 46.5, 19.6, 14.4,48.3 +NA,NA,a-curv-i5,2021-22,Plymouth - Federal Furnace School,02390011, 311, 14.6, 374, 45.2, 54.8, 2.9, 23.5,36.1 +NA,NA,a-curv-i5,2021-22,Plymouth - Hedge,02390010, 134, 18.5, 204, 47.1, 52.9, 28.9, 15.7,75.5 +NA,NA,a-curv-i5,2021-22,Plymouth - Indian Brook,02390012, 358, 19.0, 559, 48.5, 51.5, 0.4, 18.1,28.1 +NA,NA,a-curv-i5,2021-22,Plymouth - Manomet Elementary,02390015, 158, 19.8, 257, 48.3, 51.8, 0.0, 22.2,37.4 +NA,NA,a-curv-i5,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 338, 19.3, 517, 46.6, 53.4, 7.9, 15.9,35 +NA,NA,a-curv-i5,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 539, 18.0, 939, 50.0, 50.1, 8.0, 19.4,40.9 +NA,NA,a-curv-i5,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 23, 9.8, 225, 32.0, 68.0, 4.9, 59.1,39.1 +NA,NA,a-curv-i5,2021-22,Plymouth - Plymouth North High,02390505, 929, 15.9," 1,297", 47.4, 52.3, 4.5, 15.0,33.4 +NA,NA,a-curv-i5,2021-22,Plymouth - Plymouth South High,02390515, 929, 13.8," 1,042", 46.3, 53.7, 0.0, 18.3,26.2 +NA,NA,a-curv-i5,2021-22,Plymouth - Plymouth South Middle,02390305, 370, 18.5, 677, 47.3, 52.7, 0.3, 21.6,28.7 +NA,NA,a-curv-i5,2021-22,Plymouth - South Elementary,02390046, 426, 18.1, 637, 46.6, 53.4, 1.3, 21.4,29 +NA,NA,a-curv-i5,2021-22,Plymouth - West Elementary,02390047, 242, 16.7, 334, 47.3, 52.7, 2.4, 19.8,32.3 +NA,NA,a-curv-i5,2021-22,Plympton - Dennett Elementary,02400010, 105, 16.8, 239, 46.9, 53.1, 1.7, 16.3,20.9 +NA,NA,a-curv-i5,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 467, 18.1," 1,100", 50.9, 49.1, 16.7, 14.7,65.7 +NA,NA,a-curv-i5,2021-22,Provincetown - Provincetown Schools,02420020, 167, 9.1, 153, 51.0, 49.0, 17.0, 21.6,56.2 +NA,NA,a-curv-i5,2021-22,Quabbin - Hardwick Elementary,07530005, 63, 16.8, 195, 48.7, 51.3, 0.0, 29.7,58 +NA,NA,a-curv-i5,2021-22,Quabbin - Hubbardston Center,07530010, 81, 21.6, 313, 46.7, 53.4, 0.6, 20.1,28.8 +NA,NA,a-curv-i5,2021-22,Quabbin - New Braintree Grade,07530020, 19, 16.4, 79, 45.6, 53.2, 0.0, 21.5,35.4 +NA,NA,a-curv-i5,2021-22,Quabbin - Oakham Center,07530025, 47, 18.0, 127, 47.2, 52.8, 1.6, 27.6,34.7 +6.88216704288939,5,a-curv-i5,2021-22,Quabbin - Quabbin Regional High School,07530505, 443, 18.6, 616, 55.2, 44.3, 0.5, 16.1,34.7,619 +NA,NA,a-curv-i5,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 190, 22.7, 541, 51.9, 47.9, 0.6, 17.9,39.2 +NA,NA,a-curv-i5,2021-22,Quabbin - Ruggles Lane,07530030, 98, 20.9, 385, 45.5, 54.6, 0.8, 27.3,44.2 +NA,NA,a-curv-i5,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 182, 14.4, 338, 50.3, 48.8, 0.6, 16.3,42.9 +NA,NA,a-curv-i5,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 134, 18.8, 204, 50.5, 49.0, 1.0, 15.2,47.1 +NA,NA,a-curv-i5,2021-22,Quaboag Regional - Warren Elementary,07780005, 130, 18.6, 348, 50.6, 49.4, 3.5, 29.3,60.1 +NA,NA,a-curv-i5,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 80, 16.7, 233, 48.5, 51.1, 3.0, 18.9,44.2 +NA,NA,a-curv-i5,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 10.7, 204, 32.4, 67.7, 0.0, 67.7,44.1 +NA,NA,a-curv-i5,2021-22,Quincy - Atherton Hough,02430040, 148, 12.7, 262, 40.5, 59.5, 13.7, 38.6,42 +NA,NA,a-curv-i5,2021-22,Quincy - Atlantic Middle,02430305, 296, 20.6, 550, 47.3, 52.7, 12.2, 20.4,50.6 +NA,NA,a-curv-i5,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 146, 18.3, 344, 50.9, 49.1, 20.4, 10.8,51.2 +NA,NA,a-curv-i5,2021-22,Quincy - Broad Meadows Middle,02430310, 248, 16.2, 339, 47.5, 52.5, 6.2, 35.4,57.2 +NA,NA,a-curv-i5,2021-22,Quincy - Central Middle,02430315, 381, 20.9, 660, 47.0, 52.3, 6.2, 11.4,37.9 +NA,NA,a-curv-i5,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 161, 17.5, 333, 50.2, 49.9, 18.3, 18.0,34.8 +NA,NA,a-curv-i5,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 230, 16.7, 503, 55.3, 44.7, 33.8, 12.9,53.7 +NA,NA,a-curv-i5,2021-22,Quincy - Francis W Parker,02430075, 165, 15.2, 320, 46.9, 53.1, 43.8, 19.4,60 +NA,NA,a-curv-i5,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 221, 19.5, 564, 51.8, 48.2, 36.7, 10.1,60.6 +NA,NA,a-curv-i5,2021-22,Quincy - Merrymount,02430060, 153, 15.8, 322, 48.8, 51.2, 17.4, 17.4,25.2 +NA,NA,a-curv-i5,2021-22,Quincy - Montclair,02430065, 193, 18.3, 441, 48.1, 51.9, 35.2, 10.4,49.9 +NA,NA,a-curv-i5,2021-22,Quincy - North Quincy High,02430510, 617, 16.9," 1,446", 47.0, 53.0, 9.5, 15.4,43.7 +NA,NA,a-curv-i5,2021-22,Quincy - Point Webster Middle,02430325, 263, 17.6, 451, 46.3, 53.4, 12.6, 20.8,64.1 +NA,NA,a-curv-i5,2021-22,Quincy - Quincy High,02430505, 841, 14.6," 1,496", 49.9, 49.9, 9.8, 20.0,53.5 +NA,NA,a-curv-i5,2021-22,Quincy - Snug Harbor Community School,02430090, 269, 9.4, 422, 41.7, 58.3, 16.8, 44.1,71.1 +NA,NA,a-curv-i5,2021-22,Quincy - South West Middle School,02430320, 379, 15.1, 468, 42.3, 57.5, 18.0, 23.7,62.6 +NA,NA,a-curv-i5,2021-22,Quincy - Squantum,02430095, 213, 13.1, 349, 48.7, 51.3, 15.5, 26.4,36.7 +NA,NA,a-curv-i5,2021-22,Quincy - Wollaston School,02430110, 149, 17.8, 329, 44.7, 55.3, 32.8, 10.0,46.8 +NA,NA,a-curv-i5,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 537, 13.5, 557, 46.9, 51.0, 0.5, 24.6,56.2 +NA,NA,a-curv-i5,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 109, 19.3, 305, 47.9, 52.1, 22.0, 18.4,65.3 +NA,NA,a-curv-i5,2021-22,Randolph - J F Kennedy Elementary,02440018, 149, 15.7, 446, 47.8, 52.2, 20.2, 27.8,70.6 +NA,NA,a-curv-i5,2021-22,Randolph - Margaret L Donovan,02440015, 143, 20.5, 413, 51.6, 48.2, 22.8, 11.6,63.2 +NA,NA,a-curv-i5,2021-22,Randolph - Martin E Young Elementary,02440040, 117, 15.0, 249, 52.2, 47.8, 24.1, 22.1,69.5 +NA,NA,a-curv-i5,2021-22,Randolph - Randolph Community Middle,02440410, 318, 20.4, 662, 48.3, 51.7, 9.8, 19.3,62.8 +NA,NA,a-curv-i5,2021-22,Randolph - Randolph High,02440505, 278, 16.9, 623, 41.6, 58.3, 14.5, 22.3,60.4 +NA,NA,a-curv-i5,2021-22,Reading - Alice M Barrows,02460002, 69, 19.9, 357, 48.2, 51.8, 2.5, 19.6,11.2 +NA,NA,a-curv-i5,2021-22,Reading - Arthur W Coolidge Middle,02460305, 208, 19.2, 403, 42.7, 57.1, 0.3, 20.6,9.9 +NA,NA,a-curv-i5,2021-22,Reading - Birch Meadow,02460005, 73, 17.9, 338, 47.6, 52.4, 0.6, 23.7,9.2 +NA,NA,a-curv-i5,2021-22,Reading - J Warren Killam,02460017, 86, 19.4, 403, 47.4, 52.6, 2.7, 14.6,12.9 +NA,NA,a-curv-i5,2021-22,Reading - Joshua Eaton,02460010, 72, 20.0, 378, 48.7, 51.3, 2.7, 15.6,11.6 +NA,NA,a-curv-i5,2021-22,Reading - RISE PreSchool,02460001, 27, 14.1, 127, 33.9, 66.1, 2.4, 44.9,14.2 +NA,NA,a-curv-i5,2021-22,Reading - Reading Memorial High,02460505, 592, 15.8," 1,141", 48.0, 51.7, 0.9, 16.3,12.1 +NA,NA,a-curv-i5,2021-22,Reading - Walter S Parker Middle,02460310, 262, 18.6, 485, 52.6, 47.0, 0.8, 19.6,14.9 +NA,NA,a-curv-i5,2021-22,Reading - Wood End Elementary School,02460020, 50, 19.3, 252, 50.0, 50.0, 0.8, 18.7,11.1 +NA,NA,a-curv-i5,2021-22,Revere - A. C. Whelan Elementary School,02480003, 404, 20.3, 758, 48.0, 52.0, 30.1, 16.5,69.8 +NA,NA,a-curv-i5,2021-22,Revere - Abraham Lincoln,02480025, 262, 19.8, 596, 50.7, 49.3, 46.1, 18.5,73.7 +NA,NA,a-curv-i5,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 188, 16.7, 321, 41.4, 58.6, 41.7, 25.9,68.9 +NA,NA,a-curv-i5,2021-22,Revere - Garfield Elementary School,02480056, 351, 18.4, 712, 51.5, 48.3, 51.3, 18.4,80.3 +NA,NA,a-curv-i5,2021-22,Revere - Garfield Middle School,02480057, 300, 19.5, 574, 47.9, 52.1, 22.5, 9.8,73.3 +NA,NA,a-curv-i5,2021-22,Revere - Paul Revere,02480050, 189, 24.1, 473, 52.6, 47.4, 39.3, 19.5,70.6 +NA,NA,a-curv-i5,2021-22,Revere - Revere High,02480505, 973, 18.8," 2,123", 48.9, 50.9, 19.6, 11.6,67.7 +NA,NA,a-curv-i5,2021-22,Revere - Rumney Marsh Academy,02480014, 279, 16.9, 580, 44.3, 55.7, 6.2, 21.9,68.8 +NA,NA,a-curv-i5,2021-22,Revere - Seacoast School,02480520, 131, 7.8, 89, 36.0, 62.9, 6.7, 25.8,76.4 +NA,NA,a-curv-i5,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 332, 16.8, 656, 48.5, 51.5, 39.2, 16.9,74.5 +NA,NA,a-curv-i5,2021-22,Revere - Susan B. Anthony Middle School,02480305, 393, 19.3, 598, 56.5, 43.3, 21.9, 14.9,69.6 +NA,NA,a-curv-i5,2021-22,Richmond - Richmond Consolidated,02490005, 106, 14.1, 152, 52.0, 48.0, 0.0, 19.1,33.6 +NA,NA,a-curv-i5,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 306, 18.4, 651, 49.9, 49.8, 0.6, 23.4,22.3 +NA,NA,a-curv-i5,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 113, 15.4, 284, 52.8, 47.2, 0.0, 18.0,9.5 +NA,NA,a-curv-i5,2021-22,Rochester - Rochester Memorial,02500005, 230, 20.0, 527, 49.0, 51.0, 0.6, 19.9,25.8 +NA,NA,a-curv-i5,2021-22,Rockland - Jefferson Elementary School,02510060, 136, 15.0, 239, 49.8, 50.2, 15.9, 19.7,54 +NA,NA,a-curv-i5,2021-22,Rockland - John W Rogers Middle,02510305, 275, 20.4, 754, 48.1, 51.9, 7.4, 18.8,48.4 +NA,NA,a-curv-i5,2021-22,Rockland - Memorial Park,02510020, 144, 15.2, 255, 51.4, 48.6, 19.6, 19.2,52.2 +NA,NA,a-curv-i5,2021-22,Rockland - R Stewart Esten,02510025, 171, 16.7, 335, 45.1, 54.9, 14.6, 17.9,51.6 +NA,NA,a-curv-i5,2021-22,Rockland - Rockland Senior High,02510505, 303, 14.8, 647, 48.7, 51.3, 7.1, 17.0,45.9 +NA,NA,a-curv-i5,2021-22,Rockport - Rockport Elementary,02520005, 110, 16.0, 313, 46.3, 53.7, 0.3, 16.9,31.3 +NA,NA,a-curv-i5,2021-22,Rockport - Rockport High,02520510, 174, 11.2, 234, 44.9, 55.1, 0.9, 23.1,24.8 +NA,NA,a-curv-i5,2021-22,Rockport - Rockport Middle,02520305, 174, 15.6, 207, 46.4, 53.6, 0.0, 27.1,32.9 +NA,NA,a-curv-i5,2021-22,Rowe - Rowe Elementary,02530005, 29, 12.7, 73, 43.8, 56.2, 0.0, 37.0,53.4 +NA,NA,a-curv-i5,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Salem - Bates,02580003, 156, 16.5, 386, 49.5, 50.3, 17.6, 22.0,57.5 +NA,NA,a-curv-i5,2021-22,Salem - Bentley Academy Innovation School,02580010, 184, 14.4, 308, 47.4, 52.6, 32.8, 21.1,77.6 +NA,NA,a-curv-i5,2021-22,Salem - Carlton,02580015, 111, 16.7, 256, 50.4, 49.2, 8.2, 32.8,49.6 +NA,NA,a-curv-i5,2021-22,Salem - Collins Middle,02580305, 466, 17.7, 662, 51.8, 48.2, 13.6, 25.1,65.1 +NA,NA,a-curv-i5,2021-22,Salem - Horace Mann Laboratory,02580030, 124, 16.7, 312, 50.0, 50.0, 26.3, 18.3,61.2 +NA,NA,a-curv-i5,2021-22,Salem - New Liberty Innovation School,02580510, 59, 15.8, 66, 63.6, 34.9, 9.1, 34.9,78.8 +NA,NA,a-curv-i5,2021-22,Salem - Salem Early Childhood,02580001, 19, 8.1, 117, 36.8, 63.3, 6.8, 55.6,59.8 +NA,NA,a-curv-i5,2021-22,Salem - Salem High,02580505, 575, 12.9, 839, 44.9, 54.7, 15.1, 24.9,67.1 +7.85531914893617,5,a-curv-i5,2021-22,Salem - Salem Prep High School,02580515, 94, 4.0, 23, 30.4, 65.2, 4.4, 95.7,73.9,17 +NA,NA,a-curv-i5,2021-22,Salem - Saltonstall School,02580050, 195, 14.4, 378, 52.7, 47.4, 14.8, 23.5,52.7 +NA,NA,a-curv-i5,2021-22,Salem - Witchcraft Heights,02580070, 186, 18.3, 468, 48.7, 51.3, 19.7, 20.9,59.2 +NA,NA,a-curv-i5,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 253, 18.3, 494, 50.4, 49.0, 2.8, 17.0,52.4 +NA,NA,a-curv-i5,2021-22,Sandwich - Forestdale School,02610002, 282, 18.2, 550, 47.5, 52.6, 2.2, 18.4,31.3 +NA,NA,a-curv-i5,2021-22,Sandwich - Oak Ridge,02610025, 435, 20.5, 735, 49.4, 50.6, 1.2, 21.9,27.8 +NA,NA,a-curv-i5,2021-22,Sandwich - Sandwich High,02610505, 383, 14.2, 615, 49.8, 49.9, 0.8, 19.7,18.4 +NA,NA,a-curv-i5,2021-22,Sandwich - Sandwich STEM Academy,02610305, 216, 16.4, 398, 51.0, 49.0, 1.3, 25.4,27.6 +NA,NA,a-curv-i5,2021-22,Saugus - Belmonte STEAM Academy,02620060, 324, 18.3, 754, 47.2, 52.8, 7.7, 14.3,50.7 +NA,NA,a-curv-i5,2021-22,Saugus - Saugus High,02620505, 395, 14.7, 719, 48.8, 50.9, 5.6, 12.4,42.8 +NA,NA,a-curv-i5,2021-22,Saugus - Saugus Middle School,02620305, 289, 17.8, 634, 46.4, 53.6, 6.3, 15.0,48.6 +NA,NA,a-curv-i5,2021-22,Saugus - Veterans Early Learning Center,02620065, 158, 14.8, 387, 42.4, 57.6, 12.4, 18.4,48.6 +NA,NA,a-curv-i5,2021-22,Savoy - Emma L Miller Elementary School,02630010, 61, 6.6, 51, 47.1, 52.9, 0.0, 19.6,51 +NA,NA,a-curv-i5,2021-22,Scituate - Cushing Elementary,02640007, 150, 18.2, 327, 52.6, 47.4, 1.2, 15.6,8.9 +NA,NA,a-curv-i5,2021-22,Scituate - Gates Middle School,02640305, 395, 19.0, 599, 44.4, 55.3, 0.2, 19.2,14.7 +NA,NA,a-curv-i5,2021-22,Scituate - Hatherly Elementary,02640010, 109, 19.0, 249, 45.8, 54.2, 0.0, 21.3,9.2 +NA,NA,a-curv-i5,2021-22,Scituate - Jenkins Elementary School,02640015, 149, 18.8, 331, 51.7, 48.3, 0.3, 17.8,14.2 +6.6208,5,a-curv-i5,2021-22,Scituate - Scituate High School,02640505, 500, 15.8, 860, 51.1, 48.3, 0.1, 13.6,14.3,862 +NA,NA,a-curv-i5,2021-22,Scituate - Wampatuck Elementary,02640020, 171, 18.9, 436, 49.8, 50.2, 0.9, 24.1,12.6 +NA,NA,a-curv-i5,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 354, 13.5, 455, 50.8, 48.8, 1.8, 21.3,20.9 +NA,NA,a-curv-i5,2021-22,Seekonk - George R Martin,02650007, 132, 19.3, 489, 55.4, 44.6, 4.1, 16.2,23.1 +NA,NA,a-curv-i5,2021-22,Seekonk - Mildred Aitken School,02650015, 138, 21.0, 558, 46.1, 53.9, 3.9, 20.3,19 +NA,NA,a-curv-i5,2021-22,Seekonk - Seekonk High,02650505, 314, 16.5, 593, 46.2, 53.5, 0.2, 16.9,18.4 +NA,NA,a-curv-i5,2021-22,Sharon - Cottage Street,02660005, 177, 19.9, 449, 49.0, 51.0, 7.4, 18.7,12.3 +NA,NA,a-curv-i5,2021-22,Sharon - East Elementary,02660010, 187, 19.9, 481, 48.4, 51.4, 6.0, 12.9,11 +NA,NA,a-curv-i5,2021-22,Sharon - Heights Elementary,02660015, 192, 22.4, 549, 51.2, 48.8, 3.8, 14.4,13.1 +NA,NA,a-curv-i5,2021-22,Sharon - Sharon Early Childhood Center,02660001, 4, 17.5, 69, 37.7, 62.3, 0.0, 55.1,13 +NA,NA,a-curv-i5,2021-22,Sharon - Sharon High,02660505, 530, 15.3," 1,132", 48.2, 51.7, 1.6, 12.5,14 +NA,NA,a-curv-i5,2021-22,Sharon - Sharon Middle,02660305, 658, 18.7, 887, 47.5, 52.3, 1.5, 16.7,12.7 +6.715121951219513,5,a-curv-i5,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 820, 14.1," 1,304", 38.7, 61.0, 0.1, 27.5,22.3,1317 +NA,NA,a-curv-i5,2021-22,Sherborn - Pine Hill,02690010, 201, 19.8, 408, 52.0, 48.0, 1.7, 17.7,5.9 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 62, 17.7, 257, 52.9, 47.1, 10.9, 12.8,34.6 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Floral Street School,02710020, 141, 17.5, 518, 46.1, 53.9, 3.5, 16.0,13.9 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 134, 19.9, 599, 47.8, 52.3, 3.7, 15.2,24 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Oak Middle School,02710030, 485, 23.2, 998, 50.6, 49.2, 1.9, 14.8,17.4 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Parker Road Preschool,02710040, 16, 13.8, 220, 36.4, 63.6, 0.0, 44.6,26.4 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Sherwood Middle School,02710305, 522, 22.2, 983, 46.3, 53.7, 3.2, 13.3,17.4 +6.436634717784878,5,a-curv-i5,2021-22,Shrewsbury - Shrewsbury High School,02710505, 939, 17.4," 1,837", 53.4, 46.6, 2.2, 10.0,17.5,1835 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Spring Street School,02710035, 66, 19.2, 301, 49.5, 50.5, 1.7, 15.3,8 +NA,NA,a-curv-i5,2021-22,Shrewsbury - Walter J. Paton School,02710025, 72, 18.6, 315, 51.1, 48.9, 1.9, 15.9,16.2 +NA,NA,a-curv-i5,2021-22,Shutesbury - Shutesbury Elementary,02720005, 55, 14.1, 113, 55.8, 44.3, 0.0, 25.7,32.7 +NA,NA,a-curv-i5,2021-22,Silver Lake - Silver Lake Regional High,07600505, 466, 17.2," 1,228", 45.3, 54.6, 0.7, 18.9,23.8 +NA,NA,a-curv-i5,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 306, 17.4, 518, 49.6, 50.0, 2.9, 18.0,27.8 +NA,NA,a-curv-i5,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 226, 13.0, 359, 47.1, 51.8, 2.0, 29.3,51.8 +NA,NA,a-curv-i5,2021-22,Somerset - Chace Street,02730005, 167, 22.1, 334, 47.9, 52.1, 2.4, 19.8,30.5 +NA,NA,a-curv-i5,2021-22,Somerset - North Elementary,02730008, 251, 18.7, 482, 46.3, 53.7, 1.7, 18.3,30.7 +NA,NA,a-curv-i5,2021-22,Somerset - Somerset Middle School,02730305, 319, 22.5, 598, 48.2, 51.8, 0.3, 16.4,37.5 +NA,NA,a-curv-i5,2021-22,Somerset - South,02730015, 133, 22.1, 267, 48.3, 51.7, 1.5, 20.6,39.7 +6.271583514099783,5,a-curv-i5,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 461, 16.8," 1,010", 50.0, 49.9, 0.3, 12.2,24.2,996 +NA,NA,a-curv-i5,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 195, 17.4, 566, 48.4, 51.6, 30.9, 12.4,47.2 +NA,NA,a-curv-i5,2021-22,Somerville - Arthur D Healey,02740075, 178, 16.9, 508, 47.8, 52.0, 34.3, 21.7,70.5 +NA,NA,a-curv-i5,2021-22,Somerville - Benjamin G Brown,02740015, 59, 16.7, 189, 61.4, 38.6, 5.8, 10.1,16.4 +NA,NA,a-curv-i5,2021-22,Somerville - Capuano Early Childhood Center,02740005, 41, 10.6, 225, 43.1, 56.9, 6.7, 36.4,46.7 +NA,NA,a-curv-i5,2021-22,Somerville - E Somerville Community,02740111, 230, 19.0, 692, 43.9, 55.8, 39.6, 14.0,64.6 +7.7281045751634,5,a-curv-i5,2021-22,Somerville - Full Circle High School,02740510, 153, 8.6, 68, 35.3, 64.7, 13.2, 69.1,91.2,52 +NA,NA,a-curv-i5,2021-22,Somerville - John F Kennedy,02740083, 164, 17.4, 446, 45.7, 53.8, 4.5, 23.3,29.8 +NA,NA,a-curv-i5,2021-22,Somerville - Next Wave Junior High,02740410, 67, 6.3, 28, 28.6, 71.4, 10.7, 71.4,82.1 +NA,NA,a-curv-i5,2021-22,Somerville - Somerville High,02740505, 733, 13.9," 1,360", 48.4, 51.0, 18.8, 16.3,58.5 +NA,NA,a-curv-i5,2021-22,Somerville - West Somerville Neighborhood,02740115, 118, 19.4, 360, 48.9, 50.6, 5.6, 18.3,38.6 +NA,NA,a-curv-i5,2021-22,Somerville - Winter Hill Community,02740120, 198, 15.1, 439, 42.6, 57.2, 40.6, 23.9,65.8 +NA,NA,a-curv-i5,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 270, 19.8, 543, 48.3, 51.8, 4.2, 19.0,37.4 +NA,NA,a-curv-i5,2021-22,South Hadley - Mosier,02780020, 90, 19.3, 383, 52.0, 48.0, 6.8, 14.1,38.4 +NA,NA,a-curv-i5,2021-22,South Hadley - Plains Elementary,02780015, 60, 14.4, 311, 45.3, 54.7, 5.5, 12.9,39.9 +NA,NA,a-curv-i5,2021-22,South Hadley - South Hadley High,02780505, 291, 13.5, 553, 52.1, 47.7, 3.8, 17.0,32.9 +7.074829931972789,5,a-curv-i5,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 735, 12.1, 828, 41.8, 57.1, 16.2, 37.3,59.8,850 +NA,NA,a-curv-i5,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 496, 17.2," 1,037", 49.7, 50.0, 10.8, 19.1,32.4 +NA,NA,a-curv-i5,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 331, 15.5, 646, 32.7, 66.9, 0.3, 27.4,31.3 +NA,NA,a-curv-i5,2021-22,Southampton - William E Norris,02750005, 172, 17.6, 462, 46.3, 53.7, 2.0, 28.4,21.2 +NA,NA,a-curv-i5,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 67, 17.1, 269, 46.5, 53.5, 10.0, 15.2,6.7 +NA,NA,a-curv-i5,2021-22,Southborough - Margaret A Neary,02760020, 88, 19.7, 260, 47.7, 51.9, 7.3, 13.1,6.2 +NA,NA,a-curv-i5,2021-22,Southborough - Mary E Finn School,02760008, 84, 15.2, 342, 49.7, 50.3, 12.9, 19.9,11.4 +NA,NA,a-curv-i5,2021-22,Southborough - P Brent Trottier,02760305, 275, 14.1, 383, 49.6, 50.4, 1.6, 18.0,9.4 +NA,NA,a-curv-i5,2021-22,Southbridge - Charlton Street,02770005, 90, 16.2, 296, 52.4, 47.6, 11.8, 26.0,86.8 +NA,NA,a-curv-i5,2021-22,Southbridge - Eastford Road,02770010, 90, 18.2, 372, 44.6, 55.4, 19.6, 24.5,85.2 +NA,NA,a-curv-i5,2021-22,Southbridge - Southbridge Academy,02770525, 47, 4.8, 37, 32.4, 67.6, 21.6, 86.5,91.9 +6.929305135951663,5,a-curv-i5,2021-22,Southbridge - Southbridge High School,02770515, 331, 17.3, 444, 46.4, 53.4, 22.5, 20.3,79.5,443 +NA,NA,a-curv-i5,2021-22,Southbridge - Southbridge Middle School,02770315, 181, 19.6, 437, 49.2, 50.8, 22.4, 22.4,82.2 +NA,NA,a-curv-i5,2021-22,Southbridge - West Street,02770020, 113, 15.5, 347, 50.7, 49.3, 16.7, 22.8,85 +NA,NA,a-curv-i5,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 655, 18.3," 1,534", 51.9, 47.3, 3.0, 14.0,45.1 +NA,NA,a-curv-i5,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 286, 9.5, 305, 48.9, 50.8, 2.6, 21.3,46.9 +NA,NA,a-curv-i5,2021-22,Southern Berkshire - New Marlborough Central,07650018, 48, 13.9, 66, 45.5, 54.6, 0.0, 4.6,28.8 +NA,NA,a-curv-i5,2021-22,Southern Berkshire - South Egremont,07650030, 11, 13.0, 13, 69.2, 30.8, 0.0, 0.0,7.7 +NA,NA,a-curv-i5,2021-22,Southern Berkshire - Undermountain,07650035, 151, 16.7, 253, 54.2, 45.9, 6.7, 12.3,49.8 +7.080901077375122,5,a-curv-i5,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,021", 13.6," 1,174", 42.4, 57.4, 1.0, 13.9,34.8,1173 +NA,NA,a-curv-i5,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 208, 17.8, 398, 49.0, 51.0, 6.3, 21.1,41.5 +NA,NA,a-curv-i5,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 363, 14.4, 653, 52.5, 47.3, 1.8, 15.8,33.1 +NA,NA,a-curv-i5,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 196, 14.9, 328, 45.1, 54.9, 5.5, 18.6,38.4 +NA,NA,a-curv-i5,2021-22,Spencer-E Brookfield - David Prouty High,07670505, 181, 17.1, 330, 47.0, 52.7, 3.3, 16.4,50.6 +NA,NA,a-curv-i5,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 63, 18.6, 241, 47.7, 52.3, 2.1, 26.1,38.2 +NA,NA,a-curv-i5,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 197, 18.4, 427, 45.7, 54.1, 3.5, 19.2,52.9 +NA,NA,a-curv-i5,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 92, 18.2, 418, 44.7, 55.0, 6.2, 22.7,57.2 +NA,NA,a-curv-i5,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 198, 19.2, 395, 56.0, 44.1, 4.1, 7.9,47.6 +NA,NA,a-curv-i5,2021-22,Springfield - Alice B Beal Elementary,02810175, 175, 19.0, 262, 49.2, 50.8, 19.1, 17.6,85.9 +NA,NA,a-curv-i5,2021-22,Springfield - Arthur T Talmadge,02810165, 181, 16.1, 219, 47.0, 53.0, 12.8, 28.8,93.2 +NA,NA,a-curv-i5,2021-22,Springfield - Brightwood,02810025, 247, 19.5, 432, 50.0, 50.0, 26.2, 29.9,95.1 +NA,NA,a-curv-i5,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 186, 18.3, 300, 44.3, 55.3, 6.0, 19.7,80 +NA,NA,a-curv-i5,2021-22,Springfield - Conservatory of the Arts,02810475, 193, 11.5, 307, 71.3, 28.0, 9.8, 23.8,87.3 +NA,NA,a-curv-i5,2021-22,Springfield - Daniel B Brunton,02810035, 246, 19.6, 430, 48.1, 51.9, 17.4, 22.8,89.8 +NA,NA,a-curv-i5,2021-22,Springfield - Early Childhood Education Center,02810001, 26, 8.7, 220, 41.4, 58.6, 13.6, 65.9,88.6 +NA,NA,a-curv-i5,2021-22,Springfield - Edward P. Boland School,02810010, 363, 15.8, 634, 46.4, 53.6, 26.0, 37.4,92.6 +NA,NA,a-curv-i5,2021-22,Springfield - Elias Brookings,02810030, 201, 16.6, 299, 49.5, 50.5, 24.4, 31.8,92 +NA,NA,a-curv-i5,2021-22,Springfield - Emergence Academy,02810318, 43, 15.4, 85, 52.9, 47.1, 98.8, 7.1,78.8 +NA,NA,a-curv-i5,2021-22,Springfield - Forest Park Middle,02810325, 370, 12.3, 493, 47.3, 52.7, 11.8, 28.8,92.1 +NA,NA,a-curv-i5,2021-22,Springfield - Frank H Freedman,02810075, 168, 19.1, 259, 51.0, 49.0, 8.9, 21.6,85.3 +NA,NA,a-curv-i5,2021-22,Springfield - Frederick Harris,02810080, 391, 17.2, 581, 48.4, 51.6, 12.9, 29.8,78.3 +NA,NA,a-curv-i5,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 1, 43.0, 43, 69.8, 30.2, 2.3, 16.3,95.4 +NA,NA,a-curv-i5,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 1, 25.0, 25, 72.0, 24.0, 0.0, 8.0,80 +NA,NA,a-curv-i5,2021-22,Springfield - German Gerena Community School,02810195, 432, 15.4, 600, 47.3, 52.7, 23.0, 21.5,90.5 +NA,NA,a-curv-i5,2021-22,Springfield - Glenwood,02810065, 182, 19.1, 277, 48.0, 52.0, 20.6, 18.4,86.3 +NA,NA,a-curv-i5,2021-22,Springfield - Glickman Elementary,02810068, 227, 16.7, 287, 47.0, 53.0, 20.9, 34.8,87.5 +6.637981407702523,5,a-curv-i5,2021-22,Springfield - High School Of Commerce,02810510, 753, 14.7," 1,270", 47.6, 52.2, 17.7, 22.4,88.1,1282 +NA,NA,a-curv-i5,2021-22,Springfield - Hiram L Dorman,02810050, 183, 16.5, 242, 48.4, 51.7, 21.5, 21.1,92.2 +NA,NA,a-curv-i5,2021-22,Springfield - Homer Street,02810085, 245, 19.2, 380, 51.3, 48.7, 19.5, 22.9,92.9 +NA,NA,a-curv-i5,2021-22,Springfield - Impact Prep at Chestnut,02810366, 90, 19.4, 228, 50.4, 49.6, 9.2, 27.6,97.4 +NA,NA,a-curv-i5,2021-22,Springfield - Indian Orchard Elementary,02810100, 342, 16.5, 524, 46.4, 53.6, 16.4, 25.2,88.7 +NA,NA,a-curv-i5,2021-22,Springfield - John F Kennedy Middle,02810328, 306, 17.3, 475, 50.7, 49.3, 13.3, 31.0,91.6 +NA,NA,a-curv-i5,2021-22,Springfield - John J Duggan Middle,02810320, 514, 15.1, 777, 44.9, 54.8, 9.9, 25.2,81.6 +NA,NA,a-curv-i5,2021-22,Springfield - Kensington International School,02810110, 181, 15.0, 258, 51.6, 48.5, 27.9, 22.5,96.1 +NA,NA,a-curv-i5,2021-22,Springfield - Kiley Academy,02810316, 178, 14.0, 225, 48.0, 52.0, 11.6, 29.8,92.4 +NA,NA,a-curv-i5,2021-22,Springfield - Kiley Prep,02810315, 107, 15.8, 195, 43.1, 56.9, 14.4, 32.3,89.7 +NA,NA,a-curv-i5,2021-22,Springfield - Liberty,02810115, 198, 16.3, 256, 50.0, 50.0, 22.7, 21.5,90.2 +NA,NA,a-curv-i5,2021-22,Springfield - Liberty Preparatory Academy,02810560, 8, 4.5, 10, 10.0, 90.0, 0.0, 10.0,60 +NA,NA,a-curv-i5,2021-22,Springfield - Lincoln,02810120, 253, 22.2, 487, 49.5, 50.5, 34.5, 27.5,94.5 +NA,NA,a-curv-i5,2021-22,Springfield - Lyceum Academy,02810317, 146, 17.8, 402, 45.3, 54.7, 30.9, 30.4,96.3 +NA,NA,a-curv-i5,2021-22,Springfield - M Marcus Kiley Middle,02810330, 140, 16.7, 234, 46.6, 53.0, 8.1, 29.1,85 +NA,NA,a-curv-i5,2021-22,Springfield - Margaret C Ells,02810060, 23, 9.7, 216, 38.9, 61.1, 15.7, 55.1,86.1 +NA,NA,a-curv-i5,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 170, 19.2, 289, 47.4, 52.6, 18.3, 23.2,76.8 +NA,NA,a-curv-i5,2021-22,Springfield - Mary M Lynch,02810140, 150, 16.7, 208, 56.3, 43.8, 7.7, 17.3,89.9 +NA,NA,a-curv-i5,2021-22,Springfield - Mary M Walsh,02810155, 198, 16.4, 267, 46.8, 53.2, 24.3, 30.0,90.6 +NA,NA,a-curv-i5,2021-22,Springfield - Mary O Pottenger,02810145, 230, 21.4, 403, 49.1, 50.6, 12.9, 17.4,85.4 +NA,NA,a-curv-i5,2021-22,Springfield - Milton Bradley School,02810023, 323, 18.1, 533, 49.9, 50.1, 25.5, 28.0,96.3 +NA,NA,a-curv-i5,2021-22,Springfield - Rebecca M Johnson,02810055, 431, 16.2, 631, 46.4, 53.6, 20.1, 29.8,93 +NA,NA,a-curv-i5,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 95, 19.4, 281, 45.6, 54.5, 13.2, 24.2,90.8 +NA,NA,a-curv-i5,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 914, 12.9," 1,362", 55.2, 44.7, 11.3, 16.2,81.1 +NA,NA,a-curv-i5,2021-22,Springfield - STEM Middle Academy,02810350, 164, 14.4, 276, 44.6, 55.4, 9.8, 20.7,84.4 +NA,NA,a-curv-i5,2021-22,Springfield - Samuel Bowles,02810020, 197, 14.2, 210, 52.4, 47.6, 15.2, 23.8,89.1 +NA,NA,a-curv-i5,2021-22,Springfield - South End Middle School,02810355, 77, 17.9, 213, 40.4, 59.6, 16.0, 21.6,97.2 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Central High,02810500," 1,026", 16.5," 2,090", 46.5, 53.5, 14.4, 18.4,79.8 +6.945454545454545,5,a-curv-i5,2021-22,Springfield - Springfield High School,02810570, 154, 15.6, 249, 41.4, 57.8, 12.5, 32.5,89.2,203 +6.818279569892473,5,a-curv-i5,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 744, 12.8," 1,099", 43.2, 56.7, 16.5, 24.8,89.6,1099 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 5, 12.6, 33, 45.5, 54.6, 100.0, 0.0,84.9 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 57, 14.5, 102, 24.5, 75.5, 100.0, 1.0,84.3 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Middle School,02810360, 34, 7.2, 35, 25.7, 74.3, 11.4, 34.3,94.3 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 135, 5.1, 45, 24.4, 75.6, 4.4, 95.6,95.6 +7.388235294117647,5,a-curv-i5,2021-22,Springfield - Springfield Public Day High School,02810550, 85, 5.5, 65, 21.5, 78.5, 6.2, 100.0,96.9,65 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Public Day Middle School,02810345, 70, 5.5, 50, 22.0, 78.0, 10.0, 100.0,94 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Realization Academy,02810335, 32, 15.0, 70, 58.6, 41.4, 38.6, 20.0,94.3 +NA,NA,a-curv-i5,2021-22,Springfield - Springfield Transition Academy,02810675, 25, 7.5, 83, 26.5, 73.5, 0.0, 100.0,91.6 +NA,NA,a-curv-i5,2021-22,Springfield - Sumner Avenue,02810160, 340, 15.2, 505, 47.5, 52.5, 23.4, 28.7,91.7 +NA,NA,a-curv-i5,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 388, 13.4, 608, 50.7, 49.2, 5.8, 21.2,71.9 +NA,NA,a-curv-i5,2021-22,Springfield - The Springfield Virtual School,02810705, 336, 17.2, 580, 51.4, 48.6, 12.2, 29.0,89.5 +NA,NA,a-curv-i5,2021-22,Springfield - Thomas M Balliet,02810015, 156, 18.8, 300, 48.7, 51.3, 12.3, 21.7,82.3 +NA,NA,a-curv-i5,2021-22,Springfield - Van Sickle Academy,02810485, 218, 13.3, 302, 48.7, 50.7, 17.9, 31.5,88.1 +NA,NA,a-curv-i5,2021-22,Springfield - Warner,02810180, 166, 17.8, 273, 44.7, 55.0, 14.3, 22.7,86.8 +NA,NA,a-curv-i5,2021-22,Springfield - Washington,02810185, 293, 15.2, 401, 49.1, 50.9, 22.2, 28.2,91 +NA,NA,a-curv-i5,2021-22,Springfield - White Street,02810190, 243, 20.3, 388, 50.5, 49.5, 26.0, 16.2,90.5 +NA,NA,a-curv-i5,2021-22,Springfield - William N. DeBerry,02810045, 188, 15.3, 221, 48.4, 51.6, 27.6, 29.0,95 +NA,NA,a-curv-i5,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 659, 27.0," 1,585", 50.7, 49.2, 10.8, 16.7,60.8 +NA,NA,a-curv-i5,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 92, 27.8, 433, 46.2, 53.4, 12.9, 20.6,74.8 +NA,NA,a-curv-i5,2021-22,Stoneham - Colonial Park,02840005, 89, 20.6, 259, 40.9, 59.1, 2.3, 25.1,21.2 +NA,NA,a-curv-i5,2021-22,Stoneham - Robin Hood,02840025, 138, 21.1, 387, 49.1, 50.9, 6.5, 22.0,22 +NA,NA,a-curv-i5,2021-22,Stoneham - South,02840030, 124, 19.9, 333, 50.5, 49.6, 6.9, 24.9,26.1 +NA,NA,a-curv-i5,2021-22,Stoneham - Stoneham Central Middle School,02840405, 513, 16.2, 714, 49.2, 50.7, 3.9, 21.0,28.3 +NA,NA,a-curv-i5,2021-22,Stoneham - Stoneham High,02840505, 440, 11.8, 579, 50.3, 49.7, 2.6, 18.0,24 +NA,NA,a-curv-i5,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 13, 11.4, 148, 40.5, 59.5, 0.0, 47.3,52.7 +NA,NA,a-curv-i5,2021-22,Stoughton - Helen Hansen Elementary,02850010, 159, 14.0, 279, 45.9, 54.1, 7.5, 24.4,45.2 +NA,NA,a-curv-i5,2021-22,Stoughton - Joseph H Gibbons,02850025, 161, 17.1, 337, 49.6, 50.2, 11.3, 17.8,44.5 +NA,NA,a-curv-i5,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 209, 14.6, 373, 43.2, 56.8, 11.3, 19.0,43.4 +NA,NA,a-curv-i5,2021-22,Stoughton - O'Donnell Middle School,02850405, 521, 17.4, 858, 47.6, 52.5, 7.5, 18.8,47.6 +NA,NA,a-curv-i5,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 145, 15.4, 275, 52.4, 47.6, 24.4, 18.2,67.3 +NA,NA,a-curv-i5,2021-22,Stoughton - South Elementary,02850015, 113, 18.6, 257, 49.0, 51.0, 6.2, 19.5,33.9 +NA,NA,a-curv-i5,2021-22,Stoughton - Stoughton High,02850505, 691, 16.9," 1,077", 47.5, 52.5, 8.8, 14.4,42.8 +NA,NA,a-curv-i5,2021-22,Sturbridge - Burgess Elementary,02870005, 239, 21.4, 874, 48.6, 51.4, 4.0, 16.6,21.7 +NA,NA,a-curv-i5,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 527, 14.1, 844, 57.8, 41.9, 0.8, 18.5,24.1 +NA,NA,a-curv-i5,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 651, 16.2, 881, 46.0, 53.8, 0.7, 23.6,6.4 +NA,NA,a-curv-i5,2021-22,Sudbury - General John Nixon Elementary,02880025, 181, 20.2, 305, 53.8, 46.2, 3.0, 15.4,6.2 +NA,NA,a-curv-i5,2021-22,Sudbury - Israel Loring School,02880015, 265, 19.2, 422, 51.4, 48.6, 5.0, 23.0,14.7 +NA,NA,a-curv-i5,2021-22,Sudbury - Josiah Haynes,02880010, 205, 21.3, 364, 45.6, 54.4, 2.8, 18.1,6.9 +NA,NA,a-curv-i5,2021-22,Sudbury - Peter Noyes,02880030, 296, 21.0, 589, 46.5, 53.5, 3.9, 22.9,7.5 +NA,NA,a-curv-i5,2021-22,Sunderland - Sunderland Elementary,02890005, 156, 13.0, 187, 47.1, 52.4, 5.4, 26.2,39.6 +NA,NA,a-curv-i5,2021-22,Sutton - Sutton Early Learning,02900003, 95, 17.6, 327, 47.1, 52.9, 1.2, 28.8,26.3 +NA,NA,a-curv-i5,2021-22,Sutton - Sutton Elementary,02900005, 109, 20.7, 288, 47.9, 52.1, 3.8, 26.7,16.3 +6.310588235294118,5,a-curv-i5,2021-22,Sutton - Sutton High School,02900510, 170, 15.7, 367, 48.8, 50.4, 0.8, 6.8,17.7,359 +NA,NA,a-curv-i5,2021-22,Sutton - Sutton Middle School,02900305, 111, 20.3, 323, 49.5, 50.5, 0.9, 17.0,17 +NA,NA,a-curv-i5,2021-22,Swampscott - Clarke,02910005, 88, 18.5, 204, 44.1, 55.9, 21.1, 22.6,34.8 +NA,NA,a-curv-i5,2021-22,Swampscott - Hadley,02910010, 120, 19.4, 291, 49.1, 50.9, 8.6, 17.9,21.7 +NA,NA,a-curv-i5,2021-22,Swampscott - Stanley,02910020, 92, 17.8, 205, 40.0, 60.0, 2.0, 24.9,12.2 +NA,NA,a-curv-i5,2021-22,Swampscott - Swampscott High,02910505, 455, 13.5, 667, 49.6, 50.2, 2.3, 18.9,25.3 +NA,NA,a-curv-i5,2021-22,Swampscott - Swampscott Middle,02910305, 486, 17.1, 709, 49.9, 49.8, 3.7, 23.1,25 +NA,NA,a-curv-i5,2021-22,Swansea - Elizabeth S Brown,02920006, 115, 23.2, 283, 48.1, 51.9, 1.1, 9.9,35 +NA,NA,a-curv-i5,2021-22,Swansea - Gardner,02920015, 116, 22.4, 268, 50.4, 49.6, 0.8, 10.8,28.4 +NA,NA,a-curv-i5,2021-22,Swansea - Joseph Case High,02920505, 259, 14.7, 543, 47.3, 52.7, 0.4, 13.1,27.6 +NA,NA,a-curv-i5,2021-22,Swansea - Joseph Case Jr High,02920305, 196, 18.6, 502, 52.2, 47.8, 1.0, 12.0,29.9 +NA,NA,a-curv-i5,2021-22,Swansea - Joseph G Luther,02920020, 95, 19.1, 224, 50.9, 49.1, 0.0, 16.1,25.9 +NA,NA,a-curv-i5,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 104, 16.3, 238, 46.2, 53.8, 0.0, 20.2,30.7 +NA,NA,a-curv-i5,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 716, 41.2," 2,962", 55.3, 44.5, 4.1, 20.9,54.5 +NA,NA,a-curv-i5,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 392, 19.0, 597, 47.7, 52.3, 1.3, 14.7,29 +NA,NA,a-curv-i5,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 765, 12.6," 1,194", 46.7, 52.6, 1.4, 11.1,28.5 +NA,NA,a-curv-i5,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 74, 11.5, 510, 36.5, 62.8, 1.0, 15.9,34.9 +NA,NA,a-curv-i5,2021-22,Taunton - Benjamin Friedman Middle,02930315, 359, 21.3, 766, 47.0, 53.0, 2.7, 20.6,57.2 +NA,NA,a-curv-i5,2021-22,Taunton - East Taunton Elementary,02930010, 256, 15.5, 510, 52.4, 47.7, 3.5, 23.1,53.3 +NA,NA,a-curv-i5,2021-22,Taunton - Edmund Hatch Bennett,02930007, 125, 19.0, 303, 50.5, 49.5, 3.3, 17.8,48.2 +NA,NA,a-curv-i5,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 19, 16.0, 303, 38.3, 61.7, 11.9, 62.1,57.8 +NA,NA,a-curv-i5,2021-22,Taunton - Elizabeth Pole,02930027, 243, 18.6, 579, 50.3, 49.6, 15.9, 17.4,73.2 +NA,NA,a-curv-i5,2021-22,Taunton - H H Galligan,02930057, 109, 18.6, 259, 47.5, 52.5, 18.5, 18.9,81.1 +NA,NA,a-curv-i5,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 354, 17.2, 827, 50.4, 49.6, 9.4, 20.8,70.4 +NA,NA,a-curv-i5,2021-22,Taunton - John F Parker Middle,02930305, 210, 22.7, 493, 46.9, 53.1, 9.9, 18.5,68.2 +NA,NA,a-curv-i5,2021-22,Taunton - Joseph C Chamberlain,02930008, 189, 19.1, 472, 50.2, 49.8, 5.1, 20.3,54.7 +NA,NA,a-curv-i5,2021-22,Taunton - Joseph H Martin,02930042, 364, 19.0, 685, 49.8, 50.2, 4.1, 23.1,58 +7.406185567010309,5,a-curv-i5,2021-22,Taunton - Taunton Alternative High School,02930525, 97, 7.1, 105, 37.1, 62.9, 9.5, 28.6,78.1,72 +NA,NA,a-curv-i5,2021-22,Taunton - Taunton High,02930505," 1,032", 20.6," 2,794", 49.1, 50.8, 5.8, 16.6,55.4 +NA,NA,a-curv-i5,2021-22,Tewksbury - Heath-Brook,02950010, 110, 18.5, 310, 44.8, 55.2, 10.0, 15.8,21.6 +NA,NA,a-curv-i5,2021-22,Tewksbury - John F. Ryan,02950023, 305, 18.4, 517, 52.6, 47.4, 1.2, 19.9,26.1 +NA,NA,a-curv-i5,2021-22,Tewksbury - John W. Wynn Middle,02950305, 226, 20.5, 521, 48.0, 51.8, 0.8, 16.3,24.8 +NA,NA,a-curv-i5,2021-22,Tewksbury - L F Dewing,02950001, 158, 19.4, 622, 46.6, 53.4, 6.4, 30.2,23.3 +NA,NA,a-curv-i5,2021-22,Tewksbury - Louise Davy Trahan,02950025, 108, 17.9, 215, 51.6, 48.4, 3.7, 15.4,20.5 +NA,NA,a-curv-i5,2021-22,Tewksbury - North Street,02950020, 127, 18.2, 256, 50.8, 49.2, 1.6, 23.4,23.8 +NA,NA,a-curv-i5,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 408, 18.2, 804, 51.2, 48.4, 1.4, 12.8,21.9 +NA,NA,a-curv-i5,2021-22,Tisbury - Tisbury Elementary,02960005, 201, 14.0, 303, 49.5, 50.5, 33.3, 19.8,54.8 +NA,NA,a-curv-i5,2021-22,Topsfield - Proctor Elementary,02980005, 95, 16.6, 260, 48.5, 51.5, 0.0, 22.3,7.7 +NA,NA,a-curv-i5,2021-22,Topsfield - Steward Elementary,02980010, 107, 15.6, 368, 48.9, 51.1, 0.3, 22.0,6.3 +NA,NA,a-curv-i5,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 818, 15.6, 938, 39.3, 59.7, 0.2, 30.9,26.8 +NA,NA,a-curv-i5,2021-22,Triton - Newbury Elementary,07730020, 198, 17.7, 395, 45.1, 54.9, 0.0, 22.3,22.3 +NA,NA,a-curv-i5,2021-22,Triton - Pine Grove,07730025, 216, 17.4, 421, 51.5, 48.5, 1.4, 19.2,23 +NA,NA,a-curv-i5,2021-22,Triton - Salisbury Elementary,07730015, 214, 17.6, 437, 51.0, 49.0, 5.0, 18.5,52.4 +6.482111436950146,5,a-curv-i5,2021-22,Triton - Triton Regional High School,07730505, 341, 13.4, 639, 47.7, 51.6, 0.9, 15.2,31.5,647 +NA,NA,a-curv-i5,2021-22,Triton - Triton Regional Middle School,07730405, 221, 16.6, 341, 48.4, 51.6, 0.9, 19.4,36.7 +NA,NA,a-curv-i5,2021-22,Truro - Truro Central,03000005, 67, 14.5, 113, 48.7, 51.3, 2.7, 16.8,48.7 +NA,NA,a-curv-i5,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 369, 21.3, 808, 47.0, 53.0, 9.9, 23.4,28.1 +7.008746355685131,5,a-curv-i5,2021-22,Tyngsborough - Tyngsborough High School,03010505, 343, 15.4, 426, 51.6, 48.4, 0.9, 12.2,19.5,425 +NA,NA,a-curv-i5,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 246, 17.4, 395, 46.1, 53.9, 1.8, 20.0,22.8 +NA,NA,a-curv-i5,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 125, 17.5, 296, 46.6, 53.4, 24.0, 30.4,82.4 +NA,NA,a-curv-i5,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 177, 20.3, 613, 50.7, 49.3, 32.8, 11.6,83.9 +NA,NA,a-curv-i5,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 17, 13.5, 55, 54.6, 45.5, 0.0, 16.4,18.2 +NA,NA,a-curv-i5,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 186, 14.9, 356, 49.2, 50.6, 4.8, 19.4,32 +NA,NA,a-curv-i5,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 360, 14.4, 715, 40.7, 59.3, 0.4, 27.3,41.3 +NA,NA,a-curv-i5,2021-22,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Uxbridge - Taft Early Learning Center,03040005, 186, 18.5, 545, 46.6, 53.4, 2.8, 22.9,29.4 +NA,NA,a-curv-i5,2021-22,Uxbridge - Uxbridge High,03040505, 391, 13.1, 567, 42.9, 57.1, 1.8, 16.1,28.9 +NA,NA,a-curv-i5,2021-22,Uxbridge - Whitin Intermediate,03040405, 204, 21.2, 523, 46.9, 53.2, 2.5, 17.2,31.7 +NA,NA,a-curv-i5,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 146, 23.9, 359, 53.2, 46.8, 5.6, 20.3,83.6 +NA,NA,a-curv-i5,2021-22,Wachusett - Central Tree Middle,07750310, 189, 18.0, 370, 51.4, 48.7, 1.6, 13.5,23.2 +NA,NA,a-curv-i5,2021-22,Wachusett - Chocksett Middle School,07750315, 162, 15.9, 294, 46.9, 53.1, 2.0, 12.2,18.7 +NA,NA,a-curv-i5,2021-22,Wachusett - Davis Hill Elementary,07750018, 174, 19.6, 454, 50.9, 49.1, 3.1, 9.5,15.2 +NA,NA,a-curv-i5,2021-22,Wachusett - Dawson,07750020, 182, 19.2, 498, 52.0, 48.0, 4.0, 11.5,13.9 +NA,NA,a-curv-i5,2021-22,Wachusett - Early Childhood Center,07750001, 8, 20.8, 164, 31.7, 68.3, 0.0, 54.9,26.2 +NA,NA,a-curv-i5,2021-22,Wachusett - Glenwood Elementary School,07750060, 153, 17.9, 335, 49.0, 51.0, 4.2, 12.2,19.7 +NA,NA,a-curv-i5,2021-22,Wachusett - Houghton Elementary,07750027, 130, 18.8, 329, 44.1, 55.9, 5.2, 15.2,22.5 +NA,NA,a-curv-i5,2021-22,Wachusett - Leroy E.Mayo,07750032, 186, 19.6, 507, 47.3, 52.7, 3.6, 7.3,17.6 +NA,NA,a-curv-i5,2021-22,Wachusett - Mountview Middle,07750305, 353, 19.5, 754, 46.3, 53.6, 1.5, 15.0,17.6 +NA,NA,a-curv-i5,2021-22,Wachusett - Naquag Elementary School,07750005, 130, 19.4, 351, 48.2, 51.9, 2.3, 7.4,17.4 +NA,NA,a-curv-i5,2021-22,Wachusett - Paxton Center,07750040, 193, 18.0, 448, 52.7, 47.3, 4.2, 21.7,20.8 +NA,NA,a-curv-i5,2021-22,Wachusett - Thomas Prince,07750045, 153, 19.4, 360, 46.9, 53.1, 0.0, 13.9,12.5 +NA,NA,a-curv-i5,2021-22,Wachusett - Wachusett Regional High,07750505," 1,057", 16.8," 1,970", 52.9, 47.1, 0.7, 14.2,15.6 +NA,NA,a-curv-i5,2021-22,Wakefield - Dolbeare,03050005, 100, 22.5, 448, 50.5, 49.6, 4.5, 17.2,18.8 +NA,NA,a-curv-i5,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 10, 11.6, 116, 38.8, 61.2, 0.0, 41.4,24.1 +NA,NA,a-curv-i5,2021-22,Wakefield - Galvin Middle School,03050310, 593, 20.1," 1,072", 48.8, 50.9, 1.7, 18.5,19 +NA,NA,a-curv-i5,2021-22,Wakefield - Greenwood,03050020, 50, 22.2, 222, 43.2, 56.8, 0.9, 10.8,9.5 +NA,NA,a-curv-i5,2021-22,Wakefield - Wakefield Memorial High,03050505, 478, 13.5, 844, 51.2, 48.7, 2.5, 17.7,17.7 +NA,NA,a-curv-i5,2021-22,Wakefield - Walton,03050040, 50, 22.2, 217, 42.9, 57.1, 2.3, 16.1,12 +NA,NA,a-curv-i5,2021-22,Wakefield - Woodville School,03050015, 105, 20.4, 425, 50.8, 49.2, 5.7, 15.5,25.4 +NA,NA,a-curv-i5,2021-22,Wales - Wales Elementary,03060005, 39, 14.5, 107, 43.9, 56.1, 1.9, 23.4,57 +NA,NA,a-curv-i5,2021-22,Walpole - Bird Middle,03070305, 279, 15.7, 376, 51.9, 48.1, 1.3, 19.4,18.9 +NA,NA,a-curv-i5,2021-22,Walpole - Boyden,03070010, 92, 16.2, 372, 46.8, 53.2, 5.1, 16.4,19.1 +NA,NA,a-curv-i5,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 9, 10.9, 98, 43.9, 56.1, 9.2, 52.0,20.4 +NA,NA,a-curv-i5,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 258, 19.8, 429, 46.4, 53.2, 1.6, 13.1,15.6 +NA,NA,a-curv-i5,2021-22,Walpole - Elm Street School,03070005, 88, 19.8, 435, 56.1, 43.7, 7.8, 12.6,14 +NA,NA,a-curv-i5,2021-22,Walpole - Fisher,03070015, 96, 18.5, 444, 50.0, 50.0, 5.0, 19.8,15.3 +NA,NA,a-curv-i5,2021-22,Walpole - Old Post Road,03070018, 96, 19.7, 472, 50.0, 50.0, 4.2, 8.5,14.8 +NA,NA,a-curv-i5,2021-22,Walpole - Walpole High,03070505, 522, 16.7," 1,029", 49.3, 50.3, 2.4, 12.6,16.2 +NA,NA,a-curv-i5,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 284, 17.5, 484, 49.2, 50.8, 7.0, 16.9,27.7 +NA,NA,a-curv-i5,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 255, 18.0, 425, 52.0, 48.0, 53.2, 7.8,74.8 +NA,NA,a-curv-i5,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 259, 15.2, 380, 43.4, 56.6, 16.3, 13.4,35.8 +NA,NA,a-curv-i5,2021-22,Waltham - John F Kennedy Middle,03080404, 369, 16.0, 568, 44.9, 54.9, 8.8, 16.0,42.4 +NA,NA,a-curv-i5,2021-22,Waltham - John W. McDevitt Middle School,03080415, 445, 14.6, 647, 45.0, 55.0, 19.0, 20.1,62.9 +NA,NA,a-curv-i5,2021-22,Waltham - Northeast Elementary School,03080040, 295, 15.9, 512, 52.5, 47.5, 29.5, 18.6,54.3 +NA,NA,a-curv-i5,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 237, 15.2, 348, 47.1, 52.9, 25.6, 17.5,53.7 +NA,NA,a-curv-i5,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 139, 16.5, 208, 46.6, 53.4, 40.9, 9.6,50.5 +NA,NA,a-curv-i5,2021-22,Waltham - Waltham Sr High,03080505, 944, 15.2," 1,704", 46.7, 53.2, 20.9, 16.1,54 +NA,NA,a-curv-i5,2021-22,Waltham - William F. Stanley Elementary School,03080005, 326, 12.3, 420, 42.6, 57.4, 34.3, 32.9,53.6 +NA,NA,a-curv-i5,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 68, 20.4, 398, 52.0, 48.0, 2.5, 19.6,67.3 +6.332773109243698,5,a-curv-i5,2021-22,Ware - Ware Junior/Senior High School,03090505, 238, 17.7, 508, 49.0, 51.0, 0.8, 22.6,58.9,496 +NA,NA,a-curv-i5,2021-22,Ware - Ware Middle School,03090305, 89, 20.2, 256, 50.4, 49.6, 1.6, 16.8,66.8 +NA,NA,a-curv-i5,2021-22,Wareham - John William Decas,03100003, 345, 16.3, 625, 48.5, 51.5, 2.2, 26.6,68.6 +NA,NA,a-curv-i5,2021-22,Wareham - Minot Forest,03100017, 194, 15.0, 318, 48.1, 51.9, 1.3, 21.7,69.2 +NA,NA,a-curv-i5,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 29, 5.6, 57, 42.1, 57.9, 0.0, 33.3,77.2 +NA,NA,a-curv-i5,2021-22,Wareham - Wareham Middle,03100305, 285, 15.4, 473, 48.0, 52.0, 0.0, 27.1,68.7 +NA,NA,a-curv-i5,2021-22,Wareham - Wareham Senior High,03100505, 505, 12.4, 623, 52.2, 47.4, 0.5, 29.2,63.7 +NA,NA,a-curv-i5,2021-22,Watertown - Cunniff,03140015, 156, 18.9, 316, 49.4, 50.6, 17.7, 21.2,32.9 +NA,NA,a-curv-i5,2021-22,Watertown - Hosmer,03140020, 306, 18.0, 706, 44.9, 55.1, 21.8, 22.8,33.6 +NA,NA,a-curv-i5,2021-22,Watertown - James Russell Lowell,03140025, 197, 16.7, 351, 47.9, 52.1, 20.8, 16.8,32.8 +NA,NA,a-curv-i5,2021-22,Watertown - Watertown High,03140505, 409, 14.2, 719, 45.2, 54.4, 12.2, 16.3,46.5 +NA,NA,a-curv-i5,2021-22,Watertown - Watertown Middle,03140305, 350, 17.0, 561, 51.5, 48.3, 15.5, 17.5,42.3 +NA,NA,a-curv-i5,2021-22,Wayland - Claypit Hill School,03150005, 213, 20.1, 522, 50.8, 49.2, 5.0, 21.7,9.8 +NA,NA,a-curv-i5,2021-22,Wayland - Happy Hollow School,03150015, 149, 21.4, 389, 47.6, 52.4, 4.1, 17.0,12.1 +NA,NA,a-curv-i5,2021-22,Wayland - Loker School,03150020, 142, 21.9, 399, 52.4, 47.6, 7.0, 16.3,5.5 +6.2551181102362206,5,a-curv-i5,2021-22,Wayland - Wayland High School,03150505, 381, 15.4, 828, 51.3, 48.7, 1.1, 20.1,9.5,831 +NA,NA,a-curv-i5,2021-22,Wayland - Wayland Middle School,03150305, 474, 13.5, 601, 48.3, 51.6, 1.7, 19.3,10.8 +6.604329004329005,5,a-curv-i5,2021-22,Webster - Bartlett High School,03160505, 231, 14.3, 394, 50.8, 49.2, 12.7, 17.5,68.3,403 +NA,NA,a-curv-i5,2021-22,Webster - Park Avenue Elementary,03160015, 293, 16.3, 726, 46.0, 54.0, 16.8, 28.5,76.2 +NA,NA,a-curv-i5,2021-22,Webster - Webster Middle School,03160315, 292, 22.3, 618, 46.0, 54.1, 10.2, 20.4,71.8 +NA,NA,a-curv-i5,2021-22,Wellesley - Ernest F Upham,03170050, 108, 13.9, 167, 51.5, 48.5, 1.2, 26.4,8.4 +NA,NA,a-curv-i5,2021-22,Wellesley - Hunnewell,03170025, 108, 18.3, 220, 52.7, 47.3, 0.9, 21.8,7.3 +NA,NA,a-curv-i5,2021-22,Wellesley - John D Hardy,03170020, 114, 17.3, 217, 52.5, 47.5, 9.2, 12.0,7.4 +NA,NA,a-curv-i5,2021-22,Wellesley - Joseph E Fiske,03170015, 141, 17.4, 271, 51.3, 48.7, 8.9, 10.3,7.8 +NA,NA,a-curv-i5,2021-22,Wellesley - Katharine Lee Bates,03170005, 144, 17.7, 283, 48.4, 51.6, 0.0, 12.7,2.8 +NA,NA,a-curv-i5,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 31, 11.0, 115, 39.1, 60.9, 7.0, 47.0,10.4 +NA,NA,a-curv-i5,2021-22,Wellesley - Schofield,03170045, 166, 18.1, 333, 52.6, 47.5, 3.9, 12.3,7.5 +NA,NA,a-curv-i5,2021-22,Wellesley - Sprague Elementary School,03170048, 149, 18.7, 307, 48.2, 51.8, 6.5, 19.5,6.8 +NA,NA,a-curv-i5,2021-22,Wellesley - Wellesley Middle,03170305, 777, 14.5," 1,015", 51.1, 48.9, 1.1, 15.9,7.5 +NA,NA,a-curv-i5,2021-22,Wellesley - Wellesley Sr High,03170505, 667, 15.7," 1,407", 51.1, 48.8, 0.4, 15.9,7.2 +NA,NA,a-curv-i5,2021-22,Wellfleet - Wellfleet Elementary,03180005, 79, 15.7, 115, 44.4, 55.7, 0.9, 13.9,47 +NA,NA,a-curv-i5,2021-22,West Boylston - Major Edwards Elementary,03220005, 203, 18.3, 421, 48.7, 51.3, 6.4, 25.2,31.6 +NA,NA,a-curv-i5,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 368, 13.4, 474, 52.3, 47.7, 1.5, 14.4,29.3 +NA,NA,a-curv-i5,2021-22,West Bridgewater - Howard School,03230305, 112, 25.2, 302, 50.3, 49.7, 4.6, 13.9,26.2 +NA,NA,a-curv-i5,2021-22,West Bridgewater - Rose L Macdonald,03230003, 192, 23.3, 327, 47.4, 52.6, 6.1, 12.2,26.6 +NA,NA,a-curv-i5,2021-22,West Bridgewater - Spring Street School,03230005, 68, 19.2, 156, 43.6, 56.4, 5.8, 20.5,27.6 +NA,NA,a-curv-i5,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 457, 16.9, 634, 50.5, 49.5, 2.5, 10.4,27.8 +NA,NA,a-curv-i5,2021-22,West Springfield - Cowing Early Childhood,03320001, 14, 9.3, 130, 40.0, 60.0, 8.5, 56.2,73.9 +NA,NA,a-curv-i5,2021-22,West Springfield - John Ashley,03320005, 65, 15.2, 198, 51.5, 48.5, 2.5, 21.2,59.6 +NA,NA,a-curv-i5,2021-22,West Springfield - John R Fausey,03320010, 133, 15.1, 393, 53.4, 46.6, 5.3, 16.3,41 +NA,NA,a-curv-i5,2021-22,West Springfield - Memorial,03320025, 62, 16.5, 199, 43.7, 56.3, 3.5, 20.6,81.9 +NA,NA,a-curv-i5,2021-22,West Springfield - Mittineague,03320030, 52, 15.9, 160, 54.4, 45.6, 3.1, 15.6,52.5 +NA,NA,a-curv-i5,2021-22,West Springfield - Philip G Coburn,03320007, 143, 17.2, 483, 53.0, 47.0, 48.9, 13.7,81 +NA,NA,a-curv-i5,2021-22,West Springfield - Tatham,03320040, 68, 19.5, 260, 42.3, 57.7, 2.3, 11.5,39.2 +NA,NA,a-curv-i5,2021-22,West Springfield - West Springfield High,03320505, 686, 16.2," 1,200", 45.8, 53.6, 5.8, 20.1,53.4 +NA,NA,a-curv-i5,2021-22,West Springfield - West Springfield Middle,03320305, 633, 16.5, 906, 49.5, 50.4, 6.0, 17.0,56.8 +NA,NA,a-curv-i5,2021-22,Westborough - Annie E Fales,03210010, 123, 18.3, 354, 47.5, 52.5, 6.8, 15.8,4 +NA,NA,a-curv-i5,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 171, 15.2, 509, 49.9, 50.1, 20.2, 19.5,23.6 +NA,NA,a-curv-i5,2021-22,Westborough - J Harding Armstrong,03210005, 125, 18.4, 372, 45.2, 54.8, 19.6, 18.6,16.7 +NA,NA,a-curv-i5,2021-22,Westborough - Mill Pond School,03210045, 333, 20.7, 890, 50.2, 49.8, 9.7, 20.7,18.5 +NA,NA,a-curv-i5,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 541, 15.1, 604, 51.0, 48.8, 7.6, 13.1,17.7 +NA,NA,a-curv-i5,2021-22,Westborough - Westborough High,03210505, 748, 14.9," 1,192", 51.2, 48.6, 4.4, 10.0,14.9 +NA,NA,a-curv-i5,2021-22,Westfield - Abner Gibbs,03250020, 101, 16.6, 166, 46.4, 53.6, 1.2, 19.9,68.7 +NA,NA,a-curv-i5,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 8.9, 151, 41.1, 58.9, 4.0, 62.3,55 +NA,NA,a-curv-i5,2021-22,Westfield - Franklin Ave,03250015, 101, 17.3, 173, 59.0, 41.0, 1.7, 27.2,83.2 +NA,NA,a-curv-i5,2021-22,Westfield - Highland,03250025, 189, 18.6, 343, 49.9, 50.2, 19.8, 19.8,49.3 +NA,NA,a-curv-i5,2021-22,Westfield - Munger Hill,03250033, 192, 18.9, 353, 47.9, 52.1, 24.4, 22.7,49 +NA,NA,a-curv-i5,2021-22,Westfield - Paper Mill,03250036, 164, 19.0, 312, 49.7, 50.3, 2.6, 24.7,56.1 +NA,NA,a-curv-i5,2021-22,Westfield - Southampton Road,03250040, 151, 19.6, 293, 45.7, 54.3, 1.0, 19.8,45.1 +NA,NA,a-curv-i5,2021-22,Westfield - Westfield High,03250505, 598, 15.3," 1,097", 52.1, 47.7, 5.0, 20.8,43.3 +NA,NA,a-curv-i5,2021-22,Westfield - Westfield Intermediate School,03250075, 416, 17.4, 700, 50.1, 49.9, 6.3, 19.4,51.6 +NA,NA,a-curv-i5,2021-22,Westfield - Westfield Middle School,03250310, 347, 16.1, 696, 47.1, 52.7, 5.8, 21.0,50.4 +NA,NA,a-curv-i5,2021-22,Westfield - Westfield Technical Academy,03250605, 279, 13.4, 531, 33.9, 66.1, 3.8, 25.8,48.2 +NA,NA,a-curv-i5,2021-22,Westfield - Westfield Virtual School,03250705, 85, 11.2, 110, 55.5, 43.6, 1.8, 23.6,69.1 +NA,NA,a-curv-i5,2021-22,Westford - Abbot Elementary,03260004, 140, 17.1, 343, 48.4, 51.6, 2.0, 19.0,8.5 +NA,NA,a-curv-i5,2021-22,Westford - Blanchard Middle,03260310, 372, 15.4, 537, 51.0, 48.8, 1.3, 17.3,7.8 +NA,NA,a-curv-i5,2021-22,Westford - Col John Robinson,03260025, 115, 19.9, 331, 50.8, 49.2, 6.3, 20.2,10 +NA,NA,a-curv-i5,2021-22,Westford - Day Elementary,03260007, 112, 19.7, 316, 48.7, 51.3, 5.7, 14.2,11.1 +NA,NA,a-curv-i5,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 144, 20.2, 364, 48.4, 51.4, 3.9, 19.5,9.3 +NA,NA,a-curv-i5,2021-22,Westford - Nabnasset,03260015, 144, 19.2, 378, 47.9, 52.1, 2.1, 17.7,10.9 +NA,NA,a-curv-i5,2021-22,Westford - Rita E. Miller Elementary School,03260055, 102, 18.5, 319, 41.7, 58.3, 18.2, 25.7,14.4 +NA,NA,a-curv-i5,2021-22,Westford - Stony Brook School,03260330, 366, 18.2, 636, 54.9, 45.0, 0.8, 16.7,10.7 +NA,NA,a-curv-i5,2021-22,Westford - Westford Academy,03260505, 730, 17.6," 1,563", 48.4, 51.5, 1.0, 12.3,6.7 +NA,NA,a-curv-i5,2021-22,Westhampton - Westhampton Elementary School,03270005, 57, 14.0, 110, 43.6, 56.4, 0.0, 25.5,31.8 +NA,NA,a-curv-i5,2021-22,Weston - Country,03300010, 82, 18.5, 312, 48.7, 51.3, 3.9, 10.9,7.7 +NA,NA,a-curv-i5,2021-22,Weston - Field Elementary School,03300012, 93, 20.1, 264, 48.5, 51.5, 4.6, 16.7,11 +NA,NA,a-curv-i5,2021-22,Weston - Weston High,03300505, 584, 13.4, 641, 47.1, 52.7, 1.4, 22.5,6.4 +NA,NA,a-curv-i5,2021-22,Weston - Weston Middle,03300305, 300, 17.9, 456, 48.7, 51.3, 2.4, 18.6,8.3 +NA,NA,a-curv-i5,2021-22,Weston - Woodland,03300015, 75, 18.6, 291, 55.3, 44.3, 7.6, 10.3,11 +NA,NA,a-curv-i5,2021-22,Westport - Alice A Macomber,03310015, 67, 17.6, 181, 49.2, 50.8, 2.2, 27.1,45.3 +NA,NA,a-curv-i5,2021-22,Westport - Westport Elementary,03310030, 170, 16.8, 442, 52.9, 47.1, 2.3, 22.0,39.4 +6.437735849056604,5,a-curv-i5,2021-22,Westport - Westport Middle-High School,03310515, 424, 16.6, 833, 47.2, 52.5, 1.0, 17.7,32.7,828 +NA,NA,a-curv-i5,2021-22,Westwood - Deerfield School,03350010, 87, 15.1, 181, 43.7, 56.4, 1.1, 28.2,6.1 +NA,NA,a-curv-i5,2021-22,Westwood - Downey,03350012, 123, 17.7, 301, 43.2, 56.8, 2.0, 27.6,6.3 +NA,NA,a-curv-i5,2021-22,Westwood - E W Thurston Middle,03350305, 423, 20.7, 671, 49.2, 50.8, 0.3, 23.1,8.5 +NA,NA,a-curv-i5,2021-22,Westwood - Martha Jones,03350017, 109, 18.4, 277, 48.7, 51.3, 1.1, 14.1,2.5 +NA,NA,a-curv-i5,2021-22,Westwood - Paul Hanlon,03350015, 87, 16.3, 196, 46.4, 53.6, 2.6, 28.1,11.7 +NA,NA,a-curv-i5,2021-22,Westwood - Westwood High,03350505, 533, 14.9, 956, 50.0, 49.9, 0.3, 16.1,8.4 +NA,NA,a-curv-i5,2021-22,Westwood - Westwood Integrated Preschool,03350050, 3, 16.3, 49, 36.7, 63.3, 0.0, 55.1,10.2 +NA,NA,a-curv-i5,2021-22,Westwood - William E Sheehan,03350025, 108, 19.7, 297, 44.8, 55.2, 1.4, 20.5,4.7 +NA,NA,a-curv-i5,2021-22,Weymouth - Abigail Adams Middle School,03360310, 707, 19.4, 824, 53.6, 46.2, 6.3, 24.6,45.9 +NA,NA,a-curv-i5,2021-22,Weymouth - Academy Avenue,03360005, 95, 19.4, 352, 47.4, 52.6, 12.2, 13.4,35.8 +NA,NA,a-curv-i5,2021-22,Weymouth - Frederick C Murphy,03360050, 71, 21.0, 287, 44.3, 55.8, 11.5, 25.1,48.1 +NA,NA,a-curv-i5,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 21, 9.5, 199, 37.7, 62.3, 0.0, 60.3,41.2 +NA,NA,a-curv-i5,2021-22,Weymouth - Lawrence W Pingree,03360065, 67, 20.2, 262, 53.1, 47.0, 5.0, 26.0,49.6 +NA,NA,a-curv-i5,2021-22,Weymouth - Ralph Talbot,03360085, 64, 21.6, 268, 45.5, 54.5, 10.5, 16.4,40.7 +NA,NA,a-curv-i5,2021-22,Weymouth - Thomas V Nash,03360060, 67, 17.5, 226, 50.0, 50.0, 10.6, 15.5,37.6 +NA,NA,a-curv-i5,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 90, 20.5, 351, 47.6, 52.4, 14.3, 19.7,31.6 +NA,NA,a-curv-i5,2021-22,Weymouth - Wessagusset,03360110, 106, 16.8, 349, 47.0, 53.0, 7.2, 22.1,42.4 +6.509300411522633,5,a-curv-i5,2021-22,Weymouth - Weymouth High School,03360505," 1,215", 15.8," 2,323", 48.9, 51.0, 5.4, 20.8,40.6,2264 +NA,NA,a-curv-i5,2021-22,Weymouth - William Seach,03360080, 102, 19.7, 378, 50.3, 49.7, 17.7, 15.9,69.8 +NA,NA,a-curv-i5,2021-22,Whately - Whately Elementary,03370005, 87, 14.9, 123, 51.2, 48.8, 3.3, 16.3,24.4 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - Indian Head,07800035, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - John H Duval,07800030, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whitman-Hanson - Whitman Middle,07800310, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,002", 12.7," 1,263", 46.5, 53.3, 1.1, 18.1,40.3 +NA,NA,a-curv-i5,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 73, 15.7, 141, 46.1, 53.9, 0.7, 14.9,38.3 +NA,NA,a-curv-i5,2021-22,Wilmington - Boutwell,03420005, 76, 14.5, 133, 50.4, 49.6, 0.8, 17.3,21.1 +NA,NA,a-curv-i5,2021-22,Wilmington - North Intermediate,03420060, 143, 19.6, 253, 52.6, 47.4, 1.2, 15.4,14.6 +NA,NA,a-curv-i5,2021-22,Wilmington - Shawsheen Elementary,03420025, 181, 18.3, 331, 46.5, 53.5, 1.2, 17.8,16.9 +NA,NA,a-curv-i5,2021-22,Wilmington - West Intermediate,03420080, 128, 18.4, 212, 51.4, 48.6, 0.0, 17.9,14.6 +NA,NA,a-curv-i5,2021-22,Wilmington - Wildwood,03420015, 110, 12.9, 164, 37.2, 62.8, 3.1, 23.8,18.9 +NA,NA,a-curv-i5,2021-22,Wilmington - Wilmington High,03420505, 436, 13.9, 707, 52.8, 47.1, 0.6, 13.9,14.6 +NA,NA,a-curv-i5,2021-22,Wilmington - Wilmington Middle School,03420330, 546, 14.7, 687, 47.3, 52.6, 0.4, 18.9,16.5 +NA,NA,a-curv-i5,2021-22,Wilmington - Woburn Street,03420020, 197, 18.2, 351, 44.2, 55.8, 6.0, 14.8,18.8 +NA,NA,a-curv-i5,2021-22,Winchendon - Memorial,03430040, 71, 20.9, 296, 48.7, 51.4, 1.7, 26.7,64.9 +NA,NA,a-curv-i5,2021-22,Winchendon - Murdock Academy for Success,03430405, 2, 15.5, 22, 45.5, 54.6, 0.0, 40.9,68.2 +6.57718120805369,5,a-curv-i5,2021-22,Winchendon - Murdock High School,03430515, 149, 13.0, 264, 45.8, 53.8, 1.5, 23.1,54.2,265 +NA,NA,a-curv-i5,2021-22,Winchendon - Murdock Middle School,03430315, 116, 17.5, 263, 45.3, 54.8, 2.3, 19.0,57.8 +NA,NA,a-curv-i5,2021-22,Winchendon - Toy Town Elementary,03430050, 109, 24.8, 298, 44.0, 56.0, 1.7, 20.5,60.7 +NA,NA,a-curv-i5,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 7, 10.7, 73, 41.1, 58.9, 2.7, 43.8,45.2 +NA,NA,a-curv-i5,2021-22,Winchester - Ambrose Elementary,03440045, 214, 17.4, 348, 50.3, 49.7, 2.0, 10.9,2.6 +NA,NA,a-curv-i5,2021-22,Winchester - Lincoln Elementary,03440005, 251, 15.9, 344, 48.0, 52.0, 2.6, 15.1,2.3 +NA,NA,a-curv-i5,2021-22,Winchester - Lynch Elementary,03440020, 287, 18.7, 535, 44.7, 55.3, 10.7, 22.2,12.5 +NA,NA,a-curv-i5,2021-22,Winchester - McCall Middle,03440305, 562, 20.8," 1,068", 51.1, 48.8, 1.1, 16.0,7.3 +NA,NA,a-curv-i5,2021-22,Winchester - Muraco Elementary,03440040, 225, 17.3, 343, 49.0, 50.7, 8.8, 13.7,11.1 +NA,NA,a-curv-i5,2021-22,Winchester - Vinson-Owen Elementary,03440025, 274, 16.0, 392, 49.7, 50.3, 5.6, 16.8,4.6 +6.297791798107255,5,a-curv-i5,2021-22,Winchester - Winchester High School,03440505, 634, 16.3," 1,348", 51.6, 48.4, 1.1, 16.1,8.1,1349 +NA,NA,a-curv-i5,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 126, 19.6, 411, 54.7, 45.3, 11.0, 14.8,40.6 +NA,NA,a-curv-i5,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 125, 19.1, 514, 49.8, 50.2, 14.2, 21.8,38.7 +5.891588785046729,5,a-curv-i5,2021-22,Winthrop - Winthrop High School,03460505, 214, 18.1, 575, 49.6, 50.1, 5.0, 14.6,40.5,564 +NA,NA,a-curv-i5,2021-22,Winthrop - Winthrop Middle School,03460305, 211, 19.6, 444, 48.4, 51.6, 4.7, 11.7,42.8 +NA,NA,a-curv-i5,2021-22,Woburn - Clyde Reeves,03470040, 199, 16.0, 447, 46.8, 53.2, 7.8, 34.9,38.5 +NA,NA,a-curv-i5,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 427, 14.5, 486, 50.4, 49.6, 8.2, 20.4,41.2 +NA,NA,a-curv-i5,2021-22,Woburn - Goodyear Elementary School,03470005, 184, 16.7, 310, 48.1, 51.9, 17.1, 20.0,45.8 +NA,NA,a-curv-i5,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 180, 21.2, 382, 47.9, 52.1, 7.1, 17.0,22.8 +NA,NA,a-curv-i5,2021-22,Woburn - John F Kennedy Middle School,03470405, 418, 16.3, 486, 52.3, 47.7, 7.2, 12.4,44.7 +NA,NA,a-curv-i5,2021-22,Woburn - Linscott-Rumford,03470025, 120, 17.1, 205, 48.3, 51.7, 13.2, 11.7,36.6 +NA,NA,a-curv-i5,2021-22,Woburn - Malcolm White,03470055, 160, 18.6, 298, 53.4, 46.6, 19.5, 15.1,49.3 +NA,NA,a-curv-i5,2021-22,Woburn - Mary D Altavesta,03470065, 130, 17.5, 228, 50.9, 49.1, 18.4, 16.7,49.6 +NA,NA,a-curv-i5,2021-22,Woburn - Shamrock,03470043, 183, 13.8, 284, 44.7, 55.3, 12.3, 32.8,56.3 +NA,NA,a-curv-i5,2021-22,Woburn - Woburn High,03470505, 654, 14.6," 1,271", 51.7, 48.0, 8.3, 16.1,38.2 +NA,NA,a-curv-i5,2021-22,Worcester - Belmont Street Community,03480020, 213, 20.9, 609, 47.5, 52.6, 45.3, 20.5,91 +NA,NA,a-curv-i5,2021-22,Worcester - Burncoat Middle School,03480405, 404, 17.1, 692, 51.7, 48.3, 17.1, 20.5,67.6 +NA,NA,a-curv-i5,2021-22,Worcester - Burncoat Senior High,03480503, 670, 13.5," 1,134", 47.1, 52.9, 24.5, 24.7,73.5 +NA,NA,a-curv-i5,2021-22,Worcester - Burncoat Street,03480035, 152, 13.6, 264, 50.0, 50.0, 37.9, 26.1,85.6 +NA,NA,a-curv-i5,2021-22,Worcester - Canterbury,03480045, 150, 14.7, 313, 47.0, 52.7, 51.1, 23.3,85.6 +NA,NA,a-curv-i5,2021-22,Worcester - Chandler Elementary Community,03480050, 196, 17.4, 448, 49.1, 50.9, 52.7, 19.9,94 +NA,NA,a-curv-i5,2021-22,Worcester - Chandler Magnet,03480052, 230, 14.5, 453, 53.6, 46.4, 59.4, 19.9,75.9 +NA,NA,a-curv-i5,2021-22,Worcester - City View,03480053, 253, 14.4, 482, 48.1, 51.9, 43.4, 24.9,91.3 +NA,NA,a-curv-i5,2021-22,Worcester - Claremont Academy,03480350, 281, 17.0, 520, 51.0, 49.0, 33.3, 14.0,85.6 +NA,NA,a-curv-i5,2021-22,Worcester - Clark St Community,03480055, 174, 11.2, 285, 52.6, 47.4, 47.4, 27.0,92.3 +NA,NA,a-curv-i5,2021-22,Worcester - Columbus Park,03480060, 222, 13.1, 382, 47.9, 52.1, 43.5, 27.5,86.1 +NA,NA,a-curv-i5,2021-22,Worcester - Doherty Memorial High,03480512, 913, 11.3," 1,280", 44.0, 56.0, 20.2, 15.6,59.9 +NA,NA,a-curv-i5,2021-22,Worcester - Elm Park Community,03480095, 172, 18.9, 419, 47.5, 52.5, 45.1, 16.5,91.4 +NA,NA,a-curv-i5,2021-22,Worcester - Flagg Street,03480090, 133, 19.0, 343, 51.6, 48.4, 12.8, 16.3,32.1 +NA,NA,a-curv-i5,2021-22,Worcester - Forest Grove Middle,03480415, 594, 18.2, 948, 48.8, 51.2, 18.4, 20.3,64.8 +NA,NA,a-curv-i5,2021-22,Worcester - Francis J McGrath Elementary,03480177, 108, 15.3, 216, 48.6, 51.4, 35.7, 19.4,82.4 +NA,NA,a-curv-i5,2021-22,Worcester - Gates Lane,03480110, 310, 12.1, 541, 41.4, 58.6, 40.5, 42.1,77.3 +NA,NA,a-curv-i5,2021-22,Worcester - Goddard School/Science Technical,03480100, 172, 17.7, 403, 49.6, 50.4, 55.1, 21.8,89.8 +NA,NA,a-curv-i5,2021-22,Worcester - Grafton Street,03480115, 160, 22.2, 453, 47.9, 52.1, 50.1, 15.5,87.2 +NA,NA,a-curv-i5,2021-22,Worcester - Head Start,03480002, 30, 11.7, 321, 54.8, 45.2, 1.9, 7.5,90.7 +NA,NA,a-curv-i5,2021-22,Worcester - Heard Street,03480136, 116, 15.7, 239, 49.4, 50.6, 21.3, 16.7,64.9 +NA,NA,a-curv-i5,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 129, 18.5, 365, 55.9, 44.1, 30.4, 18.9,77.5 +NA,NA,a-curv-i5,2021-22,Worcester - La Familia Dual Language School,03480025, 74, 14.4, 153, 55.6, 44.4, 30.1, 9.2,55.6 +NA,NA,a-curv-i5,2021-22,Worcester - Lake View,03480145, 140, 17.3, 317, 45.1, 54.9, 29.3, 18.6,67.5 +NA,NA,a-curv-i5,2021-22,Worcester - Lincoln Street,03480160, 109, 17.8, 245, 45.3, 54.7, 42.5, 24.9,89.4 +NA,NA,a-curv-i5,2021-22,Worcester - May Street,03480175, 110, 20.5, 297, 47.5, 52.5, 22.9, 11.1,57.9 +NA,NA,a-curv-i5,2021-22,Worcester - Midland Street,03480185, 98, 15.7, 205, 50.2, 49.8, 25.9, 9.8,56.1 +NA,NA,a-curv-i5,2021-22,Worcester - Nelson Place,03480200, 328, 12.2, 568, 40.5, 59.5, 24.3, 37.9,46.5 +NA,NA,a-curv-i5,2021-22,Worcester - Norrback Avenue,03480202, 373, 9.6, 520, 43.5, 56.5, 32.7, 43.1,70 +NA,NA,a-curv-i5,2021-22,Worcester - North High,03480515, 631, 16.1," 1,260", 49.1, 50.8, 32.1, 22.7,83.9 +NA,NA,a-curv-i5,2021-22,Worcester - Quinsigamond,03480210, 326, 16.5, 711, 47.1, 52.9, 46.8, 21.4,84.3 +NA,NA,a-curv-i5,2021-22,Worcester - Rice Square,03480215, 184, 22.3, 536, 51.7, 48.3, 43.8, 15.5,81.2 +NA,NA,a-curv-i5,2021-22,Worcester - Roosevelt,03480220, 282, 12.0, 516, 44.0, 56.0, 27.5, 33.3,68.8 +NA,NA,a-curv-i5,2021-22,Worcester - South High Community,03480520, 770, 15.7," 1,474", 46.3, 53.6, 28.6, 20.7,75 +NA,NA,a-curv-i5,2021-22,Worcester - Sullivan Middle,03480423, 582, 16.1, 915, 47.5, 52.4, 24.4, 21.6,76.5 +NA,NA,a-curv-i5,2021-22,Worcester - Tatnuck,03480230, 159, 18.8, 406, 47.3, 52.7, 24.1, 22.4,60.3 +NA,NA,a-curv-i5,2021-22,Worcester - Thorndyke Road,03480235, 124, 23.5, 374, 50.0, 50.0, 33.7, 21.7,67.7 +NA,NA,a-curv-i5,2021-22,Worcester - Union Hill School,03480240, 168, 19.0, 407, 47.4, 52.6, 49.6, 22.1,87.5 +NA,NA,a-curv-i5,2021-22,Worcester - University Pk Campus School,03480285, 120, 17.9, 233, 45.9, 54.1, 21.9, 14.6,77.3 +NA,NA,a-curv-i5,2021-22,Worcester - Vernon Hill School,03480280, 199, 17.6, 517, 53.0, 47.0, 48.4, 21.5,86.7 +NA,NA,a-curv-i5,2021-22,Worcester - Wawecus Road School,03480026, 109, 9.2, 127, 49.6, 50.4, 38.6, 32.3,77.2 +NA,NA,a-curv-i5,2021-22,Worcester - West Tatnuck,03480260, 149, 15.4, 343, 46.4, 53.6, 18.7, 23.0,45.2 +NA,NA,a-curv-i5,2021-22,Worcester - Woodland Academy,03480030, 231, 17.9, 503, 51.7, 48.3, 61.4, 18.5,91.5 +NA,NA,a-curv-i5,2021-22,Worcester - Worcester Arts Magnet School,03480225, 132, 19.7, 367, 51.8, 48.2, 18.5, 20.2,47.1 +NA,NA,a-curv-i5,2021-22,Worcester - Worcester East Middle,03480420, 486, 16.6, 802, 48.8, 51.3, 29.3, 19.1,86.8 +NA,NA,a-curv-i5,2021-22,Worcester - Worcester Technical High,03480605, 743, 15.4," 1,458", 58.9, 41.2, 6.4, 14.1,62.1 +NA,NA,a-curv-i5,2021-22,Worthington - R. H. Conwell,03490010, 44, 7.8, 68, 42.7, 55.9, 0.0, 25.0,35.3 +NA,NA,a-curv-i5,2021-22,Wrentham - Charles E Roderick,03500010, 216, 17.8, 384, 50.8, 49.2, 1.6, 19.3,16.7 +NA,NA,a-curv-i5,2021-22,Wrentham - Delaney,03500003, 262, 18.4, 555, 48.1, 51.9, 2.9, 17.8,14.2 +NA,NA,a-curv-i5,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 713, 18.9," 1,425", 54.4, 45.6, 13.6, 13.0,48.6 +NA,NA,a-curv-i5,2020-21,Abington - Abington Early Education Program,00010001, 20, 13.0, 65, 41.5, 58.5, 4.6, 60.0,29.2 +NA,NA,a-curv-i5,2020-21,Abington - Abington High,00010505, 266, 17.1, 591, 46.9, 53.1, 5.6, 11.5,26.9 +NA,NA,a-curv-i5,2020-21,Abington - Abington Middle School,00010405, 328, 22.7, 651, 50.2, 49.8, 6.6, 15.7,33.3 +NA,NA,a-curv-i5,2020-21,Abington - Beaver Brook Elementary,00010020, 241, 20.1, 525, 52.6, 47.2, 13.1, 16.4,31.4 +NA,NA,a-curv-i5,2020-21,Abington - Woodsdale Elementary School,00010015, 134, 21.6, 320, 50.3, 49.7, 10.0, 19.1,25.3 +NA,NA,a-curv-i5,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 201, 19.7, 538, 48.5, 51.5, 8.2, 26.0,48.7 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 782, 15.8," 1,755", 47.0, 52.8, 1.1, 9.9,7.9 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 149, 17.9, 376, 47.9, 52.1, 9.8, 17.8,6.9 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 135, 16.7, 319, 46.4, 53.3, 6.6, 16.0,10 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 12, 7.3, 79, 38.0, 62.0, 17.7, 55.7,15.2 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Luther Conant School,06000030, 107, 17.0, 255, 48.6, 51.4, 13.7, 18.8,12.6 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 149, 18.7, 394, 50.8, 49.2, 5.8, 16.2,10.4 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Merriam School,06000010, 140, 17.7, 353, 50.7, 49.3, 5.7, 16.4,9.1 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 86, 19.0, 231, 48.9, 51.1, 9.1, 11.3,11.3 +NA,NA,a-curv-i5,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 584, 16.7, 840, 49.9, 49.9, 2.1, 17.6,9.1 +NA,NA,a-curv-i5,2020-21,Acushnet - Acushnet Elementary School,00030025, 251, 14.1, 494, 47.4, 52.6, 0.4, 13.4,28.3 +NA,NA,a-curv-i5,2020-21,Acushnet - Albert F Ford Middle School,00030305, 149, 17.0, 419, 47.7, 52.3, 0.0, 11.9,27 +NA,NA,a-curv-i5,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 490, 18.6, 960, 47.6, 52.3, 2.0, 6.3,10.7 +NA,NA,a-curv-i5,2020-21,Agawam - Agawam Early Childhood Center,00050003, 16, 8.3, 118, 40.7, 59.3, 1.7, 61.9,40.7 +NA,NA,a-curv-i5,2020-21,Agawam - Agawam High,00050505, 664, 13.9," 1,037", 48.8, 51.1, 1.6, 13.7,27.6 +NA,NA,a-curv-i5,2020-21,Agawam - Agawam Junior High,00050405, 650, 12.3, 584, 50.9, 49.0, 3.1, 16.1,37.8 +NA,NA,a-curv-i5,2020-21,Agawam - Benjamin J Phelps,00050020, 256, 14.0, 348, 48.3, 51.7, 8.1, 11.5,39.1 +NA,NA,a-curv-i5,2020-21,Agawam - Clifford M Granger,00050010, 184, 13.4, 251, 51.0, 49.0, 8.4, 21.1,37.9 +NA,NA,a-curv-i5,2020-21,Agawam - James Clark School,00050030, 205, 12.6, 264, 50.0, 50.0, 9.9, 17.4,32.2 +NA,NA,a-curv-i5,2020-21,Agawam - Roberta G. Doering School,00050303, 417, 15.9, 510, 43.7, 56.3, 2.8, 19.0,37.7 +NA,NA,a-curv-i5,2020-21,Agawam - Robinson Park,00050025, 274, 14.2, 370, 49.7, 50.3, 11.6, 11.1,40 +NA,NA,a-curv-i5,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 236, 24.1, 791, 55.0, 45.0, 30.5, 19.7,66.6 +NA,NA,a-curv-i5,2020-21,Amesbury - Amesbury Elementary,00070005, 144, 17.7, 302, 37.8, 62.3, 0.3, 24.5,32.1 +NA,NA,a-curv-i5,2020-21,Amesbury - Amesbury High,00070505, 353, 14.3, 518, 49.2, 50.4, 1.7, 16.8,20.7 +6.916129032258064,5,a-curv-i5,2020-21,Amesbury - Amesbury Innovation High School,00070515, 31, 7.7, 43, 46.5, 53.5, 0.0, 60.5,58.1,42 +NA,NA,a-curv-i5,2020-21,Amesbury - Amesbury Middle,00070013, 411, 14.2, 625, 46.7, 53.3, 1.8, 24.2,29.6 +NA,NA,a-curv-i5,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 176, 18.2, 384, 49.7, 50.3, 4.7, 27.1,37.2 +NA,NA,a-curv-i5,2020-21,Amherst - Crocker Farm Elementary,00080009, 138, 14.3, 352, 46.9, 52.3, 13.1, 25.6,33.8 +NA,NA,a-curv-i5,2020-21,Amherst - Fort River Elementary,00080020, 122, 13.8, 289, 48.1, 51.9, 12.8, 24.9,36 +NA,NA,a-curv-i5,2020-21,Amherst - Wildwood Elementary,00080050, 132, 17.3, 373, 49.6, 50.4, 9.9, 19.8,35.9 +NA,NA,a-curv-i5,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 568, 11.1, 863, 49.4, 50.1, 8.2, 21.1,28.3 +NA,NA,a-curv-i5,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 427, 15.0, 417, 47.5, 52.3, 6.5, 25.2,30.9 +NA,NA,a-curv-i5,2020-21,Andover - Andover High,00090505," 1,760", 8.6," 1,747", 53.4, 46.5, 0.6, 16.1,11 +NA,NA,a-curv-i5,2020-21,Andover - Andover West Middle,00090310, 347, 15.7, 543, 48.8, 51.2, 1.5, 20.6,13.8 +NA,NA,a-curv-i5,2020-21,Andover - Bancroft Elementary,00090003, 192, 18.9, 527, 49.0, 51.0, 1.9, 19.5,7.6 +NA,NA,a-curv-i5,2020-21,Andover - Doherty Middle,00090305, 310, 16.1, 472, 50.0, 50.0, 0.9, 19.3,8.7 +NA,NA,a-curv-i5,2020-21,Andover - Henry C Sanborn Elementary,00090010, 123, 18.8, 335, 49.3, 50.8, 6.9, 14.9,9.9 +NA,NA,a-curv-i5,2020-21,Andover - High Plain Elementary,00090004, 178, 20.3, 527, 47.1, 52.9, 12.0, 17.7,10.4 +NA,NA,a-curv-i5,2020-21,Andover - Shawsheen School,00090005, 12, 6.6, 79, 34.2, 65.8, 5.1, 65.8,16.5 +NA,NA,a-curv-i5,2020-21,Andover - South Elementary,00090020, 164, 19.4, 464, 49.4, 50.7, 3.2, 17.7,7.8 +NA,NA,a-curv-i5,2020-21,Andover - West Elementary,00090025, 199, 18.6, 541, 45.8, 54.2, 3.9, 31.4,11.1 +NA,NA,a-curv-i5,2020-21,Andover - Wood Hill Middle School,00090350, 444, 8.6, 379, 49.1, 50.9, 2.1, 18.5,7.4 +NA,NA,a-curv-i5,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 212, 21.6, 578, 45.7, 54.3, 20.9, 24.2,67.7 +NA,NA,a-curv-i5,2020-21,Arlington - Arlington High,00100505, 997, 13.0," 1,419", 53.5, 46.0, 0.9, 11.9,10 +NA,NA,a-curv-i5,2020-21,Arlington - Brackett,00100010, 154, 19.2, 422, 46.5, 53.6, 2.6, 19.0,2.4 +NA,NA,a-curv-i5,2020-21,Arlington - Cyrus E Dallin,00100025, 168, 16.0, 384, 51.6, 48.4, 3.7, 11.5,7 +NA,NA,a-curv-i5,2020-21,Arlington - Gibbs School,00100305, 355, 15.7, 485, 46.6, 53.4, 3.5, 19.0,10.5 +NA,NA,a-curv-i5,2020-21,Arlington - Hardy,00100030, 117, 19.6, 333, 52.3, 47.5, 10.8, 19.5,9.9 +NA,NA,a-curv-i5,2020-21,Arlington - John A Bishop,00100005, 119, 19.4, 329, 48.6, 51.1, 6.7, 13.4,5.2 +NA,NA,a-curv-i5,2020-21,Arlington - M Norcross Stratton,00100055, 133, 21.0, 399, 47.9, 51.9, 9.0, 21.3,9.5 +NA,NA,a-curv-i5,2020-21,Arlington - Menotomy Preschool,00100038, 7, 11.4, 80, 41.3, 58.8, 0.0, 67.5,23.8 +NA,NA,a-curv-i5,2020-21,Arlington - Ottoson Middle,00100410, 751, 14.4, 895, 46.2, 53.6, 2.4, 16.9,11.6 +NA,NA,a-curv-i5,2020-21,Arlington - Peirce,00100045, 84, 19.8, 237, 45.2, 54.4, 9.3, 11.8,8.9 +NA,NA,a-curv-i5,2020-21,Arlington - Thompson,00100050, 154, 20.2, 442, 53.4, 46.4, 8.8, 18.1,18.8 +NA,NA,a-curv-i5,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 256, 18.2, 479, 47.8, 52.2, 2.9, 26.7,21.7 +NA,NA,a-curv-i5,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 96, 17.2, 161, 54.7, 45.3, 6.2, 14.9,17.4 +6.4595238095238106,5,a-curv-i5,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 336, 14.7, 606, 48.5, 51.5, 0.5, 19.3,18.7,647 +NA,NA,a-curv-i5,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 242, 21.8, 531, 48.6, 51.4, 0.4, 20.5,21.9 +NA,NA,a-curv-i5,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 195, 20.1, 353, 47.9, 52.1, 2.6, 21.0,20.1 +NA,NA,a-curv-i5,2020-21,Ashland - Ashland High,00140505, 388, 15.3, 779, 51.0, 49.0, 3.2, 12.7,17.3 +NA,NA,a-curv-i5,2020-21,Ashland - Ashland Middle,00140405, 553, 13.2, 646, 49.4, 50.6, 5.9, 19.7,20.9 +NA,NA,a-curv-i5,2020-21,Ashland - David Mindess,00140015, 256, 20.5, 612, 49.7, 50.3, 7.4, 20.8,18.5 +NA,NA,a-curv-i5,2020-21,Ashland - Henry E Warren Elementary,00140010, 139, 22.1, 472, 44.9, 55.1, 13.4, 20.1,24.8 +NA,NA,a-curv-i5,2020-21,Ashland - William Pittaway Elementary,00140005, 16, 3.6, 55, 32.7, 67.3, 0.0, 52.7,12.7 +6.634175334323922,5,a-curv-i5,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 673, 12.3," 1,138", 40.3, 58.5, 4.9, 25.8,33.2,1149 +NA,NA,a-curv-i5,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 202, 20.1, 559, 45.6, 54.4, 4.5, 24.7,61.7 +NA,NA,a-curv-i5,2020-21,Athol-Royalston - Athol High,06150505, 159, 15.7, 347, 47.8, 52.2, 2.6, 26.2,50.4 +NA,NA,a-curv-i5,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 272, 19.1, 446, 40.6, 59.4, 2.5, 22.0,62.3 +NA,NA,a-curv-i5,2020-21,Athol-Royalston - Royalston Community School,06150050, 52, 18.9, 133, 50.4, 49.6, 0.0, 17.3,40.6 +NA,NA,a-curv-i5,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 542, 13.1," 1,290", 52.3, 47.7, 15.0, 13.3,51.9 +NA,NA,a-curv-i5,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 233, 13.2, 321, 52.3, 47.7, 6.2, 19.6,32.1 +NA,NA,a-curv-i5,2020-21,Attleboro - Attleboro Community Academy,00160515, 42, 12.6, 88, 46.6, 52.3, 2.3, 17.1,51.1 +NA,NA,a-curv-i5,2020-21,Attleboro - Attleboro High,00160505, 920, 18.4," 1,779", 45.7, 54.2, 3.0, 15.9,30.5 +NA,NA,a-curv-i5,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 363, 16.0, 629, 45.5, 54.4, 5.1, 16.1,43.2 +NA,NA,a-curv-i5,2020-21,Attleboro - Early Learning Center,00160008, 16, 8.4, 135, 35.6, 64.4, 0.0, 71.1,41.5 +NA,NA,a-curv-i5,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 238, 16.8, 412, 50.5, 49.5, 9.5, 15.3,34.7 +NA,NA,a-curv-i5,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 258, 17.1, 448, 49.3, 50.7, 13.6, 17.0,36.6 +NA,NA,a-curv-i5,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 310, 14.1, 454, 47.8, 52.2, 8.8, 24.5,42.3 +NA,NA,a-curv-i5,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 263, 20.9, 646, 45.1, 55.0, 2.2, 14.7,31.4 +NA,NA,a-curv-i5,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 170, 17.8, 316, 48.4, 51.6, 7.6, 21.5,38.6 +NA,NA,a-curv-i5,2020-21,Attleboro - Wamsutta Middle School,00160320, 244, 18.0, 577, 49.9, 50.1, 4.0, 13.5,31.4 +NA,NA,a-curv-i5,2020-21,Auburn - Auburn Middle,00170305, 339, 17.8, 639, 50.7, 49.3, 2.4, 11.1,22.1 +NA,NA,a-curv-i5,2020-21,Auburn - Auburn Senior High,00170505, 647, 15.2, 796, 50.6, 49.1, 1.5, 11.2,23.6 +NA,NA,a-curv-i5,2020-21,Auburn - Bryn Mawr,00170010, 124, 16.7, 263, 50.2, 49.8, 3.8, 12.6,28.9 +NA,NA,a-curv-i5,2020-21,Auburn - Pakachoag School,00170025, 144, 15.0, 270, 49.6, 50.4, 1.5, 9.6,22.6 +NA,NA,a-curv-i5,2020-21,Auburn - Swanson Road Intermediate School,00170030, 266, 16.8, 558, 47.9, 52.2, 3.4, 13.1,22.2 +6.932188841201716,5,a-curv-i5,2020-21,Avon - Avon Middle High School,00180510, 233, 13.2, 315, 44.1, 55.9, 2.5, 18.7,37.1,311 +NA,NA,a-curv-i5,2020-21,Avon - Ralph D Butler,00180010, 123, 13.8, 381, 50.1, 49.9, 11.3, 24.4,37.5 +6.8,5,a-curv-i5,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 238, 13.8, 359, 51.3, 48.8, 1.4, 17.3,24.5,357 +NA,NA,a-curv-i5,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 244, 18.1, 412, 43.2, 56.8, 2.2, 19.4,25.2 +NA,NA,a-curv-i5,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 207, 16.4, 330, 48.2, 51.8, 0.9, 23.0,28.5 +NA,NA,a-curv-i5,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 261, 17.3, 514, 47.9, 52.1, 7.4, 22.8,31.9 +NA,NA,a-curv-i5,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 119, 13.2, 249, 47.0, 52.6, 36.6, 9.2,51 +NA,NA,a-curv-i5,2020-21,Barnstable - Barnstable High,00200505," 1,587", 6.7," 1,608", 50.7, 49.2, 8.8, 16.2,39 +NA,NA,a-curv-i5,2020-21,Barnstable - Barnstable Intermediate School,00200315, 307, 15.5, 716, 46.7, 52.8, 10.1, 16.9,45.7 +NA,NA,a-curv-i5,2020-21,Barnstable - Barnstable United Elementary School,00200050, 508, 15.4, 701, 47.8, 51.9, 10.8, 18.5,45.4 +NA,NA,a-curv-i5,2020-21,Barnstable - Centerville Elementary,00200010, 89, 15.7, 205, 43.4, 56.6, 15.1, 22.0,45.9 +NA,NA,a-curv-i5,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 25, 6.0, 150, 34.0, 66.0, 10.0, 60.7,50.7 +NA,NA,a-curv-i5,2020-21,Barnstable - Hyannis West Elementary,00200025, 129, 12.0, 244, 54.5, 45.5, 44.3, 16.0,68 +NA,NA,a-curv-i5,2020-21,Barnstable - West Barnstable Elementary,00200005, 66, 17.0, 213, 46.0, 54.0, 12.7, 15.5,38.5 +NA,NA,a-curv-i5,2020-21,Barnstable - West Villages Elementary School,00200045, 128, 14.9, 311, 48.6, 51.5, 8.0, 14.2,26.7 +NA,NA,a-curv-i5,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 369, 13.3, 470, 45.3, 54.7, 8.7, 20.2,76.8 +NA,NA,a-curv-i5,2020-21,Bedford - Bedford High,00230505, 530, 12.9, 825, 49.5, 50.4, 1.3, 15.8,11.4 +NA,NA,a-curv-i5,2020-21,Bedford - John Glenn Middle,00230305, 315, 17.9, 621, 47.2, 52.7, 1.6, 16.6,9.7 +NA,NA,a-curv-i5,2020-21,Bedford - Lt Elezer Davis,00230010, 111, 15.5, 582, 42.1, 57.9, 11.7, 19.2,11 +NA,NA,a-curv-i5,2020-21,Bedford - Lt Job Lane School,00230012, 206, 15.2, 596, 52.4, 47.7, 5.4, 17.6,10.7 +NA,NA,a-curv-i5,2020-21,Belchertown - Belchertown High,00240505, 422, 14.5, 693, 51.8, 47.8, 0.1, 15.3,19.1 +NA,NA,a-curv-i5,2020-21,Belchertown - Chestnut Hill Community School,00240006, 224, 19.0, 489, 46.4, 53.6, 1.6, 23.5,23.3 +NA,NA,a-curv-i5,2020-21,Belchertown - Cold Spring,00240005, 36, 17.0, 183, 45.9, 54.1, 2.7, 25.1,25.7 +NA,NA,a-curv-i5,2020-21,Belchertown - Jabish Middle School,00240025, 264, 14.5, 362, 48.6, 50.8, 0.8, 23.8,19.6 +NA,NA,a-curv-i5,2020-21,Belchertown - Swift River Elementary,00240018, 243, 16.5, 445, 50.6, 49.4, 3.6, 22.0,23.6 +NA,NA,a-curv-i5,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 8, 8.4, 67, 55.2, 44.8, 0.0, 49.3,29.9 +6.132475884244373,5,a-curv-i5,2020-21,Bellingham - Bellingham High School,00250505, 311, 16.2, 730, 48.5, 51.5, 1.5, 18.4,21,726 +NA,NA,a-curv-i5,2020-21,Bellingham - Bellingham Memorial School,00250315, 299, 19.1, 648, 50.5, 49.5, 1.5, 19.8,24.7 +NA,NA,a-curv-i5,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 80, 13.4, 289, 52.9, 47.1, 3.5, 17.3,30.1 +NA,NA,a-curv-i5,2020-21,Bellingham - Keough Memorial Academy,00250510, 27, 6.0, 27, 59.3, 37.0, 0.0, 100.0,44.4 +NA,NA,a-curv-i5,2020-21,Bellingham - Stall Brook,00250025, 62, 14.1, 245, 48.2, 51.8, 7.8, 19.6,29 +NA,NA,a-curv-i5,2020-21,Belmont - Belmont High,00260505, 437, 20.8," 1,306", 50.5, 49.5, 1.4, 8.0,9.3 +NA,NA,a-curv-i5,2020-21,Belmont - Daniel Butler,00260015, 183, 15.0, 327, 48.6, 51.4, 19.3, 15.3,9.8 +NA,NA,a-curv-i5,2020-21,Belmont - Mary Lee Burbank,00260010, 188, 16.2, 373, 49.3, 50.7, 13.4, 10.5,7.5 +NA,NA,a-curv-i5,2020-21,Belmont - Roger E Wellington,00260035, 249, 17.2, 576, 50.4, 49.7, 17.2, 18.4,12.3 +NA,NA,a-curv-i5,2020-21,Belmont - Winn Brook,00260005, 182, 18.8, 421, 51.5, 48.5, 14.0, 9.3,2.1 +NA,NA,a-curv-i5,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 823, 19.8," 1,436", 49.7, 50.3, 4.0, 13.3,9 +NA,NA,a-curv-i5,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 65, 19.1, 291, 52.9, 47.1, 4.8, 15.5,57 +NA,NA,a-curv-i5,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 224, 26.0, 772, 50.4, 49.6, 7.5, 14.4,15 +NA,NA,a-curv-i5,2020-21,Berkley - Berkley Community School,00270010, 173, 15.8, 481, 47.0, 53.0, 1.3, 17.7,24.1 +NA,NA,a-curv-i5,2020-21,Berkley - Berkley Middle School,00270305, 295, 11.0, 398, 52.0, 48.0, 0.5, 14.8,20.4 +NA,NA,a-curv-i5,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 141, 18.5, 366, 46.2, 53.0, 1.4, 21.6,51.9 +NA,NA,a-curv-i5,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 416, 8.7, 499, 51.7, 48.3, 3.0, 12.8,25.5 +NA,NA,a-curv-i5,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 204, 13.3, 326, 54.6, 45.4, 6.8, 18.7,44.5 +NA,NA,a-curv-i5,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 143, 14.0, 344, 42.7, 57.3, 5.2, 20.6,39.2 +NA,NA,a-curv-i5,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 137, 14.7, 204, 52.0, 48.0, 2.9, 16.7,19.1 +NA,NA,a-curv-i5,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 190, 16.9, 303, 47.2, 52.8, 3.0, 19.1,10.2 +NA,NA,a-curv-i5,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 359, 15.4, 550, 49.8, 49.5, 1.8, 16.2,15.5 +NA,NA,a-curv-i5,2020-21,Beverly - Ayers/Ryal Side School,00300055, 97, 15.5, 389, 49.4, 50.6, 5.4, 11.6,26 +NA,NA,a-curv-i5,2020-21,Beverly - Beverly High,00300505, 562, 18.9," 1,280", 47.1, 52.8, 2.9, 17.1,28.1 +NA,NA,a-curv-i5,2020-21,Beverly - Beverly Middle School,00300305, 656, 15.8," 1,443", 49.4, 50.6, 2.2, 19.8,30.3 +NA,NA,a-curv-i5,2020-21,Beverly - Centerville Elementary,00300010, 100, 12.9, 324, 50.6, 49.4, 5.6, 20.7,37.4 +NA,NA,a-curv-i5,2020-21,Beverly - Cove Elementary,00300015, 122, 13.3, 407, 48.7, 51.4, 7.4, 21.6,34.4 +NA,NA,a-curv-i5,2020-21,Beverly - Hannah Elementary,00300033, 80, 16.6, 332, 47.9, 52.1, 6.6, 16.0,24.1 +NA,NA,a-curv-i5,2020-21,Beverly - McKeown School,00300002, 14, 7.8, 109, 38.5, 61.5, 2.8, 66.1,33.9 +NA,NA,a-curv-i5,2020-21,Beverly - North Beverly Elementary,00300040, 101, 14.6, 371, 42.9, 57.1, 6.5, 18.6,25.6 +7.024316109422491,5,a-curv-i5,2020-21,Billerica - Billerica Memorial High School,00310505," 1,316", 9.5," 1,654", 49.3, 50.7, 1.3, 19.8,20.2,1605 +NA,NA,a-curv-i5,2020-21,Billerica - Frederick J Dutile,00310007, 123, 17.1, 240, 54.2, 45.8, 0.4, 24.2,19.2 +NA,NA,a-curv-i5,2020-21,Billerica - Hajjar Elementary,00310026, 194, 16.9, 373, 53.1, 46.9, 13.1, 16.6,32.2 +NA,NA,a-curv-i5,2020-21,Billerica - John F Kennedy,00310012, 171, 15.6, 304, 54.6, 45.4, 0.0, 20.1,18.1 +NA,NA,a-curv-i5,2020-21,Billerica - Locke Middle,00310310, 383, 14.0, 555, 47.8, 52.3, 0.2, 21.6,16.9 +NA,NA,a-curv-i5,2020-21,Billerica - Marshall Middle School,00310305, 363, 16.0, 607, 47.8, 52.2, 2.3, 24.4,26.7 +NA,NA,a-curv-i5,2020-21,Billerica - Parker,00310015, 216, 15.4, 380, 49.0, 51.1, 0.0, 26.3,23.4 +NA,NA,a-curv-i5,2020-21,Billerica - Thomas Ditson,00310005, 236, 19.7, 528, 47.7, 52.3, 0.8, 21.8,23.3 +NA,NA,a-curv-i5,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 796, 17.4," 1,230", 50.2, 49.7, 0.5, 10.4,10.5 +NA,NA,a-curv-i5,2020-21,Blackstone-Millville - A F Maloney,06220015, 111, 21.0, 278, 47.5, 52.5, 0.4, 17.3,30.9 +NA,NA,a-curv-i5,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 367, 8.1, 418, 46.2, 53.6, 1.0, 16.0,25.6 +NA,NA,a-curv-i5,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 196, 20.6, 394, 52.3, 47.5, 0.5, 16.2,26.4 +NA,NA,a-curv-i5,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 64, 22.3, 178, 53.9, 46.1, 7.3, 10.1,34.3 +NA,NA,a-curv-i5,2020-21,Blackstone-Millville - Millville Elementary,06220010, 149, 14.6, 322, 41.9, 58.1, 1.9, 23.3,32.6 +NA,NA,a-curv-i5,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 329, 19.1, 874, 45.8, 54.2, 1.4, 26.7,31.4 +NA,NA,a-curv-i5,2020-21,Boston - Another Course To College,00350541, 141, 14.8, 256, 41.0, 58.6, 10.6, 34.4,68.8 +NA,NA,a-curv-i5,2020-21,Boston - Baldwin Early Learning Center,00350003, 79, 13.0, 146, 48.6, 51.4, 51.4, 21.9,51.4 +NA,NA,a-curv-i5,2020-21,Boston - Beethoven,00350021, 141, 16.6, 282, 47.9, 52.1, 27.0, 14.2,45.7 +NA,NA,a-curv-i5,2020-21,Boston - Blackstone,00350390, 397, 14.4, 524, 45.4, 54.6, 49.6, 30.5,81.7 +NA,NA,a-curv-i5,2020-21,Boston - Boston Adult Academy,00350548, 83, 12.3, 209, 44.5, 55.5, 68.4, 18.7,69.4 +NA,NA,a-curv-i5,2020-21,Boston - Boston Arts Academy,00350546, 457, 16.6, 481, 69.2, 30.2, 7.1, 18.7,58.4 +6.652631578947369,5,a-curv-i5,2020-21,Boston - Boston Collaborative High School,00350755, 95, 7.4, 200, 40.5, 59.5, 21.5, 17.5,70,160 +NA,NA,a-curv-i5,2020-21,Boston - Boston Community Leadership Academy,00350558, 228, 18.9, 490, 47.8, 52.2, 29.2, 23.3,71.8 +6.43152709359606,5,a-curv-i5,2020-21,Boston - Boston International High School,00350507, 203, 14.9, 432, 42.4, 57.6, 91.0, 5.8,73.8,398 +NA,NA,a-curv-i5,2020-21,Boston - Boston Latin,00350560, 743, 24.5," 2,485", 52.3, 47.4, 0.0, 3.1,18.6 +NA,NA,a-curv-i5,2020-21,Boston - Boston Latin Academy,00350545, 708, 21.5," 1,774", 58.5, 41.2, 0.1, 3.8,36.8 +NA,NA,a-curv-i5,2020-21,Boston - Boston Teachers Union School,00350012, 127, 19.6, 291, 48.5, 51.6, 15.8, 24.7,40.2 +NA,NA,a-curv-i5,2020-21,Boston - Brighton High,00350505, 238, 13.6, 439, 41.7, 58.3, 46.9, 30.5,78.4 +NA,NA,a-curv-i5,2020-21,Boston - Carter School,00350036, 2, 27.0, 27, 48.2, 51.9, 33.3, 100.0,81.5 +NA,NA,a-curv-i5,2020-21,Boston - Charles H Taylor,00350054, 265, 12.0, 329, 50.2, 49.9, 36.8, 20.7,83.9 +NA,NA,a-curv-i5,2020-21,Boston - Charles Sumner,00350052, 350, 15.7, 488, 47.8, 52.3, 39.6, 17.8,61.1 +NA,NA,a-curv-i5,2020-21,Boston - Charlestown High,00350515, 757, 12.1, 793, 42.6, 57.4, 39.6, 27.9,74.9 +NA,NA,a-curv-i5,2020-21,Boston - Clarence R Edwards Middle,00350430, 292, 11.7, 213, 47.9, 52.1, 39.0, 41.8,78.4 +NA,NA,a-curv-i5,2020-21,Boston - Community Academy,00350518, 47, 10.8, 67, 46.3, 53.7, 17.9, 52.2,89.6 +NA,NA,a-curv-i5,2020-21,Boston - Community Academy of Science and Health,00350581, 181, 13.6, 350, 44.3, 55.7, 25.7, 41.4,76.9 +NA,NA,a-curv-i5,2020-21,Boston - Condon K-8,00350146, 439, 16.8, 755, 46.9, 53.1, 34.6, 32.9,75.5 +NA,NA,a-curv-i5,2020-21,Boston - Curley K-8 School,00350020, 633, 16.1, 927, 46.2, 53.8, 25.1, 29.3,50.2 +NA,NA,a-curv-i5,2020-21,Boston - Curtis Guild,00350062, 170, 14.5, 274, 48.2, 51.8, 65.0, 25.2,66.8 +NA,NA,a-curv-i5,2020-21,Boston - Dante Alighieri Montessori School,00350066, 102, 8.6, 113, 48.7, 51.3, 42.5, 11.5,35.4 +NA,NA,a-curv-i5,2020-21,Boston - David A Ellis,00350072, 231, 14.9, 368, 51.6, 48.4, 47.3, 11.7,89.1 +NA,NA,a-curv-i5,2020-21,Boston - Dearborn,00350074, 268, 18.6, 598, 50.8, 48.8, 32.9, 19.7,75.1 +NA,NA,a-curv-i5,2020-21,Boston - Dennis C Haley,00350077, 232, 18.8, 407, 47.9, 52.1, 23.6, 32.2,56.8 +NA,NA,a-curv-i5,2020-21,Boston - Donald Mckay,00350080, 338, 21.5, 759, 50.2, 49.8, 45.1, 18.8,70.4 +NA,NA,a-curv-i5,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 94, 15.0, 180, 46.7, 53.3, 54.4, 28.9,73.9 +NA,NA,a-curv-i5,2020-21,Boston - Dr. William Henderson Lower,00350266, 64, 22.2, 214, 50.9, 48.6, 25.2, 28.0,47.7 +NA,NA,a-curv-i5,2020-21,Boston - Dr. William Henderson Upper,00350426, 280, 19.6, 752, 45.1, 54.9, 12.6, 41.1,62.4 +NA,NA,a-curv-i5,2020-21,Boston - ELC - West Zone,00350006, 60, 12.8, 92, 40.2, 59.8, 50.0, 31.5,70.7 +NA,NA,a-curv-i5,2020-21,Boston - East Boston Early Childhood Center,00350009, 100, 15.5, 192, 50.5, 49.5, 56.3, 15.1,57.3 +NA,NA,a-curv-i5,2020-21,Boston - East Boston High,00350530, 413, 16.2," 1,118", 41.6, 58.4, 44.2, 20.8,70.5 +NA,NA,a-curv-i5,2020-21,Boston - Edison K-8,00350375, 369, 13.5, 536, 44.8, 55.2, 50.4, 28.2,75.8 +NA,NA,a-curv-i5,2020-21,Boston - Edward Everett,00350088, 135, 18.4, 282, 50.0, 50.0, 25.9, 18.1,72.3 +NA,NA,a-curv-i5,2020-21,Boston - Eliot Elementary,00350096, 539, 19.9, 793, 49.2, 50.8, 10.0, 17.9,23.1 +NA,NA,a-curv-i5,2020-21,Boston - Ellis Mendell,00350100, 117, 18.9, 276, 47.1, 52.5, 21.0, 22.8,50.7 +6.375862068965517,5,a-curv-i5,2020-21,Boston - Excel High School,00350522, 232, 14.5, 493, 41.0, 59.0, 25.4, 28.2,75.1,471 +5.97124183006536,5,a-curv-i5,2020-21,Boston - Fenway High School,00350540, 153, 16.3, 388, 51.6, 48.5, 24.2, 22.4,69.6,388 +NA,NA,a-curv-i5,2020-21,Boston - Franklin D Roosevelt,00350116, 159, 21.9, 422, 47.9, 52.1, 18.5, 30.6,60.9 +NA,NA,a-curv-i5,2020-21,Boston - Gardner Pilot Academy,00350326, 166, 17.4, 382, 47.9, 51.3, 41.1, 26.7,68.1 +NA,NA,a-curv-i5,2020-21,Boston - George H Conley,00350122, 125, 12.7, 200, 48.5, 51.5, 25.5, 43.0,53 +7.05979381443299,5,a-curv-i5,2020-21,Boston - Greater Egleston Community High School,00350543, 97, 12.2, 138, 52.9, 47.1, 9.4, 21.0,83.3,114 +NA,NA,a-curv-i5,2020-21,Boston - Harvard-Kent,00350200, 251, 12.4, 393, 45.3, 54.7, 31.3, 29.3,71.3 +NA,NA,a-curv-i5,2020-21,Boston - Haynes Early Education Center,00350010, 120, 15.5, 191, 41.9, 58.1, 50.3, 24.1,75.9 +NA,NA,a-curv-i5,2020-21,Boston - Henry Grew,00350135, 111, 17.9, 214, 50.9, 49.1, 11.2, 8.9,69.2 +NA,NA,a-curv-i5,2020-21,Boston - Higginson,00350015, 93, 10.6, 130, 44.6, 55.4, 46.9, 33.9,84.6 +NA,NA,a-curv-i5,2020-21,Boston - Higginson/Lewis K-8,00350377, 165, 12.6, 225, 41.3, 58.7, 26.2, 42.7,91.1 +NA,NA,a-curv-i5,2020-21,Boston - Horace Mann School for the Deaf,00350750, 137, 4.6, 72, 31.9, 68.1, 63.9, 98.6,73.6 +NA,NA,a-curv-i5,2020-21,Boston - Hugh Roe O'Donnell,00350141, 134, 18.1, 281, 48.8, 51.3, 62.6, 12.8,73.7 +NA,NA,a-curv-i5,2020-21,Boston - Jackson Mann,00350013, 250, 11.3, 439, 41.2, 58.8, 41.5, 29.6,83.4 +NA,NA,a-curv-i5,2020-21,Boston - James J Chittick,00350154, 253, 10.6, 241, 47.7, 52.3, 25.7, 38.2,79.3 +NA,NA,a-curv-i5,2020-21,Boston - James Otis,00350156, 197, 19.1, 408, 51.7, 48.3, 52.5, 12.0,66.4 +NA,NA,a-curv-i5,2020-21,Boston - James P Timilty Middle,00350485, 237, 12.5, 262, 50.8, 49.2, 30.5, 32.1,83.2 +NA,NA,a-curv-i5,2020-21,Boston - James W Hennigan,00350153, 369, 15.3, 549, 51.2, 48.8, 45.4, 24.6,84.9 +NA,NA,a-curv-i5,2020-21,Boston - Jeremiah E Burke High,00350525, 157, 13.5, 403, 43.4, 56.3, 30.3, 31.5,74.9 +NA,NA,a-curv-i5,2020-21,Boston - John D Philbrick,00350172, 68, 14.6, 109, 45.9, 54.1, 24.8, 15.6,64.2 +NA,NA,a-curv-i5,2020-21,Boston - John F Kennedy,00350166, 184, 16.7, 363, 47.7, 52.3, 39.7, 17.4,71.1 +NA,NA,a-curv-i5,2020-21,Boston - John W McCormack,00350179, 122, 15.2, 272, 51.1, 48.9, 36.4, 25.4,85.3 +NA,NA,a-curv-i5,2020-21,Boston - John Winthrop,00350180, 112, 16.6, 222, 58.1, 41.9, 29.7, 15.8,83.8 +NA,NA,a-curv-i5,2020-21,Boston - Joseph J Hurley,00350182, 153, 20.6, 366, 52.5, 47.5, 38.0, 16.7,59.6 +NA,NA,a-curv-i5,2020-21,Boston - Joseph Lee,00350183, 486, 14.2, 634, 42.1, 57.9, 21.6, 44.3,76.7 +NA,NA,a-curv-i5,2020-21,Boston - Joseph P Manning,00350184, 77, 21.0, 173, 46.2, 53.8, 9.3, 27.8,28.3 +NA,NA,a-curv-i5,2020-21,Boston - Joseph P Tynan,00350181, 232, 9.7, 243, 44.0, 56.0, 26.8, 42.4,79.8 +NA,NA,a-curv-i5,2020-21,Boston - Josiah Quincy,00350286, 632, 17.1, 757, 50.6, 49.4, 45.4, 14.3,51.8 +NA,NA,a-curv-i5,2020-21,Boston - Joyce Kilmer,00350190, 237, 15.6, 425, 44.2, 55.8, 15.8, 31.8,37.2 +NA,NA,a-curv-i5,2020-21,Boston - King K-8,00350376, 347, 16.5, 582, 48.5, 51.6, 31.8, 30.1,85.4 +NA,NA,a-curv-i5,2020-21,Boston - Lee Academy,00350001, 120, 12.8, 204, 47.6, 52.5, 33.3, 25.0,76 +NA,NA,a-curv-i5,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 287, 16.4, 407, 44.7, 55.3, 42.3, 31.2,85.3 +NA,NA,a-curv-i5,2020-21,Boston - Lyndon,00350262, 365, 18.1, 643, 50.5, 49.5, 9.3, 18.8,29.1 +NA,NA,a-curv-i5,2020-21,Boston - Lyon K-8,00350004, 83, 13.7, 126, 43.7, 56.4, 11.9, 38.1,59.5 +NA,NA,a-curv-i5,2020-21,Boston - Lyon Upper 9-12,00350655, 57, 17.3, 142, 37.3, 62.7, 12.7, 41.6,63.4 +NA,NA,a-curv-i5,2020-21,Boston - Madison Park High,00350537, 433, 16.9," 1,099", 41.2, 58.8, 33.8, 38.2,78.7 +NA,NA,a-curv-i5,2020-21,Boston - Manassah E Bradley,00350215, 148, 18.6, 297, 49.8, 50.2, 28.0, 22.9,62.6 +NA,NA,a-curv-i5,2020-21,Boston - Margarita Muniz Academy,00350549, 147, 18.8, 284, 50.0, 50.0, 48.9, 13.0,77.8 +NA,NA,a-curv-i5,2020-21,Boston - Mario Umana Academy,00350656, 490, 16.1, 780, 47.8, 51.8, 57.2, 15.1,72.1 +NA,NA,a-curv-i5,2020-21,Boston - Mather,00350227, 318, 17.8, 520, 52.1, 47.9, 44.8, 15.0,68.1 +NA,NA,a-curv-i5,2020-21,Boston - Mattahunt Elementary School,00350016, 365, 11.8, 425, 39.8, 60.2, 40.2, 32.2,73.9 +NA,NA,a-curv-i5,2020-21,Boston - Maurice J Tobin,00350229, 247, 17.7, 420, 52.9, 47.1, 27.1, 15.5,81.4 +NA,NA,a-curv-i5,2020-21,Boston - Michael J Perkins,00350231, 87, 15.1, 174, 52.3, 47.7, 25.3, 29.3,82.2 +NA,NA,a-curv-i5,2020-21,Boston - Mildred Avenue K-8,00350378, 271, 17.9, 686, 48.1, 51.9, 25.4, 21.3,77.3 +NA,NA,a-curv-i5,2020-21,Boston - Mission Hill School,00350382, 241, 9.1, 232, 42.7, 57.3, 14.7, 28.5,48.7 +NA,NA,a-curv-i5,2020-21,Boston - Mozart,00350237, 135, 11.1, 170, 40.0, 60.0, 23.5, 28.8,37.7 +NA,NA,a-curv-i5,2020-21,Boston - Nathan Hale,00350243, 107, 17.9, 179, 51.4, 48.6, 15.1, 17.3,59.8 +6.184905660377359,5,a-curv-i5,2020-21,Boston - New Mission High School,00350542, 212, 16.6, 480, 51.0, 48.8, 15.4, 17.3,61.9,481 +NA,NA,a-curv-i5,2020-21,Boston - O W Holmes,00350138, 204, 13.3, 286, 38.5, 61.5, 21.3, 35.7,83.9 +NA,NA,a-curv-i5,2020-21,Boston - O'Bryant School Math/Science,00350575, 527, 22.5," 1,615", 54.8, 45.2, 1.3, 4.7,51.4 +NA,NA,a-curv-i5,2020-21,Boston - Oliver Hazard Perry,00350255, 101, 15.6, 205, 46.8, 53.2, 13.7, 31.2,44.4 +NA,NA,a-curv-i5,2020-21,Boston - Orchard Gardens,00350257, 536, 18.7, 854, 49.5, 50.5, 51.4, 18.9,78.9 +NA,NA,a-curv-i5,2020-21,Boston - Patrick J Kennedy,00350264, 151, 18.1, 283, 43.1, 56.9, 56.9, 24.0,73.5 +NA,NA,a-curv-i5,2020-21,Boston - Paul A Dever,00350268, 234, 15.7, 369, 42.3, 57.7, 47.7, 14.6,86.7 +NA,NA,a-curv-i5,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 85, 13.8, 164, 50.0, 50.0, 25.6, 17.7,82.3 +NA,NA,a-curv-i5,2020-21,Boston - Phineas Bates,00350278, 134, 16.5, 247, 44.9, 55.1, 27.5, 32.4,51 +NA,NA,a-curv-i5,2020-21,Boston - Quincy Upper School,00350565, 228, 20.7, 536, 48.0, 52.1, 14.4, 20.0,61 +NA,NA,a-curv-i5,2020-21,Boston - Rafael Hernandez,00350691, 227, 22.3, 425, 52.7, 47.3, 53.9, 8.0,64.5 +NA,NA,a-curv-i5,2020-21,Boston - Richard J Murphy,00350240, 467, 18.6, 914, 48.4, 51.6, 31.1, 16.4,55.5 +NA,NA,a-curv-i5,2020-21,Boston - Roger Clap,00350298, 63, 15.3, 122, 43.4, 56.6, 29.5, 42.6,81.2 +NA,NA,a-curv-i5,2020-21,Boston - Samuel Adams,00350302, 186, 12.1, 250, 50.0, 50.0, 55.2, 23.2,70.4 +NA,NA,a-curv-i5,2020-21,Boston - Samuel W Mason,00350304, 111, 15.0, 209, 43.5, 56.0, 25.4, 33.0,72.7 +NA,NA,a-curv-i5,2020-21,Boston - Sarah Greenwood,00350308, 361, 14.0, 395, 49.6, 50.4, 56.2, 23.3,84.6 +NA,NA,a-curv-i5,2020-21,Boston - Snowden International School at Copley,00350690, 197, 20.6, 489, 48.1, 51.9, 16.8, 23.1,71.8 +NA,NA,a-curv-i5,2020-21,Boston - TechBoston Academy,00350657, 462, 15.0, 921, 43.4, 56.5, 23.0, 22.4,75 +NA,NA,a-curv-i5,2020-21,Boston - The English High,00350535, 482, 14.4, 560, 44.5, 55.5, 37.1, 24.5,74.6 +NA,NA,a-curv-i5,2020-21,Boston - Thomas J Kenny,00350328, 190, 15.6, 345, 47.3, 52.8, 22.6, 29.0,61.2 +NA,NA,a-curv-i5,2020-21,Boston - UP Academy Holland,00350167, 293, 19.0, 688, 51.0, 49.0, 32.4, 14.4,85.5 +NA,NA,a-curv-i5,2020-21,Boston - Warren-Prescott,00350346, 290, 18.7, 556, 48.7, 51.3, 10.1, 22.8,43.9 +NA,NA,a-curv-i5,2020-21,Boston - Washington Irving Middle,00350445, 125, 15.8, 200, 49.5, 50.5, 29.0, 47.0,76.5 +NA,NA,a-curv-i5,2020-21,Boston - William E Russell,00350366, 178, 18.4, 370, 48.4, 51.6, 52.4, 11.6,72.2 +NA,NA,a-curv-i5,2020-21,Boston - William Ellery Channing,00350360, 143, 15.2, 226, 42.9, 57.1, 24.3, 20.4,65.9 +NA,NA,a-curv-i5,2020-21,Boston - William H Ohrenberger,00350258, 317, 18.4, 539, 49.2, 50.8, 27.6, 25.4,56.8 +NA,NA,a-curv-i5,2020-21,Boston - William McKinley,00350363, 477, 6.2, 303, 24.4, 75.6, 21.8, 99.0,87.5 +NA,NA,a-curv-i5,2020-21,Boston - William Monroe Trotter,00350370, 250, 17.2, 396, 48.7, 51.3, 12.9, 17.9,80.6 +NA,NA,a-curv-i5,2020-21,Boston - Winship Elementary,00350374, 155, 16.7, 227, 52.0, 48.0, 28.6, 13.7,52.4 +NA,NA,a-curv-i5,2020-21,Boston - Young Achievers,00350380, 370, 15.9, 586, 46.3, 53.8, 31.6, 25.3,83.1 +NA,NA,a-curv-i5,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 212, 24.7, 719, 51.3, 48.7, 4.5, 18.4,38.7 +NA,NA,a-curv-i5,2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 415, 14.7, 437, 52.9, 47.1, 16.0, 34.8,71.2 +NA,NA,a-curv-i5,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 270, 16.4, 501, 47.3, 52.7, 16.4, 33.5,72.3 +NA,NA,a-curv-i5,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 207, 19.4, 663, 50.7, 49.3, 19.2, 20.2,60.9 +NA,NA,a-curv-i5,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 500, 16.5, 951, 51.6, 48.4, 11.2, 11.9,60.8 +6.361722488038278,5,a-curv-i5,2020-21,Bourne - Bourne High School,00360505, 209, 13.4, 416, 53.1, 46.6, 1.2, 13.5,25,428 +NA,NA,a-curv-i5,2020-21,Bourne - Bourne Intermediate School,00360030, 280, 15.2, 414, 52.4, 47.6, 0.7, 19.8,35.8 +NA,NA,a-curv-i5,2020-21,Bourne - Bourne Middle School,00360325, 315, 17.6, 469, 49.9, 49.9, 0.6, 17.9,31.8 +NA,NA,a-curv-i5,2020-21,Bourne - Bournedale Elementary School,00360005, 195, 13.0, 357, 49.9, 50.1, 1.1, 24.9,32.8 +NA,NA,a-curv-i5,2020-21,Boxford - Harry Lee Cole,00380005, 131, 12.6, 296, 44.6, 55.4, 2.0, 19.6,7.8 +NA,NA,a-curv-i5,2020-21,Boxford - Spofford Pond,00380013, 221, 14.6, 382, 50.0, 50.0, 0.5, 20.4,7.9 +NA,NA,a-curv-i5,2020-21,Braintree - Archie T Morrison,00400033, 252, 13.6, 321, 47.4, 52.7, 11.8, 19.3,34.6 +NA,NA,a-curv-i5,2020-21,Braintree - Braintree High,00400505, 809, 15.2," 1,761", 49.6, 50.3, 4.2, 19.4,22.4 +NA,NA,a-curv-i5,2020-21,Braintree - Donald Ross,00400050, 156, 17.4, 259, 55.2, 44.8, 17.8, 10.8,28.6 +NA,NA,a-curv-i5,2020-21,Braintree - East Middle School,00400305, 642, 13.1," 1,045", 50.2, 49.8, 3.8, 18.6,29.3 +NA,NA,a-curv-i5,2020-21,Braintree - Highlands,00400015, 217, 19.1, 403, 46.4, 53.6, 6.7, 18.6,13.7 +NA,NA,a-curv-i5,2020-21,Braintree - Hollis,00400005, 265, 13.3, 334, 42.8, 57.2, 10.8, 28.7,21.3 +NA,NA,a-curv-i5,2020-21,Braintree - Liberty,00400025, 198, 17.8, 338, 45.6, 54.4, 8.9, 16.3,17.2 +NA,NA,a-curv-i5,2020-21,Braintree - Mary E Flaherty School,00400020, 152, 17.2, 270, 48.2, 51.9, 7.8, 23.0,21.5 +NA,NA,a-curv-i5,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 57, 19.4, 145, 53.1, 46.9, 22.1, 16.6,26.2 +NA,NA,a-curv-i5,2020-21,Braintree - South Middle School,00400310, 432, 12.0, 641, 52.3, 47.7, 1.1, 21.4,15.4 +NA,NA,a-curv-i5,2020-21,Brewster - Eddy Elementary,00410010, 158, 14.8, 212, 47.6, 52.4, 2.4, 24.5,28.3 +NA,NA,a-curv-i5,2020-21,Brewster - Stony Brook Elementary,00410005, 164, 13.0, 217, 52.1, 47.9, 6.9, 20.3,36.9 +NA,NA,a-curv-i5,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 125, 15.3, 335, 53.1, 46.9, 27.8, 24.2,66.6 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 185, 23.4, 564, 50.7, 49.3, 1.8, 14.5,23.6 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 564, 14.9," 1,363", 50.5, 49.5, 1.3, 12.2,21 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 153, 23.5, 533, 47.5, 52.5, 3.4, 18.0,21.8 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 108, 20.5, 302, 49.0, 51.0, 2.7, 16.9,25.5 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 368, 19.5," 1,143", 45.6, 54.4, 4.7, 22.1,23 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 223, 21.4, 730, 46.3, 53.6, 1.2, 14.8,19.2 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 14, 4.6, 14, 28.6, 71.4, 0.0, 100.0,64.3 +NA,NA,a-curv-i5,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 251, 17.8, 705, 48.4, 51.6, 2.6, 20.9,20.4 +NA,NA,a-curv-i5,2020-21,Brimfield - Brimfield Elementary,00430005, 81, 18.5, 260, 48.5, 51.5, 1.2, 19.2,26.2 +NA,NA,a-curv-i5,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 228, 18.7, 448, 74.1, 25.7, 0.0, 15.4,24.8 +NA,NA,a-curv-i5,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,036", 18.9," 1,310", 42.4, 57.6, 0.3, 17.4,30.2 +NA,NA,a-curv-i5,2020-21,Brockton - Ashfield Middle School,00440421, 243, 21.4, 574, 46.2, 53.8, 19.5, 19.7,59.9 +NA,NA,a-curv-i5,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 35, 7.8, 214, 36.0, 64.0, 2.8, 72.4,61.2 +6.994495412844037,5,a-curv-i5,2020-21,Brockton - Brockton Champion High School,00440515, 109, 6.5, 114, 42.1, 57.9, 17.5, 49.1,80.7,137 +NA,NA,a-curv-i5,2020-21,Brockton - Brockton High,00440505," 1,718", 18.6," 3,987", 46.5, 53.5, 25.3, 13.1,61.4 +NA,NA,a-curv-i5,2020-21,Brockton - Brookfield,00440010, 255, 16.6, 478, 49.6, 50.4, 34.5, 18.8,62.3 +NA,NA,a-curv-i5,2020-21,Brockton - Downey,00440110, 313, 15.2, 571, 44.1, 55.9, 16.1, 31.9,76.2 +NA,NA,a-curv-i5,2020-21,Brockton - Dr W Arnone Community School,00440001, 315, 17.8, 728, 44.0, 56.0, 17.3, 25.6,71 +NA,NA,a-curv-i5,2020-21,Brockton - East Middle School,00440405, 380, 20.7, 645, 46.2, 53.8, 33.6, 18.8,73.3 +NA,NA,a-curv-i5,2020-21,Brockton - Edgar B Davis,00440023, 485, 22.2," 1,002", 53.2, 46.8, 24.1, 8.3,72 +NA,NA,a-curv-i5,2020-21,Brockton - Edison Academy,00440520, 174, 7.0, 325, 42.8, 57.2, 46.2, 13.5,72.3 +NA,NA,a-curv-i5,2020-21,Brockton - Frederick Douglass Academy,00440080, 15, 2.8, 15, 40.0, 60.0, 20.0, 40.0,93.3 +NA,NA,a-curv-i5,2020-21,Brockton - Gilmore Elementary School,00440055, 193, 20.3, 448, 52.7, 47.3, 47.1, 8.0,77.2 +NA,NA,a-curv-i5,2020-21,Brockton - Hancock,00440045, 217, 21.3, 497, 53.7, 46.3, 13.5, 9.9,54.7 +NA,NA,a-curv-i5,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 196, 5.6, 74, 29.7, 70.3, 10.8, 98.7,86.5 +NA,NA,a-curv-i5,2020-21,Brockton - John F Kennedy,00440017, 230, 19.9, 552, 49.5, 50.5, 32.6, 11.1,58 +NA,NA,a-curv-i5,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 351, 22.2, 759, 48.8, 51.3, 16.2, 16.3,59.4 +NA,NA,a-curv-i5,2020-21,Brockton - Louis F Angelo Elementary,00440065, 365, 20.2, 786, 45.6, 54.5, 30.4, 19.9,69.9 +NA,NA,a-curv-i5,2020-21,Brockton - Manthala George Jr. School,00440003, 344, 20.8, 863, 49.8, 50.2, 45.1, 8.8,71.2 +NA,NA,a-curv-i5,2020-21,Brockton - Mary E. Baker School,00440002, 371, 14.1, 629, 47.2, 52.8, 19.7, 22.4,61.7 +NA,NA,a-curv-i5,2020-21,Brockton - North Middle School,00440410, 86, 20.2, 188, 51.6, 48.4, 13.8, 15.4,80.3 +NA,NA,a-curv-i5,2020-21,Brockton - Oscar F Raymond,00440078, 362, 18.4, 799, 46.4, 53.6, 36.7, 16.5,79.6 +NA,NA,a-curv-i5,2020-21,Brockton - South Middle School,00440415, 362, 17.7, 590, 42.5, 57.5, 34.1, 18.6,68.5 +NA,NA,a-curv-i5,2020-21,Brockton - West Middle School,00440420, 500, 20.4, 679, 47.0, 53.0, 10.8, 19.6,64.1 +NA,NA,a-curv-i5,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 937, 17.3," 2,060", 52.5, 47.5, 7.9, 11.7,56.3 +NA,NA,a-curv-i5,2020-21,Brookfield - Brookfield Elementary,00450005, 77, 17.6, 256, 46.1, 53.9, 0.4, 14.8,30.9 +NA,NA,a-curv-i5,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 7.2, 35, 48.6, 51.4, 5.7, 34.3,5.7 +NA,NA,a-curv-i5,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 5, 7.6, 38, 39.5, 60.5, 5.3, 36.8,13.2 +NA,NA,a-curv-i5,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 5, 7.8, 39, 56.4, 43.6, 7.7, 46.2,12.8 +NA,NA,a-curv-i5,2020-21,Brookline - Brookline High,00460505," 1,121", 14.0," 2,043", 48.4, 51.4, 1.9, 18.8,13.4 +NA,NA,a-curv-i5,2020-21,Brookline - Edith C Baker,00460005, 408, 14.5, 554, 49.8, 50.0, 9.9, 20.2,7.6 +NA,NA,a-curv-i5,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 524, 15.2, 722, 48.8, 51.0, 13.6, 17.5,14.7 +NA,NA,a-curv-i5,2020-21,Brookline - Heath,00460025, 285, 15.4, 430, 50.9, 49.1, 4.0, 12.1,5.1 +NA,NA,a-curv-i5,2020-21,Brookline - John D Runkle,00460045, 291, 16.0, 450, 47.8, 52.2, 10.0, 25.1,8.7 +NA,NA,a-curv-i5,2020-21,Brookline - Lawrence,00460030, 409, 13.3, 502, 46.6, 53.2, 19.1, 16.1,10 +NA,NA,a-curv-i5,2020-21,Brookline - Michael Driscoll,00460020, 321, 13.9, 422, 48.6, 51.4, 9.2, 14.9,7.1 +NA,NA,a-curv-i5,2020-21,Brookline - Pierce,00460040, 425, 15.0, 597, 51.3, 48.6, 10.1, 12.7,10.1 +NA,NA,a-curv-i5,2020-21,Brookline - The Lynch Center,00460060, 5, 7.4, 37, 43.2, 56.8, 16.2, 24.3,35.1 +NA,NA,a-curv-i5,2020-21,Brookline - William H Lincoln,00460035, 309, 15.6, 457, 53.6, 46.0, 13.1, 25.2,14.7 +NA,NA,a-curv-i5,2020-21,Burlington - Burlington High,00480505, 561, 12.2, 993, 46.5, 53.4, 4.2, 10.4,17.2 +NA,NA,a-curv-i5,2020-21,Burlington - Fox Hill,00480007, 234, 14.8, 462, 50.0, 50.0, 8.4, 14.7,18.4 +NA,NA,a-curv-i5,2020-21,Burlington - Francis Wyman Elementary,00480035, 274, 14.3, 529, 49.0, 50.9, 7.4, 17.8,16.6 +NA,NA,a-curv-i5,2020-21,Burlington - Marshall Simonds Middle,00480303, 512, 15.8, 766, 50.3, 49.5, 2.9, 10.8,14.8 +NA,NA,a-curv-i5,2020-21,Burlington - Memorial,00480015, 198, 15.4, 412, 54.1, 45.9, 7.8, 12.1,19.9 +NA,NA,a-curv-i5,2020-21,Burlington - Pine Glen Elementary,00480020, 185, 12.5, 312, 46.8, 53.2, 9.3, 18.6,16.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Amigos School,00490006, 261, 13.9, 410, 51.5, 48.5, 4.4, 14.4,22.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Cambridge Rindge and Latin,00490506," 1,063", 13.8," 1,890", 50.5, 49.2, 4.0, 20.2,33.5 +NA,NA,a-curv-i5,2020-21,Cambridge - Cambridge Street Upper School,00490305, 224, 13.8, 299, 40.5, 59.2, 1.0, 30.4,43.5 +NA,NA,a-curv-i5,2020-21,Cambridge - Cambridgeport,00490007, 147, 13.8, 272, 47.8, 51.5, 1.8, 18.0,22.8 +NA,NA,a-curv-i5,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 299, 8.4, 269, 45.4, 54.7, 3.7, 32.7,55.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Graham and Parks,00490080, 209, 11.5, 335, 49.9, 50.2, 17.9, 23.6,26 +NA,NA,a-curv-i5,2020-21,Cambridge - Haggerty,00490020, 145, 12.0, 237, 49.4, 50.6, 5.9, 27.0,26.2 +NA,NA,a-curv-i5,2020-21,Cambridge - John M Tobin,00490065, 277, 7.4, 292, 49.0, 51.0, 2.4, 22.6,24.3 +NA,NA,a-curv-i5,2020-21,Cambridge - Kennedy-Longfellow,00490040, 231, 8.9, 250, 46.8, 52.8, 36.0, 23.6,52 +NA,NA,a-curv-i5,2020-21,Cambridge - King Open,00490035, 321, 8.4, 339, 51.0, 49.0, 5.0, 26.8,35.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Maria L. Baldwin,00490005, 200, 14.2, 339, 49.6, 50.4, 1.8, 22.1,20.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Martin Luther King Jr.,00490030, 252, 9.5, 280, 47.5, 52.5, 5.0, 19.6,21.1 +NA,NA,a-curv-i5,2020-21,Cambridge - Morse,00490045, 230, 10.1, 305, 44.3, 55.7, 7.5, 27.9,34.4 +NA,NA,a-curv-i5,2020-21,Cambridge - Peabody,00490050, 208, 11.8, 304, 51.6, 48.0, 5.3, 27.0,31.6 +NA,NA,a-curv-i5,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 128, 18.6, 264, 53.0, 46.6, 0.8, 24.6,48.1 +NA,NA,a-curv-i5,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 218, 12.7, 271, 50.6, 49.5, 1.1, 23.3,32.1 +NA,NA,a-curv-i5,2020-21,Cambridge - Vassal Lane Upper School,00490320, 186, 13.2, 294, 46.9, 53.1, 11.9, 22.1,34.7 +NA,NA,a-curv-i5,2020-21,Canton - Canton High,00500505, 476, 16.2, 950, 53.6, 46.0, 1.1, 10.4,19 +NA,NA,a-curv-i5,2020-21,Canton - Dean S Luce,00500020, 423, 16.8, 462, 50.4, 49.6, 5.8, 14.7,21.7 +NA,NA,a-curv-i5,2020-21,Canton - John F Kennedy,00500017, 495, 14.6, 465, 48.2, 51.8, 2.6, 12.9,10.5 +NA,NA,a-curv-i5,2020-21,Canton - Lt Peter M Hansen,00500012, 435, 17.8, 503, 49.5, 50.5, 3.8, 11.9,18.7 +NA,NA,a-curv-i5,2020-21,Canton - Rodman Early Childhood Center,00500010, 28, 6.7, 47, 25.5, 74.5, 8.5, 59.6,12.8 +NA,NA,a-curv-i5,2020-21,Canton - Wm H Galvin Middle,00500305, 469, 16.3, 766, 52.9, 47.1, 1.3, 13.8,19.1 +NA,NA,a-curv-i5,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 191, 14.0, 250, 48.0, 52.0, 0.4, 17.6,18.4 +NA,NA,a-curv-i5,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 408, 13.3, 627, 36.0, 63.5, 2.2, 24.6,45.1 +NA,NA,a-curv-i5,2020-21,Carlisle - Carlisle School,00510025, 380, 13.7, 589, 47.9, 52.1, 2.0, 16.3,4.9 +NA,NA,a-curv-i5,2020-21,Carver - Carver Elementary School,00520015, 482, 15.7, 748, 48.4, 51.6, 1.6, 14.8,27.7 +7.146433770014556,5,a-curv-i5,2020-21,Carver - Carver Middle/High School,00520405, 687, 6.8, 721, 48.5, 51.5, 1.3, 21.6,26.1,733 +NA,NA,a-curv-i5,2020-21,Central Berkshire - Becket Washington School,06350005, 50, 12.6, 90, 45.6, 54.4, 0.0, 27.8,44.4 +NA,NA,a-curv-i5,2020-21,Central Berkshire - Craneville,06350025, 162, 18.2, 366, 47.0, 53.0, 1.4, 16.1,41.3 +NA,NA,a-curv-i5,2020-21,Central Berkshire - Kittredge,06350035, 51, 18.4, 144, 53.5, 46.5, 0.0, 22.2,33.3 +NA,NA,a-curv-i5,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 140, 17.9, 331, 43.8, 56.2, 0.3, 18.1,37.8 +NA,NA,a-curv-i5,2020-21,Central Berkshire - Wahconah Regional High,06350505, 253, 14.2, 495, 47.7, 52.3, 0.8, 11.1,30.1 +NA,NA,a-curv-i5,2020-21,Chelmsford - Byam School,00560030, 180, 21.6, 470, 49.8, 50.2, 7.0, 18.7,16.4 +NA,NA,a-curv-i5,2020-21,Chelmsford - Center Elementary School,00560005, 188, 21.4, 487, 47.4, 52.6, 7.0, 13.8,16 +NA,NA,a-curv-i5,2020-21,Chelmsford - Charles D Harrington,00560025, 192, 22.3, 504, 52.0, 48.0, 7.9, 15.9,23.2 +NA,NA,a-curv-i5,2020-21,Chelmsford - Chelmsford High,00560505, 722, 16.7," 1,413", 50.3, 49.7, 1.3, 13.0,11.3 +NA,NA,a-curv-i5,2020-21,Chelmsford - Col Moses Parker School,00560305, 317, 21.5, 727, 41.4, 58.5, 2.6, 16.1,17.7 +NA,NA,a-curv-i5,2020-21,Chelmsford - Community Education Center,00560001, 103, 8.2, 105, 24.8, 75.2, 7.6, 78.1,34.3 +NA,NA,a-curv-i5,2020-21,Chelmsford - McCarthy Middle School,00560310, 371, 19.7, 789, 47.9, 52.1, 2.9, 17.2,14.6 +NA,NA,a-curv-i5,2020-21,Chelmsford - South Row,00560015, 164, 22.0, 432, 49.5, 50.5, 9.0, 13.2,12 +NA,NA,a-curv-i5,2020-21,Chelsea - Chelsea High,00570505, 540, 19.1," 1,472", 45.2, 54.8, 29.8, 12.4,68.6 +NA,NA,a-curv-i5,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 82, 4.7, 113, 38.1, 62.0, 58.4, 9.7,67.3 +NA,NA,a-curv-i5,2020-21,Chelsea - Clark Avenue School,00570050, 552, 15.5, 716, 46.2, 53.6, 21.8, 18.3,71.2 +NA,NA,a-curv-i5,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 135, 17.0, 516, 48.8, 51.2, 49.6, 13.6,74 +NA,NA,a-curv-i5,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 379, 11.5, 530, 51.3, 48.7, 17.0, 24.9,75.9 +NA,NA,a-curv-i5,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 134, 16.2, 488, 50.0, 50.0, 53.3, 8.0,77.3 +NA,NA,a-curv-i5,2020-21,Chelsea - George F. Kelly Elementary,00570035, 149, 16.6, 462, 53.5, 46.5, 36.4, 12.6,62.1 +NA,NA,a-curv-i5,2020-21,Chelsea - Joseph A. Browne School,00570055, 468, 10.7, 558, 45.9, 54.1, 28.9, 12.2,75.3 +NA,NA,a-curv-i5,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 185, 14.5, 790, 50.1, 49.9, 61.4, 18.6,75.4 +NA,NA,a-curv-i5,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 134, 15.9, 475, 50.1, 49.9, 43.6, 19.6,77.9 +NA,NA,a-curv-i5,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 52, 15.1, 119, 42.9, 57.1, 0.0, 23.5,31.1 +NA,NA,a-curv-i5,2020-21,Chicopee - Barry,00610003, 110, 13.4, 367, 47.1, 52.9, 9.3, 15.3,56.4 +NA,NA,a-curv-i5,2020-21,Chicopee - Belcher,00610010, 76, 11.1, 210, 53.3, 46.7, 11.0, 9.1,70 +NA,NA,a-curv-i5,2020-21,Chicopee - Bellamy Middle,00610305, 466, 18.3, 846, 47.3, 52.6, 3.9, 20.9,60.6 +NA,NA,a-curv-i5,2020-21,Chicopee - Bowe,00610015, 115, 19.3, 444, 47.3, 52.7, 14.4, 17.6,80.4 +NA,NA,a-curv-i5,2020-21,Chicopee - Bowie,00610020, 97, 14.4, 275, 47.3, 52.7, 2.2, 10.2,44.4 +NA,NA,a-curv-i5,2020-21,Chicopee - Chicopee Academy,00610021, 77, 5.1, 63, 19.1, 81.0, 3.2, 38.1,87.3 +6.757219251336897,5,a-curv-i5,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 748, 10.6," 1,148", 43.9, 56.0, 3.1, 13.9,44.4,1162 +NA,NA,a-curv-i5,2020-21,Chicopee - Chicopee High,00610505, 474, 16.5, 972, 49.6, 50.4, 6.6, 17.8,58.9 +NA,NA,a-curv-i5,2020-21,Chicopee - Dupont Middle,00610310, 421, 19.5, 795, 46.8, 53.2, 5.8, 19.5,64.5 +NA,NA,a-curv-i5,2020-21,Chicopee - Fairview Elementary,00610050, 234, 8.8, 396, 42.7, 57.3, 8.3, 17.9,74.2 +NA,NA,a-curv-i5,2020-21,Chicopee - Gen John J Stefanik,00610090, 99, 13.6, 340, 51.2, 48.8, 9.4, 17.9,78.2 +NA,NA,a-curv-i5,2020-21,Chicopee - Lambert-Lavoie,00610040, 88, 12.0, 264, 40.9, 59.1, 2.7, 13.3,55.7 +NA,NA,a-curv-i5,2020-21,Chicopee - Litwin,00610022, 144, 12.2, 350, 47.1, 52.9, 11.1, 16.0,64.3 +NA,NA,a-curv-i5,2020-21,Chicopee - Streiber Memorial School,00610065, 100, 9.7, 239, 46.4, 53.6, 1.3, 11.7,45.6 +NA,NA,a-curv-i5,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 21, 7.4, 155, 32.9, 67.1, 0.0, 91.0,53.6 +NA,NA,a-curv-i5,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 173, 20.7, 400, 47.0, 52.8, 4.5, 19.5,39.3 +NA,NA,a-curv-i5,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 89, 18.3, 275, 48.4, 51.6, 23.6, 23.3,70.6 +NA,NA,a-curv-i5,2020-21,Clarksburg - Clarksburg Elementary,00630010, 98, 16.1, 192, 50.0, 50.0, 0.0, 18.8,32.3 +NA,NA,a-curv-i5,2020-21,Clinton - Clinton Elementary,00640050, 275, 14.6, 680, 45.9, 54.1, 21.2, 24.7,51.6 +NA,NA,a-curv-i5,2020-21,Clinton - Clinton Middle School,00640305, 222, 18.7, 557, 44.2, 55.8, 10.8, 22.8,44.3 +NA,NA,a-curv-i5,2020-21,Clinton - Clinton Senior High,00640505, 224, 14.5, 490, 47.1, 52.7, 11.0, 19.6,40.6 +NA,NA,a-curv-i5,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 127, 16.9, 343, 51.9, 48.1, 10.5, 27.1,70.6 +6.857507987220447,5,a-curv-i5,2020-21,Cohasset - Cohasset High School,00650505, 313, 15.0, 442, 49.3, 50.5, 0.0, 8.1,7.2,447 +NA,NA,a-curv-i5,2020-21,Cohasset - Cohasset Middle School,00650305, 204, 18.4, 347, 47.6, 52.5, 0.0, 11.8,5.5 +NA,NA,a-curv-i5,2020-21,Cohasset - Deer Hill,00650005, 187, 18.4, 301, 52.2, 47.8, 0.0, 16.0,6.6 +NA,NA,a-curv-i5,2020-21,Cohasset - Joseph Osgood,00650010, 138, 18.8, 323, 49.5, 50.5, 0.3, 14.6,3.7 +NA,NA,a-curv-i5,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 335, 27.1," 1,003", 50.8, 49.2, 25.8, 6.3,54.6 +NA,NA,a-curv-i5,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 84, 21.1, 306, 57.2, 42.8, 5.9, 16.3,45.8 +NA,NA,a-curv-i5,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 120, 20.0, 399, 47.9, 52.1, 19.3, 12.5,67.9 +NA,NA,a-curv-i5,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 114, 21.1, 400, 50.3, 49.8, 24.0, 12.0,65.3 +NA,NA,a-curv-i5,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 120, 20.4, 404, 52.5, 47.5, 20.8, 12.1,60.2 +NA,NA,a-curv-i5,2020-21,Concord - Alcott,00670005, 303, 16.0, 454, 47.8, 52.2, 3.1, 14.5,13.7 +NA,NA,a-curv-i5,2020-21,Concord - Concord Middle,00670305, 412, 18.9, 688, 47.5, 52.5, 1.3, 19.3,8.7 +NA,NA,a-curv-i5,2020-21,Concord - Thoreau,00670020, 331, 14.8, 452, 49.6, 50.4, 2.7, 20.4,5.5 +NA,NA,a-curv-i5,2020-21,Concord - Willard,00670030, 312, 15.2, 433, 50.4, 49.7, 2.8, 15.2,4.4 +NA,NA,a-curv-i5,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 536, 19.5," 1,316", 50.8, 48.7, 0.3, 15.9,8.1 +NA,NA,a-curv-i5,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 174, 16.8, 447, 51.2, 48.8, 15.2, 13.4,61.1 +NA,NA,a-curv-i5,2020-21,Conway - Conway Grammar,00680005, 93, 14.5, 130, 43.9, 56.2, 0.0, 16.9,23.9 +NA,NA,a-curv-i5,2020-21,Danvers - Danvers High,00710505, 473, 15.1, 872, 49.5, 50.3, 0.7, 17.8,20.2 +NA,NA,a-curv-i5,2020-21,Danvers - Great Oak,00710015, 231, 16.6, 350, 47.7, 52.3, 1.4, 14.0,21.7 +NA,NA,a-curv-i5,2020-21,Danvers - Highlands,00710010, 213, 16.9, 342, 46.8, 53.2, 3.5, 13.5,22.8 +NA,NA,a-curv-i5,2020-21,Danvers - Holten Richmond Middle School,00710305, 617, 18.4, 795, 48.3, 51.7, 0.6, 19.5,22.1 +NA,NA,a-curv-i5,2020-21,Danvers - Ivan G Smith,00710032, 169, 18.6, 296, 53.7, 46.3, 1.7, 14.2,17.9 +NA,NA,a-curv-i5,2020-21,Danvers - Riverside,00710030, 213, 14.4, 327, 44.3, 55.7, 3.7, 30.6,23.6 +NA,NA,a-curv-i5,2020-21,Danvers - Willis E Thorpe,00710045, 200, 16.6, 346, 50.0, 50.0, 0.3, 21.7,18.2 +NA,NA,a-curv-i5,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 36, 13.6, 131, 40.5, 59.5, 3.1, 34.4,34.4 +NA,NA,a-curv-i5,2020-21,Dartmouth - Dartmouth High,00720505, 520, 16.8," 1,053", 50.6, 49.4, 0.6, 13.8,22 +NA,NA,a-curv-i5,2020-21,Dartmouth - Dartmouth Middle,00720050, 655, 15.7, 876, 49.4, 50.5, 0.8, 18.8,27.4 +NA,NA,a-curv-i5,2020-21,Dartmouth - George H Potter,00720030, 185, 16.6, 368, 46.7, 53.3, 2.2, 17.1,29.1 +NA,NA,a-curv-i5,2020-21,Dartmouth - James M. Quinn School,00720040, 304, 17.6, 629, 45.6, 54.4, 3.2, 19.6,25.8 +NA,NA,a-curv-i5,2020-21,Dartmouth - Joseph Demello,00720015, 205, 16.0, 374, 46.5, 53.5, 3.2, 21.9,27.8 +NA,NA,a-curv-i5,2020-21,Dedham - Avery,00730010, 92, 11.4, 267, 50.2, 49.8, 12.4, 28.8,46.4 +NA,NA,a-curv-i5,2020-21,Dedham - Dedham High,00730505, 356, 15.1, 693, 47.2, 52.5, 2.9, 19.1,26.3 +NA,NA,a-curv-i5,2020-21,Dedham - Dedham Middle School,00730305, 509, 15.9, 654, 47.7, 52.3, 3.7, 23.9,27.5 +NA,NA,a-curv-i5,2020-21,Dedham - Early Childhood Center,00730005, 97, 11.7, 300, 44.7, 55.0, 7.7, 16.3,21 +NA,NA,a-curv-i5,2020-21,Dedham - Greenlodge,00730025, 64, 14.6, 232, 43.5, 56.5, 4.3, 21.6,9.5 +NA,NA,a-curv-i5,2020-21,Dedham - Oakdale,00730030, 71, 13.5, 248, 52.0, 47.6, 6.1, 20.2,15.3 +NA,NA,a-curv-i5,2020-21,Dedham - Riverdale,00730045, 47, 14.4, 170, 51.8, 48.2, 11.2, 31.2,28.8 +NA,NA,a-curv-i5,2020-21,Deerfield - Deerfield Elementary,00740015, 265, 13.4, 315, 50.8, 49.2, 1.9, 22.5,22.9 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 600, 11.0, 870, 49.4, 50.3, 6.8, 17.7,42.3 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 134, 10.0, 300, 48.7, 51.3, 17.7, 25.7,55.7 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 96, 10.9, 310, 45.2, 54.8, 21.3, 24.2,64.8 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 188, 16.1, 430, 48.4, 51.6, 7.2, 17.0,53 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 336, 14.3, 481, 43.5, 56.6, 11.9, 19.1,46.6 +NA,NA,a-curv-i5,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 100, 14.2, 403, 48.4, 51.6, 12.7, 7.0,45.4 +NA,NA,a-curv-i5,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 266, 17.7, 441, 49.7, 50.3, 0.9, 20.9,22.2 +NA,NA,a-curv-i5,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 195, 20.9, 381, 46.5, 53.5, 0.3, 13.7,18.9 +6.21246290801187,5,a-curv-i5,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 337, 17.6, 741, 47.0, 53.0, 0.0, 12.8,18,753 +NA,NA,a-curv-i5,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 307, 19.3, 491, 50.3, 49.7, 0.6, 19.6,20 +NA,NA,a-curv-i5,2020-21,Dighton-Rehoboth - Palmer River,06500010, 301, 19.5, 563, 46.9, 53.1, 0.7, 18.5,16 +NA,NA,a-curv-i5,2020-21,Douglas - Douglas Elementary School,00770015, 120, 24.5, 357, 47.3, 52.7, 1.1, 22.1,17.7 +6.543157894736842,5,a-curv-i5,2020-21,Douglas - Douglas High School,00770505, 190, 12.3, 350, 46.6, 53.4, 0.0, 17.4,19.4,346 +NA,NA,a-curv-i5,2020-21,Douglas - Douglas Middle School,00770305, 183, 20.5, 275, 50.2, 49.8, 0.0, 17.1,20 +NA,NA,a-curv-i5,2020-21,Douglas - Douglas Primary School,00770005, 71, 16.7, 199, 49.3, 50.8, 1.5, 15.6,20.1 +NA,NA,a-curv-i5,2020-21,Dover - Chickering,00780005, 164, 17.4, 491, 44.4, 55.6, 1.8, 15.5,2.4 +NA,NA,a-curv-i5,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 362, 15.5, 668, 50.2, 49.7, 0.3, 13.5,3.7 +NA,NA,a-curv-i5,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 317, 18.5, 513, 44.4, 55.6, 0.2, 15.4,4.7 +NA,NA,a-curv-i5,2020-21,Dracut - Brookside Elementary,00790035, 159, 22.1, 413, 47.5, 52.5, 1.2, 12.4,32 +NA,NA,a-curv-i5,2020-21,Dracut - Dracut Senior High,00790505, 394, 15.2, 767, 47.5, 52.3, 2.0, 13.4,23 +NA,NA,a-curv-i5,2020-21,Dracut - George H. Englesby Elementary School,00790045, 210, 19.9, 506, 51.6, 48.4, 1.8, 15.2,36.8 +NA,NA,a-curv-i5,2020-21,Dracut - Greenmont Avenue,00790030, 113, 19.3, 267, 45.7, 54.3, 6.7, 13.9,40.8 +NA,NA,a-curv-i5,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 234, 18.6, 562, 46.6, 53.4, 1.6, 22.2,20.3 +NA,NA,a-curv-i5,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 793, 11.2, 918, 47.3, 52.4, 1.2, 17.1,28.9 +NA,NA,a-curv-i5,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 15, 21.0, 277, 52.4, 47.7, 40.4, 14.8,71.1 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 56, 17.3, 300, 47.7, 52.3, 7.3, 22.3,31.3 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 127, 17.3, 548, 46.0, 54.0, 1.3, 16.1,19.3 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 56, 20.1, 281, 46.6, 53.4, 7.5, 19.2,33.1 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 106, 17.6, 478, 48.3, 51.7, 1.7, 14.9,28.7 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 125, 19.5, 352, 48.9, 51.1, 5.4, 22.7,25.3 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 41, 19.0, 239, 45.2, 54.8, 10.0, 29.3,37.7 +NA,NA,a-curv-i5,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 377, 15.0, 944, 52.0, 48.0, 1.0, 10.7,21.4 +NA,NA,a-curv-i5,2020-21,Duxbury - Alden School,00820004, 332, 20.4, 610, 49.2, 50.8, 0.7, 15.7,7.9 +NA,NA,a-curv-i5,2020-21,Duxbury - Chandler Elementary,00820006, 337, 18.3, 576, 47.4, 52.6, 0.9, 12.5,6.6 +NA,NA,a-curv-i5,2020-21,Duxbury - Duxbury High,00820505, 480, 17.4, 958, 47.5, 52.4, 0.3, 14.3,7.8 +NA,NA,a-curv-i5,2020-21,Duxbury - Duxbury Middle,00820305, 295, 20.8, 666, 49.6, 50.3, 0.2, 12.6,5.6 +NA,NA,a-curv-i5,2020-21,East Bridgewater - Central,00830005, 258, 15.5, 506, 50.0, 50.0, 2.0, 17.6,26.5 +6.499224806201551,5,a-curv-i5,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 516, 19.3, 979, 45.2, 54.9, 0.9, 17.6,21.7,968 +NA,NA,a-curv-i5,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 333, 21.3, 641, 48.8, 51.2, 1.6, 17.6,23.7 +NA,NA,a-curv-i5,2020-21,East Longmeadow - Birchland Park,00870305, 471, 18.2, 596, 48.2, 51.9, 0.3, 17.3,24.2 +NA,NA,a-curv-i5,2020-21,East Longmeadow - East Longmeadow High,00870505, 314, 18.9, 809, 47.8, 52.0, 0.9, 16.7,19.9 +NA,NA,a-curv-i5,2020-21,East Longmeadow - Mapleshade,00870010, 166, 16.1, 281, 45.9, 54.1, 3.2, 22.8,27.8 +NA,NA,a-curv-i5,2020-21,East Longmeadow - Meadow Brook,00870013, 193, 16.5, 470, 49.8, 50.2, 3.4, 22.1,24.5 +NA,NA,a-curv-i5,2020-21,East Longmeadow - Mountain View,00870015, 125, 15.3, 268, 47.4, 52.6, 1.5, 22.4,17.9 +NA,NA,a-curv-i5,2020-21,Eastham - Eastham Elementary,00850005, 190, 10.2, 194, 44.9, 55.2, 6.7, 18.0,39.7 +NA,NA,a-curv-i5,2020-21,Easthampton - Center School,00860005, 43, 19.1, 184, 48.4, 51.6, 0.0, 14.1,32.1 +NA,NA,a-curv-i5,2020-21,Easthampton - Easthampton High,00860505, 189, 15.2, 416, 51.2, 47.8, 1.4, 17.1,30.8 +NA,NA,a-curv-i5,2020-21,Easthampton - Maple,00860010, 47, 17.2, 219, 45.7, 53.4, 1.8, 31.1,42.5 +NA,NA,a-curv-i5,2020-21,Easthampton - Neil A Pepin,00860020, 45, 18.2, 189, 51.3, 48.7, 10.6, 18.0,45 +NA,NA,a-curv-i5,2020-21,Easthampton - White Brook Middle School,00860305, 197, 26.4, 445, 45.4, 54.2, 3.4, 28.5,36 +NA,NA,a-curv-i5,2020-21,Easton - Center School,00880003, 44, 17.6, 194, 49.0, 51.0, 5.7, 12.4,23.7 +NA,NA,a-curv-i5,2020-21,Easton - Easton Middle School,00880405, 482, 16.8, 878, 50.1, 49.9, 1.0, 20.8,14.5 +NA,NA,a-curv-i5,2020-21,Easton - Moreau Hall,00880020, 41, 17.4, 187, 51.3, 48.7, 5.9, 12.8,24.6 +NA,NA,a-curv-i5,2020-21,Easton - Oliver Ames High,00880505, 489, 18.4," 1,130", 50.3, 49.7, 1.2, 19.0,16.5 +NA,NA,a-curv-i5,2020-21,Easton - Parkview Elementary,00880015, 61, 16.6, 291, 43.3, 56.7, 1.0, 21.0,17.2 +NA,NA,a-curv-i5,2020-21,Easton - Richardson Olmsted School,00880025, 140, 22.1, 774, 47.9, 52.1, 1.9, 22.0,17.2 +NA,NA,a-curv-i5,2020-21,Edgartown - Edgartown Elementary,00890005, 353, 13.4, 393, 50.1, 49.9, 22.1, 26.0,38.9 +NA,NA,a-curv-i5,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 212, 19.9, 401, 66.3, 33.7, 12.2, 20.2,72.1 +NA,NA,a-curv-i5,2020-21,Erving - Erving Elementary,00910030, 36, 12.4, 113, 42.5, 57.5, 0.0, 19.5,32.7 +NA,NA,a-curv-i5,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,150", 16.9," 1,566", 58.0, 41.7, 0.3, 16.7,19.2 +NA,NA,a-curv-i5,2020-21,Everett - Adams School,00930003, 64, 9.9, 156, 43.0, 57.1, 1.3, 18.6,55.8 +NA,NA,a-curv-i5,2020-21,Everett - Devens School,00930030, 123, 3.2, 51, 25.5, 72.6, 19.6, 80.4,86.3 +NA,NA,a-curv-i5,2020-21,Everett - Everett High,00930505, 913, 19.1," 2,036", 49.4, 50.5, 20.3, 13.5,59 +NA,NA,a-curv-i5,2020-21,Everett - George Keverian School,00930028, 423, 23.4, 960, 49.6, 50.4, 34.4, 15.1,65 +NA,NA,a-curv-i5,2020-21,Everett - Lafayette School,00930038, 534, 22.4," 1,050", 48.0, 52.0, 28.9, 20.2,62.9 +NA,NA,a-curv-i5,2020-21,Everett - Madeline English School,00930018, 431, 19.7, 770, 47.9, 52.1, 22.3, 16.8,59.6 +NA,NA,a-curv-i5,2020-21,Everett - Parlin School,00930058, 458, 24.0, 977, 53.3, 46.7, 45.8, 9.3,72.1 +NA,NA,a-curv-i5,2020-21,Everett - Sumner G. Whittier School,00930010, 279, 23.6, 731, 49.4, 50.6, 42.3, 12.3,69.9 +NA,NA,a-curv-i5,2020-21,Everett - Webster Extension,00930001, 80, 8.5, 170, 41.8, 58.2, 2.4, 25.3,57.1 +NA,NA,a-curv-i5,2020-21,Everett - Webster School,00930015, 194, 15.0, 360, 48.9, 51.1, 25.8, 28.6,61.4 +NA,NA,a-curv-i5,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 366, 24.3," 1,398", 49.7, 50.3, 8.7, 19.8,54.8 +NA,NA,a-curv-i5,2020-21,Fairhaven - East Fairhaven,00940010, 199, 9.2, 307, 48.5, 51.5, 2.9, 20.2,37.1 +NA,NA,a-curv-i5,2020-21,Fairhaven - Fairhaven High,00940505, 430, 6.9, 602, 50.3, 49.7, 0.3, 10.6,22.3 +NA,NA,a-curv-i5,2020-21,Fairhaven - Hastings Middle,00940305, 196, 8.2, 395, 49.4, 50.6, 0.8, 21.0,33.9 +NA,NA,a-curv-i5,2020-21,Fairhaven - Leroy Wood,00940030, 260, 9.7, 409, 48.7, 51.3, 1.5, 19.3,37.2 +NA,NA,a-curv-i5,2020-21,Fall River - B M C Durfee High,00950505, 849, 15.9," 2,143", 49.0, 51.0, 16.8, 15.8,68.7 +NA,NA,a-curv-i5,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 410, 13.0, 723, 50.2, 49.8, 22.8, 18.0,83 +NA,NA,a-curv-i5,2020-21,Fall River - Henry Lord Community School,00950017, 617, 12.9, 842, 47.5, 52.5, 24.5, 30.2,85.8 +NA,NA,a-curv-i5,2020-21,Fall River - James Tansey,00950140, 188, 10.9, 279, 52.0, 48.0, 4.7, 16.1,50.5 +NA,NA,a-curv-i5,2020-21,Fall River - John J Doran,00950045, 247, 15.5, 507, 47.9, 52.1, 7.9, 24.7,84.8 +NA,NA,a-curv-i5,2020-21,Fall River - Letourneau Elementary School,00950013, 322, 13.7, 588, 50.3, 49.7, 32.5, 17.4,79.1 +NA,NA,a-curv-i5,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 388, 15.9, 655, 45.3, 54.7, 29.6, 19.2,85.7 +NA,NA,a-curv-i5,2020-21,Fall River - Matthew J Kuss Middle,00950320, 294, 19.4, 765, 51.6, 48.4, 11.1, 19.1,72.4 +NA,NA,a-curv-i5,2020-21,Fall River - Morton Middle,00950315, 266, 19.6, 705, 46.5, 53.5, 8.4, 23.4,66.1 +NA,NA,a-curv-i5,2020-21,Fall River - North End Elementary,00950005, 408, 12.4, 761, 50.3, 49.7, 9.1, 31.9,62 +NA,NA,a-curv-i5,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 135, 7.8, 235, 40.9, 58.7, 12.8, 26.4,86.4 +NA,NA,a-curv-i5,2020-21,Fall River - Samuel Watson,00950145, 133, 15.7, 259, 54.1, 46.0, 12.4, 20.1,83.8 +NA,NA,a-curv-i5,2020-21,Fall River - Spencer Borden,00950130, 384, 13.0, 597, 46.6, 53.4, 10.1, 34.0,67 +NA,NA,a-curv-i5,2020-21,Fall River - Stone PK-12 School,00950340, 68, 6.2, 74, 28.4, 71.6, 9.5, 90.5,90.5 +NA,NA,a-curv-i5,2020-21,Fall River - Talbot Innovation School,00950305, 269, 14.9, 572, 47.6, 52.5, 30.4, 26.2,79.2 +NA,NA,a-curv-i5,2020-21,Fall River - William S Greene,00950065, 380, 12.3, 692, 50.9, 49.1, 24.0, 22.7,75.9 +NA,NA,a-curv-i5,2020-21,Falmouth - East Falmouth Elementary,00960005, 93, 11.2, 272, 43.0, 57.0, 8.5, 29.8,44.5 +NA,NA,a-curv-i5,2020-21,Falmouth - Falmouth High,00960505, 629, 12.9, 811, 49.0, 50.2, 2.6, 14.3,26.5 +NA,NA,a-curv-i5,2020-21,Falmouth - Lawrence,00960405, 373, 16.7, 517, 48.6, 51.5, 2.9, 23.0,35.6 +NA,NA,a-curv-i5,2020-21,Falmouth - Morse Pond School,00960305, 248, 21.8, 485, 51.1, 48.9, 3.3, 20.6,35.7 +NA,NA,a-curv-i5,2020-21,Falmouth - Mullen-Hall,00960020, 140, 13.8, 387, 41.6, 58.4, 7.2, 17.1,33.6 +NA,NA,a-curv-i5,2020-21,Falmouth - North Falmouth Elementary,00960030, 135, 11.2, 301, 48.8, 51.2, 2.0, 17.3,23.6 +NA,NA,a-curv-i5,2020-21,Falmouth - Teaticket,00960015, 99, 11.5, 246, 45.9, 54.1, 7.7, 24.4,51.6 +NA,NA,a-curv-i5,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 76, 13.8, 118, 50.0, 50.0, 0.0, 24.6,40.7 +NA,NA,a-curv-i5,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 353, 18.0, 663, 49.6, 50.4, 10.6, 26.4,74.4 +NA,NA,a-curv-i5,2020-21,Fitchburg - Crocker Elementary,00970016, 219, 21.0, 582, 47.4, 52.6, 28.0, 26.0,71.8 +NA,NA,a-curv-i5,2020-21,Fitchburg - Fitchburg High,00970505, 529, 18.2," 1,259", 48.6, 51.4, 10.8, 19.1,62 +NA,NA,a-curv-i5,2020-21,Fitchburg - Goodrich Academy,00970510, 114, 7.3, 200, 41.5, 58.5, 7.5, 28.5,69.5 +NA,NA,a-curv-i5,2020-21,Fitchburg - McKay Arts Academy,00970340, 404, 20.6, 670, 47.2, 52.8, 20.3, 22.7,69.6 +NA,NA,a-curv-i5,2020-21,Fitchburg - Memorial Middle School,00970048, 315, 20.9, 659, 54.3, 45.7, 9.1, 13.5,61.6 +NA,NA,a-curv-i5,2020-21,Fitchburg - Reingold Elementary,00970043, 221, 21.1, 583, 42.9, 57.1, 24.4, 20.4,66.4 +NA,NA,a-curv-i5,2020-21,Fitchburg - South Street Elementary,00970060, 300, 15.4, 590, 46.1, 53.9, 21.4, 30.5,72.7 +NA,NA,a-curv-i5,2020-21,Florida - Abbott Memorial,00980005, 89, 9.2, 86, 45.4, 54.7, 0.0, 22.1,38.4 +NA,NA,a-curv-i5,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 187, 17.2, 215, 56.7, 42.3, 0.0, 14.0,28.4 +NA,NA,a-curv-i5,2020-21,Foxborough - Charles Taylor Elementary,00990050, 114, 19.6, 254, 43.7, 56.3, 2.4, 20.5,16.5 +NA,NA,a-curv-i5,2020-21,Foxborough - Foxborough High,00990505, 495, 13.5, 765, 48.4, 51.5, 1.2, 15.2,18.8 +NA,NA,a-curv-i5,2020-21,Foxborough - John J Ahern,00990405, 442, 17.8, 747, 47.9, 52.1, 2.1, 21.8,18.6 +NA,NA,a-curv-i5,2020-21,Foxborough - Mabelle M Burrell,00990015, 122, 17.3, 309, 47.9, 52.1, 1.3, 27.2,14.9 +NA,NA,a-curv-i5,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 159, 20.7, 372, 44.9, 55.1, 7.5, 19.9,24.5 +NA,NA,a-curv-i5,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 687, 20.2," 1,687", 51.7, 48.3, 7.4, 9.9,30.8 +NA,NA,a-curv-i5,2020-21,Framingham - Barbieri Elementary,01000035, 339, 18.8, 658, 52.7, 47.1, 53.8, 17.8,56.4 +NA,NA,a-curv-i5,2020-21,Framingham - Brophy,01000006, 306, 14.6, 462, 48.7, 51.3, 45.5, 18.6,60.2 +NA,NA,a-curv-i5,2020-21,Framingham - Cameron Middle School,01000302, 450, 15.1, 575, 49.6, 50.4, 15.7, 25.0,52.7 +NA,NA,a-curv-i5,2020-21,Framingham - Charlotte A Dunning,01000007, 310, 11.2, 414, 46.4, 53.4, 21.7, 25.9,30.7 +7.069268292682926,5,a-curv-i5,2020-21,Framingham - Framingham High School,01000515," 2,050", 9.3," 2,429", 49.3, 50.6, 16.8, 18.4,42,2385 +NA,NA,a-curv-i5,2020-21,Framingham - Fuller Middle,01000305, 460, 15.7, 617, 42.5, 57.4, 42.6, 24.2,64.5 +NA,NA,a-curv-i5,2020-21,Framingham - Hemenway,01000015, 371, 13.2, 520, 50.6, 49.4, 19.6, 21.9,27.9 +NA,NA,a-curv-i5,2020-21,Framingham - Juniper Hill School,01000001, 392, 4.9, 237, 32.9, 67.1, 2.1, 66.2,46.8 +NA,NA,a-curv-i5,2020-21,Framingham - King Elementary School,01000005, 254, 13.6, 368, 46.5, 53.3, 17.7, 19.0,33.7 +NA,NA,a-curv-i5,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 230, 11.7, 324, 45.1, 54.9, 23.5, 30.9,53.4 +NA,NA,a-curv-i5,2020-21,Framingham - Miriam F McCarthy School,01000050, 375, 12.2, 481, 54.7, 45.3, 32.6, 26.8,59.7 +NA,NA,a-curv-i5,2020-21,Framingham - Potter Road,01000039, 271, 16.1, 510, 50.4, 49.6, 36.1, 13.7,38.8 +NA,NA,a-curv-i5,2020-21,Framingham - Walsh Middle,01000310, 586, 15.7, 780, 53.2, 46.8, 6.0, 23.6,31.5 +NA,NA,a-curv-i5,2020-21,Framingham - Woodrow Wilson,01000055, 360, 14.5, 487, 46.0, 54.0, 69.0, 12.1,75 +NA,NA,a-curv-i5,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 252, 16.6, 391, 55.0, 44.5, 0.0, 15.4,9 +NA,NA,a-curv-i5,2020-21,Franklin - Annie Sullivan Middle School,01010040, 189, 18.5, 350, 45.7, 54.3, 2.6, 16.6,13.4 +NA,NA,a-curv-i5,2020-21,Franklin - Davis Thayer,01010035, 136, 12.3, 209, 52.6, 47.4, 1.9, 23.0,20.1 +NA,NA,a-curv-i5,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 7, 13.1, 92, 32.6, 67.4, 0.0, 54.4,15.2 +NA,NA,a-curv-i5,2020-21,Franklin - Franklin High,01010505, 871, 17.4," 1,741", 50.4, 49.3, 0.6, 10.7,7.9 +NA,NA,a-curv-i5,2020-21,Franklin - Helen Keller Elementary,01010012, 208, 12.5, 324, 47.2, 52.8, 2.2, 17.0,8.3 +NA,NA,a-curv-i5,2020-21,Franklin - Horace Mann,01010405, 225, 18.4, 415, 46.3, 53.7, 0.5, 18.1,9.2 +NA,NA,a-curv-i5,2020-21,Franklin - J F Kennedy Memorial,01010013, 200, 13.2, 330, 45.2, 54.9, 1.2, 20.3,8.5 +NA,NA,a-curv-i5,2020-21,Franklin - Jefferson Elementary,01010010, 240, 11.0, 329, 45.0, 55.0, 3.0, 23.7,10.3 +NA,NA,a-curv-i5,2020-21,Franklin - Oak Street Elementary,01010030, 232, 12.6, 366, 50.6, 49.5, 1.6, 14.5,12.3 +NA,NA,a-curv-i5,2020-21,Franklin - Parmenter,01010032, 200, 12.2, 306, 49.4, 50.7, 4.3, 19.6,31.1 +NA,NA,a-curv-i5,2020-21,Franklin - Remington Middle,01010310, 199, 19.4, 386, 45.6, 54.4, 1.6, 22.5,18.7 +NA,NA,a-curv-i5,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 250, 13.0, 543, 39.0, 60.8, 0.4, 29.1,39.8 +NA,NA,a-curv-i5,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 367, 14.4, 716, 50.8, 49.2, 0.1, 16.1,15.6 +NA,NA,a-curv-i5,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 91, 19.5, 445, 52.4, 47.6, 1.6, 10.8,20.7 +NA,NA,a-curv-i5,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 80, 18.5, 404, 45.5, 54.5, 1.5, 18.6,21 +NA,NA,a-curv-i5,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 291, 19.5, 633, 49.9, 50.1, 0.3, 18.3,19.6 +NA,NA,a-curv-i5,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 176, 16.1, 406, 48.3, 51.7, 1.7, 20.0,19.5 +NA,NA,a-curv-i5,2020-21,Frontier - Frontier Regional,06700505, 529, 12.0, 649, 46.7, 53.3, 0.6, 15.9,21.4 +NA,NA,a-curv-i5,2020-21,Gardner - Elm Street School,01030001, 96, 18.2, 437, 50.6, 49.4, 8.5, 24.0,63.2 +NA,NA,a-curv-i5,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 54, 7.4, 47, 31.9, 68.1, 4.3, 34.0,78.7 +NA,NA,a-curv-i5,2020-21,Gardner - Gardner High,01030505, 321, 15.5, 710, 46.9, 53.0, 3.5, 19.3,51.7 +NA,NA,a-curv-i5,2020-21,Gardner - Gardner Middle School,01030405, 152, 21.6, 549, 47.9, 52.1, 6.9, 24.0,57 +NA,NA,a-curv-i5,2020-21,Gardner - Waterford Street,01030020, 77, 17.2, 405, 45.2, 54.6, 6.7, 27.7,64.2 +NA,NA,a-curv-i5,2020-21,Gateway - Chester Elementary,06720059, 60, 13.9, 106, 41.5, 58.5, 0.0, 30.2,37.7 +NA,NA,a-curv-i5,2020-21,Gateway - Gateway Regional High,06720505, 225, 7.9, 196, 48.0, 52.0, 2.6, 20.9,31.1 +NA,NA,a-curv-i5,2020-21,Gateway - Gateway Regional Middle School,06720405, 125, 13.4, 124, 45.2, 54.8, 0.0, 19.4,38.7 +NA,NA,a-curv-i5,2020-21,Gateway - Littleville Elementary School,06720143, 145, 18.9, 332, 50.9, 49.1, 3.6, 23.8,43.1 +7.092255892255892,5,a-curv-i5,2020-21,Georgetown - Georgetown High School,01050505, 297, 11.7, 339, 49.9, 49.9, 0.0, 16.5,11.2,337 +NA,NA,a-curv-i5,2020-21,Georgetown - Georgetown Middle School,01050305, 159, 15.9, 203, 51.2, 48.8, 0.0, 17.7,12.3 +NA,NA,a-curv-i5,2020-21,Georgetown - Penn Brook,01050010, 166, 19.7, 658, 50.5, 49.5, 0.0, 14.1,11.1 +NA,NA,a-curv-i5,2020-21,Georgetown - Perley Elementary,01050005, 1, 23.0, 23, 26.1, 73.9, 0.0, 100.0,21.7 +NA,NA,a-curv-i5,2020-21,Gill-Montague - Gill Elementary,06740005, 50, 17.8, 111, 49.6, 50.5, 0.9, 29.7,35.1 +NA,NA,a-curv-i5,2020-21,Gill-Montague - Great Falls Middle,06740310, 149, 12.5, 209, 47.9, 52.2, 4.8, 28.2,59.3 +NA,NA,a-curv-i5,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 76, 13.3, 128, 44.5, 55.5, 16.4, 25.0,53.9 +NA,NA,a-curv-i5,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 104, 16.5, 215, 44.2, 54.9, 12.6, 30.7,59.1 +NA,NA,a-curv-i5,2020-21,Gill-Montague - Turners Fall High,06740505, 140, 10.8, 182, 56.6, 42.9, 3.9, 23.1,47.8 +NA,NA,a-curv-i5,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 347, 16.9, 503, 51.3, 48.7, 9.7, 11.1,59.4 +NA,NA,a-curv-i5,2020-21,Gloucester - Beeman Memorial,01070010, 78, 14.7, 314, 51.0, 49.0, 15.9, 18.8,57.6 +NA,NA,a-curv-i5,2020-21,Gloucester - East Gloucester Elementary,01070020, 54, 12.0, 182, 52.8, 47.3, 8.8, 22.0,33.5 +NA,NA,a-curv-i5,2020-21,Gloucester - Gloucester High,01070505, 426, 12.1, 705, 43.1, 56.6, 7.0, 27.7,34.5 +NA,NA,a-curv-i5,2020-21,Gloucester - Gloucester PreSchool,01070025, 12, 7.9, 95, 43.2, 56.8, 0.0, 53.7,45.3 +NA,NA,a-curv-i5,2020-21,Gloucester - Plum Cove School,01070042, 53, 14.8, 207, 48.8, 51.2, 3.4, 20.8,27.1 +NA,NA,a-curv-i5,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 682, 13.2, 623, 49.8, 50.2, 5.3, 24.1,43.5 +NA,NA,a-curv-i5,2020-21,Gloucester - Veterans Memorial,01070045, 55, 13.1, 207, 46.9, 53.1, 23.7, 26.6,61.8 +NA,NA,a-curv-i5,2020-21,Gloucester - West Parish,01070050, 86, 15.7, 358, 49.7, 50.3, 2.2, 25.7,37.4 +NA,NA,a-curv-i5,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 10, 2.8, 6, 50.0, 50.0, 0.0, 0.0,0 +6.481561822125814,5,a-curv-i5,2020-21,Grafton - Grafton High School,01100505, 461, 15.1, 876, 51.5, 48.4, 1.4, 14.2,14.6,875 +NA,NA,a-curv-i5,2020-21,Grafton - Grafton Middle,01100305, 537, 16.4, 522, 43.9, 56.1, 0.4, 14.9,17.4 +NA,NA,a-curv-i5,2020-21,Grafton - Millbury Street Elementary School,01100200, 357, 17.3, 636, 43.9, 56.1, 3.5, 23.1,16 +NA,NA,a-curv-i5,2020-21,Grafton - North Grafton Elementary,01100025, 128, 14.7, 273, 49.1, 50.9, 2.6, 25.3,18.3 +NA,NA,a-curv-i5,2020-21,Grafton - North Street Elementary School,01100030, 312, 17.1, 569, 49.6, 50.4, 2.8, 18.3,16.9 +NA,NA,a-curv-i5,2020-21,Grafton - South Grafton Elementary,01100005, 153, 13.1, 276, 49.3, 50.7, 1.8, 21.7,13 +NA,NA,a-curv-i5,2020-21,Granby - East Meadow,01110004, 125, 17.6, 389, 49.1, 50.9, 6.9, 22.1,37.8 +7.009811320754717,5,a-curv-i5,2020-21,Granby - Granby Jr Sr High School,01110505, 265, 12.4, 326, 40.2, 59.2, 3.1, 16.6,27.3,328 +NA,NA,a-curv-i5,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 860, 16.0," 1,439", 44.7, 55.0, 1.7, 10.2,41.1 +NA,NA,a-curv-i5,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,787", 13.7," 1,629", 50.3, 49.7, 9.6, 14.9,60 +NA,NA,a-curv-i5,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,444", 17.9," 2,286", 48.8, 50.7, 9.8, 16.9,50 +NA,NA,a-curv-i5,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,986", 15.1," 2,106", 47.7, 52.3, 4.2, 10.3,42.2 +NA,NA,a-curv-i5,2020-21,Greenfield - Discovery School at Four Corners,01140025, 85, 15.1, 221, 43.4, 56.6, 4.5, 17.2,32.6 +NA,NA,a-curv-i5,2020-21,Greenfield - Federal Street School,01140010, 75, 13.9, 208, 48.6, 51.4, 5.8, 19.2,68.3 +NA,NA,a-curv-i5,2020-21,Greenfield - Greenfield High,01140505, 315, 15.1, 487, 46.8, 53.2, 4.7, 17.7,49.5 +NA,NA,a-curv-i5,2020-21,Greenfield - Greenfield Middle,01140305, 207, 19.1, 366, 50.8, 49.2, 4.9, 15.9,57.1 +NA,NA,a-curv-i5,2020-21,Greenfield - Newton School,01140035, 34, 19.4, 219, 49.8, 50.2, 8.2, 20.6,71.7 +NA,NA,a-curv-i5,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 6, 9.2, 55, 41.8, 58.2, 0.0, 58.2,60 +NA,NA,a-curv-i5,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 340, 18.6," 1,002", 53.9, 45.2, 2.3, 22.1,50 +NA,NA,a-curv-i5,2020-21,Groton-Dunstable - Boutwell School,06730001, 8, 7.0, 41, 39.0, 61.0, 0.0, 46.3,17.1 +NA,NA,a-curv-i5,2020-21,Groton-Dunstable - Florence Roche School,06730010, 140, 18.9, 517, 47.6, 52.4, 2.5, 17.6,9.9 +NA,NA,a-curv-i5,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 384, 16.3, 724, 48.1, 51.4, 0.3, 11.6,6.5 +NA,NA,a-curv-i5,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 488, 16.4, 707, 50.2, 49.8, 0.6, 17.3,7.1 +NA,NA,a-curv-i5,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 79, 18.4, 285, 47.0, 53.0, 2.1, 18.3,9.1 +NA,NA,a-curv-i5,2020-21,Hadley - Hadley Elementary,01170015, 265, 16.8, 255, 45.5, 54.5, 5.5, 16.5,25.5 +NA,NA,a-curv-i5,2020-21,Hadley - Hopkins Academy,01170505, 134, 15.1, 252, 46.0, 53.6, 2.8, 11.5,21.4 +NA,NA,a-curv-i5,2020-21,Halifax - Halifax Elementary,01180005, 274, 17.9, 568, 46.7, 53.4, 1.1, 18.1,22.4 +NA,NA,a-curv-i5,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 108, 16.6, 226, 44.3, 55.8, 3.1, 16.8,5.3 +NA,NA,a-curv-i5,2020-21,Hamilton-Wenham - Cutler School,06750010, 128, 15.5, 249, 57.0, 43.0, 0.4, 18.5,10 +NA,NA,a-curv-i5,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 647, 7.1, 523, 53.5, 46.5, 0.6, 12.8,7.8 +NA,NA,a-curv-i5,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 210, 18.8, 385, 48.1, 52.0, 0.5, 17.7,7.5 +NA,NA,a-curv-i5,2020-21,Hamilton-Wenham - Winthrop School,06750015, 128, 16.6, 300, 53.7, 46.3, 0.0, 24.7,7.7 +NA,NA,a-curv-i5,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 252, 19.0, 536, 50.6, 49.3, 5.8, 14.0,52.2 +NA,NA,a-curv-i5,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 162, 17.4, 327, 46.8, 53.2, 7.7, 17.7,52 +NA,NA,a-curv-i5,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 99, 17.9, 340, 49.7, 50.3, 2.7, 23.8,30.3 +NA,NA,a-curv-i5,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 76, 18.4, 341, 46.0, 54.0, 3.5, 19.9,17 +6.429118773946359,5,a-curv-i5,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 522, 16.4," 1,019", 52.0, 48.0, 0.1, 13.6,17.6,1025 +NA,NA,a-curv-i5,2020-21,Hampden-Wilbraham - Soule Road,06800030, 71, 22.0, 313, 45.7, 54.3, 1.6, 17.3,20.8 +NA,NA,a-curv-i5,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 72, 20.3, 294, 49.3, 50.7, 3.1, 19.7,20.1 +NA,NA,a-curv-i5,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 314, 18.7, 586, 49.2, 50.9, 0.0, 14.5,22 +NA,NA,a-curv-i5,2020-21,Hampshire - Hampshire Regional High,06830505, 576, 11.2, 684, 56.3, 43.4, 1.9, 21.6,17.8 +NA,NA,a-curv-i5,2020-21,Hancock - Hancock Elementary,01210005, 76, 7.0, 56, 55.4, 44.6, 0.0, 30.4,32.1 +NA,NA,a-curv-i5,2020-21,Hanover - Cedar Elementary,01220004, 199, 16.3, 488, 50.2, 49.8, 2.5, 19.5,9 +NA,NA,a-curv-i5,2020-21,Hanover - Center Elementary,01220005, 225, 21.7, 584, 46.6, 53.4, 1.4, 22.8,7.9 +NA,NA,a-curv-i5,2020-21,Hanover - Hanover High,01220505, 330, 14.7, 725, 46.2, 53.8, 0.0, 16.8,9.5 +NA,NA,a-curv-i5,2020-21,Hanover - Hanover Middle,01220305, 637, 19.7, 813, 49.9, 50.1, 0.9, 21.0,11 +NA,NA,a-curv-i5,2020-21,Harvard - Bromfield,01250505, 332, 13.9, 593, 51.8, 48.1, 0.0, 10.1,7.1 +NA,NA,a-curv-i5,2020-21,Harvard - Hildreth Elementary School,01250005, 268, 14.5, 415, 48.0, 52.1, 2.2, 11.8,5.5 +NA,NA,a-curv-i5,2020-21,Hatfield - Hatfield Elementary,01270005, 150, 14.3, 215, 47.9, 51.6, 0.5, 27.9,20.5 +NA,NA,a-curv-i5,2020-21,Hatfield - Smith Academy,01270505, 143, 9.9, 179, 46.4, 52.5, 0.0, 26.3,10.6 +NA,NA,a-curv-i5,2020-21,Haverhill - Bradford Elementary,01280008, 260, 17.4, 436, 47.3, 52.8, 15.8, 19.3,58.3 +NA,NA,a-curv-i5,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 324, 21.3, 876, 48.3, 51.7, 5.3, 19.1,40.2 +NA,NA,a-curv-i5,2020-21,Haverhill - Consentino Middle School,01280100, 176, 21.6, 596, 44.1, 55.9, 11.6, 18.5,63.1 +NA,NA,a-curv-i5,2020-21,Haverhill - Crowell,01280515, 12, 12.0, 27, 33.3, 66.7, 0.0, 44.4,88.9 +NA,NA,a-curv-i5,2020-21,Haverhill - Dr Paul Nettle,01280050, 185, 17.6, 409, 47.7, 52.3, 12.0, 28.9,62.8 +NA,NA,a-curv-i5,2020-21,Haverhill - Golden Hill,01280026, 268, 15.0, 377, 48.3, 51.5, 14.6, 21.5,63.4 +NA,NA,a-curv-i5,2020-21,Haverhill - Greenleaf Academy,01280033, 45, 5.9, 38, 23.7, 76.3, 2.6, 100.0,86.8 +NA,NA,a-curv-i5,2020-21,Haverhill - Haverhill High,01280505, 857, 17.3," 1,884", 47.8, 52.2, 7.8, 21.0,47.4 +NA,NA,a-curv-i5,2020-21,Haverhill - John G Whittier,01280085, 124, 23.2, 382, 50.3, 49.2, 2.4, 22.0,50.5 +NA,NA,a-curv-i5,2020-21,Haverhill - Moody,01280045, 252, 8.0, 223, 33.2, 66.8, 4.5, 66.4,57.9 +NA,NA,a-curv-i5,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 250, 16.0, 436, 48.9, 51.2, 17.2, 29.6,60.8 +NA,NA,a-curv-i5,2020-21,Haverhill - Silver Hill Elementary School,01280067, 211, 17.9, 458, 50.0, 50.0, 12.2, 18.6,53.5 +NA,NA,a-curv-i5,2020-21,Haverhill - TEACH,01280073, 45, 2.6, 23, 39.1, 60.9, 4.4, 100.0,73.9 +NA,NA,a-curv-i5,2020-21,Haverhill - Tilton,01280075, 130, 19.3, 307, 49.5, 50.5, 20.5, 15.3,71 +NA,NA,a-curv-i5,2020-21,Haverhill - Tilton Upper Middle School,01280105, 43, 22.0, 133, 46.6, 53.4, 15.8, 24.8,75.2 +NA,NA,a-curv-i5,2020-21,Haverhill - Walnut Square,01280080, 71, 19.3, 139, 53.2, 46.8, 9.4, 14.4,54 +NA,NA,a-curv-i5,2020-21,Hawlemont - Hawlemont Regional,06850005, 39, 15.5, 124, 58.9, 41.1, 4.0, 30.7,50.8 +NA,NA,a-curv-i5,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 64, 14.7, 189, 50.3, 49.7, 4.8, 19.6,66.1 +NA,NA,a-curv-i5,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 122, 20.7, 304, 51.6, 48.4, 5.9, 18.4,31.6 +NA,NA,a-curv-i5,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 53, 25.7, 218, 48.6, 50.9, 0.0, 16.1,14.7 +NA,NA,a-curv-i5,2020-21,Hingham - East Elementary School,01310005, 193, 15.9, 431, 48.5, 51.5, 0.0, 23.7,6.3 +NA,NA,a-curv-i5,2020-21,Hingham - Hingham High,01310505," 1,088", 7.9," 1,282", 48.7, 51.2, 0.3, 8.7,7.4 +NA,NA,a-curv-i5,2020-21,Hingham - Hingham Middle School,01310410, 467, 18.4, 928, 49.1, 50.8, 0.3, 13.6,6.7 +NA,NA,a-curv-i5,2020-21,Hingham - Plymouth River,01310019, 159, 18.3, 364, 52.2, 47.8, 1.4, 21.4,6.9 +NA,NA,a-curv-i5,2020-21,Hingham - South Elementary,01310020, 191, 20.3, 485, 50.5, 49.5, 0.0, 14.6,3.9 +NA,NA,a-curv-i5,2020-21,Hingham - Wm L Foster Elementary,01310010, 195, 18.6, 456, 46.3, 53.7, 0.9, 19.7,7.2 +6.614117647058824,5,a-curv-i5,2020-21,Holbrook - Holbrook Middle High School,01330505, 340, 14.7, 598, 49.2, 50.5, 4.9, 17.1,38.5,589 +NA,NA,a-curv-i5,2020-21,Holbrook - John F Kennedy,01330018, 355, 15.8, 683, 46.1, 53.9, 6.7, 20.8,35.6 +NA,NA,a-curv-i5,2020-21,Holland - Holland Elementary,01350005, 77, 15.7, 202, 43.6, 56.4, 0.0, 14.4,32.2 +NA,NA,a-curv-i5,2020-21,Holliston - Holliston High,01360505, 508, 15.3, 816, 49.6, 50.4, 0.9, 15.1,8.1 +NA,NA,a-curv-i5,2020-21,Holliston - Miller School,01360007, 158, 39.8, 664, 47.1, 52.9, 2.0, 18.1,9.6 +NA,NA,a-curv-i5,2020-21,Holliston - Placentino Elementary,01360010, 71, 43.7, 614, 44.0, 55.7, 5.1, 15.8,7 +NA,NA,a-curv-i5,2020-21,Holliston - Robert H. Adams Middle School,01360305, 473, 19.3, 682, 49.3, 50.7, 1.5, 18.6,11.7 +NA,NA,a-curv-i5,2020-21,Holyoke - E N White Elementary,01370045, 127, 21.0, 426, 47.0, 53.1, 8.5, 27.7,70.4 +NA,NA,a-curv-i5,2020-21,Holyoke - H.B. Lawrence School,01370070, 66, 14.6, 192, 47.9, 52.1, 13.0, 20.8,95.8 +NA,NA,a-curv-i5,2020-21,Holyoke - Holyoke High,01370505, 978, 16.4," 1,443", 47.5, 52.3, 20.3, 25.2,74.2 +NA,NA,a-curv-i5,2020-21,Holyoke - Holyoke STEM Academy,01370320, 113, 18.6, 265, 45.3, 54.7, 25.3, 30.6,80.4 +NA,NA,a-curv-i5,2020-21,Holyoke - Joseph Metcalf School,01370003, 111, 18.5, 293, 55.6, 44.4, 23.9, 20.5,62.1 +NA,NA,a-curv-i5,2020-21,Holyoke - Kelly Elementary,01370040, 120, 17.8, 342, 47.4, 52.6, 21.4, 20.5,92.7 +NA,NA,a-curv-i5,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 200, 15.1, 469, 45.2, 54.8, 17.5, 27.3,84.2 +NA,NA,a-curv-i5,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 134, 18.2, 358, 48.0, 52.0, 12.6, 33.8,71.2 +NA,NA,a-curv-i5,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 197, 15.2, 432, 45.6, 54.4, 18.1, 36.1,89.1 +NA,NA,a-curv-i5,2020-21,Holyoke - Morgan Full Service Community School,01370025, 58, 19.8, 287, 50.9, 49.1, 17.1, 26.1,93.4 +NA,NA,a-curv-i5,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 136, 21.5, 328, 43.0, 57.0, 28.7, 40.2,92.1 +NA,NA,a-curv-i5,2020-21,Holyoke - William R. Peck School,01370030, 70, 15.3, 261, 45.2, 54.8, 34.9, 37.9,92.7 +NA,NA,a-curv-i5,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 184, 22.8, 701, 52.2, 47.8, 12.6, 22.4,77.2 +NA,NA,a-curv-i5,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 123, 15.6, 326, 48.5, 51.5, 2.5, 29.1,56.1 +6.534782608695653,5,a-curv-i5,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 184, 9.2, 285, 49.8, 50.2, 0.4, 20.4,47.7,337 +NA,NA,a-curv-i5,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 258, 17.9, 369, 50.7, 49.3, 0.8, 27.1,57.2 +NA,NA,a-curv-i5,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 399, 10.9, 484, 47.1, 52.7, 2.5, 14.1,18.4 +NA,NA,a-curv-i5,2020-21,Hopedale - Memorial,01380010, 322, 15.5, 529, 48.8, 51.2, 6.1, 22.7,17.6 +NA,NA,a-curv-i5,2020-21,Hopedale - Park Street School,01380003, 12, 6.8, 81, 46.9, 53.1, 0.0, 22.2,18.5 +NA,NA,a-curv-i5,2020-21,Hopkinton - Elmwood,01390010, 161, 20.4, 591, 49.8, 50.3, 12.2, 11.3,6.8 +NA,NA,a-curv-i5,2020-21,Hopkinton - Hopkins Elementary School,01390015, 261, 24.1, 615, 50.1, 49.9, 2.4, 11.5,6.2 +NA,NA,a-curv-i5,2020-21,Hopkinton - Hopkinton High,01390505, 952, 17.1," 1,202", 51.3, 48.7, 1.3, 13.3,6.9 +NA,NA,a-curv-i5,2020-21,Hopkinton - Hopkinton Middle School,01390305, 678, 22.4, 928, 48.4, 51.6, 1.7, 12.9,7.1 +NA,NA,a-curv-i5,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 15, 7.3, 81, 35.8, 64.2, 27.2, 53.1,7.4 +NA,NA,a-curv-i5,2020-21,Hopkinton - Marathon Elementary School,01390005, 182, 17.7, 557, 47.0, 53.0, 26.0, 9.3,6.1 +NA,NA,a-curv-i5,2020-21,Hudson - C A Farley,01410030, 228, 15.5, 403, 49.9, 50.1, 21.3, 18.1,35 +NA,NA,a-curv-i5,2020-21,Hudson - David J. Quinn Middle School,01410410, 342, 17.7, 592, 50.5, 49.3, 11.7, 17.7,32.3 +NA,NA,a-curv-i5,2020-21,Hudson - Forest Avenue Elementary,01410015, 189, 15.2, 320, 49.4, 50.6, 16.3, 15.3,28.8 +NA,NA,a-curv-i5,2020-21,Hudson - Hudson High,01410505, 498, 14.4, 870, 52.9, 46.9, 7.6, 16.6,29.1 +NA,NA,a-curv-i5,2020-21,Hudson - Mulready Elementary,01410007, 157, 13.8, 247, 49.4, 50.6, 21.9, 27.1,28.7 +NA,NA,a-curv-i5,2020-21,Hull - Hull High,01420505, 253, 9.0, 261, 43.3, 56.7, 1.2, 19.5,32.6 +NA,NA,a-curv-i5,2020-21,Hull - Lillian M Jacobs,01420015, 131, 12.3, 366, 47.8, 52.2, 0.6, 19.1,33.6 +NA,NA,a-curv-i5,2020-21,Hull - Memorial Middle,01420305, 141, 9.8, 185, 47.6, 51.9, 1.6, 18.9,34.6 +NA,NA,a-curv-i5,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 658, 12.4, 787, 52.2, 47.3, 2.4, 21.5,18.7 +NA,NA,a-curv-i5,2020-21,Ipswich - Ipswich High,01440505, 390, 12.2, 533, 51.2, 48.4, 0.9, 12.2,14.1 +NA,NA,a-curv-i5,2020-21,Ipswich - Ipswich Middle School,01440305, 253, 15.5, 373, 51.2, 48.5, 1.9, 16.6,13.4 +NA,NA,a-curv-i5,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 181, 18.2, 342, 51.5, 48.5, 2.3, 22.5,11.7 +NA,NA,a-curv-i5,2020-21,Ipswich - Winthrop,01440015, 193, 17.8, 361, 50.1, 49.9, 3.6, 24.4,22.7 +NA,NA,a-curv-i5,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 127, 31.9, 620, 47.4, 52.6, 16.9, 15.7,72.4 +NA,NA,a-curv-i5,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 483, 24.3," 1,611", 50.3, 49.7, 12.2, 11.4,57.9 +NA,NA,a-curv-i5,2020-21,King Philip - King Philip Middle School,06900510, 364, 17.4, 746, 47.7, 52.1, 0.0, 20.2,13.9 +NA,NA,a-curv-i5,2020-21,King Philip - King Philip Regional High,06900505, 451, 18.5," 1,197", 49.6, 50.4, 0.3, 12.5,9.4 +NA,NA,a-curv-i5,2020-21,Kingston - Kingston Elementary,01450005, 143, 21.0, 425, 49.9, 50.1, 4.0, 17.7,20.2 +NA,NA,a-curv-i5,2020-21,Kingston - Kingston Intermediate,01450020, 259, 19.3, 603, 47.8, 52.2, 1.8, 18.9,21.7 +NA,NA,a-curv-i5,2020-21,Lawrence - Alexander B Bruce,01490015, 212, 19.6, 479, 50.9, 48.9, 42.8, 16.1,84.3 +NA,NA,a-curv-i5,2020-21,Lawrence - Arlington Middle School,01490017, 181, 21.7, 602, 47.5, 52.2, 34.4, 15.3,85.4 +NA,NA,a-curv-i5,2020-21,Lawrence - Community Day Arlington,01490009, 224, 21.5, 603, 49.1, 50.3, 56.1, 12.6,87.4 +NA,NA,a-curv-i5,2020-21,Lawrence - Edward F. Parthum,01490053, 417, 17.4, 662, 47.3, 52.3, 31.7, 19.8,75.5 +NA,NA,a-curv-i5,2020-21,Lawrence - Emily G Wetherbee,01490080, 329, 16.8, 561, 50.8, 49.0, 30.7, 20.7,76.5 +NA,NA,a-curv-i5,2020-21,Lawrence - Francis M Leahy,01490040, 227, 20.7, 442, 48.4, 51.4, 39.8, 13.8,86.9 +NA,NA,a-curv-i5,2020-21,Lawrence - Frost Middle School,01490525, 227, 26.3, 540, 49.1, 50.9, 16.7, 20.6,67.8 +NA,NA,a-curv-i5,2020-21,Lawrence - Gerard A. Guilmette,01490022, 285, 19.8, 477, 47.8, 52.0, 37.5, 20.1,80.7 +NA,NA,a-curv-i5,2020-21,Lawrence - Guilmette Middle School,01490025, 292, 16.6, 515, 44.9, 55.2, 34.0, 24.9,82.9 +6.838260869565218,5,a-curv-i5,2020-21,Lawrence - High School Learning Center,01490536, 115, 9.2, 149, 38.9, 60.4, 47.7, 18.1,82.6,167 +NA,NA,a-curv-i5,2020-21,Lawrence - James F Hennessey,01490020, 168, 11.4, 308, 47.4, 52.0, 42.9, 30.8,80.8 +NA,NA,a-curv-i5,2020-21,Lawrence - John Breen School,01490003, 183, 10.1, 318, 49.1, 50.9, 23.3, 40.9,78.6 +NA,NA,a-curv-i5,2020-21,Lawrence - John K Tarbox,01490075, 135, 19.4, 292, 43.2, 56.9, 38.7, 11.6,86 +NA,NA,a-curv-i5,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 180, 8.9, 160, 53.1, 46.9, 40.6, 10.0,85 +NA,NA,a-curv-i5,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 139, 8.7, 164, 45.7, 54.3, 37.2, 8.5,78.1 +6.575554292211484,5,a-curv-i5,2020-21,Lawrence - Lawrence High School,01490515," 1,759", 16.8," 3,065", 48.5, 51.3, 35.2, 15.0,75.8,3132 +NA,NA,a-curv-i5,2020-21,Lawrence - Oliver Partnership School,01490048, 168, 30.3, 479, 49.1, 50.9, 43.6, 14.8,85.6 +NA,NA,a-curv-i5,2020-21,Lawrence - Parthum Middle School,01490027, 276, 23.5, 597, 50.8, 48.9, 22.8, 17.9,74.9 +NA,NA,a-curv-i5,2020-21,Lawrence - RISE Academy,01490615, 27, 19.4, 92, 16.3, 83.7, 31.5, 32.6,84.8 +NA,NA,a-curv-i5,2020-21,Lawrence - Robert Frost,01490018, 258, 20.4, 549, 50.1, 49.5, 29.7, 19.1,73.6 +NA,NA,a-curv-i5,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 93, 9.0, 190, 39.0, 61.1, 46.3, 42.6,84.2 +NA,NA,a-curv-i5,2020-21,Lawrence - School for Exceptional Studies,01490537, 247, 4.3, 119, 16.0, 84.0, 21.0, 99.2,96.6 +NA,NA,a-curv-i5,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 346, 25.0, 730, 46.7, 53.2, 40.0, 18.6,81.2 +NA,NA,a-curv-i5,2020-21,Lawrence - Spark Academy,01490085, 128, 18.7, 480, 44.0, 56.0, 33.3, 22.7,81 +NA,NA,a-curv-i5,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 103, 25.5, 332, 48.5, 51.2, 35.2, 10.8,82.2 +NA,NA,a-curv-i5,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 86, 26.9, 332, 47.0, 52.4, 39.5, 18.1,80.7 +NA,NA,a-curv-i5,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 406, 19.1, 795, 55.9, 44.2, 23.5, 8.4,67.7 +NA,NA,a-curv-i5,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 234, 24.7, 666, 52.0, 48.1, 26.3, 14.0,71.2 +NA,NA,a-curv-i5,2020-21,Lee - Lee Elementary,01500025, 228, 13.8, 339, 45.7, 54.3, 6.2, 18.0,39.8 +7.418340611353711,5,a-curv-i5,2020-21,Lee - Lee Middle/High School,01500505, 458, 5.5, 334, 51.5, 48.2, 2.7, 14.1,37.1,333 +NA,NA,a-curv-i5,2020-21,Leicester - Leicester Elementary,01510005, 191, 18.0, 432, 47.7, 52.3, 7.6, 21.8,37.7 +NA,NA,a-curv-i5,2020-21,Leicester - Leicester High,01510505, 252, 13.6, 392, 48.2, 51.8, 3.6, 14.3,22.5 +NA,NA,a-curv-i5,2020-21,Leicester - Leicester Integrated Preschool,01510001, 12, 12.0, 36, 55.6, 44.4, 0.0, 47.2,44.4 +NA,NA,a-curv-i5,2020-21,Leicester - Leicester Middle,01510015, 279, 16.2, 432, 41.4, 58.6, 2.6, 16.7,33.1 +NA,NA,a-curv-i5,2020-21,Lenox - Lenox Memorial High,01520505, 363, 11.4, 436, 51.4, 48.6, 2.1, 7.8,20.4 +NA,NA,a-curv-i5,2020-21,Lenox - Morris,01520015, 206, 13.2, 308, 50.0, 50.0, 3.6, 12.7,19.5 +NA,NA,a-curv-i5,2020-21,Leominster - Bennett,01530003, 16, 3.9, 61, 42.6, 57.4, 0.0, 73.8,49.2 +NA,NA,a-curv-i5,2020-21,Leominster - Center For Technical Education Innovation,01530605, 109, 14.2, 754, 36.9, 63.1, 6.2, 26.5,46.6 +NA,NA,a-curv-i5,2020-21,Leominster - Fall Brook,01530007, 276, 21.3, 598, 45.2, 54.9, 17.6, 19.1,45.7 +NA,NA,a-curv-i5,2020-21,Leominster - Frances Drake School,01530010, 324, 15.4, 522, 47.9, 52.1, 27.8, 31.2,57.9 +NA,NA,a-curv-i5,2020-21,Leominster - Johnny Appleseed,01530025, 328, 19.4, 655, 51.5, 48.6, 16.3, 16.6,47.8 +NA,NA,a-curv-i5,2020-21,Leominster - Leominster Center for Excellence,01530515, 15, 14.0, 40, 45.0, 52.5, 0.0, 47.5,60 +6.265848670756646,5,a-curv-i5,2020-21,Leominster - Leominster High School,01530505, 489, 16.9," 1,783", 48.9, 50.9, 7.2, 19.5,43.5,1060 +NA,NA,a-curv-i5,2020-21,Leominster - Lincoln School,01530005, 8, 3.5, 28, 50.0, 50.0, 0.0, 75.0,57.1 +NA,NA,a-curv-i5,2020-21,Leominster - Northwest,01530030, 306, 23.2, 697, 50.4, 49.6, 20.1, 19.4,54 +NA,NA,a-curv-i5,2020-21,Leominster - Priest Street,01530040, 34, 17.8, 87, 50.6, 49.4, 28.7, 26.4,55.2 +NA,NA,a-curv-i5,2020-21,Leominster - Samoset School,01530045, 213, 19.2, 530, 50.6, 48.7, 7.9, 25.1,44.9 +NA,NA,a-curv-i5,2020-21,Leominster - Sky View Middle School,01530320, 245, 29.5, 929, 51.2, 48.7, 10.1, 23.3,50.5 +NA,NA,a-curv-i5,2020-21,Leverett - Leverett Elementary,01540005, 57, 16.9, 118, 45.8, 54.2, 0.0, 13.6,18.6 +NA,NA,a-curv-i5,2020-21,Lexington - Bowman,01550008, 133, 19.1, 456, 50.4, 49.6, 16.9, 10.1,4.4 +NA,NA,a-curv-i5,2020-21,Lexington - Bridge,01550006, 122, 16.4, 406, 51.5, 48.5, 9.4, 12.3,9.4 +NA,NA,a-curv-i5,2020-21,Lexington - Fiske,01550015, 108, 17.3, 383, 42.6, 57.4, 15.9, 21.7,7.6 +NA,NA,a-curv-i5,2020-21,Lexington - Harrington,01550030, 132, 18.4, 441, 51.5, 48.5, 14.1, 12.2,6.6 +NA,NA,a-curv-i5,2020-21,Lexington - Jonas Clarke Middle,01550305, 751, 16.0, 885, 47.2, 52.7, 4.2, 13.5,6.1 +NA,NA,a-curv-i5,2020-21,Lexington - Joseph Estabrook,01550010, 156, 19.0, 536, 46.8, 53.2, 14.9, 11.9,5.8 +NA,NA,a-curv-i5,2020-21,Lexington - Lexington Children's Place,01550001, 8, 7.8, 62, 38.7, 61.3, 30.7, 58.1,22.6 +NA,NA,a-curv-i5,2020-21,Lexington - Lexington High,01550505," 1,112", 18.5," 2,264", 50.7, 49.2, 2.8, 13.2,7 +NA,NA,a-curv-i5,2020-21,Lexington - Maria Hastings,01550035, 145, 19.2, 577, 47.0, 53.0, 13.9, 15.6,6.8 +NA,NA,a-curv-i5,2020-21,Lexington - Wm Diamond Middle,01550310, 776, 16.3, 935, 49.7, 50.3, 5.4, 12.9,5.7 +NA,NA,a-curv-i5,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 80, 18.7, 262, 50.8, 49.2, 33.6, 24.4,83.2 +NA,NA,a-curv-i5,2020-21,Lincoln - Hanscom Middle,01570305, 92, 15.9, 214, 49.5, 50.5, 2.3, 20.1,1.9 +NA,NA,a-curv-i5,2020-21,Lincoln - Hanscom Primary,01570006, 45, 28.0, 291, 48.8, 51.2, 4.5, 18.9,1.7 +NA,NA,a-curv-i5,2020-21,Lincoln - Lincoln School,01570025, 138, 23.3, 546, 51.3, 48.7, 4.2, 16.9,16.9 +NA,NA,a-curv-i5,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,138", 17.8," 1,522", 50.3, 49.6, 0.8, 18.8,7.3 +6.453333333333333,5,a-curv-i5,2020-21,Littleton - Littleton High School,01580505, 225, 13.9, 436, 54.1, 45.6, 0.5, 11.5,8.9,435 +NA,NA,a-curv-i5,2020-21,Littleton - Littleton Middle School,01580305, 196, 19.9, 392, 48.0, 52.0, 0.5, 14.5,10.7 +NA,NA,a-curv-i5,2020-21,Littleton - Russell St Elementary,01580015, 197, 20.6, 375, 53.1, 46.9, 1.1, 16.0,9.1 +NA,NA,a-curv-i5,2020-21,Littleton - Shaker Lane Elementary,01580005, 189, 16.3, 375, 45.3, 54.7, 5.6, 18.7,6.7 +NA,NA,a-curv-i5,2020-21,Longmeadow - Blueberry Hill,01590005, 296, 12.0, 397, 47.6, 52.4, 2.0, 16.6,7.3 +NA,NA,a-curv-i5,2020-21,Longmeadow - Center,01590010, 256, 14.0, 399, 47.9, 52.1, 0.0, 17.5,10 +NA,NA,a-curv-i5,2020-21,Longmeadow - Glenbrook Middle,01590017, 165, 21.1, 336, 46.1, 53.9, 0.9, 18.2,14 +NA,NA,a-curv-i5,2020-21,Longmeadow - Longmeadow High,01590505, 387, 17.9, 893, 49.7, 50.3, 0.3, 17.5,8.9 +NA,NA,a-curv-i5,2020-21,Longmeadow - Williams Middle,01590305, 195, 18.8, 337, 49.9, 50.2, 0.0, 19.9,8.6 +NA,NA,a-curv-i5,2020-21,Longmeadow - Wolf Swamp Road,01590025, 267, 11.5, 403, 46.7, 53.4, 0.5, 25.3,16.9 +NA,NA,a-curv-i5,2020-21,Lowell - Abraham Lincoln,01600020, 310, 17.5, 480, 47.7, 52.3, 36.0, 21.0,73.8 +NA,NA,a-curv-i5,2020-21,Lowell - B.F. Butler Middle School,01600310, 216, 22.6, 562, 50.0, 50.0, 16.2, 21.5,63.7 +NA,NA,a-curv-i5,2020-21,Lowell - Bartlett Community Partnership,01600090, 306, 17.2, 488, 50.2, 49.8, 26.8, 23.6,67.2 +NA,NA,a-curv-i5,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 143, 8.2, 90, 32.2, 67.8, 21.1, 45.6,65.6 +NA,NA,a-curv-i5,2020-21,Lowell - Charles W Morey,01600030, 321, 17.0, 480, 49.0, 51.0, 37.5, 16.3,51.9 +NA,NA,a-curv-i5,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 299, 18.4, 485, 48.0, 52.0, 39.6, 16.7,77.9 +NA,NA,a-curv-i5,2020-21,Lowell - Dr An Wang School,01600345, 346, 21.5, 680, 46.0, 54.0, 23.2, 16.6,59.9 +NA,NA,a-curv-i5,2020-21,Lowell - Dr Gertrude Bailey,01600002, 319, 16.8, 473, 47.8, 52.2, 31.9, 18.6,56.2 +NA,NA,a-curv-i5,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 136, 2.8, 46, 26.1, 73.9, 6.5, 100.0,67.4 +NA,NA,a-curv-i5,2020-21,Lowell - Greenhalge,01600015, 313, 17.4, 476, 48.1, 51.9, 31.1, 18.7,80.3 +NA,NA,a-curv-i5,2020-21,Lowell - Henry J Robinson Middle,01600330, 232, 25.0, 663, 50.1, 49.9, 24.9, 20.8,76.9 +NA,NA,a-curv-i5,2020-21,Lowell - James S Daley Middle School,01600315, 312, 18.8, 702, 44.2, 55.8, 8.7, 20.9,51.3 +NA,NA,a-curv-i5,2020-21,Lowell - James Sullivan Middle School,01600340, 298, 21.8, 667, 49.2, 50.8, 23.5, 20.7,66.3 +NA,NA,a-curv-i5,2020-21,Lowell - John J Shaughnessy,01600050, 336, 15.6, 465, 47.5, 52.5, 32.0, 18.7,68.4 +NA,NA,a-curv-i5,2020-21,Lowell - Joseph McAvinnue,01600010, 374, 13.9, 459, 47.9, 52.1, 33.1, 19.8,76.5 +NA,NA,a-curv-i5,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 335, 20.7, 665, 46.6, 53.4, 24.8, 17.0,72.8 +NA,NA,a-curv-i5,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 61, 2.8, 23, 13.0, 87.0, 13.0, 100.0,73.9 +NA,NA,a-curv-i5,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 86, 4.0, 38, 42.1, 57.9, 13.2, 100.0,92.1 +NA,NA,a-curv-i5,2020-21,Lowell - Lowell High,01600505," 2,041", 19.7," 3,059", 48.6, 51.5, 20.0, 13.5,59.6 +NA,NA,a-curv-i5,2020-21,Lowell - Moody Elementary,01600027, 112, 23.9, 234, 51.7, 48.3, 51.7, 10.3,77.8 +NA,NA,a-curv-i5,2020-21,Lowell - Pawtucketville Memorial,01600036, 294, 18.0, 465, 51.0, 49.0, 20.0, 17.4,53.1 +NA,NA,a-curv-i5,2020-21,Lowell - Peter W Reilly,01600040, 287, 18.3, 464, 51.3, 48.7, 22.8, 20.0,53.2 +NA,NA,a-curv-i5,2020-21,Lowell - Pyne Arts,01600018, 346, 15.1, 466, 46.4, 53.7, 17.2, 24.7,48.1 +NA,NA,a-curv-i5,2020-21,Lowell - Rogers STEM Academy,01600005, 394, 26.9, 886, 48.7, 51.4, 29.1, 15.0,74.9 +NA,NA,a-curv-i5,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 286, 19.3, 486, 53.1, 46.9, 22.2, 18.1,72.8 +NA,NA,a-curv-i5,2020-21,Lowell - The Career Academy,01600515, 79, 8.7, 82, 30.5, 69.5, 20.7, 23.2,85.4 +NA,NA,a-curv-i5,2020-21,Lowell - Washington,01600055, 287, 9.8, 246, 38.6, 61.4, 37.8, 25.6,65.5 +NA,NA,a-curv-i5,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 234, 20.6, 796, 50.6, 49.3, 54.4, 16.5,58.2 +NA,NA,a-curv-i5,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 101, 11.3, 81, 66.7, 33.3, 3.7, 37.0,74.1 +NA,NA,a-curv-i5,2020-21,Ludlow - Chapin Street Elementary School,01610020, 251, 11.3, 305, 50.8, 49.2, 8.5, 15.7,36.4 +NA,NA,a-curv-i5,2020-21,Ludlow - East Street Elementary School,01610010, 177, 11.8, 341, 41.1, 58.9, 8.8, 20.8,34.6 +NA,NA,a-curv-i5,2020-21,Ludlow - Ludlow Senior High,01610505, 361, 13.8, 835, 50.9, 48.9, 1.7, 12.2,25.8 +NA,NA,a-curv-i5,2020-21,Ludlow - Paul R Baird Middle,01610305, 531, 8.6, 588, 50.2, 49.8, 2.9, 17.5,35.5 +NA,NA,a-curv-i5,2020-21,Ludlow - Veterans Park Elementary,01610023, 276, 12.7, 333, 47.8, 52.3, 5.4, 18.3,36 +NA,NA,a-curv-i5,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 1, 4.0, 4, 50.0, 50.0, 0.0, 100.0,50 +NA,NA,a-curv-i5,2020-21,Lunenburg - Lunenburg High,01620505, 230, 13.4, 458, 46.1, 53.3, 0.4, 10.9,17.3 +NA,NA,a-curv-i5,2020-21,Lunenburg - Lunenburg Middle School,01620305, 222, 22.4, 395, 50.1, 49.6, 0.5, 12.2,21.5 +NA,NA,a-curv-i5,2020-21,Lunenburg - Lunenburg Primary School,01620010, 178, 19.7, 382, 46.1, 53.9, 2.6, 22.0,26.2 +NA,NA,a-curv-i5,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 208, 16.1, 345, 49.9, 50.1, 1.5, 17.7,21.2 +NA,NA,a-curv-i5,2020-21,Lynn - A Drewicz Elementary,01630016, 122, 13.5, 361, 51.8, 48.2, 54.3, 13.0,70.1 +NA,NA,a-curv-i5,2020-21,Lynn - Aborn,01630011, 38, 10.4, 173, 45.7, 54.3, 21.4, 10.4,49.1 +NA,NA,a-curv-i5,2020-21,Lynn - Breed Middle School,01630405, 471, 18.5," 1,125", 46.6, 53.2, 15.6, 20.5,68 +NA,NA,a-curv-i5,2020-21,Lynn - Brickett Elementary,01630020, 54, 11.3, 245, 43.7, 56.3, 48.2, 16.3,74.7 +NA,NA,a-curv-i5,2020-21,Lynn - Capt William G Shoemaker,01630090, 104, 9.0, 228, 36.8, 63.2, 14.0, 54.0,43.4 +NA,NA,a-curv-i5,2020-21,Lynn - Classical High,01630505, 607, 16.6," 1,374", 48.2, 51.8, 20.8, 14.3,61 +NA,NA,a-curv-i5,2020-21,Lynn - Cobbet Elementary,01630035, 169, 13.1, 479, 43.0, 57.0, 61.0, 15.7,77.9 +NA,NA,a-curv-i5,2020-21,Lynn - E J Harrington,01630045, 186, 11.5, 480, 47.7, 52.3, 46.7, 23.3,79.6 +NA,NA,a-curv-i5,2020-21,Lynn - Edward A Sisson,01630095, 98, 11.0, 325, 49.2, 50.8, 29.2, 17.5,53.2 +7.359999999999999,5,a-curv-i5,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 125, 11.8, 301, 34.9, 64.8, 53.2, 21.9,82.7,100 +NA,NA,a-curv-i5,2020-21,Lynn - Hood,01630055, 116, 11.8, 399, 47.4, 52.6, 43.9, 21.6,64.9 +NA,NA,a-curv-i5,2020-21,Lynn - Ingalls,01630060, 193, 12.2, 508, 47.1, 53.0, 62.8, 14.0,73.6 +NA,NA,a-curv-i5,2020-21,Lynn - Julia F Callahan,01630030, 129, 9.3, 280, 47.1, 52.9, 32.1, 31.1,63.2 +NA,NA,a-curv-i5,2020-21,Lynn - Lincoln-Thomson,01630070, 39, 9.6, 158, 43.7, 56.3, 34.8, 21.5,60.8 +NA,NA,a-curv-i5,2020-21,Lynn - Lynn English High,01630510, 685, 18.3," 1,668", 47.8, 51.7, 25.8, 11.3,61.2 +NA,NA,a-curv-i5,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 813, 16.9," 1,306", 46.5, 53.4, 11.3, 19.8,61.2 +NA,NA,a-curv-i5,2020-21,Lynn - Lynn Woods,01630075, 21, 11.4, 114, 50.9, 49.1, 11.4, 24.6,41.2 +NA,NA,a-curv-i5,2020-21,Lynn - Pickering Middle,01630420, 170, 20.4, 503, 48.9, 51.1, 11.3, 21.5,46.7 +NA,NA,a-curv-i5,2020-21,Lynn - Robert L Ford,01630050, 111, 15.8, 387, 49.6, 50.4, 51.2, 11.4,70.3 +NA,NA,a-curv-i5,2020-21,Lynn - Sewell-Anderson,01630085, 71, 9.8, 200, 50.0, 50.0, 46.0, 9.5,54.5 +NA,NA,a-curv-i5,2020-21,Lynn - Thurgood Marshall Mid,01630305, 399, 17.6," 1,065", 48.4, 51.5, 19.4, 19.3,68.4 +NA,NA,a-curv-i5,2020-21,Lynn - Tracy,01630100, 109, 13.7, 327, 45.9, 54.1, 53.5, 10.1,77.4 +NA,NA,a-curv-i5,2020-21,Lynn - Washington Elementary School,01630005, 93, 9.6, 349, 49.6, 50.4, 57.9, 23.5,78.8 +NA,NA,a-curv-i5,2020-21,Lynn - William R Fallon,01630080, 9, 2.9, 26, 15.4, 84.6, 19.2, 100.0,84.6 +NA,NA,a-curv-i5,2020-21,Lynn - Wm P Connery,01630040, 161, 12.9, 453, 51.7, 48.3, 55.2, 14.1,77.3 +NA,NA,a-curv-i5,2020-21,Lynnfield - Huckleberry Hill,01640010, 119, 18.8, 452, 54.7, 45.4, 6.2, 19.0,12.8 +NA,NA,a-curv-i5,2020-21,Lynnfield - Lynnfield High,01640505, 277, 14.9, 603, 52.4, 47.4, 1.0, 18.4,10.6 +NA,NA,a-curv-i5,2020-21,Lynnfield - Lynnfield Middle School,01640405, 336, 20.0, 697, 47.2, 52.8, 1.3, 16.9,8.9 +NA,NA,a-curv-i5,2020-21,Lynnfield - Lynnfield Preschool,01640005, 4, 9.3, 33, 48.5, 51.5, 6.1, 51.5,21.2 +NA,NA,a-curv-i5,2020-21,Lynnfield - Summer Street,01640020, 113, 17.4, 394, 46.7, 53.3, 2.0, 15.7,4.6 +NA,NA,a-curv-i5,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 357, 19.9," 1,220", 51.6, 48.4, 18.3, 23.0,69.8 +NA,NA,a-curv-i5,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 32, 11.0, 44, 52.3, 47.7, 0.0, 0.0,2.3 +NA,NA,a-curv-i5,2020-21,Malden - Beebe,01650003, 406, 20.5, 897, 49.3, 50.7, 21.0, 13.8,52.3 +NA,NA,a-curv-i5,2020-21,Malden - Ferryway,01650013, 348, 22.8, 913, 49.0, 50.9, 20.9, 13.0,58.1 +NA,NA,a-curv-i5,2020-21,Malden - Forestdale,01650027, 346, 17.3, 560, 47.5, 52.5, 8.2, 25.7,47.5 +NA,NA,a-curv-i5,2020-21,Malden - Linden,01650047, 411, 19.3, 859, 46.8, 53.1, 14.1, 16.2,45.1 +NA,NA,a-curv-i5,2020-21,Malden - Malden Early Learning Center,01650049, 23, 13.6, 266, 38.4, 61.7, 8.3, 60.5,42.9 +NA,NA,a-curv-i5,2020-21,Malden - Malden High,01650505, 708, 16.3," 1,732", 48.7, 51.2, 13.3, 15.7,53.2 +NA,NA,a-curv-i5,2020-21,Malden - Salemwood,01650057, 536, 17.7," 1,012", 49.9, 50.1, 41.4, 9.8,68.1 +NA,NA,a-curv-i5,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 79, 14.7, 189, 56.1, 43.9, 2.7, 21.2,17.5 +6.7594594594594595,5,a-curv-i5,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 296, 12.4, 468, 47.4, 52.4, 0.0, 12.2,12.8,459 +NA,NA,a-curv-i5,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 187, 17.9, 336, 47.9, 52.1, 0.0, 17.6,10.1 +NA,NA,a-curv-i5,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 109, 15.8, 278, 48.2, 51.8, 1.1, 24.1,8.3 +NA,NA,a-curv-i5,2020-21,Mansfield - Everett W Robinson,01670007, 141, 18.9, 665, 49.2, 50.7, 4.1, 12.3,19.7 +NA,NA,a-curv-i5,2020-21,Mansfield - Harold L Qualters Middle,01670035, 514, 12.9, 819, 46.8, 53.2, 1.3, 13.2,18.2 +NA,NA,a-curv-i5,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 164, 21.7, 757, 46.1, 53.9, 3.8, 14.0,18.8 +NA,NA,a-curv-i5,2020-21,Mansfield - Mansfield High,01670505, 699, 14.1," 1,188", 50.1, 49.8, 0.5, 14.1,14.6 +NA,NA,a-curv-i5,2020-21,Mansfield - Roland Green School,01670003, 7, 14.0, 98, 42.9, 57.1, 0.0, 45.9,25.5 +NA,NA,a-curv-i5,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 130, 15.1, 203, 38.9, 58.6, 0.0, 49.8,55.7 +NA,NA,a-curv-i5,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 36, 17.3, 69, 47.8, 52.2, 10.1, 10.1,7.3 +NA,NA,a-curv-i5,2020-21,Marblehead - Glover,01680020, 148, 18.6, 353, 43.3, 56.7, 6.8, 28.6,11.6 +NA,NA,a-curv-i5,2020-21,Marblehead - L H Coffin,01680010, 100, 16.6, 187, 49.2, 50.8, 9.6, 23.0,14.4 +NA,NA,a-curv-i5,2020-21,Marblehead - Marblehead High,01680505, 752, 11.0, 944, 51.1, 48.5, 2.8, 19.7,11.8 +NA,NA,a-curv-i5,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 283, 17.9, 457, 47.7, 52.1, 2.8, 18.8,12.5 +NA,NA,a-curv-i5,2020-21,Marblehead - Village School,01680016, 284, 26.4, 714, 46.6, 53.2, 4.5, 25.1,12.6 +NA,NA,a-curv-i5,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 89, 18.2, 211, 44.6, 55.5, 8.1, 26.5,17.5 +NA,NA,a-curv-i5,2020-21,Marion - Sippican,01690005, 313, 9.4, 403, 47.4, 52.6, 0.3, 19.9,25.3 +NA,NA,a-curv-i5,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 795, 17.0," 1,184", 48.4, 51.6, 17.2, 16.3,51.1 +NA,NA,a-curv-i5,2020-21,Marlborough - Charles Jaworek School,01700030, 487, 10.2, 708, 50.3, 49.7, 38.8, 14.0,52.5 +NA,NA,a-curv-i5,2020-21,Marlborough - Early Childhood Center,01700006, 16, 12.3, 194, 40.2, 59.8, 29.9, 46.4,51 +NA,NA,a-curv-i5,2020-21,Marlborough - Francis J Kane,01700008, 376, 10.0, 505, 49.7, 50.3, 22.2, 14.9,44.2 +NA,NA,a-curv-i5,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 473, 10.9, 758, 44.5, 55.5, 32.6, 14.3,47 +NA,NA,a-curv-i5,2020-21,Marlborough - Marlborough High,01700505, 515, 11.9," 1,042", 46.3, 53.7, 19.3, 16.0,46.4 +NA,NA,a-curv-i5,2020-21,Marlborough - Richer,01700025, 419, 9.2, 533, 46.5, 53.5, 31.3, 17.1,51.4 +NA,NA,a-curv-i5,2020-21,Marshfield - Daniel Webster,01710015, 126, 8.9, 338, 47.9, 52.1, 3.9, 25.2,24 +NA,NA,a-curv-i5,2020-21,Marshfield - Eames Way School,01710005, 102, 8.6, 294, 45.2, 54.8, 0.0, 14.0,14.6 +NA,NA,a-curv-i5,2020-21,Marshfield - Furnace Brook Middle,01710310, 879, 10.9, 925, 50.4, 49.6, 1.2, 19.9,15.2 +NA,NA,a-curv-i5,2020-21,Marshfield - Gov Edward Winslow,01710020, 168, 8.5, 358, 45.8, 54.2, 0.0, 19.6,11.2 +NA,NA,a-curv-i5,2020-21,Marshfield - Marshfield High,01710505, 572, 16.4," 1,221", 48.7, 51.4, 0.7, 13.6,14.3 +NA,NA,a-curv-i5,2020-21,Marshfield - Martinson Elementary,01710025, 165, 9.0, 405, 47.4, 52.6, 4.2, 22.5,21.2 +NA,NA,a-curv-i5,2020-21,Marshfield - South River,01710010, 136, 8.1, 276, 45.3, 54.7, 0.0, 26.8,11.2 +NA,NA,a-curv-i5,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 423, 12.8, 677, 47.0, 53.0, 11.2, 20.5,34.3 +NA,NA,a-curv-i5,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 86, 11.6, 166, 54.2, 45.8, 5.4, 27.1,41.6 +NA,NA,a-curv-i5,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 108, 20.0, 360, 48.6, 51.4, 27.2, 14.7,77.5 +6.542105263157895,5,a-curv-i5,2020-21,Masconomet - Masconomet Regional High School,07050505, 608, 14.7," 1,112", 54.9, 45.1, 0.1, 16.5,8.6,1108 +NA,NA,a-curv-i5,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 332, 18.0, 580, 49.8, 50.2, 0.2, 18.5,7.9 +NA,NA,a-curv-i5,2020-21,Mashpee - Kenneth Coombs School,01720005, 200, 11.4, 358, 47.8, 52.2, 14.3, 15.1,40.8 +NA,NA,a-curv-i5,2020-21,Mashpee - Mashpee High,01720505, 290, 12.9, 445, 48.1, 51.7, 0.7, 14.2,30.1 +NA,NA,a-curv-i5,2020-21,Mashpee - Mashpee Middle School,01720020, 164, 16.6, 261, 51.3, 48.7, 1.2, 13.8,37.9 +NA,NA,a-curv-i5,2020-21,Mashpee - Quashnet School,01720035, 305, 17.9, 461, 48.8, 51.2, 3.0, 17.4,37.3 +NA,NA,a-curv-i5,2020-21,Mattapoisett - Center,01730005, 221, 12.0, 240, 45.8, 54.2, 0.4, 16.7,20.8 +NA,NA,a-curv-i5,2020-21,Mattapoisett - Old Hammondtown,01730010, 181, 8.7, 172, 52.3, 47.7, 0.6, 17.4,16.3 +NA,NA,a-curv-i5,2020-21,Maynard - Fowler School,01740305, 329, 17.4, 459, 47.9, 51.9, 2.6, 20.0,21.8 +NA,NA,a-curv-i5,2020-21,Maynard - Green Meadow,01740010, 273, 15.8, 423, 46.8, 53.2, 7.8, 18.0,22.5 +6.766502463054186,5,a-curv-i5,2020-21,Maynard - Maynard High,01740505, 203, 12.4, 307, 52.4, 46.9, 2.9, 16.0,17.6,313 +NA,NA,a-curv-i5,2020-21,Medfield - Dale Street,01750005, 250, 18.6, 400, 47.5, 52.5, 1.3, 13.3,7 +NA,NA,a-curv-i5,2020-21,Medfield - Medfield Senior High,01750505, 388, 16.7, 764, 49.7, 50.3, 0.3, 10.6,5.8 +NA,NA,a-curv-i5,2020-21,Medfield - Memorial School,01750003, 179, 18.2, 404, 49.8, 50.3, 2.2, 12.6,7.2 +NA,NA,a-curv-i5,2020-21,Medfield - Ralph Wheelock School,01750007, 186, 19.7, 383, 52.7, 47.3, 1.8, 12.5,7.6 +NA,NA,a-curv-i5,2020-21,Medfield - Thomas Blake Middle,01750305, 472, 16.6, 556, 46.2, 53.8, 0.7, 15.3,4.7 +NA,NA,a-curv-i5,2020-21,Medford - Brooks School,01760130, 114, 18.1, 495, 50.5, 49.5, 3.6, 26.3,16.6 +NA,NA,a-curv-i5,2020-21,Medford - Christopher Columbus,01760140, 127, 14.2, 390, 45.9, 54.1, 26.2, 25.6,42.6 +NA,NA,a-curv-i5,2020-21,Medford - Curtis-Tufts,01760510, 18, 6.2, 22, 45.5, 54.6, 0.0, 90.9,81.8 +NA,NA,a-curv-i5,2020-21,Medford - John J McGlynn Elementary School,01760068, 110, 17.1, 428, 52.6, 47.4, 20.1, 13.6,47.2 +NA,NA,a-curv-i5,2020-21,Medford - John J. McGlynn Middle School,01760320, 637, 8.1, 458, 48.7, 51.3, 15.5, 21.0,46.3 +NA,NA,a-curv-i5,2020-21,Medford - Madeleine Dugger Andrews,01760315, 348, 16.3, 451, 48.3, 51.7, 0.0, 18.6,30.6 +NA,NA,a-curv-i5,2020-21,Medford - Medford High,01760505, 653, 13.4," 1,240", 46.2, 53.7, 8.7, 17.7,34.1 +NA,NA,a-curv-i5,2020-21,Medford - Milton Fuller Roberts,01760150, 135, 16.7, 486, 45.5, 54.5, 8.2, 20.4,29.6 +NA,NA,a-curv-i5,2020-21,Medway - Burke/Memorial Elementary School,01770015, 289, 14.8, 442, 48.9, 51.1, 2.9, 16.1,13.4 +NA,NA,a-curv-i5,2020-21,Medway - John D Mc Govern Elementary,01770013, 181, 14.2, 334, 45.8, 54.2, 4.8, 15.0,14.1 +NA,NA,a-curv-i5,2020-21,Medway - Medway High,01770505, 323, 16.7, 634, 52.1, 47.6, 0.6, 13.3,10.7 +NA,NA,a-curv-i5,2020-21,Medway - Medway Middle,01770305, 422, 16.9, 684, 50.7, 49.1, 0.9, 19.0,12.7 +NA,NA,a-curv-i5,2020-21,Melrose - Early Childhood Center,01780003, 69, 8.7, 185, 43.8, 56.2, 0.0, 34.1,12.4 +NA,NA,a-curv-i5,2020-21,Melrose - Herbert Clark Hoover,01780017, 144, 17.2, 275, 49.8, 50.2, 11.6, 13.5,15.3 +NA,NA,a-curv-i5,2020-21,Melrose - Horace Mann,01780025, 111, 19.0, 246, 56.5, 43.5, 0.0, 16.7,2 +NA,NA,a-curv-i5,2020-21,Melrose - Lincoln,01780020, 176, 19.4, 386, 51.6, 48.5, 22.5, 16.6,26.4 +NA,NA,a-curv-i5,2020-21,Melrose - Melrose High,01780505, 418, 14.3, 929, 52.2, 47.8, 1.6, 15.4,12.7 +NA,NA,a-curv-i5,2020-21,Melrose - Melrose Middle,01780305, 372, 22.1, 826, 49.5, 50.5, 4.6, 17.1,15.9 +NA,NA,a-curv-i5,2020-21,Melrose - Roosevelt,01780035, 180, 22.6, 452, 49.3, 50.7, 6.4, 15.5,12 +NA,NA,a-curv-i5,2020-21,Melrose - Winthrop,01780050, 171, 22.0, 418, 47.9, 51.9, 1.2, 12.7,5.7 +NA,NA,a-curv-i5,2020-21,Mendon-Upton - Henry P Clough,07100179, 170, 14.9, 336, 50.3, 49.7, 5.7, 16.1,9.5 +NA,NA,a-curv-i5,2020-21,Mendon-Upton - Memorial School,07100001, 213, 17.3, 472, 51.5, 48.5, 3.8, 13.6,14.2 +NA,NA,a-curv-i5,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 401, 15.6, 730, 46.2, 53.7, 1.5, 21.6,13.2 +NA,NA,a-curv-i5,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 379, 13.7, 632, 52.4, 47.6, 0.6, 12.7,9.3 +NA,NA,a-curv-i5,2020-21,Methuen - Comprehensive Grammar School,01810050, 465, 16.4, 991, 49.1, 50.9, 16.7, 21.4,40.8 +NA,NA,a-curv-i5,2020-21,Methuen - Donald P Timony Grammar,01810060, 495, 18.8," 1,212", 44.7, 55.3, 14.9, 21.3,47.9 +NA,NA,a-curv-i5,2020-21,Methuen - Marsh Grammar School,01810030, 490, 19.1," 1,135", 46.3, 53.7, 8.5, 24.6,36.6 +NA,NA,a-curv-i5,2020-21,Methuen - Methuen High,01810505," 1,016", 18.4," 1,938", 48.5, 51.5, 7.8, 11.4,39.5 +NA,NA,a-curv-i5,2020-21,Methuen - Tenney Grammar School,01810055, 535, 18.8," 1,296", 47.2, 52.9, 13.8, 19.8,55.2 +NA,NA,a-curv-i5,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 270, 17.3, 522, 48.3, 51.7, 2.7, 17.8,47.1 +NA,NA,a-curv-i5,2020-21,Middleborough - John T. Nichols Middle,01820305, 413, 22.0, 754, 48.3, 51.6, 1.2, 21.0,35.4 +NA,NA,a-curv-i5,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 303, 16.5, 556, 49.5, 50.5, 1.4, 16.6,29.1 +NA,NA,a-curv-i5,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 121, 17.0, 256, 49.6, 50.4, 1.6, 24.6,39.1 +NA,NA,a-curv-i5,2020-21,Middleborough - Middleborough High,01820505, 581, 10.8, 834, 48.8, 51.2, 1.1, 13.4,26.1 +NA,NA,a-curv-i5,2020-21,Middleton - Fuller Meadow,01840003, 149, 12.3, 284, 50.0, 50.0, 1.1, 16.9,8.8 +NA,NA,a-curv-i5,2020-21,Middleton - Howe-Manning,01840005, 213, 15.0, 398, 52.3, 47.7, 2.3, 20.6,10.6 +NA,NA,a-curv-i5,2020-21,Milford - Brookside,01850065, 177, 16.4, 456, 48.0, 52.0, 35.5, 17.8,52.4 +NA,NA,a-curv-i5,2020-21,Milford - Memorial,01850010, 173, 16.3, 443, 49.0, 51.0, 44.0, 14.5,54.6 +NA,NA,a-curv-i5,2020-21,Milford - Milford High,01850505," 1,183", 7.9," 1,269", 46.3, 53.6, 13.9, 14.3,41.8 +NA,NA,a-curv-i5,2020-21,Milford - Shining Star Early Childhood Center,01850075, 28, 7.5, 108, 33.3, 66.7, 32.4, 67.6,44.4 +NA,NA,a-curv-i5,2020-21,Milford - Stacy Middle,01850305, 904, 10.4," 1,063", 47.5, 52.5, 15.1, 15.0,45.9 +NA,NA,a-curv-i5,2020-21,Milford - Woodland,01850090, 430, 18.8, 990, 48.2, 51.8, 26.5, 18.3,49.2 +NA,NA,a-curv-i5,2020-21,Millbury - Elmwood Street,01860017, 199, 18.8, 519, 45.3, 54.7, 6.6, 16.2,29.5 +NA,NA,a-curv-i5,2020-21,Millbury - Millbury Junior/Senior High,01860505, 419, 14.8, 671, 49.5, 49.9, 2.2, 19.4,28.9 +NA,NA,a-curv-i5,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 164, 18.9, 343, 45.8, 54.2, 2.3, 24.2,31.8 +NA,NA,a-curv-i5,2020-21,Millis - Clyde F Brown,01870005, 232, 18.0, 561, 49.4, 50.6, 3.2, 15.5,15.5 +6.428402366863905,5,a-curv-i5,2020-21,Millis - Millis High School,01870505, 169, 13.4, 335, 46.9, 52.8, 0.6, 13.1,14.9,332 +NA,NA,a-curv-i5,2020-21,Millis - Millis Middle,01870020, 185, 16.3, 276, 51.1, 48.6, 1.8, 12.7,13.8 +NA,NA,a-curv-i5,2020-21,Milton - Charles S Pierce Middle,01890410, 647, 16.3, 955, 50.2, 49.8, 1.1, 16.9,12.6 +NA,NA,a-curv-i5,2020-21,Milton - Collicot,01890005, 283, 18.6, 605, 48.9, 51.1, 2.2, 16.2,5.8 +NA,NA,a-curv-i5,2020-21,Milton - Cunningham School,01890007, 296, 17.3, 626, 51.8, 48.2, 3.2, 20.6,9.7 +NA,NA,a-curv-i5,2020-21,Milton - Glover,01890010, 288, 19.3, 596, 52.4, 47.7, 2.7, 15.8,9.7 +NA,NA,a-curv-i5,2020-21,Milton - Milton High,01890505, 506, 16.9," 1,125", 49.7, 50.2, 1.4, 17.9,14.9 +NA,NA,a-curv-i5,2020-21,Milton - Tucker,01890020, 224, 17.3, 436, 51.6, 48.4, 3.9, 14.5,21.3 +NA,NA,a-curv-i5,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 499, 12.8, 627, 38.4, 60.8, 0.8, 33.7,19.1 +NA,NA,a-curv-i5,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 63, 15.4, 240, 48.3, 51.7, 1.3, 20.8,39.2 +NA,NA,a-curv-i5,2020-21,Mohawk Trail - Colrain Central,07170010, 32, 10.7, 88, 44.3, 55.7, 0.0, 30.7,39.8 +7.287774294670847,5,a-curv-i5,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 319, 7.4, 288, 50.4, 49.7, 0.7, 30.6,35.4,284 +NA,NA,a-curv-i5,2020-21,Mohawk Trail - Sanderson Academy,07170020, 38, 13.0, 131, 51.2, 48.9, 0.0, 16.0,29 +NA,NA,a-curv-i5,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 142, 11.3, 145, 44.8, 55.2, 7.6, 27.6,44.1 +NA,NA,a-curv-i5,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 341, 14.7, 419, 45.1, 54.9, 6.0, 26.0,32 +6.814879649890591,5,a-curv-i5,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 457, 13.7, 679, 49.2, 50.7, 4.0, 15.0,28.4,677 +NA,NA,a-curv-i5,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 278, 12.5, 371, 50.1, 49.9, 5.4, 15.4,31 +NA,NA,a-curv-i5,2020-21,Monson - Granite Valley School,01910030, 257, 14.3, 405, 52.1, 47.7, 0.3, 21.2,38.5 +6.801731601731602,5,a-curv-i5,2020-21,Monson - Monson High School,01910505, 231, 12.4, 341, 50.4, 49.3, 0.3, 20.2,28.2,346 +NA,NA,a-curv-i5,2020-21,Monson - Quarry Hill Community School,01910010, 59, 14.2, 98, 50.0, 50.0, 1.0, 22.5,26.5 +NA,NA,a-curv-i5,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 638, 17.8," 1,401", 50.2, 48.9, 1.0, 15.1,27.8 +NA,NA,a-curv-i5,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 202, 8.4, 192, 56.8, 43.2, 1.0, 20.3,30.2 +NA,NA,a-curv-i5,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 336, 13.2, 517, 52.8, 47.0, 0.2, 13.4,17 +NA,NA,a-curv-i5,2020-21,Mount Greylock - Williamstown Elementary,07150010, 457, 6.8, 371, 44.7, 54.7, 1.6, 14.3,20.8 +NA,NA,a-curv-i5,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 775, 24.0," 1,609", 52.0, 48.0, 1.9, 12.2,24.1 +NA,NA,a-curv-i5,2020-21,Nahant - Johnson,01960010, 74, 16.2, 155, 46.5, 53.6, 0.0, 19.4,22.6 +NA,NA,a-curv-i5,2020-21,Nantucket - Cyrus Peirce,01970010, 186, 17.3, 425, 49.7, 50.4, 8.2, 17.4,27.3 +NA,NA,a-curv-i5,2020-21,Nantucket - Nantucket Elementary,01970005, 224, 16.0, 410, 49.5, 50.5, 33.7, 21.5,32.7 +NA,NA,a-curv-i5,2020-21,Nantucket - Nantucket High,01970505, 291, 14.9, 536, 46.8, 53.2, 10.6, 14.7,28.2 +NA,NA,a-curv-i5,2020-21,Nantucket - Nantucket Intermediate School,01970020, 216, 16.7, 317, 45.7, 54.3, 12.3, 17.7,31.2 +NA,NA,a-curv-i5,2020-21,Narragansett - Narragansett Middle,07200305, 193, 20.3, 346, 46.2, 53.5, 0.6, 22.0,35.6 +NA,NA,a-curv-i5,2020-21,Narragansett - Narragansett Regional High,07200505, 251, 15.0, 416, 46.9, 53.1, 0.2, 16.1,33.9 +NA,NA,a-curv-i5,2020-21,Narragansett - Templeton Elementary School,07200020, 154, 17.6, 587, 48.6, 51.5, 0.5, 20.3,36.1 +NA,NA,a-curv-i5,2020-21,Nashoba - Center School,07250020, 166, 15.0, 477, 49.7, 50.3, 4.2, 19.7,5.5 +NA,NA,a-curv-i5,2020-21,Nashoba - Florence Sawyer School,07250025, 299, 16.9, 736, 49.7, 50.3, 2.6, 17.1,7.6 +NA,NA,a-curv-i5,2020-21,Nashoba - Hale,07250310, 307, 9.9, 299, 46.8, 53.2, 5.4, 21.4,6.7 +NA,NA,a-curv-i5,2020-21,Nashoba - Luther Burbank Middle School,07250305, 356, 9.8, 245, 51.0, 49.0, 4.1, 16.7,22.5 +NA,NA,a-curv-i5,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 119, 17.3, 436, 45.2, 54.8, 4.1, 24.1,21.6 +NA,NA,a-curv-i5,2020-21,Nashoba - Nashoba Regional,07250505, 498, 14.3, 915, 49.4, 50.3, 1.3, 13.4,8.6 +6.740130151843817,5,a-curv-i5,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 461, 11.9, 710, 38.3, 60.6, 0.3, 31.6,25.8,726 +NA,NA,a-curv-i5,2020-21,Natick - Bennett-Hemenway,01980005, 165, 20.8, 506, 46.4, 53.6, 2.0, 18.6,8.5 +NA,NA,a-curv-i5,2020-21,Natick - Brown,01980010, 175, 18.7, 459, 48.6, 51.4, 13.7, 10.2,13.1 +NA,NA,a-curv-i5,2020-21,Natick - J F Kennedy Middle School,01980305, 416, 20.4, 803, 44.6, 55.4, 4.2, 15.4,11 +NA,NA,a-curv-i5,2020-21,Natick - Johnson,01980031, 86, 17.0, 210, 46.2, 53.8, 2.9, 12.9,15.2 +NA,NA,a-curv-i5,2020-21,Natick - Lilja Elementary,01980035, 164, 16.2, 375, 48.8, 51.2, 5.9, 15.2,12.5 +NA,NA,a-curv-i5,2020-21,Natick - Memorial,01980043, 149, 19.2, 409, 47.4, 52.3, 1.2, 12.2,5.9 +NA,NA,a-curv-i5,2020-21,Natick - Natick High,01980505, 834, 16.0," 1,653", 49.1, 50.6, 1.5, 17.4,10.9 +NA,NA,a-curv-i5,2020-21,Natick - Wilson Middle,01980310, 471, 20.0, 874, 49.7, 50.2, 0.1, 19.6,13 +NA,NA,a-curv-i5,2020-21,Nauset - Nauset Regional High,06600505, 531, 13.0, 824, 54.5, 44.9, 2.2, 11.7,22.1 +NA,NA,a-curv-i5,2020-21,Nauset - Nauset Regional Middle,06600305, 539, 14.3, 586, 49.3, 50.5, 1.7, 21.8,28.5 +NA,NA,a-curv-i5,2020-21,Needham - Broadmeadow,01990005, 114, 19.1, 488, 49.4, 50.6, 2.7, 15.8,4.5 +NA,NA,a-curv-i5,2020-21,Needham - High Rock School,01990410, 331, 15.7, 399, 49.4, 50.6, 2.0, 21.3,6.3 +NA,NA,a-curv-i5,2020-21,Needham - John Eliot,01990020, 123, 16.0, 436, 49.5, 50.5, 9.2, 17.7,13.3 +NA,NA,a-curv-i5,2020-21,Needham - Needham High,01990505, 737, 16.0," 1,666", 50.9, 48.7, 0.7, 16.5,5.6 +NA,NA,a-curv-i5,2020-21,Needham - Newman Elementary,01990050, 148, 18.0, 649, 48.7, 51.3, 5.6, 22.8,6.2 +NA,NA,a-curv-i5,2020-21,Needham - Pollard Middle,01990405, 694, 17.4, 901, 51.2, 48.8, 1.7, 19.8,8.3 +NA,NA,a-curv-i5,2020-21,Needham - Sunita L. Williams Elementary,01990035, 124, 18.0, 501, 43.5, 56.5, 8.6, 17.4,6 +NA,NA,a-curv-i5,2020-21,Needham - William Mitchell,01990040, 124, 17.5, 484, 49.2, 50.8, 3.1, 14.1,6 +NA,NA,a-curv-i5,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 364, 16.7, 795, 48.7, 51.2, 9.4, 21.8,51.7 +NA,NA,a-curv-i5,2020-21,New Bedford - Abraham Lincoln,02010095, 288, 21.9, 703, 47.9, 52.1, 26.3, 14.4,78.4 +NA,NA,a-curv-i5,2020-21,New Bedford - Alfred J Gomes,02010063, 291, 16.6, 492, 49.8, 50.2, 58.3, 23.4,84.8 +NA,NA,a-curv-i5,2020-21,New Bedford - Betsey B Winslow,02010140, 95, 16.4, 196, 53.1, 46.9, 8.7, 15.8,50.5 +NA,NA,a-curv-i5,2020-21,New Bedford - Carlos Pacheco,02010105, 205, 14.1, 372, 49.2, 50.8, 37.4, 22.3,85.5 +NA,NA,a-curv-i5,2020-21,New Bedford - Casimir Pulaski,02010123, 343, 14.5, 600, 44.3, 55.7, 11.2, 30.5,55.5 +NA,NA,a-curv-i5,2020-21,New Bedford - Charles S Ashley,02010010, 175, 10.3, 216, 46.3, 53.7, 17.1, 24.1,61.1 +NA,NA,a-curv-i5,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 105, 20.6, 270, 49.6, 50.4, 20.7, 19.6,73 +NA,NA,a-curv-i5,2020-21,New Bedford - Ellen R Hathaway,02010075, 166, 12.2, 294, 48.3, 51.7, 38.4, 20.4,81 +NA,NA,a-curv-i5,2020-21,New Bedford - Elwyn G Campbell,02010020, 124, 16.6, 304, 44.4, 55.6, 25.0, 32.9,68.4 +NA,NA,a-curv-i5,2020-21,New Bedford - Hayden/McFadden,02010078, 417, 14.6, 643, 49.8, 50.2, 45.1, 30.2,87.4 +NA,NA,a-curv-i5,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 183, 15.6, 354, 47.5, 52.5, 50.0, 22.6,86.2 +NA,NA,a-curv-i5,2020-21,New Bedford - James B Congdon,02010040, 136, 18.2, 310, 51.0, 49.0, 31.6, 15.8,79 +NA,NA,a-curv-i5,2020-21,New Bedford - Jireh Swift,02010130, 75, 15.4, 167, 53.9, 46.1, 20.4, 8.4,64.1 +NA,NA,a-curv-i5,2020-21,New Bedford - John Avery Parker,02010115, 98, 16.7, 219, 52.1, 48.0, 27.9, 20.1,80.4 +NA,NA,a-curv-i5,2020-21,New Bedford - John B Devalles,02010050, 154, 18.5, 352, 49.7, 50.3, 33.2, 14.8,87.5 +NA,NA,a-curv-i5,2020-21,New Bedford - Keith Middle School,02010405, 465, 18.9," 1,021", 46.0, 54.0, 13.1, 21.0,75 +NA,NA,a-curv-i5,2020-21,New Bedford - New Bedford High,02010505," 1,200", 20.5," 2,826", 48.1, 51.9, 27.4, 19.9,71.9 +NA,NA,a-curv-i5,2020-21,New Bedford - Normandin Middle School,02010410, 554, 21.3," 1,119", 48.8, 51.2, 12.2, 17.8,66.6 +NA,NA,a-curv-i5,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 75, 19.9, 184, 55.4, 44.6, 52.2, 21.2,84.8 +NA,NA,a-curv-i5,2020-21,New Bedford - Roosevelt Middle School,02010415, 404, 17.5, 914, 48.1, 51.9, 23.9, 26.4,78.6 +NA,NA,a-curv-i5,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 447, 11.9, 653, 42.1, 57.9, 17.0, 34.5,79.9 +NA,NA,a-curv-i5,2020-21,New Bedford - Thomas R Rodman,02010125, 89, 14.2, 153, 44.4, 55.6, 24.2, 24.8,74.5 +NA,NA,a-curv-i5,2020-21,New Bedford - Trinity Day Academy,02010510, 136, 6.3, 105, 33.3, 66.7, 9.5, 98.1,86.7 +6.978313253012049,5,a-curv-i5,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 83, 6.4, 85, 30.6, 69.4, 23.5, 37.7,87.1,106 +NA,NA,a-curv-i5,2020-21,New Bedford - William H Taylor,02010135, 117, 16.8, 256, 49.2, 50.8, 16.4, 18.0,61.3 +NA,NA,a-curv-i5,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 190, 24.0, 636, 49.5, 50.5, 15.9, 11.2,50.3 +NA,NA,a-curv-i5,2020-21,New Salem-Wendell - Swift River,07280015, 79, 16.4, 131, 51.2, 48.9, 0.0, 23.7,35.1 +NA,NA,a-curv-i5,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 186, 18.2, 274, 46.7, 53.3, 3.3, 24.8,10.6 +NA,NA,a-curv-i5,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 341, 14.9, 529, 49.7, 50.3, 3.6, 22.7,13.6 +NA,NA,a-curv-i5,2020-21,Newburyport - Newburyport High,02040505, 636, 16.7, 799, 50.8, 49.1, 1.4, 12.9,11.5 +NA,NA,a-curv-i5,2020-21,Newburyport - Rupert A Nock Middle,02040305, 471, 9.2, 474, 49.4, 50.6, 1.7, 24.7,11.4 +NA,NA,a-curv-i5,2020-21,Newton - A E Angier,02070005, 152, 17.9, 389, 49.1, 50.6, 7.7, 18.0,7.2 +NA,NA,a-curv-i5,2020-21,Newton - Bigelow Middle,02070305, 289, 19.2, 515, 53.0, 47.0, 4.9, 18.3,14.2 +NA,NA,a-curv-i5,2020-21,Newton - Bowen,02070015, 90, 21.7, 278, 50.0, 49.6, 15.1, 16.2,8.6 +NA,NA,a-curv-i5,2020-21,Newton - C C Burr,02070020, 117, 17.7, 293, 47.4, 52.6, 11.6, 15.0,13 +NA,NA,a-curv-i5,2020-21,Newton - Cabot,02070025, 124, 19.5, 342, 51.8, 48.3, 9.1, 16.4,9.7 +NA,NA,a-curv-i5,2020-21,Newton - Charles E Brown Middle,02070310, 505, 20.1, 799, 48.9, 50.8, 2.8, 19.3,6.6 +NA,NA,a-curv-i5,2020-21,Newton - Countryside,02070040, 104, 19.6, 287, 48.4, 51.6, 9.1, 17.4,10.1 +NA,NA,a-curv-i5,2020-21,Newton - F A Day Middle,02070315, 484, 20.9, 958, 49.8, 50.0, 0.9, 15.7,10.5 +NA,NA,a-curv-i5,2020-21,Newton - Franklin,02070055, 125, 18.1, 319, 58.3, 41.7, 11.0, 14.1,10.3 +NA,NA,a-curv-i5,2020-21,Newton - Horace Mann,02070075, 132, 17.7, 333, 46.3, 53.5, 10.2, 12.0,11.7 +NA,NA,a-curv-i5,2020-21,Newton - John Ward,02070120, 79, 16.2, 183, 54.1, 45.9, 4.4, 14.2,3.3 +NA,NA,a-curv-i5,2020-21,Newton - Lincoln-Eliot,02070070, 104, 16.7, 242, 43.4, 56.2, 18.2, 23.1,30.2 +NA,NA,a-curv-i5,2020-21,Newton - Mason-Rice,02070080, 117, 18.4, 308, 45.5, 54.6, 9.4, 12.3,1.3 +NA,NA,a-curv-i5,2020-21,Newton - Memorial Spaulding,02070105, 111, 20.4, 319, 53.0, 47.0, 10.3, 17.9,7.8 +NA,NA,a-curv-i5,2020-21,Newton - Newton Early Childhood Program,02070108, 34, 7.0, 200, 35.0, 65.0, 0.0, 76.5,13.5 +NA,NA,a-curv-i5,2020-21,Newton - Newton North High,02070505, 968, 15.9," 2,080", 48.3, 51.4, 2.7, 15.3,13.6 +NA,NA,a-curv-i5,2020-21,Newton - Newton South High,02070510," 1,008", 14.3," 1,859", 47.6, 52.3, 1.8, 17.9,8.9 +NA,NA,a-curv-i5,2020-21,Newton - Oak Hill Middle,02070320, 478, 15.8, 661, 47.5, 52.3, 3.8, 20.1,12 +NA,NA,a-curv-i5,2020-21,Newton - Peirce,02070100, 80, 17.5, 199, 46.2, 53.8, 5.5, 14.1,9.6 +NA,NA,a-curv-i5,2020-21,Newton - Underwood,02070115, 74, 16.6, 173, 52.6, 47.4, 8.7, 11.0,10.4 +NA,NA,a-curv-i5,2020-21,Newton - Williams,02070125, 72, 16.8, 175, 46.3, 53.7, 8.6, 18.3,8 +NA,NA,a-curv-i5,2020-21,Newton - Zervas,02070130, 124, 19.2, 338, 48.2, 51.8, 10.1, 19.8,11.5 +NA,NA,a-curv-i5,2020-21,Norfolk - Freeman-Kennedy School,02080005, 148, 21.8, 515, 45.1, 55.0, 1.2, 19.6,7.6 +NA,NA,a-curv-i5,2020-21,Norfolk - H Olive Day,02080015, 95, 23.0, 472, 48.7, 51.3, 3.8, 18.0,4.7 +NA,NA,a-curv-i5,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 445, 16.7, 586, 71.3, 28.3, 0.2, 22.2,16.2 +NA,NA,a-curv-i5,2020-21,North Adams - Brayton,02090035, 111, 14.2, 257, 40.9, 59.1, 1.2, 28.8,76.3 +NA,NA,a-curv-i5,2020-21,North Adams - Colegrove Park Elementary,02090008, 89, 19.7, 278, 43.9, 56.1, 1.8, 27.3,70.5 +NA,NA,a-curv-i5,2020-21,North Adams - Drury High,02090505, 276, 13.2, 538, 55.4, 44.6, 0.0, 21.8,63.2 +NA,NA,a-curv-i5,2020-21,North Adams - Greylock,02090015, 79, 16.8, 228, 50.4, 49.6, 1.3, 28.5,64.5 +NA,NA,a-curv-i5,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 158, 16.9, 374, 44.9, 55.1, 4.0, 34.0,23.5 +NA,NA,a-curv-i5,2020-21,North Andover - Annie L Sargent School,02110018, 188, 20.4, 429, 51.5, 48.5, 0.7, 17.3,6.5 +NA,NA,a-curv-i5,2020-21,North Andover - Atkinson,02110001, 147, 17.2, 282, 45.7, 54.3, 7.1, 22.3,33.7 +NA,NA,a-curv-i5,2020-21,North Andover - Franklin,02110010, 195, 15.9, 347, 46.7, 53.3, 1.4, 22.2,10.4 +NA,NA,a-curv-i5,2020-21,North Andover - Kittredge,02110015, 126, 15.5, 218, 45.9, 54.1, 4.1, 17.4,7.8 +NA,NA,a-curv-i5,2020-21,North Andover - North Andover High,02110505," 1,240", 16.5," 1,376", 48.1, 51.9, 0.9, 12.9,17.2 +NA,NA,a-curv-i5,2020-21,North Andover - North Andover Middle,02110305, 743, 22.2," 1,103", 50.5, 49.5, 1.2, 15.6,21.5 +NA,NA,a-curv-i5,2020-21,North Andover - Thomson,02110020, 148, 17.7, 291, 48.8, 51.2, 7.6, 23.0,31.3 +NA,NA,a-curv-i5,2020-21,North Attleborough - Amvet Boulevard,02120007, 144, 19.5, 407, 48.4, 51.6, 2.7, 12.5,14.3 +NA,NA,a-curv-i5,2020-21,North Attleborough - Community,02120030, 164, 13.3, 321, 51.7, 48.3, 11.8, 27.7,49.5 +NA,NA,a-curv-i5,2020-21,North Attleborough - Falls,02120010, 103, 12.9, 193, 44.6, 55.4, 4.2, 20.7,14 +NA,NA,a-curv-i5,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 212, 18.9, 587, 45.5, 54.5, 2.7, 18.2,16 +NA,NA,a-curv-i5,2020-21,North Attleborough - North Attleboro High,02120505, 805, 12.6," 1,098", 48.1, 51.6, 2.0, 11.1,18.8 +NA,NA,a-curv-i5,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 85, 10.4, 176, 33.0, 67.1, 19.3, 57.4,30.1 +NA,NA,a-curv-i5,2020-21,North Attleborough - North Attleborough Middle,02120305, 563, 19.5, 996, 52.9, 47.0, 1.1, 18.8,19.5 +NA,NA,a-curv-i5,2020-21,North Attleborough - Roosevelt Avenue,02120015, 82, 17.9, 214, 51.9, 48.1, 3.3, 20.1,15 +NA,NA,a-curv-i5,2020-21,North Brookfield - North Brookfield Elementary,02150015, 82, 16.8, 298, 50.0, 50.0, 1.3, 23.5,38.6 +NA,NA,a-curv-i5,2020-21,North Brookfield - North Brookfield High,02150505, 120, 9.3, 215, 46.1, 54.0, 0.0, 21.4,40 +NA,NA,a-curv-i5,2020-21,North Middlesex - Ashby Elementary,07350010, 72, 18.0, 162, 43.8, 56.2, 0.6, 16.1,30.3 +NA,NA,a-curv-i5,2020-21,North Middlesex - Hawthorne Brook,07350030, 261, 19.5, 491, 48.3, 51.5, 2.2, 25.1,26.1 +NA,NA,a-curv-i5,2020-21,North Middlesex - Nissitissit Middle School,07350310, 341, 17.7, 513, 48.0, 52.1, 0.0, 29.2,20.7 +NA,NA,a-curv-i5,2020-21,North Middlesex - North Middlesex Regional,07350505, 431, 17.6, 780, 50.0, 50.0, 0.9, 19.4,16.4 +NA,NA,a-curv-i5,2020-21,North Middlesex - Spaulding Memorial,07350005, 200, 18.6, 372, 51.1, 48.9, 4.3, 18.8,23.7 +NA,NA,a-curv-i5,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 24, 5.8, 71, 35.2, 64.8, 1.4, 71.8,39.4 +NA,NA,a-curv-i5,2020-21,North Middlesex - Varnum Brook,07350035, 250, 22.2, 554, 49.6, 50.4, 1.3, 22.7,25.1 +NA,NA,a-curv-i5,2020-21,North Reading - E Ethel Little School,02170003, 184, 17.4, 313, 47.9, 52.1, 0.3, 18.9,11.2 +NA,NA,a-curv-i5,2020-21,North Reading - J Turner Hood,02170010, 191, 18.4, 343, 45.5, 54.5, 1.5, 19.5,12.2 +NA,NA,a-curv-i5,2020-21,North Reading - L D Batchelder,02170005, 218, 21.8, 447, 42.3, 57.7, 1.3, 17.5,7.2 +NA,NA,a-curv-i5,2020-21,North Reading - North Reading High,02170505, 303, 17.3, 660, 52.6, 47.4, 0.3, 16.5,8.3 +NA,NA,a-curv-i5,2020-21,North Reading - North Reading Middle,02170305, 401, 14.3, 550, 50.4, 49.6, 0.6, 21.8,10.6 +NA,NA,a-curv-i5,2020-21,Northampton - Bridge Street,02100005, 86, 15.8, 259, 46.3, 53.7, 11.2, 26.3,42.1 +NA,NA,a-curv-i5,2020-21,Northampton - Jackson Street,02100020, 116, 20.0, 385, 49.1, 50.4, 6.0, 16.9,26 +NA,NA,a-curv-i5,2020-21,Northampton - John F Kennedy Middle School,02100410, 389, 17.9, 636, 50.0, 49.1, 2.8, 20.9,28.8 +NA,NA,a-curv-i5,2020-21,Northampton - Leeds,02100025, 102, 17.0, 314, 41.7, 57.6, 7.0, 23.6,31.5 +NA,NA,a-curv-i5,2020-21,Northampton - Northampton High,02100505, 442, 14.6, 876, 50.3, 49.5, 3.0, 17.5,22.8 +NA,NA,a-curv-i5,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 72, 19.3, 235, 45.5, 54.0, 5.5, 23.0,29.8 +NA,NA,a-curv-i5,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 429, 12.4, 535, 41.5, 58.3, 3.4, 40.6,36.6 +NA,NA,a-curv-i5,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 802, 14.6," 1,357", 51.5, 48.5, 1.3, 14.4,10.1 +NA,NA,a-curv-i5,2020-21,Northborough - Fannie E Proctor,02130015, 76, 13.0, 244, 43.9, 56.2, 6.2, 19.7,20.1 +NA,NA,a-curv-i5,2020-21,Northborough - Lincoln Street,02130003, 82, 13.1, 264, 48.1, 51.9, 6.4, 22.7,18.2 +NA,NA,a-curv-i5,2020-21,Northborough - Marguerite E Peaslee,02130014, 86, 13.8, 266, 45.5, 54.5, 4.9, 22.2,10.9 +NA,NA,a-curv-i5,2020-21,Northborough - Marion E Zeh,02130020, 77, 12.6, 235, 47.2, 52.8, 11.1, 23.8,17 +NA,NA,a-curv-i5,2020-21,Northborough - Robert E. Melican Middle School,02130305, 289, 18.7, 522, 49.0, 51.0, 3.8, 19.5,14.8 +NA,NA,a-curv-i5,2020-21,Northbridge - Northbridge Elementary,02140005, 94, 16.9, 370, 46.2, 53.8, 3.5, 27.6,36.5 +NA,NA,a-curv-i5,2020-21,Northbridge - Northbridge High,02140505, 358, 15.3, 538, 46.5, 53.5, 2.0, 14.1,27 +NA,NA,a-curv-i5,2020-21,Northbridge - Northbridge Middle,02140305, 249, 20.8, 671, 53.5, 46.5, 1.8, 14.8,34.9 +NA,NA,a-curv-i5,2020-21,Northbridge - W Edward Balmer,02140001, 100, 20.4, 392, 45.7, 54.3, 3.8, 20.2,41.1 +NA,NA,a-curv-i5,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605," 1,502", 11.5," 1,292", 44.9, 55.0, 5.0, 18.9,42.9 +NA,NA,a-curv-i5,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 441, 11.1, 501, 40.7, 59.3, 0.0, 14.6,38.3 +NA,NA,a-curv-i5,2020-21,Norton - Henri A. Yelle,02180060, 193, 19.4, 345, 50.1, 49.9, 2.6, 20.6,25.8 +NA,NA,a-curv-i5,2020-21,Norton - J C Solmonese,02180015, 197, 17.0, 493, 52.3, 47.7, 2.4, 30.4,22.7 +NA,NA,a-curv-i5,2020-21,Norton - L G Nourse Elementary,02180010, 135, 18.2, 268, 48.9, 51.1, 3.4, 25.0,31 +NA,NA,a-curv-i5,2020-21,Norton - Norton High,02180505, 426, 13.3, 693, 49.2, 50.5, 1.7, 16.9,21.7 +NA,NA,a-curv-i5,2020-21,Norton - Norton Middle,02180305, 370, 15.7, 604, 50.8, 49.2, 1.5, 19.0,22.9 +NA,NA,a-curv-i5,2020-21,Norwell - Grace Farrar Cole,02190005, 99, 19.4, 493, 44.8, 55.2, 0.4, 17.9,6.3 +NA,NA,a-curv-i5,2020-21,Norwell - Norwell High,02190505, 358, 12.2, 639, 52.1, 47.9, 0.2, 14.1,4.9 +NA,NA,a-curv-i5,2020-21,Norwell - Norwell Middle School,02190405, 318, 16.8, 486, 45.3, 54.7, 0.2, 15.6,4.9 +NA,NA,a-curv-i5,2020-21,Norwell - William G Vinal,02190020, 104, 19.4, 521, 48.8, 51.1, 0.6, 15.7,3.1 +NA,NA,a-curv-i5,2020-21,Norwood - Balch,02200005, 172, 12.5, 299, 50.5, 49.5, 36.5, 20.4,52.2 +NA,NA,a-curv-i5,2020-21,Norwood - Charles J Prescott,02200025, 142, 12.1, 254, 49.2, 50.8, 19.7, 17.3,21.7 +NA,NA,a-curv-i5,2020-21,Norwood - Cornelius M Callahan,02200010, 128, 12.4, 220, 49.6, 50.5, 21.8, 24.6,40.5 +NA,NA,a-curv-i5,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 381, 17.6, 736, 50.3, 49.5, 6.9, 25.3,33.7 +NA,NA,a-curv-i5,2020-21,Norwood - F A Cleveland,02200015, 191, 12.1, 319, 43.6, 56.4, 12.9, 23.8,25.7 +NA,NA,a-curv-i5,2020-21,Norwood - George F. Willett,02200075, 39, 16.6, 376, 51.3, 48.7, 14.4, 30.1,27.4 +NA,NA,a-curv-i5,2020-21,Norwood - John P Oldham,02200020, 145, 12.0, 242, 48.8, 51.2, 14.9, 27.3,32.2 +NA,NA,a-curv-i5,2020-21,Norwood - Norwood High,02200505," 1,553", 4.4, 979, 51.3, 48.7, 4.8, 17.1,27.8 +NA,NA,a-curv-i5,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 198, 16.7, 448, 47.3, 52.7, 17.0, 23.7,33 +NA,NA,a-curv-i5,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 248, 16.6, 553, 36.9, 62.9, 0.0, 22.4,19.5 +NA,NA,a-curv-i5,2020-21,Old Rochester - Old Rochester Regional High,07400505, 688, 7.9, 715, 48.0, 52.0, 0.0, 11.3,14.4 +NA,NA,a-curv-i5,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 552, 9.9, 421, 43.5, 56.5, 0.2, 15.7,17.8 +NA,NA,a-curv-i5,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 7, 40.0, 280, 48.9, 51.1, 3.2, 22.1,34.6 +NA,NA,a-curv-i5,2020-21,Orange - Dexter Park,02230010, 95, 16.4, 270, 49.3, 50.7, 1.1, 27.8,60.4 +NA,NA,a-curv-i5,2020-21,Orange - Fisher Hill,02230015, 58, 13.6, 202, 46.5, 53.5, 1.5, 30.7,70.8 +NA,NA,a-curv-i5,2020-21,Orleans - Orleans Elementary,02240005, 190, 10.9, 174, 58.1, 42.0, 6.9, 21.8,32.2 +NA,NA,a-curv-i5,2020-21,Oxford - Alfred M Chaffee,02260010, 45, 16.7, 206, 54.9, 45.2, 2.4, 24.8,38.8 +NA,NA,a-curv-i5,2020-21,Oxford - Clara Barton,02260005, 76, 18.6, 354, 48.3, 51.7, 0.9, 20.3,39.3 +NA,NA,a-curv-i5,2020-21,Oxford - Oxford High,02260505, 299, 15.8, 559, 50.5, 49.0, 0.2, 17.2,38.3 +NA,NA,a-curv-i5,2020-21,Oxford - Oxford Middle,02260405, 202, 16.7, 369, 46.6, 53.1, 0.3, 14.4,36 +NA,NA,a-curv-i5,2020-21,Palmer - Old Mill Pond,02270008, 672, 14.6, 599, 50.1, 49.9, 5.5, 22.0,53.1 +NA,NA,a-curv-i5,2020-21,Palmer - Palmer High,02270505, 313, 14.8, 609, 47.6, 52.2, 3.3, 16.3,50.6 +NA,NA,a-curv-i5,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 548, 11.3, 602, 37.4, 62.0, 0.2, 27.4,37.7 +NA,NA,a-curv-i5,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 184, 15.1, 250, 58.4, 41.6, 6.0, 23.6,82.4 +NA,NA,a-curv-i5,2020-21,Peabody - Captain Samuel Brown,02290005, 211, 13.3, 346, 48.0, 52.0, 6.4, 35.8,33.2 +NA,NA,a-curv-i5,2020-21,Peabody - Center,02290015, 201, 17.3, 408, 51.5, 48.5, 15.0, 15.9,42.2 +NA,NA,a-curv-i5,2020-21,Peabody - J Henry Higgins Middle,02290305, 502, 21.6," 1,456", 49.5, 50.6, 6.7, 20.4,39.5 +NA,NA,a-curv-i5,2020-21,Peabody - John E Burke,02290007, 161, 12.7, 250, 52.0, 48.0, 4.4, 27.2,21.6 +NA,NA,a-curv-i5,2020-21,Peabody - John E. McCarthy,02290016, 237, 10.8, 340, 49.7, 50.3, 6.5, 30.0,36.8 +NA,NA,a-curv-i5,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 729, 16.4," 1,502", 48.0, 51.8, 6.3, 18.7,36.7 +NA,NA,a-curv-i5,2020-21,Peabody - South Memorial,02290035, 193, 14.8, 382, 55.2, 44.8, 10.5, 12.0,26.2 +NA,NA,a-curv-i5,2020-21,Peabody - Thomas Carroll,02290010, 284, 17.0, 549, 50.6, 49.4, 19.7, 15.3,55 +NA,NA,a-curv-i5,2020-21,Peabody - West Memorial,02290045, 161, 11.2, 236, 47.5, 52.5, 0.0, 22.5,17.4 +NA,NA,a-curv-i5,2020-21,Peabody - William A Welch Sr,02290027, 188, 14.6, 346, 48.6, 51.5, 21.7, 16.2,61.6 +NA,NA,a-curv-i5,2020-21,Pelham - Pelham Elementary,02300005, 43, 13.9, 102, 39.2, 59.8, 2.0, 21.6,12.8 +NA,NA,a-curv-i5,2020-21,Pembroke - Bryantville Elementary,02310003, 208, 15.9, 452, 46.7, 53.3, 4.0, 22.1,22.4 +NA,NA,a-curv-i5,2020-21,Pembroke - Hobomock Elementary,02310010, 193, 15.2, 393, 45.6, 54.5, 2.5, 19.6,13.2 +NA,NA,a-curv-i5,2020-21,Pembroke - North Pembroke Elementary,02310015, 204, 17.0, 533, 47.5, 52.4, 2.4, 20.3,14.6 +NA,NA,a-curv-i5,2020-21,Pembroke - Pembroke Community Middle School,02310305, 248, 19.2, 435, 47.1, 52.9, 0.5, 14.5,15.6 +6.109941520467837,5,a-curv-i5,2020-21,Pembroke - Pembroke High School,02310505, 342, 16.8, 807, 49.7, 50.2, 0.4, 13.4,13.3,808 +NA,NA,a-curv-i5,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 99, 18.0, 202, 45.1, 55.0, 0.5, 32.2,17.3 +NA,NA,a-curv-i5,2020-21,Pentucket - Dr John C Page School,07450015, 161, 17.0, 285, 46.0, 54.0, 0.4, 23.5,8.8 +NA,NA,a-curv-i5,2020-21,Pentucket - Elmer S Bagnall,07450005, 251, 17.4, 471, 45.4, 54.6, 0.6, 27.0,12.5 +NA,NA,a-curv-i5,2020-21,Pentucket - Helen R Donaghue School,07450010, 110, 20.7, 228, 48.7, 51.3, 0.0, 28.1,13.2 +NA,NA,a-curv-i5,2020-21,Pentucket - Pentucket Regional Middle,07450405, 232, 14.8, 341, 49.9, 50.2, 0.9, 22.9,15.3 +NA,NA,a-curv-i5,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 373, 14.5, 664, 47.4, 52.6, 0.0, 13.6,13 +NA,NA,a-curv-i5,2020-21,Petersham - Petersham Center,02340005, 49, 15.9, 121, 51.2, 48.8, 1.7, 21.5,35.5 +5.234782608695652,5,a-curv-i5,2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 46, 6.5, 156, 39.7, 60.3, 27.6, 24.4,80.8,159 +-5.866666666666665,1,a-curv-i5,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 12, 61.9, 201, 47.8, 52.2, 18.4, 25.9,81.6,208 +NA,NA,a-curv-i5,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 30, 37.1, 216, 49.5, 50.5, 63.0, 11.6,55.1 +NA,NA,a-curv-i5,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 344, 19.2, 801, 52.2, 47.8, 17.7, 9.1,45.1 +NA,NA,a-curv-i5,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 155, 18.4, 360, 53.6, 46.1, 17.2, 14.2,33.9 +NA,NA,a-curv-i5,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 54, 16.7, 184, 57.6, 42.4, 1.6, 28.3,31.5 +NA,NA,a-curv-i5,2020-21,Pioneer Valley - Northfield Elementary,07500008, 66, 12.2, 171, 43.3, 56.7, 2.3, 29.2,39.2 +NA,NA,a-curv-i5,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 286, 11.1, 276, 50.0, 50.0, 0.4, 15.9,25.4 +NA,NA,a-curv-i5,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 308, 17.5, 558, 50.9, 48.9, 3.1, 12.2,22.2 +NA,NA,a-curv-i5,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 298, 13.9, 403, 66.8, 32.8, 0.0, 22.6,31.8 +NA,NA,a-curv-i5,2020-21,Pittsfield - Allendale,02360010, 104, 13.6, 244, 49.2, 50.8, 4.1, 16.4,59.4 +NA,NA,a-curv-i5,2020-21,Pittsfield - Crosby,02360065, 88, 15.7, 258, 43.8, 56.2, 12.4, 30.2,76.4 +NA,NA,a-curv-i5,2020-21,Pittsfield - Crosby Educational Academy,02360030, 25, 6.3, 48, 37.5, 62.5, 8.3, 58.3,89.6 +NA,NA,a-curv-i5,2020-21,Pittsfield - Eagle Education Academy,02360525, 56, 3.6, 31, 22.6, 77.4, 0.0, 96.8,90.3 +NA,NA,a-curv-i5,2020-21,Pittsfield - Egremont,02360035, 121, 15.7, 375, 49.3, 50.7, 7.7, 16.3,52.3 +NA,NA,a-curv-i5,2020-21,Pittsfield - John T Reid Middle,02360305, 205, 17.1, 457, 48.8, 51.2, 3.9, 24.1,64.8 +NA,NA,a-curv-i5,2020-21,Pittsfield - Morningside Community School,02360055, 136, 13.4, 309, 52.1, 47.9, 12.3, 24.0,79.9 +NA,NA,a-curv-i5,2020-21,Pittsfield - Pittsfield High,02360505, 413, 13.1, 682, 48.7, 51.3, 4.7, 22.9,45.5 +NA,NA,a-curv-i5,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 74, 11.0, 144, 52.1, 47.9, 2.1, 19.4,47.2 +NA,NA,a-curv-i5,2020-21,Pittsfield - Silvio O Conte Community,02360105, 120, 12.7, 260, 50.4, 49.6, 11.2, 15.8,87.3 +NA,NA,a-curv-i5,2020-21,Pittsfield - Stearns,02360090, 65, 14.3, 188, 40.4, 59.6, 0.5, 22.3,46.3 +NA,NA,a-curv-i5,2020-21,Pittsfield - Taconic High,02360510, 442, 11.5, 805, 50.3, 49.6, 2.9, 25.1,51.4 +NA,NA,a-curv-i5,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 249, 15.1, 492, 46.1, 53.7, 3.9, 19.3,55.9 +NA,NA,a-curv-i5,2020-21,Pittsfield - Williams,02360100, 86, 13.5, 228, 43.9, 56.1, 7.0, 12.3,28.5 +NA,NA,a-curv-i5,2020-21,Plainville - Anna Ware Jackson,02380010, 76, 17.7, 373, 48.3, 51.7, 6.4, 22.8,25.5 +NA,NA,a-curv-i5,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 48, 21.6, 259, 45.6, 54.4, 1.5, 18.5,19.7 +NA,NA,a-curv-i5,2020-21,Plymouth - Cold Spring,02390005, 134, 16.8, 193, 56.5, 43.5, 15.5, 14.5,44.6 +NA,NA,a-curv-i5,2020-21,Plymouth - Federal Furnace School,02390011, 264, 14.6, 322, 48.1, 51.9, 1.6, 26.1,35.1 +NA,NA,a-curv-i5,2020-21,Plymouth - Hedge,02390010, 122, 17.1, 174, 46.6, 53.5, 25.3, 18.4,63.2 +NA,NA,a-curv-i5,2020-21,Plymouth - Indian Brook,02390012, 348, 17.3, 500, 49.0, 51.0, 0.0, 19.2,22.8 +NA,NA,a-curv-i5,2020-21,Plymouth - Manomet Elementary,02390015, 170, 17.1, 241, 51.9, 48.1, 0.4, 22.8,29.9 +NA,NA,a-curv-i5,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 341, 16.9, 482, 44.8, 55.2, 6.9, 14.7,27.8 +NA,NA,a-curv-i5,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 539, 18.0, 974, 50.0, 49.9, 4.4, 19.6,33.6 +NA,NA,a-curv-i5,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 24, 8.0, 191, 31.9, 68.1, 5.2, 61.3,33 +NA,NA,a-curv-i5,2020-21,Plymouth - Plymouth North High,02390505, 898, 14.6," 1,193", 46.9, 53.1, 3.5, 17.9,26.1 +NA,NA,a-curv-i5,2020-21,Plymouth - Plymouth South High,02390515, 935, 13.8," 1,057", 46.3, 53.7, 0.1, 18.2,19.6 +NA,NA,a-curv-i5,2020-21,Plymouth - Plymouth South Middle,02390305, 369, 17.2, 625, 48.8, 51.2, 0.3, 23.4,21.9 +NA,NA,a-curv-i5,2020-21,Plymouth - South Elementary,02390046, 427, 15.4, 550, 45.8, 54.2, 0.0, 19.8,23.5 +NA,NA,a-curv-i5,2020-21,Plymouth - West Elementary,02390047, 298, 12.5, 310, 48.1, 51.9, 1.0, 20.3,28.1 +NA,NA,a-curv-i5,2020-21,Plympton - Dennett Elementary,02400010, 111, 14.7, 220, 47.3, 52.7, 0.5, 15.0,16.4 +NA,NA,a-curv-i5,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 445, 18.3," 1,105", 49.7, 50.3, 14.3, 15.9,52.6 +NA,NA,a-curv-i5,2020-21,Provincetown - Provincetown Schools,02420020, 52, 11.3, 147, 55.1, 44.9, 19.1, 17.0,44.2 +NA,NA,a-curv-i5,2020-21,Quabbin - Hardwick Elementary,07530005, 41, 20.3, 145, 46.2, 53.8, 0.0, 23.5,53.1 +NA,NA,a-curv-i5,2020-21,Quabbin - Hubbardston Center,07530010, 72, 17.6, 227, 46.7, 53.3, 1.3, 11.9,17.6 +NA,NA,a-curv-i5,2020-21,Quabbin - New Braintree Grade,07530020, 36, 12.4, 78, 52.6, 47.4, 1.3, 18.0,46.2 +NA,NA,a-curv-i5,2020-21,Quabbin - Oakham Center,07530025, 63, 18.4, 255, 45.9, 54.1, 0.8, 27.5,29.8 +7.253175775480059,5,a-curv-i5,2020-21,Quabbin - Quabbin Regional High School,07530505, 677, 12.0, 630, 51.9, 47.6, 0.2, 16.5,27.6,632 +NA,NA,a-curv-i5,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 285, 16.8, 513, 52.1, 47.8, 0.6, 19.1,31.2 +NA,NA,a-curv-i5,2020-21,Quabbin - Ruggles Lane,07530030, 84, 17.4, 269, 43.5, 56.5, 0.0, 25.3,37.2 +NA,NA,a-curv-i5,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 198, 12.7, 363, 47.7, 52.1, 0.3, 13.2,32 +NA,NA,a-curv-i5,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 124, 14.1, 156, 50.6, 49.4, 1.9, 14.1,41.7 +NA,NA,a-curv-i5,2020-21,Quaboag Regional - Warren Elementary,07780005, 80, 20.4, 304, 48.0, 52.0, 3.3, 29.9,56.3 +NA,NA,a-curv-i5,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 102, 15.9, 239, 49.8, 49.8, 0.8, 19.3,38.5 +NA,NA,a-curv-i5,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 9.5, 181, 32.6, 67.4, 0.0, 69.1,35.9 +NA,NA,a-curv-i5,2020-21,Quincy - Atherton Hough,02430040, 199, 8.5, 239, 43.9, 56.1, 10.0, 37.7,30.1 +NA,NA,a-curv-i5,2020-21,Quincy - Atlantic Middle,02430305, 305, 21.8, 544, 46.1, 53.9, 10.9, 18.2,39 +NA,NA,a-curv-i5,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 106, 16.5, 228, 47.8, 52.2, 8.8, 11.0,46.1 +NA,NA,a-curv-i5,2020-21,Quincy - Broad Meadows Middle,02430310, 228, 16.5, 335, 49.6, 50.5, 6.3, 32.8,49.6 +NA,NA,a-curv-i5,2020-21,Quincy - Central Middle,02430315, 415, 18.2, 622, 50.3, 49.7, 5.0, 11.9,29.1 +NA,NA,a-curv-i5,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 164, 13.1, 262, 49.6, 50.4, 11.5, 16.4,25.6 +NA,NA,a-curv-i5,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 178, 13.3, 309, 52.4, 47.6, 29.8, 14.6,50.5 +NA,NA,a-curv-i5,2020-21,Quincy - Francis W Parker,02430075, 146, 9.8, 200, 43.5, 56.5, 32.5, 23.0,48.5 +NA,NA,a-curv-i5,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 194, 13.4, 347, 45.8, 54.2, 33.4, 13.5,53.6 +NA,NA,a-curv-i5,2020-21,Quincy - Merrymount,02430060, 149, 13.6, 279, 47.0, 53.1, 12.2, 16.1,26.9 +NA,NA,a-curv-i5,2020-21,Quincy - Montclair,02430065, 195, 14.3, 335, 49.9, 50.2, 27.8, 12.8,37.3 +NA,NA,a-curv-i5,2020-21,Quincy - North Quincy High,02430510, 585, 17.1," 1,362", 47.2, 52.7, 8.0, 15.0,34.7 +NA,NA,a-curv-i5,2020-21,Quincy - Point Webster Middle,02430325, 242, 16.5, 416, 47.4, 52.6, 9.6, 19.0,49 +NA,NA,a-curv-i5,2020-21,Quincy - Quincy High,02430505," 1,551", 7.4," 1,476", 50.2, 49.7, 8.3, 18.8,44.4 +NA,NA,a-curv-i5,2020-21,Quincy - Snug Harbor Community School,02430090, 252, 7.8, 349, 38.4, 61.6, 12.3, 47.6,62.5 +NA,NA,a-curv-i5,2020-21,Quincy - South West Middle School,02430320, 340, 13.9, 401, 38.4, 61.6, 12.7, 24.9,53.6 +NA,NA,a-curv-i5,2020-21,Quincy - Squantum,02430095, 237, 9.7, 299, 46.2, 53.5, 8.0, 30.4,28.1 +NA,NA,a-curv-i5,2020-21,Quincy - Wollaston School,02430110, 149, 11.6, 217, 46.1, 53.9, 26.7, 13.4,29.5 +NA,NA,a-curv-i5,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 548, 15.3, 622, 49.2, 50.6, 0.5, 22.2,47.9 +NA,NA,a-curv-i5,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 106, 17.1, 302, 45.4, 54.6, 18.5, 20.2,58.3 +NA,NA,a-curv-i5,2020-21,Randolph - J F Kennedy Elementary,02440018, 149, 14.8, 413, 46.0, 54.0, 19.9, 31.5,65.4 +NA,NA,a-curv-i5,2020-21,Randolph - Margaret L Donovan,02440015, 128, 21.2, 426, 49.3, 50.5, 22.3, 9.6,51.4 +NA,NA,a-curv-i5,2020-21,Randolph - Martin E Young Elementary,02440040, 99, 14.4, 246, 48.0, 52.0, 24.4, 21.1,58.9 +NA,NA,a-curv-i5,2020-21,Randolph - Randolph Community Middle,02440410, 346, 10.4, 684, 48.5, 51.5, 9.4, 21.5,49.9 +NA,NA,a-curv-i5,2020-21,Randolph - Randolph High,02440505, 250, 11.6, 625, 42.2, 57.8, 14.4, 21.3,53.3 +NA,NA,a-curv-i5,2020-21,Reading - Alice M Barrows,02460002, 73, 18.9, 356, 49.2, 50.8, 2.3, 15.7,7.3 +NA,NA,a-curv-i5,2020-21,Reading - Arthur W Coolidge Middle,02460305, 266, 19.0, 400, 43.8, 56.3, 0.8, 23.8,7.5 +NA,NA,a-curv-i5,2020-21,Reading - Birch Meadow,02460005, 73, 18.3, 344, 45.1, 54.9, 0.6, 20.6,6.4 +NA,NA,a-curv-i5,2020-21,Reading - J Warren Killam,02460017, 90, 19.1, 403, 45.2, 54.8, 2.5, 19.1,9.7 +NA,NA,a-curv-i5,2020-21,Reading - Joshua Eaton,02460010, 75, 19.7, 388, 49.2, 50.8, 2.8, 11.9,10.1 +NA,NA,a-curv-i5,2020-21,Reading - RISE PreSchool,02460001, 27, 13.2, 119, 30.3, 69.8, 0.0, 55.5,10.9 +NA,NA,a-curv-i5,2020-21,Reading - Reading Memorial High,02460505, 586, 17.2," 1,227", 48.7, 51.1, 0.6, 16.2,9.9 +NA,NA,a-curv-i5,2020-21,Reading - Walter S Parker Middle,02460310, 520, 13.5, 494, 52.2, 47.6, 1.4, 17.2,11.3 +NA,NA,a-curv-i5,2020-21,Reading - Wood End Elementary School,02460020, 50, 19.4, 249, 48.2, 51.8, 0.8, 16.9,10 +NA,NA,a-curv-i5,2020-21,Revere - A. C. Whelan Elementary School,02480003, 400, 20.2, 756, 47.6, 52.4, 26.3, 16.8,56.2 +NA,NA,a-curv-i5,2020-21,Revere - Abraham Lincoln,02480025, 280, 15.8, 557, 48.8, 51.2, 35.2, 22.4,58.5 +NA,NA,a-curv-i5,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 170, 14.9, 331, 43.2, 56.8, 35.7, 27.5,54.1 +NA,NA,a-curv-i5,2020-21,Revere - Garfield Elementary School,02480056, 322, 17.0, 678, 48.7, 51.2, 41.7, 16.7,69.2 +NA,NA,a-curv-i5,2020-21,Revere - Garfield Middle School,02480057, 397, 11.3, 576, 48.8, 51.2, 16.8, 10.4,57.1 +NA,NA,a-curv-i5,2020-21,Revere - Paul Revere,02480050, 242, 16.0, 455, 52.5, 47.5, 34.1, 18.2,57.1 +NA,NA,a-curv-i5,2020-21,Revere - Revere High,02480505, 881, 20.1," 2,003", 49.4, 50.6, 16.0, 11.6,54.7 +NA,NA,a-curv-i5,2020-21,Revere - Rumney Marsh Academy,02480014, 444, 11.3, 610, 46.7, 53.3, 5.3, 20.2,57.9 +NA,NA,a-curv-i5,2020-21,Revere - Seacoast School,02480520, 112, 7.0, 89, 42.7, 56.2, 7.9, 24.7,68.5 +NA,NA,a-curv-i5,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 305, 18.5, 665, 48.6, 51.4, 37.0, 17.0,61.1 +NA,NA,a-curv-i5,2020-21,Revere - Susan B. Anthony Middle School,02480305, 587, 11.5, 590, 57.6, 42.4, 17.3, 11.2,62.4 +NA,NA,a-curv-i5,2020-21,Richmond - Richmond Consolidated,02490005, 113, 14.7, 151, 50.3, 49.7, 0.0, 19.2,29.1 +NA,NA,a-curv-i5,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 303, 20.0, 668, 49.6, 50.0, 1.2, 21.4,16.6 +NA,NA,a-curv-i5,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 146, 11.7, 286, 52.8, 47.2, 0.0, 16.8,8 +NA,NA,a-curv-i5,2020-21,Rochester - Rochester Memorial,02500005, 343, 17.6, 493, 47.9, 52.1, 0.4, 21.7,20.3 +NA,NA,a-curv-i5,2020-21,Rockland - Jefferson Elementary School,02510060, 157, 12.4, 225, 49.3, 50.7, 12.0, 19.1,43.6 +NA,NA,a-curv-i5,2020-21,Rockland - John W Rogers Middle,02510305, 606, 16.2, 782, 48.3, 51.7, 6.9, 19.1,43.1 +NA,NA,a-curv-i5,2020-21,Rockland - Memorial Park,02510020, 165, 13.4, 261, 47.5, 52.5, 12.6, 18.4,43.7 +NA,NA,a-curv-i5,2020-21,Rockland - R Stewart Esten,02510025, 197, 13.6, 318, 47.2, 52.8, 9.1, 16.4,46.5 +NA,NA,a-curv-i5,2020-21,Rockland - Rockland Senior High,02510505, 321, 12.9, 625, 48.6, 51.4, 6.2, 19.0,41.1 +NA,NA,a-curv-i5,2020-21,Rockport - Rockport Elementary,02520005, 110, 16.4, 308, 47.4, 52.6, 0.7, 21.1,22.1 +NA,NA,a-curv-i5,2020-21,Rockport - Rockport High,02520510, 171, 12.4, 259, 43.6, 56.4, 1.2, 21.6,19.3 +NA,NA,a-curv-i5,2020-21,Rockport - Rockport Middle,02520305, 178, 15.8, 203, 53.2, 46.8, 0.0, 27.1,28.1 +NA,NA,a-curv-i5,2020-21,Rowe - Rowe Elementary,02530005, 21, 16.1, 63, 49.2, 50.8, 0.0, 33.3,42.9 +NA,NA,a-curv-i5,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 446, 27.0," 1,565", 50.8, 49.2, 10.0, 15.9,47.9 +NA,NA,a-curv-i5,2020-21,Salem - Bates,02580003, 173, 14.4, 358, 49.4, 50.6, 14.3, 16.2,52 +NA,NA,a-curv-i5,2020-21,Salem - Bentley Academy Innovation School,02580010, 176, 14.6, 321, 53.0, 47.0, 24.0, 12.2,75.4 +NA,NA,a-curv-i5,2020-21,Salem - Carlton,02580015, 143, 13.5, 263, 50.6, 49.4, 9.1, 22.4,44.9 +NA,NA,a-curv-i5,2020-21,Salem - Collins Middle,02580305, 330, 18.1, 666, 47.3, 52.7, 10.2, 23.7,56.8 +NA,NA,a-curv-i5,2020-21,Salem - Horace Mann Laboratory,02580030, 132, 14.8, 271, 52.8, 47.2, 22.1, 14.4,61.3 +NA,NA,a-curv-i5,2020-21,Salem - New Liberty Innovation School,02580510, 28, 6.1, 51, 56.9, 43.1, 3.9, 29.4,64.7 +NA,NA,a-curv-i5,2020-21,Salem - Salem Early Childhood,02580001, 17, 8.9, 91, 29.7, 70.3, 9.9, 49.5,62.6 +NA,NA,a-curv-i5,2020-21,Salem - Salem High,02580505, 718, 11.9, 860, 45.5, 54.3, 12.9, 23.6,57.9 +7.838383838383838,5,a-curv-i5,2020-21,Salem - Salem Prep High School,02580515, 99, 4.6, 22, 31.8, 68.2, 4.6, 90.9,63.6,20 +NA,NA,a-curv-i5,2020-21,Salem - Saltonstall School,02580050, 230, 12.3, 395, 51.4, 48.4, 11.7, 17.7,47.6 +NA,NA,a-curv-i5,2020-21,Salem - Witchcraft Heights,02580070, 199, 15.7, 489, 50.3, 49.7, 17.2, 18.0,52.4 +NA,NA,a-curv-i5,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 250, 19.0, 491, 51.1, 48.5, 3.3, 19.6,40.9 +NA,NA,a-curv-i5,2020-21,Sandwich - Forestdale School,02610002, 266, 16.6, 554, 50.4, 49.6, 3.4, 18.1,23.7 +NA,NA,a-curv-i5,2020-21,Sandwich - Oak Ridge,02610025, 515, 14.1, 725, 49.7, 50.3, 1.4, 22.1,21.2 +NA,NA,a-curv-i5,2020-21,Sandwich - Sandwich High,02610505, 374, 14.9, 628, 52.2, 47.6, 0.6, 17.8,15.1 +NA,NA,a-curv-i5,2020-21,Sandwich - Sandwich STEM Academy,02610305, 212, 18.9, 444, 50.2, 49.6, 0.2, 25.0,21.9 +NA,NA,a-curv-i5,2020-21,Saugus - Douglas Waybright,02620067, 74, 18.3, 179, 45.8, 54.2, 8.4, 13.4,43 +NA,NA,a-curv-i5,2020-21,Saugus - Lynnhurst,02620040, 91, 18.8, 242, 45.9, 54.1, 4.1, 16.1,35.5 +NA,NA,a-curv-i5,2020-21,Saugus - Oaklandvale,02620050, 85, 18.8, 219, 49.8, 50.2, 20.1, 15.1,54.8 +NA,NA,a-curv-i5,2020-21,Saugus - Saugus High,02620505, 377, 14.5, 684, 48.7, 51.0, 4.5, 14.5,32.6 +NA,NA,a-curv-i5,2020-21,Saugus - Saugus Middle School,02620305, 289, 18.3, 640, 49.5, 50.3, 5.3, 16.4,42.3 +NA,NA,a-curv-i5,2020-21,Saugus - Veterans Memorial,02620065, 183, 18.0, 461, 46.2, 53.8, 8.2, 21.7,38.6 +NA,NA,a-curv-i5,2020-21,Savoy - Emma L Miller Elementary School,02630010, 61, 5.7, 45, 42.2, 57.8, 0.0, 22.2,44.4 +NA,NA,a-curv-i5,2020-21,Scituate - Cushing Elementary,02640007, 153, 17.5, 325, 51.1, 48.9, 0.0, 14.2,6.8 +NA,NA,a-curv-i5,2020-21,Scituate - Gates Middle School,02640305, 393, 20.2, 641, 46.8, 53.0, 0.2, 15.6,13.1 +NA,NA,a-curv-i5,2020-21,Scituate - Hatherly Elementary,02640010, 110, 19.0, 256, 46.5, 53.5, 0.4, 20.7,6.3 +NA,NA,a-curv-i5,2020-21,Scituate - Jenkins Elementary School,02640015, 150, 18.1, 326, 51.5, 48.5, 0.3, 16.0,13.2 +6.508502024291498,5,a-curv-i5,2020-21,Scituate - Scituate High School,02640505, 494, 16.7, 929, 51.7, 48.3, 0.2, 12.8,11,921 +NA,NA,a-curv-i5,2020-21,Scituate - Wampatuck Elementary,02640020, 170, 17.9, 406, 47.5, 52.5, 1.2, 19.5,10.6 +NA,NA,a-curv-i5,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 346, 13.7, 458, 46.7, 52.4, 0.9, 19.9,17 +NA,NA,a-curv-i5,2020-21,Seekonk - George R Martin,02650007, 106, 18.3, 485, 53.6, 46.4, 5.4, 19.2,19 +NA,NA,a-curv-i5,2020-21,Seekonk - Mildred Aitken School,02650015, 88, 19.5, 429, 45.9, 54.1, 3.5, 21.2,11.9 +NA,NA,a-curv-i5,2020-21,Seekonk - Seekonk High,02650505, 302, 16.3, 565, 51.0, 49.0, 0.4, 16.3,15.8 +NA,NA,a-curv-i5,2020-21,Sharon - Cottage Street,02660005, 114, 17.2, 371, 49.9, 50.1, 6.5, 16.4,7.3 +NA,NA,a-curv-i5,2020-21,Sharon - East Elementary,02660010, 132, 16.9, 439, 46.7, 52.9, 7.1, 14.4,9.1 +NA,NA,a-curv-i5,2020-21,Sharon - Heights Elementary,02660015, 129, 20.2, 452, 52.4, 47.6, 4.7, 16.6,8.9 +NA,NA,a-curv-i5,2020-21,Sharon - Sharon Early Childhood Center,02660001, 4, 9.5, 38, 42.1, 57.9, 2.6, 52.6,13.2 +NA,NA,a-curv-i5,2020-21,Sharon - Sharon High,02660505, 520, 15.7," 1,130", 46.8, 53.1, 1.0, 12.2,12.1 +NA,NA,a-curv-i5,2020-21,Sharon - Sharon Middle,02660305, 524, 21.9, 878, 50.5, 49.4, 1.0, 15.3,8.9 +6.540585774058577,5,a-curv-i5,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 717, 16.3," 1,302", 39.2, 60.8, 0.1, 27.9,16.9,1308 +NA,NA,a-curv-i5,2020-21,Sherborn - Pine Hill,02690010, 217, 15.7, 391, 51.4, 48.6, 3.3, 15.6,6.9 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Beal School,02710005, 55, 13.9, 269, 49.8, 50.2, 3.7, 15.6,15.2 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Calvin Coolidge,02710015, 101, 18.5, 529, 47.3, 52.7, 7.9, 15.1,20.2 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Floral Street School,02710020, 134, 19.5, 840, 47.4, 52.6, 5.0, 11.1,13.9 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Oak Middle School,02710030, 493, 21.8, 997, 50.2, 49.8, 2.5, 15.1,14.5 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Parker Road Preschool,02710040, 14, 9.2, 129, 31.8, 68.2, 3.1, 49.6,21.7 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Sherwood Middle School,02710305, 326, 22.7, 972, 50.4, 49.5, 2.0, 14.6,14.3 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Shrewsbury Sr High,02710505," 1,092", 14.6," 1,865", 53.2, 46.7, 2.1, 9.9,13.6 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Spring Street,02710035, 97, 18.7, 562, 49.5, 50.5, 2.0, 11.4,9.1 +NA,NA,a-curv-i5,2020-21,Shrewsbury - Walter J Paton,02710025, 82, 20.1, 370, 47.6, 52.4, 1.9, 14.1,9.2 +NA,NA,a-curv-i5,2020-21,Shutesbury - Shutesbury Elementary,02720005, 55, 14.8, 116, 58.6, 41.4, 0.0, 20.7,35.3 +NA,NA,a-curv-i5,2020-21,Silver Lake - Silver Lake Regional High,07600505, 491, 15.6," 1,204", 45.9, 54.0, 1.0, 18.5,18.4 +NA,NA,a-curv-i5,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 323, 23.9, 525, 50.7, 49.0, 1.7, 18.3,20.6 +NA,NA,a-curv-i5,2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 234, 13.0, 370, 44.1, 55.7, 3.0, 27.3,43.5 +NA,NA,a-curv-i5,2020-21,Somerset - Chace Street,02730005, 210, 14.5, 304, 47.4, 52.6, 1.0, 21.7,24.3 +NA,NA,a-curv-i5,2020-21,Somerset - North Elementary,02730008, 276, 17.2, 489, 47.0, 53.0, 1.2, 17.0,25 +NA,NA,a-curv-i5,2020-21,Somerset - Somerset Middle School,02730305, 313, 23.4, 617, 49.0, 50.9, 0.8, 16.7,29 +NA,NA,a-curv-i5,2020-21,Somerset - South,02730015, 140, 15.9, 223, 48.0, 52.0, 1.4, 19.7,33.2 +6.201785714285714,5,a-curv-i5,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 448, 18.0," 1,007", 50.7, 49.3, 0.1, 14.9,17.8,1007 +NA,NA,a-curv-i5,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 249, 12.9, 543, 49.0, 51.0, 24.1, 10.7,38.9 +NA,NA,a-curv-i5,2020-21,Somerville - Arthur D Healey,02740075, 227, 11.9, 450, 49.6, 50.2, 25.8, 25.1,64.4 +NA,NA,a-curv-i5,2020-21,Somerville - Benjamin G Brown,02740015, 89, 12.2, 211, 60.2, 39.3, 1.9, 10.0,13.3 +NA,NA,a-curv-i5,2020-21,Somerville - Capuano Early Childhood Center,02740005, 41, 9.4, 206, 43.2, 56.8, 12.6, 34.0,39.8 +NA,NA,a-curv-i5,2020-21,Somerville - E Somerville Community,02740111, 290, 15.0, 709, 45.6, 54.2, 35.5, 14.1,54.9 +7.6415999999999995,5,a-curv-i5,2020-21,Somerville - Full Circle High School,02740510, 125, 9.3, 63, 36.5, 61.9, 7.9, 61.9,82.5,56 +NA,NA,a-curv-i5,2020-21,Somerville - John F Kennedy,02740083, 217, 12.6, 440, 47.5, 52.3, 3.9, 23.2,28 +NA,NA,a-curv-i5,2020-21,Somerville - Next Wave Junior High,02740410, 42, 6.1, 24, 16.7, 83.3, 8.3, 83.3,79.2 +NA,NA,a-curv-i5,2020-21,Somerville - Somerville High,02740505, 669, 12.6," 1,224", 48.1, 51.6, 13.2, 18.0,48.6 +NA,NA,a-curv-i5,2020-21,Somerville - West Somerville Neighborhood,02740115, 171, 13.2, 375, 46.1, 53.6, 5.3, 21.1,36.8 +NA,NA,a-curv-i5,2020-21,Somerville - Winter Hill Community,02740120, 246, 10.3, 383, 43.9, 55.9, 32.1, 25.9,55.6 +NA,NA,a-curv-i5,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 262, 20.3, 538, 50.4, 49.6, 4.7, 21.4,32 +NA,NA,a-curv-i5,2020-21,South Hadley - Mosier,02780020, 90, 21.1, 422, 51.4, 48.6, 5.7, 17.8,32.5 +NA,NA,a-curv-i5,2020-21,South Hadley - Plains Elementary,02780015, 57, 12.8, 265, 49.8, 50.2, 5.7, 21.5,34 +NA,NA,a-curv-i5,2020-21,South Hadley - South Hadley High,02780505, 288, 14.6, 564, 50.5, 49.3, 3.0, 16.5,27.1 +7.141130091984232,5,a-curv-i5,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 761, 12.6, 815, 41.7, 57.6, 17.9, 39.5,50.2,817 +NA,NA,a-curv-i5,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 534, 15.3," 1,013", 49.0, 50.6, 11.8, 20.0,27.6 +NA,NA,a-curv-i5,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 247, 15.0, 637, 32.7, 67.4, 0.8, 26.2,24.2 +NA,NA,a-curv-i5,2020-21,Southampton - William E Norris,02750005, 173, 15.1, 460, 45.9, 54.1, 1.7, 26.5,17.6 +NA,NA,a-curv-i5,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 63, 16.8, 253, 49.4, 50.6, 10.7, 12.3,7.5 +NA,NA,a-curv-i5,2020-21,Southborough - Margaret A Neary,02760020, 64, 17.1, 243, 49.0, 51.0, 3.7, 13.6,4.5 +NA,NA,a-curv-i5,2020-21,Southborough - Mary E Finn School,02760008, 89, 15.5, 359, 45.4, 54.6, 10.9, 23.4,8.1 +NA,NA,a-curv-i5,2020-21,Southborough - P Brent Trottier,02760305, 285, 13.8, 388, 49.0, 51.0, 3.4, 16.0,8.8 +NA,NA,a-curv-i5,2020-21,Southbridge - Charlton Street,02770005, 144, 17.3, 277, 51.3, 48.7, 17.0, 24.9,80.5 +NA,NA,a-curv-i5,2020-21,Southbridge - Eastford Road,02770010, 95, 17.3, 368, 48.6, 51.4, 15.2, 19.8,79.6 +NA,NA,a-curv-i5,2020-21,Southbridge - Southbridge Academy,02770525, 47, 6.9, 51, 33.3, 66.7, 17.7, 84.3,90.2 +6.180392156862745,5,a-curv-i5,2020-21,Southbridge - Southbridge High School,02770515, 204, 17.1, 444, 45.3, 54.7, 21.6, 15.8,74.3,464 +NA,NA,a-curv-i5,2020-21,Southbridge - Southbridge Middle School,02770315, 214, 15.3, 443, 48.1, 51.9, 22.8, 19.2,74.3 +NA,NA,a-curv-i5,2020-21,Southbridge - West Street,02770020, 191, 15.0, 304, 51.6, 48.4, 21.1, 22.0,80.9 +NA,NA,a-curv-i5,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605," 1,408", 8.2," 1,527", 52.3, 47.6, 3.6, 13.8,38.8 +NA,NA,a-curv-i5,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 224, 9.7, 322, 49.1, 50.9, 1.9, 18.0,37.3 +NA,NA,a-curv-i5,2020-21,Southern Berkshire - New Marlborough Central,07650018, 70, 12.1, 81, 51.9, 48.2, 0.0, 4.9,30.9 +NA,NA,a-curv-i5,2020-21,Southern Berkshire - South Egremont,07650030, 17, 9.3, 15, 53.3, 46.7, 0.0, 0.0,13.3 +NA,NA,a-curv-i5,2020-21,Southern Berkshire - Undermountain,07650035, 159, 15.9, 237, 50.2, 49.8, 5.5, 12.2,41.4 +7.056596173212488,5,a-curv-i5,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 993, 13.5," 1,168", 41.9, 58.1, 0.9, 13.4,27.3,1171 +NA,NA,a-curv-i5,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 161, 18.3, 421, 47.7, 52.3, 5.7, 17.6,32.8 +NA,NA,a-curv-i5,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 361, 15.1, 678, 51.5, 48.5, 1.5, 16.8,22.6 +NA,NA,a-curv-i5,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 252, 11.1, 304, 49.0, 51.0, 4.6, 19.7,28 +NA,NA,a-curv-i5,2020-21,Spencer-E Brookfield - David Prouty High,07670505, 168, 12.3, 302, 45.7, 54.3, 3.6, 19.9,43.4 +NA,NA,a-curv-i5,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 45, 16.9, 201, 46.3, 53.7, 2.0, 26.9,36.8 +NA,NA,a-curv-i5,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 151, 17.8, 416, 48.1, 51.9, 3.1, 19.2,45 +NA,NA,a-curv-i5,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 105, 16.7, 434, 44.9, 54.8, 6.0, 21.4,48.2 +NA,NA,a-curv-i5,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 387, 10.4, 420, 55.5, 44.5, 4.8, 8.8,40.7 +NA,NA,a-curv-i5,2020-21,Springfield - Alice B Beal Elementary,02810175, 343, 10.0, 269, 53.2, 46.8, 16.4, 16.7,80.7 +NA,NA,a-curv-i5,2020-21,Springfield - Arthur T Talmadge,02810165, 365, 8.6, 234, 46.6, 53.4, 10.7, 30.8,88 +NA,NA,a-curv-i5,2020-21,Springfield - Balliet Middle School,02810360, 17, 10.9, 24, 20.8, 79.2, 12.5, 37.5,100 +NA,NA,a-curv-i5,2020-21,Springfield - Brightwood,02810025, 383, 10.7, 332, 49.1, 50.6, 24.4, 30.7,93.4 +NA,NA,a-curv-i5,2020-21,Springfield - Chestnut Academy,02810365, 38, 14.2, 90, 50.0, 50.0, 0.0, 23.3,93.3 +NA,NA,a-curv-i5,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 140, 22.0, 304, 48.0, 52.0, 4.6, 17.1,73.7 +NA,NA,a-curv-i5,2020-21,Springfield - Conservatory of the Arts,02810475, 228, 11.7, 324, 70.1, 29.9, 9.9, 22.8,86.4 +NA,NA,a-curv-i5,2020-21,Springfield - Daniel B Brunton,02810035, 507, 10.2, 424, 48.8, 51.2, 16.0, 21.7,85.1 +NA,NA,a-curv-i5,2020-21,Springfield - Early Childhood Education Center,02810001, 33, 4.4, 146, 42.5, 57.5, 11.6, 74.0,86.3 +NA,NA,a-curv-i5,2020-21,Springfield - Edward P. Boland School,02810010, 589, 9.8, 625, 44.0, 56.0, 25.4, 36.6,88.2 +NA,NA,a-curv-i5,2020-21,Springfield - Elias Brookings,02810030, 403, 8.6, 295, 49.2, 50.9, 21.4, 35.6,87.1 +NA,NA,a-curv-i5,2020-21,Springfield - Emergence Academy,02810318, 10, 22.0, 22, 40.9, 59.1, 95.5, 0.0,81.8 +NA,NA,a-curv-i5,2020-21,Springfield - Forest Park Middle,02810325, 388, 15.7, 654, 46.5, 53.5, 15.3, 26.5,86.5 +NA,NA,a-curv-i5,2020-21,Springfield - Frank H Freedman,02810075, 321, 10.8, 275, 48.0, 52.0, 7.6, 21.8,76.7 +NA,NA,a-curv-i5,2020-21,Springfield - Frederick Harris,02810080, 677, 10.2, 594, 48.8, 51.2, 13.1, 25.8,74.4 +NA,NA,a-curv-i5,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 1, 25.0, 25, 76.0, 24.0, 4.0, 12.0,96 +NA,NA,a-curv-i5,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 1, 24.0, 24, 70.8, 29.2, 0.0, 12.5,70.8 +NA,NA,a-curv-i5,2020-21,Springfield - German Gerena Community School,02810195, 714, 9.7, 646, 50.3, 49.7, 21.4, 22.5,86.2 +NA,NA,a-curv-i5,2020-21,Springfield - Glenwood,02810065, 380, 9.5, 278, 49.6, 50.4, 16.2, 20.5,83.5 +NA,NA,a-curv-i5,2020-21,Springfield - Glickman Elementary,02810068, 409, 9.3, 293, 45.7, 54.3, 21.5, 36.5,81.6 +6.29399293286219,5,a-curv-i5,2020-21,Springfield - High School Of Commerce,02810510, 566, 17.7," 1,244", 49.6, 50.4, 19.6, 21.8,85.2,1207 +NA,NA,a-curv-i5,2020-21,Springfield - Hiram L Dorman,02810050, 334, 9.7, 244, 51.2, 48.8, 16.8, 21.3,86.9 +NA,NA,a-curv-i5,2020-21,Springfield - Homer Street,02810085, 487, 9.7, 372, 47.0, 53.0, 18.8, 22.0,89.3 +NA,NA,a-curv-i5,2020-21,Springfield - Impact Prep at Chestnut,02810366, 102, 24.1, 233, 47.2, 52.8, 7.7, 25.8,91 +NA,NA,a-curv-i5,2020-21,Springfield - Indian Orchard Elementary,02810100, 729, 8.6, 556, 44.8, 55.2, 14.4, 27.0,86.3 +NA,NA,a-curv-i5,2020-21,Springfield - John F Kennedy Middle,02810328, 277, 19.4, 483, 50.1, 49.9, 13.5, 30.9,90.5 +NA,NA,a-curv-i5,2020-21,Springfield - John J Duggan Middle,02810320, 507, 16.0, 762, 47.6, 52.4, 9.2, 22.6,75.9 +NA,NA,a-curv-i5,2020-21,Springfield - Kensington International School,02810110, 370, 8.5, 274, 55.5, 44.5, 25.2, 20.4,91.2 +NA,NA,a-curv-i5,2020-21,Springfield - Kiley Academy,02810316, 69, 15.9, 115, 44.4, 55.7, 7.8, 33.9,88.7 +NA,NA,a-curv-i5,2020-21,Springfield - Kiley Prep,02810315, 42, 15.0, 104, 45.2, 54.8, 5.8, 29.8,83.7 +NA,NA,a-curv-i5,2020-21,Springfield - Liberty,02810115, 350, 10.4, 281, 51.6, 48.4, 25.6, 22.4,81.1 +NA,NA,a-curv-i5,2020-21,Springfield - Liberty Preparatory Academy,02810560, 7, 2.4, 3, 0.0, 100.0, 0.0, 33.3,33.3 +NA,NA,a-curv-i5,2020-21,Springfield - Lincoln,02810120, 456, 11.5, 425, 53.7, 46.4, 31.1, 15.3,92.7 +NA,NA,a-curv-i5,2020-21,Springfield - Lyceum Academy,02810317, 232, 14.1, 369, 43.4, 56.6, 33.6, 33.6,93.8 +NA,NA,a-curv-i5,2020-21,Springfield - M Marcus Kiley Middle,02810330, 207, 22.6, 489, 44.4, 55.6, 13.9, 27.2,84.7 +NA,NA,a-curv-i5,2020-21,Springfield - Margaret C Ells,02810060, 38, 4.5, 132, 40.9, 59.1, 11.4, 64.4,78 +NA,NA,a-curv-i5,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 311, 10.7, 309, 47.3, 52.8, 16.2, 22.3,71.8 +NA,NA,a-curv-i5,2020-21,Springfield - Mary M Lynch,02810140, 297, 10.0, 232, 56.9, 43.1, 9.5, 16.4,83.6 +NA,NA,a-curv-i5,2020-21,Springfield - Mary M Walsh,02810155, 354, 9.7, 284, 48.9, 51.1, 19.4, 24.3,86.3 +NA,NA,a-curv-i5,2020-21,Springfield - Mary O Pottenger,02810145, 492, 10.4, 418, 46.7, 53.4, 15.8, 20.3,79.7 +NA,NA,a-curv-i5,2020-21,Springfield - Milton Bradley School,02810023, 615, 9.9, 538, 48.5, 51.5, 21.8, 26.0,93.3 +NA,NA,a-curv-i5,2020-21,Springfield - Rebecca M Johnson,02810055, 760, 10.5, 703, 46.4, 53.5, 19.6, 30.2,89.9 +NA,NA,a-curv-i5,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 71, 20.7, 293, 44.0, 56.0, 12.3, 23.9,84.3 +NA,NA,a-curv-i5,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 902, 13.2," 1,387", 54.3, 45.6, 11.3, 16.0,75.7 +NA,NA,a-curv-i5,2020-21,Springfield - STEM Middle Academy,02810350, 236, 10.3, 285, 43.9, 56.1, 9.1, 17.2,80 +NA,NA,a-curv-i5,2020-21,Springfield - Samuel Bowles,02810020, 365, 8.5, 241, 49.4, 50.6, 13.3, 17.4,77.2 +NA,NA,a-curv-i5,2020-21,Springfield - South End Middle School,02810355, 135, 14.4, 244, 44.3, 55.7, 19.3, 23.0,93 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield Central High,02810500, 971, 17.5," 2,051", 46.8, 53.2, 14.3, 17.9,72.9 +6.805797101449275,5,a-curv-i5,2020-21,Springfield - Springfield High School,02810570, 138, 21.9, 206, 40.8, 59.2, 11.7, 32.0,88.8,206 +6.815519399249061,5,a-curv-i5,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 799, 13.5," 1,156", 46.0, 54.0, 17.8, 23.4,83.6,1183 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 45, 6.6, 14, 50.0, 50.0, 100.0, 0.0,85.7 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 44, 13.2, 64, 25.0, 75.0, 100.0, 0.0,75 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 148, 3.8, 38, 15.8, 84.2, 10.5, 100.0,97.4 +7.357009345794393,5,a-curv-i5,2020-21,Springfield - Springfield Public Day High School,02810550, 107, 5.0, 72, 16.7, 83.3, 8.3, 100.0,97.2,86 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield Public Day Middle School,02810345, 69, 6.2, 54, 14.8, 85.2, 9.3, 100.0,100 +NA,NA,a-curv-i5,2020-21,Springfield - Springfield Vocational Academy,02810675, 30, 12.7, 70, 25.7, 74.3, 18.6, 100.0,77.1 +NA,NA,a-curv-i5,2020-21,Springfield - Sumner Avenue,02810160, 628, 8.8, 514, 46.5, 53.5, 21.0, 28.6,90.3 +NA,NA,a-curv-i5,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 465, 13.6, 636, 52.4, 47.5, 5.0, 20.6,64.5 +NA,NA,a-curv-i5,2020-21,Springfield - Thomas M Balliet,02810015, 312, 10.9, 297, 46.5, 53.5, 9.4, 20.2,73.7 +NA,NA,a-curv-i5,2020-21,Springfield - Van Sickle Academy,02810485, 195, 11.5, 279, 48.0, 51.6, 16.5, 31.5,81.4 +NA,NA,a-curv-i5,2020-21,Springfield - Warner,02810180, 315, 8.0, 243, 42.0, 58.0, 13.2, 17.3,76.5 +NA,NA,a-curv-i5,2020-21,Springfield - Washington,02810185, 550, 8.4, 406, 49.0, 51.0, 22.4, 27.3,86.2 +NA,NA,a-curv-i5,2020-21,Springfield - White Street,02810190, 546, 10.1, 425, 46.8, 53.2, 22.6, 15.8,90.1 +NA,NA,a-curv-i5,2020-21,Springfield - William N. DeBerry,02810045, 365, 9.4, 279, 50.5, 49.5, 24.4, 29.4,92.5 +NA,NA,a-curv-i5,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 87, 32.5, 374, 48.4, 51.6, 16.0, 20.3,70.9 +NA,NA,a-curv-i5,2020-21,Stoneham - Colonial Park,02840005, 91, 18.0, 224, 42.0, 58.0, 1.3, 23.2,16.1 +NA,NA,a-curv-i5,2020-21,Stoneham - Robin Hood,02840025, 132, 17.9, 315, 49.5, 50.5, 5.1, 22.5,19.1 +NA,NA,a-curv-i5,2020-21,Stoneham - South,02840030, 119, 16.9, 279, 53.4, 46.6, 9.0, 24.0,22.9 +NA,NA,a-curv-i5,2020-21,Stoneham - Stoneham Central Middle School,02840405, 605, 11.6, 713, 48.5, 51.3, 2.8, 19.4,21.6 +NA,NA,a-curv-i5,2020-21,Stoneham - Stoneham High,02840505, 442, 12.2, 615, 49.3, 50.7, 2.8, 17.9,17.7 +NA,NA,a-curv-i5,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 13, 7.6, 93, 40.9, 59.1, 2.2, 60.2,47.3 +NA,NA,a-curv-i5,2020-21,Stoughton - Helen Hansen Elementary,02850010, 114, 14.2, 226, 48.7, 51.3, 4.0, 16.8,35.8 +NA,NA,a-curv-i5,2020-21,Stoughton - Joseph H Gibbons,02850025, 163, 14.6, 306, 48.0, 52.0, 9.5, 17.0,36 +NA,NA,a-curv-i5,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 163, 14.9, 303, 42.2, 57.8, 10.6, 20.1,38 +NA,NA,a-curv-i5,2020-21,Stoughton - O'Donnell Middle School,02850405, 444, 17.7, 842, 50.2, 49.8, 6.3, 17.0,40.4 +NA,NA,a-curv-i5,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 107, 15.4, 211, 50.7, 49.3, 24.2, 15.2,58.8 +NA,NA,a-curv-i5,2020-21,Stoughton - South Elementary,02850015, 106, 15.7, 214, 48.1, 51.9, 3.3, 14.0,26.6 +NA,NA,a-curv-i5,2020-21,Stoughton - Stoughton High,02850505, 664, 16.9," 1,031", 46.7, 53.4, 5.6, 13.9,35.2 +NA,NA,a-curv-i5,2020-21,Sturbridge - Burgess Elementary,02870005, 279, 17.9, 794, 46.0, 54.0, 3.5, 16.5,18.8 +NA,NA,a-curv-i5,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 453, 14.1, 853, 57.7, 42.2, 1.4, 15.8,15.4 +NA,NA,a-curv-i5,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 982, 10.5, 914, 49.6, 50.3, 0.8, 23.0,5.4 +NA,NA,a-curv-i5,2020-21,Sudbury - General John Nixon Elementary,02880025, 195, 20.2, 304, 54.0, 46.1, 3.0, 15.5,6.9 +NA,NA,a-curv-i5,2020-21,Sudbury - Israel Loring School,02880015, 263, 19.3, 423, 49.7, 50.1, 4.7, 18.4,14.7 +NA,NA,a-curv-i5,2020-21,Sudbury - Josiah Haynes,02880010, 187, 19.8, 337, 44.8, 55.2, 2.4, 18.1,5.3 +NA,NA,a-curv-i5,2020-21,Sudbury - Peter Noyes,02880030, 291, 21.2, 570, 43.5, 56.3, 1.9, 22.6,5.1 +NA,NA,a-curv-i5,2020-21,Sunderland - Sunderland Elementary,02890005, 153, 13.3, 190, 47.4, 52.1, 7.4, 21.1,41.1 +NA,NA,a-curv-i5,2020-21,Sutton - Sutton Early Learning,02900003, 69, 19.3, 302, 45.0, 55.0, 2.7, 22.9,20.9 +NA,NA,a-curv-i5,2020-21,Sutton - Sutton Elementary,02900005, 101, 21.0, 275, 50.9, 49.1, 4.0, 23.6,12 +6.438297872340425,5,a-curv-i5,2020-21,Sutton - Sutton High School,02900510, 188, 13.4, 359, 49.0, 50.7, 1.4, 7.0,16.4,367 +NA,NA,a-curv-i5,2020-21,Sutton - Sutton Middle School,02900305, 105, 19.7, 322, 51.6, 48.5, 0.6, 18.0,13 +NA,NA,a-curv-i5,2020-21,Swampscott - Clarke,02910005, 96, 16.8, 202, 42.1, 57.9, 19.8, 22.8,30.7 +NA,NA,a-curv-i5,2020-21,Swampscott - Hadley,02910010, 132, 18.1, 299, 48.5, 51.5, 10.0, 14.7,20.1 +NA,NA,a-curv-i5,2020-21,Swampscott - Stanley,02910020, 100, 17.6, 222, 46.4, 53.6, 5.4, 20.7,6.8 +NA,NA,a-curv-i5,2020-21,Swampscott - Swampscott High,02910505, 399, 14.9, 688, 52.5, 47.5, 0.6, 16.0,18 +NA,NA,a-curv-i5,2020-21,Swampscott - Swampscott Middle,02910305, 481, 17.8, 723, 48.3, 51.7, 3.6, 21.9,18.3 +NA,NA,a-curv-i5,2020-21,Swansea - Elizabeth S Brown,02920006, 243, 10.1, 273, 46.5, 53.5, 1.5, 10.6,24.9 +NA,NA,a-curv-i5,2020-21,Swansea - Gardner,02920015, 243, 9.5, 253, 51.4, 48.6, 0.4, 7.9,26.5 +NA,NA,a-curv-i5,2020-21,Swansea - Joseph Case High,02920505, 472, 8.0, 545, 46.2, 53.8, 0.0, 11.6,20.7 +NA,NA,a-curv-i5,2020-21,Swansea - Joseph Case Jr High,02920305, 395, 9.9, 538, 50.2, 49.8, 0.6, 11.5,23.2 +NA,NA,a-curv-i5,2020-21,Swansea - Joseph G Luther,02920020, 201, 8.8, 198, 50.5, 49.5, 0.0, 13.1,23.7 +NA,NA,a-curv-i5,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 232, 7.0, 206, 50.0, 50.0, 0.0, 18.0,23.3 +NA,NA,a-curv-i5,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 592, 45.8," 2,661", 56.4, 43.6, 1.2, 18.8,44.9 +NA,NA,a-curv-i5,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 371, 19.2, 587, 47.5, 52.5, 1.0, 15.2,23.3 +NA,NA,a-curv-i5,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 730, 12.9," 1,182", 49.0, 50.9, 0.6, 9.0,23.1 +NA,NA,a-curv-i5,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 72, 11.4, 492, 39.8, 60.0, 0.8, 13.0,28.3 +NA,NA,a-curv-i5,2020-21,Taunton - Benjamin Friedman Middle,02930315, 351, 22.1, 794, 47.1, 52.9, 2.1, 18.4,49 +NA,NA,a-curv-i5,2020-21,Taunton - East Taunton Elementary,02930010, 250, 17.1, 544, 52.2, 47.8, 6.1, 20.6,47.1 +NA,NA,a-curv-i5,2020-21,Taunton - Edmund Hatch Bennett,02930007, 117, 19.8, 295, 48.5, 51.5, 3.4, 17.0,42 +NA,NA,a-curv-i5,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 20, 10.9, 216, 37.5, 62.5, 11.1, 69.4,52.8 +NA,NA,a-curv-i5,2020-21,Taunton - Elizabeth Pole,02930027, 251, 16.8, 540, 49.3, 50.7, 12.8, 19.4,63.7 +NA,NA,a-curv-i5,2020-21,Taunton - H H Galligan,02930057, 101, 18.4, 239, 48.1, 51.9, 15.5, 19.7,73.2 +NA,NA,a-curv-i5,2020-21,Taunton - John F Parker Middle,02930305, 213, 22.1, 491, 49.3, 50.7, 7.1, 24.6,60.9 +NA,NA,a-curv-i5,2020-21,Taunton - Joseph C Chamberlain,02930008, 189, 19.5, 469, 49.9, 50.1, 5.1, 18.3,44.1 +NA,NA,a-curv-i5,2020-21,Taunton - Joseph H Martin,02930042, 364, 20.1, 678, 50.6, 49.4, 2.7, 20.4,48.4 +NA,NA,a-curv-i5,2020-21,Taunton - Mulcahey Elementary School,02930015, 346, 16.9, 769, 48.6, 51.4, 9.5, 19.3,63.5 +7.223300970873787,5,a-curv-i5,2020-21,Taunton - Taunton Alternative High School,02930525, 103, 10.1, 153, 41.8, 58.2, 7.2, 25.5,73.9,100 +NA,NA,a-curv-i5,2020-21,Taunton - Taunton High,02930505, 994, 20.8," 2,713", 49.6, 50.4, 4.8, 16.6,47.8 +NA,NA,a-curv-i5,2020-21,Tewksbury - Heath-Brook,02950010, 138, 14.7, 308, 46.4, 53.6, 6.5, 17.2,17.5 +NA,NA,a-curv-i5,2020-21,Tewksbury - John F. Ryan,02950023, 299, 17.1, 481, 51.4, 48.7, 1.7, 17.7,20.2 +NA,NA,a-curv-i5,2020-21,Tewksbury - John W. Wynn Middle,02950305, 246, 18.8, 514, 48.3, 51.6, 1.4, 17.1,17.1 +NA,NA,a-curv-i5,2020-21,Tewksbury - L F Dewing,02950001, 148, 18.5, 577, 46.1, 53.9, 3.6, 26.3,18.7 +NA,NA,a-curv-i5,2020-21,Tewksbury - Louise Davy Trahan,02950025, 117, 18.8, 244, 52.1, 48.0, 2.5, 14.8,16 +NA,NA,a-curv-i5,2020-21,Tewksbury - North Street,02950020, 144, 16.4, 262, 52.3, 47.7, 1.5, 21.8,17.2 +NA,NA,a-curv-i5,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 395, 19.3, 835, 53.4, 46.2, 0.8, 12.3,18.7 +NA,NA,a-curv-i5,2020-21,Tisbury - Tisbury Elementary,02960005, 202, 13.9, 292, 47.6, 52.4, 26.0, 18.2,43.8 +NA,NA,a-curv-i5,2020-21,Topsfield - Proctor Elementary,02980005, 91, 17.1, 255, 49.4, 50.6, 0.0, 18.8,5.5 +NA,NA,a-curv-i5,2020-21,Topsfield - Steward Elementary,02980010, 113, 13.5, 330, 50.9, 49.1, 0.6, 20.0,4.2 +NA,NA,a-curv-i5,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 569, 16.6, 946, 38.4, 61.2, 0.2, 31.0,20.8 +NA,NA,a-curv-i5,2020-21,Triton - Newbury Elementary,07730020, 197, 16.8, 390, 46.2, 53.9, 0.3, 21.5,18.5 +NA,NA,a-curv-i5,2020-21,Triton - Pine Grove,07730025, 207, 16.8, 434, 50.2, 49.8, 0.7, 18.2,21.9 +NA,NA,a-curv-i5,2020-21,Triton - Salisbury Elementary,07730015, 178, 21.0, 453, 51.2, 48.8, 2.2, 16.6,41.7 +6.395031055900621,5,a-curv-i5,2020-21,Triton - Triton Regional High School,07730505, 322, 13.6, 635, 50.2, 49.8, 1.4, 14.7,22.4,646 +NA,NA,a-curv-i5,2020-21,Triton - Triton Regional Middle School,07730405, 220, 18.5, 370, 45.4, 54.3, 0.8, 19.5,29.2 +NA,NA,a-curv-i5,2020-21,Truro - Truro Central,03000005, 61, 15.4, 113, 48.7, 51.3, 0.0, 17.7,38.1 +NA,NA,a-curv-i5,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 467, 17.8, 760, 48.6, 51.5, 9.0, 24.3,24.1 +6.943620178041543,5,a-curv-i5,2020-21,Tyngsborough - Tyngsborough High School,03010505, 337, 16.7, 448, 54.7, 45.3, 1.1, 12.5,17,445 +NA,NA,a-curv-i5,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 162, 19.1, 396, 45.2, 54.8, 2.5, 17.7,15.9 +NA,NA,a-curv-i5,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 138, 22.1, 364, 47.3, 52.8, 24.5, 27.8,80 +NA,NA,a-curv-i5,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 138, 31.9, 722, 50.4, 49.6, 33.1, 15.4,75.8 +NA,NA,a-curv-i5,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 18, 14.4, 55, 50.9, 49.1, 0.0, 10.9,10.9 +NA,NA,a-curv-i5,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 126, 14.3, 337, 45.4, 54.3, 5.6, 20.8,26.1 +NA,NA,a-curv-i5,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 346, 14.1, 708, 38.7, 61.3, 0.0, 25.6,33.6 +NA,NA,a-curv-i5,2020-21,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2020-21,Uxbridge - Taft Early Learning Center,03040005, 231, 14.6, 504, 46.2, 53.8, 2.8, 23.8,28 +NA,NA,a-curv-i5,2020-21,Uxbridge - Uxbridge High,03040505, 328, 14.0, 595, 46.2, 53.8, 1.3, 17.1,22 +NA,NA,a-curv-i5,2020-21,Uxbridge - Whitin Intermediate,03040405, 258, 19.5, 498, 44.0, 56.0, 1.2, 12.9,22.9 +NA,NA,a-curv-i5,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 75, 27.0, 405, 53.6, 46.4, 4.7, 23.2,79.8 +NA,NA,a-curv-i5,2020-21,Wachusett - Central Tree Middle,07750310, 188, 16.9, 353, 49.3, 50.7, 0.6, 16.2,20.4 +NA,NA,a-curv-i5,2020-21,Wachusett - Chocksett Middle School,07750315, 179, 16.1, 304, 47.4, 52.6, 0.3, 16.5,14.8 +NA,NA,a-curv-i5,2020-21,Wachusett - Davis Hill Elementary,07750018, 164, 18.6, 428, 50.2, 49.8, 2.1, 12.4,13.3 +NA,NA,a-curv-i5,2020-21,Wachusett - Dawson,07750020, 161, 20.0, 446, 51.1, 48.9, 5.4, 10.5,10.5 +NA,NA,a-curv-i5,2020-21,Wachusett - Early Childhood Center,07750001, 9, 15.0, 125, 36.0, 64.0, 0.0, 51.2,19.2 +NA,NA,a-curv-i5,2020-21,Wachusett - Glenwood Elementary School,07750060, 153, 18.7, 347, 52.2, 47.8, 3.5, 12.1,16.1 +NA,NA,a-curv-i5,2020-21,Wachusett - Houghton Elementary,07750027, 139, 15.8, 308, 42.2, 57.8, 3.3, 20.8,14.9 +NA,NA,a-curv-i5,2020-21,Wachusett - Leroy E.Mayo,07750032, 173, 19.9, 486, 48.2, 51.9, 3.3, 8.6,13.6 +NA,NA,a-curv-i5,2020-21,Wachusett - Mountview Middle,07750305, 334, 21.3, 781, 47.6, 52.4, 1.7, 14.3,13.6 +NA,NA,a-curv-i5,2020-21,Wachusett - Naquag Elementary School,07750005, 124, 17.4, 295, 48.5, 51.5, 3.7, 13.2,14.6 +NA,NA,a-curv-i5,2020-21,Wachusett - Paxton Center,07750040, 179, 19.1, 448, 52.5, 47.5, 4.2, 19.4,15.9 +NA,NA,a-curv-i5,2020-21,Wachusett - Thomas Prince,07750045, 134, 19.6, 350, 45.7, 54.3, 0.0, 16.0,8.9 +NA,NA,a-curv-i5,2020-21,Wachusett - Wachusett Regional High,07750505," 1,095", 16.6," 1,985", 52.2, 47.8, 0.4, 13.8,12.7 +NA,NA,a-curv-i5,2020-21,Wakefield - Dolbeare,03050005, 100, 21.4, 427, 49.0, 51.1, 4.7, 17.1,12.7 +NA,NA,a-curv-i5,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 9, 9.2, 83, 31.3, 68.7, 0.0, 42.2,14.5 +NA,NA,a-curv-i5,2020-21,Wakefield - Galvin Middle School,03050310, 679, 14.8," 1,046", 48.9, 51.0, 1.2, 18.6,15.4 +NA,NA,a-curv-i5,2020-21,Wakefield - Greenwood,03050020, 50, 20.5, 205, 42.0, 58.1, 1.5, 10.7,7.8 +NA,NA,a-curv-i5,2020-21,Wakefield - Wakefield Memorial High,03050505, 344, 14.3, 829, 50.7, 49.3, 1.7, 15.9,13.3 +NA,NA,a-curv-i5,2020-21,Wakefield - Walton,03050040, 50, 19.8, 198, 45.5, 54.6, 3.0, 12.1,8.6 +NA,NA,a-curv-i5,2020-21,Wakefield - Woodville School,03050015, 105, 18.1, 380, 52.9, 47.1, 6.6, 14.7,21.6 +NA,NA,a-curv-i5,2020-21,Wales - Wales Elementary,03060005, 39, 16.9, 128, 44.5, 55.5, 0.8, 18.8,44.5 +NA,NA,a-curv-i5,2020-21,Walpole - Bird Middle,03070305, 256, 15.7, 404, 50.7, 49.3, 2.0, 17.1,16.1 +NA,NA,a-curv-i5,2020-21,Walpole - Boyden,03070010, 107, 12.9, 346, 50.0, 50.0, 8.1, 12.7,17.6 +NA,NA,a-curv-i5,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 8, 10.4, 83, 41.0, 59.0, 13.3, 55.4,20.5 +NA,NA,a-curv-i5,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 251, 16.7, 427, 45.7, 54.3, 1.9, 12.7,14.1 +NA,NA,a-curv-i5,2020-21,Walpole - Elm Street School,03070005, 112, 15.4, 432, 53.0, 46.8, 5.8, 10.7,9 +NA,NA,a-curv-i5,2020-21,Walpole - Fisher,03070015, 112, 16.6, 464, 50.9, 49.1, 4.1, 16.0,11.4 +NA,NA,a-curv-i5,2020-21,Walpole - Old Post Road,03070018, 120, 15.4, 462, 52.4, 47.6, 2.8, 7.4,13.6 +NA,NA,a-curv-i5,2020-21,Walpole - Walpole High,03070505, 536, 14.8," 1,043", 49.6, 50.3, 2.5, 15.2,11.9 +NA,NA,a-curv-i5,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 243, 16.1, 387, 48.1, 51.9, 5.7, 14.0,17.8 +NA,NA,a-curv-i5,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 200, 18.4, 373, 50.7, 49.3, 62.2, 10.5,67.8 +NA,NA,a-curv-i5,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 236, 14.2, 333, 47.2, 52.9, 18.9, 14.1,33.6 +NA,NA,a-curv-i5,2020-21,Waltham - John F Kennedy Middle,03080404, 335, 13.7, 468, 45.3, 54.7, 7.3, 15.0,35.9 +NA,NA,a-curv-i5,2020-21,Waltham - John W. McDevitt Middle School,03080415, 350, 15.4, 630, 48.9, 51.1, 19.8, 19.7,48.3 +NA,NA,a-curv-i5,2020-21,Waltham - Northeast Elementary School,03080040, 248, 15.1, 440, 50.2, 49.8, 26.8, 18.4,46.8 +NA,NA,a-curv-i5,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 185, 17.3, 315, 47.3, 52.7, 29.8, 17.8,44.4 +NA,NA,a-curv-i5,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 80, 16.8, 175, 48.0, 52.0, 56.6, 6.3,46.9 +NA,NA,a-curv-i5,2020-21,Waltham - Waltham Sr High,03080505, 772, 14.5," 1,532", 47.0, 52.9, 16.7, 15.8,41.5 +NA,NA,a-curv-i5,2020-21,Waltham - William F. Stanley Elementary School,03080005, 265, 11.9, 388, 40.5, 59.5, 28.6, 32.2,42.3 +NA,NA,a-curv-i5,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 70, 21.1, 366, 52.7, 47.0, 3.0, 18.9,68.6 +6.219574468085106,5,a-curv-i5,2020-21,Ware - Ware Junior/Senior High School,03090505, 235, 18.0, 530, 48.1, 51.9, 0.6, 21.9,51.5,523 +NA,NA,a-curv-i5,2020-21,Ware - Ware Middle School,03090305, 104, 19.7, 272, 46.0, 54.0, 2.2, 21.3,59.9 +NA,NA,a-curv-i5,2020-21,Wareham - John William Decas,03100003, 336, 13.7, 570, 51.4, 48.6, 3.0, 24.9,64.2 +NA,NA,a-curv-i5,2020-21,Wareham - Minot Forest,03100017, 150, 16.9, 316, 54.1, 45.9, 2.5, 24.7,63.3 +NA,NA,a-curv-i5,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 23, 5.3, 47, 31.9, 68.1, 0.0, 31.9,80.9 +NA,NA,a-curv-i5,2020-21,Wareham - Wareham Middle,03100305, 309, 15.0, 549, 49.0, 51.0, 0.6, 26.2,57.6 +NA,NA,a-curv-i5,2020-21,Wareham - Wareham Senior High,03100505, 501, 11.8, 591, 50.9, 48.7, 0.2, 28.4,52.5 +NA,NA,a-curv-i5,2020-21,Watertown - Cunniff,03140015, 232, 9.9, 255, 50.6, 49.4, 14.1, 19.2,25.5 +NA,NA,a-curv-i5,2020-21,Watertown - Hosmer,03140020, 386, 12.4, 610, 47.9, 52.1, 20.2, 24.9,27.4 +NA,NA,a-curv-i5,2020-21,Watertown - James Russell Lowell,03140025, 311, 11.4, 396, 49.0, 51.0, 20.5, 19.2,29.3 +NA,NA,a-curv-i5,2020-21,Watertown - Watertown High,03140505, 408, 14.4, 707, 47.0, 53.0, 10.0, 15.7,37.3 +NA,NA,a-curv-i5,2020-21,Watertown - Watertown Middle,03140305, 482, 13.2, 575, 47.7, 52.4, 9.2, 20.2,37.6 +NA,NA,a-curv-i5,2020-21,Wayland - Claypit Hill School,03150005, 213, 19.5, 508, 51.6, 48.4, 4.1, 20.5,6.3 +NA,NA,a-curv-i5,2020-21,Wayland - Happy Hollow School,03150015, 148, 20.0, 364, 47.0, 53.0, 6.0, 17.6,9.1 +NA,NA,a-curv-i5,2020-21,Wayland - Loker School,03150020, 147, 20.1, 365, 50.4, 49.6, 8.0, 10.7,5.8 +6.267357512953367,5,a-curv-i5,2020-21,Wayland - Wayland High School,03150505, 386, 15.1, 834, 49.9, 50.1, 1.4, 19.8,7,836 +NA,NA,a-curv-i5,2020-21,Wayland - Wayland Middle School,03150305, 478, 13.6, 648, 52.0, 47.8, 1.5, 20.5,8.2 +6.6255506607929515,5,a-curv-i5,2020-21,Webster - Bartlett High School,03160505, 227, 14.7, 386, 51.8, 48.2, 9.8, 18.1,59.6,390 +NA,NA,a-curv-i5,2020-21,Webster - Park Avenue Elementary,03160015, 297, 15.6, 703, 46.1, 53.9, 15.4, 27.2,66.9 +NA,NA,a-curv-i5,2020-21,Webster - Webster Middle School,03160315, 299, 20.6, 590, 46.6, 53.4, 9.5, 20.2,63.6 +NA,NA,a-curv-i5,2020-21,Wellesley - Ernest F Upham,03170050, 108, 12.8, 154, 49.4, 50.7, 0.0, 26.6,7.1 +NA,NA,a-curv-i5,2020-21,Wellesley - Hunnewell,03170025, 117, 16.0, 208, 49.0, 51.0, 0.0, 20.2,4.8 +NA,NA,a-curv-i5,2020-21,Wellesley - John D Hardy,03170020, 111, 16.3, 201, 52.2, 47.8, 8.5, 16.4,9.5 +NA,NA,a-curv-i5,2020-21,Wellesley - Joseph E Fiske,03170015, 158, 14.3, 252, 50.0, 50.0, 8.3, 9.5,8.7 +NA,NA,a-curv-i5,2020-21,Wellesley - Katharine Lee Bates,03170005, 135, 17.6, 264, 50.8, 49.2, 0.0, 11.7,3.4 +NA,NA,a-curv-i5,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 12, 8.4, 86, 38.4, 61.6, 0.0, 62.8,8.1 +NA,NA,a-curv-i5,2020-21,Wellesley - Schofield,03170045, 168, 15.3, 290, 52.1, 47.9, 2.8, 12.4,8.3 +NA,NA,a-curv-i5,2020-21,Wellesley - Sprague Elementary School,03170048, 158, 15.4, 268, 47.0, 53.0, 5.6, 20.2,8.6 +NA,NA,a-curv-i5,2020-21,Wellesley - Wellesley Middle,03170305, 719, 14.2," 1,077", 54.3, 45.6, 1.1, 17.0,7.2 +NA,NA,a-curv-i5,2020-21,Wellesley - Wellesley Sr High,03170505, 732, 15.1," 1,468", 48.6, 51.3, 0.2, 16.4,6.7 +NA,NA,a-curv-i5,2020-21,Wellfleet - Wellfleet Elementary,03180005, 88, 11.7, 99, 46.5, 53.5, 1.0, 15.2,29.3 +NA,NA,a-curv-i5,2020-21,West Boylston - Major Edwards Elementary,03220005, 240, 15.3, 394, 46.7, 53.3, 5.3, 21.8,26.7 +NA,NA,a-curv-i5,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 377, 13.0, 501, 54.5, 45.5, 1.8, 15.0,23.6 +NA,NA,a-curv-i5,2020-21,West Bridgewater - Howard School,03230305, 146, 20.0, 300, 50.3, 49.7, 1.7, 12.7,18 +NA,NA,a-curv-i5,2020-21,West Bridgewater - Rose L Macdonald,03230003, 218, 18.3, 294, 47.6, 52.4, 3.1, 9.2,21.4 +NA,NA,a-curv-i5,2020-21,West Bridgewater - Spring Street School,03230005, 70, 21.9, 165, 46.7, 53.3, 3.6, 16.4,18.2 +NA,NA,a-curv-i5,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 436, 18.1, 655, 51.0, 49.0, 1.2, 9.0,22.4 +NA,NA,a-curv-i5,2020-21,West Springfield - Cowing Early Childhood,03320001, 14, 7.1, 99, 30.3, 69.7, 3.0, 74.8,61.6 +NA,NA,a-curv-i5,2020-21,West Springfield - John Ashley,03320005, 56, 17.1, 240, 45.8, 54.2, 1.7, 12.5,48.3 +NA,NA,a-curv-i5,2020-21,West Springfield - John R Fausey,03320010, 157, 13.0, 405, 53.8, 46.2, 5.2, 14.8,37 +NA,NA,a-curv-i5,2020-21,West Springfield - Memorial,03320025, 81, 10.7, 172, 47.7, 52.3, 2.9, 23.3,76.7 +NA,NA,a-curv-i5,2020-21,West Springfield - Mittineague,03320030, 77, 10.8, 165, 50.9, 49.1, 3.0, 16.4,42.4 +NA,NA,a-curv-i5,2020-21,West Springfield - Philip G Coburn,03320007, 182, 13.1, 475, 52.0, 48.0, 47.0, 13.7,77.5 +NA,NA,a-curv-i5,2020-21,West Springfield - Tatham,03320040, 82, 15.0, 241, 46.9, 53.1, 2.9, 11.2,32.8 +NA,NA,a-curv-i5,2020-21,West Springfield - West Springfield High,03320505," 1,278", 7.2," 1,190", 48.7, 51.3, 6.6, 19.9,45 +NA,NA,a-curv-i5,2020-21,West Springfield - West Springfield Middle,03320305, 440, 17.3, 925, 47.4, 52.7, 5.6, 16.8,50.9 +NA,NA,a-curv-i5,2020-21,Westborough - Annie E Fales,03210010, 136, 17.8, 323, 51.1, 48.9, 8.7, 14.2,4.6 +NA,NA,a-curv-i5,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 166, 17.3, 465, 46.7, 53.3, 40.2, 18.3,19.4 +NA,NA,a-curv-i5,2020-21,Westborough - J Harding Armstrong,03210005, 153, 17.9, 371, 46.1, 53.9, 20.0, 17.0,10 +NA,NA,a-curv-i5,2020-21,Westborough - Mill Pond School,03210045, 370, 19.5, 864, 49.0, 51.0, 8.2, 20.1,12.6 +NA,NA,a-curv-i5,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 445, 14.4, 634, 53.3, 46.7, 6.2, 15.0,12.9 +NA,NA,a-curv-i5,2020-21,Westborough - Westborough High,03210505, 728, 13.6," 1,188", 49.8, 49.9, 3.5, 10.6,12.7 +NA,NA,a-curv-i5,2020-21,Westfield - Abner Gibbs,03250020, 128, 15.3, 202, 43.6, 56.4, 0.5, 16.3,65.8 +NA,NA,a-curv-i5,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 19, 6.5, 122, 46.7, 53.3, 1.6, 70.5,54.1 +NA,NA,a-curv-i5,2020-21,Westfield - Franklin Ave,03250015, 116, 16.5, 198, 53.5, 46.5, 3.5, 20.2,65.2 +NA,NA,a-curv-i5,2020-21,Westfield - Highland,03250025, 193, 15.9, 304, 50.0, 50.0, 19.1, 18.4,48 +NA,NA,a-curv-i5,2020-21,Westfield - Munger Hill,03250033, 200, 19.1, 379, 49.9, 50.1, 16.6, 19.0,41.7 +NA,NA,a-curv-i5,2020-21,Westfield - Paper Mill,03250036, 186, 17.1, 317, 50.8, 49.2, 2.8, 23.0,49.2 +NA,NA,a-curv-i5,2020-21,Westfield - Southampton Road,03250040, 141, 19.1, 268, 49.3, 50.8, 3.4, 17.2,36.9 +NA,NA,a-curv-i5,2020-21,Westfield - Westfield High,03250505, 595, 15.0," 1,110", 53.7, 46.3, 3.6, 20.7,31.9 +NA,NA,a-curv-i5,2020-21,Westfield - Westfield Intermediate School,03250075, 427, 16.8, 701, 47.2, 52.8, 3.9, 16.6,42.9 +NA,NA,a-curv-i5,2020-21,Westfield - Westfield Middle School,03250310, 409, 15.5, 774, 49.6, 50.4, 4.4, 22.6,42.3 +NA,NA,a-curv-i5,2020-21,Westfield - Westfield Technical Academy,03250605, 275, 14.0, 560, 34.8, 65.2, 3.2, 27.1,41.6 +NA,NA,a-curv-i5,2020-21,Westford - Abbot Elementary,03260004, 266, 9.5, 360, 47.2, 52.8, 1.7, 15.8,7.2 +NA,NA,a-curv-i5,2020-21,Westford - Blanchard Middle,03260310, 501, 11.0, 543, 50.8, 49.0, 1.5, 15.8,7.4 +NA,NA,a-curv-i5,2020-21,Westford - Col John Robinson,03260025, 189, 10.1, 296, 48.3, 51.7, 8.1, 18.9,8.8 +NA,NA,a-curv-i5,2020-21,Westford - Day Elementary,03260007, 217, 10.7, 330, 53.9, 46.1, 2.1, 13.3,7.3 +NA,NA,a-curv-i5,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 238, 10.3, 350, 49.7, 50.3, 1.4, 19.4,7.4 +NA,NA,a-curv-i5,2020-21,Westford - Nabnasset,03260015, 233, 9.9, 349, 52.7, 47.3, 1.2, 18.9,6.6 +NA,NA,a-curv-i5,2020-21,Westford - Rita E. Miller Elementary School,03260055, 200, 9.6, 301, 47.2, 52.8, 12.6, 29.2,17.9 +NA,NA,a-curv-i5,2020-21,Westford - Stony Brook School,03260330, 483, 13.4, 604, 51.5, 48.2, 0.3, 16.1,7 +NA,NA,a-curv-i5,2020-21,Westford - Westford Academy,03260505, 737, 18.0," 1,628", 49.1, 50.8, 0.7, 12.6,6.3 +NA,NA,a-curv-i5,2020-21,Westhampton - Westhampton Elementary School,03270005, 65, 12.7, 110, 41.8, 58.2, 0.0, 27.3,26.4 +NA,NA,a-curv-i5,2020-21,Weston - Country,03300010, 122, 14.4, 327, 52.3, 47.7, 5.2, 12.5,7.7 +NA,NA,a-curv-i5,2020-21,Weston - Field Elementary School,03300012, 101, 23.3, 284, 50.0, 50.0, 3.2, 14.8,7 +NA,NA,a-curv-i5,2020-21,Weston - Weston High,03300505, 484, 11.7, 627, 49.3, 50.7, 2.2, 21.2,4.8 +NA,NA,a-curv-i5,2020-21,Weston - Weston Middle,03300305, 267, 14.9, 461, 46.0, 54.0, 3.0, 17.6,7.4 +NA,NA,a-curv-i5,2020-21,Weston - Woodland,03300015, 66, 15.9, 206, 49.5, 50.0, 6.8, 14.1,8.3 +NA,NA,a-curv-i5,2020-21,Westport - Alice A Macomber,03310015, 194, 14.6, 362, 51.1, 48.9, 2.2, 23.8,33.7 +NA,NA,a-curv-i5,2020-21,Westport - Westport Elementary,03310030, 246, 17.8, 464, 45.3, 54.7, 0.9, 19.4,27.6 +6.916256157635468,5,a-curv-i5,2020-21,Westport - Westport Junior/Senior High School,03310515, 406, 13.9, 553, 45.8, 53.9, 0.7, 16.5,27.7,550 +NA,NA,a-curv-i5,2020-21,Westwood - Deerfield School,03350010, 91, 13.9, 180, 43.3, 56.7, 3.3, 23.3,6.1 +NA,NA,a-curv-i5,2020-21,Westwood - Downey,03350012, 106, 18.8, 287, 42.2, 57.8, 2.4, 27.9,6.3 +NA,NA,a-curv-i5,2020-21,Westwood - E W Thurston Middle,03350305, 763, 9.3, 687, 46.4, 53.6, 0.4, 22.0,8.6 +NA,NA,a-curv-i5,2020-21,Westwood - Martha Jones,03350017, 119, 15.9, 270, 51.1, 48.9, 0.7, 14.1,2.6 +NA,NA,a-curv-i5,2020-21,Westwood - Paul Hanlon,03350015, 77, 16.2, 178, 49.4, 50.6, 3.4, 19.7,6.7 +NA,NA,a-curv-i5,2020-21,Westwood - Westwood High,03350505, 485, 15.3, 986, 52.8, 47.1, 0.2, 14.3,6.6 +NA,NA,a-curv-i5,2020-21,Westwood - Westwood Integrated Preschool,03350050, 4, 13.0, 51, 33.3, 66.7, 0.0, 62.8,5.9 +NA,NA,a-curv-i5,2020-21,Westwood - William E Sheehan,03350025, 119, 16.1, 274, 48.2, 51.8, 0.0, 19.0,3.3 +NA,NA,a-curv-i5,2020-21,Weymouth - Abigail Adams Middle School,03360310, 828, 19.7, 886, 52.3, 47.7, 4.2, 21.9,37.4 +NA,NA,a-curv-i5,2020-21,Weymouth - Academy Avenue,03360005, 98, 17.9, 348, 47.7, 52.3, 13.8, 12.4,30.2 +NA,NA,a-curv-i5,2020-21,Weymouth - Frederick C Murphy,03360050, 62, 23.3, 287, 44.3, 55.8, 10.5, 23.7,40.1 +NA,NA,a-curv-i5,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 25, 6.3, 158, 30.4, 69.6, 2.5, 61.4,39.9 +NA,NA,a-curv-i5,2020-21,Weymouth - Lawrence W Pingree,03360065, 63, 17.4, 222, 53.2, 46.9, 0.0, 23.4,36.9 +NA,NA,a-curv-i5,2020-21,Weymouth - Ralph Talbot,03360085, 72, 20.2, 279, 48.8, 51.3, 11.1, 15.8,34.8 +NA,NA,a-curv-i5,2020-21,Weymouth - Thomas V Nash,03360060, 63, 16.4, 209, 54.1, 45.9, 1.0, 22.5,31.6 +NA,NA,a-curv-i5,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 92, 19.6, 356, 47.5, 52.5, 12.1, 16.6,27.3 +NA,NA,a-curv-i5,2020-21,Weymouth - Wessagusset,03360110, 106, 14.3, 307, 48.5, 51.5, 0.0, 21.5,32.3 +6.506976744186046,5,a-curv-i5,2020-21,Weymouth - Weymouth High School,03360505," 1,204", 15.4," 2,256", 50.4, 49.6, 3.4, 19.8,32.5,2247 +NA,NA,a-curv-i5,2020-21,Weymouth - William Seach,03360080, 104, 19.5, 393, 51.4, 48.6, 17.1, 16.5,62.3 +NA,NA,a-curv-i5,2020-21,Whately - Whately Elementary,03370005, 87, 14.3, 116, 50.9, 49.1, 2.6, 12.1,19.8 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 198, 16.2, 463, 49.9, 50.1, 0.4, 21.8,21.2 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - Indian Head,07800035, 166, 18.4, 478, 49.0, 51.1, 1.3, 16.5,20.7 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - John H Duval,07800030, 155, 18.2, 421, 48.7, 51.3, 1.0, 19.2,36.1 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - Louise A Conley,07800010, 187, 17.3, 498, 49.0, 51.0, 1.2, 16.1,20.3 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 33, 9.8, 91, 30.8, 69.2, 0.0, 46.2,29.7 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 404, 18.2," 1,107", 48.4, 51.5, 0.6, 15.2,21.5 +NA,NA,a-curv-i5,2020-21,Whitman-Hanson - Whitman Middle,07800310, 234, 18.8, 552, 50.5, 49.5, 1.1, 13.0,27.4 +NA,NA,a-curv-i5,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 742, 12.6," 1,236", 47.0, 53.0, 1.3, 19.1,34.6 +NA,NA,a-curv-i5,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 69, 12.5, 117, 47.0, 53.0, 0.9, 15.4,31.6 +NA,NA,a-curv-i5,2020-21,Wilmington - Boutwell,03420005, 128, 8.6, 116, 50.0, 50.0, 0.9, 11.2,12.1 +NA,NA,a-curv-i5,2020-21,Wilmington - North Intermediate,03420060, 131, 20.5, 245, 49.8, 50.2, 0.4, 15.5,11.8 +NA,NA,a-curv-i5,2020-21,Wilmington - Shawsheen Elementary,03420025, 171, 18.4, 314, 46.2, 53.8, 1.9, 14.0,12.7 +NA,NA,a-curv-i5,2020-21,Wilmington - West Intermediate,03420080, 148, 16.5, 217, 48.4, 51.6, 0.9, 17.5,14.3 +NA,NA,a-curv-i5,2020-21,Wilmington - Wildwood,03420015, 145, 7.3, 112, 42.9, 57.1, 3.6, 22.3,22.3 +NA,NA,a-curv-i5,2020-21,Wilmington - Wilmington High,03420505, 434, 14.9, 763, 51.6, 48.1, 0.5, 13.4,10.5 +NA,NA,a-curv-i5,2020-21,Wilmington - Wilmington Middle School,03420330, 495, 14.3, 712, 49.4, 50.6, 0.4, 16.7,13.1 +NA,NA,a-curv-i5,2020-21,Wilmington - Woburn Street,03420020, 207, 17.8, 367, 47.4, 52.6, 2.7, 15.5,12.3 +NA,NA,a-curv-i5,2020-21,Winchendon - Memorial,03430040, 70, 19.3, 266, 50.0, 50.0, 1.9, 26.3,56.8 +NA,NA,a-curv-i5,2020-21,Winchendon - Murdock Academy for Success,03430405, 2, 21.0, 31, 41.9, 58.1, 0.0, 38.7,58.1 +6.208547008547009,5,a-curv-i5,2020-21,Winchendon - Murdock High School,03430515, 117, 14.0, 262, 49.2, 50.8, 0.8, 23.3,47,262 +NA,NA,a-curv-i5,2020-21,Winchendon - Murdock Middle School,03430315, 113, 18.6, 283, 45.2, 54.8, 1.4, 19.8,44.2 +NA,NA,a-curv-i5,2020-21,Winchendon - Toy Town Elementary,03430050, 97, 20.9, 292, 42.5, 57.2, 2.1, 20.9,53.1 +NA,NA,a-curv-i5,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 6, 9.8, 59, 42.4, 57.6, 0.0, 40.7,42.4 +NA,NA,a-curv-i5,2020-21,Winchester - Ambrose Elementary,03440045, 230, 17.6, 370, 50.3, 49.7, 2.7, 13.5,1.4 +NA,NA,a-curv-i5,2020-21,Winchester - Lincoln Elementary,03440005, 250, 18.6, 415, 51.3, 48.7, 2.9, 15.9,2.2 +NA,NA,a-curv-i5,2020-21,Winchester - Lynch Elementary,03440020, 278, 17.6, 518, 46.1, 53.9, 11.0, 20.7,9.1 +NA,NA,a-curv-i5,2020-21,Winchester - McCall Middle,03440305," 1,094", 10.9," 1,093", 49.2, 50.8, 1.3, 17.6,5.2 +NA,NA,a-curv-i5,2020-21,Winchester - Muraco Elementary,03440040, 203, 18.2, 337, 46.6, 53.1, 7.7, 15.1,6.2 +NA,NA,a-curv-i5,2020-21,Winchester - Vinson-Owen Elementary,03440025, 239, 18.1, 395, 49.1, 50.9, 5.8, 16.5,4.3 +7.029904926534141,5,a-curv-i5,2020-21,Winchester - Winchester High School,03440505," 1,157", 9.1," 1,406", 51.9, 47.9, 0.8, 16.4,6.8,1403 +NA,NA,a-curv-i5,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 105, 25.9, 386, 50.3, 49.7, 7.3, 14.5,33.2 +NA,NA,a-curv-i5,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 129, 21.6, 439, 55.4, 44.7, 13.7, 20.3,32.6 +5.918518518518519,5,a-curv-i5,2020-21,Winthrop - Winthrop High School,03460505, 216, 17.2, 561, 47.6, 52.2, 3.9, 17.3,29.2,562 +NA,NA,a-curv-i5,2020-21,Winthrop - Winthrop Middle School,03460305, 211, 20.7, 461, 50.1, 49.9, 4.8, 13.0,34.7 +NA,NA,a-curv-i5,2020-21,Woburn - Clyde Reeves,03470040, 210, 14.8, 392, 48.2, 51.8, 7.7, 27.3,28.6 +NA,NA,a-curv-i5,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 498, 13.7, 526, 47.9, 52.1, 5.7, 20.3,35.6 +NA,NA,a-curv-i5,2020-21,Woburn - Goodyear Elementary School,03470005, 200, 14.6, 294, 49.3, 50.7, 12.2, 18.4,37.4 +NA,NA,a-curv-i5,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 230, 15.8, 363, 47.7, 52.3, 5.8, 10.7,19.3 +NA,NA,a-curv-i5,2020-21,Woburn - John F Kennedy Middle School,03470405, 372, 15.0, 478, 55.7, 44.4, 7.5, 11.1,37.2 +NA,NA,a-curv-i5,2020-21,Woburn - Linscott-Rumford,03470025, 160, 11.7, 188, 55.3, 44.7, 13.8, 9.6,28.2 +NA,NA,a-curv-i5,2020-21,Woburn - Malcolm White,03470055, 185, 15.0, 278, 53.2, 46.8, 14.0, 13.0,44.2 +NA,NA,a-curv-i5,2020-21,Woburn - Mary D Altavesta,03470065, 185, 12.1, 226, 48.2, 51.8, 15.0, 19.5,39.4 +NA,NA,a-curv-i5,2020-21,Woburn - Shamrock,03470043, 215, 11.0, 293, 45.7, 54.3, 9.9, 32.8,44.4 +NA,NA,a-curv-i5,2020-21,Woburn - Woburn High,03470505, 645, 13.6," 1,190", 50.3, 49.5, 7.0, 17.9,29.8 +NA,NA,a-curv-i5,2020-21,Worcester - Belmont Street Community,03480020, 184, 14.3, 367, 47.4, 52.6, 40.9, 18.3,89.9 +NA,NA,a-curv-i5,2020-21,Worcester - Burncoat Middle School,03480405, 364, 17.3, 668, 50.3, 49.7, 16.2, 22.6,62.7 +NA,NA,a-curv-i5,2020-21,Worcester - Burncoat Senior High,03480503, 590, 15.8," 1,111", 50.1, 49.9, 20.7, 25.6,61.5 +NA,NA,a-curv-i5,2020-21,Worcester - Burncoat Street,03480035, 127, 11.8, 203, 55.7, 44.3, 34.5, 23.2,81.8 +NA,NA,a-curv-i5,2020-21,Worcester - Canterbury,03480045, 149, 11.8, 241, 45.6, 54.4, 45.2, 29.9,76.4 +NA,NA,a-curv-i5,2020-21,Worcester - Chandler Elementary Community,03480050, 188, 12.4, 310, 47.1, 52.9, 45.2, 16.8,81.6 +NA,NA,a-curv-i5,2020-21,Worcester - Chandler Magnet,03480052, 221, 11.5, 344, 51.2, 48.8, 56.7, 14.8,68.3 +NA,NA,a-curv-i5,2020-21,Worcester - City View,03480053, 209, 13.0, 371, 47.7, 52.3, 38.0, 23.7,85.7 +NA,NA,a-curv-i5,2020-21,Worcester - Claremont Academy,03480350, 291, 17.8, 512, 49.2, 50.8, 33.8, 14.3,76.6 +NA,NA,a-curv-i5,2020-21,Worcester - Clark St Community,03480055, 111, 13.3, 202, 55.5, 44.6, 42.6, 25.3,85.2 +NA,NA,a-curv-i5,2020-21,Worcester - Columbus Park,03480060, 187, 11.9, 309, 44.0, 56.0, 37.9, 24.9,78 +NA,NA,a-curv-i5,2020-21,Worcester - Doherty Memorial High,03480512, 839, 12.7," 1,328", 44.1, 56.0, 16.6, 15.4,45 +NA,NA,a-curv-i5,2020-21,Worcester - Elm Park Community,03480095, 157, 14.1, 302, 44.4, 55.6, 44.4, 17.6,82.8 +NA,NA,a-curv-i5,2020-21,Worcester - Flagg Street,03480090, 141, 16.0, 301, 52.2, 47.8, 10.3, 15.0,22.9 +NA,NA,a-curv-i5,2020-21,Worcester - Forest Grove Middle,03480415, 538, 17.5, 897, 49.6, 50.4, 16.6, 19.5,55.7 +NA,NA,a-curv-i5,2020-21,Worcester - Francis J McGrath Elementary,03480177, 96, 13.1, 169, 47.3, 52.7, 30.2, 16.0,65.1 +NA,NA,a-curv-i5,2020-21,Worcester - Gates Lane,03480110, 273, 10.6, 399, 45.6, 54.4, 39.1, 44.1,65.9 +NA,NA,a-curv-i5,2020-21,Worcester - Goddard School/Science Technical,03480100, 157, 12.7, 272, 48.9, 51.1, 43.4, 19.5,77.9 +NA,NA,a-curv-i5,2020-21,Worcester - Grafton Street,03480115, 141, 14.5, 273, 47.6, 52.4, 37.0, 15.8,81.3 +NA,NA,a-curv-i5,2020-21,Worcester - Head Start,03480002, 2, 5.0, 5, 60.0, 40.0, 0.0, 0.0,80 +NA,NA,a-curv-i5,2020-21,Worcester - Heard Street,03480136, 104, 13.6, 191, 52.4, 47.6, 18.3, 17.8,48.2 +NA,NA,a-curv-i5,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 139, 14.0, 268, 51.1, 48.9, 26.9, 15.7,63.8 +NA,NA,a-curv-i5,2020-21,Worcester - Lake View,03480145, 104, 18.6, 260, 48.5, 51.5, 21.2, 10.8,52.7 +NA,NA,a-curv-i5,2020-21,Worcester - Lincoln Street,03480160, 95, 13.6, 179, 44.1, 55.9, 38.0, 28.5,79.9 +NA,NA,a-curv-i5,2020-21,Worcester - May Street,03480175, 104, 17.7, 246, 49.6, 50.4, 18.3, 13.0,46.3 +NA,NA,a-curv-i5,2020-21,Worcester - Midland Street,03480185, 88, 12.6, 150, 44.0, 56.0, 24.7, 8.0,47.3 +NA,NA,a-curv-i5,2020-21,Worcester - Nelson Place,03480200, 296, 11.5, 472, 39.8, 60.2, 19.7, 33.3,37.3 +NA,NA,a-curv-i5,2020-21,Worcester - Norrback Avenue,03480202, 316, 9.5, 416, 44.0, 56.0, 31.0, 38.0,56.3 +NA,NA,a-curv-i5,2020-21,Worcester - North High,03480515, 589, 15.9," 1,169", 49.5, 50.5, 27.9, 23.0,74.9 +NA,NA,a-curv-i5,2020-21,Worcester - Quinsigamond,03480210, 274, 13.2, 494, 46.2, 53.9, 41.7, 23.9,74.9 +NA,NA,a-curv-i5,2020-21,Worcester - Rice Square,03480215, 161, 15.6, 341, 51.6, 48.4, 34.3, 17.0,68 +NA,NA,a-curv-i5,2020-21,Worcester - Roosevelt,03480220, 304, 12.0, 510, 49.2, 50.8, 19.4, 24.7,51.4 +NA,NA,a-curv-i5,2020-21,Worcester - South High Community,03480520, 720, 15.1," 1,323", 49.7, 50.3, 26.7, 22.4,66 +NA,NA,a-curv-i5,2020-21,Worcester - Sullivan Middle,03480423, 520, 15.9, 921, 49.4, 50.6, 20.5, 20.5,66.7 +NA,NA,a-curv-i5,2020-21,Worcester - Tatnuck,03480230, 139, 17.2, 326, 48.2, 51.8, 20.3, 19.0,50 +NA,NA,a-curv-i5,2020-21,Worcester - Thorndyke Road,03480235, 111, 18.5, 275, 51.3, 48.7, 27.6, 18.6,56 +NA,NA,a-curv-i5,2020-21,Worcester - Union Hill School,03480240, 148, 15.2, 303, 52.2, 47.9, 44.2, 19.8,81.5 +NA,NA,a-curv-i5,2020-21,Worcester - University Pk Campus School,03480285, 111, 16.1, 229, 50.7, 49.3, 21.4, 13.1,68.1 +NA,NA,a-curv-i5,2020-21,Worcester - Vernon Hill School,03480280, 200, 12.2, 331, 46.8, 53.2, 40.8, 22.4,79.8 +NA,NA,a-curv-i5,2020-21,Worcester - Wawecus Road School,03480026, 91, 8.1, 99, 47.5, 52.5, 34.3, 30.3,69.7 +NA,NA,a-curv-i5,2020-21,Worcester - West Tatnuck,03480260, 140, 15.7, 301, 48.8, 51.2, 18.6, 17.6,33.6 +NA,NA,a-curv-i5,2020-21,Worcester - Woodland Academy,03480030, 201, 14.0, 378, 52.1, 47.9, 52.9, 13.5,78.3 +NA,NA,a-curv-i5,2020-21,Worcester - Worcester Arts Magnet School,03480225, 125, 18.9, 323, 52.6, 47.4, 15.2, 18.9,34.1 +NA,NA,a-curv-i5,2020-21,Worcester - Worcester East Middle,03480420, 460, 15.1, 721, 47.9, 52.2, 24.7, 21.4,76.3 +NA,NA,a-curv-i5,2020-21,Worcester - Worcester Technical High,03480605, 692, 16.4," 1,456", 55.4, 44.6, 5.6, 12.2,51 +NA,NA,a-curv-i5,2020-21,Worthington - R. H. Conwell,03490010, 60, 6.0, 58, 50.0, 50.0, 0.0, 25.9,36.2 +NA,NA,a-curv-i5,2020-21,Wrentham - Charles E Roderick,03500010, 185, 19.0, 379, 51.5, 48.6, 1.3, 21.4,12.7 +NA,NA,a-curv-i5,2020-21,Wrentham - Delaney,03500003, 219, 17.9, 514, 49.0, 51.0, 3.9, 18.9,9.5 +NA,NA,a-curv-i5,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 711, 19.0," 1,424", 54.0, 46.0, 42.7, 11.5,12.4 +NA,NA,a-curv-i5,2019-20,Abington - Abington Early Education Program,00010001, 20, 20.0, 100, 49.0, 51.0, 37.0, 5.0,49 +NA,NA,a-curv-i5,2019-20,Abington - Abington High,00010505, 267, 18.2, 600, 50.2, 49.8, 24.0, 5.0,11.2 +NA,NA,a-curv-i5,2019-20,Abington - Abington Middle School,00010405, 359, 24.1, 706, 44.9, 55.1, 29.5, 6.7,14 +NA,NA,a-curv-i5,2019-20,Abington - Beaver Brook Elementary,00010020, 245, 24.0, 480, 50.8, 49.0, 26.5, 12.1,14.6 +NA,NA,a-curv-i5,2019-20,Abington - Woodsdale Elementary School,00010015, 143, 23.7, 308, 52.6, 47.4, 25.7, 8.1,18.5 +NA,NA,a-curv-i5,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 185, 19.1, 539, 49.5, 50.5, 44.9, 10.4,26.2 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 735, 18.1," 1,820", 48.5, 51.5, 6.6, 1.0,10.7 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 163, 20.8, 479, 49.5, 50.5, 5.6, 6.9,15.9 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 128, 21.9, 395, 48.4, 51.7, 10.9, 7.1,12.2 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 14, 9.4, 115, 43.5, 56.5, 13.0, 14.8,47 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Luther Conant School,06000030, 137, 21.6, 415, 47.0, 53.0, 7.2, 9.9,19.3 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 171, 21.4, 513, 49.1, 50.9, 11.3, 5.3,16.2 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Merriam School,06000010, 156, 21.6, 477, 48.9, 51.2, 6.5, 5.2,15.3 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 123, 22.1, 378, 47.6, 52.4, 9.5, 8.2,12.2 +NA,NA,a-curv-i5,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 563, 21.1, 871, 47.5, 52.5, 8.3, 2.2,16.2 +NA,NA,a-curv-i5,2019-20,Acushnet - Acushnet Elementary School,00030025, 277, 20.5, 568, 46.5, 53.5, 26.4, 1.8,13.4 +NA,NA,a-curv-i5,2019-20,Acushnet - Albert F Ford Middle School,00030305, 269, 19.8, 448, 47.5, 52.5, 25.0, 0.0,12.7 +NA,NA,a-curv-i5,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 510, 18.1, 964, 47.6, 52.4, 9.0, 3.2,6.9 +NA,NA,a-curv-i5,2019-20,Agawam - Agawam Early Childhood Center,00050003, 19, 10.5, 181, 42.5, 57.5, 37.0, 5.5,47.5 +NA,NA,a-curv-i5,2019-20,Agawam - Agawam High,00050505, 562, 15.0," 1,059", 49.9, 50.1, 24.1, 2.1,11.6 +NA,NA,a-curv-i5,2019-20,Agawam - Agawam Junior High,00050405, 771, 10.8, 555, 47.9, 52.1, 35.7, 3.1,14.1 +NA,NA,a-curv-i5,2019-20,Agawam - Benjamin J Phelps,00050020, 174, 20.2, 346, 46.8, 53.2, 32.7, 9.0,11.3 +NA,NA,a-curv-i5,2019-20,Agawam - Clifford M Granger,00050010, 119, 19.9, 259, 51.0, 49.0, 37.8, 10.0,18.9 +NA,NA,a-curv-i5,2019-20,Agawam - James Clark School,00050030, 144, 20.5, 307, 47.9, 52.1, 32.6, 8.1,17.9 +NA,NA,a-curv-i5,2019-20,Agawam - Roberta G. Doering School,00050303, 459, 17.2, 599, 46.9, 53.1, 34.1, 2.2,18.2 +NA,NA,a-curv-i5,2019-20,Agawam - Robinson Park,00050025, 212, 19.9, 398, 50.5, 49.5, 37.4, 11.6,11.8 +NA,NA,a-curv-i5,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 225, 24.2, 641, 53.7, 46.3, 60.7, 30.7,20.3 +NA,NA,a-curv-i5,2019-20,Amesbury - Amesbury Elementary,00070005, 141, 19.8, 353, 44.8, 55.2, 22.7, 0.3,23 +NA,NA,a-curv-i5,2019-20,Amesbury - Amesbury High,00070505, 339, 14.7, 541, 49.4, 50.7, 14.8, 1.1,13.3 +7.184615384615384,5,a-curv-i5,2019-20,Amesbury - Amesbury Innovation High School,00070515, 52, 9.2, 54, 42.6, 55.6, 59.3, 0.0,51.9,53 +NA,NA,a-curv-i5,2019-20,Amesbury - Amesbury Middle,00070013, 399, 17.1, 677, 48.5, 51.6, 26.7, 2.2,21.6 +NA,NA,a-curv-i5,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 183, 18.4, 415, 46.8, 53.3, 34.5, 5.5,25.1 +NA,NA,a-curv-i5,2019-20,Amherst - Crocker Farm Elementary,00080009, 124, 19.2, 412, 44.7, 54.6, 31.1, 20.6,24.5 +NA,NA,a-curv-i5,2019-20,Amherst - Fort River Elementary,00080020, 108, 19.8, 329, 50.5, 49.5, 37.1, 14.6,23.7 +NA,NA,a-curv-i5,2019-20,Amherst - Wildwood Elementary,00080050, 129, 19.0, 386, 49.0, 51.0, 31.1, 13.5,18.9 +NA,NA,a-curv-i5,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 617, 12.9, 901, 49.4, 50.3, 26.4, 7.3,19.3 +NA,NA,a-curv-i5,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 414, 15.7, 431, 46.2, 53.6, 28.5, 8.6,23.9 +NA,NA,a-curv-i5,2019-20,Andover - Andover High,00090505," 1,042", 15.3," 1,779", 52.8, 47.1, 9.5, 0.6,16.5 +NA,NA,a-curv-i5,2019-20,Andover - Andover West Middle,00090310, 332, 17.2, 537, 47.7, 52.3, 11.4, 1.7,20.1 +NA,NA,a-curv-i5,2019-20,Andover - Bancroft Elementary,00090003, 192, 20.2, 564, 45.9, 54.1, 7.6, 2.3,19 +NA,NA,a-curv-i5,2019-20,Andover - Doherty Middle,00090305, 314, 17.5, 521, 52.8, 47.0, 9.6, 1.2,20.5 +NA,NA,a-curv-i5,2019-20,Andover - Henry C Sanborn Elementary,00090010, 117, 21.4, 364, 48.9, 51.1, 9.6, 8.2,14.8 +NA,NA,a-curv-i5,2019-20,Andover - High Plain Elementary,00090004, 171, 21.5, 534, 45.3, 54.7, 8.1, 11.6,19.3 +NA,NA,a-curv-i5,2019-20,Andover - Shawsheen School,00090005, 10, 9.7, 97, 30.9, 69.1, 13.4, 17.5,56.7 +NA,NA,a-curv-i5,2019-20,Andover - South Elementary,00090020, 158, 20.5, 472, 48.7, 51.3, 4.9, 4.2,19.1 +NA,NA,a-curv-i5,2019-20,Andover - West Elementary,00090025, 199, 20.7, 601, 48.6, 51.4, 6.7, 5.5,27.1 +NA,NA,a-curv-i5,2019-20,Andover - Wood Hill Middle School,00090350, 248, 16.7, 410, 48.3, 51.7, 7.8, 2.2,18.8 +NA,NA,a-curv-i5,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 189, 22.2, 500, 45.8, 54.2, 59.0, 24.8,19.4 +NA,NA,a-curv-i5,2019-20,Arlington - Arlington High,00100505, 856, 14.0," 1,426", 50.6, 49.0, 9.9, 1.8,13.5 +NA,NA,a-curv-i5,2019-20,Arlington - Brackett,00100010, 184, 20.6, 532, 45.5, 54.5, 3.8, 3.8,15.4 +NA,NA,a-curv-i5,2019-20,Arlington - Cyrus E Dallin,00100025, 191, 17.6, 472, 48.9, 51.1, 3.4, 4.0,11.9 +NA,NA,a-curv-i5,2019-20,Arlington - Gibbs School,00100305, 338, 17.3, 488, 47.8, 52.3, 10.3, 3.1,16.8 +NA,NA,a-curv-i5,2019-20,Arlington - Hardy,00100030, 149, 21.4, 448, 47.8, 52.2, 7.1, 11.4,13.8 +NA,NA,a-curv-i5,2019-20,Arlington - John A Bishop,00100005, 135, 22.7, 431, 46.2, 53.8, 5.1, 6.3,10.4 +NA,NA,a-curv-i5,2019-20,Arlington - M Norcross Stratton,00100055, 184, 17.9, 459, 50.1, 49.9, 9.2, 9.8,20.5 +NA,NA,a-curv-i5,2019-20,Arlington - Menotomy Preschool,00100038, 7, 15.3, 107, 37.4, 62.6, 17.8, 0.0,57.9 +NA,NA,a-curv-i5,2019-20,Arlington - Ottoson Middle,00100410, 479, 19.3, 902, 49.8, 50.0, 9.9, 2.9,16.6 +NA,NA,a-curv-i5,2019-20,Arlington - Peirce,00100045, 106, 20.3, 305, 51.5, 48.5, 9.8, 9.2,12.1 +NA,NA,a-curv-i5,2019-20,Arlington - Thompson,00100050, 171, 21.3, 516, 51.4, 48.5, 14.0, 8.9,15.5 +NA,NA,a-curv-i5,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 273, 19.8, 545, 49.5, 50.5, 21.1, 3.3,24.8 +NA,NA,a-curv-i5,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 103, 20.3, 204, 49.0, 51.0, 16.7, 2.9,12.3 +6.488385269121812,5,a-curv-i5,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 353, 16.3, 676, 50.7, 49.1, 16.3, 0.6,17.9,667 +NA,NA,a-curv-i5,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 515, 17.8, 590, 48.5, 51.5, 17.3, 0.5,21.4 +NA,NA,a-curv-i5,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 194, 22.3, 385, 48.6, 51.4, 14.8, 2.6,15.1 +NA,NA,a-curv-i5,2019-20,Ashland - Ashland High,00140505, 433, 15.9, 836, 51.9, 48.0, 14.5, 4.3,11.4 +NA,NA,a-curv-i5,2019-20,Ashland - Ashland Middle,00140405, 389, 21.1, 677, 49.0, 51.0, 18.3, 7.1,17.9 +NA,NA,a-curv-i5,2019-20,Ashland - David Mindess,00140015, 285, 24.7, 671, 50.4, 49.6, 15.2, 8.2,19.2 +NA,NA,a-curv-i5,2019-20,Ashland - Henry E Warren Elementary,00140010, 192, 20.3, 618, 45.0, 55.0, 18.3, 10.5,17.3 +NA,NA,a-curv-i5,2019-20,Ashland - William Pittaway Elementary,00140005, 16, 5.6, 89, 39.3, 60.7, 10.1, 0.0,34.8 +6.586996904024768,5,a-curv-i5,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 646, 16.4," 1,130", 39.1, 60.4, 28.9, 4.0,27.5,1141 +NA,NA,a-curv-i5,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 230, 19.3, 625, 46.6, 53.4, 58.6, 4.8,25.3 +NA,NA,a-curv-i5,2019-20,Athol-Royalston - Athol High,06150505, 177, 12.7, 322, 46.0, 54.0, 46.9, 0.6,23.3 +NA,NA,a-curv-i5,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 276, 21.0, 450, 45.8, 54.2, 51.1, 2.0,24.4 +NA,NA,a-curv-i5,2019-20,Athol-Royalston - Royalston Community School,06150050, 54, 21.1, 148, 52.7, 47.3, 44.6, 0.0,14.2 +NA,NA,a-curv-i5,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 521, 23.9," 1,304", 52.8, 47.2, 46.3, 13.2,13.9 +NA,NA,a-curv-i5,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 200, 19.1, 382, 49.7, 50.3, 32.5, 7.1,18.9 +NA,NA,a-curv-i5,2019-20,Attleboro - Attleboro Community Academy,00160515, 52, 9.8, 88, 38.6, 61.4, 50.0, 2.3,9.1 +NA,NA,a-curv-i5,2019-20,Attleboro - Attleboro High,00160505, 884, 20.6," 1,822", 46.6, 53.4, 26.5, 3.7,14.3 +NA,NA,a-curv-i5,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 245, 23.1, 635, 48.5, 51.5, 39.5, 5.5,16.7 +NA,NA,a-curv-i5,2019-20,Attleboro - Early Learning Center,00160008, 16, 12.8, 204, 39.2, 60.8, 30.4, 0.0,47.1 +NA,NA,a-curv-i5,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 191, 23.9, 454, 48.7, 51.3, 33.7, 9.7,14.5 +NA,NA,a-curv-i5,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 200, 23.3, 466, 50.4, 49.6, 31.1, 12.2,16.1 +NA,NA,a-curv-i5,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 280, 16.8, 457, 49.0, 51.0, 37.6, 9.4,21.7 +NA,NA,a-curv-i5,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 228, 26.3, 667, 46.0, 54.0, 25.3, 1.4,13.8 +NA,NA,a-curv-i5,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 160, 23.8, 380, 46.3, 53.7, 36.6, 13.2,19.7 +NA,NA,a-curv-i5,2019-20,Attleboro - Wamsutta Middle School,00160320, 209, 23.2, 575, 48.5, 51.5, 30.8, 2.1,14.8 +NA,NA,a-curv-i5,2019-20,Auburn - Auburn Middle,00170305, 398, 18.4, 627, 50.7, 49.3, 20.9, 2.2,10.4 +NA,NA,a-curv-i5,2019-20,Auburn - Auburn Senior High,00170505, 629, 16.8, 800, 53.0, 47.0, 19.6, 1.3,8.6 +NA,NA,a-curv-i5,2019-20,Auburn - Bryn Mawr,00170010, 108, 20.9, 281, 46.6, 53.4, 23.8, 3.9,12.5 +NA,NA,a-curv-i5,2019-20,Auburn - Pakachoag School,00170025, 107, 20.2, 315, 49.8, 50.2, 16.5, 1.6,9.5 +NA,NA,a-curv-i5,2019-20,Auburn - Swanson Road Intermediate School,00170030, 220, 22.7, 624, 47.9, 52.1, 20.7, 4.0,11.4 +7.081040892193309,5,a-curv-i5,2019-20,Avon - Avon Middle High School,00180510, 269, 11.0, 318, 47.2, 52.8, 30.8, 2.2,16,309 +NA,NA,a-curv-i5,2019-20,Avon - Ralph D Butler,00180010, 98, 18.7, 418, 48.8, 51.2, 32.8, 5.7,21.3 +6.6877192982456135,5,a-curv-i5,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 228, 16.1, 371, 52.6, 47.4, 23.2, 2.2,16.7,374 +NA,NA,a-curv-i5,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 221, 20.4, 405, 45.9, 54.1, 24.4, 2.5,20.3 +NA,NA,a-curv-i5,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 180, 18.8, 340, 44.1, 55.9, 25.9, 2.4,22.7 +NA,NA,a-curv-i5,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 241, 20.4, 559, 47.1, 53.0, 28.6, 8.4,24 +NA,NA,a-curv-i5,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 100, 19.6, 304, 47.4, 52.6, 47.0, 30.6,9.2 +NA,NA,a-curv-i5,2019-20,Barnstable - Barnstable High,00200505, 918, 14.1," 1,756", 51.5, 48.4, 34.7, 9.9,15.7 +NA,NA,a-curv-i5,2019-20,Barnstable - Barnstable Intermediate School,00200315, 414, 18.3, 762, 48.2, 51.8, 41.5, 10.9,16.3 +NA,NA,a-curv-i5,2019-20,Barnstable - Barnstable United Elementary School,00200050, 441, 17.9, 814, 47.4, 52.6, 35.3, 11.6,16.3 +NA,NA,a-curv-i5,2019-20,Barnstable - Centerville Elementary,00200010, 79, 20.1, 246, 45.5, 54.5, 38.2, 16.7,16.7 +NA,NA,a-curv-i5,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 22, 9.6, 211, 36.0, 64.0, 44.1, 18.5,50.7 +NA,NA,a-curv-i5,2019-20,Barnstable - Hyannis West Elementary,00200025, 108, 20.5, 308, 54.9, 45.1, 64.6, 40.3,15.3 +NA,NA,a-curv-i5,2019-20,Barnstable - West Barnstable Elementary,00200005, 89, 19.4, 237, 43.9, 56.1, 32.9, 9.3,13.5 +NA,NA,a-curv-i5,2019-20,Barnstable - West Villages Elementary School,00200045, 130, 20.0, 416, 49.0, 51.0, 29.1, 6.3,15.9 +NA,NA,a-curv-i5,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 308, 15.0, 462, 48.9, 51.1, 66.7, 9.3,19.3 +NA,NA,a-curv-i5,2019-20,Bedford - Bedford High,00230505, 563, 12.8, 836, 50.4, 49.6, 7.8, 1.2,14.7 +NA,NA,a-curv-i5,2019-20,Bedford - John Glenn Middle,00230305, 375, 18.3, 598, 45.7, 54.4, 9.2, 2.0,18.6 +NA,NA,a-curv-i5,2019-20,Bedford - Lt Elezer Davis,00230010, 94, 20.1, 647, 45.3, 54.7, 9.7, 12.2,17.3 +NA,NA,a-curv-i5,2019-20,Bedford - Lt Job Lane School,00230012, 167, 19.1, 604, 50.0, 50.0, 10.3, 7.8,18.9 +NA,NA,a-curv-i5,2019-20,Belchertown - Belchertown High,00240505, 430, 14.3, 694, 48.4, 51.6, 16.6, 0.1,14.4 +NA,NA,a-curv-i5,2019-20,Belchertown - Chestnut Hill Community School,00240006, 231, 20.1, 501, 47.1, 52.9, 21.2, 0.4,24.8 +NA,NA,a-curv-i5,2019-20,Belchertown - Cold Spring,00240005, 36, 18.1, 207, 44.0, 56.0, 24.6, 4.4,24.6 +NA,NA,a-curv-i5,2019-20,Belchertown - Jabish Middle School,00240025, 294, 15.3, 376, 50.5, 49.5, 19.7, 0.5,20.7 +NA,NA,a-curv-i5,2019-20,Belchertown - Swift River Elementary,00240018, 243, 17.8, 480, 52.1, 47.9, 22.5, 1.7,21.3 +NA,NA,a-curv-i5,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 8, 13.3, 106, 48.1, 51.9, 21.7, 0.9,36.8 +6.27514450867052,5,a-curv-i5,2019-20,Bellingham - Bellingham High School,00250505, 346, 18.1, 749, 49.4, 50.6, 18.8, 1.2,19.1,746 +NA,NA,a-curv-i5,2019-20,Bellingham - Bellingham Memorial School,00250315, 311, 19.4, 657, 52.7, 47.3, 21.3, 2.4,19 +NA,NA,a-curv-i5,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 68, 19.5, 330, 52.7, 47.3, 27.0, 1.8,13.3 +NA,NA,a-curv-i5,2019-20,Bellingham - Keough Memorial Academy,00250510, 33, 6.4, 30, 46.7, 50.0, 33.3, 0.0,100 +NA,NA,a-curv-i5,2019-20,Bellingham - Stall Brook,00250025, 76, 14.9, 270, 47.4, 52.6, 21.1, 5.6,21.1 +NA,NA,a-curv-i5,2019-20,Belmont - Belmont High,00260505, 463, 20.7," 1,327", 50.5, 49.5, 7.6, 1.7,5.7 +NA,NA,a-curv-i5,2019-20,Belmont - Daniel Butler,00260015, 130, 22.8, 363, 48.5, 51.5, 9.4, 18.5,9.9 +NA,NA,a-curv-i5,2019-20,Belmont - Mary Lee Burbank,00260010, 162, 22.4, 448, 48.9, 51.1, 7.8, 14.5,8 +NA,NA,a-curv-i5,2019-20,Belmont - Roger E Wellington,00260035, 208, 22.8, 655, 49.6, 50.4, 10.1, 16.5,15.1 +NA,NA,a-curv-i5,2019-20,Belmont - Winn Brook,00260005, 162, 23.3, 462, 48.9, 51.1, 2.8, 15.8,8.2 +NA,NA,a-curv-i5,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 679, 22.6," 1,515", 49.4, 50.6, 8.5, 4.8,11.5 +NA,NA,a-curv-i5,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 65, 22.1, 337, 52.2, 47.8, 54.3, 5.0,14.8 +NA,NA,a-curv-i5,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 225, 24.5, 708, 50.9, 49.2, 12.2, 6.9,13 +NA,NA,a-curv-i5,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 146, 17.7, 323, 53.9, 46.1, 66.9, 21.4,13.9 +NA,NA,a-curv-i5,2019-20,Berkley - Berkley Community School,00270010, 135, 22.0, 525, 48.6, 51.4, 21.9, 1.3,15.8 +NA,NA,a-curv-i5,2019-20,Berkley - Berkley Middle School,00270305, 190, 18.6, 394, 49.2, 50.8, 15.0, 0.5,16 +NA,NA,a-curv-i5,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 149, 18.6, 366, 43.7, 56.0, 44.5, 0.8,20 +NA,NA,a-curv-i5,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 330, 13.2, 509, 50.5, 49.5, 25.2, 3.3,13.2 +NA,NA,a-curv-i5,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 197, 16.1, 332, 45.2, 54.8, 34.0, 3.9,19.9 +NA,NA,a-curv-i5,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 201, 17.2, 357, 51.5, 48.5, 42.0, 7.6,21.9 +NA,NA,a-curv-i5,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 126, 14.9, 191, 46.6, 53.4, 15.7, 2.6,14.1 +NA,NA,a-curv-i5,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 172, 18.0, 303, 48.2, 51.8, 11.6, 3.0,17.5 +NA,NA,a-curv-i5,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 309, 16.2, 560, 48.4, 51.6, 15.9, 2.0,16.3 +NA,NA,a-curv-i5,2019-20,Beverly - Ayers/Ryal Side School,00300055, 80, 21.0, 420, 48.6, 51.4, 25.5, 5.5,11.9 +NA,NA,a-curv-i5,2019-20,Beverly - Beverly High,00300505, 552, 21.1," 1,305", 47.9, 52.0, 24.1, 1.6,16.3 +NA,NA,a-curv-i5,2019-20,Beverly - Beverly Middle School,00300305, 603, 23.6," 1,459", 47.9, 52.1, 27.8, 2.8,19.4 +NA,NA,a-curv-i5,2019-20,Beverly - Centerville Elementary,00300010, 81, 16.2, 327, 49.9, 50.2, 40.4, 7.3,22.9 +NA,NA,a-curv-i5,2019-20,Beverly - Cove Elementary,00300015, 119, 14.2, 425, 47.3, 52.7, 28.2, 6.4,20 +NA,NA,a-curv-i5,2019-20,Beverly - Hannah Elementary,00300033, 69, 19.7, 340, 45.0, 55.0, 21.2, 7.7,15.6 +NA,NA,a-curv-i5,2019-20,Beverly - McKeown School,00300002, 13, 11.2, 146, 41.1, 58.9, 33.6, 2.7,60.3 +NA,NA,a-curv-i5,2019-20,Beverly - North Beverly Elementary,00300040, 77, 17.7, 342, 46.8, 53.2, 25.4, 7.6,19.6 +5.998302687411598,5,a-curv-i5,2019-20,Billerica - Billerica Memorial High School,00310505, 707, 19.2," 1,814", 48.6, 51.4, 16.9, 0.9,17.2,1769 +NA,NA,a-curv-i5,2019-20,Billerica - Frederick J Dutile,00310007, 114, 18.7, 242, 53.7, 46.3, 16.5, 0.0,19 +NA,NA,a-curv-i5,2019-20,Billerica - Hajjar Elementary,00310026, 167, 18.5, 351, 53.3, 46.7, 26.2, 12.3,16.8 +NA,NA,a-curv-i5,2019-20,Billerica - John F Kennedy,00310012, 149, 19.2, 324, 54.0, 46.0, 16.7, 0.3,16.7 +NA,NA,a-curv-i5,2019-20,Billerica - Locke Middle,00310310, 328, 17.2, 546, 49.3, 50.7, 15.8, 0.0,19.6 +NA,NA,a-curv-i5,2019-20,Billerica - Marshall Middle School,00310305, 322, 19.5, 622, 47.1, 52.9, 25.1, 2.7,24.8 +NA,NA,a-curv-i5,2019-20,Billerica - Parker,00310015, 184, 20.3, 424, 47.9, 52.1, 20.1, 0.0,24.3 +NA,NA,a-curv-i5,2019-20,Billerica - Thomas Ditson,00310005, 246, 19.5, 544, 47.8, 52.2, 18.9, 0.2,19.3 +NA,NA,a-curv-i5,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 818, 16.9," 1,224", 50.7, 49.1, 10.0, 0.3,10 +NA,NA,a-curv-i5,2019-20,Blackstone-Millville - A F Maloney,06220015, 111, 21.3, 285, 45.6, 54.4, 26.7, 4.2,16.1 +NA,NA,a-curv-i5,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 229, 13.0, 429, 47.6, 52.5, 23.8, 1.6,15.2 +NA,NA,a-curv-i5,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 248, 20.2, 417, 52.8, 47.2, 21.3, 0.7,15.6 +NA,NA,a-curv-i5,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 104, 20.0, 271, 50.6, 49.5, 34.7, 1.9,17.3 +NA,NA,a-curv-i5,2019-20,Blackstone-Millville - Millville Elementary,06220010, 131, 13.6, 253, 45.5, 54.6, 27.3, 1.2,25.7 +NA,NA,a-curv-i5,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 435, 14.4, 843, 45.1, 54.9, 26.9, 0.8,26.2 +NA,NA,a-curv-i5,2019-20,Boston - Another Course To College,00350541, 106, 15.3, 253, 43.1, 56.9, 58.9, 9.1,28.5 +NA,NA,a-curv-i5,2019-20,Boston - Baldwin Early Learning Center,00350003, 57, 14.0, 158, 41.1, 58.9, 35.4, 41.1,21.5 +NA,NA,a-curv-i5,2019-20,Boston - Beethoven,00350021, 127, 18.5, 319, 51.7, 48.3, 43.3, 24.5,18.2 +NA,NA,a-curv-i5,2019-20,Boston - Blackstone,00350390, 275, 15.5, 586, 43.9, 56.1, 75.8, 48.6,28.5 +NA,NA,a-curv-i5,2019-20,Boston - Boston Adult Academy,00350548, 75, 14.9, 232, 47.4, 52.6, 56.9, 63.8,9.5 +NA,NA,a-curv-i5,2019-20,Boston - Boston Arts Academy,00350546, 276, 14.7, 476, 66.0, 33.6, 48.7, 6.1,18.7 +5.2,5,a-curv-i5,2019-20,Boston - Boston Collaborative High School,00350755, 50, 11.7, 245, 45.7, 54.3, 74.3, 22.9,18,175 +NA,NA,a-curv-i5,2019-20,Boston - Boston Community Leadership Academy,00350558, 190, 17.1, 489, 45.0, 55.0, 65.6, 30.9,21.3 +6.373459715639811,5,a-curv-i5,2019-20,Boston - Boston International High School,00350507, 211, 14.8, 510, 44.7, 55.3, 70.4, 87.7,5.1,429 +NA,NA,a-curv-i5,2019-20,Boston - Boston Latin,00350560, 769, 25.1," 2,457", 54.2, 45.6, 17.0, 0.0,2.9 +NA,NA,a-curv-i5,2019-20,Boston - Boston Latin Academy,00350545, 609, 22.8," 1,765", 58.9, 41.0, 34.1, 0.0,4.3 +NA,NA,a-curv-i5,2019-20,Boston - Boston Teachers Union School,00350012, 95, 21.2, 299, 50.2, 49.8, 38.5, 13.0,22.4 +NA,NA,a-curv-i5,2019-20,Boston - Brighton High,00350505, 183, 18.5, 567, 42.3, 57.7, 69.8, 46.6,25.6 +NA,NA,a-curv-i5,2019-20,Boston - Carter School,00350036, 2, 29.0, 29, 41.4, 58.6, 82.8, 27.6,100 +NA,NA,a-curv-i5,2019-20,Boston - Charles H Taylor,00350054, 249, 12.9, 443, 47.4, 52.6, 79.0, 30.9,18.3 +NA,NA,a-curv-i5,2019-20,Boston - Charles Sumner,00350052, 309, 16.8, 535, 45.8, 54.2, 56.8, 36.8,21.3 +NA,NA,a-curv-i5,2019-20,Boston - Charlestown High,00350515, 559, 14.7, 983, 41.0, 59.0, 67.9, 41.0,27 +NA,NA,a-curv-i5,2019-20,Boston - Clarence R Edwards Middle,00350430, 205, 14.3, 399, 47.6, 52.4, 72.4, 35.8,36.1 +NA,NA,a-curv-i5,2019-20,Boston - Community Academy,00350518, 27, 12.6, 83, 43.4, 56.6, 77.1, 14.5,44.6 +NA,NA,a-curv-i5,2019-20,Boston - Community Academy of Science and Health,00350581, 165, 14.0, 388, 45.9, 54.1, 71.1, 25.0,36.9 +NA,NA,a-curv-i5,2019-20,Boston - Condon K-8,00350146, 391, 18.3, 843, 47.7, 52.3, 72.4, 33.0,29.3 +NA,NA,a-curv-i5,2019-20,Boston - Curley K-8 School,00350020, 427, 16.1, 973, 46.3, 53.8, 50.9, 27.4,30.5 +NA,NA,a-curv-i5,2019-20,Boston - Curtis Guild,00350062, 135, 15.4, 260, 48.1, 51.9, 60.0, 60.0,23.9 +NA,NA,a-curv-i5,2019-20,Boston - Dante Alighieri Montessori School,00350066, 84, 7.6, 101, 53.5, 46.5, 34.7, 40.6,10.9 +NA,NA,a-curv-i5,2019-20,Boston - David A Ellis,00350072, 185, 16.3, 422, 51.0, 48.8, 86.7, 40.3,14.7 +NA,NA,a-curv-i5,2019-20,Boston - Dearborn,00350074, 211, 17.3, 552, 50.0, 50.0, 74.5, 33.0,18.8 +NA,NA,a-curv-i5,2019-20,Boston - Dennis C Haley,00350077, 190, 19.6, 416, 47.8, 52.2, 47.6, 22.4,35.1 +NA,NA,a-curv-i5,2019-20,Boston - Donald Mckay,00350080, 289, 23.6, 828, 52.4, 47.6, 64.4, 38.0,17.9 +NA,NA,a-curv-i5,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 65, 16.0, 200, 44.5, 55.5, 64.0, 51.0,26.5 +NA,NA,a-curv-i5,2019-20,Boston - Dr. William Henderson Lower,00350266, 57, 21.6, 217, 53.5, 46.1, 41.5, 18.4,26.3 +NA,NA,a-curv-i5,2019-20,Boston - Dr. William Henderson Upper,00350426, 241, 21.9, 727, 46.2, 53.8, 57.5, 10.2,38.2 +NA,NA,a-curv-i5,2019-20,Boston - ELC - West Zone,00350006, 44, 15.9, 114, 48.3, 51.8, 67.5, 40.4,25.4 +NA,NA,a-curv-i5,2019-20,Boston - East Boston Early Childhood Center,00350009, 66, 17.6, 214, 49.5, 50.5, 52.8, 59.4,18.7 +NA,NA,a-curv-i5,2019-20,Boston - East Boston High,00350530, 294, 17.5," 1,198", 41.5, 58.5, 63.9, 44.1,19.9 +NA,NA,a-curv-i5,2019-20,Boston - Edison K-8,00350375, 364, 13.1, 608, 44.4, 55.6, 70.9, 48.2,26 +NA,NA,a-curv-i5,2019-20,Boston - Edward Everett,00350088, 88, 17.5, 238, 50.4, 49.6, 70.6, 23.1,20.2 +NA,NA,a-curv-i5,2019-20,Boston - Eliot Elementary,00350096, 438, 20.2, 735, 49.3, 50.8, 20.4, 7.9,16.9 +NA,NA,a-curv-i5,2019-20,Boston - Ellis Mendell,00350100, 91, 19.0, 275, 50.9, 48.7, 41.8, 16.4,23.3 +5.88972972972973,5,a-curv-i5,2019-20,Boston - Excel High School,00350522, 185, 17.2, 544, 37.9, 62.1, 69.5, 23.7,24.6,488 +5.145945945945946,5,a-curv-i5,2019-20,Boston - Fenway High School,00350540, 111, 19.7, 397, 53.4, 46.6, 64.2, 20.7,21.4,396 +NA,NA,a-curv-i5,2019-20,Boston - Franklin D Roosevelt,00350116, 119, 21.7, 439, 49.0, 51.0, 55.4, 16.0,28.7 +NA,NA,a-curv-i5,2019-20,Boston - Gardner Pilot Academy,00350326, 139, 18.3, 393, 47.8, 51.9, 65.7, 36.9,28.2 +NA,NA,a-curv-i5,2019-20,Boston - George H Conley,00350122, 107, 11.5, 187, 43.9, 56.2, 52.4, 23.0,47.6 +6.333333333333333,5,a-curv-i5,2019-20,Boston - Greater Egleston Community High School,00350543, 48, 15.1, 158, 49.4, 50.6, 76.0, 10.8,19.6,100 +NA,NA,a-curv-i5,2019-20,Boston - Harvard-Kent,00350200, 165, 15.2, 372, 46.2, 53.8, 69.4, 32.8,27.4 +NA,NA,a-curv-i5,2019-20,Boston - Haynes Early Education Center,00350010, 73, 15.3, 210, 47.6, 52.4, 72.4, 48.6,21.9 +NA,NA,a-curv-i5,2019-20,Boston - Henry Grew,00350135, 72, 18.6, 248, 48.0, 52.0, 71.8, 12.5,12.9 +NA,NA,a-curv-i5,2019-20,Boston - Higginson,00350015, 78, 13.4, 163, 46.0, 54.0, 82.8, 48.5,33.7 +NA,NA,a-curv-i5,2019-20,Boston - Higginson/Lewis K-8,00350377, 124, 10.2, 240, 42.5, 57.5, 88.3, 20.8,42.1 +NA,NA,a-curv-i5,2019-20,Boston - Horace Mann School for the Deaf,00350750, 163, 4.9, 85, 36.5, 63.5, 72.9, 68.2,100 +NA,NA,a-curv-i5,2019-20,Boston - Hugh Roe O'Donnell,00350141, 90, 19.7, 259, 51.7, 48.3, 67.2, 54.8,11.6 +NA,NA,a-curv-i5,2019-20,Boston - Jackson Mann,00350013, 285, 14.3, 540, 39.8, 60.2, 72.2, 37.8,30.9 +NA,NA,a-curv-i5,2019-20,Boston - James J Chittick,00350154, 169, 13.3, 282, 44.7, 55.3, 74.5, 25.9,36.5 +NA,NA,a-curv-i5,2019-20,Boston - James Otis,00350156, 199, 19.0, 390, 51.3, 48.7, 62.6, 47.4,10.5 +NA,NA,a-curv-i5,2019-20,Boston - James P Timilty Middle,00350485, 184, 20.6, 347, 53.6, 46.4, 77.2, 25.9,29.4 +NA,NA,a-curv-i5,2019-20,Boston - James W Hennigan,00350153, 305, 16.1, 606, 50.8, 49.2, 78.7, 42.6,23.4 +NA,NA,a-curv-i5,2019-20,Boston - Jeremiah E Burke High,00350525, 142, 16.6, 488, 44.9, 55.1, 72.8, 28.9,22.3 +NA,NA,a-curv-i5,2019-20,Boston - John D Philbrick,00350172, 72, 18.2, 147, 43.5, 56.5, 59.9, 15.0,13.6 +NA,NA,a-curv-i5,2019-20,Boston - John F Kennedy,00350166, 139, 17.2, 374, 46.0, 54.0, 69.3, 34.8,21.9 +NA,NA,a-curv-i5,2019-20,Boston - John W McCormack,00350179, 108, 18.1, 350, 48.9, 51.1, 80.3, 34.6,26.9 +NA,NA,a-curv-i5,2019-20,Boston - John Winthrop,00350180, 93, 18.0, 255, 57.7, 42.4, 81.6, 25.1,12.9 +NA,NA,a-curv-i5,2019-20,Boston - Joseph J Hurley,00350182, 139, 20.6, 364, 52.2, 47.8, 54.4, 33.8,15.1 +NA,NA,a-curv-i5,2019-20,Boston - Joseph Lee,00350183, 294, 15.9, 663, 43.9, 56.1, 73.5, 18.7,41.9 +NA,NA,a-curv-i5,2019-20,Boston - Joseph P Manning,00350184, 57, 22.1, 150, 50.0, 50.0, 30.0, 8.7,26 +NA,NA,a-curv-i5,2019-20,Boston - Joseph P Tynan,00350181, 154, 11.1, 238, 41.6, 58.4, 74.8, 23.1,42.9 +NA,NA,a-curv-i5,2019-20,Boston - Josiah Quincy,00350286, 511, 17.8, 793, 50.1, 49.9, 47.5, 38.5,16 +NA,NA,a-curv-i5,2019-20,Boston - Joyce Kilmer,00350190, 179, 16.5, 464, 43.5, 56.5, 32.3, 10.8,31.5 +NA,NA,a-curv-i5,2019-20,Boston - King K-8,00350376, 178, 16.8, 570, 49.8, 50.2, 81.4, 27.9,27.7 +NA,NA,a-curv-i5,2019-20,Boston - Lee Academy,00350001, 59, 17.3, 206, 47.6, 52.4, 71.8, 32.0,26.7 +NA,NA,a-curv-i5,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 218, 16.8, 506, 43.9, 56.1, 82.8, 42.3,28.5 +NA,NA,a-curv-i5,2019-20,Boston - Lyndon,00350262, 259, 19.1, 662, 47.3, 52.7, 28.9, 7.7,19.2 +NA,NA,a-curv-i5,2019-20,Boston - Lyon K-8,00350004, 82, 14.6, 131, 40.5, 59.5, 44.3, 7.6,39.7 +NA,NA,a-curv-i5,2019-20,Boston - Lyon Upper 9-12,00350655, 73, 14.4, 143, 39.9, 60.1, 49.0, 9.8,46.2 +NA,NA,a-curv-i5,2019-20,Boston - Madison Park High,00350537, 344, 16.0," 1,038", 41.8, 58.2, 75.9, 36.7,34.4 +NA,NA,a-curv-i5,2019-20,Boston - Manassah E Bradley,00350215, 103, 18.3, 274, 46.7, 53.3, 54.7, 28.1,23.4 +NA,NA,a-curv-i5,2019-20,Boston - Margarita Muniz Academy,00350549, 93, 22.3, 349, 51.9, 48.1, 77.4, 48.7,14 +NA,NA,a-curv-i5,2019-20,Boston - Mario Umana Academy,00350656, 417, 19.2, 940, 47.5, 52.6, 64.9, 51.2,14.2 +NA,NA,a-curv-i5,2019-20,Boston - Mather,00350227, 287, 18.3, 572, 50.2, 49.8, 66.6, 40.2,17.5 +NA,NA,a-curv-i5,2019-20,Boston - Mattahunt Elementary School,00350016, 250, 12.2, 416, 40.6, 59.4, 72.4, 38.7,29.8 +NA,NA,a-curv-i5,2019-20,Boston - Maurice J Tobin,00350229, 204, 18.6, 441, 48.8, 51.3, 79.6, 23.6,15.2 +NA,NA,a-curv-i5,2019-20,Boston - Michael J Perkins,00350231, 56, 16.2, 158, 52.5, 47.5, 75.3, 20.9,21.5 +NA,NA,a-curv-i5,2019-20,Boston - Mildred Avenue K-8,00350378, 215, 17.1, 714, 47.9, 52.1, 72.3, 23.1,21.9 +NA,NA,a-curv-i5,2019-20,Boston - Mission Hill School,00350382, 74, 15.6, 232, 41.0, 59.1, 47.4, 13.8,31.9 +NA,NA,a-curv-i5,2019-20,Boston - Mozart,00350237, 70, 18.0, 172, 39.5, 60.5, 30.2, 16.3,27.9 +NA,NA,a-curv-i5,2019-20,Boston - Nathan Hale,00350243, 58, 20.7, 155, 51.6, 48.4, 58.1, 12.9,16.1 +6.280769230769231,5,a-curv-i5,2019-20,Boston - New Mission High School,00350542, 208, 15.6, 462, 52.4, 47.6, 56.7, 10.8,18,447 +NA,NA,a-curv-i5,2019-20,Boston - O W Holmes,00350138, 137, 15.7, 303, 41.9, 58.1, 80.9, 16.5,35 +NA,NA,a-curv-i5,2019-20,Boston - O'Bryant School Math/Science,00350575, 358, 25.0," 1,592", 56.5, 43.5, 48.0, 0.4,4.2 +NA,NA,a-curv-i5,2019-20,Boston - Oliver Hazard Perry,00350255, 113, 16.9, 255, 50.2, 49.8, 50.2, 11.0,23.9 +NA,NA,a-curv-i5,2019-20,Boston - Orchard Gardens,00350257, 410, 19.0, 927, 50.4, 49.6, 72.0, 49.1,16.4 +NA,NA,a-curv-i5,2019-20,Boston - Patrick J Kennedy,00350264, 101, 17.5, 263, 43.4, 56.7, 66.5, 52.5,24.3 +NA,NA,a-curv-i5,2019-20,Boston - Paul A Dever,00350268, 212, 17.1, 440, 47.3, 52.7, 79.3, 44.1,14.3 +NA,NA,a-curv-i5,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 64, 16.9, 184, 53.8, 46.2, 81.5, 23.9,17.4 +NA,NA,a-curv-i5,2019-20,Boston - Phineas Bates,00350278, 100, 17.5, 246, 45.9, 54.1, 50.4, 26.8,33.7 +NA,NA,a-curv-i5,2019-20,Boston - Quincy Upper School,00350565, 188, 19.8, 527, 46.7, 53.3, 58.8, 12.3,19 +NA,NA,a-curv-i5,2019-20,Boston - Rafael Hernandez,00350691, 171, 21.6, 416, 53.1, 46.9, 63.0, 52.2,7.9 +NA,NA,a-curv-i5,2019-20,Boston - Richard J Murphy,00350240, 369, 21.2, 932, 46.1, 53.9, 52.2, 25.6,16.6 +NA,NA,a-curv-i5,2019-20,Boston - Roger Clap,00350298, 44, 16.9, 121, 45.5, 54.6, 77.7, 28.9,40.5 +NA,NA,a-curv-i5,2019-20,Boston - Samuel Adams,00350302, 139, 12.4, 234, 50.0, 50.0, 64.5, 52.6,22.2 +NA,NA,a-curv-i5,2019-20,Boston - Samuel W Mason,00350304, 70, 17.1, 242, 43.0, 56.6, 76.5, 21.9,35.1 +NA,NA,a-curv-i5,2019-20,Boston - Sarah Greenwood,00350308, 197, 16.6, 415, 47.5, 52.5, 80.2, 49.4,25.3 +NA,NA,a-curv-i5,2019-20,Boston - Snowden International School at Copley,00350690, 147, 19.4, 482, 47.3, 52.7, 65.2, 12.0,22.6 +NA,NA,a-curv-i5,2019-20,Boston - TechBoston Academy,00350657, 456, 14.2, 943, 44.9, 55.0, 71.4, 23.5,21.6 +NA,NA,a-curv-i5,2019-20,Boston - The English High,00350535, 262, 17.0, 655, 42.9, 57.0, 71.8, 36.3,22.9 +NA,NA,a-curv-i5,2019-20,Boston - Thomas J Kenny,00350328, 133, 17.0, 297, 46.1, 53.9, 61.6, 21.2,30.3 +NA,NA,a-curv-i5,2019-20,Boston - UP Academy Holland,00350167, 242, 21.5, 769, 52.0, 48.0, 81.8, 26.1,15.2 +NA,NA,a-curv-i5,2019-20,Boston - Urban Science Academy,00350579, 24, 11.7, 70, 44.3, 55.7, 62.9, 14.3,21.4 +NA,NA,a-curv-i5,2019-20,Boston - Warren-Prescott,00350346, 250, 19.1, 582, 49.8, 50.2, 40.7, 8.8,22.7 +NA,NA,a-curv-i5,2019-20,Boston - Washington Irving Middle,00350445, 153, 13.1, 270, 48.2, 51.9, 76.7, 27.4,39.6 +NA,NA,a-curv-i5,2019-20,Boston - West Roxbury Academy,00350658, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2019-20,Boston - William E Russell,00350366, 129, 19.2, 395, 47.6, 52.4, 73.2, 50.1,11.7 +NA,NA,a-curv-i5,2019-20,Boston - William Ellery Channing,00350360, 85, 14.0, 217, 42.4, 57.6, 64.1, 22.1,18 +NA,NA,a-curv-i5,2019-20,Boston - William H Ohrenberger,00350258, 322, 19.9, 628, 47.5, 52.6, 52.2, 26.3,23.3 +NA,NA,a-curv-i5,2019-20,Boston - William McKinley,00350363, 377, 6.6, 328, 22.9, 77.1, 83.2, 21.0,99.7 +NA,NA,a-curv-i5,2019-20,Boston - William Monroe Trotter,00350370, 180, 18.3, 435, 48.5, 51.5, 80.5, 10.8,17.7 +NA,NA,a-curv-i5,2019-20,Boston - Winship Elementary,00350374, 108, 18.6, 240, 52.9, 47.1, 54.2, 28.8,15.4 +NA,NA,a-curv-i5,2019-20,Boston - Young Achievers,00350380, 192, 15.9, 619, 46.4, 53.6, 79.0, 29.4,23.9 +NA,NA,a-curv-i5,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 311, 19.7, 721, 49.4, 50.6, 35.2, 4.9,16.6 +NA,NA,a-curv-i5,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 370, 15.5, 437, 49.9, 50.1, 70.5, 13.7,36.8 +NA,NA,a-curv-i5,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 217, 16.4, 483, 48.7, 51.4, 65.0, 15.5,31.7 +NA,NA,a-curv-i5,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 242, 19.7, 575, 50.1, 49.9, 55.7, 18.6,20.9 +NA,NA,a-curv-i5,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 312, 18.8, 957, 52.9, 47.1, 57.2, 14.7,12.4 +6.218357487922705,5,a-curv-i5,2019-20,Bourne - Bourne High School,00360505, 207, 15.2, 437, 55.2, 44.9, 22.4, 0.7,12.1,461 +NA,NA,a-curv-i5,2019-20,Bourne - Bourne Intermediate School,00360030, 210, 22.2, 466, 53.2, 46.8, 27.5, 1.1,19.7 +NA,NA,a-curv-i5,2019-20,Bourne - Bourne Middle School,00360325, 284, 20.2, 518, 49.0, 51.0, 27.4, 0.6,16.2 +NA,NA,a-curv-i5,2019-20,Bourne - Bournedale Elementary School,00360005, 228, 18.5, 468, 48.9, 51.1, 30.6, 0.2,20.5 +NA,NA,a-curv-i5,2019-20,Boxford - Harry Lee Cole,00380005, 121, 14.5, 326, 48.5, 51.5, 6.4, 2.5,18.4 +NA,NA,a-curv-i5,2019-20,Boxford - Spofford Pond,00380013, 184, 19.1, 422, 46.9, 53.1, 5.2, 1.0,16.4 +NA,NA,a-curv-i5,2019-20,Braintree - Archie T Morrison,00400033, 257, 16.1, 397, 50.9, 49.1, 29.7, 6.1,18.1 +NA,NA,a-curv-i5,2019-20,Braintree - Braintree High,00400505, 841, 17.2," 1,853", 50.3, 49.7, 20.6, 4.7,22.2 +NA,NA,a-curv-i5,2019-20,Braintree - Donald Ross,00400050, 146, 18.8, 261, 47.1, 52.9, 26.8, 14.9,13.8 +NA,NA,a-curv-i5,2019-20,Braintree - East Middle School,00400305, 421, 16.9, 754, 48.9, 51.1, 24.3, 5.6,16.8 +NA,NA,a-curv-i5,2019-20,Braintree - Highlands,00400015, 206, 20.8, 416, 48.8, 51.2, 10.8, 7.2,16.1 +NA,NA,a-curv-i5,2019-20,Braintree - Hollis,00400005, 318, 14.1, 442, 45.0, 55.0, 17.2, 5.7,26.2 +NA,NA,a-curv-i5,2019-20,Braintree - Liberty,00400025, 210, 19.8, 401, 48.1, 51.9, 13.2, 8.2,14 +NA,NA,a-curv-i5,2019-20,Braintree - Mary E Flaherty School,00400020, 171, 19.3, 348, 52.0, 48.0, 19.3, 7.2,19.5 +NA,NA,a-curv-i5,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 105, 19.4, 261, 44.1, 55.9, 23.8, 16.1,14.6 +NA,NA,a-curv-i5,2019-20,Braintree - South Middle School,00400310, 361, 17.7, 695, 52.2, 47.6, 13.1, 2.2,22.6 +NA,NA,a-curv-i5,2019-20,Brewster - Eddy Elementary,00410010, 134, 20.6, 245, 47.8, 52.2, 25.3, 5.3,20 +NA,NA,a-curv-i5,2019-20,Brewster - Stony Brook Elementary,00410005, 121, 17.2, 228, 47.4, 52.6, 36.8, 5.3,24.1 +NA,NA,a-curv-i5,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 112, 16.7, 335, 51.9, 48.1, 66.0, 25.4,22.7 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 177, 25.4, 557, 47.4, 52.6, 20.7, 2.3,14.2 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 573, 16.7," 1,385", 51.1, 48.9, 14.8, 1.2,10.2 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 160, 24.0, 533, 49.7, 50.3, 21.2, 3.2,13.7 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 99, 23.6, 333, 47.8, 52.3, 20.1, 2.1,14.7 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 337, 22.0," 1,199", 45.3, 54.7, 21.3, 5.2,19.5 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 231, 22.8, 672, 47.8, 52.1, 18.2, 1.6,14.7 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 15, 2.9, 12, 41.7, 58.3, 50.0, 0.0,100 +NA,NA,a-curv-i5,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 263, 20.7, 722, 48.6, 51.4, 16.6, 2.6,20.6 +NA,NA,a-curv-i5,2019-20,Brimfield - Brimfield Elementary,00430005, 81, 18.9, 311, 51.1, 48.9, 24.1, 1.3,15.8 +NA,NA,a-curv-i5,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 235, 17.4, 451, 71.2, 28.4, 23.1, 0.0,11.8 +NA,NA,a-curv-i5,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 969, 17.5," 1,290", 43.0, 57.0, 27.8, 0.3,18.3 +NA,NA,a-curv-i5,2019-20,Brockton - Ashfield Middle School,00440421, 239, 22.9, 596, 49.3, 50.7, 54.7, 22.2,15.1 +NA,NA,a-curv-i5,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 29, 10.0, 285, 42.1, 57.9, 53.7, 6.7,63.5 +6.9827160493827165,5,a-curv-i5,2019-20,Brockton - Brockton Champion High School,00440515, 81, 9.1, 119, 44.5, 55.5, 74.0, 16.8,63,103 +NA,NA,a-curv-i5,2019-20,Brockton - Brockton High,00440505," 1,956", 18.1," 4,079", 46.7, 53.3, 56.5, 25.4,12.1 +NA,NA,a-curv-i5,2019-20,Brockton - Brookfield,00440010, 248, 18.0, 533, 50.1, 49.9, 61.4, 36.4,16.7 +NA,NA,a-curv-i5,2019-20,Brockton - Downey,00440110, 312, 16.0, 615, 43.9, 56.1, 69.1, 12.7,35.8 +NA,NA,a-curv-i5,2019-20,Brockton - Dr W Arnone Community School,00440001, 297, 20.0, 782, 43.1, 56.9, 68.9, 18.4,24.9 +NA,NA,a-curv-i5,2019-20,Brockton - East Middle School,00440405, 478, 21.0, 678, 47.5, 52.5, 68.4, 39.7,18.1 +NA,NA,a-curv-i5,2019-20,Brockton - Edgar B Davis,00440023, 524, 22.5," 1,048", 50.8, 49.2, 69.6, 24.8,8.4 +NA,NA,a-curv-i5,2019-20,Brockton - Edison Academy,00440520, 195, 8.7, 326, 41.4, 58.6, 67.8, 48.5,11 +NA,NA,a-curv-i5,2019-20,Brockton - Frederick Douglass Academy,00440080, 50, 7.6, 45, 44.4, 55.6, 73.3, 22.2,35.6 +NA,NA,a-curv-i5,2019-20,Brockton - Gilmore Elementary School,00440055, 175, 22.2, 450, 51.8, 48.2, 73.8, 43.1,6.4 +NA,NA,a-curv-i5,2019-20,Brockton - Hancock,00440045, 199, 22.2, 525, 52.8, 47.2, 49.5, 11.8,10.5 +NA,NA,a-curv-i5,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 157, 6.3, 74, 25.7, 74.3, 81.1, 16.2,100 +NA,NA,a-curv-i5,2019-20,Brockton - John F Kennedy,00440017, 233, 21.6, 600, 50.7, 49.3, 54.5, 35.7,11.8 +NA,NA,a-curv-i5,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 417, 24.2, 781, 51.0, 49.0, 55.3, 16.3,15.1 +NA,NA,a-curv-i5,2019-20,Brockton - Louis F Angelo Elementary,00440065, 363, 20.9, 867, 46.8, 53.2, 64.6, 31.3,19 +NA,NA,a-curv-i5,2019-20,Brockton - Manthala George Jr. School,00440003, 355, 21.9, 929, 49.2, 50.8, 68.7, 44.9,12.8 +NA,NA,a-curv-i5,2019-20,Brockton - Mary E. Baker School,00440002, 360, 15.7, 670, 46.4, 53.6, 54.3, 18.4,21 +NA,NA,a-curv-i5,2019-20,Brockton - North Middle School,00440410, 77, 20.0, 168, 37.5, 62.5, 67.3, 15.5,17.9 +NA,NA,a-curv-i5,2019-20,Brockton - Oscar F Raymond,00440078, 346, 20.6, 836, 47.5, 52.5, 78.8, 36.0,14.7 +NA,NA,a-curv-i5,2019-20,Brockton - South Middle School,00440415, 456, 20.0, 641, 43.2, 56.8, 64.7, 34.8,15.1 +NA,NA,a-curv-i5,2019-20,Brockton - West Middle School,00440420, 470, 23.4, 710, 46.6, 53.4, 58.0, 10.7,19.7 +NA,NA,a-curv-i5,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 837, 19.1," 1,968", 53.1, 46.9, 51.3, 7.6,10.7 +NA,NA,a-curv-i5,2019-20,Brookfield - Brookfield Elementary,00450005, 77, 19.9, 307, 46.9, 53.1, 31.6, 0.3,13.4 +NA,NA,a-curv-i5,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 12.0, 60, 41.7, 58.3, 1.7, 5.0,26.7 +NA,NA,a-curv-i5,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 3, 9.7, 29, 48.3, 51.7, 3.5, 10.3,20.7 +NA,NA,a-curv-i5,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 5, 13.0, 65, 46.2, 53.9, 6.2, 9.2,30.8 +NA,NA,a-curv-i5,2019-20,Brookline - Brookline High,00460505," 1,190", 13.8," 2,091", 48.8, 50.7, 11.6, 2.6,17.3 +NA,NA,a-curv-i5,2019-20,Brookline - Coolidge Corner School,00460015, 554, 17.9, 918, 49.1, 50.7, 12.6, 14.8,15 +NA,NA,a-curv-i5,2019-20,Brookline - Edith C Baker,00460005, 457, 18.2, 749, 49.7, 50.3, 9.1, 16.3,16.7 +NA,NA,a-curv-i5,2019-20,Brookline - Heath,00460025, 308, 18.9, 568, 49.8, 50.2, 4.4, 5.1,11.4 +NA,NA,a-curv-i5,2019-20,Brookline - John D Runkle,00460045, 325, 19.7, 599, 47.6, 52.4, 7.9, 11.9,19.4 +NA,NA,a-curv-i5,2019-20,Brookline - Lawrence,00460030, 414, 17.9, 666, 48.4, 51.4, 7.7, 20.0,15.8 +NA,NA,a-curv-i5,2019-20,Brookline - Michael Driscoll,00460020, 335, 19.3, 595, 47.9, 52.1, 5.9, 11.4,16.1 +NA,NA,a-curv-i5,2019-20,Brookline - Pierce,00460040, 529, 17.7, 843, 51.1, 48.8, 7.7, 16.4,10.4 +NA,NA,a-curv-i5,2019-20,Brookline - The Lynch Center,00460060, 5, 12.0, 60, 43.3, 56.7, 25.0, 6.7,25 +NA,NA,a-curv-i5,2019-20,Brookline - William H Lincoln,00460035, 382, 16.5, 570, 52.1, 47.9, 13.3, 14.7,22.1 +NA,NA,a-curv-i5,2019-20,Burlington - Burlington High,00480505, 567, 13.6," 1,084", 46.4, 53.6, 14.3, 4.3,9.6 +NA,NA,a-curv-i5,2019-20,Burlington - Fox Hill,00480007, 185, 18.1, 449, 49.0, 51.0, 10.7, 3.8,11.8 +NA,NA,a-curv-i5,2019-20,Burlington - Francis Wyman Elementary,00480035, 242, 16.4, 533, 49.0, 51.0, 15.6, 7.7,14.3 +NA,NA,a-curv-i5,2019-20,Burlington - Marshall Simonds Middle,00480303, 457, 18.2, 774, 52.1, 47.9, 12.5, 3.0,13.1 +NA,NA,a-curv-i5,2019-20,Burlington - Memorial,00480015, 177, 16.9, 404, 50.3, 49.8, 15.1, 9.2,13.6 +NA,NA,a-curv-i5,2019-20,Burlington - Pine Glen Elementary,00480020, 153, 15.2, 310, 47.1, 52.9, 13.2, 8.4,17.7 +NA,NA,a-curv-i5,2019-20,Cambridge - Amigos School,00490006, 193, 19.5, 425, 53.7, 46.4, 19.3, 3.5,13.2 +NA,NA,a-curv-i5,2019-20,Cambridge - Cambridge Rindge and Latin,00490506," 1,111", 14.9," 2,002", 50.2, 49.9, 31.0, 4.8,18.3 +NA,NA,a-curv-i5,2019-20,Cambridge - Cambridge Street Upper School,00490305, 150, 18.9, 291, 42.3, 57.7, 35.7, 1.4,32.7 +NA,NA,a-curv-i5,2019-20,Cambridge - Cambridgeport,00490007, 146, 16.4, 332, 47.0, 52.4, 23.8, 2.1,21.4 +NA,NA,a-curv-i5,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 228, 11.6, 283, 46.3, 53.7, 47.7, 6.7,31.5 +NA,NA,a-curv-i5,2019-20,Cambridge - Graham and Parks,00490080, 190, 14.8, 394, 47.2, 52.8, 25.6, 33.5,17.3 +NA,NA,a-curv-i5,2019-20,Cambridge - Haggerty,00490020, 124, 15.1, 256, 52.3, 47.7, 22.7, 6.3,20.3 +NA,NA,a-curv-i5,2019-20,Cambridge - John M Tobin,00490065, 242, 9.1, 313, 47.3, 52.7, 24.3, 4.5,23 +NA,NA,a-curv-i5,2019-20,Cambridge - Kennedy-Longfellow,00490040, 201, 12.4, 327, 47.7, 52.3, 43.4, 30.9,22.3 +NA,NA,a-curv-i5,2019-20,Cambridge - King Open,00490035, 246, 12.5, 376, 50.0, 50.0, 30.1, 6.9,23.4 +NA,NA,a-curv-i5,2019-20,Cambridge - Maria L. Baldwin,00490005, 180, 15.8, 348, 47.1, 52.9, 18.4, 2.9,18.4 +NA,NA,a-curv-i5,2019-20,Cambridge - Martin Luther King Jr.,00490030, 184, 15.6, 323, 48.6, 51.1, 19.5, 8.4,16.7 +NA,NA,a-curv-i5,2019-20,Cambridge - Morse,00490045, 170, 13.6, 327, 44.7, 55.4, 32.7, 5.5,28.8 +NA,NA,a-curv-i5,2019-20,Cambridge - Peabody,00490050, 131, 19.7, 321, 50.5, 49.5, 28.4, 5.3,23.4 +NA,NA,a-curv-i5,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 140, 18.9, 269, 51.7, 47.6, 42.4, 3.0,26 +NA,NA,a-curv-i5,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 121, 21.5, 285, 55.4, 44.6, 26.7, 2.5,21.8 +NA,NA,a-curv-i5,2019-20,Cambridge - Vassal Lane Upper School,00490320, 153, 16.6, 287, 49.5, 50.2, 32.4, 13.9,22 +NA,NA,a-curv-i5,2019-20,Canton - Canton High,00500505, 515, 17.1, 984, 53.0, 46.7, 15.2, 1.5,9.2 +NA,NA,a-curv-i5,2019-20,Canton - Dean S Luce,00500020, 433, 19.1, 479, 50.3, 49.7, 15.5, 4.4,12.9 +NA,NA,a-curv-i5,2019-20,Canton - John F Kennedy,00500017, 437, 20.1, 506, 48.4, 51.6, 10.9, 1.8,11.9 +NA,NA,a-curv-i5,2019-20,Canton - Lt Peter M Hansen,00500012, 441, 19.5, 496, 49.4, 50.6, 15.5, 4.4,11.5 +NA,NA,a-curv-i5,2019-20,Canton - Rodman Early Childhood Center,00500010, 32, 11.6, 93, 39.8, 60.2, 19.4, 9.7,30.1 +NA,NA,a-curv-i5,2019-20,Canton - Wm H Galvin Middle,00500305, 473, 19.0, 778, 52.4, 47.6, 16.6, 1.3,11.2 +NA,NA,a-curv-i5,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 150, 16.5, 239, 50.2, 49.8, 18.0, 1.3,20.5 +NA,NA,a-curv-i5,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 403, 13.8, 601, 34.8, 65.1, 41.1, 2.7,25 +NA,NA,a-curv-i5,2019-20,Carlisle - Carlisle School,00510025, 314, 18.1, 602, 47.3, 52.7, 4.5, 2.2,17.3 +NA,NA,a-curv-i5,2019-20,Carver - Carver Elementary School,00520015, 383, 20.3, 806, 49.6, 50.4, 25.6, 1.2,20.2 +6.53621103117506,5,a-curv-i5,2019-20,Carver - Carver Middle/High School,00520405, 417, 15.1, 757, 48.0, 52.1, 22.3, 1.1,20.9,763 +NA,NA,a-curv-i5,2019-20,Central Berkshire - Becket Washington School,06350005, 50, 17.3, 119, 52.9, 47.1, 47.1, 0.0,26.1 +NA,NA,a-curv-i5,2019-20,Central Berkshire - Craneville,06350025, 162, 21.1, 421, 44.9, 55.1, 38.5, 1.2,15.2 +NA,NA,a-curv-i5,2019-20,Central Berkshire - Kittredge,06350035, 59, 16.8, 153, 54.3, 45.8, 29.4, 0.0,20.3 +NA,NA,a-curv-i5,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 181, 19.9, 385, 47.0, 53.0, 31.2, 0.3,15.6 +NA,NA,a-curv-i5,2019-20,Central Berkshire - Wahconah Regional High,06350505, 259, 14.2, 499, 47.9, 52.1, 26.1, 0.6,8.8 +NA,NA,a-curv-i5,2019-20,Chelmsford - Byam School,00560030, 172, 22.7, 498, 49.2, 50.8, 16.9, 6.4,17.7 +NA,NA,a-curv-i5,2019-20,Chelmsford - Center Elementary School,00560005, 173, 22.5, 491, 47.9, 52.1, 15.7, 9.0,13.2 +NA,NA,a-curv-i5,2019-20,Chelmsford - Charles D Harrington,00560025, 188, 21.3, 508, 50.8, 49.2, 17.5, 7.5,13.2 +NA,NA,a-curv-i5,2019-20,Chelmsford - Chelmsford High,00560505, 760, 15.8," 1,416", 51.6, 48.5, 8.6, 1.1,12.2 +NA,NA,a-curv-i5,2019-20,Chelmsford - Col Moses Parker School,00560305, 438, 15.8, 742, 42.6, 57.4, 13.5, 2.3,16.3 +NA,NA,a-curv-i5,2019-20,Chelmsford - Community Education Center,00560001, 111, 13.7, 193, 36.8, 63.2, 20.2, 14.0,51.8 +NA,NA,a-curv-i5,2019-20,Chelmsford - McCarthy Middle School,00560310, 442, 16.8, 804, 47.5, 52.5, 12.6, 2.4,17.2 +NA,NA,a-curv-i5,2019-20,Chelmsford - South Row,00560015, 157, 22.8, 452, 48.7, 51.3, 12.0, 6.9,12.2 +NA,NA,a-curv-i5,2019-20,Chelsea - Chelsea High,00570505, 521, 21.0," 1,492", 44.1, 55.9, 61.5, 32.6,10.5 +NA,NA,a-curv-i5,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 39, 9.8, 113, 35.4, 64.6, 64.6, 52.2,8.9 +NA,NA,a-curv-i5,2019-20,Chelsea - Clark Avenue School,00570050, 342, 26.5, 707, 47.8, 52.2, 64.8, 23.1,18.3 +NA,NA,a-curv-i5,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 125, 21.9, 559, 50.3, 49.7, 70.3, 56.0,13.2 +NA,NA,a-curv-i5,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 201, 24.4, 541, 48.6, 51.4, 72.1, 14.6,25.7 +NA,NA,a-curv-i5,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 112, 24.4, 555, 49.9, 50.1, 71.2, 55.3,8.3 +NA,NA,a-curv-i5,2019-20,Chelsea - George F. Kelly Elementary,00570035, 149, 20.1, 509, 55.2, 44.8, 59.1, 36.9,11 +NA,NA,a-curv-i5,2019-20,Chelsea - Joseph A. Browne School,00570055, 262, 25.7, 613, 47.6, 52.4, 72.8, 39.5,10.1 +NA,NA,a-curv-i5,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 84, 20.3, 935, 47.7, 52.3, 67.1, 54.4,16.4 +NA,NA,a-curv-i5,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 106, 21.6, 507, 48.5, 51.5, 72.2, 46.4,19.9 +NA,NA,a-curv-i5,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 65, 14.6, 131, 47.3, 52.7, 24.4, 0.0,20.6 +NA,NA,a-curv-i5,2019-20,Chicopee - Barry,00610003, 96, 18.2, 427, 45.7, 54.3, 51.1, 10.1,20.8 +NA,NA,a-curv-i5,2019-20,Chicopee - Belcher,00610010, 59, 20.7, 246, 50.0, 50.0, 64.6, 13.8,12.6 +NA,NA,a-curv-i5,2019-20,Chicopee - Bellamy Middle,00610305, 436, 21.1, 894, 47.7, 52.4, 53.9, 3.2,20.1 +NA,NA,a-curv-i5,2019-20,Chicopee - Bowe,00610015, 94, 22.4, 458, 47.8, 52.2, 74.2, 15.3,19 +NA,NA,a-curv-i5,2019-20,Chicopee - Bowie,00610020, 83, 18.7, 304, 50.0, 50.0, 40.1, 2.6,12.8 +NA,NA,a-curv-i5,2019-20,Chicopee - Chicopee Academy,00610021, 100, 6.8, 94, 27.7, 72.3, 86.2, 4.3,40.4 +6.500158478605388,5,a-curv-i5,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 631, 16.3," 1,210", 44.1, 55.9, 42.1, 3.5,15.5,1183 +NA,NA,a-curv-i5,2019-20,Chicopee - Chicopee High,00610505, 550, 17.5," 1,037", 48.9, 51.1, 54.6, 6.3,18 +NA,NA,a-curv-i5,2019-20,Chicopee - Dupont Middle,00610310, 306, 21.3, 830, 44.6, 55.4, 60.1, 6.9,19.3 +NA,NA,a-curv-i5,2019-20,Chicopee - Fairview Elementary,00610050, 144, 18.9, 446, 42.8, 57.2, 72.0, 7.6,16.6 +NA,NA,a-curv-i5,2019-20,Chicopee - Gen John J Stefanik,00610090, 89, 16.0, 353, 49.0, 51.0, 74.5, 9.1,18.4 +NA,NA,a-curv-i5,2019-20,Chicopee - Lambert-Lavoie,00610040, 79, 14.7, 285, 45.3, 54.7, 50.5, 2.5,13.3 +NA,NA,a-curv-i5,2019-20,Chicopee - Litwin,00610022, 120, 16.1, 385, 49.4, 50.7, 56.4, 7.5,18.2 +NA,NA,a-curv-i5,2019-20,Chicopee - Streiber Memorial School,00610065, 80, 15.9, 251, 45.4, 54.6, 42.2, 1.2,14.3 +NA,NA,a-curv-i5,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 24, 12.2, 291, 37.1, 62.9, 44.3, 0.7,53.3 +NA,NA,a-curv-i5,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 154, 21.3, 398, 48.5, 51.3, 30.7, 3.5,21.4 +NA,NA,a-curv-i5,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 113, 9.5, 211, 40.8, 59.2, 55.9, 14.2,21.8 +NA,NA,a-curv-i5,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 111, 8.9, 181, 49.7, 50.3, 63.5, 22.7,24.3 +NA,NA,a-curv-i5,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 32, 12.6, 121, 43.0, 56.2, 78.5, 24.0,33.1 +NA,NA,a-curv-i5,2019-20,Clarksburg - Clarksburg Elementary,00630010, 93, 17.5, 194, 51.6, 48.5, 29.4, 0.0,19.1 +NA,NA,a-curv-i5,2019-20,Clinton - Clinton Elementary,00640050, 270, 19.4, 847, 47.7, 52.3, 43.2, 16.7,22.4 +NA,NA,a-curv-i5,2019-20,Clinton - Clinton Middle School,00640305, 295, 21.1, 623, 45.3, 54.6, 41.7, 10.3,21.8 +NA,NA,a-curv-i5,2019-20,Clinton - Clinton Senior High,00640505, 232, 13.8, 453, 45.3, 54.8, 32.2, 10.6,17.7 +NA,NA,a-curv-i5,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 162, 14.5, 353, 49.9, 50.1, 66.0, 9.4,25.2 +6.797435897435898,5,a-curv-i5,2019-20,Cohasset - Cohasset High School,00650505, 312, 15.8, 467, 52.0, 47.8, 5.6, 0.0,11.1,469 +NA,NA,a-curv-i5,2019-20,Cohasset - Cohasset Middle School,00650305, 186, 20.6, 351, 46.7, 53.3, 6.6, 0.3,15.4 +NA,NA,a-curv-i5,2019-20,Cohasset - Deer Hill,00650005, 186, 22.0, 351, 47.3, 52.7, 5.4, 0.3,14.5 +NA,NA,a-curv-i5,2019-20,Cohasset - Joseph Osgood,00650010, 152, 20.4, 333, 52.3, 47.8, 5.4, 0.3,12.6 +NA,NA,a-curv-i5,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 344, 28.1, 933, 50.9, 49.0, 47.9, 29.4,7.2 +NA,NA,a-curv-i5,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 150, 13.9, 325, 58.2, 41.9, 40.9, 7.7,12 +NA,NA,a-curv-i5,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 120, 20.0, 400, 48.8, 51.3, 60.8, 22.0,12.3 +NA,NA,a-curv-i5,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 108, 22.2, 400, 50.8, 49.3, 56.8, 28.8,13.3 +NA,NA,a-curv-i5,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 119, 20.1, 401, 50.4, 49.6, 57.6, 24.2,11.2 +NA,NA,a-curv-i5,2019-20,Concord - Alcott,00670005, 284, 19.1, 505, 47.9, 52.1, 12.3, 4.0,14.9 +NA,NA,a-curv-i5,2019-20,Concord - Concord Middle,00670305, 452, 18.2, 725, 49.1, 50.9, 7.6, 1.8,20 +NA,NA,a-curv-i5,2019-20,Concord - Thoreau,00670020, 295, 16.6, 459, 49.0, 51.0, 6.5, 3.3,20 +NA,NA,a-curv-i5,2019-20,Concord - Willard,00670030, 273, 17.2, 435, 49.7, 50.3, 4.1, 3.2,17 +NA,NA,a-curv-i5,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 535, 19.3," 1,287", 51.7, 48.1, 6.4, 0.6,16.4 +NA,NA,a-curv-i5,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 144, 17.4, 453, 52.1, 47.9, 56.1, 17.4,14.1 +NA,NA,a-curv-i5,2019-20,Conway - Conway Grammar,00680005, 93, 14.7, 132, 43.9, 56.1, 28.8, 0.0,22 +NA,NA,a-curv-i5,2019-20,Danvers - Danvers High,00710505, 472, 15.4, 889, 49.4, 50.5, 17.9, 0.9,17.2 +NA,NA,a-curv-i5,2019-20,Danvers - Great Oak,00710015, 215, 20.2, 362, 50.6, 49.5, 22.1, 1.7,11.6 +NA,NA,a-curv-i5,2019-20,Danvers - Highlands,00710010, 208, 21.3, 384, 45.6, 54.4, 20.6, 2.9,15.1 +NA,NA,a-curv-i5,2019-20,Danvers - Holten Richmond Middle School,00710305, 621, 18.2, 822, 47.5, 52.6, 18.4, 0.5,18.3 +NA,NA,a-curv-i5,2019-20,Danvers - Ivan G Smith,00710032, 165, 21.2, 296, 53.4, 46.6, 16.2, 1.0,14.2 +NA,NA,a-curv-i5,2019-20,Danvers - Riverside,00710030, 194, 17.2, 382, 46.6, 53.4, 20.2, 0.8,34.6 +NA,NA,a-curv-i5,2019-20,Danvers - Willis E Thorpe,00710045, 208, 16.5, 303, 49.5, 50.5, 18.2, 1.0,16.5 +NA,NA,a-curv-i5,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 38, 19.2, 163, 42.9, 57.1, 25.2, 1.2,31.9 +NA,NA,a-curv-i5,2019-20,Dartmouth - Dartmouth High,00720505, 462, 18.8," 1,054", 49.2, 50.8, 16.6, 0.4,12.3 +NA,NA,a-curv-i5,2019-20,Dartmouth - Dartmouth Middle,00720050, 691, 15.7, 904, 48.7, 51.3, 25.4, 1.1,17.9 +NA,NA,a-curv-i5,2019-20,Dartmouth - George H Potter,00720030, 160, 21.2, 397, 45.8, 54.2, 30.2, 1.5,14.9 +NA,NA,a-curv-i5,2019-20,Dartmouth - James M. Quinn School,00720040, 273, 21.6, 671, 46.2, 53.8, 26.1, 2.8,19.5 +NA,NA,a-curv-i5,2019-20,Dartmouth - Joseph Demello,00720015, 180, 20.2, 403, 47.9, 52.1, 23.6, 5.7,18.4 +NA,NA,a-curv-i5,2019-20,Dedham - Avery,00730010, 65, 19.6, 290, 54.1, 45.9, 42.1, 15.9,27.2 +NA,NA,a-curv-i5,2019-20,Dedham - Dedham High,00730505, 383, 14.2, 730, 50.4, 49.5, 23.3, 4.4,18.8 +NA,NA,a-curv-i5,2019-20,Dedham - Dedham Middle School,00730305, 400, 17.3, 679, 44.9, 55.1, 23.3, 5.0,22.7 +NA,NA,a-curv-i5,2019-20,Dedham - Early Childhood Center,00730005, 88, 16.5, 364, 46.2, 53.9, 19.0, 9.6,14.3 +NA,NA,a-curv-i5,2019-20,Dedham - Greenlodge,00730025, 52, 21.0, 248, 42.7, 57.3, 11.3, 3.2,23.8 +NA,NA,a-curv-i5,2019-20,Dedham - Oakdale,00730030, 58, 19.1, 250, 51.6, 48.4, 12.8, 6.4,18.4 +NA,NA,a-curv-i5,2019-20,Dedham - Riverdale,00730045, 46, 17.9, 187, 50.3, 49.7, 25.1, 11.8,27.3 +NA,NA,a-curv-i5,2019-20,Deerfield - Deerfield Elementary,00740015, 248, 17.2, 390, 50.5, 49.5, 20.0, 1.5,21 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 664, 12.8, 909, 50.8, 49.2, 38.0, 6.8,16.4 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 87, 15.8, 309, 49.8, 50.2, 49.8, 17.2,24.3 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 55, 18.3, 312, 44.9, 55.1, 57.7, 24.7,24.4 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 287, 15.1, 456, 50.2, 49.8, 45.6, 8.3,19.1 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 197, 16.9, 484, 46.1, 53.9, 46.3, 9.9,20.9 +NA,NA,a-curv-i5,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 84, 20.1, 423, 48.2, 51.8, 41.1, 13.7,8.5 +NA,NA,a-curv-i5,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 244, 18.8, 501, 50.1, 49.9, 20.8, 0.4,20 +NA,NA,a-curv-i5,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 260, 19.4, 407, 45.7, 54.3, 15.2, 0.5,11.3 +6.252691218130312,5,a-curv-i5,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 353, 17.2, 759, 48.5, 51.5, 14.1, 0.0,9.9,771 +NA,NA,a-curv-i5,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 273, 20.4, 547, 50.3, 49.7, 17.7, 0.4,17.9 +NA,NA,a-curv-i5,2019-20,Dighton-Rehoboth - Palmer River,06500010, 302, 21.7, 637, 48.4, 51.7, 13.8, 0.6,17.1 +NA,NA,a-curv-i5,2019-20,Douglas - Douglas Elementary School,00770015, 120, 22.8, 363, 47.7, 52.3, 17.6, 1.4,22 +6.63177570093458,5,a-curv-i5,2019-20,Douglas - Douglas High School,00770505, 214, 13.1, 362, 50.6, 49.5, 16.9, 0.0,17.4,366 +NA,NA,a-curv-i5,2019-20,Douglas - Douglas Middle School,00770305, 164, 17.8, 301, 46.2, 53.8, 15.3, 1.7,16.9 +NA,NA,a-curv-i5,2019-20,Douglas - Douglas Primary School,00770005, 72, 19.5, 250, 48.4, 51.6, 20.0, 1.6,13.2 +NA,NA,a-curv-i5,2019-20,Dover - Chickering,00780005, 176, 19.6, 500, 42.6, 57.4, 2.0, 4.8,13.8 +NA,NA,a-curv-i5,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 347, 16.4, 672, 50.5, 49.4, 3.3, 0.9,13.8 +NA,NA,a-curv-i5,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 310, 19.2, 523, 45.9, 54.1, 3.1, 0.6,16.1 +NA,NA,a-curv-i5,2019-20,Dracut - Brookside Elementary,00790035, 193, 21.6, 456, 47.2, 52.9, 31.1, 2.2,13.4 +NA,NA,a-curv-i5,2019-20,Dracut - Dracut Senior High,00790505, 395, 19.3, 889, 48.5, 51.3, 19.2, 2.5,11 +NA,NA,a-curv-i5,2019-20,Dracut - George H. Englesby Elementary School,00790045, 247, 20.8, 564, 48.1, 52.0, 33.3, 2.1,15.8 +NA,NA,a-curv-i5,2019-20,Dracut - Greenmont Avenue,00790030, 119, 21.7, 284, 45.8, 54.2, 37.0, 6.7,10.9 +NA,NA,a-curv-i5,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 237, 21.1, 610, 45.6, 54.4, 17.9, 1.3,21.2 +NA,NA,a-curv-i5,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 432, 20.4, 920, 50.2, 49.4, 25.9, 1.2,21.2 +NA,NA,a-curv-i5,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 38, 18.7, 264, 53.4, 46.6, 65.2, 39.8,14.8 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 94, 19.8, 364, 47.0, 53.0, 26.9, 9.6,23.9 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 403, 17.7, 667, 47.7, 52.3, 18.3, 0.6,14.4 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 102, 21.4, 363, 50.1, 49.9, 32.0, 4.4,15.4 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 414, 18.9, 577, 50.6, 49.4, 25.5, 1.6,14.9 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 138, 22.2, 429, 45.7, 54.3, 19.4, 3.3,19.4 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 74, 19.3, 289, 45.3, 54.3, 34.3, 9.3,26 +NA,NA,a-curv-i5,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 436, 18.0," 1,046", 51.7, 48.2, 19.4, 0.6,10.1 +NA,NA,a-curv-i5,2019-20,Duxbury - Alden School,00820004, 330, 20.6, 617, 50.2, 49.8, 5.2, 0.5,14.4 +NA,NA,a-curv-i5,2019-20,Duxbury - Chandler Elementary,00820006, 361, 18.3, 643, 46.7, 53.3, 7.3, 0.6,17.3 +NA,NA,a-curv-i5,2019-20,Duxbury - Duxbury High,00820505, 514, 16.9, 988, 48.7, 51.3, 5.8, 0.2,12.8 +NA,NA,a-curv-i5,2019-20,Duxbury - Duxbury Middle,00820305, 316, 21.8, 745, 50.6, 49.4, 7.0, 0.5,15.4 +NA,NA,a-curv-i5,2019-20,East Bridgewater - Central,00830005, 252, 17.1, 564, 54.1, 45.9, 21.6, 1.2,15.3 +6.311297071129706,5,a-curv-i5,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 478, 21.5," 1,020", 47.7, 52.4, 18.9, 0.8,17.2,1009 +NA,NA,a-curv-i5,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 334, 21.8, 643, 45.6, 54.4, 18.4, 0.5,17.7 +NA,NA,a-curv-i5,2019-20,East Longmeadow - Birchland Park,00870305, 309, 17.7, 617, 51.9, 48.1, 22.2, 0.7,14.9 +NA,NA,a-curv-i5,2019-20,East Longmeadow - East Longmeadow High,00870505, 334, 17.9, 833, 46.9, 52.9, 18.9, 0.8,16.5 +NA,NA,a-curv-i5,2019-20,East Longmeadow - Mapleshade,00870010, 160, 16.7, 279, 42.7, 57.0, 22.6, 1.8,23.7 +NA,NA,a-curv-i5,2019-20,East Longmeadow - Meadow Brook,00870013, 191, 19.8, 584, 47.6, 52.4, 22.1, 3.1,21.8 +NA,NA,a-curv-i5,2019-20,East Longmeadow - Mountain View,00870015, 125, 15.6, 273, 44.7, 55.3, 15.4, 2.6,18.7 +NA,NA,a-curv-i5,2019-20,Eastham - Eastham Elementary,00850005, 135, 13.8, 202, 48.0, 52.0, 34.2, 3.5,20.3 +NA,NA,a-curv-i5,2019-20,Easthampton - Center School,00860005, 42, 19.6, 201, 47.8, 52.2, 30.9, 6.5,13.9 +NA,NA,a-curv-i5,2019-20,Easthampton - Easthampton High,00860505, 197, 15.6, 454, 51.5, 48.0, 29.1, 1.3,16.3 +NA,NA,a-curv-i5,2019-20,Easthampton - Maple,00860010, 51, 17.8, 261, 46.0, 54.0, 39.1, 0.4,21.8 +NA,NA,a-curv-i5,2019-20,Easthampton - Neil A Pepin,00860020, 44, 18.2, 196, 45.9, 54.1, 36.7, 2.0,16.8 +NA,NA,a-curv-i5,2019-20,Easthampton - White Brook Middle School,00860305, 200, 20.0, 440, 50.7, 49.3, 35.9, 3.4,25 +NA,NA,a-curv-i5,2019-20,Easton - Center School,00880003, 54, 17.1, 248, 45.6, 54.4, 22.6, 5.2,15.7 +NA,NA,a-curv-i5,2019-20,Easton - Easton Middle School,00880405, 482, 19.9, 881, 49.3, 50.7, 13.5, 1.0,20 +NA,NA,a-curv-i5,2019-20,Easton - Moreau Hall,00880020, 45, 19.6, 229, 48.0, 52.0, 22.3, 5.2,8.7 +NA,NA,a-curv-i5,2019-20,Easton - Oliver Ames High,00880505, 530, 18.0," 1,123", 50.3, 49.7, 14.1, 1.0,18.2 +NA,NA,a-curv-i5,2019-20,Easton - Parkview Elementary,00880015, 60, 19.1, 324, 48.2, 51.9, 10.8, 2.5,18.8 +NA,NA,a-curv-i5,2019-20,Easton - Richardson Olmsted School,00880025, 137, 23.9, 820, 47.4, 52.6, 17.3, 1.8,21 +NA,NA,a-curv-i5,2019-20,Edgartown - Edgartown Elementary,00890005, 278, 17.8, 407, 51.1, 48.9, 36.1, 24.1,22.9 +NA,NA,a-curv-i5,2019-20,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 197, 17.8, 374, 65.8, 34.2, 66.8, 11.5,19.8 +NA,NA,a-curv-i5,2019-20,Erving - Erving Elementary,00910030, 59, 15.5, 131, 41.2, 58.8, 32.1, 1.5,20.6 +NA,NA,a-curv-i5,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 952, 17.2," 1,486", 58.0, 41.9, 17.3, 0.3,16.1 +NA,NA,a-curv-i5,2019-20,Everett - Adams School,00930003, 54, 11.4, 158, 44.3, 55.7, 48.1, 29.8,26 +NA,NA,a-curv-i5,2019-20,Everett - Devens School,00930030, 149, 3.3, 64, 25.0, 73.4, 81.3, 15.6,73.4 +NA,NA,a-curv-i5,2019-20,Everett - Everett High,00930505," 1,056", 18.4," 2,039", 48.3, 51.7, 51.0, 22.5,9.9 +NA,NA,a-curv-i5,2019-20,Everett - George Keverian School,00930028, 501, 24.1, 976, 49.4, 50.6, 60.3, 32.4,17.6 +NA,NA,a-curv-i5,2019-20,Everett - Lafayette School,00930038, 501, 23.6," 1,027", 49.6, 50.4, 54.6, 25.2,23 +NA,NA,a-curv-i5,2019-20,Everett - Madeline English School,00930018, 408, 22.0, 810, 49.9, 50.1, 51.7, 20.4,20 +NA,NA,a-curv-i5,2019-20,Everett - Parlin School,00930058, 453, 24.2, 973, 53.6, 46.5, 64.7, 45.1,9.8 +NA,NA,a-curv-i5,2019-20,Everett - Sumner G. Whittier School,00930010, 284, 22.2, 666, 49.7, 50.3, 62.3, 40.5,14.1 +NA,NA,a-curv-i5,2019-20,Everett - Webster Extension,00930001, 80, 12.7, 253, 48.2, 51.8, 52.2, 24.9,31.6 +NA,NA,a-curv-i5,2019-20,Everett - Webster School,00930015, 190, 15.0, 357, 46.5, 53.5, 58.3, 26.6,29.1 +NA,NA,a-curv-i5,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 468, 23.6," 1,354", 50.2, 49.8, 48.7, 8.8,20.4 +NA,NA,a-curv-i5,2019-20,Fairhaven - East Fairhaven,00940010, 170, 20.7, 394, 48.7, 51.3, 34.3, 3.1,20.8 +NA,NA,a-curv-i5,2019-20,Fairhaven - Fairhaven High,00940505, 351, 16.2, 709, 53.5, 46.5, 24.5, 1.4,14.7 +NA,NA,a-curv-i5,2019-20,Fairhaven - Hastings Middle,00940305, 322, 16.5, 458, 46.7, 53.3, 27.7, 0.7,17 +NA,NA,a-curv-i5,2019-20,Fairhaven - Leroy Wood,00940030, 212, 20.1, 488, 50.0, 50.0, 33.2, 2.3,20.1 +NA,NA,a-curv-i5,2019-20,Fall River - B M C Durfee High,00950505, 854, 17.7," 2,191", 50.2, 49.8, 64.4, 17.3,15.4 +NA,NA,a-curv-i5,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 315, 19.9, 768, 50.0, 50.0, 80.5, 26.7,17.3 +NA,NA,a-curv-i5,2019-20,Fall River - Henry Lord Community School,00950017, 420, 16.2, 826, 46.3, 53.8, 84.5, 26.3,28.2 +NA,NA,a-curv-i5,2019-20,Fall River - James Tansey,00950140, 98, 25.1, 305, 50.5, 49.5, 47.9, 6.2,18.7 +NA,NA,a-curv-i5,2019-20,Fall River - John J Doran,00950045, 219, 19.2, 529, 47.6, 52.4, 80.9, 7.4,25 +NA,NA,a-curv-i5,2019-20,Fall River - Letourneau Elementary School,00950013, 220, 23.6, 657, 50.7, 49.3, 77.0, 37.4,13.6 +NA,NA,a-curv-i5,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 232, 24.0, 690, 44.4, 55.7, 80.7, 29.1,18.6 +NA,NA,a-curv-i5,2019-20,Fall River - Matthew J Kuss Middle,00950320, 447, 20.1, 764, 54.2, 45.8, 64.7, 7.2,19.4 +NA,NA,a-curv-i5,2019-20,Fall River - Morton Middle,00950315, 255, 21.6, 657, 45.4, 54.6, 62.4, 7.2,23.6 +NA,NA,a-curv-i5,2019-20,Fall River - North End Elementary,00950005, 308, 20.2, 841, 47.8, 52.2, 61.4, 10.1,29.1 +NA,NA,a-curv-i5,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 146, 8.2, 314, 40.5, 59.2, 87.6, 13.7,26.4 +NA,NA,a-curv-i5,2019-20,Fall River - Samuel Watson,00950145, 88, 22.1, 271, 53.9, 46.1, 78.2, 13.7,17.7 +NA,NA,a-curv-i5,2019-20,Fall River - Spencer Borden,00950130, 226, 18.1, 582, 46.1, 54.0, 62.7, 9.8,33.2 +NA,NA,a-curv-i5,2019-20,Fall River - Stone PK-12 School,00950340, 107, 5.8, 82, 24.4, 75.6, 87.8, 12.2,89 +NA,NA,a-curv-i5,2019-20,Fall River - Talbot Innovation School,00950305, 302, 19.6, 602, 47.7, 52.3, 75.6, 31.6,22.6 +NA,NA,a-curv-i5,2019-20,Fall River - William S Greene,00950065, 341, 18.0, 773, 50.7, 49.3, 70.3, 21.1,21.9 +NA,NA,a-curv-i5,2019-20,Falmouth - East Falmouth Elementary,00960005, 78, 15.2, 324, 44.4, 55.6, 40.7, 8.0,26.9 +NA,NA,a-curv-i5,2019-20,Falmouth - Falmouth High,00960505, 724, 13.4, 832, 50.1, 49.3, 24.4, 2.8,11.1 +NA,NA,a-curv-i5,2019-20,Falmouth - Lawrence,00960405, 418, 14.8, 532, 48.7, 51.3, 29.0, 3.4,22.9 +NA,NA,a-curv-i5,2019-20,Falmouth - Morse Pond School,00960305, 236, 26.3, 551, 49.2, 50.8, 30.3, 2.9,18.7 +NA,NA,a-curv-i5,2019-20,Falmouth - Mullen-Hall,00960020, 120, 18.7, 448, 44.2, 55.8, 32.6, 8.0,18.8 +NA,NA,a-curv-i5,2019-20,Falmouth - North Falmouth Elementary,00960030, 90, 17.6, 317, 52.1, 48.0, 22.4, 1.9,13.9 +NA,NA,a-curv-i5,2019-20,Falmouth - Teaticket,00960015, 74, 17.0, 274, 46.0, 54.0, 50.0, 8.0,22.3 +NA,NA,a-curv-i5,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 77, 12.7, 113, 44.3, 55.8, 33.6, 0.0,20.4 +NA,NA,a-curv-i5,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 371, 18.3, 691, 48.6, 51.4, 69.3, 10.4,24.9 +NA,NA,a-curv-i5,2019-20,Fitchburg - Crocker Elementary,00970016, 222, 22.4, 661, 46.1, 53.9, 67.6, 26.9,25 +NA,NA,a-curv-i5,2019-20,Fitchburg - Fitchburg High,00970505, 571, 17.0," 1,247", 46.7, 53.3, 57.1, 11.2,16.8 +NA,NA,a-curv-i5,2019-20,Fitchburg - Goodrich Academy,00970510, 131, 8.7, 256, 41.4, 58.6, 58.6, 5.5,14.1 +NA,NA,a-curv-i5,2019-20,Fitchburg - McKay Arts Academy,00970340, 402, 21.4, 717, 49.1, 50.9, 64.4, 18.4,20.1 +NA,NA,a-curv-i5,2019-20,Fitchburg - Memorial Middle School,00970048, 401, 19.0, 708, 53.3, 46.8, 55.9, 10.7,14.6 +NA,NA,a-curv-i5,2019-20,Fitchburg - Reingold Elementary,00970043, 240, 20.3, 621, 43.6, 56.4, 63.5, 23.7,21.9 +NA,NA,a-curv-i5,2019-20,Fitchburg - South Street Elementary,00970060, 291, 17.0, 643, 46.7, 53.3, 70.0, 21.9,27.4 +NA,NA,a-curv-i5,2019-20,Florida - Abbott Memorial,00980005, 82, 9.8, 95, 48.4, 51.6, 24.2, 0.0,21.1 +NA,NA,a-curv-i5,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 202, 15.0, 180, 53.9, 45.6, 24.4, 0.0,13.9 +NA,NA,a-curv-i5,2019-20,Foxborough - Charles Taylor Elementary,00990050, 105, 19.5, 234, 42.3, 57.7, 11.5, 2.1,22.2 +NA,NA,a-curv-i5,2019-20,Foxborough - Foxborough High,00990505, 532, 13.7, 800, 49.5, 50.5, 17.1, 0.6,16.9 +NA,NA,a-curv-i5,2019-20,Foxborough - John J Ahern,00990405, 514, 18.4, 826, 47.6, 52.3, 16.6, 1.6,19.7 +NA,NA,a-curv-i5,2019-20,Foxborough - Mabelle M Burrell,00990015, 114, 19.1, 325, 48.6, 51.4, 13.2, 1.5,24.3 +NA,NA,a-curv-i5,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 167, 20.1, 382, 49.2, 50.8, 23.6, 7.1,21.7 +NA,NA,a-curv-i5,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 670, 21.1," 1,660", 52.1, 48.0, 26.6, 7.5,10 +NA,NA,a-curv-i5,2019-20,Framingham - Barbieri Elementary,01000035, 368, 18.4, 700, 55.6, 44.3, 52.6, 46.6,19.3 +NA,NA,a-curv-i5,2019-20,Framingham - Brophy,01000006, 308, 14.9, 473, 49.9, 50.1, 57.7, 46.3,16.9 +NA,NA,a-curv-i5,2019-20,Framingham - Cameron Middle School,01000302, 382, 18.6, 609, 50.3, 49.8, 48.0, 11.5,27.4 +NA,NA,a-curv-i5,2019-20,Framingham - Charlotte A Dunning,01000007, 293, 12.7, 444, 48.0, 52.0, 30.0, 20.3,21.4 +6.252551984877127,5,a-curv-i5,2019-20,Framingham - Framingham High School,01000515," 1,058", 17.5," 2,366", 49.7, 50.3, 35.9, 17.6,16.2,2311 +NA,NA,a-curv-i5,2019-20,Framingham - Fuller Middle,01000305, 390, 19.2, 697, 44.1, 56.0, 60.4, 45.2,24.5 +NA,NA,a-curv-i5,2019-20,Framingham - Hemenway,01000015, 356, 14.2, 545, 50.5, 49.5, 22.8, 18.9,20 +NA,NA,a-curv-i5,2019-20,Framingham - Juniper Hill School,01000001, 422, 7.5, 363, 35.0, 64.7, 29.8, 0.8,47.7 +NA,NA,a-curv-i5,2019-20,Framingham - King Elementary School,01000005, 252, 15.6, 420, 46.4, 53.6, 31.7, 21.2,15.7 +NA,NA,a-curv-i5,2019-20,Framingham - Mary E Stapleton Elementary,01000045, 237, 12.5, 354, 43.2, 56.8, 48.0, 23.7,28.8 +NA,NA,a-curv-i5,2019-20,Framingham - Miriam F McCarthy School,01000050, 367, 13.5, 521, 52.2, 47.8, 56.6, 32.1,29.2 +NA,NA,a-curv-i5,2019-20,Framingham - Potter Road,01000039, 280, 16.2, 533, 50.7, 49.3, 35.1, 34.2,11.4 +NA,NA,a-curv-i5,2019-20,Framingham - Walsh Middle,01000310, 468, 17.2, 776, 50.9, 49.0, 29.0, 6.4,25.1 +NA,NA,a-curv-i5,2019-20,Framingham - Woodrow Wilson,01000055, 331, 16.5, 553, 46.3, 53.7, 68.2, 68.0,10.7 +NA,NA,a-curv-i5,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 240, 17.8, 396, 52.8, 46.5, 7.8, 0.0,15.4 +NA,NA,a-curv-i5,2019-20,Franklin - Annie Sullivan Middle School,01010040, 223, 17.4, 384, 47.4, 52.6, 9.1, 1.3,15.9 +NA,NA,a-curv-i5,2019-20,Franklin - Davis Thayer,01010035, 104, 17.1, 222, 49.6, 50.5, 18.9, 3.2,20.7 +NA,NA,a-curv-i5,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 7, 18.0, 126, 39.7, 60.3, 13.5, 0.0,45.2 +NA,NA,a-curv-i5,2019-20,Franklin - Franklin High,01010505, 912, 16.9," 1,749", 50.0, 49.9, 7.7, 0.5,14.2 +NA,NA,a-curv-i5,2019-20,Franklin - Helen Keller Elementary,01010012, 192, 15.5, 355, 47.3, 52.7, 10.4, 1.7,16.1 +NA,NA,a-curv-i5,2019-20,Franklin - Horace Mann,01010405, 241, 19.5, 456, 45.2, 54.8, 7.2, 0.2,17.3 +NA,NA,a-curv-i5,2019-20,Franklin - J F Kennedy Memorial,01010013, 164, 17.2, 353, 45.9, 54.1, 7.7, 0.6,23.2 +NA,NA,a-curv-i5,2019-20,Franklin - Jefferson Elementary,01010010, 160, 17.1, 341, 44.6, 55.4, 7.0, 2.1,19.1 +NA,NA,a-curv-i5,2019-20,Franklin - Oak Street Elementary,01010030, 180, 16.4, 366, 50.0, 50.0, 12.8, 0.8,16.1 +NA,NA,a-curv-i5,2019-20,Franklin - Parmenter,01010032, 144, 19.4, 349, 48.4, 51.6, 24.1, 2.0,17.2 +NA,NA,a-curv-i5,2019-20,Franklin - Remington Middle,01010310, 231, 18.0, 405, 47.7, 52.4, 13.1, 1.5,22.7 +NA,NA,a-curv-i5,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 300, 12.9, 505, 35.6, 64.4, 38.8, 0.2,32.1 +NA,NA,a-curv-i5,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 350, 15.4, 717, 49.8, 50.2, 14.0, 0.0,14.4 +NA,NA,a-curv-i5,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 91, 21.0, 478, 49.0, 51.1, 17.4, 1.1,11.7 +NA,NA,a-curv-i5,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 78, 20.6, 445, 43.4, 56.6, 24.3, 1.1,17.5 +NA,NA,a-curv-i5,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 304, 21.7, 737, 51.2, 48.9, 18.3, 0.3,19.3 +NA,NA,a-curv-i5,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 157, 19.4, 436, 47.3, 52.8, 18.8, 1.4,18.4 +NA,NA,a-curv-i5,2019-20,Frontier - Frontier Regional,06700505, 544, 12.6, 647, 46.2, 53.8, 19.2, 1.1,17.6 +NA,NA,a-curv-i5,2019-20,Gardner - Elm Street School,01030001, 96, 22.0, 529, 51.8, 48.2, 57.5, 9.6,22.5 +NA,NA,a-curv-i5,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 57, 6.0, 66, 42.4, 57.6, 62.1, 3.0,30.3 +NA,NA,a-curv-i5,2019-20,Gardner - Gardner High,01030505, 337, 15.3, 669, 47.4, 52.6, 45.9, 5.4,20.6 +NA,NA,a-curv-i5,2019-20,Gardner - Gardner Middle School,01030405, 267, 22.0, 590, 44.4, 55.6, 52.9, 4.2,23.7 +NA,NA,a-curv-i5,2019-20,Gardner - Waterford Street,01030020, 77, 18.3, 422, 42.9, 56.9, 57.1, 4.7,22.3 +NA,NA,a-curv-i5,2019-20,Gateway - Chester Elementary,06720059, 56, 17.0, 120, 41.7, 58.3, 36.7, 0.0,25.8 +NA,NA,a-curv-i5,2019-20,Gateway - Gateway Regional High,06720505, 252, 10.0, 208, 49.5, 50.5, 28.9, 3.4,17.8 +NA,NA,a-curv-i5,2019-20,Gateway - Gateway Regional Middle School,06720405, 138, 16.3, 194, 47.4, 52.6, 38.1, 0.5,19.6 +NA,NA,a-curv-i5,2019-20,Gateway - Littleville Elementary School,06720143, 130, 19.3, 312, 51.0, 49.0, 35.9, 3.2,21.2 +7.046056782334385,5,a-curv-i5,2019-20,Georgetown - Georgetown High School,01050505, 317, 12.0, 374, 49.5, 50.5, 8.6, 0.0,16.8,378 +NA,NA,a-curv-i5,2019-20,Georgetown - Georgetown Middle School,01050305, 167, 13.2, 182, 50.6, 49.5, 8.2, 0.0,17 +NA,NA,a-curv-i5,2019-20,Georgetown - Penn Brook,01050010, 169, 22.1, 730, 49.5, 50.6, 10.1, 0.0,16.2 +NA,NA,a-curv-i5,2019-20,Georgetown - Perley Elementary,01050005, 3, 29.3, 88, 46.6, 53.4, 8.0, 0.0,18.2 +NA,NA,a-curv-i5,2019-20,Gill-Montague - Gill Elementary,06740005, 42, 21.7, 120, 48.3, 51.7, 28.3, 0.0,17.5 +NA,NA,a-curv-i5,2019-20,Gill-Montague - Great Falls Middle,06740310, 140, 13.9, 227, 50.7, 49.3, 45.4, 3.5,23.8 +NA,NA,a-curv-i5,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 59, 16.6, 150, 44.7, 55.3, 59.3, 18.0,26 +NA,NA,a-curv-i5,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 105, 16.5, 210, 45.7, 53.8, 56.2, 9.5,29.1 +NA,NA,a-curv-i5,2019-20,Gill-Montague - Turners Fall High,06740505, 147, 10.6, 183, 56.3, 43.7, 45.9, 4.9,26.8 +NA,NA,a-curv-i5,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 365, 15.0, 507, 51.9, 48.1, 55.8, 9.5,12.2 +NA,NA,a-curv-i5,2019-20,Gloucester - Beeman Memorial,01070010, 72, 18.3, 330, 47.0, 53.0, 55.5, 16.7,20.6 +NA,NA,a-curv-i5,2019-20,Gloucester - East Gloucester Elementary,01070020, 48, 17.1, 205, 47.8, 52.2, 37.1, 9.3,23.4 +NA,NA,a-curv-i5,2019-20,Gloucester - Gloucester High,01070505, 434, 14.1, 780, 43.6, 56.3, 34.7, 7.3,28.7 +NA,NA,a-curv-i5,2019-20,Gloucester - Gloucester PreSchool,01070025, 13, 10.4, 135, 39.3, 60.7, 45.2, 0.0,45.2 +NA,NA,a-curv-i5,2019-20,Gloucester - Plum Cove School,01070042, 48, 17.1, 205, 50.2, 49.8, 25.9, 2.9,19.5 +NA,NA,a-curv-i5,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 311, 22.2, 663, 51.3, 48.7, 39.7, 5.3,23.1 +NA,NA,a-curv-i5,2019-20,Gloucester - Veterans Memorial,01070045, 49, 17.0, 211, 53.1, 46.9, 54.5, 22.3,29.9 +NA,NA,a-curv-i5,2019-20,Gloucester - West Parish,01070050, 77, 19.1, 368, 48.1, 51.9, 32.3, 1.1,25.5 +NA,NA,a-curv-i5,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +6.220408163265306,5,a-curv-i5,2019-20,Grafton - Grafton High School,01100505, 392, 17.7, 867, 50.3, 49.7, 12.2, 1.7,13.8,872 +NA,NA,a-curv-i5,2019-20,Grafton - Grafton Middle,01100305, 292, 20.9, 533, 47.1, 52.9, 14.6, 0.6,18.2 +NA,NA,a-curv-i5,2019-20,Grafton - Millbury Street Elementary School,01100200, 320, 21.3, 677, 45.9, 54.1, 14.5, 2.4,22.9 +NA,NA,a-curv-i5,2019-20,Grafton - North Grafton Elementary,01100025, 110, 18.3, 274, 51.8, 48.2, 13.5, 4.4,24.1 +NA,NA,a-curv-i5,2019-20,Grafton - North Street Elementary School,01100030, 284, 21.0, 566, 48.1, 51.9, 14.1, 0.9,19.8 +NA,NA,a-curv-i5,2019-20,Grafton - South Grafton Elementary,01100005, 122, 17.9, 307, 41.7, 58.3, 14.3, 3.3,25.1 +NA,NA,a-curv-i5,2019-20,Granby - East Meadow,01110004, 185, 16.5, 418, 49.3, 50.7, 33.3, 5.5,20.1 +6.688461538461539,5,a-curv-i5,2019-20,Granby - Granby Jr Sr High School,01110505, 208, 14.0, 346, 44.2, 55.8, 24.0, 4.1,16.2,341 +NA,NA,a-curv-i5,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 906, 15.8," 1,419", 44.5, 55.5, 38.1, 1.3,10 +NA,NA,a-curv-i5,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,728", 15.5," 1,584", 49.5, 50.4, 58.7, 12.9,17.4 +NA,NA,a-curv-i5,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,432", 18.4," 2,241", 46.7, 53.0, 45.7, 7.8,18.5 +NA,NA,a-curv-i5,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,972", 15.1," 2,113", 48.0, 52.0, 41.2, 3.6,10.5 +NA,NA,a-curv-i5,2019-20,Greenfield - Discovery School at Four Corners,01140025, 85, 17.4, 252, 43.7, 56.4, 29.4, 6.0,15.1 +NA,NA,a-curv-i5,2019-20,Greenfield - Federal Street School,01140010, 96, 15.3, 245, 50.2, 49.8, 67.4, 5.7,17.1 +NA,NA,a-curv-i5,2019-20,Greenfield - Greenfield High,01140505, 326, 14.3, 486, 45.3, 54.5, 48.2, 5.1,17.1 +NA,NA,a-curv-i5,2019-20,Greenfield - Greenfield Middle,01140305, 490, 17.4, 394, 51.5, 48.5, 52.8, 5.6,13.5 +NA,NA,a-curv-i5,2019-20,Greenfield - Newton School,01140035, 60, 16.2, 241, 50.6, 49.4, 72.2, 8.3,16.2 +NA,NA,a-curv-i5,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 10, 12.7, 127, 42.5, 57.5, 52.8, 0.0,39.4 +NA,NA,a-curv-i5,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 244, 18.0, 687, 55.5, 43.7, 57.8, 3.8,26.5 +NA,NA,a-curv-i5,2019-20,Groton-Dunstable - Boutwell School,06730001, 8, 10.9, 63, 41.3, 58.7, 14.3, 1.6,55.6 +NA,NA,a-curv-i5,2019-20,Groton-Dunstable - Florence Roche School,06730010, 150, 21.2, 530, 45.7, 54.3, 10.8, 1.9,18.5 +NA,NA,a-curv-i5,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 384, 17.4, 731, 48.7, 51.2, 5.3, 0.1,12.3 +NA,NA,a-curv-i5,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 397, 19.8, 758, 50.1, 49.9, 6.5, 0.8,16.5 +NA,NA,a-curv-i5,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 90, 19.2, 288, 46.5, 53.5, 5.9, 2.1,17.4 +NA,NA,a-curv-i5,2019-20,Hadley - Hadley Elementary,01170015, 282, 17.1, 292, 47.6, 52.4, 26.4, 6.9,15.4 +NA,NA,a-curv-i5,2019-20,Hadley - Hopkins Academy,01170505, 152, 14.8, 248, 47.2, 52.8, 18.6, 4.0,12.5 +NA,NA,a-curv-i5,2019-20,Halifax - Halifax Elementary,01180005, 240, 21.1, 588, 48.3, 51.7, 19.6, 1.0,15.7 +NA,NA,a-curv-i5,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 96, 21.1, 253, 43.9, 56.1, 5.9, 1.2,15.4 +NA,NA,a-curv-i5,2019-20,Hamilton-Wenham - Cutler School,06750010, 113, 19.5, 276, 55.1, 44.9, 6.2, 1.1,18.8 +NA,NA,a-curv-i5,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 314, 15.6, 554, 53.6, 46.4, 6.9, 0.5,14.1 +NA,NA,a-curv-i5,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 309, 19.4, 419, 54.9, 45.1, 7.2, 0.7,16.5 +NA,NA,a-curv-i5,2019-20,Hamilton-Wenham - Winthrop School,06750015, 116, 20.8, 345, 52.2, 47.8, 9.6, 0.6,23.8 +NA,NA,a-curv-i5,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 224, 19.1, 523, 50.7, 49.3, 44.9, 4.0,11.3 +NA,NA,a-curv-i5,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 125, 16.9, 257, 46.7, 53.3, 49.0, 8.6,17.5 +NA,NA,a-curv-i5,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 95, 18.7, 329, 50.8, 49.2, 25.2, 2.7,23.7 +NA,NA,a-curv-i5,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 73, 21.8, 380, 44.7, 55.3, 16.8, 4.0,16.6 +6.4683636363636365,5,a-curv-i5,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 550, 15.6," 1,048", 52.3, 47.7, 14.8, 0.3,13.4,1053 +NA,NA,a-curv-i5,2019-20,Hampden-Wilbraham - Soule Road,06800030, 70, 23.1, 324, 45.1, 54.9, 20.1, 1.9,15.7 +NA,NA,a-curv-i5,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 75, 21.6, 324, 51.9, 48.2, 17.0, 2.8,15.4 +NA,NA,a-curv-i5,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 303, 19.7, 632, 50.2, 49.8, 17.9, 0.0,14.4 +NA,NA,a-curv-i5,2019-20,Hampshire - Hampshire Regional High,06830505, 547, 12.9, 737, 54.3, 45.6, 17.4, 1.6,23.6 +NA,NA,a-curv-i5,2019-20,Hancock - Hancock Elementary,01210005, 76, 5.9, 49, 53.1, 46.9, 24.5, 0.0,26.5 +NA,NA,a-curv-i5,2019-20,Hanover - Cedar Elementary,01220004, 208, 19.2, 492, 48.2, 51.8, 7.1, 1.8,20.1 +NA,NA,a-curv-i5,2019-20,Hanover - Center Elementary,01220005, 279, 21.4, 576, 48.6, 51.4, 7.3, 1.2,18.2 +NA,NA,a-curv-i5,2019-20,Hanover - Hanover High,01220505, 405, 14.5, 767, 48.1, 51.9, 8.6, 0.3,14.5 +NA,NA,a-curv-i5,2019-20,Hanover - Hanover Middle,01220305, 809, 19.7, 837, 47.9, 52.1, 10.3, 0.6,22 +NA,NA,a-curv-i5,2019-20,Harvard - Bromfield,01250505, 321, 14.5, 617, 52.4, 47.5, 5.7, 0.2,9.9 +NA,NA,a-curv-i5,2019-20,Harvard - Hildreth Elementary School,01250005, 238, 17.3, 440, 48.2, 51.8, 8.0, 2.1,10 +NA,NA,a-curv-i5,2019-20,Hatfield - Hatfield Elementary,01270005, 153, 16.0, 246, 49.2, 50.4, 17.5, 0.4,18.7 +NA,NA,a-curv-i5,2019-20,Hatfield - Smith Academy,01270505, 147, 11.3, 190, 49.0, 51.1, 10.5, 0.0,24.7 +NA,NA,a-curv-i5,2019-20,Haverhill - Bradford Elementary,01280008, 333, 16.8, 516, 48.5, 51.6, 51.4, 16.1,22.5 +NA,NA,a-curv-i5,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 451, 24.1," 1,181", 48.6, 51.4, 40.2, 5.3,19.9 +NA,NA,a-curv-i5,2019-20,Haverhill - Consentino Middle School,01280100, 261, 25.6, 815, 44.9, 55.1, 58.4, 10.1,17.8 +NA,NA,a-curv-i5,2019-20,Haverhill - Crowell,01280515, 16, 9.9, 22, 18.2, 81.8, 77.3, 0.0,40.9 +NA,NA,a-curv-i5,2019-20,Haverhill - Dr Paul Nettle,01280050, 242, 20.5, 620, 47.9, 52.1, 60.0, 7.9,27.6 +NA,NA,a-curv-i5,2019-20,Haverhill - Golden Hill,01280026, 308, 18.1, 522, 48.5, 51.5, 57.9, 12.8,21.5 +NA,NA,a-curv-i5,2019-20,Haverhill - Greenleaf Academy,01280033, 41, 6.3, 38, 23.7, 76.3, 81.6, 7.9,100 +NA,NA,a-curv-i5,2019-20,Haverhill - Haverhill High,01280505," 1,286", 17.5," 1,943", 49.9, 50.0, 40.3, 6.4,18.1 +NA,NA,a-curv-i5,2019-20,Haverhill - John G Whittier,01280085, 157, 27.6, 541, 48.8, 51.0, 47.5, 3.5,22.2 +NA,NA,a-curv-i5,2019-20,Haverhill - Moody,01280045, 225, 9.7, 242, 34.3, 65.7, 53.7, 0.4,57 +NA,NA,a-curv-i5,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 346, 16.6, 547, 49.0, 51.0, 56.5, 14.6,30.2 +NA,NA,a-curv-i5,2019-20,Haverhill - Silver Hill Elementary School,01280067, 241, 23.5, 634, 49.4, 50.6, 47.0, 9.6,19.1 +NA,NA,a-curv-i5,2019-20,Haverhill - TEACH,01280073, 39, 2.9, 23, 17.4, 82.6, 87.0, 0.0,100 +NA,NA,a-curv-i5,2019-20,Haverhill - Tilton,01280075, 194, 20.2, 426, 49.1, 50.9, 69.7, 21.8,17.4 +NA,NA,a-curv-i5,2019-20,Haverhill - Tilton Upper Middle School,01280105, 77, 19.4, 174, 48.3, 51.7, 67.2, 28.7,16.7 +NA,NA,a-curv-i5,2019-20,Haverhill - Walnut Square,01280080, 79, 20.3, 143, 55.9, 44.1, 48.3, 8.4,10.5 +NA,NA,a-curv-i5,2019-20,Hawlemont - Hawlemont Regional,06850005, 44, 14.6, 143, 57.3, 42.7, 49.0, 3.5,30.1 +NA,NA,a-curv-i5,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 103, 16.4, 202, 49.0, 51.0, 63.9, 6.4,19.8 +NA,NA,a-curv-i5,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 121, 21.2, 317, 52.7, 47.3, 20.8, 8.2,18.9 +NA,NA,a-curv-i5,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 55, 26.3, 218, 50.5, 49.1, 17.4, 0.0,18.4 +NA,NA,a-curv-i5,2019-20,Hingham - East Elementary School,01310005, 191, 19.7, 542, 47.4, 52.6, 5.9, 0.0,19.9 +NA,NA,a-curv-i5,2019-20,Hingham - Hingham High,01310505, 628, 15.1," 1,298", 48.8, 51.2, 6.6, 0.2,9.8 +NA,NA,a-curv-i5,2019-20,Hingham - Hingham Middle School,01310410, 603, 17.5," 1,005", 48.1, 51.9, 5.7, 0.2,11.9 +NA,NA,a-curv-i5,2019-20,Hingham - Plymouth River,01310019, 167, 20.6, 430, 50.5, 49.5, 5.6, 0.7,14 +NA,NA,a-curv-i5,2019-20,Hingham - South Elementary,01310020, 191, 21.7, 517, 50.9, 49.1, 3.5, 0.2,15.1 +NA,NA,a-curv-i5,2019-20,Hingham - Wm L Foster Elementary,01310010, 184, 21.7, 498, 44.4, 55.6, 6.2, 1.4,16.7 +6.481927710843374,5,a-curv-i5,2019-20,Holbrook - Holbrook Middle High School,01330505, 332, 17.4, 636, 49.8, 50.0, 35.1, 3.3,17.1,630 +NA,NA,a-curv-i5,2019-20,Holbrook - John F Kennedy,01330018, 274, 21.0, 683, 45.5, 54.5, 33.7, 8.5,18.3 +NA,NA,a-curv-i5,2019-20,Holland - Holland Elementary,01350005, 59, 18.6, 233, 46.4, 53.7, 31.8, 0.0,14.2 +NA,NA,a-curv-i5,2019-20,Holliston - Holliston High,01360505, 517, 15.8, 850, 48.5, 51.5, 6.2, 1.2,13.5 +NA,NA,a-curv-i5,2019-20,Holliston - Miller School,01360007, 375, 19.7, 694, 47.8, 52.2, 10.2, 3.0,19.7 +NA,NA,a-curv-i5,2019-20,Holliston - Placentino Elementary,01360010, 226, 16.2, 687, 45.9, 54.0, 5.8, 4.7,14.9 +NA,NA,a-curv-i5,2019-20,Holliston - Robert H. Adams Middle School,01360305, 443, 14.8, 688, 50.0, 50.0, 9.3, 1.2,18.3 +NA,NA,a-curv-i5,2019-20,Holyoke - E N White Elementary,01370045, 129, 20.7, 440, 45.0, 55.0, 70.7, 11.4,27.3 +NA,NA,a-curv-i5,2019-20,Holyoke - H.B. Lawrence School,01370070, 72, 15.6, 226, 50.0, 50.0, 91.6, 20.4,23.5 +NA,NA,a-curv-i5,2019-20,Holyoke - Holyoke High,01370505, 957, 16.7," 1,484", 47.6, 52.4, 72.8, 22.2,22.5 +NA,NA,a-curv-i5,2019-20,Holyoke - Holyoke STEM Academy,01370320, 93, 17.2, 231, 46.3, 53.7, 80.5, 23.8,25.5 +NA,NA,a-curv-i5,2019-20,Holyoke - Joseph Metcalf School,01370003, 86, 19.7, 273, 55.7, 44.3, 57.1, 16.5,19.4 +NA,NA,a-curv-i5,2019-20,Holyoke - Kelly Elementary,01370040, 143, 18.9, 412, 47.1, 52.9, 91.8, 24.5,22.3 +NA,NA,a-curv-i5,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 185, 16.7, 505, 45.9, 54.1, 81.6, 17.2,25.9 +NA,NA,a-curv-i5,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 134, 21.3, 418, 48.6, 51.4, 68.9, 13.2,32.5 +NA,NA,a-curv-i5,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 207, 16.4, 489, 45.6, 54.4, 85.9, 23.9,35 +NA,NA,a-curv-i5,2019-20,Holyoke - Morgan Full Service Community School,01370025, 61, 21.1, 367, 48.0, 52.0, 91.3, 22.6,28.9 +NA,NA,a-curv-i5,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 107, 16.1, 227, 43.2, 56.8, 89.4, 33.5,40.1 +NA,NA,a-curv-i5,2019-20,Holyoke - William R. Peck School,01370030, 101, 15.1, 275, 42.2, 57.8, 88.0, 36.4,38.6 +NA,NA,a-curv-i5,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 187, 23.0, 701, 51.5, 48.5, 69.8, 13.4,21.5 +NA,NA,a-curv-i5,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 147, 17.7, 402, 48.5, 51.5, 53.2, 2.7,25.4 +7.11715210355987,5,a-curv-i5,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 309, 11.1, 353, 47.9, 52.1, 44.5, 1.4,23.2,341 +NA,NA,a-curv-i5,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 228, 20.8, 392, 52.3, 47.7, 53.1, 1.0,25.5 +NA,NA,a-curv-i5,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 330, 13.2, 466, 48.5, 51.5, 12.0, 2.4,16.5 +NA,NA,a-curv-i5,2019-20,Hopedale - Memorial,01380010, 240, 19.8, 523, 48.6, 51.4, 13.6, 3.6,23.1 +NA,NA,a-curv-i5,2019-20,Hopedale - Park Street School,01380003, 15, 7.2, 107, 48.6, 51.4, 19.6, 0.0,24.3 +NA,NA,a-curv-i5,2019-20,Hopkinton - Elmwood,01390010, 143, 22.0, 572, 48.3, 51.8, 4.9, 12.1,11.4 +NA,NA,a-curv-i5,2019-20,Hopkinton - Hopkins Elementary School,01390015, 225, 25.2, 587, 49.4, 50.6, 4.4, 2.7,11.4 +NA,NA,a-curv-i5,2019-20,Hopkinton - Hopkinton High,01390505, 942, 18.3," 1,235", 50.8, 49.2, 5.9, 0.8,12.9 +NA,NA,a-curv-i5,2019-20,Hopkinton - Hopkinton Middle School,01390305, 553, 20.4, 867, 49.5, 50.5, 7.0, 1.5,10.7 +NA,NA,a-curv-i5,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 9, 11.8, 81, 34.6, 65.4, 2.5, 25.9,46.9 +NA,NA,a-curv-i5,2019-20,Hopkinton - Marathon Elementary School,01390005, 147, 20.7, 569, 48.3, 51.7, 5.8, 22.1,9.7 +NA,NA,a-curv-i5,2019-20,Hudson - C A Farley,01410030, 197, 20.1, 426, 50.5, 49.5, 28.9, 17.8,15 +NA,NA,a-curv-i5,2019-20,Hudson - David J. Quinn Middle School,01410410, 305, 19.7, 629, 50.6, 49.4, 27.5, 8.9,16.4 +NA,NA,a-curv-i5,2019-20,Hudson - Forest Avenue Elementary,01410015, 161, 20.8, 363, 47.1, 52.9, 24.0, 16.8,13 +NA,NA,a-curv-i5,2019-20,Hudson - Hudson High,01410505, 493, 15.6, 906, 53.8, 46.3, 23.3, 8.2,14.8 +NA,NA,a-curv-i5,2019-20,Hudson - Mulready Elementary,01410007, 123, 19.2, 265, 49.4, 50.6, 28.3, 18.9,26.4 +NA,NA,a-curv-i5,2019-20,Hull - Hull High,01420505, 255, 9.7, 278, 44.6, 55.4, 30.2, 0.7,19.1 +NA,NA,a-curv-i5,2019-20,Hull - Lillian M Jacobs,01420015, 167, 18.5, 394, 47.7, 52.3, 32.5, 1.3,22.8 +NA,NA,a-curv-i5,2019-20,Hull - Memorial Middle,01420305, 127, 12.9, 185, 48.1, 51.4, 32.4, 1.1,17.8 +NA,NA,a-curv-i5,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 423, 19.4, 795, 51.8, 48.1, 14.7, 2.5,20.9 +NA,NA,a-curv-i5,2019-20,Ipswich - Ipswich High,01440505, 404, 11.7, 541, 52.5, 47.3, 14.8, 0.9,11.1 +NA,NA,a-curv-i5,2019-20,Ipswich - Ipswich Middle School,01440305, 190, 23.5, 409, 49.6, 50.4, 15.4, 2.7,19.8 +NA,NA,a-curv-i5,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 169, 20.6, 367, 50.1, 49.9, 10.9, 2.7,19.9 +NA,NA,a-curv-i5,2019-20,Ipswich - Winthrop,01440015, 190, 18.1, 381, 51.2, 48.8, 22.8, 3.7,21.3 +NA,NA,a-curv-i5,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 108, 33.9, 612, 48.5, 51.5, 67.8, 20.8,20.9 +NA,NA,a-curv-i5,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 555, 23.9," 1,600", 50.8, 49.3, 53.7, 14.7,12.6 +NA,NA,a-curv-i5,2019-20,King Philip - King Philip Middle School,06900510, 465, 17.1, 739, 48.2, 51.8, 12.6, 0.3,17.2 +NA,NA,a-curv-i5,2019-20,King Philip - King Philip Regional High,06900505, 475, 18.4," 1,239", 50.2, 49.7, 8.8, 0.3,12.5 +NA,NA,a-curv-i5,2019-20,Kingston - Kingston Elementary,01450005, 150, 21.8, 462, 48.5, 51.5, 18.2, 3.7,15.2 +NA,NA,a-curv-i5,2019-20,Kingston - Kingston Intermediate,01450020, 235, 21.9, 618, 48.1, 51.8, 17.6, 2.8,19.3 +NA,NA,a-curv-i5,2019-20,Lawrence - Alexander B Bruce,01490015, 197, 19.4, 497, 51.5, 48.3, 78.5, 42.7,15.9 +NA,NA,a-curv-i5,2019-20,Lawrence - Arlington Middle School,01490017, 271, 23.8, 601, 48.6, 51.1, 80.7, 38.1,17 +NA,NA,a-curv-i5,2019-20,Lawrence - Community Day Arlington,01490009, 120, 25.6, 613, 46.7, 52.7, 81.6, 58.6,11.9 +NA,NA,a-curv-i5,2019-20,Lawrence - Edward F. Parthum,01490053, 230, 20.3, 666, 46.6, 53.0, 68.9, 34.8,18.5 +NA,NA,a-curv-i5,2019-20,Lawrence - Emily G Wetherbee,01490080, 251, 19.8, 629, 51.8, 48.0, 70.9, 28.3,20.4 +NA,NA,a-curv-i5,2019-20,Lawrence - Francis M Leahy,01490040, 116, 23.5, 465, 49.0, 50.8, 81.1, 40.7,14.4 +NA,NA,a-curv-i5,2019-20,Lawrence - Frost Middle School,01490525, 208, 26.8, 547, 49.0, 51.0, 67.1, 16.5,17.7 +NA,NA,a-curv-i5,2019-20,Lawrence - Gerard A. Guilmette,01490022, 147, 25.4, 518, 48.3, 51.7, 80.5, 36.5,22.6 +NA,NA,a-curv-i5,2019-20,Lawrence - Guilmette Middle School,01490025, 303, 14.9, 509, 47.9, 52.1, 80.0, 29.3,21.4 +6.918918918918919,5,a-curv-i5,2019-20,Lawrence - High School Learning Center,01490536, 111, 11.7, 174, 39.7, 60.3, 73.0, 36.2,25.3,150 +NA,NA,a-curv-i5,2019-20,Lawrence - James F Hennessey,01490020, 70, 17.6, 330, 46.7, 52.7, 77.9, 58.8,25.8 +NA,NA,a-curv-i5,2019-20,Lawrence - John Breen School,01490003, 37, 16.5, 360, 46.9, 52.8, 70.8, 42.2,32.5 +NA,NA,a-curv-i5,2019-20,Lawrence - John K Tarbox,01490075, 122, 21.0, 309, 41.8, 57.9, 84.8, 45.3,10.7 +NA,NA,a-curv-i5,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 8, 22.3, 178, 46.1, 53.9, 86.5, 34.3,11.2 +NA,NA,a-curv-i5,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 44, 15.4, 169, 49.7, 50.3, 71.6, 39.1,11.2 +6.067781818181818,5,a-curv-i5,2019-20,Lawrence - Lawrence High School,01490515," 1,375", 18.5," 3,275", 46.4, 53.2, 71.5, 36.7,15.3,3321 +NA,NA,a-curv-i5,2019-20,Lawrence - Oliver Partnership School,01490048, 110, 22.2, 486, 46.5, 53.3, 83.7, 46.9,14.2 +NA,NA,a-curv-i5,2019-20,Lawrence - Parthum Middle School,01490027, 249, 25.4, 631, 52.9, 46.8, 70.5, 25.8,18.4 +NA,NA,a-curv-i5,2019-20,Lawrence - Robert Frost,01490018, 150, 23.0, 587, 51.3, 48.2, 68.7, 29.0,14.7 +NA,NA,a-curv-i5,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 17, 14.7, 250, 40.8, 59.2, 76.4, 44.8,41.2 +NA,NA,a-curv-i5,2019-20,Lawrence - School for Exceptional Studies,01490537, 391, 3.9, 135, 18.5, 81.5, 88.9, 21.5,100 +NA,NA,a-curv-i5,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 329, 24.5, 747, 45.3, 54.8, 79.0, 42.8,21.6 +NA,NA,a-curv-i5,2019-20,Lawrence - Spark Academy,01490085, 177, 20.2, 482, 46.1, 53.9, 77.0, 31.3,20.8 +NA,NA,a-curv-i5,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 89, 23.9, 318, 47.2, 52.5, 75.5, 37.4,11.6 +NA,NA,a-curv-i5,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 74, 27.4, 338, 50.0, 49.7, 79.0, 35.5,15.1 +NA,NA,a-curv-i5,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 397, 19.0, 778, 55.8, 44.2, 63.5, 25.7,9.3 +NA,NA,a-curv-i5,2019-20,Lee - Lee Elementary,01500025, 178, 16.5, 359, 46.5, 53.2, 35.7, 5.6,15.6 +6.922137404580153,5,a-curv-i5,2019-20,Lee - Lee Middle/High School,01500505, 262, 11.2, 346, 50.0, 50.0, 29.5, 3.8,13,353 +NA,NA,a-curv-i5,2019-20,Leicester - Leicester Elementary,01510005, 179, 22.2, 500, 44.8, 55.2, 31.4, 7.0,18 +NA,NA,a-curv-i5,2019-20,Leicester - Leicester High,01510505, 209, 19.1, 462, 49.1, 50.4, 23.4, 3.3,13.6 +NA,NA,a-curv-i5,2019-20,Leicester - Leicester Integrated Preschool,01510001, 12, 22.7, 67, 50.8, 49.3, 34.3, 1.5,38.8 +NA,NA,a-curv-i5,2019-20,Leicester - Leicester Middle,01510015, 231, 17.9, 483, 44.3, 55.7, 27.5, 2.7,15.3 +NA,NA,a-curv-i5,2019-20,Lenox - Lenox Memorial High,01520505, 391, 12.3, 460, 49.6, 50.4, 18.7, 2.2,7.8 +NA,NA,a-curv-i5,2019-20,Lenox - Morris,01520015, 165, 16.1, 320, 48.1, 51.9, 16.6, 3.1,13.4 +NA,NA,a-curv-i5,2019-20,Leominster - Bennett,01530003, 14, 9.0, 126, 46.8, 53.2, 41.3, 0.0,52.4 +NA,NA,a-curv-i5,2019-20,Leominster - Center For Technical Education Innovation,01530605, 139, 14.9, 738, 34.7, 65.3, 41.6, 5.6,27.6 +NA,NA,a-curv-i5,2019-20,Leominster - Fall Brook,01530007, 308, 23.1, 650, 46.6, 53.4, 41.4, 18.8,20.9 +NA,NA,a-curv-i5,2019-20,Leominster - Frances Drake School,01530010, 294, 18.2, 550, 46.9, 53.1, 53.3, 24.6,30.6 +NA,NA,a-curv-i5,2019-20,Leominster - Johnny Appleseed,01530025, 350, 21.2, 689, 51.4, 48.6, 40.2, 16.6,17 +NA,NA,a-curv-i5,2019-20,Leominster - Leominster Center for Excellence,01530515, 15, 14.0, 40, 47.5, 50.0, 55.0, 0.0,30 +6.682074074074075,5,a-curv-i5,2019-20,Leominster - Leominster High School,01530505, 675, 19.1," 1,722", 50.3, 49.6, 38.6, 7.0,18.8,1112 +NA,NA,a-curv-i5,2019-20,Leominster - Lincoln School,01530005, 5, 8.0, 40, 35.0, 65.0, 37.5, 0.0,60 +NA,NA,a-curv-i5,2019-20,Leominster - Northwest,01530030, 331, 22.9, 694, 51.9, 48.1, 45.2, 19.6,21.6 +NA,NA,a-curv-i5,2019-20,Leominster - Priest Street,01530040, 49, 16.9, 119, 52.1, 47.9, 51.3, 23.5,24.4 +NA,NA,a-curv-i5,2019-20,Leominster - Samoset School,01530045, 483, 14.1, 528, 49.8, 49.8, 43.9, 7.6,25 +NA,NA,a-curv-i5,2019-20,Leominster - Sky View Middle School,01530320, 609, 20.8, 926, 49.6, 50.4, 44.6, 9.6,23.5 +NA,NA,a-curv-i5,2019-20,Leverett - Leverett Elementary,01540005, 60, 17.4, 141, 42.6, 57.5, 17.0, 0.0,11.4 +NA,NA,a-curv-i5,2019-20,Lexington - Bowman,01550008, 123, 20.1, 539, 50.8, 49.2, 4.8, 17.8,9.5 +NA,NA,a-curv-i5,2019-20,Lexington - Bridge,01550006, 122, 18.9, 511, 50.5, 49.5, 8.4, 8.8,9.8 +NA,NA,a-curv-i5,2019-20,Lexington - Fiske,01550015, 111, 20.4, 490, 44.3, 55.7, 7.1, 15.1,17.1 +NA,NA,a-curv-i5,2019-20,Lexington - Harrington,01550030, 110, 19.5, 477, 49.5, 50.5, 6.7, 12.2,12.2 +NA,NA,a-curv-i5,2019-20,Lexington - Jonas Clarke Middle,01550305, 549, 19.1, 941, 48.8, 51.1, 5.5, 6.8,13.4 +NA,NA,a-curv-i5,2019-20,Lexington - Joseph Estabrook,01550010, 120, 22.1, 585, 46.5, 53.5, 5.0, 16.9,12 +NA,NA,a-curv-i5,2019-20,Lexington - Lexington Children's Place,01550001, 7, 12.4, 86, 31.4, 68.6, 23.3, 31.4,44.2 +NA,NA,a-curv-i5,2019-20,Lexington - Lexington High,01550505," 1,110", 18.9," 2,293", 49.6, 50.3, 5.6, 2.6,11.3 +NA,NA,a-curv-i5,2019-20,Lexington - Maria Hastings,01550035, 107, 19.6, 459, 46.2, 53.8, 6.8, 13.7,18.5 +NA,NA,a-curv-i5,2019-20,Lexington - Wm Diamond Middle,01550310, 541, 18.2, 905, 52.2, 47.9, 5.4, 7.1,13.6 +NA,NA,a-curv-i5,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 84, 22.7, 268, 49.3, 50.8, 79.9, 34.3,19.8 +NA,NA,a-curv-i5,2019-20,Lincoln - Hanscom Middle,01570305, 163, 16.5, 265, 52.1, 47.9, 1.9, 2.6,19.3 +NA,NA,a-curv-i5,2019-20,Lincoln - Hanscom Primary,01570006, 95, 15.9, 310, 51.6, 48.4, 2.3, 6.5,20.3 +NA,NA,a-curv-i5,2019-20,Lincoln - Lincoln School,01570025, 304, 16.3, 553, 51.0, 49.0, 13.0, 4.9,17.4 +NA,NA,a-curv-i5,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,200", 17.7," 1,522", 48.6, 51.5, 6.2, 0.7,18.9 +6.56910569105691,5,a-curv-i5,2019-20,Littleton - Littleton High School,01580505, 246, 12.6, 434, 55.5, 44.2, 7.1, 0.7,11.8,440 +NA,NA,a-curv-i5,2019-20,Littleton - Littleton Middle School,01580305, 188, 20.5, 391, 52.4, 47.6, 8.2, 0.8,14.6 +NA,NA,a-curv-i5,2019-20,Littleton - Russell St Elementary,01580015, 200, 21.7, 388, 50.0, 50.0, 8.5, 2.8,13.9 +NA,NA,a-curv-i5,2019-20,Littleton - Shaker Lane Elementary,01580005, 208, 19.5, 453, 48.3, 51.7, 6.4, 4.4,14.6 +NA,NA,a-curv-i5,2019-20,Longmeadow - Blueberry Hill,01590005, 203, 18.5, 408, 47.3, 52.7, 7.6, 1.2,14.2 +NA,NA,a-curv-i5,2019-20,Longmeadow - Center,01590010, 199, 19.7, 424, 45.5, 54.5, 6.6, 0.5,18.2 +NA,NA,a-curv-i5,2019-20,Longmeadow - Glenbrook Middle,01590017, 175, 18.3, 331, 49.9, 50.2, 13.0, 1.5,21.5 +NA,NA,a-curv-i5,2019-20,Longmeadow - Longmeadow High,01590505, 411, 18.4, 939, 49.3, 50.7, 7.7, 0.5,16.4 +NA,NA,a-curv-i5,2019-20,Longmeadow - Williams Middle,01590305, 181, 20.0, 358, 52.8, 47.2, 7.3, 0.0,18.4 +NA,NA,a-curv-i5,2019-20,Longmeadow - Wolf Swamp Road,01590025, 173, 19.3, 420, 46.0, 54.1, 14.8, 1.2,21.4 +NA,NA,a-curv-i5,2019-20,Lowell - Abraham Lincoln,01600020, 292, 19.8, 503, 47.5, 52.5, 68.4, 30.2,19.5 +NA,NA,a-curv-i5,2019-20,Lowell - B.F. Butler Middle School,01600310, 189, 24.6, 587, 51.6, 48.4, 60.8, 13.8,20.6 +NA,NA,a-curv-i5,2019-20,Lowell - Bartlett Community Partnership,01600090, 301, 17.8, 502, 49.6, 50.4, 65.9, 26.9,23.7 +NA,NA,a-curv-i5,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 154, 10.6, 118, 37.3, 62.7, 60.2, 13.6,46.6 +NA,NA,a-curv-i5,2019-20,Lowell - Charles W Morey,01600030, 338, 17.2, 504, 46.6, 53.4, 50.0, 36.7,16.5 +NA,NA,a-curv-i5,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 280, 20.1, 490, 46.1, 53.9, 76.5, 38.8,17.4 +NA,NA,a-curv-i5,2019-20,Lowell - Dr An Wang School,01600345, 349, 23.9, 739, 48.9, 51.2, 54.9, 23.1,15.8 +NA,NA,a-curv-i5,2019-20,Lowell - Dr Gertrude Bailey,01600002, 322, 17.0, 481, 46.4, 53.6, 46.4, 28.1,21 +NA,NA,a-curv-i5,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 182, 2.6, 45, 17.8, 82.2, 62.2, 4.4,100 +NA,NA,a-curv-i5,2019-20,Lowell - Greenhalge,01600015, 339, 16.7, 492, 48.6, 51.4, 73.6, 27.0,19.1 +NA,NA,a-curv-i5,2019-20,Lowell - Henry J Robinson Middle,01600330, 336, 25.8, 716, 50.4, 49.6, 70.8, 28.1,20.1 +NA,NA,a-curv-i5,2019-20,Lowell - James S Daley Middle School,01600315, 326, 21.6, 703, 45.7, 54.3, 44.8, 10.5,19.2 +NA,NA,a-curv-i5,2019-20,Lowell - James Sullivan Middle School,01600340, 294, 23.5, 710, 48.7, 51.3, 64.8, 23.2,20.4 +NA,NA,a-curv-i5,2019-20,Lowell - John J Shaughnessy,01600050, 305, 17.9, 480, 46.9, 53.1, 65.2, 28.1,19.2 +NA,NA,a-curv-i5,2019-20,Lowell - Joseph McAvinnue,01600010, 322, 17.2, 486, 47.1, 52.9, 66.9, 35.6,16.9 +NA,NA,a-curv-i5,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 318, 22.8, 704, 47.2, 52.8, 66.1, 24.0,16.6 +NA,NA,a-curv-i5,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 78, 2.4, 24, 8.3, 91.7, 66.7, 16.7,100 +NA,NA,a-curv-i5,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 66, 4.9, 42, 31.0, 69.1, 90.5, 7.1,100 +NA,NA,a-curv-i5,2019-20,Lowell - Lowell High,01600505," 2,022", 20.1," 3,076", 50.0, 50.0, 53.9, 17.9,11.3 +NA,NA,a-curv-i5,2019-20,Lowell - Moody Elementary,01600027, 112, 23.7, 237, 56.5, 43.5, 75.1, 54.9,10.1 +NA,NA,a-curv-i5,2019-20,Lowell - Pawtucketville Memorial,01600036, 345, 16.5, 499, 48.9, 51.1, 49.9, 18.2,19.8 +NA,NA,a-curv-i5,2019-20,Lowell - Peter W Reilly,01600040, 300, 18.7, 491, 51.5, 48.5, 50.3, 21.6,17.9 +NA,NA,a-curv-i5,2019-20,Lowell - Pyne Arts,01600018, 418, 17.5, 524, 45.2, 54.8, 47.7, 16.2,24.1 +NA,NA,a-curv-i5,2019-20,Lowell - Rogers STEM Academy,01600005, 414, 20.1, 861, 47.2, 52.9, 69.1, 33.0,13.6 +NA,NA,a-curv-i5,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 292, 19.7, 499, 53.9, 46.1, 68.5, 20.4,20.2 +NA,NA,a-curv-i5,2019-20,Lowell - The Career Academy,01600515, 105, 7.6, 84, 26.2, 73.8, 81.0, 14.3,21.4 +NA,NA,a-curv-i5,2019-20,Lowell - Washington,01600055, 210, 13.9, 252, 41.3, 58.7, 58.7, 34.9,25.8 +NA,NA,a-curv-i5,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 234, 20.7, 807, 50.3, 49.6, 52.7, 51.6,17.7 +NA,NA,a-curv-i5,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 101, 14.5, 100, 55.0, 45.0, 66.0, 4.0,33 +NA,NA,a-curv-i5,2019-20,Ludlow - Chapin Street Elementary School,01610020, 166, 17.1, 317, 47.0, 53.0, 32.5, 6.6,14.8 +NA,NA,a-curv-i5,2019-20,Ludlow - East Street Elementary School,01610010, 185, 13.6, 413, 46.5, 53.5, 34.1, 10.4,19.9 +NA,NA,a-curv-i5,2019-20,Ludlow - Ludlow Senior High,01610505, 396, 15.4, 864, 51.4, 48.4, 23.8, 2.0,13.8 +NA,NA,a-curv-i5,2019-20,Ludlow - Paul R Baird Middle,01610305, 298, 18.1, 628, 47.6, 52.4, 29.0, 1.8,17.4 +NA,NA,a-curv-i5,2019-20,Ludlow - Veterans Park Elementary,01610023, 212, 17.0, 336, 56.0, 44.1, 33.9, 2.7,16.4 +NA,NA,a-curv-i5,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 1, 4.0, 4, 75.0, 25.0, 75.0, 0.0,100 +NA,NA,a-curv-i5,2019-20,Lunenburg - Lunenburg High,01620505, 242, 14.6, 459, 49.0, 51.0, 13.5, 0.4,9.2 +NA,NA,a-curv-i5,2019-20,Lunenburg - Lunenburg Middle School,01620305, 207, 23.5, 416, 47.6, 52.4, 19.2, 0.5,12.3 +NA,NA,a-curv-i5,2019-20,Lunenburg - Lunenburg Primary School,01620010, 196, 22.4, 434, 47.0, 53.0, 22.4, 2.1,27.4 +NA,NA,a-curv-i5,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 147, 24.0, 364, 50.6, 49.5, 16.8, 1.4,14.6 +NA,NA,a-curv-i5,2019-20,Lynn - A Drewicz Elementary,01630016, 112, 19.1, 471, 52.0, 48.0, 65.0, 46.9,10.4 +NA,NA,a-curv-i5,2019-20,Lynn - Aborn,01630011, 56, 19.0, 248, 48.0, 52.0, 48.0, 14.9,10.5 +NA,NA,a-curv-i5,2019-20,Lynn - Breed Middle School,01630405, 521, 23.8," 1,368", 48.5, 51.5, 63.7, 16.2,18.1 +NA,NA,a-curv-i5,2019-20,Lynn - Brickett Elementary,01630020, 79, 19.9, 348, 44.8, 55.2, 74.7, 44.0,15.8 +NA,NA,a-curv-i5,2019-20,Lynn - Capt William G Shoemaker,01630090, 97, 14.5, 342, 36.6, 63.5, 43.6, 8.8,47.7 +NA,NA,a-curv-i5,2019-20,Lynn - Classical High,01630505, 615, 19.9," 1,647", 48.2, 51.9, 54.5, 27.3,11.1 +NA,NA,a-curv-i5,2019-20,Lynn - Cobbet Elementary,01630035, 152, 18.6, 609, 44.2, 55.8, 77.0, 57.6,15.6 +NA,NA,a-curv-i5,2019-20,Lynn - E J Harrington,01630045, 162, 17.9, 675, 46.5, 53.5, 73.3, 43.6,22.5 +NA,NA,a-curv-i5,2019-20,Lynn - Edward A Sisson,01630095, 109, 17.4, 442, 49.6, 50.5, 45.7, 22.9,18.1 +7.526530612244898,5,a-curv-i5,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 196, 9.7, 358, 35.8, 64.3, 75.4, 40.8,23.2,116 +NA,NA,a-curv-i5,2019-20,Lynn - Hood,01630055, 123, 17.8, 515, 48.0, 52.0, 60.0, 35.7,20.2 +NA,NA,a-curv-i5,2019-20,Lynn - Ingalls,01630060, 163, 19.4, 689, 48.5, 51.5, 72.7, 54.6,15 +NA,NA,a-curv-i5,2019-20,Lynn - Julia F Callahan,01630030, 111, 15.9, 431, 46.9, 53.1, 58.9, 31.3,28.1 +NA,NA,a-curv-i5,2019-20,Lynn - Lincoln-Thomson,01630070, 62, 16.1, 226, 47.4, 52.7, 53.5, 27.4,20.4 +NA,NA,a-curv-i5,2019-20,Lynn - Lynn English High,01630510, 686, 19.7," 1,824", 48.1, 51.9, 57.6, 31.9,9.9 +NA,NA,a-curv-i5,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 807, 18.7," 1,413", 42.8, 57.1, 60.1, 13.9,19.7 +NA,NA,a-curv-i5,2019-20,Lynn - Lynn Woods,01630075, 41, 18.8, 183, 54.6, 45.4, 39.3, 9.3,22.4 +NA,NA,a-curv-i5,2019-20,Lynn - Pickering Middle,01630420, 302, 21.4, 651, 48.1, 51.9, 45.3, 10.0,19.7 +NA,NA,a-curv-i5,2019-20,Lynn - Robert L Ford,01630050, 115, 19.6, 497, 48.9, 51.1, 65.0, 46.1,10.7 +NA,NA,a-curv-i5,2019-20,Lynn - Sewell-Anderson,01630085, 68, 19.8, 302, 45.7, 54.3, 53.0, 38.4,8 +NA,NA,a-curv-i5,2019-20,Lynn - Thurgood Marshall Mid,01630305, 519, 23.9," 1,321", 48.3, 51.7, 65.2, 18.5,17.3 +NA,NA,a-curv-i5,2019-20,Lynn - Tracy,01630100, 102, 18.8, 421, 50.1, 49.9, 72.5, 44.2,11.2 +NA,NA,a-curv-i5,2019-20,Lynn - Washington Elementary School,01630005, 113, 18.3, 465, 50.3, 49.7, 71.2, 54.0,18.7 +NA,NA,a-curv-i5,2019-20,Lynn - William R Fallon,01630080, 20, 4.6, 44, 11.4, 88.6, 88.6, 13.6,97.7 +NA,NA,a-curv-i5,2019-20,Lynn - Wm P Connery,01630040, 138, 19.8, 606, 50.2, 49.8, 74.9, 49.5,15 +NA,NA,a-curv-i5,2019-20,Lynnfield - Huckleberry Hill,01640010, 88, 21.3, 469, 54.8, 45.2, 10.7, 6.6,19 +NA,NA,a-curv-i5,2019-20,Lynnfield - Lynnfield High,01640505, 273, 15.2, 602, 52.3, 47.5, 8.1, 0.7,16.8 +NA,NA,a-curv-i5,2019-20,Lynnfield - Lynnfield Middle School,01640405, 323, 19.4, 685, 47.7, 52.3, 8.0, 1.2,17.8 +NA,NA,a-curv-i5,2019-20,Lynnfield - Lynnfield Preschool,01640005, 4, 10.0, 40, 47.5, 52.5, 12.5, 5.0,47.5 +NA,NA,a-curv-i5,2019-20,Lynnfield - Summer Street,01640020, 80, 20.5, 409, 47.4, 52.6, 4.9, 2.9,16.1 +NA,NA,a-curv-i5,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 355, 20.4," 1,219", 52.3, 47.7, 63.7, 19.1,22.7 +NA,NA,a-curv-i5,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 24, 16.6, 50, 56.0, 42.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2019-20,Malden - Beebe,01650003, 409, 22.2, 940, 47.8, 52.2, 49.6, 22.0,13.3 +NA,NA,a-curv-i5,2019-20,Malden - Ferryway,01650013, 338, 24.7, 963, 49.1, 50.7, 52.4, 21.4,13.1 +NA,NA,a-curv-i5,2019-20,Malden - Forestdale,01650027, 338, 18.6, 569, 45.3, 54.7, 42.5, 8.1,25 +NA,NA,a-curv-i5,2019-20,Malden - Linden,01650047, 381, 22.0, 887, 47.7, 52.2, 40.4, 12.2,16.5 +NA,NA,a-curv-i5,2019-20,Malden - Malden Early Learning Center,01650049, 29, 14.5, 400, 38.3, 61.8, 38.5, 0.3,45.5 +NA,NA,a-curv-i5,2019-20,Malden - Malden High,01650505, 706, 18.9," 1,791", 48.8, 51.1, 47.6, 14.2,15.8 +NA,NA,a-curv-i5,2019-20,Malden - Salemwood,01650057, 490, 19.7," 1,108", 50.6, 49.4, 64.1, 42.6,9.5 +NA,NA,a-curv-i5,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 78, 17.4, 223, 52.0, 48.0, 14.4, 1.8,15.7 +6.7615384615384615,5,a-curv-i5,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 312, 13.4, 486, 50.2, 49.8, 10.1, 0.0,9.7,483 +NA,NA,a-curv-i5,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 187, 19.7, 360, 49.2, 50.8, 9.4, 0.3,18.6 +NA,NA,a-curv-i5,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 107, 17.7, 310, 45.2, 54.8, 8.1, 1.0,22.6 +NA,NA,a-curv-i5,2019-20,Mansfield - Everett W Robinson,01670007, 144, 19.7, 681, 47.0, 52.9, 16.3, 4.0,13.4 +NA,NA,a-curv-i5,2019-20,Mansfield - Harold L Qualters Middle,01670035, 518, 18.3, 862, 47.6, 52.4, 15.0, 1.7,13.7 +NA,NA,a-curv-i5,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 166, 22.1, 781, 46.7, 53.3, 15.5, 3.3,14.1 +NA,NA,a-curv-i5,2019-20,Mansfield - Mansfield High,01670505, 730, 15.1," 1,239", 49.7, 50.3, 13.6, 0.5,11.4 +NA,NA,a-curv-i5,2019-20,Mansfield - Roland Green School,01670003, 7, 19.3, 135, 44.4, 55.6, 19.3, 0.0,48.9 +NA,NA,a-curv-i5,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 56, 20.1, 167, 38.9, 61.1, 50.3, 0.6,47.3 +NA,NA,a-curv-i5,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 36, 20.0, 80, 52.5, 47.5, 18.8, 7.5,13.8 +NA,NA,a-curv-i5,2019-20,Marblehead - Glover,01680020, 148, 21.0, 394, 48.2, 51.8, 7.6, 3.8,24.6 +NA,NA,a-curv-i5,2019-20,Marblehead - L H Coffin,01680010, 113, 17.8, 225, 47.1, 52.9, 12.4, 8.9,21.3 +NA,NA,a-curv-i5,2019-20,Marblehead - Marblehead High,01680505, 828, 11.9," 1,004", 51.2, 48.8, 8.7, 2.3,19.2 +NA,NA,a-curv-i5,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 278, 19.2, 491, 48.7, 51.3, 11.6, 3.3,21.8 +NA,NA,a-curv-i5,2019-20,Marblehead - Village School,01680016, 286, 25.9, 780, 46.7, 53.3, 10.8, 5.1,21 +NA,NA,a-curv-i5,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 84, 15.5, 206, 45.6, 53.9, 15.1, 1.9,25.7 +NA,NA,a-curv-i5,2019-20,Marion - Sippican,01690005, 152, 20.7, 443, 48.3, 51.7, 19.9, 0.9,19.4 +NA,NA,a-curv-i5,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 865, 21.7," 1,550", 49.4, 50.6, 44.1, 18.8,16.8 +NA,NA,a-curv-i5,2019-20,Marlborough - Charles Jaworek School,01700030, 305, 22.7, 835, 48.5, 51.5, 41.4, 39.6,13.7 +NA,NA,a-curv-i5,2019-20,Marlborough - Early Childhood Center,01700006, 18, 11.7, 208, 41.8, 58.2, 40.4, 25.5,51 +NA,NA,a-curv-i5,2019-20,Marlborough - Francis J Kane,01700008, 221, 22.1, 597, 46.2, 53.8, 39.7, 32.0,13.2 +NA,NA,a-curv-i5,2019-20,Marlborough - Marlborough High,01700505, 680, 13.7," 1,109", 48.2, 51.8, 39.0, 20.7,15 +NA,NA,a-curv-i5,2019-20,Marlborough - Richer,01700025, 241, 23.9, 702, 46.9, 53.1, 46.0, 34.9,15.4 +NA,NA,a-curv-i5,2019-20,Marshfield - Daniel Webster,01710015, 74, 19.0, 378, 45.5, 54.5, 18.5, 2.7,24.6 +NA,NA,a-curv-i5,2019-20,Marshfield - Eames Way School,01710005, 54, 19.0, 227, 42.7, 57.3, 6.2, 0.0,16.3 +NA,NA,a-curv-i5,2019-20,Marshfield - Furnace Brook Middle,01710310, 486, 17.4, 908, 50.1, 49.9, 13.2, 1.0,18.6 +NA,NA,a-curv-i5,2019-20,Marshfield - Gov Edward Winslow,01710020, 90, 19.3, 384, 48.4, 51.6, 12.2, 0.0,19.3 +NA,NA,a-curv-i5,2019-20,Marshfield - Marshfield High,01710505, 544, 18.2," 1,296", 47.9, 52.1, 12.0, 1.2,14.2 +NA,NA,a-curv-i5,2019-20,Marshfield - Martinson Elementary,01710025, 95, 20.6, 483, 47.8, 52.2, 17.2, 4.1,22 +NA,NA,a-curv-i5,2019-20,Marshfield - South River,01710010, 71, 19.8, 312, 50.3, 49.7, 9.0, 0.3,20.5 +NA,NA,a-curv-i5,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 470, 12.1, 688, 47.2, 52.8, 32.0, 12.5,20.5 +NA,NA,a-curv-i5,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 61, 16.2, 180, 56.1, 43.9, 36.1, 5.0,30 +NA,NA,a-curv-i5,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 126, 19.9, 358, 49.4, 50.6, 76.8, 25.7,16.8 +6.432876712328766,5,a-curv-i5,2019-20,Masconomet - Masconomet Regional High School,07050505, 584, 15.8," 1,141", 53.3, 46.7, 6.7, 0.4,15.5,1144 +NA,NA,a-curv-i5,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 308, 18.6, 581, 51.5, 48.5, 6.2, 0.0,17 +NA,NA,a-curv-i5,2019-20,Mashpee - Kenneth Coombs School,01720005, 169, 16.8, 410, 42.9, 57.1, 39.0, 11.5,16.8 +NA,NA,a-curv-i5,2019-20,Mashpee - Mashpee High,01720505, 312, 12.4, 460, 50.4, 49.6, 25.4, 0.2,13 +NA,NA,a-curv-i5,2019-20,Mashpee - Mashpee Middle School,01720020, 158, 18.0, 263, 48.3, 51.7, 30.0, 1.9,15.2 +NA,NA,a-curv-i5,2019-20,Mashpee - Quashnet School,01720035, 340, 17.1, 476, 51.5, 48.5, 38.5, 2.1,16.4 +NA,NA,a-curv-i5,2019-20,Mattapoisett - Center,01730005, 109, 18.7, 254, 48.0, 52.0, 17.3, 0.0,18.5 +NA,NA,a-curv-i5,2019-20,Mattapoisett - Old Hammondtown,01730010, 92, 19.3, 190, 45.8, 54.2, 18.4, 0.5,14.2 +NA,NA,a-curv-i5,2019-20,Maynard - Fowler School,01740305, 302, 19.4, 465, 50.3, 49.5, 19.4, 3.7,19.8 +NA,NA,a-curv-i5,2019-20,Maynard - Green Meadow,01740010, 303, 18.3, 454, 44.9, 55.1, 20.7, 6.8,18.7 +6.595833333333334,5,a-curv-i5,2019-20,Maynard - Maynard High,01740505, 192, 13.5, 337, 48.4, 51.3, 14.8, 3.3,14.5,337 +NA,NA,a-curv-i5,2019-20,Medfield - Dale Street,01750005, 247, 18.4, 401, 45.9, 54.1, 5.7, 0.8,14.7 +NA,NA,a-curv-i5,2019-20,Medfield - Medfield Senior High,01750505, 394, 17.4, 806, 50.4, 49.6, 6.5, 0.3,9.1 +NA,NA,a-curv-i5,2019-20,Medfield - Memorial School,01750003, 178, 20.1, 446, 49.8, 50.2, 7.4, 1.8,11.9 +NA,NA,a-curv-i5,2019-20,Medfield - Ralph Wheelock School,01750007, 191, 20.2, 386, 50.3, 49.7, 6.0, 1.0,15.3 +NA,NA,a-curv-i5,2019-20,Medfield - Thomas Blake Middle,01750305, 498, 15.3, 578, 48.1, 51.9, 5.4, 0.5,14 +NA,NA,a-curv-i5,2019-20,Medford - Brooks School,01760130, 138, 18.4, 522, 49.6, 50.4, 17.8, 9.8,19.7 +NA,NA,a-curv-i5,2019-20,Medford - Christopher Columbus,01760140, 125, 15.1, 376, 43.9, 56.1, 36.7, 18.4,22.6 +NA,NA,a-curv-i5,2019-20,Medford - Curtis-Tufts,01760510, 22, 5.2, 18, 44.4, 55.6, 61.1, 0.0,88.9 +NA,NA,a-curv-i5,2019-20,Medford - John J McGlynn Elementary School,01760068, 129, 17.2, 473, 53.7, 46.3, 42.3, 16.5,16.9 +NA,NA,a-curv-i5,2019-20,Medford - John J. McGlynn Middle School,01760320, 303, 14.6, 439, 47.8, 52.2, 45.3, 17.1,20.3 +NA,NA,a-curv-i5,2019-20,Medford - Madeleine Dugger Andrews,01760315, 362, 15.8, 470, 46.2, 53.8, 26.4, 0.0,19.4 +NA,NA,a-curv-i5,2019-20,Medford - Medford High,01760505, 699, 14.3," 1,339", 47.1, 53.0, 33.6, 8.2,19.6 +NA,NA,a-curv-i5,2019-20,Medford - Milton Fuller Roberts,01760150, 161, 16.9, 556, 46.2, 53.8, 29.7, 15.3,17.1 +NA,NA,a-curv-i5,2019-20,Medway - Burke/Memorial Elementary School,01770015, 224, 19.8, 476, 51.5, 48.5, 10.5, 2.7,20 +NA,NA,a-curv-i5,2019-20,Medway - John D Mc Govern Elementary,01770013, 122, 18.6, 345, 45.2, 54.8, 11.6, 3.8,12.8 +NA,NA,a-curv-i5,2019-20,Medway - Medway High,01770505, 339, 14.9, 685, 50.2, 49.8, 8.6, 0.2,14.2 +NA,NA,a-curv-i5,2019-20,Medway - Medway Middle,01770305, 354, 17.5, 685, 52.7, 47.3, 12.1, 0.3,19.7 +NA,NA,a-curv-i5,2019-20,Melrose - Early Childhood Center,01780003, 36, 15.3, 325, 45.2, 54.8, 7.4, 0.0,21.5 +NA,NA,a-curv-i5,2019-20,Melrose - Herbert Clark Hoover,01780017, 135, 21.5, 323, 49.9, 50.2, 13.9, 10.8,9.3 +NA,NA,a-curv-i5,2019-20,Melrose - Horace Mann,01780025, 108, 23.8, 284, 54.2, 45.8, 3.5, 0.4,15.1 +NA,NA,a-curv-i5,2019-20,Melrose - Lincoln,01780020, 180, 21.2, 425, 54.4, 45.7, 26.1, 22.6,15.1 +NA,NA,a-curv-i5,2019-20,Melrose - Melrose High,01780505, 406, 16.9, 984, 52.2, 47.8, 10.0, 1.6,14.2 +NA,NA,a-curv-i5,2019-20,Melrose - Melrose Middle,01780305, 456, 22.0, 827, 49.5, 50.5, 12.5, 3.4,17.2 +NA,NA,a-curv-i5,2019-20,Melrose - Roosevelt,01780035, 180, 21.9, 438, 49.3, 50.7, 13.9, 7.8,15.1 +NA,NA,a-curv-i5,2019-20,Melrose - Winthrop,01780050, 171, 22.2, 422, 48.1, 51.9, 4.0, 1.0,13 +NA,NA,a-curv-i5,2019-20,Mendon-Upton - Henry P Clough,07100179, 144, 19.4, 373, 53.1, 46.9, 8.3, 3.8,14.8 +NA,NA,a-curv-i5,2019-20,Mendon-Upton - Memorial School,07100001, 184, 20.2, 477, 48.4, 51.6, 10.7, 4.2,15.1 +NA,NA,a-curv-i5,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 350, 21.9, 765, 45.6, 54.4, 11.0, 1.6,18.8 +NA,NA,a-curv-i5,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 354, 14.7, 635, 53.9, 46.1, 9.8, 0.6,10.9 +NA,NA,a-curv-i5,2019-20,Methuen - Comprehensive Grammar School,01810050, 336, 20.4," 1,120", 49.5, 50.5, 35.2, 19.1,19.6 +NA,NA,a-curv-i5,2019-20,Methuen - Donald P Timony Grammar,01810060, 383, 22.4," 1,295", 46.0, 54.0, 44.6, 12.1,19.2 +NA,NA,a-curv-i5,2019-20,Methuen - Marsh Grammar School,01810030, 379, 20.7," 1,191", 45.8, 54.2, 31.6, 6.3,25.1 +NA,NA,a-curv-i5,2019-20,Methuen - Methuen High,01810505," 1,044", 17.7," 1,990", 49.1, 50.9, 35.0, 7.9,9.9 +NA,NA,a-curv-i5,2019-20,Methuen - Tenney Grammar School,01810055, 403, 22.3," 1,362", 45.7, 54.3, 49.2, 13.0,20.9 +NA,NA,a-curv-i5,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 247, 20.1, 552, 44.9, 55.1, 41.5, 1.6,19.4 +NA,NA,a-curv-i5,2019-20,Middleborough - John T. Nichols Middle,01820305, 367, 24.9, 791, 49.7, 50.3, 29.8, 0.8,19 +NA,NA,a-curv-i5,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 252, 20.8, 584, 51.4, 48.6, 25.9, 1.2,16.6 +NA,NA,a-curv-i5,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 116, 20.2, 306, 47.4, 52.6, 32.0, 0.7,26.5 +NA,NA,a-curv-i5,2019-20,Middleborough - Middleborough High,01820505, 414, 16.0, 814, 48.3, 51.7, 22.1, 1.0,16.5 +NA,NA,a-curv-i5,2019-20,Middleton - Fuller Meadow,01840003, 142, 12.7, 277, 53.4, 46.6, 6.9, 3.3,16.6 +NA,NA,a-curv-i5,2019-20,Middleton - Howe-Manning,01840005, 209, 17.0, 452, 51.1, 48.9, 10.0, 0.9,18.1 +NA,NA,a-curv-i5,2019-20,Milford - Brookside,01850065, 170, 18.3, 478, 49.0, 51.1, 49.4, 33.7,14.9 +NA,NA,a-curv-i5,2019-20,Milford - Memorial,01850010, 180, 16.7, 470, 50.0, 50.0, 49.4, 38.3,12.3 +NA,NA,a-curv-i5,2019-20,Milford - Milford High,01850505, 567, 19.3," 1,298", 48.1, 51.9, 37.9, 13.8,12.9 +NA,NA,a-curv-i5,2019-20,Milford - Shining Star Early Childhood Center,01850075, 29, 13.8, 191, 33.5, 66.0, 36.1, 36.1,51.8 +NA,NA,a-curv-i5,2019-20,Milford - Stacy Middle,01850305, 485, 20.9," 1,050", 46.5, 53.5, 40.9, 13.7,13.8 +NA,NA,a-curv-i5,2019-20,Milford - Woodland,01850090, 419, 19.9," 1,032", 48.5, 51.6, 43.3, 19.8,16.9 +NA,NA,a-curv-i5,2019-20,Millbury - Elmwood Street,01860017, 234, 18.7, 561, 46.4, 53.7, 28.9, 7.8,15.7 +NA,NA,a-curv-i5,2019-20,Millbury - Millbury Junior/Senior High,01860505, 429, 16.7, 747, 49.9, 49.4, 26.6, 2.1,18.5 +NA,NA,a-curv-i5,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 181, 20.3, 401, 47.1, 52.9, 31.7, 4.5,21.5 +NA,NA,a-curv-i5,2019-20,Millis - Clyde F Brown,01870005, 221, 19.4, 582, 51.0, 49.0, 12.2, 2.8,13.9 +6.432941176470588,5,a-curv-i5,2019-20,Millis - Millis High School,01870505, 170, 13.5, 336, 48.8, 51.2, 9.8, 0.6,12.8,333 +NA,NA,a-curv-i5,2019-20,Millis - Millis Middle,01870020, 184, 16.2, 276, 47.8, 51.8, 13.0, 0.7,13.4 +NA,NA,a-curv-i5,2019-20,Milton - Charles S Pierce Middle,01890410, 543, 19.0, 978, 48.6, 51.4, 10.8, 0.9,16.3 +NA,NA,a-curv-i5,2019-20,Milton - Collicot,01890005, 243, 24.0, 669, 48.6, 51.4, 3.9, 3.0,14.2 +NA,NA,a-curv-i5,2019-20,Milton - Cunningham School,01890007, 221, 22.2, 637, 49.3, 50.7, 7.5, 4.2,17.3 +NA,NA,a-curv-i5,2019-20,Milton - Glover,01890010, 250, 22.8, 622, 53.2, 46.8, 8.4, 3.2,13.3 +NA,NA,a-curv-i5,2019-20,Milton - Milton High,01890505, 520, 17.2," 1,073", 51.0, 48.9, 12.3, 1.3,15 +NA,NA,a-curv-i5,2019-20,Milton - Tucker,01890020, 182, 22.1, 463, 50.8, 49.2, 21.6, 5.4,12.5 +NA,NA,a-curv-i5,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 566, 12.2, 586, 36.2, 63.0, 20.1, 1.9,36.4 +NA,NA,a-curv-i5,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 64, 17.1, 253, 49.4, 50.6, 34.8, 0.8,21.3 +NA,NA,a-curv-i5,2019-20,Mohawk Trail - Colrain Central,07170010, 34, 12.5, 107, 44.9, 55.1, 43.0, 0.0,29 +7.033093525179856,5,a-curv-i5,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 278, 10.4, 336, 51.8, 47.9, 35.4, 1.2,24.7,336 +NA,NA,a-curv-i5,2019-20,Mohawk Trail - Sanderson Academy,07170020, 39, 14.3, 150, 51.3, 48.7, 27.3, 0.0,16.7 +NA,NA,a-curv-i5,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 161, 15.2, 208, 50.0, 50.0, 38.0, 9.6,22.1 +NA,NA,a-curv-i5,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 371, 17.4, 558, 44.8, 55.2, 32.3, 6.1,19.5 +6.830205949656751,5,a-curv-i5,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 437, 13.1, 636, 50.2, 49.8, 27.0, 3.0,13.2,639 +NA,NA,a-curv-i5,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 351, 16.7, 484, 51.7, 48.4, 30.2, 3.3,15.5 +NA,NA,a-curv-i5,2019-20,Monson - Granite Valley School,01910030, 299, 16.1, 425, 52.2, 47.3, 36.2, 0.9,19.8 +6.757081545064378,5,a-curv-i5,2019-20,Monson - Monson High School,01910505, 233, 13.8, 360, 49.4, 50.6, 21.1, 0.3,16.9,362 +NA,NA,a-curv-i5,2019-20,Monson - Quarry Hill Community School,01910010, 48, 16.3, 140, 52.1, 47.9, 33.6, 1.4,17.1 +NA,NA,a-curv-i5,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 609, 18.8," 1,415", 49.9, 49.8, 25.9, 1.0,14.8 +NA,NA,a-curv-i5,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 115, 16.6, 198, 53.0, 47.0, 26.8, 0.0,18.7 +NA,NA,a-curv-i5,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 338, 13.5, 553, 52.3, 47.7, 15.7, 0.2,13.6 +NA,NA,a-curv-i5,2019-20,Mount Greylock - Williamstown Elementary,07150010, 197, 16.0, 418, 47.6, 52.4, 18.9, 0.2,15.1 +NA,NA,a-curv-i5,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 759, 23.8," 1,581", 51.4, 48.6, 19.0, 1.8,12.3 +NA,NA,a-curv-i5,2019-20,Nahant - Johnson,01960010, 65, 17.1, 159, 50.3, 49.7, 20.1, 0.0,25.8 +NA,NA,a-curv-i5,2019-20,Nantucket - Cyrus Peirce,01970010, 229, 17.5, 404, 50.3, 49.8, 23.8, 9.4,16.1 +NA,NA,a-curv-i5,2019-20,Nantucket - Nantucket Elementary,01970005, 201, 18.7, 409, 48.4, 51.6, 26.2, 33.0,20.3 +NA,NA,a-curv-i5,2019-20,Nantucket - Nantucket High,01970505, 294, 14.8, 542, 48.2, 51.3, 22.1, 11.6,14.8 +NA,NA,a-curv-i5,2019-20,Nantucket - Nantucket Intermediate School,01970020, 185, 19.3, 345, 47.5, 52.5, 30.7, 14.8,12.8 +NA,NA,a-curv-i5,2019-20,Narragansett - Narragansett Middle,07200305, 172, 22.5, 381, 45.7, 54.3, 30.7, 0.3,15 +NA,NA,a-curv-i5,2019-20,Narragansett - Narragansett Regional High,07200505, 221, 13.1, 349, 49.3, 50.7, 31.0, 0.0,14.9 +NA,NA,a-curv-i5,2019-20,Narragansett - Phillipston Memorial,07200003, 53, 18.6, 112, 33.9, 66.1, 39.3, 0.9,17 +NA,NA,a-curv-i5,2019-20,Narragansett - Templeton Elementary School,07200020, 214, 23.6, 659, 49.5, 50.5, 31.4, 0.2,18.4 +NA,NA,a-curv-i5,2019-20,Nashoba - Center School,07250020, 176, 20.8, 535, 51.0, 49.0, 7.3, 4.1,17.8 +NA,NA,a-curv-i5,2019-20,Nashoba - Florence Sawyer School,07250025, 262, 20.1, 721, 50.1, 49.9, 6.7, 2.2,16.8 +NA,NA,a-curv-i5,2019-20,Nashoba - Hale,07250310, 160, 18.7, 303, 46.5, 53.5, 5.9, 3.0,17.8 +NA,NA,a-curv-i5,2019-20,Nashoba - Luther Burbank Middle School,07250305, 141, 18.0, 245, 50.2, 49.8, 17.1, 2.5,18 +NA,NA,a-curv-i5,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 137, 19.9, 481, 47.8, 52.2, 17.7, 3.7,22.7 +NA,NA,a-curv-i5,2019-20,Nashoba - Nashoba Regional,07250505, 572, 13.2, 914, 49.9, 50.0, 7.4, 1.5,12.9 +6.522916666666665,5,a-curv-i5,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 384, 14.0, 690, 38.3, 61.2, 21.5, 0.7,32,709 +NA,NA,a-curv-i5,2019-20,Natick - Bennett-Hemenway,01980005, 109, 20.5, 553, 50.5, 49.6, 7.6, 1.8,16.3 +NA,NA,a-curv-i5,2019-20,Natick - Brown,01980010, 106, 18.9, 485, 47.8, 52.2, 10.3, 12.0,10.1 +NA,NA,a-curv-i5,2019-20,Natick - J F Kennedy Middle School,01980305, 418, 21.1, 757, 46.0, 53.9, 10.6, 4.1,16.1 +NA,NA,a-curv-i5,2019-20,Natick - Johnson,01980031, 44, 21.2, 233, 47.2, 52.8, 10.3, 1.3,9.4 +NA,NA,a-curv-i5,2019-20,Natick - Lilja Elementary,01980035, 104, 16.7, 428, 53.0, 47.0, 12.6, 5.8,15.2 +NA,NA,a-curv-i5,2019-20,Natick - Memorial,01980043, 80, 20.3, 406, 43.6, 56.4, 6.2, 1.0,11.1 +NA,NA,a-curv-i5,2019-20,Natick - Natick High,01980505," 1,335", 17.4," 1,780", 49.0, 50.8, 10.8, 3.4,16.2 +NA,NA,a-curv-i5,2019-20,Natick - Wilson Middle,01980310, 495, 21.1, 917, 47.6, 52.3, 11.5, 0.1,21.1 +NA,NA,a-curv-i5,2019-20,Nauset - Nauset Regional High,06600505, 573, 13.4, 906, 54.5, 45.3, 21.0, 2.5,11 +NA,NA,a-curv-i5,2019-20,Nauset - Nauset Regional Middle,06600305, 423, 18.9, 585, 51.3, 48.6, 23.3, 1.4,23.6 +NA,NA,a-curv-i5,2019-20,Needham - Broadmeadow,01990005, 122, 22.2, 548, 50.0, 50.0, 4.0, 3.1,15 +NA,NA,a-curv-i5,2019-20,Needham - High Rock School,01990410, 307, 20.4, 497, 51.1, 48.9, 7.0, 1.8,19.1 +NA,NA,a-curv-i5,2019-20,Needham - John Eliot,01990020, 103, 19.6, 413, 47.2, 52.8, 8.0, 6.5,17 +NA,NA,a-curv-i5,2019-20,Needham - Needham High,01990505, 718, 16.9," 1,656", 50.4, 49.5, 4.7, 0.4,17.4 +NA,NA,a-curv-i5,2019-20,Needham - Newman Elementary,01990050, 161, 19.5, 708, 48.3, 51.7, 6.1, 5.8,21.3 +NA,NA,a-curv-i5,2019-20,Needham - Pollard Middle,01990405, 608, 19.9, 888, 51.2, 48.5, 6.3, 1.0,19.4 +NA,NA,a-curv-i5,2019-20,Needham - Sunita L. Williams Elementary,01990035, 116, 21.8, 519, 45.1, 54.9, 4.4, 6.7,16.6 +NA,NA,a-curv-i5,2019-20,Needham - William Mitchell,01990040, 116, 20.8, 488, 49.8, 50.2, 4.7, 4.3,11.3 +NA,NA,a-curv-i5,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 352, 15.6, 715, 49.1, 50.6, 46.9, 11.8,19.3 +NA,NA,a-curv-i5,2019-20,New Bedford - Abraham Lincoln,02010095, 265, 21.9, 717, 48.3, 51.7, 72.4, 24.4,13.1 +NA,NA,a-curv-i5,2019-20,New Bedford - Alfred J Gomes,02010063, 257, 18.3, 536, 49.4, 50.6, 81.9, 67.0,23.9 +NA,NA,a-curv-i5,2019-20,New Bedford - Betsey B Winslow,02010140, 96, 23.0, 277, 49.1, 50.9, 49.8, 10.1,13.7 +NA,NA,a-curv-i5,2019-20,New Bedford - Carlos Pacheco,02010105, 185, 14.7, 337, 49.6, 50.5, 84.9, 42.1,25.5 +NA,NA,a-curv-i5,2019-20,New Bedford - Casimir Pulaski,02010123, 343, 15.6, 702, 45.4, 54.6, 49.2, 13.8,28.4 +NA,NA,a-curv-i5,2019-20,New Bedford - Charles S Ashley,02010010, 121, 18.5, 275, 52.7, 47.3, 58.6, 13.5,18.2 +NA,NA,a-curv-i5,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 105, 22.5, 290, 49.3, 50.7, 71.0, 20.3,15.2 +NA,NA,a-curv-i5,2019-20,New Bedford - Ellen R Hathaway,02010075, 127, 17.0, 343, 47.2, 52.8, 71.1, 47.8,17.8 +NA,NA,a-curv-i5,2019-20,New Bedford - Elwyn G Campbell,02010020, 110, 17.0, 295, 41.7, 58.3, 62.0, 22.0,30.5 +NA,NA,a-curv-i5,2019-20,New Bedford - Hayden/McFadden,02010078, 437, 14.4, 685, 47.9, 52.1, 82.9, 52.0,27 +NA,NA,a-curv-i5,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 166, 19.9, 409, 48.4, 51.6, 85.6, 52.8,17.9 +NA,NA,a-curv-i5,2019-20,New Bedford - James B Congdon,02010040, 120, 20.3, 305, 51.5, 48.5, 74.8, 40.7,14.8 +NA,NA,a-curv-i5,2019-20,New Bedford - Jireh Swift,02010130, 73, 19.1, 170, 52.4, 47.7, 57.7, 12.4,9.4 +NA,NA,a-curv-i5,2019-20,New Bedford - John Avery Parker,02010115, 98, 16.1, 223, 53.4, 46.6, 77.1, 30.5,20.2 +NA,NA,a-curv-i5,2019-20,New Bedford - John B Devalles,02010050, 146, 20.6, 367, 54.0, 46.1, 81.5, 38.2,13.9 +NA,NA,a-curv-i5,2019-20,New Bedford - Keith Middle School,02010405, 446, 20.4," 1,039", 45.6, 54.4, 70.5, 19.1,20.6 +NA,NA,a-curv-i5,2019-20,New Bedford - New Bedford High,02010505," 1,207", 18.9," 2,625", 49.3, 50.7, 65.1, 31.1,18.1 +NA,NA,a-curv-i5,2019-20,New Bedford - Normandin Middle School,02010410, 590, 21.3," 1,200", 45.9, 54.1, 63.5, 16.2,18.3 +NA,NA,a-curv-i5,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 83, 18.4, 198, 54.0, 46.0, 82.3, 52.0,19.7 +NA,NA,a-curv-i5,2019-20,New Bedford - Roosevelt Middle School,02010415, 426, 18.2, 923, 48.5, 51.5, 74.4, 26.9,25.8 +NA,NA,a-curv-i5,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 403, 14.8, 752, 42.3, 57.7, 72.6, 16.2,31.8 +NA,NA,a-curv-i5,2019-20,New Bedford - Thomas R Rodman,02010125, 82, 19.6, 196, 44.9, 55.1, 68.9, 23.5,20.9 +NA,NA,a-curv-i5,2019-20,New Bedford - Trinity Day Academy,02010510, 128, 7.4, 104, 40.4, 59.6, 88.5, 6.7,98.1 +6.867415730337079,5,a-curv-i5,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 89, 8.6, 126, 34.1, 65.9, 81.8, 15.9,36.5,126 +NA,NA,a-curv-i5,2019-20,New Bedford - William H Taylor,02010135, 108, 18.4, 270, 47.0, 53.0, 58.9, 12.2,16.7 +NA,NA,a-curv-i5,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 208, 21.7, 620, 51.8, 48.2, 49.0, 9.7,9.8 +NA,NA,a-curv-i5,2019-20,New Salem-Wendell - Swift River,07280015, 31, 18.4, 147, 51.7, 48.3, 30.6, 0.0,18.4 +NA,NA,a-curv-i5,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 112, 20.2, 298, 49.7, 50.3, 11.7, 3.7,20.8 +NA,NA,a-curv-i5,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 186, 17.4, 640, 50.6, 49.4, 12.0, 3.6,23.1 +NA,NA,a-curv-i5,2019-20,Newburyport - Newburyport High,02040505, 628, 16.4, 786, 52.9, 47.0, 9.4, 1.8,10.4 +NA,NA,a-curv-i5,2019-20,Newburyport - Rupert A Nock Middle,02040305, 368, 19.8, 538, 48.5, 51.3, 10.6, 1.5,21.8 +NA,NA,a-curv-i5,2019-20,Newton - A E Angier,02070005, 174, 20.4, 503, 51.7, 48.3, 4.6, 7.0,18.5 +NA,NA,a-curv-i5,2019-20,Newton - Bigelow Middle,02070305, 290, 18.6, 503, 54.3, 45.3, 10.1, 5.4,17.1 +NA,NA,a-curv-i5,2019-20,Newton - Bowen,02070015, 132, 20.3, 376, 51.1, 48.9, 8.5, 11.7,17.8 +NA,NA,a-curv-i5,2019-20,Newton - C C Burr,02070020, 125, 20.8, 366, 46.5, 53.6, 8.7, 10.9,16.1 +NA,NA,a-curv-i5,2019-20,Newton - Cabot,02070025, 132, 21.7, 404, 48.5, 51.5, 8.4, 7.9,11.9 +NA,NA,a-curv-i5,2019-20,Newton - Charles E Brown Middle,02070310, 414, 19.5, 785, 49.2, 50.8, 6.5, 4.8,16.6 +NA,NA,a-curv-i5,2019-20,Newton - Countryside,02070040, 139, 21.0, 410, 48.5, 51.5, 8.8, 13.2,18.8 +NA,NA,a-curv-i5,2019-20,Newton - F A Day Middle,02070315, 548, 21.8," 1,005", 49.1, 51.0, 11.5, 2.0,16.7 +NA,NA,a-curv-i5,2019-20,Newton - Franklin,02070055, 146, 20.3, 418, 55.7, 44.3, 8.4, 9.6,14.1 +NA,NA,a-curv-i5,2019-20,Newton - Horace Mann,02070075, 132, 20.8, 389, 45.8, 54.2, 8.0, 6.4,10.3 +NA,NA,a-curv-i5,2019-20,Newton - John Ward,02070120, 103, 17.8, 259, 48.7, 51.4, 4.3, 6.2,13.9 +NA,NA,a-curv-i5,2019-20,Newton - Lincoln-Eliot,02070070, 132, 20.0, 367, 47.1, 52.6, 24.8, 19.1,20.7 +NA,NA,a-curv-i5,2019-20,Newton - Mason-Rice,02070080, 152, 20.7, 444, 48.9, 51.1, 2.0, 7.4,10.6 +NA,NA,a-curv-i5,2019-20,Newton - Memorial Spaulding,02070105, 160, 20.5, 462, 51.1, 48.9, 6.9, 9.5,18.6 +NA,NA,a-curv-i5,2019-20,Newton - Newton Early Childhood Center,02070108, 14, 16.1, 226, 38.5, 61.5, 13.3, 8.0,65.9 +NA,NA,a-curv-i5,2019-20,Newton - Newton North High,02070505," 1,046", 15.9," 2,086", 48.5, 51.3, 12.0, 2.8,16.3 +NA,NA,a-curv-i5,2019-20,Newton - Newton South High,02070510," 1,141", 13.9," 1,970", 47.5, 52.3, 8.1, 2.4,16.6 +NA,NA,a-curv-i5,2019-20,Newton - Oak Hill Middle,02070320, 430, 17.3, 642, 44.6, 55.5, 11.1, 3.9,19.5 +NA,NA,a-curv-i5,2019-20,Newton - Peirce,02070100, 96, 20.9, 284, 52.5, 47.5, 7.4, 7.0,12.3 +NA,NA,a-curv-i5,2019-20,Newton - Underwood,02070115, 96, 20.1, 273, 51.7, 48.4, 10.3, 8.1,9.9 +NA,NA,a-curv-i5,2019-20,Newton - Williams,02070125, 104, 18.1, 265, 46.0, 54.0, 6.0, 9.4,14.3 +NA,NA,a-curv-i5,2019-20,Newton - Zervas,02070130, 160, 19.8, 445, 49.7, 50.1, 7.9, 9.7,18 +NA,NA,a-curv-i5,2019-20,Norfolk - Freeman-Kennedy School,02080005, 168, 24.2, 537, 45.8, 54.2, 6.0, 0.9,19.7 +NA,NA,a-curv-i5,2019-20,Norfolk - H Olive Day,02080015, 87, 22.7, 454, 48.9, 51.1, 4.9, 4.4,17.4 +NA,NA,a-curv-i5,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 470, 16.0, 553, 70.5, 29.3, 13.6, 0.2,19.9 +NA,NA,a-curv-i5,2019-20,North Adams - Brayton,02090035, 109, 14.6, 264, 42.4, 57.6, 68.2, 1.5,29.2 +NA,NA,a-curv-i5,2019-20,North Adams - Colegrove Park Elementary,02090008, 109, 16.3, 296, 46.3, 53.7, 65.2, 1.7,25 +NA,NA,a-curv-i5,2019-20,North Adams - Drury High,02090505, 264, 14.9, 555, 51.7, 48.3, 59.8, 0.2,20.9 +NA,NA,a-curv-i5,2019-20,North Adams - Greylock,02090015, 101, 14.3, 260, 51.2, 48.9, 58.5, 0.4,27.3 +NA,NA,a-curv-i5,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 147, 20.3, 461, 47.1, 52.9, 21.5, 2.4,26.3 +NA,NA,a-curv-i5,2019-20,North Andover - Annie L Sargent School,02110018, 195, 21.4, 466, 48.9, 51.1, 6.0, 0.4,16.7 +NA,NA,a-curv-i5,2019-20,North Andover - Atkinson,02110001, 147, 21.1, 345, 51.0, 49.0, 35.7, 4.9,19.1 +NA,NA,a-curv-i5,2019-20,North Andover - Franklin,02110010, 193, 17.1, 371, 43.7, 56.3, 9.2, 1.1,22.6 +NA,NA,a-curv-i5,2019-20,North Andover - Kittredge,02110015, 99, 21.7, 239, 41.8, 58.2, 8.4, 3.8,18.8 +NA,NA,a-curv-i5,2019-20,North Andover - North Andover High,02110505," 1,169", 18.1," 1,387", 50.0, 50.0, 15.0, 0.9,11.7 +NA,NA,a-curv-i5,2019-20,North Andover - North Andover Middle,02110305, 739, 23.7," 1,114", 52.2, 47.8, 18.7, 0.8,14.2 +NA,NA,a-curv-i5,2019-20,North Andover - Thomson,02110020, 142, 19.8, 313, 53.0, 47.0, 28.1, 4.8,20.5 +NA,NA,a-curv-i5,2019-20,North Attleborough - Amvet Boulevard,02120007, 144, 18.2, 382, 49.7, 50.3, 11.8, 4.7,10.2 +NA,NA,a-curv-i5,2019-20,North Attleborough - Community,02120030, 137, 14.5, 291, 46.4, 53.6, 51.2, 13.1,29.6 +NA,NA,a-curv-i5,2019-20,North Attleborough - Falls,02120010, 103, 16.2, 242, 46.7, 53.3, 16.9, 4.1,14.9 +NA,NA,a-curv-i5,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 213, 19.5, 605, 46.1, 53.9, 14.2, 3.8,17.9 +NA,NA,a-curv-i5,2019-20,North Attleborough - North Attleboro High,02120505, 626, 16.4," 1,105", 48.3, 51.5, 16.4, 2.0,12 +NA,NA,a-curv-i5,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 90, 10.6, 190, 37.4, 62.6, 24.7, 23.2,58.4 +NA,NA,a-curv-i5,2019-20,North Attleborough - North Attleborough Middle,02120305, 509, 20.5," 1,112", 53.2, 46.9, 17.7, 1.9,18 +NA,NA,a-curv-i5,2019-20,North Attleborough - Roosevelt Avenue,02120015, 88, 20.3, 263, 51.7, 48.3, 11.0, 2.7,11 +NA,NA,a-curv-i5,2019-20,North Brookfield - North Brookfield Elementary,02150015, 75, 20.2, 321, 46.1, 53.9, 34.0, 0.3,24.6 +NA,NA,a-curv-i5,2019-20,North Brookfield - North Brookfield High,02150505, 97, 12.3, 226, 50.9, 49.1, 34.5, 0.0,20.4 +NA,NA,a-curv-i5,2019-20,North Middlesex - Ashby Elementary,07350010, 90, 18.8, 169, 40.8, 59.2, 23.1, 0.0,34.3 +NA,NA,a-curv-i5,2019-20,North Middlesex - Hawthorne Brook,07350030, 327, 20.8, 514, 46.1, 53.9, 20.8, 2.0,23.9 +NA,NA,a-curv-i5,2019-20,North Middlesex - Nissitissit Middle School,07350310, 325, 18.9, 531, 47.7, 52.4, 17.9, 0.2,27.1 +NA,NA,a-curv-i5,2019-20,North Middlesex - North Middlesex Regional,07350505, 464, 17.4, 816, 51.8, 48.2, 13.2, 1.2,16.7 +NA,NA,a-curv-i5,2019-20,North Middlesex - Spaulding Memorial,07350005, 209, 21.9, 450, 53.8, 46.2, 26.7, 4.2,20 +NA,NA,a-curv-i5,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 19, 7.4, 112, 36.6, 63.4, 28.6, 0.0,44.6 +NA,NA,a-curv-i5,2019-20,North Middlesex - Varnum Brook,07350035, 250, 22.0, 551, 47.7, 52.3, 20.7, 0.7,21.1 +NA,NA,a-curv-i5,2019-20,North Reading - E Ethel Little School,02170003, 186, 18.2, 349, 43.3, 56.7, 11.2, 0.0,22.4 +NA,NA,a-curv-i5,2019-20,North Reading - J Turner Hood,02170010, 196, 18.3, 336, 48.2, 51.8, 9.2, 0.6,17 +NA,NA,a-curv-i5,2019-20,North Reading - L D Batchelder,02170005, 218, 21.6, 443, 44.0, 56.0, 7.5, 0.5,14.7 +NA,NA,a-curv-i5,2019-20,North Reading - North Reading High,02170505, 322, 18.3, 739, 51.3, 48.7, 6.8, 0.7,12.5 +NA,NA,a-curv-i5,2019-20,North Reading - North Reading Middle,02170305, 376, 15.1, 539, 52.7, 47.3, 10.4, 0.4,21.3 +NA,NA,a-curv-i5,2019-20,Northampton - Bridge Street,02100005, 84, 19.0, 303, 46.2, 53.8, 40.9, 7.9,26.1 +NA,NA,a-curv-i5,2019-20,Northampton - Jackson Street,02100020, 111, 20.4, 361, 47.7, 52.4, 24.9, 5.3,18.6 +NA,NA,a-curv-i5,2019-20,Northampton - John F Kennedy Middle School,02100410, 506, 15.0, 627, 51.2, 48.2, 29.4, 3.0,22.2 +NA,NA,a-curv-i5,2019-20,Northampton - Leeds,02100025, 91, 20.1, 337, 42.7, 57.3, 30.6, 1.8,23.7 +NA,NA,a-curv-i5,2019-20,Northampton - Northampton High,02100505, 379, 17.8, 882, 50.2, 49.7, 19.3, 1.9,16.9 +NA,NA,a-curv-i5,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 72, 20.9, 252, 46.8, 52.0, 30.2, 4.0,25.4 +NA,NA,a-curv-i5,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 418, 12.2, 504, 43.9, 56.2, 34.3, 1.0,40.5 +NA,NA,a-curv-i5,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 773, 15.6," 1,404", 50.5, 49.5, 7.3, 1.4,13.8 +NA,NA,a-curv-i5,2019-20,Northborough - Fannie E Proctor,02130015, 64, 17.7, 268, 45.9, 54.1, 20.2, 7.1,19.8 +NA,NA,a-curv-i5,2019-20,Northborough - Lincoln Street,02130003, 54, 20.2, 264, 48.9, 51.1, 15.5, 6.4,23.9 +NA,NA,a-curv-i5,2019-20,Northborough - Marguerite E Peaslee,02130014, 58, 19.3, 269, 45.4, 54.7, 11.2, 5.2,22.3 +NA,NA,a-curv-i5,2019-20,Northborough - Marion E Zeh,02130020, 50, 20.4, 244, 42.2, 57.8, 11.9, 11.1,22.5 +NA,NA,a-curv-i5,2019-20,Northborough - Robert E. Melican Middle School,02130305, 345, 17.7, 553, 52.1, 47.9, 11.6, 2.7,16.5 +NA,NA,a-curv-i5,2019-20,Northbridge - Northbridge Elementary,02140005, 79, 19.5, 378, 44.2, 55.8, 34.4, 3.2,27 +NA,NA,a-curv-i5,2019-20,Northbridge - Northbridge High,02140505, 357, 15.2, 541, 46.8, 53.2, 24.2, 1.5,12.4 +NA,NA,a-curv-i5,2019-20,Northbridge - Northbridge Middle,02140305, 341, 20.4, 690, 51.0, 49.0, 28.3, 1.0,15.8 +NA,NA,a-curv-i5,2019-20,Northbridge - W Edward Balmer,02140001, 105, 21.0, 440, 50.0, 50.0, 33.0, 6.4,18 +NA,NA,a-curv-i5,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 896, 18.7," 1,281", 45.1, 54.9, 35.4, 4.1,20 +NA,NA,a-curv-i5,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 371, 15.3, 508, 40.0, 60.0, 35.0, 0.0,16.3 +NA,NA,a-curv-i5,2019-20,Norton - Henri A. Yelle,02180060, 176, 22.2, 355, 49.3, 50.7, 23.7, 2.8,17.5 +NA,NA,a-curv-i5,2019-20,Norton - J C Solmonese,02180015, 180, 20.4, 509, 50.1, 49.9, 21.6, 1.6,30.1 +NA,NA,a-curv-i5,2019-20,Norton - L G Nourse Elementary,02180010, 108, 22.6, 270, 50.0, 50.0, 25.9, 3.3,23 +NA,NA,a-curv-i5,2019-20,Norton - Norton High,02180505, 371, 16.7, 702, 49.6, 50.4, 16.5, 1.1,16 +NA,NA,a-curv-i5,2019-20,Norton - Norton Middle,02180305, 331, 17.9, 603, 51.1, 48.9, 18.2, 1.2,19.4 +NA,NA,a-curv-i5,2019-20,Norwell - Grace Farrar Cole,02190005, 112, 20.0, 493, 45.6, 54.4, 5.1, 0.4,17.9 +NA,NA,a-curv-i5,2019-20,Norwell - Norwell High,02190505, 338, 13.9, 671, 55.6, 44.4, 6.0, 0.3,12.5 +NA,NA,a-curv-i5,2019-20,Norwell - Norwell Middle School,02190405, 490, 17.1, 516, 43.0, 57.0, 5.0, 0.0,17.4 +NA,NA,a-curv-i5,2019-20,Norwell - William G Vinal,02190020, 112, 21.6, 539, 46.8, 53.3, 2.8, 0.0,16.5 +NA,NA,a-curv-i5,2019-20,Norwood - Balch,02200005, 79, 16.9, 308, 51.6, 48.4, 49.0, 34.7,23.4 +NA,NA,a-curv-i5,2019-20,Norwood - Charles J Prescott,02200025, 58, 18.9, 257, 51.0, 49.0, 17.9, 20.6,17.9 +NA,NA,a-curv-i5,2019-20,Norwood - Cornelius M Callahan,02200010, 56, 18.0, 231, 47.6, 52.4, 36.4, 19.9,26.8 +NA,NA,a-curv-i5,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 354, 18.9, 730, 50.8, 49.2, 30.4, 7.0,23.2 +NA,NA,a-curv-i5,2019-20,Norwood - F A Cleveland,02200015, 76, 19.8, 337, 43.3, 56.7, 23.4, 13.1,24 +NA,NA,a-curv-i5,2019-20,Norwood - George F. Willett,02200075, 57, 16.7, 409, 46.7, 53.3, 25.2, 18.3,24.7 +NA,NA,a-curv-i5,2019-20,Norwood - John P Oldham,02200020, 54, 21.0, 257, 53.3, 46.7, 26.9, 11.7,24.5 +NA,NA,a-curv-i5,2019-20,Norwood - Norwood High,02200505, 547, 14.5," 1,001", 50.1, 49.8, 26.5, 5.8,14.9 +NA,NA,a-curv-i5,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 245, 15.5, 437, 50.1, 49.9, 29.1, 19.2,23.8 +NA,NA,a-curv-i5,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 249, 16.7, 556, 35.6, 64.2, 17.6, 0.0,22.7 +NA,NA,a-curv-i5,2019-20,Old Rochester - Old Rochester Regional High,07400505, 342, 17.9, 746, 49.2, 50.8, 12.3, 0.0,11.7 +NA,NA,a-curv-i5,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 312, 16.6, 430, 46.3, 53.7, 15.6, 0.5,14.9 +NA,NA,a-curv-i5,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 50, 19.9, 239, 49.4, 50.6, 27.2, 3.4,22.6 +NA,NA,a-curv-i5,2019-20,Orange - Dexter Park,02230010, 133, 23.5, 305, 49.2, 50.8, 56.4, 1.3,29.2 +NA,NA,a-curv-i5,2019-20,Orange - Fisher Hill,02230015, 88, 18.6, 257, 45.1, 54.9, 69.7, 0.8,28 +NA,NA,a-curv-i5,2019-20,Orleans - Orleans Elementary,02240005, 132, 16.7, 199, 53.3, 46.7, 28.6, 9.6,19.1 +NA,NA,a-curv-i5,2019-20,Oxford - ACE Program,02260305, 23, 4.0, 18, 11.1, 88.9, 72.2, 0.0,66.7 +NA,NA,a-curv-i5,2019-20,Oxford - Alfred M Chaffee,02260010, 46, 20.2, 268, 51.9, 48.1, 34.0, 0.4,21.3 +NA,NA,a-curv-i5,2019-20,Oxford - Clara Barton,02260005, 64, 23.6, 378, 47.4, 52.7, 33.6, 1.1,17.7 +NA,NA,a-curv-i5,2019-20,Oxford - Oxford High,02260505, 259, 16.5, 554, 52.5, 47.3, 36.6, 0.0,15 +NA,NA,a-curv-i5,2019-20,Oxford - Oxford Middle,02260405, 239, 21.0, 399, 46.6, 53.4, 34.6, 0.8,13 +NA,NA,a-curv-i5,2019-20,Palmer - Old Mill Pond,02270008, 363, 16.9, 630, 50.6, 49.4, 47.9, 4.9,19.7 +NA,NA,a-curv-i5,2019-20,Palmer - Palmer High,02270505, 408, 13.8, 659, 47.3, 52.7, 44.2, 2.4,17.9 +NA,NA,a-curv-i5,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 538, 12.2, 625, 38.4, 61.0, 35.0, 0.0,28.2 +NA,NA,a-curv-i5,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 202, 14.8, 279, 56.3, 43.7, 81.0, 10.0,28 +NA,NA,a-curv-i5,2019-20,Peabody - Captain Samuel Brown,02290005, 184, 15.5, 358, 45.5, 54.5, 31.6, 7.0,34.1 +NA,NA,a-curv-i5,2019-20,Peabody - Center,02290015, 155, 22.1, 427, 51.5, 48.5, 40.1, 15.9,11 +NA,NA,a-curv-i5,2019-20,Peabody - J Henry Higgins Middle,02290305, 744, 23.1," 1,485", 49.4, 50.6, 35.2, 6.5,18.9 +NA,NA,a-curv-i5,2019-20,Peabody - John E Burke,02290007, 129, 15.7, 253, 54.9, 45.1, 18.2, 5.1,29.6 +NA,NA,a-curv-i5,2019-20,Peabody - John E. McCarthy,02290016, 170, 15.7, 378, 46.6, 53.4, 30.4, 5.8,32.8 +NA,NA,a-curv-i5,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 705, 16.1," 1,455", 47.0, 52.9, 31.4, 5.8,15.4 +NA,NA,a-curv-i5,2019-20,Peabody - South Memorial,02290035, 169, 20.3, 451, 54.3, 45.7, 22.6, 9.8,12.6 +NA,NA,a-curv-i5,2019-20,Peabody - Thomas Carroll,02290010, 220, 21.2, 585, 51.6, 48.4, 47.2, 19.3,17.8 +NA,NA,a-curv-i5,2019-20,Peabody - West Memorial,02290045, 147, 13.5, 266, 45.5, 54.5, 16.5, 1.5,20.3 +NA,NA,a-curv-i5,2019-20,Peabody - William A Welch Sr,02290027, 153, 20.4, 403, 49.1, 50.9, 58.1, 26.6,14.6 +NA,NA,a-curv-i5,2019-20,Pelham - Pelham Elementary,02300005, 47, 17.0, 125, 44.8, 55.2, 19.2, 2.4,23.2 +NA,NA,a-curv-i5,2019-20,Pembroke - Bryantville Elementary,02310003, 173, 20.6, 488, 48.0, 51.8, 20.9, 2.5,16.8 +NA,NA,a-curv-i5,2019-20,Pembroke - Hobomock Elementary,02310010, 151, 19.5, 404, 43.6, 56.2, 9.7, 2.5,14.6 +NA,NA,a-curv-i5,2019-20,Pembroke - North Pembroke Elementary,02310015, 180, 20.1, 563, 49.0, 50.8, 15.3, 2.3,18.1 +NA,NA,a-curv-i5,2019-20,Pembroke - Pembroke Community Middle School,02310305, 275, 19.3, 456, 45.2, 54.8, 13.6, 0.4,14.7 +6.277572559366755,5,a-curv-i5,2019-20,Pembroke - Pembroke High School,02310505, 379, 16.7, 812, 52.0, 47.9, 11.2, 0.5,11.1,816 +NA,NA,a-curv-i5,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 133, 14.8, 226, 47.4, 52.7, 15.0, 0.0,29.7 +NA,NA,a-curv-i5,2019-20,Pentucket - Dr John C Page School,07450015, 189, 17.6, 332, 46.4, 53.6, 7.2, 0.0,27.7 +NA,NA,a-curv-i5,2019-20,Pentucket - Elmer S Bagnall,07450005, 266, 17.6, 475, 45.7, 54.1, 11.4, 0.6,22.1 +NA,NA,a-curv-i5,2019-20,Pentucket - Helen R Donaghue School,07450010, 114, 23.2, 231, 44.6, 55.4, 15.2, 0.4,29 +NA,NA,a-curv-i5,2019-20,Pentucket - Pentucket Regional Middle,07450405, 213, 18.8, 396, 51.5, 48.5, 17.2, 0.5,22.5 +NA,NA,a-curv-i5,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 397, 15.2, 721, 45.8, 54.2, 8.9, 0.0,12.6 +NA,NA,a-curv-i5,2019-20,Petersham - Petersham Center,02340005, 24, 17.3, 131, 55.0, 45.0, 27.5, 2.3,23.7 +4.032,4.03,a-curv-i5,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 25, 20.0, 174, 38.5, 60.9, 78.2, 21.3,24.1,124 +3.5764705882352943,3.58,a-curv-i5,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 34, 27.2, 189, 47.1, 52.9, 89.4, 14.3,31.2,188 +NA,NA,a-curv-i5,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 47, 17.7, 209, 51.2, 48.8, 53.6, 62.2,12 +NA,NA,a-curv-i5,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 363, 18.3, 800, 51.4, 48.6, 38.1, 22.3,9.8 +NA,NA,a-curv-i5,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 161, 17.1, 357, 54.6, 45.4, 27.7, 20.2,15.7 +NA,NA,a-curv-i5,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 55, 15.2, 181, 56.9, 43.1, 26.5, 0.0,30.9 +NA,NA,a-curv-i5,2019-20,Pioneer Valley - Northfield Elementary,07500008, 50, 17.5, 177, 44.1, 55.9, 26.6, 0.0,24.9 +NA,NA,a-curv-i5,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 306, 12.3, 292, 51.7, 48.3, 20.2, 0.3,15.4 +NA,NA,a-curv-i5,2019-20,Pioneer Valley - Warwick Community School,07500009, 36, 6.9, 44, 45.5, 54.6, 40.9, 0.0,11.4 +NA,NA,a-curv-i5,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 316, 16.9, 537, 51.4, 48.2, 19.0, 3.4,12.5 +NA,NA,a-curv-i5,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 346, 12.5, 398, 67.6, 32.2, 31.9, 0.3,24.1 +NA,NA,a-curv-i5,2019-20,Pittsfield - Allendale,02360010, 108, 17.4, 313, 51.8, 48.2, 55.6, 5.4,10.2 +NA,NA,a-curv-i5,2019-20,Pittsfield - Crosby,02360065, 129, 13.8, 399, 41.1, 58.9, 75.4, 8.8,39.6 +NA,NA,a-curv-i5,2019-20,Pittsfield - Egremont,02360035, 123, 17.6, 442, 49.1, 50.9, 46.6, 8.1,17 +NA,NA,a-curv-i5,2019-20,Pittsfield - John T Reid Middle,02360305, 322, 15.8, 541, 47.9, 52.1, 63.8, 1.9,26.1 +NA,NA,a-curv-i5,2019-20,Pittsfield - Morningside Community School,02360055, 129, 15.8, 376, 49.2, 50.8, 78.2, 13.0,22.3 +NA,NA,a-curv-i5,2019-20,Pittsfield - Pittsfield High,02360505, 441, 12.6, 753, 49.1, 50.9, 45.3, 4.8,23.5 +NA,NA,a-curv-i5,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 74, 14.5, 193, 49.2, 50.8, 47.7, 1.6,15.5 +NA,NA,a-curv-i5,2019-20,Pittsfield - Silvio O Conte Community,02360105, 139, 15.0, 337, 50.2, 49.9, 84.3, 12.2,14.8 +NA,NA,a-curv-i5,2019-20,Pittsfield - Stearns,02360090, 68, 16.5, 230, 42.6, 57.4, 41.7, 0.0,22.2 +NA,NA,a-curv-i5,2019-20,Pittsfield - Taconic High,02360510, 470, 12.8, 811, 50.6, 49.3, 46.5, 2.5,23.7 +NA,NA,a-curv-i5,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 351, 16.4, 607, 50.7, 49.3, 50.3, 3.1,20.3 +NA,NA,a-curv-i5,2019-20,Pittsfield - Williams,02360100, 90, 15.3, 275, 47.6, 52.4, 29.8, 5.1,13.5 +NA,NA,a-curv-i5,2019-20,Plainville - Anna Ware Jackson,02380010, 80, 19.0, 428, 47.7, 52.3, 20.8, 5.1,19.6 +NA,NA,a-curv-i5,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 52, 22.4, 291, 49.8, 50.2, 19.2, 2.4,21.3 +NA,NA,a-curv-i5,2019-20,Plymouth - Cold Spring,02390005, 146, 17.5, 210, 52.4, 47.6, 40.0, 11.9,16.7 +NA,NA,a-curv-i5,2019-20,Plymouth - Federal Furnace School,02390011, 253, 16.9, 354, 49.7, 50.3, 31.6, 0.0,23.2 +NA,NA,a-curv-i5,2019-20,Plymouth - Hedge,02390010, 134, 16.9, 186, 44.1, 55.9, 61.3, 24.2,18.8 +NA,NA,a-curv-i5,2019-20,Plymouth - Indian Brook,02390012, 343, 19.3, 545, 50.1, 49.9, 19.6, 0.0,18 +NA,NA,a-curv-i5,2019-20,Plymouth - Manomet Elementary,02390015, 182, 19.3, 287, 48.8, 51.2, 26.8, 0.0,19.2 +NA,NA,a-curv-i5,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 338, 21.1, 583, 48.2, 51.8, 24.9, 5.5,12 +NA,NA,a-curv-i5,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 578, 20.4," 1,066", 50.2, 49.8, 31.1, 4.4,21 +NA,NA,a-curv-i5,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 21, 10.1, 211, 40.3, 59.7, 32.7, 3.8,56.9 +NA,NA,a-curv-i5,2019-20,Plymouth - Plymouth North High,02390505, 926, 15.1," 1,225", 48.4, 51.6, 23.4, 3.6,17.7 +NA,NA,a-curv-i5,2019-20,Plymouth - Plymouth South High,02390515, 931, 13.6," 1,051", 46.7, 53.3, 17.4, 0.0,21.1 +NA,NA,a-curv-i5,2019-20,Plymouth - Plymouth South Middle,02390305, 374, 19.8, 713, 47.1, 52.9, 20.6, 0.1,22.3 +NA,NA,a-curv-i5,2019-20,Plymouth - South Elementary,02390046, 440, 17.3, 628, 44.8, 55.3, 21.0, 0.2,19.3 +NA,NA,a-curv-i5,2019-20,Plymouth - West Elementary,02390047, 320, 13.2, 347, 47.0, 53.0, 27.7, 1.4,19 +NA,NA,a-curv-i5,2019-20,Plympton - Dennett Elementary,02400010, 104, 15.4, 216, 47.2, 52.8, 12.5, 0.5,15.7 +NA,NA,a-curv-i5,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 461, 20.8," 1,112", 49.3, 50.7, 45.9, 13.9,16 +NA,NA,a-curv-i5,2019-20,Provincetown - Provincetown Schools,02420020, 63, 12.6, 137, 54.7, 45.3, 41.6, 24.8,20.4 +NA,NA,a-curv-i5,2019-20,Quabbin - Hardwick Elementary,07530005, 67, 19.2, 222, 41.9, 58.1, 46.0, 0.0,23 +NA,NA,a-curv-i5,2019-20,Quabbin - Hubbardston Center,07530010, 88, 21.5, 303, 49.8, 50.2, 18.8, 0.3,12.2 +NA,NA,a-curv-i5,2019-20,Quabbin - New Braintree Grade,07530020, 10, 23.9, 48, 47.9, 52.1, 20.8, 0.0,25 +NA,NA,a-curv-i5,2019-20,Quabbin - Oakham Center,07530025, 47, 20.8, 146, 57.5, 42.5, 18.5, 1.4,17.8 +6.891071428571427,5,a-curv-i5,2019-20,Quabbin - Quabbin Regional High School,07530505, 448, 19.1, 629, 52.0, 48.0, 20.5, 0.0,14.9,621 +NA,NA,a-curv-i5,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 143, 18.5, 364, 50.8, 48.9, 30.2, 0.6,18.4 +NA,NA,a-curv-i5,2019-20,Quabbin - Ruggles Lane,07530030, 132, 20.2, 448, 45.3, 54.7, 33.9, 0.2,24.8 +NA,NA,a-curv-i5,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 202, 13.8, 402, 49.5, 50.3, 33.6, 0.5,11.7 +NA,NA,a-curv-i5,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 130, 16.3, 185, 46.0, 54.1, 35.1, 0.5,17.8 +NA,NA,a-curv-i5,2019-20,Quaboag Regional - Warren Elementary,07780005, 138, 21.5, 435, 49.2, 50.8, 51.0, 2.5,22.8 +NA,NA,a-curv-i5,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 107, 19.0, 289, 46.7, 53.3, 36.0, 1.4,18.3 +NA,NA,a-curv-i5,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 42, 9.6, 202, 40.6, 59.4, 39.6, 0.0,66.3 +NA,NA,a-curv-i5,2019-20,Quincy - Atherton Hough,02430040, 144, 14.6, 282, 44.7, 55.3, 30.5, 14.2,36.2 +NA,NA,a-curv-i5,2019-20,Quincy - Atlantic Middle,02430305, 296, 21.5, 573, 47.5, 52.5, 34.0, 12.6,16.9 +NA,NA,a-curv-i5,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 152, 18.5, 362, 50.6, 49.5, 35.6, 18.2,8.3 +NA,NA,a-curv-i5,2019-20,Quincy - Broad Meadows Middle,02430310, 251, 17.1, 353, 47.0, 53.0, 43.3, 7.4,34.6 +NA,NA,a-curv-i5,2019-20,Quincy - Central Middle,02430315, 374, 20.3, 625, 52.0, 48.0, 26.9, 5.3,12.2 +NA,NA,a-curv-i5,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 163, 17.1, 334, 49.1, 50.9, 26.4, 16.2,12.9 +NA,NA,a-curv-i5,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 246, 16.2, 525, 53.9, 46.1, 41.0, 32.8,10.1 +NA,NA,a-curv-i5,2019-20,Quincy - Francis W Parker,02430075, 173, 13.9, 316, 41.1, 58.9, 45.3, 38.6,16.5 +NA,NA,a-curv-i5,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 225, 17.7, 525, 49.9, 50.1, 45.9, 34.9,11.2 +NA,NA,a-curv-i5,2019-20,Quincy - Merrymount,02430060, 155, 16.8, 350, 47.1, 52.9, 20.3, 17.4,15.4 +NA,NA,a-curv-i5,2019-20,Quincy - Montclair,02430065, 184, 18.6, 442, 51.6, 48.4, 31.0, 39.6,9.3 +NA,NA,a-curv-i5,2019-20,Quincy - North Quincy High,02430510, 569, 16.8," 1,269", 48.4, 51.5, 31.8, 8.8,14.1 +NA,NA,a-curv-i5,2019-20,Quincy - Point Webster Middle,02430325, 282, 15.7, 441, 46.3, 53.7, 41.3, 10.4,20.4 +NA,NA,a-curv-i5,2019-20,Quincy - Quincy High,02430505, 814, 15.7," 1,536", 49.3, 50.7, 39.8, 10.2,16.6 +NA,NA,a-curv-i5,2019-20,Quincy - Snug Harbor Community School,02430090, 281, 9.3, 431, 43.2, 56.8, 60.3, 19.5,41.3 +NA,NA,a-curv-i5,2019-20,Quincy - South West Middle School,02430320, 319, 14.5, 391, 40.7, 59.3, 54.5, 13.6,24 +NA,NA,a-curv-i5,2019-20,Quincy - Squantum,02430095, 222, 12.7, 363, 48.5, 51.5, 24.0, 12.1,26.5 +NA,NA,a-curv-i5,2019-20,Quincy - Wollaston School,02430110, 160, 17.1, 352, 50.9, 49.2, 27.8, 34.1,8 +NA,NA,a-curv-i5,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 637, 14.0, 640, 46.9, 53.0, 42.7, 0.6,21.4 +NA,NA,a-curv-i5,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 87, 22.2, 306, 44.1, 55.9, 53.3, 22.2,20.6 +NA,NA,a-curv-i5,2019-20,Randolph - J F Kennedy Elementary,02440018, 174, 14.7, 468, 45.1, 54.9, 59.4, 26.3,31.6 +NA,NA,a-curv-i5,2019-20,Randolph - Margaret L Donovan,02440015, 134, 25.2, 461, 48.8, 51.2, 50.1, 22.1,12.2 +NA,NA,a-curv-i5,2019-20,Randolph - Martin E Young Elementary,02440040, 122, 15.7, 277, 47.3, 52.7, 56.0, 24.9,19.1 +NA,NA,a-curv-i5,2019-20,Randolph - Randolph Community Middle,02440410, 301, 20.8, 686, 46.8, 53.2, 48.5, 9.8,23 +NA,NA,a-curv-i5,2019-20,Randolph - Randolph High,02440505, 329, 15.7, 686, 42.4, 57.6, 49.3, 14.6,17.8 +NA,NA,a-curv-i5,2019-20,Reading - Alice M Barrows,02460002, 85, 20.4, 387, 48.8, 51.2, 5.7, 2.3,14.7 +NA,NA,a-curv-i5,2019-20,Reading - Arthur W Coolidge Middle,02460305, 207, 19.9, 426, 46.2, 53.8, 5.9, 0.2,24.7 +NA,NA,a-curv-i5,2019-20,Reading - Birch Meadow,02460005, 69, 21.3, 383, 45.2, 54.8, 6.0, 1.0,18.5 +NA,NA,a-curv-i5,2019-20,Reading - J Warren Killam,02460017, 92, 19.7, 415, 44.8, 55.2, 6.8, 2.2,15.2 +NA,NA,a-curv-i5,2019-20,Reading - Joshua Eaton,02460010, 92, 20.3, 401, 50.4, 49.6, 8.5, 4.5,14.7 +NA,NA,a-curv-i5,2019-20,Reading - RISE PreSchool,02460001, 27, 14.0, 127, 36.2, 63.8, 11.8, 3.9,44.9 +NA,NA,a-curv-i5,2019-20,Reading - Reading Memorial High,02460505, 594, 17.3," 1,229", 49.9, 50.0, 7.2, 0.3,17.5 +NA,NA,a-curv-i5,2019-20,Reading - Walter S Parker Middle,02460310, 266, 19.2, 502, 48.8, 51.2, 10.6, 1.2,15.5 +NA,NA,a-curv-i5,2019-20,Reading - Wood End Elementary School,02460020, 63, 21.3, 297, 49.2, 50.8, 9.1, 0.7,15.5 +NA,NA,a-curv-i5,2019-20,Revere - A. C. Whelan Elementary School,02480003, 391, 20.3, 748, 46.7, 53.3, 49.1, 23.3,17.1 +NA,NA,a-curv-i5,2019-20,Revere - Abraham Lincoln,02480025, 281, 16.4, 630, 47.8, 52.2, 49.1, 35.1,22.7 +NA,NA,a-curv-i5,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 166, 16.0, 351, 40.7, 59.3, 53.3, 33.9,27.4 +NA,NA,a-curv-i5,2019-20,Revere - Garfield Elementary School,02480056, 314, 18.6, 739, 47.9, 52.0, 60.9, 42.9,14.8 +NA,NA,a-curv-i5,2019-20,Revere - Garfield Middle School,02480057, 378, 20.9, 612, 48.4, 51.6, 52.0, 19.4,9 +NA,NA,a-curv-i5,2019-20,Revere - Paul Revere,02480050, 184, 22.3, 476, 51.5, 48.5, 51.3, 33.2,18.5 +NA,NA,a-curv-i5,2019-20,Revere - Revere High,02480505, 866, 19.5," 2,037", 49.3, 50.6, 48.3, 17.8,10.8 +NA,NA,a-curv-i5,2019-20,Revere - Rumney Marsh Academy,02480014, 298, 20.4, 619, 47.2, 52.8, 50.6, 4.9,21.2 +NA,NA,a-curv-i5,2019-20,Revere - Seacoast School,02480520, 143, 8.6, 101, 37.6, 61.4, 64.4, 14.9,21.8 +NA,NA,a-curv-i5,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 300, 19.0, 700, 51.4, 48.6, 53.1, 35.9,15.9 +NA,NA,a-curv-i5,2019-20,Revere - Susan B. Anthony Middle School,02480305, 242, 23.2, 623, 54.6, 45.4, 53.9, 17.8,11.2 +NA,NA,a-curv-i5,2019-20,Richmond - Richmond Consolidated,02490005, 120, 16.6, 172, 47.7, 52.3, 28.5, 0.0,17.4 +NA,NA,a-curv-i5,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 294, 18.7, 645, 51.0, 49.0, 13.0, 0.5,19.8 +NA,NA,a-curv-i5,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 110, 15.9, 288, 55.9, 43.8, 6.3, 0.0,17 +NA,NA,a-curv-i5,2019-20,Rochester - Rochester Memorial,02500005, 240, 19.4, 512, 47.5, 52.5, 17.0, 0.2,20.1 +NA,NA,a-curv-i5,2019-20,Rockland - Jefferson Elementary School,02510060, 135, 16.8, 277, 50.5, 49.5, 43.3, 11.9,14.4 +NA,NA,a-curv-i5,2019-20,Rockland - John W Rogers Middle,02510305, 380, 21.9, 758, 49.9, 50.1, 39.6, 5.7,17.3 +NA,NA,a-curv-i5,2019-20,Rockland - Memorial Park,02510020, 132, 18.5, 297, 51.5, 48.5, 40.1, 16.5,19.9 +NA,NA,a-curv-i5,2019-20,Rockland - R Stewart Esten,02510025, 146, 18.4, 325, 44.6, 55.4, 38.5, 9.5,16.9 +NA,NA,a-curv-i5,2019-20,Rockland - Rockland Senior High,02510505, 313, 15.5, 691, 48.2, 51.8, 34.6, 5.6,17.1 +NA,NA,a-curv-i5,2019-20,Rockport - Rockport Elementary,02520005, 122, 18.0, 374, 48.7, 51.3, 22.2, 1.1,19.3 +NA,NA,a-curv-i5,2019-20,Rockport - Rockport High,02520510, 191, 11.2, 261, 47.5, 52.5, 14.9, 1.2,19.9 +NA,NA,a-curv-i5,2019-20,Rockport - Rockport Middle,02520305, 192, 15.5, 216, 46.3, 53.7, 23.6, 0.5,23.2 +NA,NA,a-curv-i5,2019-20,Rowe - Rowe Elementary,02530005, 25, 15.0, 73, 45.2, 54.8, 38.4, 0.0,32.9 +NA,NA,a-curv-i5,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 491, 26.5," 1,572", 50.5, 49.6, 42.9, 7.2,15 +NA,NA,a-curv-i5,2019-20,Salem - Bates,02580003, 159, 18.4, 404, 48.8, 51.2, 47.8, 12.9,20.8 +NA,NA,a-curv-i5,2019-20,Salem - Carlton,02580015, 107, 18.4, 274, 50.4, 49.6, 42.3, 8.0,25.6 +NA,NA,a-curv-i5,2019-20,Salem - Collins Middle,02580305, 335, 20.1, 671, 47.8, 52.2, 59.6, 11.0,23.6 +NA,NA,a-curv-i5,2019-20,Salem - Horace Mann Laboratory,02580030, 117, 18.6, 304, 49.7, 50.3, 58.9, 26.3,17.1 +NA,NA,a-curv-i5,2019-20,Salem - New Liberty Innovation School,02580510, 64, 20.4, 85, 52.9, 47.1, 67.1, 11.8,35.3 +NA,NA,a-curv-i5,2019-20,Salem - Salem Early Childhood,02580001, 21, 8.0, 105, 27.6, 72.4, 48.6, 5.7,63.8 +NA,NA,a-curv-i5,2019-20,Salem - Salem High,02580505, 598, 13.5, 903, 45.3, 54.7, 49.3, 13.3,23.2 +7.82528735632184,5,a-curv-i5,2019-20,Salem - Salem Prep High School,02580515, 87, 6.5, 22, 36.4, 63.6, 72.7, 4.6,100,19 +NA,NA,a-curv-i5,2019-20,Salem - Saltonstall School,02580050, 240, 12.9, 400, 52.0, 48.0, 41.0, 9.5,20.5 +NA,NA,a-curv-i5,2019-20,Salem - Witchcraft Heights,02580070, 212, 18.7, 540, 50.9, 49.1, 49.4, 19.4,21.5 +NA,NA,a-curv-i5,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 234, 19.4, 490, 51.2, 48.6, 35.3, 4.3,16.7 +NA,NA,a-curv-i5,2019-20,Sandwich - Forestdale School,02610002, 257, 19.0, 605, 52.1, 47.9, 21.2, 2.2,15.7 +NA,NA,a-curv-i5,2019-20,Sandwich - Oak Ridge,02610025, 406, 19.6, 781, 49.4, 50.6, 18.4, 1.5,23.1 +NA,NA,a-curv-i5,2019-20,Sandwich - Sandwich High,02610505, 387, 15.2, 655, 51.2, 48.9, 14.5, 0.5,16.5 +NA,NA,a-curv-i5,2019-20,Sandwich - Sandwich STEM Academy,02610305, 211, 19.1, 451, 50.3, 49.5, 18.0, 0.0,18 +NA,NA,a-curv-i5,2019-20,Saugus - Belmonte Saugus Middle,02620305, 335, 17.6, 641, 49.1, 50.9, 34.5, 4.7,18.6 +NA,NA,a-curv-i5,2019-20,Saugus - Douglas Waybright,02620067, 77, 20.1, 184, 44.0, 56.0, 39.1, 3.8,16.3 +NA,NA,a-curv-i5,2019-20,Saugus - Lynnhurst,02620040, 104, 21.9, 297, 46.8, 53.2, 33.0, 4.4,14.5 +NA,NA,a-curv-i5,2019-20,Saugus - Oaklandvale,02620050, 96, 21.2, 252, 48.4, 51.6, 50.8, 21.4,13.1 +NA,NA,a-curv-i5,2019-20,Saugus - Saugus High,02620505, 359, 15.6, 687, 47.7, 52.1, 28.2, 5.0,13.4 +NA,NA,a-curv-i5,2019-20,Saugus - Veterans Memorial,02620065, 271, 15.9, 558, 47.7, 52.3, 34.6, 5.7,27.1 +NA,NA,a-curv-i5,2019-20,Savoy - Emma L Miller Elementary School,02630010, 61, 8.1, 58, 46.6, 53.5, 44.8, 0.0,19 +NA,NA,a-curv-i5,2019-20,Scituate - Cushing Elementary,02640007, 151, 19.0, 343, 49.3, 50.7, 9.3, 0.0,9.9 +NA,NA,a-curv-i5,2019-20,Scituate - Gates Middle School,02640305, 394, 20.9, 662, 48.8, 51.2, 11.9, 0.3,15 +NA,NA,a-curv-i5,2019-20,Scituate - Hatherly Elementary,02640010, 125, 18.0, 269, 44.6, 55.4, 7.1, 0.4,15.6 +NA,NA,a-curv-i5,2019-20,Scituate - Jenkins Elementary School,02640015, 150, 19.2, 343, 50.2, 49.9, 12.2, 0.3,14 +6.410212765957446,5,a-curv-i5,2019-20,Scituate - Scituate High School,02640505, 470, 18.0, 933, 51.6, 48.3, 10.5, 0.0,11.9,934 +NA,NA,a-curv-i5,2019-20,Scituate - Wampatuck Elementary,02640020, 161, 19.7, 441, 48.5, 51.5, 8.8, 1.6,14.3 +NA,NA,a-curv-i5,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 350, 14.2, 491, 47.3, 52.6, 15.9, 1.8,16.9 +NA,NA,a-curv-i5,2019-20,Seekonk - George R Martin,02650007, 111, 22.7, 534, 53.6, 46.4, 17.0, 5.8,18.4 +NA,NA,a-curv-i5,2019-20,Seekonk - Mildred Aitken School,02650015, 97, 22.7, 466, 47.0, 53.0, 10.5, 5.2,17 +NA,NA,a-curv-i5,2019-20,Seekonk - Seekonk High,02650505, 307, 17.2, 602, 49.7, 50.3, 12.1, 0.8,17.6 +NA,NA,a-curv-i5,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 234, 24.7, 666, 51.5, 48.5, 64.0, 27.0,13.7 +NA,NA,a-curv-i5,2019-20,Sharon - Cottage Street,02660005, 175, 18.0, 486, 49.2, 50.8, 5.6, 8.6,14.4 +NA,NA,a-curv-i5,2019-20,Sharon - East Elementary,02660010, 168, 19.9, 532, 50.0, 50.0, 9.6, 7.1,13 +NA,NA,a-curv-i5,2019-20,Sharon - Heights Elementary,02660015, 169, 20.5, 554, 50.4, 49.5, 7.2, 5.2,15.3 +NA,NA,a-curv-i5,2019-20,Sharon - Sharon Early Childhood Center,02660001, 4, 14.8, 57, 36.8, 63.2, 22.8, 3.5,47.4 +NA,NA,a-curv-i5,2019-20,Sharon - Sharon High,02660505, 556, 15.0," 1,129", 47.3, 52.6, 11.3, 1.0,11.1 +NA,NA,a-curv-i5,2019-20,Sharon - Sharon Middle,02660305, 585, 20.4, 880, 49.2, 50.8, 9.0, 2.4,15.1 +6.626865671641791,5,a-curv-i5,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 737, 15.1," 1,260", 40.4, 59.6, 14.0, 0.0,26.6,1265 +NA,NA,a-curv-i5,2019-20,Sherborn - Pine Hill,02690010, 173, 19.8, 404, 47.3, 52.7, 2.2, 3.2,16.8 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Beal School,02710005, 68, 19.8, 313, 47.9, 52.1, 12.5, 7.0,16 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Calvin Coolidge,02710015, 78, 22.3, 414, 50.0, 50.0, 23.9, 6.5,15.2 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Floral Street School,02710020, 145, 22.6, 714, 46.8, 53.2, 12.2, 5.0,13.7 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Oak Middle School,02710030, 516, 22.0," 1,006", 47.9, 52.1, 13.1, 2.9,13.8 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Parker Road Preschool,02710040, 20, 12.7, 226, 41.2, 58.9, 16.4, 5.8,35.8 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Sherwood Middle School,02710305, 594, 23.9," 1,017", 50.3, 49.7, 11.2, 2.5,16.3 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 992, 17.3," 1,907", 52.7, 47.3, 11.8, 2.3,12.1 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Spring Street,02710035, 71, 21.1, 350, 48.6, 51.4, 4.9, 1.1,13.1 +NA,NA,a-curv-i5,2019-20,Shrewsbury - Walter J Paton,02710025, 72, 21.8, 370, 51.9, 48.1, 9.2, 0.5,15.1 +NA,NA,a-curv-i5,2019-20,Shutesbury - Shutesbury Elementary,02720005, 55, 15.8, 127, 59.1, 40.9, 35.4, 0.0,18.9 +NA,NA,a-curv-i5,2019-20,Silver Lake - Silver Lake Regional High,07600505, 488, 18.3," 1,261", 46.8, 53.2, 16.0, 0.9,17.6 +NA,NA,a-curv-i5,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 319, 16.4, 511, 49.9, 50.1, 19.6, 0.4,16.4 +NA,NA,a-curv-i5,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 220, 13.3, 361, 44.9, 54.9, 36.3, 0.8,24.1 +NA,NA,a-curv-i5,2019-20,Somerset - Chace Street,02730005, 176, 21.8, 349, 45.3, 54.7, 25.5, 1.4,20.9 +NA,NA,a-curv-i5,2019-20,Somerset - North Elementary,02730008, 270, 17.8, 497, 47.7, 52.3, 23.5, 1.4,19.9 +NA,NA,a-curv-i5,2019-20,Somerset - Somerset Middle School,02730305, 318, 24.3, 652, 50.0, 50.0, 21.5, 0.3,15.6 +NA,NA,a-curv-i5,2019-20,Somerset - South,02730015, 132, 22.1, 266, 51.9, 48.1, 29.7, 1.9,16.9 +6.552380952380952,5,a-curv-i5,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 567, 15.2," 1,033", 48.8, 51.2, 15.6, 0.2,12.5,1026 +NA,NA,a-curv-i5,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 183, 20.3, 626, 49.5, 50.5, 39.1, 31.6,9.7 +NA,NA,a-curv-i5,2019-20,Somerville - Arthur D Healey,02740075, 176, 16.6, 483, 50.3, 49.5, 59.6, 27.5,24 +NA,NA,a-curv-i5,2019-20,Somerville - Benjamin G Brown,02740015, 64, 20.2, 247, 56.3, 43.7, 13.8, 0.8,11.3 +NA,NA,a-curv-i5,2019-20,Somerville - Capuano Early Childhood Center,02740005, 37, 14.5, 302, 46.0, 54.0, 34.4, 36.4,24.2 +NA,NA,a-curv-i5,2019-20,Somerville - E Somerville Community,02740111, 233, 19.7, 721, 46.2, 53.8, 49.5, 34.1,15.5 +7.76,5,a-curv-i5,2019-20,Somerville - Full Circle High School,02740510, 180, 7.7, 60, 30.0, 70.0, 71.7, 5.0,68.3,54 +NA,NA,a-curv-i5,2019-20,Somerville - John F Kennedy,02740083, 168, 17.3, 440, 45.2, 54.8, 27.1, 3.9,22.5 +NA,NA,a-curv-i5,2019-20,Somerville - Next Wave Junior High,02740410, 79, 4.5, 19, 5.3, 94.7, 79.0, 10.5,68.4 +NA,NA,a-curv-i5,2019-20,Somerville - Somerville High,02740505, 611, 15.3," 1,235", 47.0, 52.6, 46.4, 15.0,15.7 +NA,NA,a-curv-i5,2019-20,Somerville - West Somerville Neighborhood,02740115, 117, 19.7, 380, 49.2, 50.5, 35.8, 4.7,21.8 +NA,NA,a-curv-i5,2019-20,Somerville - Winter Hill Community,02740120, 186, 14.3, 434, 44.9, 54.8, 53.2, 38.0,27.2 +NA,NA,a-curv-i5,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 301, 16.9, 570, 49.8, 50.2, 28.3, 3.2,21.2 +NA,NA,a-curv-i5,2019-20,South Hadley - Mosier,02780020, 89, 22.0, 418, 49.8, 50.2, 31.6, 6.5,19.4 +NA,NA,a-curv-i5,2019-20,South Hadley - Plains Elementary,02780015, 52, 17.1, 366, 50.3, 49.7, 28.4, 6.3,25.1 +NA,NA,a-curv-i5,2019-20,South Hadley - South Hadley High,02780505, 300, 14.3, 569, 52.2, 47.6, 26.7, 2.6,15.3 +6.711290322580645,5,a-curv-i5,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 496, 13.9, 780, 41.0, 59.0, 49.5, 16.0,41.9,799 +NA,NA,a-curv-i5,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 505, 17.9," 1,003", 48.4, 51.4, 23.1, 10.6,18.1 +NA,NA,a-curv-i5,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 415, 15.6, 636, 31.0, 69.0, 23.3, 0.8,28.3 +NA,NA,a-curv-i5,2019-20,Southampton - William E Norris,02750005, 178, 17.7, 489, 50.3, 49.7, 13.3, 2.0,22.1 +NA,NA,a-curv-i5,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 63, 17.4, 259, 51.4, 48.7, 6.2, 8.9,14.3 +NA,NA,a-curv-i5,2019-20,Southborough - Margaret A Neary,02760020, 60, 20.8, 269, 48.0, 52.0, 4.8, 3.4,14.5 +NA,NA,a-curv-i5,2019-20,Southborough - Mary E Finn School,02760008, 70, 16.8, 373, 42.1, 57.9, 7.2, 15.0,23.3 +NA,NA,a-curv-i5,2019-20,Southborough - P Brent Trottier,02760305, 315, 13.4, 414, 47.6, 52.4, 7.3, 3.1,14.5 +NA,NA,a-curv-i5,2019-20,Southbridge - Charlton Street,02770005, 144, 17.1, 274, 48.9, 51.1, 74.8, 21.2,22.3 +NA,NA,a-curv-i5,2019-20,Southbridge - Eastford Road,02770010, 86, 19.3, 391, 49.1, 50.9, 74.4, 5.9,21 +NA,NA,a-curv-i5,2019-20,Southbridge - Southbridge Academy,02770525, 59, 7.9, 40, 32.5, 67.5, 92.5, 15.0,82.5 +5.8,5,a-curv-i5,2019-20,Southbridge - Southbridge High School,02770515, 164, 19.0, 457, 46.6, 53.4, 68.5, 19.0,17.1,451 +NA,NA,a-curv-i5,2019-20,Southbridge - Southbridge Middle School,02770315, 218, 20.7, 499, 49.3, 50.7, 69.7, 21.8,18.6 +NA,NA,a-curv-i5,2019-20,Southbridge - West Street,02770020, 179, 16.4, 312, 48.7, 51.3, 74.0, 20.8,17.6 +NA,NA,a-curv-i5,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 807, 15.5," 1,445", 50.9, 49.0, 35.9, 2.4,13.5 +NA,NA,a-curv-i5,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 271, 11.4, 349, 50.7, 48.7, 32.1, 1.2,21.8 +NA,NA,a-curv-i5,2019-20,Southern Berkshire - New Marlborough Central,07650018, 68, 11.8, 74, 46.0, 54.1, 21.6, 0.0,8.1 +NA,NA,a-curv-i5,2019-20,Southern Berkshire - South Egremont,07650030, 11, 9.0, 9, 66.7, 33.3, 0.0, 0.0,0 +NA,NA,a-curv-i5,2019-20,Southern Berkshire - Undermountain,07650035, 170, 15.8, 247, 47.0, 53.0, 39.3, 4.9,15 +7.0709939148073016,5,a-curv-i5,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 986, 14.0," 1,152", 41.8, 58.3, 23.6, 0.4,12.8,1145 +NA,NA,a-curv-i5,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 198, 21.8, 473, 49.9, 50.1, 29.8, 4.7,16.5 +NA,NA,a-curv-i5,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 407, 13.5, 678, 50.4, 49.6, 20.2, 0.9,16.2 +NA,NA,a-curv-i5,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 175, 16.2, 351, 46.7, 53.3, 29.1, 5.7,18.8 +NA,NA,a-curv-i5,2019-20,Spencer-E Brookfield - David Prouty High,07670505, 246, 13.2, 280, 47.5, 52.5, 38.6, 3.9,20 +NA,NA,a-curv-i5,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 18.8, 256, 48.1, 52.0, 32.0, 2.3,26.2 +NA,NA,a-curv-i5,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 188, 18.2, 458, 45.6, 54.4, 42.6, 2.6,21 +NA,NA,a-curv-i5,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 92, 19.4, 446, 46.4, 53.4, 41.9, 6.5,21.5 +NA,NA,a-curv-i5,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 228, 17.6, 427, 56.2, 43.8, 38.6, 4.7,8.9 +NA,NA,a-curv-i5,2019-20,Springfield - Alice B Beal Elementary,02810175, 168, 20.1, 263, 51.7, 48.3, 78.0, 17.1,13.7 +NA,NA,a-curv-i5,2019-20,Springfield - Arthur T Talmadge,02810165, 180, 16.8, 242, 45.0, 55.0, 83.1, 7.0,28.5 +NA,NA,a-curv-i5,2019-20,Springfield - Balliet Middle School,02810360, 44, 7.3, 45, 24.4, 75.6, 93.3, 13.3,37.8 +NA,NA,a-curv-i5,2019-20,Springfield - Brightwood,02810025, 187, 21.9, 377, 49.1, 50.9, 92.8, 24.7,26.8 +NA,NA,a-curv-i5,2019-20,Springfield - Chestnut Academy,02810365, 171, 15.6, 349, 44.1, 55.9, 94.3, 21.5,29.8 +NA,NA,a-curv-i5,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 153, 17.6, 313, 51.8, 48.2, 70.6, 5.8,17.6 +NA,NA,a-curv-i5,2019-20,Springfield - Conservatory of the Arts,02810475, 211, 11.9, 324, 70.4, 29.6, 79.9, 10.8,21.6 +NA,NA,a-curv-i5,2019-20,Springfield - Daniel B Brunton,02810035, 230, 22.8, 438, 52.1, 48.0, 80.8, 12.6,19.2 +NA,NA,a-curv-i5,2019-20,Springfield - Early Childhood Education Center,02810001, 23, 8.7, 192, 41.2, 58.9, 82.8, 19.8,63 +NA,NA,a-curv-i5,2019-20,Springfield - Edward P. Boland School,02810010, 398, 16.3, 725, 40.1, 59.9, 85.8, 27.2,38.6 +NA,NA,a-curv-i5,2019-20,Springfield - Elias Brookings,02810030, 201, 17.5, 330, 46.7, 53.3, 88.2, 19.1,36.4 +NA,NA,a-curv-i5,2019-20,Springfield - Forest Park Middle,02810325, 427, 14.0, 741, 46.3, 53.7, 84.1, 18.8,26.2 +NA,NA,a-curv-i5,2019-20,Springfield - Frank H Freedman,02810075, 168, 20.7, 283, 48.4, 51.6, 76.3, 8.8,20.9 +NA,NA,a-curv-i5,2019-20,Springfield - Frederick Harris,02810080, 354, 20.6, 651, 49.2, 50.8, 73.7, 12.8,25.8 +NA,NA,a-curv-i5,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 3, 12.3, 32, 81.3, 18.8, 81.3, 12.5,15.6 +NA,NA,a-curv-i5,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 3, 6.3, 14, 64.3, 35.7, 78.6, 0.0,14.3 +NA,NA,a-curv-i5,2019-20,Springfield - German Gerena Community School,02810195, 446, 16.9, 692, 49.6, 50.4, 85.8, 20.5,24.1 +NA,NA,a-curv-i5,2019-20,Springfield - Glenwood,02810065, 180, 18.9, 261, 45.2, 54.8, 79.3, 15.3,24.5 +NA,NA,a-curv-i5,2019-20,Springfield - Glickman Elementary,02810068, 226, 18.8, 328, 43.6, 56.4, 79.9, 18.6,40.2 +6.496054888507719,5,a-curv-i5,2019-20,Springfield - High School Of Commerce,02810510, 583, 16.8," 1,090", 49.0, 50.9, 81.5, 21.5,23.4,1096 +NA,NA,a-curv-i5,2019-20,Springfield - Hiram L Dorman,02810050, 181, 19.4, 265, 50.2, 49.8, 84.5, 17.4,24.9 +NA,NA,a-curv-i5,2019-20,Springfield - Homer Street,02810085, 245, 19.3, 404, 45.5, 54.5, 87.6, 17.3,19.8 +NA,NA,a-curv-i5,2019-20,Springfield - Impact Prep at Chestnut,02810366, 452, 15.5, 408, 47.3, 52.7, 91.9, 22.8,26.2 +NA,NA,a-curv-i5,2019-20,Springfield - Indian Orchard Elementary,02810100, 340, 20.3, 640, 46.3, 53.8, 84.1, 15.0,26.1 +NA,NA,a-curv-i5,2019-20,Springfield - John F Kennedy Middle,02810328, 294, 16.6, 505, 46.3, 53.7, 84.0, 15.6,26.9 +NA,NA,a-curv-i5,2019-20,Springfield - John J Duggan Middle,02810320, 654, 11.9, 797, 47.7, 52.3, 72.7, 9.0,20.5 +NA,NA,a-curv-i5,2019-20,Springfield - Kensington International School,02810110, 155, 20.7, 292, 51.7, 48.3, 90.8, 21.6,19.2 +NA,NA,a-curv-i5,2019-20,Springfield - Liberty,02810115, 168, 21.2, 278, 51.8, 48.2, 78.4, 20.9,19.1 +NA,NA,a-curv-i5,2019-20,Springfield - Liberty Preparatory Academy,02810560, 21, 4.3, 19, 5.3, 94.7, 79.0, 5.3,10.5 +NA,NA,a-curv-i5,2019-20,Springfield - Lincoln,02810120, 227, 23.3, 409, 53.1, 46.9, 89.2, 30.6,14.2 +NA,NA,a-curv-i5,2019-20,Springfield - M Marcus Kiley Middle,02810330, 435, 17.6, 768, 45.4, 54.6, 82.3, 15.2,26 +NA,NA,a-curv-i5,2019-20,Springfield - Margaret C Ells,02810060, 27, 9.6, 260, 45.4, 54.6, 71.9, 15.8,54.2 +NA,NA,a-curv-i5,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 176, 21.2, 342, 48.3, 51.5, 69.0, 10.8,19.3 +NA,NA,a-curv-i5,2019-20,Springfield - Mary M Lynch,02810140, 165, 19.4, 250, 53.2, 46.8, 84.0, 6.4,14.8 +NA,NA,a-curv-i5,2019-20,Springfield - Mary M Walsh,02810155, 210, 16.3, 269, 50.2, 49.8, 85.5, 16.0,23.1 +NA,NA,a-curv-i5,2019-20,Springfield - Mary O Pottenger,02810145, 231, 24.8, 491, 51.3, 48.7, 77.8, 15.7,18.5 +NA,NA,a-curv-i5,2019-20,Springfield - Milton Bradley School,02810023, 366, 15.8, 527, 45.7, 54.3, 93.2, 24.5,28.1 +NA,NA,a-curv-i5,2019-20,Springfield - Rebecca M Johnson,02810055, 446, 19.1, 774, 46.6, 53.4, 87.7, 17.4,30.8 +NA,NA,a-curv-i5,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 66, 19.5, 318, 45.9, 54.1, 82.1, 17.6,22 +NA,NA,a-curv-i5,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 872, 13.6," 1,382", 54.1, 45.9, 71.4, 10.2,15.2 +NA,NA,a-curv-i5,2019-20,Springfield - STEM Middle Academy,02810350, 142, 16.7, 281, 43.1, 56.9, 77.2, 7.5,12.8 +NA,NA,a-curv-i5,2019-20,Springfield - Samuel Bowles,02810020, 197, 20.0, 313, 49.5, 50.5, 72.8, 18.2,19.8 +NA,NA,a-curv-i5,2019-20,Springfield - South End Middle School,02810355, 141, 14.0, 228, 48.3, 51.8, 93.0, 19.3,19.7 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield Central High,02810500, 986, 16.6," 1,994", 47.0, 53.0, 69.1, 14.7,16.5 +7.098901098901099,5,a-curv-i5,2019-20,Springfield - Springfield High School,02810570, 182, 13.6, 264, 41.7, 58.3, 87.1, 11.0,33.3,205 +6.616666666666665,5,a-curv-i5,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 720, 15.5," 1,243", 44.8, 55.2, 80.1, 17.5,21.2,1245 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 28, 15.4, 28, 53.6, 46.4, 92.9, 85.7,7.1 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 29, 14.7, 64, 20.3, 79.7, 65.6, 100.0,0 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 137, 6.8, 65, 15.4, 84.6, 93.9, 10.8,100 +7.466666666666666,5,a-curv-i5,2019-20,Springfield - Springfield Public Day High School,02810550, 117, 5.3, 80, 21.3, 78.8, 95.0, 13.8,100,78 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield Public Day Middle School,02810345, 67, 5.0, 51, 19.6, 80.4, 96.1, 9.8,100 +NA,NA,a-curv-i5,2019-20,Springfield - Springfield Vocational Academy,02810675, 28, 11.2, 99, 35.4, 64.7, 72.7, 12.1,100 +NA,NA,a-curv-i5,2019-20,Springfield - Sumner Avenue,02810160, 366, 16.5, 580, 46.6, 53.5, 84.0, 20.3,30.2 +NA,NA,a-curv-i5,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 475, 12.5, 661, 50.4, 49.6, 60.8, 4.1,21 +NA,NA,a-curv-i5,2019-20,Springfield - Thomas M Balliet,02810015, 157, 21.5, 328, 49.4, 50.6, 72.3, 7.6,19.5 +NA,NA,a-curv-i5,2019-20,Springfield - Van Sickle Academy,02810485, 161, 13.5, 267, 44.6, 55.4, 82.0, 21.0,31.8 +NA,NA,a-curv-i5,2019-20,Springfield - Warner,02810180, 170, 15.1, 248, 43.6, 56.5, 74.6, 8.5,15.7 +NA,NA,a-curv-i5,2019-20,Springfield - Washington,02810185, 279, 16.9, 407, 49.4, 50.6, 84.5, 19.4,26.3 +NA,NA,a-curv-i5,2019-20,Springfield - White Street,02810190, 243, 21.1, 421, 49.4, 50.6, 88.8, 20.7,14.3 +NA,NA,a-curv-i5,2019-20,Springfield - William N. DeBerry,02810045, 198, 17.2, 270, 46.3, 53.7, 92.6, 20.0,29.3 +NA,NA,a-curv-i5,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 74, 33.7, 325, 46.5, 53.5, 69.2, 14.8,21.2 +NA,NA,a-curv-i5,2019-20,Stoneham - Colonial Park,02840005, 91, 20.9, 275, 42.2, 57.8, 15.3, 4.4,27.6 +NA,NA,a-curv-i5,2019-20,Stoneham - Robin Hood,02840025, 125, 23.0, 394, 52.3, 47.7, 19.5, 4.6,22.1 +NA,NA,a-curv-i5,2019-20,Stoneham - South,02840030, 132, 20.6, 357, 51.3, 48.7, 17.9, 8.4,20.7 +NA,NA,a-curv-i5,2019-20,Stoneham - Stoneham Central Middle School,02840405, 496, 17.0, 722, 49.2, 50.6, 19.3, 2.4,18.6 +NA,NA,a-curv-i5,2019-20,Stoneham - Stoneham High,02840505, 416, 14.1, 647, 47.1, 52.9, 16.7, 3.3,16.2 +NA,NA,a-curv-i5,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9, 11.1, 96, 39.6, 60.4, 31.3, 6.3,49 +NA,NA,a-curv-i5,2019-20,Stoughton - Helen Hansen Elementary,02850010, 150, 13.9, 255, 51.0, 49.0, 34.9, 3.5,22.4 +NA,NA,a-curv-i5,2019-20,Stoughton - Joseph H Gibbons,02850025, 179, 17.2, 375, 45.9, 54.1, 36.5, 9.3,18.1 +NA,NA,a-curv-i5,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 211, 13.5, 346, 45.1, 54.9, 33.2, 4.9,18.8 +NA,NA,a-curv-i5,2019-20,Stoughton - O'Donnell Middle School,02850405, 514, 19.4, 891, 46.6, 53.4, 33.2, 5.7,18 +NA,NA,a-curv-i5,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 149, 17.1, 336, 51.5, 48.5, 58.0, 21.1,13.4 +NA,NA,a-curv-i5,2019-20,Stoughton - South Elementary,02850015, 123, 15.9, 236, 48.7, 51.3, 25.0, 3.8,14 +NA,NA,a-curv-i5,2019-20,Stoughton - Stoughton High,02850505, 700, 16.0," 1,029", 48.7, 51.3, 30.9, 5.1,12.7 +NA,NA,a-curv-i5,2019-20,Sturbridge - Burgess Elementary,02870005, 236, 22.6, 906, 46.1, 53.9, 16.9, 2.9,14.2 +NA,NA,a-curv-i5,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 529, 14.5, 848, 54.8, 44.8, 12.3, 0.7,15.2 +NA,NA,a-curv-i5,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 554, 19.1, 954, 52.2, 47.8, 4.6, 0.5,20.1 +NA,NA,a-curv-i5,2019-20,Sudbury - General John Nixon Elementary,02880025, 206, 20.2, 332, 50.6, 49.4, 5.1, 3.6,15.4 +NA,NA,a-curv-i5,2019-20,Sudbury - Israel Loring School,02880015, 320, 19.9, 456, 47.8, 52.0, 11.4, 4.8,16 +NA,NA,a-curv-i5,2019-20,Sudbury - Josiah Haynes,02880010, 231, 19.9, 378, 43.1, 56.9, 4.2, 4.2,15.9 +NA,NA,a-curv-i5,2019-20,Sudbury - Peter Noyes,02880030, 315, 21.4, 566, 45.8, 54.2, 3.7, 2.7,22.4 +NA,NA,a-curv-i5,2019-20,Sunderland - Sunderland Elementary,02890005, 155, 15.5, 225, 47.6, 52.4, 36.9, 9.8,21.3 +NA,NA,a-curv-i5,2019-20,Sutton - Sutton Early Learning,02900003, 73, 19.7, 341, 43.7, 56.3, 15.5, 3.5,25.2 +NA,NA,a-curv-i5,2019-20,Sutton - Sutton Elementary,02900005, 110, 22.0, 304, 49.7, 50.3, 11.8, 2.3,22.7 +6.387096774193549,5,a-curv-i5,2019-20,Sutton - Sutton High School,02900510, 186, 14.8, 376, 50.3, 49.7, 12.0, 0.8,8.2,375 +NA,NA,a-curv-i5,2019-20,Sutton - Sutton Middle School,02900305, 176, 22.1, 351, 51.0, 49.0, 13.1, 0.9,18.2 +NA,NA,a-curv-i5,2019-20,Swampscott - Clarke,02910005, 84, 21.0, 221, 46.6, 53.4, 26.7, 19.0,16.3 +NA,NA,a-curv-i5,2019-20,Swampscott - Hadley,02910010, 120, 21.9, 328, 49.4, 50.6, 19.2, 9.5,11.3 +NA,NA,a-curv-i5,2019-20,Swampscott - Stanley,02910020, 100, 19.0, 238, 43.3, 56.7, 7.1, 4.2,18.1 +NA,NA,a-curv-i5,2019-20,Swampscott - Swampscott High,02910505, 408, 14.5, 703, 53.6, 46.4, 17.2, 1.4,15.1 +NA,NA,a-curv-i5,2019-20,Swampscott - Swampscott Middle,02910305, 494, 17.9, 753, 48.3, 51.5, 17.8, 3.6,21.4 +NA,NA,a-curv-i5,2019-20,Swansea - Elizabeth S Brown,02920006, 122, 22.5, 275, 50.9, 49.1, 24.7, 1.8,10.2 +NA,NA,a-curv-i5,2019-20,Swansea - Gardner,02920015, 116, 22.7, 275, 46.9, 53.1, 22.2, 0.7,9.5 +NA,NA,a-curv-i5,2019-20,Swansea - Joseph Case High,02920505, 263, 14.0, 528, 48.7, 51.3, 22.5, 0.4,9.5 +NA,NA,a-curv-i5,2019-20,Swansea - Joseph Case Jr High,02920305, 253, 19.2, 564, 48.4, 51.6, 21.8, 0.4,11.5 +NA,NA,a-curv-i5,2019-20,Swansea - Joseph G Luther,02920020, 102, 20.3, 208, 49.0, 51.0, 19.2, 0.0,13.9 +NA,NA,a-curv-i5,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 104, 18.9, 250, 49.6, 50.4, 21.6, 0.0,19.6 +NA,NA,a-curv-i5,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 531, 42.2," 2,347", 58.8, 41.2, 46.0, 1.2,19.6 +NA,NA,a-curv-i5,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 392, 19.3, 593, 46.9, 53.1, 21.8, 0.8,12.8 +NA,NA,a-curv-i5,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 771, 13.0," 1,199", 51.3, 48.7, 20.6, 0.4,8.4 +NA,NA,a-curv-i5,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 114, 10.3, 483, 42.2, 57.8, 27.1, 0.4,13.5 +NA,NA,a-curv-i5,2019-20,Taunton - Benjamin Friedman Middle,02930315, 348, 22.3, 819, 49.6, 50.4, 45.3, 2.6,20.8 +NA,NA,a-curv-i5,2019-20,Taunton - East Taunton Elementary,02930010, 273, 17.5, 612, 52.3, 47.7, 42.7, 5.4,24.5 +NA,NA,a-curv-i5,2019-20,Taunton - Edmund Hatch Bennett,02930007, 117, 20.6, 308, 50.0, 50.0, 34.4, 3.6,16.6 +NA,NA,a-curv-i5,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 19, 17.7, 336, 41.1, 58.9, 49.4, 9.8,53.6 +NA,NA,a-curv-i5,2019-20,Taunton - Elizabeth Pole,02930027, 251, 17.4, 559, 48.3, 51.7, 60.5, 13.2,17.7 +NA,NA,a-curv-i5,2019-20,Taunton - H H Galligan,02930057, 109, 18.8, 263, 51.0, 49.1, 71.1, 15.6,19 +NA,NA,a-curv-i5,2019-20,Taunton - Hopewell,02930035, 117, 18.5, 278, 54.3, 45.7, 64.0, 7.2,19.1 +NA,NA,a-curv-i5,2019-20,Taunton - John F Parker Middle,02930305, 176, 21.8, 493, 50.1, 49.9, 60.9, 10.1,22.1 +NA,NA,a-curv-i5,2019-20,Taunton - Joseph C Chamberlain,02930008, 219, 18.1, 508, 46.3, 53.7, 39.0, 3.2,19.1 +NA,NA,a-curv-i5,2019-20,Taunton - Joseph H Martin,02930042, 357, 20.2, 724, 49.7, 50.3, 43.2, 2.4,18 +NA,NA,a-curv-i5,2019-20,Taunton - Mulcahey Elementary School,02930015, 197, 18.8, 506, 50.8, 49.2, 52.2, 9.9,19 +7.325490196078431,5,a-curv-i5,2019-20,Taunton - Taunton Alternative High School,02930525, 102, 11.3, 149, 38.9, 61.1, 65.8, 1.3,24.2,86 +NA,NA,a-curv-i5,2019-20,Taunton - Taunton High,02930505, 988, 20.7," 2,705", 50.2, 49.8, 43.3, 4.6,15.1 +NA,NA,a-curv-i5,2019-20,Tewksbury - Heath-Brook,02950010, 110, 19.3, 335, 54.0, 46.0, 14.6, 4.2,13.4 +NA,NA,a-curv-i5,2019-20,Tewksbury - John F. Ryan,02950023, 274, 20.4, 509, 50.5, 49.5, 16.1, 0.6,15.1 +NA,NA,a-curv-i5,2019-20,Tewksbury - John W. Wynn Middle,02950305, 255, 20.7, 534, 46.1, 53.9, 14.0, 0.9,16.9 +NA,NA,a-curv-i5,2019-20,Tewksbury - L F Dewing,02950001, 139, 19.5, 587, 46.9, 53.2, 14.3, 1.7,22 +NA,NA,a-curv-i5,2019-20,Tewksbury - Louise Davy Trahan,02950025, 108, 19.5, 234, 53.4, 46.6, 17.5, 2.6,16.7 +NA,NA,a-curv-i5,2019-20,Tewksbury - North Street,02950020, 131, 19.9, 290, 47.2, 52.8, 17.6, 2.4,22.8 +NA,NA,a-curv-i5,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 405, 19.6, 860, 52.9, 47.0, 15.8, 0.6,13.1 +NA,NA,a-curv-i5,2019-20,Tisbury - Tisbury Elementary,02960005, 192, 14.1, 305, 48.5, 51.5, 38.4, 24.9,15.1 +NA,NA,a-curv-i5,2019-20,Topsfield - Proctor Elementary,02980005, 94, 17.5, 267, 50.2, 49.8, 3.0, 0.0,18 +NA,NA,a-curv-i5,2019-20,Topsfield - Steward Elementary,02980010, 110, 15.8, 378, 52.1, 47.9, 5.8, 0.3,19.1 +NA,NA,a-curv-i5,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 825, 15.7, 974, 40.4, 59.5, 18.2, 0.0,29 +NA,NA,a-curv-i5,2019-20,Triton - Newbury Elementary,07730020, 194, 18.2, 392, 44.4, 55.6, 14.5, 0.5,20.4 +NA,NA,a-curv-i5,2019-20,Triton - Pine Grove,07730025, 197, 19.9, 435, 50.3, 49.7, 16.6, 0.7,20 +NA,NA,a-curv-i5,2019-20,Triton - Salisbury Elementary,07730015, 241, 19.8, 496, 49.0, 51.0, 37.7, 2.6,13.7 +6.3516616314199394,5,a-curv-i5,2019-20,Triton - Triton Regional High School,07730505, 331, 14.3, 665, 49.9, 50.1, 19.7, 1.7,13.1,682 +NA,NA,a-curv-i5,2019-20,Triton - Triton Regional Middle School,07730405, 225, 18.3, 364, 46.2, 53.9, 22.0, 0.0,18.1 +NA,NA,a-curv-i5,2019-20,Truro - Truro Central,03000005, 71, 13.2, 114, 47.4, 52.6, 32.5, 0.9,18.4 +NA,NA,a-curv-i5,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 379, 21.3, 805, 48.2, 51.8, 16.7, 6.3,19.1 +7.047619047619048,5,a-curv-i5,2019-20,Tyngsborough - Tyngsborough High School,03010505, 378, 15.4, 458, 53.9, 46.1, 10.0, 1.3,10.3,450 +NA,NA,a-curv-i5,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 276, 16.6, 393, 45.6, 54.5, 15.3, 2.5,20.4 +NA,NA,a-curv-i5,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 141, 19.5, 411, 48.2, 51.8, 74.2, 23.8,24.3 +NA,NA,a-curv-i5,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 165, 22.3, 697, 49.8, 50.2, 68.6, 28.1,16.6 +NA,NA,a-curv-i5,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 18, 12.3, 51, 49.0, 51.0, 17.7, 0.0,13.7 +NA,NA,a-curv-i5,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 173, 17.1, 358, 45.0, 55.0, 25.1, 6.4,21.2 +NA,NA,a-curv-i5,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 356, 14.1, 692, 36.6, 63.4, 27.2, 0.0,22 +NA,NA,a-curv-i5,2019-20,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2019-20,Uxbridge - Taft Early Learning Center,03040005, 158, 19.0, 568, 47.7, 52.3, 22.7, 4.2,21.8 +NA,NA,a-curv-i5,2019-20,Uxbridge - Uxbridge High,03040505, 340, 14.5, 588, 44.6, 55.4, 19.4, 1.5,15.5 +NA,NA,a-curv-i5,2019-20,Uxbridge - Whitin Intermediate,03040405, 172, 22.1, 525, 45.9, 54.1, 21.1, 1.1,14.3 +NA,NA,a-curv-i5,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 159, 24.8, 371, 54.2, 45.8, 75.2, 3.0,23.2 +NA,NA,a-curv-i5,2019-20,Wachusett - Central Tree Middle,07750310, 199, 16.5, 364, 51.9, 48.1, 14.3, 0.3,20.3 +NA,NA,a-curv-i5,2019-20,Wachusett - Chocksett Middle School,07750315, 175, 17.0, 330, 47.6, 52.4, 13.6, 0.6,18.8 +NA,NA,a-curv-i5,2019-20,Wachusett - Davis Hill Elementary,07750018, 166, 19.9, 470, 48.9, 51.1, 11.5, 2.8,12.6 +NA,NA,a-curv-i5,2019-20,Wachusett - Dawson,07750020, 177, 19.8, 490, 49.4, 50.6, 11.2, 5.5,11 +NA,NA,a-curv-i5,2019-20,Wachusett - Early Childhood Center,07750001, 9, 21.7, 192, 37.0, 63.0, 22.9, 1.6,48.4 +NA,NA,a-curv-i5,2019-20,Wachusett - Glenwood Elementary School,07750060, 157, 19.2, 368, 50.8, 49.2, 15.8, 2.2,16 +NA,NA,a-curv-i5,2019-20,Wachusett - Houghton Elementary,07750027, 147, 16.5, 344, 46.8, 53.2, 14.2, 2.3,19.5 +NA,NA,a-curv-i5,2019-20,Wachusett - Leroy E.Mayo,07750032, 182, 19.8, 500, 49.6, 50.4, 10.6, 3.6,10.8 +NA,NA,a-curv-i5,2019-20,Wachusett - Mountview Middle,07750305, 346, 22.0, 837, 50.9, 49.1, 9.9, 1.4,13.3 +NA,NA,a-curv-i5,2019-20,Wachusett - Naquag Elementary School,07750005, 121, 18.5, 310, 50.0, 50.0, 12.3, 2.9,15.5 +NA,NA,a-curv-i5,2019-20,Wachusett - Paxton Center,07750040, 186, 19.6, 476, 52.1, 47.9, 13.2, 3.4,15.1 +NA,NA,a-curv-i5,2019-20,Wachusett - Thomas Prince,07750045, 168, 18.9, 381, 49.1, 50.9, 6.8, 0.0,12.9 +NA,NA,a-curv-i5,2019-20,Wachusett - Wachusett Regional High,07750505," 1,152", 16.3," 2,038", 50.4, 49.6, 11.5, 0.5,13.7 +NA,NA,a-curv-i5,2019-20,Wakefield - Dolbeare,03050005, 105, 22.1, 464, 48.3, 51.7, 10.8, 4.3,16 +NA,NA,a-curv-i5,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 12, 12.3, 147, 36.1, 64.0, 15.7, 1.4,25.9 +NA,NA,a-curv-i5,2019-20,Wakefield - Galvin Middle School,03050310, 569, 20.1," 1,054", 49.5, 50.5, 14.0, 1.3,19.5 +NA,NA,a-curv-i5,2019-20,Wakefield - Greenwood,03050020, 50, 22.5, 225, 41.8, 58.2, 7.1, 3.1,12.9 +NA,NA,a-curv-i5,2019-20,Wakefield - Wakefield Memorial High,03050505, 533, 14.9, 990, 51.7, 48.2, 12.6, 1.6,15.8 +NA,NA,a-curv-i5,2019-20,Wakefield - Walton,03050040, 50, 22.9, 229, 45.0, 55.0, 8.3, 3.5,14 +NA,NA,a-curv-i5,2019-20,Wakefield - Woodville School,03050015, 100, 19.8, 395, 51.4, 48.4, 19.0, 5.3,14.9 +NA,NA,a-curv-i5,2019-20,Wales - Wales Elementary,03060005, 39, 18.7, 140, 46.4, 53.6, 35.0, 0.7,22.1 +NA,NA,a-curv-i5,2019-20,Walpole - Bird Middle,03070305, 281, 18.7, 447, 49.4, 50.6, 13.4, 2.5,15.2 +NA,NA,a-curv-i5,2019-20,Walpole - Boyden,03070010, 77, 19.0, 353, 49.9, 50.1, 14.7, 7.4,13.6 +NA,NA,a-curv-i5,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 8, 11.5, 92, 40.2, 59.8, 15.2, 16.3,44.6 +NA,NA,a-curv-i5,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 243, 20.5, 432, 46.8, 53.2, 12.7, 2.1,13.2 +NA,NA,a-curv-i5,2019-20,Walpole - Elm Street School,03070005, 84, 21.1, 423, 48.0, 52.0, 9.0, 5.4,13 +NA,NA,a-curv-i5,2019-20,Walpole - Fisher,03070015, 97, 19.3, 447, 47.9, 52.1, 10.7, 4.0,16.1 +NA,NA,a-curv-i5,2019-20,Walpole - Old Post Road,03070018, 95, 20.0, 459, 50.8, 49.2, 12.2, 3.1,7 +NA,NA,a-curv-i5,2019-20,Walpole - Walpole High,03070505, 510, 17.5," 1,095", 49.0, 51.1, 12.9, 2.5,14.9 +NA,NA,a-curv-i5,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 276, 17.3, 464, 45.9, 54.1, 16.4, 7.8,12.7 +NA,NA,a-curv-i5,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 266, 17.8, 437, 50.6, 49.4, 60.2, 52.4,10.1 +NA,NA,a-curv-i5,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 257, 15.8, 391, 46.0, 54.0, 26.3, 15.6,12 +NA,NA,a-curv-i5,2019-20,Waltham - John F Kennedy Middle,03080404, 378, 15.1, 552, 45.3, 54.7, 35.1, 7.1,16.9 +NA,NA,a-curv-i5,2019-20,Waltham - John W. McDevitt Middle School,03080415, 458, 16.5, 733, 50.1, 49.9, 41.6, 19.9,21 +NA,NA,a-curv-i5,2019-20,Waltham - Northeast Elementary School,03080040, 307, 17.3, 581, 48.4, 51.6, 41.5, 23.9,16.7 +NA,NA,a-curv-i5,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 258, 18.1, 404, 49.3, 50.7, 39.4, 27.5,15.8 +NA,NA,a-curv-i5,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 81, 18.2, 145, 44.1, 55.9, 40.0, 49.7,3.5 +NA,NA,a-curv-i5,2019-20,Waltham - Waltham Sr High,03080505, 878, 15.3," 1,661", 45.2, 54.7, 40.0, 20.8,14.3 +NA,NA,a-curv-i5,2019-20,Waltham - William F. Stanley Elementary School,03080005, 309, 12.8, 448, 44.6, 55.4, 37.5, 25.0,29.5 +NA,NA,a-curv-i5,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 72, 19.1, 390, 47.7, 52.3, 62.6, 1.8,20.8 +6.525984251968504,5,a-curv-i5,2019-20,Ware - Ware Junior/Senior High School,03090505, 254, 16.2, 474, 49.0, 51.1, 44.7, 0.6,20,468 +NA,NA,a-curv-i5,2019-20,Ware - Ware Middle School,03090305, 98, 23.8, 298, 47.0, 53.0, 55.4, 0.3,17.8 +NA,NA,a-curv-i5,2019-20,Wareham - John William Decas,03100003, 343, 16.2, 622, 48.7, 51.3, 57.2, 2.7,22.7 +NA,NA,a-curv-i5,2019-20,Wareham - Minot Forest,03100017, 178, 16.3, 325, 52.0, 48.0, 60.0, 1.2,26.2 +NA,NA,a-curv-i5,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 40, 6.1, 63, 42.9, 57.1, 61.9, 0.0,30.2 +NA,NA,a-curv-i5,2019-20,Wareham - Wareham Middle,03100305, 271, 15.8, 527, 49.5, 50.5, 55.8, 0.4,25.2 +NA,NA,a-curv-i5,2019-20,Wareham - Wareham Senior High,03100505, 525, 12.2, 621, 49.8, 50.1, 45.3, 0.5,27.5 +NA,NA,a-curv-i5,2019-20,Watertown - Cunniff,03140015, 154, 18.2, 312, 50.3, 49.7, 21.2, 12.2,20.8 +NA,NA,a-curv-i5,2019-20,Watertown - Hosmer,03140020, 298, 17.2, 676, 48.2, 51.8, 22.5, 18.5,21.2 +NA,NA,a-curv-i5,2019-20,Watertown - James Russell Lowell,03140025, 223, 17.7, 437, 51.7, 48.3, 23.6, 14.4,13.7 +NA,NA,a-curv-i5,2019-20,Watertown - Watertown High,03140505, 414, 14.1, 697, 48.2, 51.8, 31.4, 9.6,15.5 +NA,NA,a-curv-i5,2019-20,Watertown - Watertown Middle,03140305, 401, 17.6, 595, 46.2, 53.8, 34.6, 11.4,19.8 +NA,NA,a-curv-i5,2019-20,Wayland - Claypit Hill School,03150005, 207, 20.4, 510, 51.2, 48.8, 5.3, 4.3,17.1 +NA,NA,a-curv-i5,2019-20,Wayland - Happy Hollow School,03150015, 149, 21.5, 388, 47.4, 52.6, 8.0, 4.4,15.5 +NA,NA,a-curv-i5,2019-20,Wayland - Loker School,03150020, 123, 21.6, 325, 50.2, 49.9, 3.7, 8.0,10.5 +6.493693693693695,5,a-curv-i5,2019-20,Wayland - Wayland High School,03150505, 444, 14.0, 838, 49.8, 50.2, 5.1, 1.0,20.8,836 +NA,NA,a-curv-i5,2019-20,Wayland - Wayland Middle School,03150305, 461, 15.1, 660, 51.2, 48.8, 7.3, 2.1,21.1 +6.4908296943231445,5,a-curv-i5,2019-20,Webster - Bartlett High School,03160505, 229, 15.8, 422, 52.8, 46.9, 49.5, 8.3,14.5,432 +NA,NA,a-curv-i5,2019-20,Webster - Park Avenue Elementary,03160015, 261, 20.6, 826, 46.0, 53.9, 63.0, 15.1,23.9 +NA,NA,a-curv-i5,2019-20,Webster - Webster Middle School,03160315, 245, 17.4, 576, 49.5, 50.5, 59.4, 6.6,20.3 +NA,NA,a-curv-i5,2019-20,Wellesley - Ernest F Upham,03170050, 109, 18.8, 228, 47.8, 52.2, 6.1, 0.0,24.1 +NA,NA,a-curv-i5,2019-20,Wellesley - Hunnewell,03170025, 108, 21.4, 256, 49.6, 50.4, 4.3, 0.4,19.1 +NA,NA,a-curv-i5,2019-20,Wellesley - John D Hardy,03170020, 117, 19.7, 257, 52.9, 47.1, 3.1, 6.6,14.8 +NA,NA,a-curv-i5,2019-20,Wellesley - Joseph E Fiske,03170015, 144, 18.7, 299, 50.8, 49.2, 9.7, 8.7,11 +NA,NA,a-curv-i5,2019-20,Wellesley - Katharine Lee Bates,03170005, 162, 18.8, 339, 50.4, 49.6, 3.2, 0.6,10.6 +NA,NA,a-curv-i5,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 11, 12.4, 123, 49.6, 50.4, 5.7, 0.0,43.9 +NA,NA,a-curv-i5,2019-20,Wellesley - Schofield,03170045, 162, 20.8, 375, 52.0, 48.0, 5.9, 3.2,10.9 +NA,NA,a-curv-i5,2019-20,Wellesley - Sprague Elementary School,03170048, 162, 19.9, 359, 50.4, 49.6, 5.9, 5.3,19.8 +NA,NA,a-curv-i5,2019-20,Wellesley - Wellesley Middle,03170305, 789, 16.7," 1,169", 53.6, 46.3, 5.8, 1.5,13.9 +NA,NA,a-curv-i5,2019-20,Wellesley - Wellesley Sr High,03170505, 679, 16.5," 1,503", 49.1, 50.8, 5.9, 0.5,15.6 +NA,NA,a-curv-i5,2019-20,Wellfleet - Wellfleet Elementary,03180005, 69, 15.8, 104, 46.2, 53.9, 30.8, 1.0,14.4 +NA,NA,a-curv-i5,2019-20,West Boylston - Major Edwards Elementary,03220005, 200, 19.3, 410, 48.1, 52.0, 25.6, 6.1,20.5 +NA,NA,a-curv-i5,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 365, 13.5, 502, 53.6, 46.4, 19.9, 2.0,14.5 +NA,NA,a-curv-i5,2019-20,West Bridgewater - Howard School,03230305, 123, 20.9, 285, 51.6, 48.4, 18.6, 1.1,11.6 +NA,NA,a-curv-i5,2019-20,West Bridgewater - Rose L Macdonald,03230003, 177, 22.6, 293, 50.2, 49.8, 15.7, 3.1,8.9 +NA,NA,a-curv-i5,2019-20,West Bridgewater - Spring Street School,03230005, 57, 23.5, 162, 45.7, 54.3, 16.7, 0.6,16.7 +NA,NA,a-curv-i5,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 446, 17.2, 641, 52.9, 47.1, 18.1, 0.8,9.1 +NA,NA,a-curv-i5,2019-20,West Springfield - Cowing Early Childhood,03320001, 13, 11.6, 151, 39.7, 60.3, 56.3, 15.9,57.6 +NA,NA,a-curv-i5,2019-20,West Springfield - John Ashley,03320005, 52, 17.7, 231, 51.5, 48.5, 47.2, 6.1,15.6 +NA,NA,a-curv-i5,2019-20,West Springfield - John R Fausey,03320010, 131, 16.5, 421, 49.4, 50.6, 34.2, 4.5,17.3 +NA,NA,a-curv-i5,2019-20,West Springfield - Memorial,03320025, 68, 14.8, 200, 51.5, 48.5, 70.5, 5.0,20.5 +NA,NA,a-curv-i5,2019-20,West Springfield - Mittineague,03320030, 52, 18.1, 183, 54.6, 45.4, 37.2, 2.7,15.9 +NA,NA,a-curv-i5,2019-20,West Springfield - Philip G Coburn,03320007, 140, 18.8, 517, 52.2, 47.8, 73.7, 48.0,13 +NA,NA,a-curv-i5,2019-20,West Springfield - Tatham,03320040, 83, 16.0, 260, 45.4, 54.6, 33.5, 3.9,11.9 +NA,NA,a-curv-i5,2019-20,West Springfield - West Springfield High,03320505, 702, 16.3," 1,241", 47.5, 52.5, 43.8, 7.6,19.5 +NA,NA,a-curv-i5,2019-20,West Springfield - West Springfield Middle,03320305, 573, 18.8, 935, 49.3, 50.7, 47.0, 5.2,15.9 +NA,NA,a-curv-i5,2019-20,Westborough - Annie E Fales,03210010, 124, 18.5, 351, 51.6, 48.4, 6.0, 12.3,15.7 +NA,NA,a-curv-i5,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 125, 19.1, 510, 50.4, 49.6, 17.7, 45.9,19.6 +NA,NA,a-curv-i5,2019-20,Westborough - J Harding Armstrong,03210005, 129, 18.4, 417, 43.9, 56.1, 11.0, 18.9,18.7 +NA,NA,a-curv-i5,2019-20,Westborough - Mill Pond School,03210045, 393, 21.9, 881, 48.8, 51.2, 12.5, 10.1,19.8 +NA,NA,a-curv-i5,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 544, 15.3, 652, 50.9, 49.1, 9.7, 5.8,16.7 +NA,NA,a-curv-i5,2019-20,Westborough - Westborough High,03210505, 705, 15.2," 1,157", 49.0, 50.9, 11.2, 3.4,8.7 +NA,NA,a-curv-i5,2019-20,Westfield - Abner Gibbs,03250020, 101, 20.9, 209, 46.9, 53.1, 60.8, 1.9,15.3 +NA,NA,a-curv-i5,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 12.1, 204, 43.1, 56.9, 49.5, 3.4,51.5 +NA,NA,a-curv-i5,2019-20,Westfield - Franklin Ave,03250015, 101, 21.2, 212, 55.2, 44.8, 67.9, 4.3,15.1 +NA,NA,a-curv-i5,2019-20,Westfield - Highland,03250025, 180, 20.9, 367, 51.5, 48.5, 42.2, 16.9,12.3 +NA,NA,a-curv-i5,2019-20,Westfield - Munger Hill,03250033, 216, 17.7, 376, 48.4, 51.6, 32.2, 16.8,21.8 +NA,NA,a-curv-i5,2019-20,Westfield - Paper Mill,03250036, 191, 16.7, 317, 47.0, 53.0, 48.9, 3.5,18.9 +NA,NA,a-curv-i5,2019-20,Westfield - Southampton Road,03250040, 151, 22.3, 334, 46.1, 53.9, 38.9, 3.6,14.1 +NA,NA,a-curv-i5,2019-20,Westfield - Westfield High,03250505, 681, 14.9," 1,175", 52.6, 47.2, 29.6, 3.4,18.7 +NA,NA,a-curv-i5,2019-20,Westfield - Westfield Intermediate School,03250075, 471, 16.1, 759, 47.0, 53.0, 41.4, 3.8,20.4 +NA,NA,a-curv-i5,2019-20,Westfield - Westfield Middle School,03250310, 477, 16.6, 799, 49.9, 50.1, 38.9, 5.1,20.7 +NA,NA,a-curv-i5,2019-20,Westfield - Westfield Technical Academy,03250605, 288, 14.2, 558, 35.5, 64.5, 37.3, 2.7,26.9 +NA,NA,a-curv-i5,2019-20,Westford - Abbot Elementary,03260004, 158, 17.8, 374, 52.1, 47.9, 5.9, 0.5,14.4 +NA,NA,a-curv-i5,2019-20,Westford - Blanchard Middle,03260310, 383, 15.3, 548, 48.4, 51.6, 6.4, 1.6,17.9 +NA,NA,a-curv-i5,2019-20,Westford - Col John Robinson,03260025, 96, 20.0, 279, 48.8, 51.3, 7.9, 7.2,13.3 +NA,NA,a-curv-i5,2019-20,Westford - Day Elementary,03260007, 136, 18.9, 338, 52.4, 47.6, 5.6, 2.1,12.4 +NA,NA,a-curv-i5,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 148, 18.6, 364, 50.6, 49.5, 5.5, 1.7,16.8 +NA,NA,a-curv-i5,2019-20,Westford - Millennium Elementary,03260013, 7, 11.0, 77, 48.1, 52.0, 7.8, 0.0,52 +NA,NA,a-curv-i5,2019-20,Westford - Nabnasset,03260015, 131, 17.4, 331, 47.1, 52.9, 5.4, 2.1,12.7 +NA,NA,a-curv-i5,2019-20,Westford - Rita E. Miller Elementary School,03260055, 116, 19.0, 366, 48.1, 51.9, 10.1, 8.2,25.7 +NA,NA,a-curv-i5,2019-20,Westford - Stony Brook School,03260330, 367, 17.3, 609, 52.1, 48.0, 5.8, 0.2,16.4 +NA,NA,a-curv-i5,2019-20,Westford - Westford Academy,03260505, 733, 18.7," 1,685", 47.7, 52.2, 5.1, 0.6,11.2 +NA,NA,a-curv-i5,2019-20,Westhampton - Westhampton Elementary School,03270005, 57, 15.8, 121, 46.3, 53.7, 19.0, 0.8,24 +NA,NA,a-curv-i5,2019-20,Weston - Country,03300010, 73, 19.4, 298, 51.7, 48.3, 5.7, 5.0,14.1 +NA,NA,a-curv-i5,2019-20,Weston - Field Elementary School,03300012, 78, 20.5, 310, 52.6, 47.4, 5.8, 4.8,13.2 +NA,NA,a-curv-i5,2019-20,Weston - Weston High,03300505, 520, 13.6, 663, 48.3, 51.7, 6.0, 2.1,19.5 +NA,NA,a-curv-i5,2019-20,Weston - Weston Middle,03300305, 297, 18.3, 488, 46.1, 53.9, 4.7, 2.5,19.3 +NA,NA,a-curv-i5,2019-20,Weston - Woodland,03300015, 70, 19.9, 288, 48.3, 51.7, 7.6, 5.9,16 +NA,NA,a-curv-i5,2019-20,Westport - Alice A Macomber,03310015, 158, 18.7, 387, 51.9, 48.1, 25.8, 2.3,21.7 +NA,NA,a-curv-i5,2019-20,Westport - Westport Elementary,03310030, 236, 18.5, 474, 44.3, 55.7, 24.9, 0.4,19 +6.840102827763497,5,a-curv-i5,2019-20,Westport - Westport Junior/Senior High School,03310515, 389, 14.4, 569, 44.1, 55.9, 24.1, 0.4,15.1,564 +NA,NA,a-curv-i5,2019-20,Westwood - Deerfield School,03350010, 80, 18.0, 197, 46.7, 53.3, 4.1, 2.0,18.3 +NA,NA,a-curv-i5,2019-20,Westwood - Downey,03350012, 102, 20.4, 288, 43.1, 56.9, 6.6, 2.8,23.3 +NA,NA,a-curv-i5,2019-20,Westwood - E W Thurston Middle,03350305, 412, 19.0, 706, 46.5, 53.5, 7.1, 0.4,23.1 +NA,NA,a-curv-i5,2019-20,Westwood - Martha Jones,03350017, 109, 17.8, 267, 50.2, 49.8, 3.4, 1.1,13.9 +NA,NA,a-curv-i5,2019-20,Westwood - Paul Hanlon,03350015, 94, 16.0, 208, 47.1, 52.9, 4.3, 2.9,16.8 +NA,NA,a-curv-i5,2019-20,Westwood - Westwood High,03350505, 516, 14.5," 1,005", 54.7, 45.3, 5.7, 0.3,14 +NA,NA,a-curv-i5,2019-20,Westwood - Westwood Integrated Preschool,03350050, 3, 16.3, 49, 36.7, 63.3, 8.2, 0.0,61.2 +NA,NA,a-curv-i5,2019-20,Westwood - William E Sheehan,03350025, 116, 19.5, 312, 49.4, 50.6, 3.5, 0.6,19.2 +NA,NA,a-curv-i5,2019-20,Weymouth - Abigail Adams Middle School,03360310, 546, 21.8, 916, 51.8, 48.3, 35.5, 3.7,20.2 +NA,NA,a-curv-i5,2019-20,Weymouth - Academy Avenue,03360005, 65, 21.8, 320, 50.0, 50.0, 31.3, 17.8,10.6 +NA,NA,a-curv-i5,2019-20,Weymouth - Frederick C Murphy,03360050, 42, 21.2, 201, 43.8, 56.2, 28.9, 0.0,31.3 +NA,NA,a-curv-i5,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 28, 7.8, 219, 39.3, 60.7, 32.9, 2.3,49.8 +NA,NA,a-curv-i5,2019-20,Weymouth - Lawrence W Pingree,03360065, 47, 16.4, 202, 54.5, 45.5, 35.6, 0.0,24.3 +NA,NA,a-curv-i5,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 390, 19.1, 913, 51.6, 48.4, 35.6, 3.5,21.6 +NA,NA,a-curv-i5,2019-20,Weymouth - Ralph Talbot,03360085, 50, 20.3, 252, 50.4, 49.6, 32.1, 16.3,19.1 +NA,NA,a-curv-i5,2019-20,Weymouth - Thomas V Nash,03360060, 61, 11.4, 157, 55.4, 44.6, 30.6, 0.6,22.3 +NA,NA,a-curv-i5,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 64, 20.3, 290, 47.6, 52.4, 26.2, 12.1,14.5 +NA,NA,a-curv-i5,2019-20,Weymouth - Wessagusset,03360110, 73, 15.5, 264, 46.2, 53.8, 27.7, 0.0,24.6 +6.40174672489083,5,a-curv-i5,2019-20,Weymouth - Weymouth High School,03360505, 916, 15.4," 1,852", 49.2, 50.6, 27.7, 3.2,17.1,1830 +NA,NA,a-curv-i5,2019-20,Weymouth - William Seach,03360080, 67, 22.4, 319, 52.0, 48.0, 58.6, 19.4,19.1 +NA,NA,a-curv-i5,2019-20,Whately - Whately Elementary,03370005, 87, 15.3, 129, 48.8, 51.2, 17.8, 3.9,14.7 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 204, 20.7, 471, 49.7, 50.3, 21.4, 0.4,20.6 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - Indian Head,07800035, 168, 20.9, 502, 49.2, 50.8, 18.3, 0.6,12.4 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - John H Duval,07800030, 141, 21.8, 444, 46.9, 53.2, 28.2, 1.1,18 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - Louise A Conley,07800010, 162, 21.9, 523, 47.6, 52.4, 20.8, 1.9,12.6 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 35, 12.3, 122, 36.9, 63.1, 27.9, 0.0,45.1 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 431, 21.2," 1,156", 49.2, 50.8, 15.8, 1.0,13.1 +NA,NA,a-curv-i5,2019-20,Whitman-Hanson - Whitman Middle,07800310, 234, 24.8, 580, 49.7, 50.3, 23.6, 1.7,12.6 +NA,NA,a-curv-i5,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 604, 15.3," 1,247", 46.0, 53.8, 31.1, 1.6,19.8 +NA,NA,a-curv-i5,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 63, 19.0, 144, 52.8, 47.2, 25.7, 1.4,19.4 +NA,NA,a-curv-i5,2019-20,Wilmington - Boutwell,03420005, 78, 15.3, 143, 44.1, 55.9, 13.3, 0.7,14.7 +NA,NA,a-curv-i5,2019-20,Wilmington - North Intermediate,03420060, 135, 20.0, 246, 50.0, 50.0, 12.6, 0.0,18.7 +NA,NA,a-curv-i5,2019-20,Wilmington - Shawsheen Elementary,03420025, 171, 20.2, 346, 50.3, 49.7, 10.1, 1.2,16.2 +NA,NA,a-curv-i5,2019-20,Wilmington - West Intermediate,03420080, 134, 19.2, 231, 48.1, 52.0, 9.1, 1.3,20.8 +NA,NA,a-curv-i5,2019-20,Wilmington - Wildwood,03420015, 91, 17.7, 189, 39.2, 60.9, 13.2, 2.7,21.7 +NA,NA,a-curv-i5,2019-20,Wilmington - Wilmington High,03420505, 435, 15.7, 803, 50.8, 48.9, 8.0, 0.6,12.5 +NA,NA,a-curv-i5,2019-20,Wilmington - Wilmington Middle School,03420330, 554, 17.5, 819, 48.8, 51.2, 10.9, 0.4,18 +NA,NA,a-curv-i5,2019-20,Wilmington - Woburn Street,03420020, 214, 18.4, 390, 47.4, 52.6, 9.5, 2.1,14.9 +NA,NA,a-curv-i5,2019-20,Winchendon - Memorial,03430040, 97, 20.1, 308, 48.7, 51.3, 49.0, 1.0,18.5 +NA,NA,a-curv-i5,2019-20,Winchendon - Murdock Academy for Success,03430405, 2, 25.0, 37, 40.5, 59.5, 70.3, 0.0,48.7 +6.2153846153846155,5,a-curv-i5,2019-20,Winchendon - Murdock High School,03430515, 117, 12.6, 263, 48.7, 51.3, 38.0, 1.9,24,261 +NA,NA,a-curv-i5,2019-20,Winchendon - Murdock Middle School,03430315, 95, 17.9, 263, 49.8, 50.2, 41.8, 1.1,15.2 +NA,NA,a-curv-i5,2019-20,Winchendon - Toy Town Elementary,03430050, 121, 21.6, 287, 40.1, 59.9, 47.4, 1.4,21.6 +NA,NA,a-curv-i5,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 7, 12.1, 84, 48.8, 51.2, 45.2, 0.0,34.5 +NA,NA,a-curv-i5,2019-20,Winchester - Ambrose Elementary,03440045, 228, 19.1, 382, 49.0, 51.1, 2.1, 1.1,14.4 +NA,NA,a-curv-i5,2019-20,Winchester - Lincoln Elementary,03440005, 254, 19.4, 428, 50.7, 49.3, 2.1, 2.8,11.5 +NA,NA,a-curv-i5,2019-20,Winchester - Lynch Elementary,03440020, 292, 18.9, 560, 45.5, 54.5, 9.1, 10.9,15.9 +NA,NA,a-curv-i5,2019-20,Winchester - McCall Middle,03440305, 545, 22.1," 1,123", 50.1, 49.8, 5.3, 1.6,17 +NA,NA,a-curv-i5,2019-20,Winchester - Muraco Elementary,03440040, 217, 19.8, 397, 50.4, 49.6, 6.8, 5.0,14.4 +NA,NA,a-curv-i5,2019-20,Winchester - Vinson-Owen Elementary,03440025, 230, 20.1, 414, 50.7, 49.3, 1.9, 4.6,14.7 +6.299250374812594,5,a-curv-i5,2019-20,Winchester - Winchester High School,03440505, 667, 16.8," 1,419", 51.4, 48.6, 6.5, 0.8,16.9,1418 +NA,NA,a-curv-i5,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 100, 21.6, 430, 47.2, 52.8, 30.5, 7.2,12.1 +NA,NA,a-curv-i5,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 104, 20.2, 482, 56.4, 43.6, 30.1, 11.4,17.2 +5.849541284403669,5,a-curv-i5,2019-20,Winthrop - Winthrop High School,03460505, 218, 18.0, 596, 50.0, 50.0, 26.9, 4.4,15.3,586 +NA,NA,a-curv-i5,2019-20,Winthrop - Winthrop Middle School,03460305, 276, 22.3, 490, 50.6, 49.4, 30.6, 6.1,14.5 +NA,NA,a-curv-i5,2019-20,Woburn - Clyde Reeves,03470040, 178, 19.2, 389, 49.4, 50.6, 23.9, 9.8,20.6 +NA,NA,a-curv-i5,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 480, 17.3, 569, 46.8, 53.3, 30.4, 6.2,20.2 +NA,NA,a-curv-i5,2019-20,Woburn - Goodyear Elementary School,03470005, 179, 16.7, 301, 49.2, 50.8, 33.6, 9.0,17.3 +NA,NA,a-curv-i5,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 180, 22.1, 400, 49.3, 50.8, 18.8, 6.8,10.5 +NA,NA,a-curv-i5,2019-20,Woburn - John F Kennedy Middle School,03470405, 444, 15.7, 476, 52.3, 47.7, 31.9, 6.3,13.9 +NA,NA,a-curv-i5,2019-20,Woburn - Linscott-Rumford,03470025, 120, 16.3, 195, 56.9, 43.1, 33.3, 13.9,12.8 +NA,NA,a-curv-i5,2019-20,Woburn - Malcolm White,03470055, 170, 18.8, 320, 53.8, 46.3, 42.8, 17.5,10 +NA,NA,a-curv-i5,2019-20,Woburn - Mary D Altavesta,03470065, 146, 16.5, 241, 47.7, 52.3, 37.3, 15.4,15.8 +NA,NA,a-curv-i5,2019-20,Woburn - Shamrock,03470043, 167, 14.8, 373, 46.9, 53.1, 38.1, 9.4,35.7 +NA,NA,a-curv-i5,2019-20,Woburn - Woburn High,03470505, 647, 15.2," 1,281", 51.5, 48.4, 26.8, 8.5,16.3 +NA,NA,a-curv-i5,2019-20,Worcester - Belmont Street Community,03480020, 198, 21.7, 616, 46.8, 53.3, 82.1, 47.7,21.4 +NA,NA,a-curv-i5,2019-20,Worcester - Burncoat Middle School,03480405, 421, 17.1, 704, 48.3, 51.7, 57.8, 19.6,23.3 +NA,NA,a-curv-i5,2019-20,Worcester - Burncoat Senior High,03480503, 674, 13.1," 1,064", 49.0, 51.0, 59.5, 24.3,25.1 +NA,NA,a-curv-i5,2019-20,Worcester - Burncoat Street,03480035, 143, 14.5, 279, 50.9, 49.1, 82.1, 36.9,26.2 +NA,NA,a-curv-i5,2019-20,Worcester - Canterbury,03480045, 168, 15.5, 358, 46.1, 53.9, 72.9, 48.0,28.8 +NA,NA,a-curv-i5,2019-20,Worcester - Chandler Elementary Community,03480050, 220, 16.4, 485, 47.8, 52.2, 82.1, 51.6,17.7 +NA,NA,a-curv-i5,2019-20,Worcester - Chandler Magnet,03480052, 208, 17.8, 497, 52.1, 47.9, 71.4, 62.8,20.1 +NA,NA,a-curv-i5,2019-20,Worcester - City View,03480053, 202, 17.6, 484, 49.2, 50.8, 81.6, 44.4,22.3 +NA,NA,a-curv-i5,2019-20,Worcester - Claremont Academy,03480350, 267, 18.6, 559, 48.3, 51.7, 68.7, 34.7,10.9 +NA,NA,a-curv-i5,2019-20,Worcester - Clark St Community,03480055, 114, 15.2, 247, 52.2, 47.8, 83.4, 51.4,25.5 +NA,NA,a-curv-i5,2019-20,Worcester - Columbus Park,03480060, 196, 15.3, 415, 47.7, 52.3, 80.2, 45.3,24.1 +NA,NA,a-curv-i5,2019-20,Worcester - Doherty Memorial High,03480512, 908, 13.3," 1,448", 45.0, 55.0, 45.1, 18.3,15.2 +NA,NA,a-curv-i5,2019-20,Worcester - Elm Park Community,03480095, 160, 20.4, 442, 50.0, 50.0, 79.2, 47.5,17.7 +NA,NA,a-curv-i5,2019-20,Worcester - Flagg Street,03480090, 148, 18.9, 376, 50.8, 49.2, 25.0, 14.1,11.4 +NA,NA,a-curv-i5,2019-20,Worcester - Forest Grove Middle,03480415, 512, 18.1, 937, 47.2, 52.8, 52.6, 15.8,19 +NA,NA,a-curv-i5,2019-20,Worcester - Francis J McGrath Elementary,03480177, 96, 17.9, 232, 51.3, 48.7, 63.4, 30.2,14.2 +NA,NA,a-curv-i5,2019-20,Worcester - Gates Lane,03480110, 303, 13.6, 567, 44.3, 55.7, 61.9, 42.0,39.3 +NA,NA,a-curv-i5,2019-20,Worcester - Goddard School/Science Technical,03480100, 165, 16.8, 378, 49.5, 50.5, 80.7, 53.2,18.8 +NA,NA,a-curv-i5,2019-20,Worcester - Grafton Street,03480115, 149, 19.2, 384, 49.2, 50.8, 77.6, 40.1,14.6 +NA,NA,a-curv-i5,2019-20,Worcester - Head Start,03480002, 285, 9.5, 546, 49.8, 50.2, 86.8, 74.7,12.6 +NA,NA,a-curv-i5,2019-20,Worcester - Heard Street,03480136, 104, 18.6, 261, 51.0, 49.0, 45.6, 19.5,16.5 +NA,NA,a-curv-i5,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 146, 20.2, 408, 50.7, 49.3, 58.3, 36.0,15.7 +NA,NA,a-curv-i5,2019-20,Worcester - Lake View,03480145, 104, 23.3, 327, 47.7, 52.3, 45.6, 26.6,9.2 +NA,NA,a-curv-i5,2019-20,Worcester - Lincoln Street,03480160, 96, 16.6, 217, 47.0, 53.0, 80.2, 43.8,20.7 +NA,NA,a-curv-i5,2019-20,Worcester - May Street,03480175, 104, 22.9, 319, 50.8, 49.2, 43.9, 22.3,12.2 +NA,NA,a-curv-i5,2019-20,Worcester - Midland Street,03480185, 89, 18.9, 227, 46.3, 53.7, 47.6, 25.1,7.9 +NA,NA,a-curv-i5,2019-20,Worcester - Nelson Place,03480200, 329, 12.8, 578, 38.4, 61.6, 36.0, 22.5,35.6 +NA,NA,a-curv-i5,2019-20,Worcester - Norrback Avenue,03480202, 313, 13.1, 568, 47.2, 52.8, 52.3, 36.3,35.6 +NA,NA,a-curv-i5,2019-20,Worcester - North High,03480515, 649, 15.1," 1,154", 49.3, 50.7, 69.2, 28.6,21.2 +NA,NA,a-curv-i5,2019-20,Worcester - Quinsigamond,03480210, 313, 17.3, 739, 45.6, 54.4, 70.9, 45.6,22.5 +NA,NA,a-curv-i5,2019-20,Worcester - Rice Square,03480215, 164, 21.5, 480, 50.0, 50.0, 62.5, 37.7,17.5 +NA,NA,a-curv-i5,2019-20,Worcester - Roosevelt,03480220, 351, 14.1, 675, 48.0, 52.0, 48.2, 23.9,22.7 +NA,NA,a-curv-i5,2019-20,Worcester - South High Community,03480520, 741, 15.1," 1,308", 48.2, 51.8, 63.3, 30.0,21.2 +NA,NA,a-curv-i5,2019-20,Worcester - Sullivan Middle,03480423, 518, 16.5, 926, 50.8, 49.2, 65.6, 24.0,20 +NA,NA,a-curv-i5,2019-20,Worcester - Tatnuck,03480230, 149, 20.4, 415, 48.0, 52.1, 49.2, 28.0,18.1 +NA,NA,a-curv-i5,2019-20,Worcester - Thorndyke Road,03480235, 118, 22.0, 350, 51.1, 48.9, 48.6, 25.7,18 +NA,NA,a-curv-i5,2019-20,Worcester - Union Hill School,03480240, 158, 18.9, 403, 48.1, 51.9, 75.7, 45.2,23.8 +NA,NA,a-curv-i5,2019-20,Worcester - University Pk Campus School,03480285, 134, 17.1, 243, 51.9, 48.2, 65.0, 21.0,12.4 +NA,NA,a-curv-i5,2019-20,Worcester - Vernon Hill School,03480280, 216, 18.0, 539, 46.0, 54.0, 76.4, 40.8,22.5 +NA,NA,a-curv-i5,2019-20,Worcester - Wawecus Road School,03480026, 114, 10.1, 153, 47.7, 52.3, 63.4, 32.0,33.3 +NA,NA,a-curv-i5,2019-20,Worcester - West Tatnuck,03480260, 162, 16.3, 367, 49.1, 51.0, 30.0, 24.3,18.5 +NA,NA,a-curv-i5,2019-20,Worcester - Woodland Academy,03480030, 208, 19.8, 553, 50.3, 49.7, 77.6, 57.1,16.6 +NA,NA,a-curv-i5,2019-20,Worcester - Worcester Arts Magnet School,03480225, 127, 23.3, 402, 52.0, 48.0, 33.1, 22.1,18.4 +NA,NA,a-curv-i5,2019-20,Worcester - Worcester East Middle,03480420, 517, 15.6, 739, 51.7, 48.3, 71.2, 30.6,18.1 +NA,NA,a-curv-i5,2019-20,Worcester - Worcester Technical High,03480605, 710, 16.0," 1,468", 55.8, 44.2, 46.2, 5.5,11.4 +NA,NA,a-curv-i5,2019-20,Worthington - R. H. Conwell,03490010, 50, 10.6, 94, 48.9, 51.1, 38.3, 0.0,20.2 +NA,NA,a-curv-i5,2019-20,Wrentham - Charles E Roderick,03500010, 193, 18.9, 408, 48.8, 51.2, 10.8, 2.0,20.1 +NA,NA,a-curv-i5,2019-20,Wrentham - Delaney,03500003, 229, 17.7, 559, 48.1, 51.9, 9.7, 2.9,19.3 +NA,NA,a-curv-i5,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 707, 19.0," 1,421", 52.6, 47.4, 9.9, 12.2,36.2 +NA,NA,a-curv-i5,2018-19,Abington - Abington Early Education Program,00010001, 20, 22.6, 113, 46.9, 53.1, 6.2, 33.6,25.7 +NA,NA,a-curv-i5,2018-19,Abington - Abington High,00010505, 267, 16.5, 557, 51.2, 48.8, 2.7, 11.1,19.9 +NA,NA,a-curv-i5,2018-19,Abington - Abington Middle School,00010405, 366, 23.2, 691, 47.6, 52.4, 4.6, 14.0,25.2 +NA,NA,a-curv-i5,2018-19,Abington - Beaver Brook Elementary,00010020, 264, 21.5, 462, 50.0, 50.0, 9.7, 16.5,21.2 +NA,NA,a-curv-i5,2018-19,Abington - Woodsdale Elementary School,00010015, 143, 23.1, 300, 49.0, 51.0, 7.7, 18.3,25 +NA,NA,a-curv-i5,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 188, 20.3, 535, 49.2, 50.8, 12.7, 24.9,35.9 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 718, 18.1," 1,832", 48.3, 51.6, 0.9, 9.6,5.7 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 163, 20.4, 470, 52.6, 47.5, 5.1, 17.5,5.3 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 127, 22.7, 409, 46.7, 53.3, 4.7, 16.1,6.4 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 12, 10.1, 111, 45.1, 55.0, 14.4, 43.2,10.8 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Luther Conant School,06000030, 143, 22.3, 449, 49.2, 50.8, 6.7, 16.7,7.4 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 170, 21.6, 519, 49.3, 50.7, 4.4, 17.3,8.5 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Merriam School,06000010, 156, 22.3, 493, 48.5, 51.5, 3.9, 14.8,5.5 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 123, 21.7, 374, 45.5, 54.6, 9.9, 16.8,8.8 +NA,NA,a-curv-i5,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 567, 22.6, 937, 45.9, 54.1, 1.1, 15.2,6 +NA,NA,a-curv-i5,2018-19,Acushnet - Acushnet Elementary School,00030025, 271, 20.7, 582, 50.2, 49.8, 1.6, 13.8,23.9 +NA,NA,a-curv-i5,2018-19,Acushnet - Albert F Ford Middle School,00030305, 292, 19.5, 443, 47.0, 53.1, 0.2, 12.6,22.1 +NA,NA,a-curv-i5,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 162, 16.0, 381, 48.8, 51.2, 0.3, 27.0,53 +7.101754385964912,5,a-curv-i5,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 342, 11.2, 375, 46.9, 53.1, 1.3, 23.2,42.7,384 +NA,NA,a-curv-i5,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 285, 18.0, 407, 49.1, 50.9, 0.3, 25.8,54.3 +NA,NA,a-curv-i5,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 499, 18.8, 970, 48.4, 51.7, 4.5, 6.5,7 +NA,NA,a-curv-i5,2018-19,Agawam - Agawam Early Childhood Center,00050003, 18, 11.6, 187, 47.1, 52.9, 0.0, 47.1,33.2 +NA,NA,a-curv-i5,2018-19,Agawam - Agawam High,00050505, 692, 14.0," 1,088", 50.5, 49.5, 1.7, 12.4,21.3 +NA,NA,a-curv-i5,2018-19,Agawam - Agawam Junior High,00050405, 805, 11.3, 584, 46.1, 53.9, 1.7, 13.7,30 +NA,NA,a-curv-i5,2018-19,Agawam - Benjamin J Phelps,00050020, 233, 15.9, 348, 42.2, 57.8, 8.1, 11.8,29 +NA,NA,a-curv-i5,2018-19,Agawam - Clifford M Granger,00050010, 139, 19.5, 254, 49.2, 50.8, 11.0, 22.4,35 +NA,NA,a-curv-i5,2018-19,Agawam - James Clark School,00050030, 173, 19.4, 321, 47.4, 52.7, 8.7, 18.1,30.2 +NA,NA,a-curv-i5,2018-19,Agawam - Roberta G. Doering School,00050303, 442, 17.8, 590, 51.2, 48.8, 4.6, 17.5,31.2 +NA,NA,a-curv-i5,2018-19,Agawam - Robinson Park,00050025, 226, 16.7, 359, 50.4, 49.6, 13.4, 13.4,36.5 +NA,NA,a-curv-i5,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 164, 24.7, 439, 55.8, 44.2, 24.2, 20.7,58.8 +NA,NA,a-curv-i5,2018-19,Amesbury - Amesbury Elementary,00070005, 153, 19.4, 388, 45.1, 54.9, 0.0, 24.0,21.4 +NA,NA,a-curv-i5,2018-19,Amesbury - Amesbury High,00070505, 363, 15.4, 569, 48.2, 51.9, 0.7, 13.2,14.4 +7.215384615384616,5,a-curv-i5,2018-19,Amesbury - Amesbury Innovation High School,00070515, 52, 10.1, 59, 37.3, 61.0, 0.0, 54.2,45.8,51 +NA,NA,a-curv-i5,2018-19,Amesbury - Amesbury Middle,00070013, 377, 15.9, 651, 49.0, 51.0, 1.7, 20.1,23 +NA,NA,a-curv-i5,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 189, 18.0, 421, 44.9, 55.1, 3.6, 26.8,30.9 +NA,NA,a-curv-i5,2018-19,Amherst - Crocker Farm Elementary,00080009, 111, 19.5, 390, 45.1, 54.6, 18.2, 23.6,31.5 +NA,NA,a-curv-i5,2018-19,Amherst - Fort River Elementary,00080020, 111, 19.1, 318, 49.1, 50.9, 14.8, 26.7,36.5 +NA,NA,a-curv-i5,2018-19,Amherst - Wildwood Elementary,00080050, 136, 19.9, 418, 48.8, 51.2, 14.1, 18.7,26.8 +NA,NA,a-curv-i5,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 631, 12.6, 924, 49.7, 50.1, 5.3, 21.2,22.4 +NA,NA,a-curv-i5,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 416, 15.9, 427, 47.5, 52.5, 10.3, 23.9,25.1 +NA,NA,a-curv-i5,2018-19,Andover - Andover High,00090505," 1,060", 15.1," 1,789", 52.5, 47.5, 0.8, 16.1,8.7 +NA,NA,a-curv-i5,2018-19,Andover - Andover West Middle,00090310, 312, 17.8, 526, 49.1, 51.0, 1.9, 18.1,9.7 +NA,NA,a-curv-i5,2018-19,Andover - Bancroft Elementary,00090003, 192, 21.2, 594, 47.6, 52.4, 2.5, 18.0,8.9 +NA,NA,a-curv-i5,2018-19,Andover - Doherty Middle,00090305, 320, 19.3, 572, 52.1, 47.9, 0.9, 23.1,7.3 +NA,NA,a-curv-i5,2018-19,Andover - Henry C Sanborn Elementary,00090010, 130, 20.4, 387, 47.3, 52.7, 10.6, 16.0,7.5 +NA,NA,a-curv-i5,2018-19,Andover - High Plain Elementary,00090004, 171, 21.9, 549, 47.2, 52.6, 12.2, 20.2,7.8 +NA,NA,a-curv-i5,2018-19,Andover - Shawsheen School,00090005, 10, 9.2, 92, 26.1, 73.9, 9.8, 57.6,12 +NA,NA,a-curv-i5,2018-19,Andover - South Elementary,00090020, 164, 20.2, 483, 50.1, 49.9, 6.2, 18.8,3.3 +NA,NA,a-curv-i5,2018-19,Andover - West Elementary,00090025, 205, 20.1, 601, 52.3, 47.8, 4.2, 26.0,5.2 +NA,NA,a-curv-i5,2018-19,Andover - Wood Hill Middle School,00090350, 244, 17.3, 419, 49.9, 50.1, 3.6, 22.7,8.8 +NA,NA,a-curv-i5,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 153, 30.1, 481, 47.2, 52.8, 30.6, 23.1,58.2 +NA,NA,a-curv-i5,2018-19,Arlington - Arlington High,00100505, 808, 14.7," 1,387", 51.2, 48.6, 1.6, 12.0,8.6 +NA,NA,a-curv-i5,2018-19,Arlington - Brackett,00100010, 189, 19.4, 524, 47.0, 53.1, 4.0, 13.2,4 +NA,NA,a-curv-i5,2018-19,Arlington - Cyrus E Dallin,00100025, 189, 18.1, 488, 48.6, 51.4, 2.9, 13.5,4.3 +NA,NA,a-curv-i5,2018-19,Arlington - Gibbs School,00100305, 266, 19.4, 464, 45.9, 54.1, 3.2, 15.7,10.3 +NA,NA,a-curv-i5,2018-19,Arlington - Hardy,00100030, 154, 20.6, 454, 45.6, 54.4, 10.8, 14.1,6 +NA,NA,a-curv-i5,2018-19,Arlington - John A Bishop,00100005, 133, 23.7, 451, 45.7, 54.3, 7.1, 10.6,4.2 +NA,NA,a-curv-i5,2018-19,Arlington - M Norcross Stratton,00100055, 175, 17.7, 428, 50.0, 50.0, 5.8, 21.7,9.1 +NA,NA,a-curv-i5,2018-19,Arlington - Menotomy Preschool,00100038, 7, 15.9, 111, 32.4, 67.6, 0.0, 59.5,24.3 +NA,NA,a-curv-i5,2018-19,Arlington - Ottoson Middle,00100410, 477, 18.9, 868, 54.6, 45.4, 3.5, 18.7,9.1 +NA,NA,a-curv-i5,2018-19,Arlington - Peirce,00100045, 98, 21.6, 303, 49.2, 50.8, 9.6, 14.5,7.6 +NA,NA,a-curv-i5,2018-19,Arlington - Thompson,00100050, 168, 21.5, 515, 49.7, 50.3, 9.7, 14.8,15.7 +NA,NA,a-curv-i5,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 271, 19.3, 543, 50.5, 49.5, 1.7, 24.5,17.5 +NA,NA,a-curv-i5,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 91, 20.7, 189, 50.8, 49.2, 1.6, 7.9,14.8 +6.5863874345549736,5,a-curv-i5,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 382, 15.1, 669, 50.2, 49.6, 1.1, 17.9,14.4,675 +NA,NA,a-curv-i5,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 488, 18.2, 579, 49.9, 50.1, 0.7, 19.9,15.4 +NA,NA,a-curv-i5,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 203, 21.5, 391, 45.5, 54.5, 1.8, 16.9,14.8 +NA,NA,a-curv-i5,2018-19,Ashland - Ashland High,00140505, 404, 16.6, 844, 53.3, 46.7, 3.4, 11.7,13.4 +NA,NA,a-curv-i5,2018-19,Ashland - Ashland Middle,00140405, 365, 20.0, 630, 50.6, 49.4, 5.6, 17.6,15.9 +NA,NA,a-curv-i5,2018-19,Ashland - David Mindess,00140015, 275, 24.2, 636, 50.9, 49.1, 8.7, 19.7,15.7 +NA,NA,a-curv-i5,2018-19,Ashland - Henry E Warren Elementary,00140010, 202, 20.5, 654, 48.3, 51.7, 9.6, 17.0,14.8 +NA,NA,a-curv-i5,2018-19,Ashland - William Pittaway Elementary,00140005, 29, 4.7, 126, 39.7, 60.3, 0.0, 37.3,8.7 +6.595665634674923,5,a-curv-i5,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 646, 16.4," 1,133", 40.2, 59.8, 2.9, 28.1,24.9,1134 +NA,NA,a-curv-i5,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 215, 19.8, 610, 45.3, 54.8, 2.5, 29.5,56.1 +NA,NA,a-curv-i5,2018-19,Athol-Royalston - Athol High,06150505, 168, 13.5, 331, 47.7, 52.3, 0.6, 23.9,47.1 +NA,NA,a-curv-i5,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 287, 20.4, 426, 46.7, 53.3, 2.8, 25.6,52.1 +NA,NA,a-curv-i5,2018-19,Athol-Royalston - Royalston Community School,06150050, 54, 20.4, 142, 47.9, 52.1, 0.0, 13.4,34.5 +NA,NA,a-curv-i5,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 474, 24.5," 1,282", 52.3, 47.7, 10.9, 14.6,41.7 +NA,NA,a-curv-i5,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 207, 19.3, 399, 48.9, 51.1, 6.5, 17.8,33.3 +NA,NA,a-curv-i5,2018-19,Attleboro - Attleboro Community Academy,00160515, 59, 9.3, 89, 36.0, 64.0, 2.3, 9.0,56.2 +NA,NA,a-curv-i5,2018-19,Attleboro - Attleboro High,00160505, 860, 20.8," 1,801", 47.3, 52.6, 2.8, 12.6,25.4 +NA,NA,a-curv-i5,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 197, 24.0, 600, 49.0, 50.8, 4.7, 15.5,40 +NA,NA,a-curv-i5,2018-19,Attleboro - Early Learning Center,00160008, 20, 10.5, 209, 40.2, 59.8, 1.9, 55.5,32.5 +NA,NA,a-curv-i5,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 190, 24.0, 456, 46.5, 53.5, 7.0, 13.6,30.7 +NA,NA,a-curv-i5,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 190, 23.8, 453, 51.0, 49.0, 13.3, 15.7,30.7 +NA,NA,a-curv-i5,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 287, 15.4, 426, 47.0, 53.1, 7.5, 26.8,37.8 +NA,NA,a-curv-i5,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 221, 25.9, 659, 46.6, 53.4, 0.9, 15.8,21.7 +NA,NA,a-curv-i5,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 180, 22.6, 406, 46.3, 53.7, 9.4, 17.7,31.8 +NA,NA,a-curv-i5,2018-19,Attleboro - Wamsutta Middle School,00160320, 210, 22.9, 568, 46.0, 54.1, 1.8, 15.9,27.6 +NA,NA,a-curv-i5,2018-19,Auburn - Auburn Middle,00170305, 362, 19.0, 629, 46.3, 53.7, 3.2, 8.9,18.6 +NA,NA,a-curv-i5,2018-19,Auburn - Auburn Senior High,00170505, 617, 16.1, 803, 53.3, 46.7, 2.4, 8.8,14 +NA,NA,a-curv-i5,2018-19,Auburn - Bryn Mawr,00170010, 116, 21.3, 303, 46.5, 53.5, 3.6, 15.2,20.1 +NA,NA,a-curv-i5,2018-19,Auburn - Pakachoag School,00170025, 99, 22.1, 310, 45.5, 54.5, 3.9, 11.6,18.7 +NA,NA,a-curv-i5,2018-19,Auburn - Swanson Road Intermediate School,00170030, 203, 24.1, 615, 50.9, 49.1, 5.4, 10.4,19 +7.092957746478874,5,a-curv-i5,2018-19,Avon - Avon Middle High School,00180510, 284, 11.2, 327, 46.8, 53.2, 1.8, 15.9,31.8,322 +NA,NA,a-curv-i5,2018-19,Avon - Ralph D Butler,00180010, 98, 18.3, 404, 48.0, 52.0, 4.2, 20.1,26.5 +6.598198198198199,5,a-curv-i5,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 222, 17.0, 387, 52.7, 47.3, 2.1, 13.7,21.2,389 +NA,NA,a-curv-i5,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 216, 21.5, 425, 48.2, 51.8, 3.8, 20.7,25.4 +NA,NA,a-curv-i5,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 195, 18.1, 378, 43.4, 56.6, 1.3, 26.2,20.9 +NA,NA,a-curv-i5,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 253, 20.2, 536, 47.8, 52.2, 7.1, 20.2,29.7 +NA,NA,a-curv-i5,2018-19,Barnstable - Barnstable High,00200505," 1,005", 13.9," 1,757", 51.9, 48.1, 7.6, 14.7,28.5 +NA,NA,a-curv-i5,2018-19,Barnstable - Barnstable Intermediate School,00200315, 409, 18.3, 784, 48.0, 52.0, 8.9, 17.6,36.6 +NA,NA,a-curv-i5,2018-19,Barnstable - Barnstable United Elementary School,00200050, 509, 17.3, 825, 47.0, 53.0, 11.9, 13.9,37.2 +NA,NA,a-curv-i5,2018-19,Barnstable - Centerville Elementary,00200010, 68, 23.8, 252, 45.6, 54.4, 13.9, 17.1,32.5 +NA,NA,a-curv-i5,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 20, 9.9, 198, 37.4, 62.6, 16.2, 48.0,42.4 +NA,NA,a-curv-i5,2018-19,Barnstable - Hyannis West Elementary,00200025, 110, 19.7, 341, 54.3, 45.8, 41.1, 14.4,58.9 +NA,NA,a-curv-i5,2018-19,Barnstable - West Barnstable Elementary,00200005, 64, 21.8, 263, 43.0, 57.0, 11.0, 12.2,33.5 +NA,NA,a-curv-i5,2018-19,Barnstable - West Villages Elementary School,00200045, 109, 20.4, 422, 47.9, 51.9, 4.7, 18.7,27.3 +NA,NA,a-curv-i5,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 85, 18.1, 286, 49.7, 50.4, 25.2, 9.1,46.9 +NA,NA,a-curv-i5,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 391, 14.8, 493, 49.9, 50.1, 10.8, 20.3,66.1 +NA,NA,a-curv-i5,2018-19,Bedford - Bedford High,00230505, 541, 13.7, 883, 48.6, 51.4, 1.8, 17.2,7.8 +NA,NA,a-curv-i5,2018-19,Bedford - John Glenn Middle,00230305, 381, 16.8, 575, 46.1, 53.9, 4.4, 16.4,10.4 +NA,NA,a-curv-i5,2018-19,Bedford - Lt Elezer Davis,00230010, 81, 22.5, 596, 49.8, 50.2, 12.9, 15.3,10.1 +NA,NA,a-curv-i5,2018-19,Bedford - Lt Job Lane School,00230012, 152, 20.5, 616, 50.3, 49.7, 7.8, 18.8,7 +NA,NA,a-curv-i5,2018-19,Belchertown - Belchertown High,00240505, 420, 14.6, 690, 48.4, 51.6, 0.1, 13.5,14.8 +NA,NA,a-curv-i5,2018-19,Belchertown - Chestnut Hill Community School,00240006, 233, 21.2, 533, 48.2, 51.8, 0.6, 23.6,19.1 +NA,NA,a-curv-i5,2018-19,Belchertown - Cold Spring,00240005, 36, 16.5, 191, 50.3, 49.7, 2.6, 30.4,25.1 +NA,NA,a-curv-i5,2018-19,Belchertown - Jabish Middle School,00240025, 291, 15.7, 389, 51.7, 48.3, 0.8, 18.8,19 +NA,NA,a-curv-i5,2018-19,Belchertown - Swift River Elementary,00240018, 234, 18.6, 483, 49.1, 50.9, 1.7, 20.3,18.2 +NA,NA,a-curv-i5,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 8, 13.0, 104, 47.1, 52.9, 0.0, 37.5,20.2 +6.254545454545455,5,a-curv-i5,2018-19,Bellingham - Bellingham High School,00250505, 341, 18.5, 753, 48.6, 51.4, 1.5, 19.1,15.5,744 +NA,NA,a-curv-i5,2018-19,Bellingham - Bellingham Memorial School,00250315, 286, 19.9, 710, 52.3, 47.8, 1.8, 18.6,19.3 +NA,NA,a-curv-i5,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 68, 20.3, 346, 49.7, 50.3, 1.2, 13.9,24 +NA,NA,a-curv-i5,2018-19,Bellingham - Keough Memorial Academy,00250510, 48, 8.5, 39, 48.7, 43.6, 0.0, 94.9,33.3 +NA,NA,a-curv-i5,2018-19,Bellingham - Stall Brook,00250025, 63, 18.2, 285, 48.1, 51.9, 5.3, 20.4,19 +NA,NA,a-curv-i5,2018-19,Belmont - Belmont High,00260505, 465, 20.4," 1,314", 50.9, 49.1, 1.3, 6.5,6.5 +NA,NA,a-curv-i5,2018-19,Belmont - Daniel Butler,00260015, 138, 22.6, 382, 46.3, 53.7, 18.1, 10.5,8.6 +NA,NA,a-curv-i5,2018-19,Belmont - Mary Lee Burbank,00260010, 162, 21.5, 429, 49.4, 50.6, 13.8, 7.5,5.4 +NA,NA,a-curv-i5,2018-19,Belmont - Roger E Wellington,00260035, 208, 22.6, 645, 48.1, 51.9, 15.2, 13.0,7.9 +NA,NA,a-curv-i5,2018-19,Belmont - Winn Brook,00260005, 162, 23.4, 465, 46.0, 54.0, 15.5, 8.2,3.7 +NA,NA,a-curv-i5,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 684, 21.8," 1,438", 49.8, 50.2, 4.5, 10.7,7.5 +NA,NA,a-curv-i5,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 65, 23.1, 347, 51.3, 48.7, 5.8, 16.7,49.3 +NA,NA,a-curv-i5,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 152, 25.9, 460, 52.8, 47.2, 5.7, 14.1,7.6 +NA,NA,a-curv-i5,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 146, 18.2, 332, 52.7, 47.3, 23.8, 15.1,66 +NA,NA,a-curv-i5,2018-19,Berkley - Berkley Community School,00270010, 133, 20.8, 504, 51.4, 48.6, 1.6, 14.5,18.1 +NA,NA,a-curv-i5,2018-19,Berkley - Berkley Middle School,00270305, 191, 18.8, 399, 51.1, 48.9, 0.3, 15.3,17.3 +NA,NA,a-curv-i5,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 142, 18.6, 368, 46.7, 53.0, 0.8, 24.5,43.8 +NA,NA,a-curv-i5,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 343, 12.3, 535, 49.5, 50.5, 2.1, 14.0,20.9 +NA,NA,a-curv-i5,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 228, 16.5, 341, 47.2, 52.8, 3.8, 18.2,30.8 +NA,NA,a-curv-i5,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 219, 15.5, 335, 49.9, 50.2, 6.6, 25.4,35.2 +NA,NA,a-curv-i5,2018-19,Berlin - Berlin Memorial,00280005, 126, 14.7, 189, 45.0, 55.0, 3.7, 12.7,17.5 +NA,NA,a-curv-i5,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 291, 16.5, 577, 47.0, 52.9, 1.6, 17.0,11.6 +NA,NA,a-curv-i5,2018-19,Beverly - Ayers/Ryal Side School,00300055, 80, 21.4, 427, 49.4, 50.6, 8.7, 9.1,25.3 +NA,NA,a-curv-i5,2018-19,Beverly - Beverly High,00300505, 553, 20.1," 1,252", 47.7, 52.2, 1.5, 15.3,22.2 +NA,NA,a-curv-i5,2018-19,Beverly - Beverly Middle School,00300305, 752, 24.3," 1,433", 47.9, 52.1, 2.2, 18.7,26 +NA,NA,a-curv-i5,2018-19,Beverly - Centerville Elementary,00300010, 72, 17.0, 307, 50.2, 49.8, 6.5, 22.8,39.1 +NA,NA,a-curv-i5,2018-19,Beverly - Cove Elementary,00300015, 114, 15.1, 430, 49.1, 50.9, 6.3, 19.1,25.8 +NA,NA,a-curv-i5,2018-19,Beverly - Hannah Elementary,00300033, 70, 18.5, 324, 46.0, 54.0, 5.3, 20.1,21 +NA,NA,a-curv-i5,2018-19,Beverly - McKeown School,00300002, 17, 9.2, 156, 35.3, 64.7, 0.0, 65.4,36.5 +NA,NA,a-curv-i5,2018-19,Beverly - North Beverly Elementary,00300040, 74, 16.9, 314, 47.8, 52.2, 5.4, 19.1,23.9 +6.104964539007092,5,a-curv-i5,2018-19,Billerica - Billerica Memorial High School,00310505, 564, 17.6," 1,390", 48.1, 51.9, 0.9, 16.1,14,1336 +NA,NA,a-curv-i5,2018-19,Billerica - Eugene C Vining,00310030, 98, 16.3, 180, 42.2, 57.8, 0.0, 21.7,25 +NA,NA,a-curv-i5,2018-19,Billerica - Frederick J Dutile,00310007, 141, 17.8, 285, 52.3, 47.7, 0.4, 21.1,17.2 +NA,NA,a-curv-i5,2018-19,Billerica - Hajjar Elementary,00310026, 212, 19.9, 476, 51.3, 48.7, 5.7, 17.2,22.3 +NA,NA,a-curv-i5,2018-19,Billerica - John F Kennedy,00310012, 159, 17.7, 318, 49.4, 50.6, 0.3, 15.4,12.9 +NA,NA,a-curv-i5,2018-19,Billerica - Locke Middle,00310310, 351, 15.1, 524, 48.9, 51.2, 0.0, 18.7,14.5 +NA,NA,a-curv-i5,2018-19,Billerica - Marshall Middle School,00310305, 346, 18.6, 660, 49.6, 50.5, 3.0, 23.3,18.2 +NA,NA,a-curv-i5,2018-19,Billerica - Parker,00310015, 221, 19.9, 497, 45.7, 54.3, 0.0, 21.1,17.5 +NA,NA,a-curv-i5,2018-19,Billerica - Thomas Ditson,00310005, 254, 17.6, 505, 49.3, 50.7, 3.8, 18.6,16.8 +NA,NA,a-curv-i5,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 806, 17.1," 1,228", 50.3, 49.7, 0.2, 9.1,9.6 +NA,NA,a-curv-i5,2018-19,Blackstone-Millville - A F Maloney,06220015, 108, 26.5, 318, 45.3, 54.7, 4.1, 19.8,23.6 +NA,NA,a-curv-i5,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 205, 14.5, 437, 49.2, 50.8, 1.8, 14.0,20.6 +NA,NA,a-curv-i5,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 212, 19.9, 423, 49.7, 50.1, 0.2, 13.5,20.3 +NA,NA,a-curv-i5,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 103, 22.8, 271, 49.5, 50.6, 5.2, 18.8,27.7 +NA,NA,a-curv-i5,2018-19,Blackstone-Millville - Millville Elementary,06220010, 111, 17.8, 281, 45.9, 54.1, 0.7, 22.4,26 +NA,NA,a-curv-i5,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 433, 14.6, 849, 43.8, 56.2, 0.7, 25.3,21.1 +NA,NA,a-curv-i5,2018-19,Boston - Another Course To College,00350541, 111, 15.0, 226, 50.4, 49.6, 12.4, 20.4,56.6 +NA,NA,a-curv-i5,2018-19,Boston - Baldwin Early Learning Center,00350003, 69, 12.5, 153, 39.2, 60.8, 43.8, 25.5,38.6 +NA,NA,a-curv-i5,2018-19,Boston - Beethoven,00350021, 143, 18.5, 331, 53.8, 46.2, 29.6, 20.5,35.4 +NA,NA,a-curv-i5,2018-19,Boston - Blackstone,00350390, 291, 16.4, 593, 47.4, 52.6, 48.7, 27.8,71.7 +NA,NA,a-curv-i5,2018-19,Boston - Boston Adult Academy,00350548, 76, 13.7, 214, 43.5, 56.5, 76.6, 8.4,52.3 +NA,NA,a-curv-i5,2018-19,Boston - Boston Arts Academy,00350546, 204, 14.5, 447, 66.0, 33.8, 5.4, 17.7,45.6 +6.08955223880597,5,a-curv-i5,2018-19,Boston - Boston Collaborative High School,00350755, 67, 11.0, 233, 48.1, 51.9, 23.6, 17.2,69.5,160 +NA,NA,a-curv-i5,2018-19,Boston - Boston Community Leadership Academy,00350558, 160, 17.4, 466, 46.4, 53.7, 28.3, 23.4,57.5 +6.7700000000000005,5,a-curv-i5,2018-19,Boston - Boston International High School,00350507, 240, 13.2, 433, 49.4, 50.6, 94.5, 5.1,69.1,369 +NA,NA,a-curv-i5,2018-19,Boston - Boston Latin,00350560, 773, 26.5," 2,444", 54.4, 45.5, 0.2, 2.5,16.3 +NA,NA,a-curv-i5,2018-19,Boston - Boston Latin Academy,00350545, 451, 24.9," 1,737", 59.5, 40.4, 0.0, 4.3,31.8 +NA,NA,a-curv-i5,2018-19,Boston - Boston Teachers Union School,00350012, 118, 19.1, 286, 48.3, 51.8, 15.0, 28.7,36.4 +NA,NA,a-curv-i5,2018-19,Boston - Brighton High,00350505, 219, 17.5, 607, 41.0, 59.0, 45.5, 17.5,67.6 +NA,NA,a-curv-i5,2018-19,Boston - Carter School,00350036, 2, 27.0, 27, 40.7, 59.3, 29.6, 100.0,81.5 +NA,NA,a-curv-i5,2018-19,Boston - Charles H Taylor,00350054, 346, 17.3, 550, 48.9, 51.1, 38.4, 17.5,70.6 +NA,NA,a-curv-i5,2018-19,Boston - Charles Sumner,00350052, 339, 18.6, 564, 45.7, 54.3, 45.2, 22.0,56 +NA,NA,a-curv-i5,2018-19,Boston - Charlestown High,00350515, 769, 12.7, 909, 40.0, 59.9, 42.0, 26.5,63.7 +NA,NA,a-curv-i5,2018-19,Boston - Clarence R Edwards Middle,00350430, 200, 16.7, 357, 42.9, 57.1, 37.5, 37.0,67.2 +NA,NA,a-curv-i5,2018-19,Boston - Community Academy,00350518, 40, 12.2, 72, 48.6, 51.4, 16.7, 36.1,68.1 +NA,NA,a-curv-i5,2018-19,Boston - Community Academy of Science and Health,00350581, 144, 15.2, 395, 48.6, 51.4, 32.4, 36.5,67.9 +NA,NA,a-curv-i5,2018-19,Boston - Condon K-8,00350146, 519, 17.9, 848, 47.1, 53.0, 32.2, 27.8,67.9 +NA,NA,a-curv-i5,2018-19,Boston - Curley K-8 School,00350020, 524, 17.2, 987, 47.7, 52.3, 30.9, 31.0,51 +NA,NA,a-curv-i5,2018-19,Boston - Curtis Guild,00350062, 146, 14.6, 265, 48.3, 51.7, 60.4, 25.7,58.5 +NA,NA,a-curv-i5,2018-19,Boston - Dante Alighieri Montessori School,00350066, 95, 7.2, 97, 56.7, 43.3, 51.6, 14.4,30.9 +NA,NA,a-curv-i5,2018-19,Boston - David A Ellis,00350072, 194, 14.9, 390, 50.5, 49.5, 39.7, 17.4,80.3 +NA,NA,a-curv-i5,2018-19,Boston - Dearborn,00350074, 199, 19.3, 427, 49.2, 50.8, 34.0, 17.1,63 +NA,NA,a-curv-i5,2018-19,Boston - Dennis C Haley,00350077, 180, 21.4, 422, 47.9, 52.1, 22.8, 38.2,42.7 +NA,NA,a-curv-i5,2018-19,Boston - Donald Mckay,00350080, 297, 23.0, 811, 49.8, 50.2, 48.3, 15.2,59.7 +NA,NA,a-curv-i5,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 80, 16.7, 200, 44.0, 56.0, 58.5, 27.0,69 +NA,NA,a-curv-i5,2018-19,Boston - Dr. William Henderson Lower,00350266, 51, 21.9, 219, 53.4, 46.6, 16.4, 27.9,37.9 +NA,NA,a-curv-i5,2018-19,Boston - Dr. William Henderson Upper,00350426, 231, 20.4, 649, 45.6, 54.4, 10.0, 41.6,51.2 +NA,NA,a-curv-i5,2018-19,Boston - ELC - West Zone,00350006, 44, 15.1, 109, 45.0, 55.1, 34.9, 25.7,55.1 +NA,NA,a-curv-i5,2018-19,Boston - East Boston Early Childhood Center,00350009, 78, 15.0, 195, 50.3, 49.7, 51.3, 21.0,52.8 +NA,NA,a-curv-i5,2018-19,Boston - East Boston High,00350530, 451, 15.9," 1,257", 44.1, 55.9, 38.9, 18.1,55.7 +NA,NA,a-curv-i5,2018-19,Boston - Edison K-8,00350375, 396, 14.6, 623, 45.6, 54.4, 46.9, 24.7,62 +NA,NA,a-curv-i5,2018-19,Boston - Edward Everett,00350088, 101, 17.4, 255, 50.2, 49.8, 19.6, 21.6,66.7 +NA,NA,a-curv-i5,2018-19,Boston - Eliot Elementary,00350096, 427, 19.5, 686, 47.7, 52.3, 7.7, 18.4,16.8 +NA,NA,a-curv-i5,2018-19,Boston - Ellis Mendell,00350100, 107, 17.9, 272, 50.4, 49.3, 20.2, 22.8,42.7 +6.081481481481481,5,a-curv-i5,2018-19,Boston - Excel High School,00350522, 216, 14.8, 520, 40.6, 59.4, 31.9, 22.9,63.1,518 +4.182278481012658,4.18,a-curv-i5,2018-19,Boston - Fenway High School,00350540, 79, 21.6, 371, 52.3, 47.7, 22.6, 18.6,55.3,377 +NA,NA,a-curv-i5,2018-19,Boston - Franklin D Roosevelt,00350116, 140, 21.5, 446, 48.9, 51.1, 17.5, 30.3,45.7 +NA,NA,a-curv-i5,2018-19,Boston - Gardner Pilot Academy,00350326, 148, 18.2, 388, 46.4, 53.6, 43.8, 27.6,59.3 +NA,NA,a-curv-i5,2018-19,Boston - George H Conley,00350122, 119, 12.7, 212, 45.3, 54.7, 26.9, 42.5,47.2 +6.642857142857143,5,a-curv-i5,2018-19,Boston - Greater Egleston Community High School,00350543, 56, 6.6, 81, 48.2, 51.9, 16.1, 21.0,69.1,95 +NA,NA,a-curv-i5,2018-19,Boston - Harvard-Kent,00350200, 230, 15.1, 432, 45.8, 54.2, 41.9, 28.5,69.2 +NA,NA,a-curv-i5,2018-19,Boston - Haynes Early Education Center,00350010, 89, 15.9, 207, 42.5, 57.5, 49.3, 20.3,69.1 +NA,NA,a-curv-i5,2018-19,Boston - Henry Grew,00350135, 87, 20.1, 241, 51.0, 49.0, 19.5, 12.5,65.6 +NA,NA,a-curv-i5,2018-19,Boston - Higginson,00350015, 84, 14.0, 173, 48.0, 52.0, 44.5, 33.5,78 +NA,NA,a-curv-i5,2018-19,Boston - Higginson/Lewis K-8,00350377, 176, 11.3, 256, 41.4, 58.6, 26.6, 39.1,84.8 +NA,NA,a-curv-i5,2018-19,Boston - Horace Mann School for the Deaf,00350750, 145, 4.9, 88, 37.5, 62.5, 68.2, 98.9,73.9 +NA,NA,a-curv-i5,2018-19,Boston - Hugh Roe O'Donnell,00350141, 101, 21.2, 276, 50.0, 50.0, 68.8, 12.3,60.5 +NA,NA,a-curv-i5,2018-19,Boston - Jackson Mann,00350013, 383, 14.6, 600, 41.7, 58.3, 41.7, 30.7,66.5 +NA,NA,a-curv-i5,2018-19,Boston - James J Chittick,00350154, 182, 13.0, 273, 41.8, 58.2, 24.9, 38.8,68.5 +NA,NA,a-curv-i5,2018-19,Boston - James Otis,00350156, 196, 20.0, 396, 50.8, 49.2, 57.1, 10.9,52.5 +NA,NA,a-curv-i5,2018-19,Boston - James P Timilty Middle,00350485, 150, 18.0, 319, 54.9, 45.1, 28.2, 27.0,70.5 +NA,NA,a-curv-i5,2018-19,Boston - James W Hennigan,00350153, 379, 15.2, 598, 52.0, 48.0, 47.2, 23.6,75.3 +NA,NA,a-curv-i5,2018-19,Boston - Jeremiah E Burke High,00350525, 145, 16.3, 419, 46.3, 53.7, 33.4, 11.5,69.5 +NA,NA,a-curv-i5,2018-19,Boston - John D Philbrick,00350172, 80, 20.6, 163, 47.2, 52.8, 15.3, 16.0,45.4 +NA,NA,a-curv-i5,2018-19,Boston - John F Kennedy,00350166, 139, 17.3, 391, 50.6, 49.4, 44.0, 20.0,68.3 +NA,NA,a-curv-i5,2018-19,Boston - John W McCormack,00350179, 144, 18.5, 387, 49.4, 50.7, 38.5, 26.4,76.2 +NA,NA,a-curv-i5,2018-19,Boston - John Winthrop,00350180, 130, 17.2, 292, 56.9, 43.2, 22.3, 15.4,78.8 +NA,NA,a-curv-i5,2018-19,Boston - Joseph J Hurley,00350182, 142, 20.8, 365, 50.4, 49.6, 54.5, 15.6,51.5 +NA,NA,a-curv-i5,2018-19,Boston - Joseph Lee,00350183, 280, 17.1, 683, 45.1, 54.9, 19.2, 41.1,65.7 +NA,NA,a-curv-i5,2018-19,Boston - Joseph P Manning,00350184, 93, 13.2, 150, 49.3, 50.7, 10.0, 30.0,31.3 +NA,NA,a-curv-i5,2018-19,Boston - Joseph P Tynan,00350181, 163, 10.5, 237, 41.8, 58.2, 25.7, 44.3,77.2 +NA,NA,a-curv-i5,2018-19,Boston - Josiah Quincy,00350286, 620, 18.0, 802, 50.0, 50.0, 51.9, 16.6,48.6 +NA,NA,a-curv-i5,2018-19,Boston - Joyce Kilmer,00350190, 225, 16.2, 448, 47.1, 52.9, 10.3, 27.7,26.6 +NA,NA,a-curv-i5,2018-19,Boston - King K-8,00350376, 248, 17.2, 506, 48.8, 51.2, 25.3, 25.7,76.3 +NA,NA,a-curv-i5,2018-19,Boston - Lee Academy,00350001, 99, 16.1, 215, 49.3, 50.7, 34.0, 28.4,61.4 +NA,NA,a-curv-i5,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 233, 16.9, 525, 43.2, 56.8, 43.1, 28.8,74.5 +NA,NA,a-curv-i5,2018-19,Boston - Lyndon,00350262, 283, 18.0, 624, 46.8, 53.2, 10.3, 20.5,26.3 +NA,NA,a-curv-i5,2018-19,Boston - Lyon K-8,00350004, 84, 15.8, 143, 44.1, 55.9, 6.3, 34.3,42 +NA,NA,a-curv-i5,2018-19,Boston - Lyon Upper 9-12,00350655, 46, 13.4, 132, 42.4, 57.6, 14.4, 45.5,47 +NA,NA,a-curv-i5,2018-19,Boston - Madison Park High,00350537, 382, 12.6, 862, 42.9, 57.1, 34.9, 30.6,73.1 +NA,NA,a-curv-i5,2018-19,Boston - Manassah E Bradley,00350215, 119, 18.0, 269, 48.0, 52.0, 25.7, 21.2,46.8 +NA,NA,a-curv-i5,2018-19,Boston - Margarita Muniz Academy,00350549, 78, 20.4, 290, 52.4, 47.6, 51.7, 12.8,71.7 +NA,NA,a-curv-i5,2018-19,Boston - Mario Umana Academy,00350656, 456, 18.1, 966, 47.5, 52.5, 58.5, 16.4,58.5 +NA,NA,a-curv-i5,2018-19,Boston - Mather,00350227, 306, 19.0, 598, 51.2, 48.8, 44.5, 16.6,63.6 +NA,NA,a-curv-i5,2018-19,Boston - Mattahunt Elementary School,00350016, 270, 12.0, 384, 39.3, 60.7, 37.5, 31.3,63.5 +NA,NA,a-curv-i5,2018-19,Boston - Maurice J Tobin,00350229, 220, 18.3, 427, 53.4, 46.6, 26.0, 14.1,79.2 +NA,NA,a-curv-i5,2018-19,Boston - Michael J Perkins,00350231, 67, 17.9, 180, 49.4, 50.6, 15.6, 20.0,75.6 +NA,NA,a-curv-i5,2018-19,Boston - Mildred Avenue K-8,00350378, 278, 17.2, 642, 49.2, 50.8, 26.2, 21.5,67.6 +NA,NA,a-curv-i5,2018-19,Boston - Mission Hill School,00350382, 152, 13.4, 219, 40.6, 59.4, 13.7, 35.6,43.4 +NA,NA,a-curv-i5,2018-19,Boston - Mozart,00350237, 77, 17.2, 172, 40.7, 59.3, 18.0, 29.7,30.2 +NA,NA,a-curv-i5,2018-19,Boston - Nathan Hale,00350243, 73, 21.2, 158, 55.7, 44.3, 8.2, 17.7,58.9 +5.81301775147929,5,a-curv-i5,2018-19,Boston - New Mission High School,00350542, 169, 16.6, 446, 53.8, 46.2, 6.1, 15.0,49.8,462 +NA,NA,a-curv-i5,2018-19,Boston - O W Holmes,00350138, 170, 14.9, 324, 46.9, 53.1, 18.5, 39.8,80.3 +NA,NA,a-curv-i5,2018-19,Boston - O'Bryant School Math/Science,00350575, 322, 24.9," 1,514", 56.8, 43.2, 1.1, 4.4,43.3 +NA,NA,a-curv-i5,2018-19,Boston - Oliver Hazard Perry,00350255, 132, 14.0, 252, 46.4, 53.6, 15.5, 27.4,46.8 +NA,NA,a-curv-i5,2018-19,Boston - Orchard Gardens,00350257, 433, 19.1, 929, 49.2, 50.8, 50.1, 18.1,68.6 +NA,NA,a-curv-i5,2018-19,Boston - Patrick J Kennedy,00350264, 120, 18.6, 298, 45.0, 55.0, 63.1, 22.8,62.8 +NA,NA,a-curv-i5,2018-19,Boston - Paul A Dever,00350268, 246, 17.5, 410, 49.5, 50.5, 41.5, 16.6,78.1 +NA,NA,a-curv-i5,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 70, 19.1, 211, 52.6, 47.4, 15.6, 15.2,74.9 +NA,NA,a-curv-i5,2018-19,Boston - Phineas Bates,00350278, 109, 18.1, 253, 51.0, 49.0, 26.9, 32.0,51.8 +NA,NA,a-curv-i5,2018-19,Boston - Quincy Upper School,00350565, 188, 22.1, 554, 44.8, 55.2, 9.8, 17.7,53.4 +NA,NA,a-curv-i5,2018-19,Boston - Rafael Hernandez,00350691, 200, 21.0, 409, 53.8, 46.2, 56.2, 8.3,59.2 +NA,NA,a-curv-i5,2018-19,Boston - Richard J Murphy,00350240, 448, 20.7, 926, 45.4, 54.6, 26.0, 15.0,47.7 +NA,NA,a-curv-i5,2018-19,Boston - Roger Clap,00350298, 62, 13.5, 124, 54.0, 46.0, 29.0, 32.3,62.1 +NA,NA,a-curv-i5,2018-19,Boston - Samuel Adams,00350302, 163, 12.3, 258, 48.1, 51.9, 57.0, 21.3,54.7 +NA,NA,a-curv-i5,2018-19,Boston - Samuel W Mason,00350304, 97, 17.8, 249, 45.0, 55.0, 22.5, 35.3,67.9 +NA,NA,a-curv-i5,2018-19,Boston - Sarah Greenwood,00350308, 285, 16.3, 410, 49.5, 50.5, 50.2, 25.4,73.9 +NA,NA,a-curv-i5,2018-19,Boston - Snowden International School at Copley,00350690, 148, 18.2, 464, 51.5, 48.5, 12.1, 20.5,61 +NA,NA,a-curv-i5,2018-19,Boston - TechBoston Academy,00350657, 458, 14.4," 1,003", 44.4, 55.6, 25.6, 20.5,68.4 +NA,NA,a-curv-i5,2018-19,Boston - The English High,00350535, 420, 16.5, 617, 42.0, 58.0, 43.1, 20.9,69.5 +NA,NA,a-curv-i5,2018-19,Boston - Thomas J Kenny,00350328, 135, 18.6, 313, 47.9, 52.1, 25.6, 29.7,59.7 +NA,NA,a-curv-i5,2018-19,Boston - UP Academy Holland,00350167, 250, 22.5, 779, 51.9, 48.1, 30.0, 16.8,74.1 +NA,NA,a-curv-i5,2018-19,Boston - Urban Science Academy,00350579, 164, 14.0, 607, 41.9, 58.0, 26.5, 27.8,58 +NA,NA,a-curv-i5,2018-19,Boston - Warren-Prescott,00350346, 254, 18.5, 575, 47.7, 52.4, 15.5, 21.9,43.3 +NA,NA,a-curv-i5,2018-19,Boston - Washington Irving Middle,00350445, 163, 13.9, 306, 50.0, 50.0, 28.1, 37.3,69.9 +NA,NA,a-curv-i5,2018-19,Boston - West Roxbury Academy,00350658, 97, 10.7, 377, 40.9, 59.2, 34.2, 27.3,58.6 +NA,NA,a-curv-i5,2018-19,Boston - William E Russell,00350366, 143, 19.4, 404, 49.8, 50.3, 56.7, 12.1,64.9 +NA,NA,a-curv-i5,2018-19,Boston - William Ellery Channing,00350360, 98, 16.0, 208, 44.2, 55.8, 28.4, 15.9,62.5 +NA,NA,a-curv-i5,2018-19,Boston - William H Ohrenberger,00350258, 362, 19.8, 638, 47.2, 52.8, 27.9, 21.8,48.8 +NA,NA,a-curv-i5,2018-19,Boston - William McKinley,00350363, 484, 7.1, 374, 24.9, 75.1, 21.9, 95.7,80 +NA,NA,a-curv-i5,2018-19,Boston - William Monroe Trotter,00350370, 208, 18.9, 497, 50.1, 49.9, 13.3, 16.7,77.5 +NA,NA,a-curv-i5,2018-19,Boston - Winship Elementary,00350374, 102, 18.2, 202, 50.0, 50.0, 31.2, 18.3,50 +NA,NA,a-curv-i5,2018-19,Boston - Young Achievers,00350380, 241, 17.8, 578, 44.8, 55.2, 29.6, 23.2,70.8 +NA,NA,a-curv-i5,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 275, 16.8, 701, 50.2, 49.8, 4.1, 18.7,29.5 +NA,NA,a-curv-i5,2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 331, 13.8, 521, 51.8, 48.0, 11.9, 28.8,60.7 +NA,NA,a-curv-i5,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 200, 15.9, 456, 49.1, 50.9, 13.2, 31.1,57.2 +NA,NA,a-curv-i5,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 262, 16.4, 531, 50.5, 49.5, 18.3, 20.9,41.6 +NA,NA,a-curv-i5,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 321, 19.2, 946, 51.3, 48.7, 12.2, 12.7,50.9 +6.458299595141701,5,a-curv-i5,2018-19,Bourne - Bourne High School,00360505, 247, 15.5, 450, 53.8, 46.2, 1.3, 12.0,20.4,476 +NA,NA,a-curv-i5,2018-19,Bourne - Bourne Middle School,00360325, 382, 18.5, 695, 50.1, 49.9, 0.6, 17.0,24.9 +NA,NA,a-curv-i5,2018-19,Bourne - Bournedale Elementary School,00360005, 221, 17.2, 444, 46.0, 54.1, 0.7, 25.5,27.3 +NA,NA,a-curv-i5,2018-19,Bourne - Peebles Elementary School,00360010, 185, 19.3, 347, 55.6, 44.4, 0.9, 15.9,28.5 +NA,NA,a-curv-i5,2018-19,Boxford - Harry Lee Cole,00380005, 142, 13.7, 308, 46.1, 53.9, 0.7, 17.2,6.2 +NA,NA,a-curv-i5,2018-19,Boxford - Spofford Pond,00380013, 190, 18.1, 414, 48.1, 51.9, 0.7, 17.6,2.2 +NA,NA,a-curv-i5,2018-19,Boylston - Boylston Elementary,00390005, 172, 18.0, 301, 47.8, 52.2, 3.0, 17.3,8.6 +NA,NA,a-curv-i5,2018-19,Braintree - Archie T Morrison,00400033, 257, 16.7, 418, 49.5, 50.5, 6.9, 18.2,28.5 +NA,NA,a-curv-i5,2018-19,Braintree - Braintree High,00400505, 838, 16.8," 1,828", 49.6, 50.4, 5.1, 23.9,17.4 +NA,NA,a-curv-i5,2018-19,Braintree - Donald Ross,00400050, 154, 17.8, 266, 47.7, 52.3, 14.3, 14.3,23.3 +NA,NA,a-curv-i5,2018-19,Braintree - East Middle School,00400305, 403, 16.7, 724, 48.8, 51.1, 4.6, 17.5,22.5 +NA,NA,a-curv-i5,2018-19,Braintree - Highlands,00400015, 206, 20.3, 404, 51.2, 48.8, 4.7, 18.1,7.2 +NA,NA,a-curv-i5,2018-19,Braintree - Hollis,00400005, 309, 14.7, 443, 45.4, 54.6, 7.0, 26.6,15.1 +NA,NA,a-curv-i5,2018-19,Braintree - Liberty,00400025, 210, 21.1, 426, 50.0, 50.0, 9.6, 17.6,14.8 +NA,NA,a-curv-i5,2018-19,Braintree - Mary E Flaherty School,00400020, 178, 19.9, 374, 51.3, 48.7, 8.3, 20.6,16.8 +NA,NA,a-curv-i5,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 120, 17.9, 269, 49.8, 50.2, 13.0, 10.0,20.5 +NA,NA,a-curv-i5,2018-19,Braintree - South Middle School,00400310, 351, 18.3, 699, 52.5, 47.5, 1.4, 20.9,13.5 +NA,NA,a-curv-i5,2018-19,Brewster - Eddy Elementary,00410010, 135, 19.9, 239, 48.5, 51.5, 2.5, 22.2,18.4 +NA,NA,a-curv-i5,2018-19,Brewster - Stony Brook Elementary,00410005, 121, 18.4, 241, 46.5, 53.5, 5.0, 22.4,30.3 +NA,NA,a-curv-i5,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 99, 16.2, 332, 50.9, 49.1, 27.4, 24.4,59 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 175, 23.0, 499, 45.5, 54.5, 1.8, 14.0,17.4 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 566, 17.5," 1,457", 50.2, 49.8, 0.9, 9.4,13.3 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 162, 22.8, 518, 51.9, 48.1, 2.7, 11.8,19.3 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 95, 25.0, 331, 45.6, 54.4, 3.0, 17.8,19.6 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 319, 22.4," 1,141", 46.0, 54.0, 3.4, 23.9,17 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 250, 22.7, 675, 45.9, 54.1, 1.5, 16.9,17.6 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 26, 3.6, 18, 44.4, 55.6, 0.0, 100.0,44.4 +NA,NA,a-curv-i5,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 258, 21.8, 780, 50.5, 49.5, 3.0, 17.7,17.4 +NA,NA,a-curv-i5,2018-19,Brimfield - Brimfield Elementary,00430005, 81, 18.8, 298, 50.7, 49.3, 0.7, 18.5,23.2 +NA,NA,a-curv-i5,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 238, 17.3, 453, 71.7, 27.8, 0.0, 13.5,23.6 +NA,NA,a-curv-i5,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,005", 17.3," 1,283", 41.6, 58.3, 0.2, 17.2,24.9 +NA,NA,a-curv-i5,2018-19,Brockton - Ashfield Middle School,00440421, 250, 21.2, 561, 49.6, 50.5, 24.1, 13.0,48 +NA,NA,a-curv-i5,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 27, 11.4, 296, 43.6, 56.4, 7.8, 63.5,49.7 +6.861855670103092,5,a-curv-i5,2018-19,Brockton - Brockton Champion High School,00440515, 97, 7.9, 141, 41.8, 58.2, 11.4, 61.0,66.7,138 +NA,NA,a-curv-i5,2018-19,Brockton - Brockton High,00440505," 1,875", 18.4," 4,104", 48.0, 52.0, 24.4, 11.6,48.3 +NA,NA,a-curv-i5,2018-19,Brockton - Brookfield,00440010, 241, 20.5, 594, 47.3, 52.7, 38.6, 15.2,52.2 +NA,NA,a-curv-i5,2018-19,Brockton - Downey,00440110, 322, 15.7, 603, 44.0, 56.1, 12.8, 33.5,63.5 +NA,NA,a-curv-i5,2018-19,Brockton - Dr W Arnone Community School,00440001, 288, 20.5, 761, 43.6, 56.4, 18.4, 21.2,62.3 +NA,NA,a-curv-i5,2018-19,Brockton - East Middle School,00440405, 493, 21.3, 657, 49.2, 50.8, 42.2, 17.4,66.4 +NA,NA,a-curv-i5,2018-19,Brockton - Edgar B Davis,00440023, 462, 24.7," 1,051", 50.8, 49.2, 25.0, 8.4,58.4 +NA,NA,a-curv-i5,2018-19,Brockton - Edison Academy,00440520, 209, 8.2, 323, 42.4, 57.6, 48.0, 9.6,62.2 +NA,NA,a-curv-i5,2018-19,Brockton - Frederick Douglass Academy,00440080, 65, 6.8, 63, 31.8, 68.3, 30.2, 38.1,69.8 +NA,NA,a-curv-i5,2018-19,Brockton - Gilmore Elementary School,00440055, 182, 22.1, 488, 48.4, 51.6, 41.4, 6.8,67.4 +NA,NA,a-curv-i5,2018-19,Brockton - Hancock,00440045, 197, 24.0, 571, 54.1, 45.9, 12.1, 8.1,42.9 +NA,NA,a-curv-i5,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 121, 6.4, 72, 29.2, 70.8, 11.1, 100.0,79.2 +NA,NA,a-curv-i5,2018-19,Brockton - John F Kennedy,00440017, 227, 23.2, 622, 50.2, 49.8, 35.9, 11.1,47.1 +NA,NA,a-curv-i5,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 551, 22.9, 764, 51.8, 48.2, 16.2, 15.2,51.2 +NA,NA,a-curv-i5,2018-19,Brockton - Louis F Angelo Elementary,00440065, 371, 21.5, 913, 48.6, 51.4, 29.7, 20.0,57.7 +NA,NA,a-curv-i5,2018-19,Brockton - Manthala George Jr. School,00440003, 362, 23.3, 996, 48.5, 51.5, 44.6, 15.1,65.1 +NA,NA,a-curv-i5,2018-19,Brockton - Mary E. Baker School,00440002, 347, 16.9, 703, 47.4, 52.6, 18.2, 20.1,48.1 +NA,NA,a-curv-i5,2018-19,Brockton - North Middle School,00440410, 214, 18.1, 330, 42.4, 57.6, 19.1, 17.0,61.5 +NA,NA,a-curv-i5,2018-19,Brockton - Oscar F Raymond,00440078, 331, 22.0, 866, 47.3, 52.7, 38.0, 13.5,70 +NA,NA,a-curv-i5,2018-19,Brockton - South Middle School,00440415, 332, 22.9, 663, 45.6, 54.5, 32.9, 14.5,57 +NA,NA,a-curv-i5,2018-19,Brockton - West Middle School,00440420, 410, 23.5, 722, 47.0, 53.1, 11.5, 18.8,50.8 +NA,NA,a-curv-i5,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 805, 18.8," 1,827", 52.3, 47.7, 7.2, 10.7,44.5 +NA,NA,a-curv-i5,2018-19,Brookfield - Brookfield Elementary,00450005, 77, 20.4, 317, 49.2, 50.8, 0.3, 15.8,27.1 +NA,NA,a-curv-i5,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 12.6, 63, 50.8, 49.2, 14.3, 30.2,7.9 +NA,NA,a-curv-i5,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 6, 11.7, 70, 41.4, 58.6, 8.6, 38.6,14.3 +NA,NA,a-curv-i5,2018-19,Brookline - Brookline High,00460505," 1,182", 14.2," 2,101", 48.6, 51.0, 3.5, 17.1,11.2 +NA,NA,a-curv-i5,2018-19,Brookline - Coolidge Corner School,00460015, 540, 18.2, 917, 48.6, 51.3, 16.6, 15.9,11.9 +NA,NA,a-curv-i5,2018-19,Brookline - Edith C Baker,00460005, 459, 18.7, 773, 48.9, 51.1, 15.5, 15.8,8.4 +NA,NA,a-curv-i5,2018-19,Brookline - Heath,00460025, 314, 18.1, 559, 49.6, 50.5, 3.8, 11.8,6.4 +NA,NA,a-curv-i5,2018-19,Brookline - John D Runkle,00460045, 329, 19.5, 604, 48.0, 52.0, 9.1, 20.2,6.5 +NA,NA,a-curv-i5,2018-19,Brookline - Lawrence,00460030, 421, 18.0, 683, 48.5, 51.5, 21.7, 13.9,7.8 +NA,NA,a-curv-i5,2018-19,Brookline - Michael Driscoll,00460020, 335, 20.3, 638, 46.4, 53.6, 11.6, 14.3,6.4 +NA,NA,a-curv-i5,2018-19,Brookline - Pierce,00460040, 508, 18.5, 851, 51.2, 48.8, 18.2, 11.5,7.9 +NA,NA,a-curv-i5,2018-19,Brookline - The Lynch Center,00460060, 5, 13.0, 65, 52.3, 47.7, 4.6, 26.2,18.5 +NA,NA,a-curv-i5,2018-19,Brookline - William H Lincoln,00460035, 373, 17.1, 579, 53.2, 46.8, 15.0, 20.7,11.6 +NA,NA,a-curv-i5,2018-19,Burlington - Burlington High,00480505, 563, 14.2," 1,103", 48.6, 51.4, 2.9, 8.8,12.3 +NA,NA,a-curv-i5,2018-19,Burlington - Fox Hill,00480007, 173, 17.7, 425, 49.2, 50.8, 4.2, 9.9,9.4 +NA,NA,a-curv-i5,2018-19,Burlington - Francis Wyman Elementary,00480035, 238, 16.9, 538, 47.4, 52.6, 7.8, 12.3,12.5 +NA,NA,a-curv-i5,2018-19,Burlington - Marshall Simonds Middle,00480303, 716, 19.9, 800, 50.4, 49.6, 2.5, 13.5,11.3 +NA,NA,a-curv-i5,2018-19,Burlington - Memorial,00480015, 177, 17.0, 405, 50.9, 49.1, 8.6, 13.3,12.6 +NA,NA,a-curv-i5,2018-19,Burlington - Pine Glen Elementary,00480020, 160, 14.5, 318, 48.4, 51.6, 10.4, 16.0,11 +NA,NA,a-curv-i5,2018-19,Cambridge - Amigos School,00490006, 200, 18.5, 417, 54.4, 45.6, 6.2, 13.9,17.5 +NA,NA,a-curv-i5,2018-19,Cambridge - Cambridge Rindge and Latin,00490506," 1,109", 15.2," 2,042", 48.8, 51.2, 6.1, 18.0,29.8 +NA,NA,a-curv-i5,2018-19,Cambridge - Cambridge Street Upper School,00490305, 140, 17.5, 261, 46.7, 53.3, 3.8, 32.6,37.2 +NA,NA,a-curv-i5,2018-19,Cambridge - Cambridgeport,00490007, 152, 17.1, 338, 45.3, 54.7, 3.3, 21.3,20.7 +NA,NA,a-curv-i5,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 234, 11.7, 300, 47.3, 52.7, 6.0, 32.3,39.7 +NA,NA,a-curv-i5,2018-19,Cambridge - Graham and Parks,00490080, 197, 14.0, 384, 50.3, 49.7, 32.3, 17.7,29.2 +NA,NA,a-curv-i5,2018-19,Cambridge - Haggerty,00490020, 121, 15.6, 261, 49.8, 50.2, 7.3, 23.8,22.2 +NA,NA,a-curv-i5,2018-19,Cambridge - John M Tobin,00490065, 228, 9.5, 308, 45.1, 54.9, 4.2, 22.7,24.4 +NA,NA,a-curv-i5,2018-19,Cambridge - Kennedy-Longfellow,00490040, 173, 13.2, 299, 47.2, 52.8, 33.8, 19.4,36.5 +NA,NA,a-curv-i5,2018-19,Cambridge - King Open,00490035, 240, 11.8, 348, 46.8, 53.2, 10.6, 28.5,33.3 +NA,NA,a-curv-i5,2018-19,Cambridge - Maria L. Baldwin,00490005, 191, 15.0, 356, 49.4, 50.6, 2.8, 18.5,18.8 +NA,NA,a-curv-i5,2018-19,Cambridge - Martin Luther King Jr.,00490030, 180, 15.8, 322, 49.7, 50.3, 5.0, 16.2,18.9 +NA,NA,a-curv-i5,2018-19,Cambridge - Morse,00490045, 213, 13.0, 306, 48.4, 51.6, 6.9, 27.8,33.7 +NA,NA,a-curv-i5,2018-19,Cambridge - Peabody,00490050, 131, 19.6, 321, 50.5, 49.5, 5.9, 24.6,23.4 +NA,NA,a-curv-i5,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 146, 18.8, 275, 51.6, 48.4, 2.2, 30.6,45.1 +NA,NA,a-curv-i5,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 116, 23.1, 289, 55.0, 45.0, 1.4, 22.8,23.9 +NA,NA,a-curv-i5,2018-19,Cambridge - Vassal Lane Upper School,00490320, 149, 19.3, 303, 52.8, 46.9, 14.9, 21.8,32 +NA,NA,a-curv-i5,2018-19,Canton - Canton High,00500505, 454, 17.7, 986, 52.8, 46.9, 1.2, 8.2,12.2 +NA,NA,a-curv-i5,2018-19,Canton - Dean S Luce,00500020, 431, 19.9, 494, 50.8, 49.2, 5.9, 10.7,13.6 +NA,NA,a-curv-i5,2018-19,Canton - John F Kennedy,00500017, 459, 19.6, 519, 47.8, 52.2, 2.7, 10.2,9.4 +NA,NA,a-curv-i5,2018-19,Canton - Lt Peter M Hansen,00500012, 448, 19.0, 490, 48.6, 51.4, 4.3, 9.0,16.1 +NA,NA,a-curv-i5,2018-19,Canton - Rodman Early Childhood Center,00500010, 32, 12.3, 98, 32.7, 67.4, 13.3, 35.7,17.4 +NA,NA,a-curv-i5,2018-19,Canton - Wm H Galvin Middle,00500305, 481, 17.6, 731, 52.5, 47.5, 1.0, 11.6,13.5 +NA,NA,a-curv-i5,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 154, 16.1, 241, 55.2, 44.8, 0.4, 16.2,16.6 +NA,NA,a-curv-i5,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 414, 13.3, 577, 34.3, 65.7, 3.3, 27.6,35.2 +NA,NA,a-curv-i5,2018-19,Carlisle - Carlisle School,00510025, 231, 17.7, 607, 46.8, 53.2, 2.3, 17.5,3.6 +NA,NA,a-curv-i5,2018-19,Carver - Carver Elementary School,00520015, 390, 21.1, 818, 51.0, 49.0, 1.7, 21.4,24.6 +6.483790523690773,5,a-curv-i5,2018-19,Carver - Carver Middle/High School,00520405, 401, 14.8, 761, 47.3, 52.7, 0.9, 22.1,20.1,760 +NA,NA,a-curv-i5,2018-19,Central Berkshire - Becket Washington School,06350005, 50, 17.4, 120, 47.5, 52.5, 0.0, 26.7,34.2 +NA,NA,a-curv-i5,2018-19,Central Berkshire - Craneville,06350025, 154, 21.0, 398, 45.2, 54.8, 1.0, 15.1,33.7 +NA,NA,a-curv-i5,2018-19,Central Berkshire - Kittredge,06350035, 59, 16.9, 158, 55.7, 44.3, 0.0, 23.4,36.1 +NA,NA,a-curv-i5,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 231, 18.4, 388, 48.2, 51.8, 0.3, 14.7,30.9 +NA,NA,a-curv-i5,2018-19,Central Berkshire - Wahconah Regional High,06350505, 266, 14.9, 532, 47.6, 52.4, 0.2, 8.8,23.1 +NA,NA,a-curv-i5,2018-19,Chelmsford - Byam School,00560030, 181, 20.9, 480, 50.8, 49.2, 5.8, 17.1,14.4 +NA,NA,a-curv-i5,2018-19,Chelmsford - Center Elementary School,00560005, 157, 23.6, 470, 50.0, 50.0, 8.9, 13.4,15.1 +NA,NA,a-curv-i5,2018-19,Chelmsford - Charles D Harrington,00560025, 169, 22.5, 496, 48.4, 51.6, 5.7, 14.3,15.5 +NA,NA,a-curv-i5,2018-19,Chelmsford - Chelmsford High,00560505, 731, 16.7," 1,451", 50.0, 50.0, 1.0, 12.3,8.1 +NA,NA,a-curv-i5,2018-19,Chelmsford - Col Moses Parker School,00560305, 392, 17.1, 722, 44.2, 55.8, 3.3, 16.8,13.6 +NA,NA,a-curv-i5,2018-19,Chelmsford - Community Education Center,00560001, 112, 13.9, 195, 38.5, 61.5, 11.3, 53.9,12.8 +NA,NA,a-curv-i5,2018-19,Chelmsford - McCarthy Middle School,00560310, 456, 16.4, 814, 47.3, 52.7, 1.8, 17.6,12.2 +NA,NA,a-curv-i5,2018-19,Chelmsford - South Row,00560015, 157, 21.4, 427, 45.7, 54.3, 7.0, 11.7,9.1 +NA,NA,a-curv-i5,2018-19,Chelsea - Chelsea High,00570505, 574, 18.3," 1,428", 45.8, 54.2, 34.5, 11.7,58.1 +NA,NA,a-curv-i5,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 25, 8.2, 55, 40.0, 60.0, 50.9, 5.5,63.6 +NA,NA,a-curv-i5,2018-19,Chelsea - Clark Avenue School,00570050, 260, 27.0, 671, 47.5, 52.5, 17.4, 16.5,60.7 +NA,NA,a-curv-i5,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 104, 21.3, 547, 47.0, 53.0, 54.1, 14.3,64 +NA,NA,a-curv-i5,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 196, 23.4, 518, 47.9, 52.1, 8.9, 27.2,63.1 +NA,NA,a-curv-i5,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 92, 23.0, 528, 49.2, 50.8, 49.6, 11.4,68.4 +NA,NA,a-curv-i5,2018-19,Chelsea - George F. Kelly Elementary,00570035, 98, 21.1, 517, 52.0, 48.0, 36.8, 12.0,57.6 +NA,NA,a-curv-i5,2018-19,Chelsea - Joseph A. Browne School,00570055, 226, 25.8, 612, 49.0, 51.0, 49.0, 9.2,66.8 +NA,NA,a-curv-i5,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 126, 22.3, 932, 49.6, 50.4, 59.2, 17.0,62.3 +NA,NA,a-curv-i5,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 92, 21.2, 488, 46.3, 53.7, 42.8, 19.1,63.7 +NA,NA,a-curv-i5,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 50, 16.3, 130, 50.0, 50.0, 0.0, 27.7,26.2 +NA,NA,a-curv-i5,2018-19,Chicopee - Barry,00610003, 88, 19.9, 438, 42.5, 57.5, 11.4, 24.0,50.9 +NA,NA,a-curv-i5,2018-19,Chicopee - Belcher,00610010, 70, 18.2, 258, 48.5, 51.6, 12.0, 13.2,65.5 +NA,NA,a-curv-i5,2018-19,Chicopee - Bellamy Middle,00610305, 462, 19.6, 845, 47.9, 52.1, 3.6, 19.2,51.5 +NA,NA,a-curv-i5,2018-19,Chicopee - Bowe,00610015, 113, 22.9, 482, 50.6, 49.4, 12.9, 17.0,72 +NA,NA,a-curv-i5,2018-19,Chicopee - Bowie,00610020, 90, 18.7, 327, 48.3, 51.7, 1.2, 12.8,31.8 +NA,NA,a-curv-i5,2018-19,Chicopee - Chicopee Academy,00610021, 95, 5.9, 94, 34.0, 66.0, 4.3, 43.6,85.1 +6.481212121212121,5,a-curv-i5,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 660, 14.8," 1,254", 46.1, 53.9, 3.7, 14.0,36.8,1253 +NA,NA,a-curv-i5,2018-19,Chicopee - Chicopee High,00610505, 482, 18.0, 982, 49.5, 50.5, 6.3, 19.8,50.1 +NA,NA,a-curv-i5,2018-19,Chicopee - Dupont Middle,00610310, 310, 19.3, 768, 44.4, 55.6, 6.1, 18.8,56.5 +NA,NA,a-curv-i5,2018-19,Chicopee - Fairview Elementary,00610050, 158, 17.2, 441, 44.7, 55.3, 7.7, 17.0,67.6 +NA,NA,a-curv-i5,2018-19,Chicopee - Gen John J Stefanik,00610090, 89, 17.9, 398, 46.0, 54.0, 11.8, 18.6,74.6 +NA,NA,a-curv-i5,2018-19,Chicopee - Lambert-Lavoie,00610040, 72, 16.3, 294, 43.5, 56.5, 1.0, 13.6,47.6 +NA,NA,a-curv-i5,2018-19,Chicopee - Litwin,00610022, 100, 18.9, 398, 46.2, 53.8, 10.1, 22.4,53.5 +NA,NA,a-curv-i5,2018-19,Chicopee - Streiber Memorial School,00610065, 65, 19.3, 248, 48.0, 52.0, 0.8, 9.7,37.9 +NA,NA,a-curv-i5,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 21, 13.5, 281, 36.3, 63.7, 1.8, 47.3,46.3 +NA,NA,a-curv-i5,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 152, 20.1, 387, 48.1, 51.9, 3.4, 23.5,23 +NA,NA,a-curv-i5,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 126, 13.2, 239, 46.4, 53.6, 15.1, 20.5,55.2 +NA,NA,a-curv-i5,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 113, 14.3, 236, 51.7, 48.3, 22.0, 25.4,56.8 +NA,NA,a-curv-i5,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 115, 11.9, 189, 44.4, 55.0, 22.8, 31.8,66.1 +NA,NA,a-curv-i5,2018-19,Clarksburg - Clarksburg Elementary,00630010, 108, 15.1, 181, 51.4, 48.6, 0.0, 23.2,32.6 +NA,NA,a-curv-i5,2018-19,Clinton - Clinton Elementary,00640050, 265, 19.6, 852, 47.8, 52.2, 14.9, 21.0,38.2 +NA,NA,a-curv-i5,2018-19,Clinton - Clinton Middle School,00640305, 378, 18.8, 604, 45.2, 54.8, 7.5, 20.2,37.6 +NA,NA,a-curv-i5,2018-19,Clinton - Clinton Senior High,00640505, 226, 14.2, 462, 49.6, 50.4, 10.0, 19.5,29.2 +NA,NA,a-curv-i5,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 162, 14.9, 345, 50.7, 49.3, 6.7, 19.4,56.8 +6.693333333333333,5,a-curv-i5,2018-19,Cohasset - Cohasset Middle/High School,00650505, 510, 17.4, 833, 48.5, 51.5, 0.2, 13.5,5.9,833 +NA,NA,a-curv-i5,2018-19,Cohasset - Deer Hill,00650005, 204, 21.6, 371, 48.8, 51.2, 0.3, 15.1,4.3 +NA,NA,a-curv-i5,2018-19,Cohasset - Joseph Osgood,00650010, 182, 19.7, 354, 50.9, 49.2, 0.6, 13.6,6.2 +NA,NA,a-curv-i5,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 252, 27.3, 836, 51.2, 48.7, 26.4, 8.7,39.2 +NA,NA,a-curv-i5,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 209, 12.2, 333, 55.9, 44.1, 3.9, 14.1,31.2 +NA,NA,a-curv-i5,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 109, 20.3, 363, 47.9, 52.1, 24.2, 11.3,46 +NA,NA,a-curv-i5,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 108, 22.4, 401, 50.9, 49.1, 30.9, 13.7,49.6 +NA,NA,a-curv-i5,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 107, 20.2, 363, 51.8, 48.2, 29.8, 10.2,51.2 +NA,NA,a-curv-i5,2018-19,Concord - Alcott,00670005, 279, 18.5, 479, 48.2, 51.8, 3.8, 15.7,8.4 +NA,NA,a-curv-i5,2018-19,Concord - Concord Middle,00670305, 505, 17.2, 736, 49.5, 50.3, 1.0, 20.8,8 +NA,NA,a-curv-i5,2018-19,Concord - Thoreau,00670020, 279, 18.1, 470, 48.7, 51.3, 3.8, 20.2,5.3 +NA,NA,a-curv-i5,2018-19,Concord - Willard,00670030, 258, 18.1, 431, 46.9, 53.1, 3.7, 16.5,4.9 +NA,NA,a-curv-i5,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 876, 15.0," 1,283", 52.5, 47.3, 0.5, 15.6,5.1 +NA,NA,a-curv-i5,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 62, 17.2, 443, 54.9, 45.2, 17.6, 14.2,49.2 +NA,NA,a-curv-i5,2018-19,Conway - Conway Grammar,00680005, 104, 15.3, 134, 47.8, 52.2, 0.0, 19.4,24.6 +NA,NA,a-curv-i5,2018-19,Danvers - Danvers High,00710505, 476, 15.5, 925, 48.8, 51.2, 0.8, 16.4,14.7 +NA,NA,a-curv-i5,2018-19,Danvers - Great Oak,00710015, 211, 20.6, 369, 48.0, 52.0, 1.9, 11.7,16.3 +NA,NA,a-curv-i5,2018-19,Danvers - Highlands,00710010, 203, 21.0, 376, 46.8, 53.2, 1.1, 16.5,17 +NA,NA,a-curv-i5,2018-19,Danvers - Holten Richmond Middle School,00710305, 585, 19.3, 848, 49.9, 50.1, 0.8, 17.0,15.8 +NA,NA,a-curv-i5,2018-19,Danvers - Ivan G Smith,00710032, 152, 22.2, 288, 55.9, 44.1, 1.0, 13.2,13.5 +NA,NA,a-curv-i5,2018-19,Danvers - Riverside,00710030, 182, 18.3, 378, 43.1, 56.9, 0.8, 32.8,17.5 +NA,NA,a-curv-i5,2018-19,Danvers - Willis E Thorpe,00710045, 203, 18.0, 321, 49.5, 50.5, 1.3, 14.3,16.5 +NA,NA,a-curv-i5,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 30, 19.9, 154, 45.5, 54.6, 2.6, 28.6,22.7 +NA,NA,a-curv-i5,2018-19,Dartmouth - Dartmouth High,00720505, 474, 18.7," 1,080", 50.0, 49.9, 0.9, 11.1,15.5 +NA,NA,a-curv-i5,2018-19,Dartmouth - Dartmouth Middle,00720050, 688, 16.6, 953, 43.6, 56.5, 1.4, 17.9,24.3 +NA,NA,a-curv-i5,2018-19,Dartmouth - George H Potter,00720030, 168, 20.5, 403, 45.7, 54.3, 2.2, 15.4,30.8 +NA,NA,a-curv-i5,2018-19,Dartmouth - James M. Quinn School,00720040, 265, 21.4, 645, 47.9, 52.1, 3.9, 19.4,24.2 +NA,NA,a-curv-i5,2018-19,Dartmouth - Joseph Demello,00720015, 189, 20.2, 424, 48.8, 51.2, 6.1, 17.5,24.1 +NA,NA,a-curv-i5,2018-19,Dedham - Avery,00730010, 65, 20.4, 301, 54.2, 45.9, 18.3, 31.6,44.9 +NA,NA,a-curv-i5,2018-19,Dedham - Dedham High,00730505, 364, 15.9, 750, 49.2, 50.8, 4.3, 16.8,20.7 +NA,NA,a-curv-i5,2018-19,Dedham - Dedham Middle School,00730305, 429, 18.5, 660, 47.6, 52.4, 3.8, 22.3,22.9 +NA,NA,a-curv-i5,2018-19,Dedham - Early Childhood Center,00730005, 68, 17.3, 305, 46.2, 53.8, 11.2, 22.3,19.7 +NA,NA,a-curv-i5,2018-19,Dedham - Greenlodge,00730025, 60, 18.6, 249, 42.2, 57.8, 2.0, 28.1,10.8 +NA,NA,a-curv-i5,2018-19,Dedham - Oakdale,00730030, 62, 19.2, 270, 49.3, 50.7, 8.2, 17.8,12.6 +NA,NA,a-curv-i5,2018-19,Dedham - Riverdale,00730045, 44, 16.8, 168, 47.0, 53.0, 9.5, 25.6,27.4 +NA,NA,a-curv-i5,2018-19,Deerfield - Deerfield Elementary,00740015, 291, 17.4, 394, 49.8, 50.3, 1.3, 24.1,18.3 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 655, 13.9," 1,013", 51.0, 49.0, 6.4, 16.1,35.8 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 89, 17.0, 329, 45.6, 54.4, 12.8, 26.1,46.2 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 52, 18.9, 309, 43.7, 56.3, 18.1, 24.9,54.1 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 268, 16.2, 461, 51.2, 48.8, 8.9, 23.9,42.3 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 267, 16.4, 525, 49.3, 50.7, 11.8, 23.2,41.9 +NA,NA,a-curv-i5,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 84, 20.5, 432, 49.5, 50.5, 10.2, 10.4,35.7 +NA,NA,a-curv-i5,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 246, 19.4, 507, 47.5, 52.5, 0.2, 16.2,18 +NA,NA,a-curv-i5,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 243, 19.2, 417, 46.0, 54.0, 0.0, 11.8,15.4 +6.554385964912281,5,a-curv-i5,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 456, 16.8, 823, 46.7, 53.3, 0.1, 9.1,11.9,824 +NA,NA,a-curv-i5,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 275, 21.6, 585, 50.9, 49.1, 0.7, 17.8,16.4 +NA,NA,a-curv-i5,2018-19,Dighton-Rehoboth - Palmer River,06500010, 301, 21.0, 608, 49.3, 50.7, 1.0, 17.1,12.8 +NA,NA,a-curv-i5,2018-19,Douglas - Douglas Elementary School,00770015, 121, 22.2, 359, 48.5, 51.5, 0.8, 22.8,15 +6.636909871244635,5,a-curv-i5,2018-19,Douglas - Douglas High School,00770505, 233, 13.7, 397, 50.4, 49.6, 0.5, 16.9,15.4,397 +NA,NA,a-curv-i5,2018-19,Douglas - Douglas Middle School,00770305, 123, 21.6, 324, 47.5, 52.5, 0.9, 17.3,15.7 +NA,NA,a-curv-i5,2018-19,Douglas - Douglas Primary School,00770005, 62, 19.9, 225, 45.8, 54.2, 1.3, 16.0,13.3 +NA,NA,a-curv-i5,2018-19,Dover - Chickering,00780005, 177, 19.2, 505, 43.4, 56.6, 4.0, 13.9,2 +NA,NA,a-curv-i5,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 366, 16.1, 674, 48.7, 51.2, 0.7, 16.0,3.7 +NA,NA,a-curv-i5,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 337, 18.2, 525, 47.1, 53.0, 0.2, 16.6,2.1 +NA,NA,a-curv-i5,2018-19,Dracut - Brookside Elementary,00790035, 200, 20.7, 457, 48.6, 51.4, 1.5, 17.3,25.6 +NA,NA,a-curv-i5,2018-19,Dracut - Dracut Senior High,00790505, 395, 19.1, 887, 48.9, 51.1, 2.4, 8.7,16.7 +NA,NA,a-curv-i5,2018-19,Dracut - George H. Englesby Elementary School,00790045, 221, 22.7, 550, 48.4, 51.6, 2.4, 16.4,29.6 +NA,NA,a-curv-i5,2018-19,Dracut - Greenmont Avenue,00790030, 110, 23.0, 281, 47.7, 52.3, 4.6, 15.3,35.9 +NA,NA,a-curv-i5,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 226, 21.1, 587, 44.6, 55.4, 1.9, 17.7,17.6 +NA,NA,a-curv-i5,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 443, 19.9, 917, 49.3, 50.7, 1.0, 17.8,24.8 +NA,NA,a-curv-i5,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 38, 18.6, 262, 51.5, 48.5, 26.3, 9.5,58.4 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 89, 20.5, 361, 46.5, 53.5, 6.7, 25.8,23.6 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 411, 18.1, 680, 49.1, 50.9, 1.0, 12.8,16.9 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 102, 22.2, 377, 46.7, 53.3, 2.7, 16.5,28.7 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 393, 17.4, 573, 54.1, 45.9, 0.5, 14.7,22.3 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 142, 19.8, 449, 45.0, 55.0, 4.5, 15.8,19.2 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 74, 19.9, 291, 46.1, 54.0, 7.2, 23.4,37.8 +NA,NA,a-curv-i5,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 442, 18.5," 1,104", 51.5, 48.5, 0.5, 10.4,17 +NA,NA,a-curv-i5,2018-19,Duxbury - Alden School,00820004, 312, 20.4, 636, 47.8, 52.2, 0.3, 13.8,5.7 +NA,NA,a-curv-i5,2018-19,Duxbury - Chandler Elementary,00820006, 294, 19.6, 643, 49.0, 51.0, 0.6, 17.6,5.3 +NA,NA,a-curv-i5,2018-19,Duxbury - Duxbury High,00820505, 498, 17.7," 1,008", 49.7, 50.3, 0.1, 12.8,5.5 +NA,NA,a-curv-i5,2018-19,Duxbury - Duxbury Middle,00820305, 316, 22.2, 755, 50.1, 49.9, 0.1, 14.6,4.8 +NA,NA,a-curv-i5,2018-19,East Bridgewater - Central,00830005, 242, 18.1, 592, 52.2, 47.8, 1.7, 16.7,19.3 +6.379158316633267,5,a-curv-i5,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 499, 20.6," 1,021", 50.3, 49.7, 0.9, 17.4,15.2,1011 +NA,NA,a-curv-i5,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 340, 21.8, 658, 43.9, 56.1, 0.2, 20.7,17.5 +NA,NA,a-curv-i5,2018-19,East Longmeadow - Birchland Park,00870305, 361, 18.7, 651, 48.4, 51.6, 2.2, 17.1,20.7 +NA,NA,a-curv-i5,2018-19,East Longmeadow - East Longmeadow High,00870505, 341, 17.9, 830, 49.4, 50.5, 1.1, 16.5,15.1 +NA,NA,a-curv-i5,2018-19,East Longmeadow - Mapleshade,00870010, 151, 17.4, 299, 49.5, 50.5, 1.3, 18.4,22.7 +NA,NA,a-curv-i5,2018-19,East Longmeadow - Meadow Brook,00870013, 187, 20.0, 584, 47.8, 52.2, 3.8, 21.9,19.7 +NA,NA,a-curv-i5,2018-19,East Longmeadow - Mountain View,00870015, 122, 16.2, 273, 46.2, 53.9, 2.2, 14.7,11.7 +NA,NA,a-curv-i5,2018-19,Eastham - Eastham Elementary,00850005, 133, 13.0, 173, 49.7, 50.3, 4.1, 25.4,29.5 +NA,NA,a-curv-i5,2018-19,Easthampton - Center School,00860005, 42, 20.9, 207, 48.3, 51.7, 6.8, 15.0,27.1 +NA,NA,a-curv-i5,2018-19,Easthampton - Easthampton High,00860505, 221, 15.3, 471, 53.1, 46.3, 1.1, 16.6,24 +NA,NA,a-curv-i5,2018-19,Easthampton - Maple,00860010, 51, 18.8, 278, 46.4, 53.6, 2.2, 25.9,39.6 +NA,NA,a-curv-i5,2018-19,Easthampton - Neil A Pepin,00860020, 44, 18.5, 204, 48.5, 51.5, 5.4, 20.6,31.9 +NA,NA,a-curv-i5,2018-19,Easthampton - White Brook Middle School,00860305, 221, 19.9, 432, 47.5, 52.6, 2.1, 23.2,31.3 +NA,NA,a-curv-i5,2018-19,Easton - Center School,00880003, 54, 17.7, 258, 45.0, 55.0, 6.2, 14.7,16.3 +NA,NA,a-curv-i5,2018-19,Easton - Easton Middle School,00880405, 480, 19.9, 899, 48.7, 51.3, 1.2, 21.4,12.5 +NA,NA,a-curv-i5,2018-19,Easton - Moreau Hall,00880020, 45, 19.4, 228, 47.4, 52.6, 5.3, 11.8,14.9 +NA,NA,a-curv-i5,2018-19,Easton - Oliver Ames High,00880505, 471, 16.9," 1,131", 52.5, 47.5, 1.4, 16.5,10.6 +NA,NA,a-curv-i5,2018-19,Easton - Parkview Elementary,00880015, 64, 17.7, 319, 52.4, 47.7, 1.3, 19.4,9.7 +NA,NA,a-curv-i5,2018-19,Easton - Richardson Olmsted School,00880025, 141, 23.3, 820, 47.9, 52.1, 1.5, 18.9,14.3 +NA,NA,a-curv-i5,2018-19,Edgartown - Edgartown Elementary,00890005, 247, 17.8, 394, 50.3, 49.8, 24.6, 25.1,31 +NA,NA,a-curv-i5,2018-19,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 186, 17.8, 382, 62.8, 37.2, 13.9, 18.1,55.5 +NA,NA,a-curv-i5,2018-19,Erving - Erving Elementary,00910030, 60, 16.0, 131, 44.3, 55.7, 1.5, 18.3,24.4 +NA,NA,a-curv-i5,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 871, 16.8," 1,394", 57.6, 42.3, 0.1, 16.3,17.4 +NA,NA,a-curv-i5,2018-19,Everett - Adams School,00930003, 64, 12.8, 205, 42.0, 58.1, 34.2, 11.2,43.9 +NA,NA,a-curv-i5,2018-19,Everett - Devens School,00930030, 141, 4.1, 72, 25.0, 75.0, 13.9, 69.4,72.2 +NA,NA,a-curv-i5,2018-19,Everett - Everett High,00930505," 1,029", 18.8," 2,022", 48.3, 51.7, 23.0, 10.7,46 +NA,NA,a-curv-i5,2018-19,Everett - George Keverian School,00930028, 405, 23.7, 856, 49.9, 50.1, 20.8, 16.6,53.2 +NA,NA,a-curv-i5,2018-19,Everett - Lafayette School,00930038, 371, 25.8, 954, 49.2, 50.8, 21.5, 20.8,48.3 +NA,NA,a-curv-i5,2018-19,Everett - Madeline English School,00930018, 364, 22.3, 800, 50.4, 49.6, 15.8, 21.3,48.9 +NA,NA,a-curv-i5,2018-19,Everett - Parlin School,00930058, 421, 25.7, 986, 52.0, 48.0, 44.0, 10.2,59.1 +NA,NA,a-curv-i5,2018-19,Everett - Sumner G. Whittier School,00930010, 256, 22.7, 640, 50.2, 49.8, 41.3, 12.2,55.2 +NA,NA,a-curv-i5,2018-19,Everett - Webster School,00930015, 269, 15.0, 647, 47.6, 52.4, 30.0, 22.1,49.9 +NA,NA,a-curv-i5,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 453, 23.6," 1,301", 51.2, 48.8, 12.1, 20.5,41.5 +NA,NA,a-curv-i5,2018-19,Fairhaven - East Fairhaven,00940010, 152, 22.1, 425, 48.0, 52.0, 3.1, 22.8,34.4 +NA,NA,a-curv-i5,2018-19,Fairhaven - Fairhaven High,00940505, 347, 15.7, 659, 53.3, 46.7, 1.2, 15.5,21.9 +NA,NA,a-curv-i5,2018-19,Fairhaven - Hastings Middle,00940305, 325, 17.4, 485, 47.2, 52.8, 0.6, 16.7,26 +NA,NA,a-curv-i5,2018-19,Fairhaven - Leroy Wood,00940030, 222, 19.4, 487, 49.7, 50.3, 1.9, 18.1,32 +NA,NA,a-curv-i5,2018-19,Fall River - B M C Durfee High,00950505," 1,046", 16.3," 2,115", 49.0, 51.0, 15.9, 13.5,60.8 +NA,NA,a-curv-i5,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 308, 20.2, 813, 48.3, 51.7, 27.3, 18.6,75.3 +NA,NA,a-curv-i5,2018-19,Fall River - Henry Lord Community School,00950017, 346, 15.1, 731, 47.1, 52.9, 28.9, 28.7,83.3 +NA,NA,a-curv-i5,2018-19,Fall River - James Tansey,00950140, 96, 26.5, 319, 51.7, 48.3, 4.1, 15.7,41.7 +NA,NA,a-curv-i5,2018-19,Fall River - John J Doran,00950045, 209, 19.6, 524, 48.7, 51.3, 11.6, 25.4,77.9 +NA,NA,a-curv-i5,2018-19,Fall River - Letourneau Elementary School,00950013, 220, 23.3, 650, 49.5, 50.5, 36.6, 13.9,73.2 +NA,NA,a-curv-i5,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 236, 23.9, 721, 47.9, 52.2, 26.2, 17.6,80.4 +NA,NA,a-curv-i5,2018-19,Fall River - Matthew J Kuss Middle,00950320, 400, 19.8, 767, 53.3, 46.7, 6.5, 19.0,64.4 +NA,NA,a-curv-i5,2018-19,Fall River - Morton Middle,00950315, 225, 20.8, 621, 47.5, 52.5, 8.4, 22.9,59.7 +NA,NA,a-curv-i5,2018-19,Fall River - North End Elementary,00950005, 305, 20.4, 844, 46.3, 53.7, 11.7, 29.4,59 +NA,NA,a-curv-i5,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 153, 8.5, 257, 51.0, 49.0, 10.9, 22.6,84.8 +NA,NA,a-curv-i5,2018-19,Fall River - Samuel Watson,00950145, 95, 24.8, 304, 51.6, 48.4, 14.1, 14.5,78.3 +NA,NA,a-curv-i5,2018-19,Fall River - Spencer Borden,00950130, 280, 16.1, 565, 46.0, 54.0, 10.4, 29.2,60.7 +NA,NA,a-curv-i5,2018-19,Fall River - Stone PK-12 School,00950340, 78, 5.0, 56, 19.6, 80.4, 5.4, 91.1,92.9 +NA,NA,a-curv-i5,2018-19,Fall River - Talbot Innovation School,00950305, 227, 20.1, 543, 46.0, 54.0, 32.6, 23.4,78.8 +NA,NA,a-curv-i5,2018-19,Fall River - William S Greene,00950065, 344, 18.3, 805, 50.4, 49.6, 18.6, 23.9,68.9 +NA,NA,a-curv-i5,2018-19,Falmouth - East Falmouth Elementary,00960005, 75, 16.3, 244, 51.2, 48.8, 4.5, 20.1,42.2 +NA,NA,a-curv-i5,2018-19,Falmouth - Falmouth High,00960505, 692, 13.9, 829, 51.5, 48.1, 2.3, 10.9,23.2 +NA,NA,a-curv-i5,2018-19,Falmouth - Lawrence,00960405, 442, 16.3, 581, 51.3, 48.5, 3.4, 18.4,27 +NA,NA,a-curv-i5,2018-19,Falmouth - Morse Pond School,00960305, 242, 25.9, 555, 47.8, 52.3, 2.9, 22.0,29.6 +NA,NA,a-curv-i5,2018-19,Falmouth - Mullen-Hall,00960020, 125, 17.2, 430, 46.3, 53.7, 8.1, 15.8,27.7 +NA,NA,a-curv-i5,2018-19,Falmouth - North Falmouth Elementary,00960030, 95, 17.9, 340, 53.5, 46.5, 1.5, 13.5,17.4 +NA,NA,a-curv-i5,2018-19,Falmouth - Teaticket,00960015, 82, 16.6, 384, 44.0, 56.0, 9.4, 26.6,44 +NA,NA,a-curv-i5,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 77, 13.2, 119, 39.5, 60.5, 0.0, 24.4,38.7 +NA,NA,a-curv-i5,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 360, 18.7, 692, 46.7, 53.3, 8.1, 23.1,66.5 +NA,NA,a-curv-i5,2018-19,Fitchburg - Crocker Elementary,00970016, 208, 22.8, 654, 46.6, 53.4, 23.2, 28.9,65 +NA,NA,a-curv-i5,2018-19,Fitchburg - Fitchburg High,00970505, 602, 16.4," 1,179", 47.7, 52.3, 11.5, 17.1,52.2 +NA,NA,a-curv-i5,2018-19,Fitchburg - Goodrich Academy,00970510, 139, 8.0, 294, 43.2, 56.8, 6.8, 15.3,57.5 +NA,NA,a-curv-i5,2018-19,Fitchburg - McKay Arts Academy,00970340, 282, 20.3, 669, 51.1, 48.9, 16.4, 22.9,60.7 +NA,NA,a-curv-i5,2018-19,Fitchburg - Memorial Middle School,00970048, 341, 22.1, 755, 50.9, 49.1, 13.4, 13.5,53.6 +NA,NA,a-curv-i5,2018-19,Fitchburg - Reingold Elementary,00970043, 244, 20.5, 650, 44.3, 55.7, 22.0, 22.8,58.9 +NA,NA,a-curv-i5,2018-19,Fitchburg - South Street Elementary,00970060, 260, 19.1, 641, 49.5, 50.6, 17.5, 27.6,66.6 +NA,NA,a-curv-i5,2018-19,Florida - Abbott Memorial,00980005, 87, 8.6, 89, 50.6, 49.4, 0.0, 27.0,30.3 +NA,NA,a-curv-i5,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 347, 13.2, 222, 52.3, 47.8, 0.0, 13.1,25.7 +NA,NA,a-curv-i5,2018-19,Foxborough - Charles Taylor Elementary,00990050, 97, 20.5, 225, 46.7, 53.3, 3.6, 19.6,11.6 +NA,NA,a-curv-i5,2018-19,Foxborough - Foxborough High,00990505, 532, 14.1, 826, 47.8, 52.2, 0.9, 16.2,14.8 +NA,NA,a-curv-i5,2018-19,Foxborough - John J Ahern,00990405, 551, 18.3, 853, 48.9, 51.0, 1.8, 21.5,15.2 +NA,NA,a-curv-i5,2018-19,Foxborough - Mabelle M Burrell,00990015, 114, 18.6, 329, 46.8, 53.2, 1.8, 27.4,14.6 +NA,NA,a-curv-i5,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 167, 19.6, 373, 48.5, 51.5, 9.1, 23.1,20.6 +NA,NA,a-curv-i5,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 665, 20.9," 1,622", 51.9, 48.0, 6.4, 9.7,20.4 +NA,NA,a-curv-i5,2018-19,Framingham - Barbieri Elementary,01000035, 267, 21.7, 669, 55.3, 44.7, 45.9, 22.4,48.9 +NA,NA,a-curv-i5,2018-19,Framingham - Brophy,01000006, 230, 18.6, 494, 49.4, 50.6, 44.5, 19.4,55.7 +NA,NA,a-curv-i5,2018-19,Framingham - Cameron Middle School,01000302, 346, 19.4, 606, 49.8, 50.2, 12.9, 28.6,45.5 +NA,NA,a-curv-i5,2018-19,Framingham - Charlotte A Dunning,01000007, 214, 18.6, 465, 48.0, 52.0, 14.8, 25.4,21.5 +6.246332046332046,5,a-curv-i5,2018-19,Framingham - Framingham High School,01000515," 1,036", 17.0," 2,313", 49.2, 50.8, 13.6, 17.9,29.7,2271 +NA,NA,a-curv-i5,2018-19,Framingham - Fuller Middle,01000305, 351, 19.0, 638, 46.9, 53.1, 38.2, 24.8,53.9 +NA,NA,a-curv-i5,2018-19,Framingham - Hemenway,01000015, 259, 20.0, 574, 49.7, 50.4, 17.6, 22.8,21.6 +NA,NA,a-curv-i5,2018-19,Framingham - Juniper Hill School,01000001, 376, 7.0, 330, 40.9, 59.1, 6.1, 47.6,30.9 +NA,NA,a-curv-i5,2018-19,Framingham - King Elementary School,01000005, 176, 18.8, 334, 45.8, 54.2, 20.4, 15.6,24.3 +NA,NA,a-curv-i5,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 168, 17.1, 345, 43.8, 56.2, 14.2, 33.6,42.3 +NA,NA,a-curv-i5,2018-19,Framingham - Miriam F McCarthy School,01000050, 270, 17.0, 535, 49.9, 50.1, 26.7, 35.5,49.5 +NA,NA,a-curv-i5,2018-19,Framingham - Potter Road,01000039, 204, 22.7, 543, 48.3, 51.8, 28.6, 13.8,31.5 +NA,NA,a-curv-i5,2018-19,Framingham - Walsh Middle,01000310, 471, 17.6, 743, 48.5, 51.4, 7.0, 25.6,28.3 +NA,NA,a-curv-i5,2018-19,Framingham - Woodrow Wilson,01000055, 256, 18.9, 554, 50.5, 49.5, 59.9, 12.3,62.5 +NA,NA,a-curv-i5,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 232, 17.6, 394, 52.3, 46.7, 0.0, 14.2,6.9 +NA,NA,a-curv-i5,2018-19,Franklin - Annie Sullivan Middle School,01010040, 238, 17.5, 406, 45.1, 54.7, 0.7, 15.5,7.4 +NA,NA,a-curv-i5,2018-19,Franklin - Davis Thayer,01010035, 104, 18.8, 244, 52.1, 48.0, 2.9, 21.3,17.6 +NA,NA,a-curv-i5,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 7, 17.3, 121, 43.8, 56.2, 0.0, 44.6,14.9 +NA,NA,a-curv-i5,2018-19,Franklin - Franklin High,01010505, 988, 16.7," 1,762", 49.8, 50.1, 0.4, 11.2,7.2 +NA,NA,a-curv-i5,2018-19,Franklin - Helen Keller Elementary,01010012, 176, 17.6, 386, 48.2, 51.8, 1.0, 18.1,7.8 +NA,NA,a-curv-i5,2018-19,Franklin - Horace Mann,01010405, 245, 20.2, 474, 49.0, 51.1, 0.0, 15.8,7.4 +NA,NA,a-curv-i5,2018-19,Franklin - J F Kennedy Memorial,01010013, 184, 15.9, 366, 47.0, 53.0, 1.1, 22.1,7.4 +NA,NA,a-curv-i5,2018-19,Franklin - Jefferson Elementary,01010010, 184, 15.4, 354, 45.2, 54.8, 2.3, 22.0,8.2 +NA,NA,a-curv-i5,2018-19,Franklin - Oak Street Elementary,01010030, 184, 16.7, 384, 48.7, 51.3, 0.8, 17.7,10.4 +NA,NA,a-curv-i5,2018-19,Franklin - Parmenter,01010032, 144, 18.8, 339, 49.3, 50.7, 3.5, 19.5,23.9 +NA,NA,a-curv-i5,2018-19,Franklin - Remington Middle,01010310, 251, 17.0, 410, 49.8, 50.2, 1.5, 21.5,10.2 +NA,NA,a-curv-i5,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 302, 14.7, 497, 34.6, 65.4, 0.0, 31.2,33.8 +NA,NA,a-curv-i5,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 357, 14.9, 710, 50.3, 49.7, 0.1, 13.9,11.7 +NA,NA,a-curv-i5,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 87, 21.8, 475, 48.6, 51.4, 1.5, 13.5,18.3 +NA,NA,a-curv-i5,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 83, 19.0, 436, 46.1, 53.9, 1.8, 18.6,24.1 +NA,NA,a-curv-i5,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 295, 22.9, 750, 50.3, 49.7, 0.0, 20.4,17.9 +NA,NA,a-curv-i5,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 160, 18.8, 430, 46.5, 53.5, 0.9, 16.1,20 +NA,NA,a-curv-i5,2018-19,Frontier - Frontier Regional,06700505, 444, 13.8, 656, 46.0, 54.0, 1.1, 18.0,19.1 +NA,NA,a-curv-i5,2018-19,Gardner - Elm Street School,01030001, 96, 23.3, 559, 47.6, 52.4, 6.1, 21.8,52.6 +NA,NA,a-curv-i5,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 52, 8.2, 54, 33.3, 63.0, 1.9, 31.5,74.1 +NA,NA,a-curv-i5,2018-19,Gardner - Gardner High,01030505, 322, 16.0, 662, 48.5, 51.1, 4.7, 20.4,42.6 +NA,NA,a-curv-i5,2018-19,Gardner - Gardner Middle School,01030405, 269, 21.6, 574, 46.7, 53.3, 3.0, 23.3,48.8 +NA,NA,a-curv-i5,2018-19,Gardner - Waterford Street,01030020, 77, 19.9, 458, 44.1, 55.9, 4.6, 25.1,57.4 +NA,NA,a-curv-i5,2018-19,Gateway - Chester Elementary,06720059, 55, 18.6, 128, 43.0, 57.0, 0.0, 28.1,39.1 +NA,NA,a-curv-i5,2018-19,Gateway - Gateway Regional High,06720505, 245, 9.8, 200, 52.5, 47.5, 2.0, 17.0,23 +NA,NA,a-curv-i5,2018-19,Gateway - Gateway Regional Middle School,06720405, 138, 16.2, 205, 47.8, 52.2, 1.5, 18.1,30.7 +NA,NA,a-curv-i5,2018-19,Gateway - Littleville Elementary School,06720143, 128, 20.1, 322, 51.6, 48.5, 3.4, 21.1,30.1 +7.032218844984802,5,a-curv-i5,2018-19,Georgetown - Georgetown High School,01050505, 329, 12.2, 400, 51.8, 48.3, 0.0, 15.5,8.3,398 +NA,NA,a-curv-i5,2018-19,Georgetown - Georgetown Middle School,01050305, 171, 14.4, 205, 46.3, 53.7, 0.5, 16.6,8.3 +NA,NA,a-curv-i5,2018-19,Georgetown - Penn Brook,01050010, 176, 20.8, 703, 48.8, 51.2, 0.4, 13.2,8.5 +NA,NA,a-curv-i5,2018-19,Georgetown - Perley Elementary,01050005, 4, 24.5, 98, 45.9, 54.1, 2.0, 26.5,10.2 +NA,NA,a-curv-i5,2018-19,Gill-Montague - Gill Elementary,06740005, 50, 19.2, 121, 51.2, 48.8, 0.0, 13.2,28.1 +NA,NA,a-curv-i5,2018-19,Gill-Montague - Great Falls Middle,06740310, 133, 18.1, 241, 47.3, 52.7, 2.5, 24.1,47.3 +NA,NA,a-curv-i5,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 80, 16.3, 165, 39.4, 60.6, 13.3, 26.7,57 +NA,NA,a-curv-i5,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 101, 17.6, 214, 45.3, 54.7, 10.3, 30.8,60.3 +NA,NA,a-curv-i5,2018-19,Gill-Montague - Turners Fall High,06740505, 200, 8.5, 200, 53.0, 47.0, 5.5, 26.0,41 +NA,NA,a-curv-i5,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 401, 14.7, 502, 50.8, 49.2, 10.4, 13.9,50.8 +NA,NA,a-curv-i5,2018-19,Gloucester - Beeman Memorial,01070010, 72, 18.9, 341, 45.8, 54.3, 13.5, 19.4,51 +NA,NA,a-curv-i5,2018-19,Gloucester - East Gloucester Elementary,01070020, 48, 17.3, 208, 49.5, 50.5, 5.3, 23.1,35.6 +NA,NA,a-curv-i5,2018-19,Gloucester - Gloucester High,01070505, 437, 14.6, 807, 45.5, 54.5, 6.6, 28.8,34 +NA,NA,a-curv-i5,2018-19,Gloucester - Gloucester PreSchool,01070025, 14, 11.2, 156, 40.4, 59.6, 0.0, 53.9,43.6 +NA,NA,a-curv-i5,2018-19,Gloucester - Plum Cove School,01070042, 48, 17.3, 208, 47.1, 52.9, 1.4, 18.8,26 +NA,NA,a-curv-i5,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 335, 19.2, 654, 49.7, 50.3, 4.0, 25.2,34.1 +NA,NA,a-curv-i5,2018-19,Gloucester - Veterans Memorial,01070045, 49, 17.9, 222, 54.5, 45.5, 23.9, 31.1,57.2 +NA,NA,a-curv-i5,2018-19,Gloucester - West Parish,01070050, 77, 18.2, 350, 48.9, 51.1, 2.0, 23.1,29.1 +NA,NA,a-curv-i5,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +6.278304239401496,5,a-curv-i5,2018-19,Grafton - Grafton High School,01100505, 401, 18.0, 864, 49.9, 50.1, 0.8, 14.2,11.6,863 +NA,NA,a-curv-i5,2018-19,Grafton - Grafton Middle,01100305, 293, 20.3, 521, 50.7, 49.3, 0.4, 17.3,12.3 +NA,NA,a-curv-i5,2018-19,Grafton - Millbury Street Elementary School,01100200, 319, 21.9, 694, 46.1, 53.9, 2.5, 23.6,12.5 +NA,NA,a-curv-i5,2018-19,Grafton - North Grafton Elementary,01100025, 115, 16.4, 250, 48.0, 52.0, 3.6, 26.8,13.6 +NA,NA,a-curv-i5,2018-19,Grafton - North Street Elementary School,01100030, 283, 20.9, 572, 46.5, 53.5, 1.1, 19.2,14.2 +NA,NA,a-curv-i5,2018-19,Grafton - South Grafton Elementary,01100005, 122, 18.0, 316, 43.0, 57.0, 3.8, 27.5,13.6 +NA,NA,a-curv-i5,2018-19,Granby - East Meadow,01110004, 190, 15.4, 403, 50.1, 49.9, 3.5, 22.1,29.3 +6.757603686635944,5,a-curv-i5,2018-19,Granby - Granby Jr Sr High School,01110505, 217, 14.0, 341, 43.4, 56.6, 4.4, 15.8,22.9,337 +NA,NA,a-curv-i5,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 890, 16.1," 1,406", 45.5, 54.5, 1.6, 10.2,36.1 +NA,NA,a-curv-i5,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,182", 15.0," 1,549", 50.2, 49.8, 13.0, 19.8,52.8 +NA,NA,a-curv-i5,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,418", 18.7," 2,239", 46.1, 53.8, 7.0, 19.1,43.5 +NA,NA,a-curv-i5,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,433", 15.3," 2,133", 49.5, 50.5, 3.3, 8.3,38.7 +NA,NA,a-curv-i5,2018-19,Greenfield - Discovery School at Four Corners,01140025, 85, 16.8, 245, 46.9, 53.1, 7.8, 15.5,24.1 +NA,NA,a-curv-i5,2018-19,Greenfield - Federal Street School,01140010, 96, 15.5, 248, 49.2, 50.8, 5.7, 17.3,66.5 +NA,NA,a-curv-i5,2018-19,Greenfield - Greenfield High,01140505, 373, 13.4, 493, 45.4, 54.4, 5.5, 16.0,45 +NA,NA,a-curv-i5,2018-19,Greenfield - Greenfield Middle,01140305, 392, 17.4, 404, 48.5, 51.5, 4.5, 13.9,46.8 +NA,NA,a-curv-i5,2018-19,Greenfield - Newton School,01140035, 57, 17.2, 242, 48.4, 51.7, 9.1, 15.3,69.8 +NA,NA,a-curv-i5,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 14.3, 129, 45.7, 54.3, 0.0, 38.8,48.8 +NA,NA,a-curv-i5,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 186, 22.4, 659, 56.3, 43.3, 2.0, 21.1,49.5 +NA,NA,a-curv-i5,2018-19,Groton-Dunstable - Boutwell School,06730001, 8, 10.4, 68, 44.1, 55.9, 2.9, 54.4,23.5 +NA,NA,a-curv-i5,2018-19,Groton-Dunstable - Florence Roche School,06730010, 123, 21.9, 546, 47.6, 52.4, 2.2, 15.6,8.2 +NA,NA,a-curv-i5,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 390, 17.9, 757, 51.1, 48.9, 0.1, 12.0,4.5 +NA,NA,a-curv-i5,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 354, 18.6, 733, 47.9, 52.0, 0.7, 17.9,6.4 +NA,NA,a-curv-i5,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 83, 18.3, 306, 49.4, 50.7, 2.3, 18.0,5.9 +NA,NA,a-curv-i5,2018-19,Hadley - Hadley Elementary,01170015, 284, 17.0, 289, 47.4, 52.6, 7.3, 17.7,21.8 +NA,NA,a-curv-i5,2018-19,Hadley - Hopkins Academy,01170505, 169, 13.2, 255, 49.0, 51.0, 3.9, 10.6,17.7 +NA,NA,a-curv-i5,2018-19,Halifax - Halifax Elementary,01180005, 240, 21.7, 609, 48.4, 51.6, 0.8, 16.1,16.6 +NA,NA,a-curv-i5,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 84, 20.7, 248, 44.4, 55.7, 1.2, 15.3,7.3 +NA,NA,a-curv-i5,2018-19,Hamilton-Wenham - Cutler School,06750010, 103, 19.4, 286, 50.4, 49.7, 1.4, 17.1,5.2 +NA,NA,a-curv-i5,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 323, 15.7, 562, 51.3, 48.8, 0.0, 11.7,5.5 +NA,NA,a-curv-i5,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 330, 17.7, 397, 55.9, 44.1, 0.8, 15.1,5.3 +NA,NA,a-curv-i5,2018-19,Hamilton-Wenham - Winthrop School,06750015, 93, 19.4, 289, 51.6, 48.4, 0.4, 23.2,10 +NA,NA,a-curv-i5,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 252, 18.1, 513, 52.4, 47.6, 3.5, 10.7,39.8 +NA,NA,a-curv-i5,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 125, 15.9, 205, 47.3, 52.7, 12.2, 18.1,48.3 +NA,NA,a-curv-i5,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 96, 18.2, 311, 51.1, 48.9, 0.6, 21.5,23.2 +NA,NA,a-curv-i5,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 75, 20.9, 375, 49.6, 50.4, 3.5, 18.1,17.1 +6.432566371681416,5,a-curv-i5,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 565, 16.2," 1,109", 52.0, 48.0, 0.2, 13.5,13.5,1107 +NA,NA,a-curv-i5,2018-19,Hampden-Wilbraham - Soule Road,06800030, 76, 23.0, 340, 49.4, 50.6, 1.2, 11.8,17.4 +NA,NA,a-curv-i5,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 70, 23.0, 322, 47.2, 52.8, 2.5, 17.1,15.2 +NA,NA,a-curv-i5,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 315, 18.3, 616, 49.8, 50.2, 0.0, 13.8,14.3 +NA,NA,a-curv-i5,2018-19,Hampshire - Hampshire Regional High,06830505, 554, 13.8, 721, 52.3, 47.6, 1.5, 21.2,13.6 +NA,NA,a-curv-i5,2018-19,Hancock - Hancock Elementary,01210005, 76, 5.4, 45, 53.3, 46.7, 0.0, 22.2,20 +NA,NA,a-curv-i5,2018-19,Hanover - Cedar Elementary,01220004, 202, 19.6, 484, 44.4, 55.6, 1.7, 24.4,9.1 +NA,NA,a-curv-i5,2018-19,Hanover - Center Elementary,01220005, 128, 21.2, 339, 46.9, 53.1, 1.5, 18.0,5 +NA,NA,a-curv-i5,2018-19,Hanover - Hanover High,01220505, 359, 16.6, 807, 47.2, 52.7, 0.9, 12.5,7.2 +NA,NA,a-curv-i5,2018-19,Hanover - Hanover Middle,01220305, 793, 19.2, 804, 48.3, 51.7, 0.5, 21.0,10.1 +NA,NA,a-curv-i5,2018-19,Hanover - Sylvester,01220015, 93, 22.7, 249, 52.6, 47.4, 1.2, 19.7,6.4 +NA,NA,a-curv-i5,2018-19,Harvard - Bromfield,01250505, 327, 14.6, 626, 50.6, 49.2, 0.2, 9.9,5 +NA,NA,a-curv-i5,2018-19,Harvard - Hildreth Elementary School,01250005, 237, 18.7, 456, 51.5, 48.5, 3.5, 9.4,7.9 +NA,NA,a-curv-i5,2018-19,Hatfield - Hatfield Elementary,01270005, 138, 17.4, 257, 47.1, 52.5, 0.0, 18.3,15.2 +NA,NA,a-curv-i5,2018-19,Hatfield - Smith Academy,01270505, 149, 11.0, 192, 51.0, 48.4, 0.0, 23.4,12 +NA,NA,a-curv-i5,2018-19,Haverhill - Bradford Elementary,01280008, 280, 13.8, 364, 47.0, 53.0, 14.6, 33.0,39.3 +NA,NA,a-curv-i5,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 454, 22.2," 1,123", 47.7, 52.3, 4.5, 19.1,33.9 +NA,NA,a-curv-i5,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 69, 22.1, 134, 54.5, 45.5, 6.7, 10.5,69.4 +NA,NA,a-curv-i5,2018-19,Haverhill - Consentino Middle School,01280100, 324, 23.7, 956, 46.6, 53.5, 12.7, 16.8,52.8 +NA,NA,a-curv-i5,2018-19,Haverhill - Crowell,01280020, 63, 18.8, 99, 47.5, 52.5, 19.2, 9.1,60.6 +NA,NA,a-curv-i5,2018-19,Haverhill - Dr Paul Nettle,01280050, 195, 21.1, 547, 47.0, 53.0, 6.2, 27.4,53.2 +NA,NA,a-curv-i5,2018-19,Haverhill - Golden Hill,01280026, 317, 16.9, 509, 49.3, 50.7, 16.9, 24.2,56.8 +NA,NA,a-curv-i5,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 48, 20.3, 81, 42.0, 58.0, 35.8, 13.6,79 +NA,NA,a-curv-i5,2018-19,Haverhill - Haverhill Alternative School,01280033, 44, 5.5, 41, 22.0, 78.1, 4.9, 90.2,68.3 +NA,NA,a-curv-i5,2018-19,Haverhill - Haverhill High,01280505," 1,293", 17.4," 1,977", 50.7, 49.3, 6.5, 16.7,37.6 +NA,NA,a-curv-i5,2018-19,Haverhill - John G Whittier,01280085, 156, 27.1, 535, 50.1, 49.9, 5.2, 23.2,43 +NA,NA,a-curv-i5,2018-19,Haverhill - Moody,01280045, 216, 10.3, 248, 35.5, 64.5, 0.0, 60.5,52.4 +NA,NA,a-curv-i5,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 342, 15.2, 493, 46.9, 53.1, 13.4, 31.4,52.1 +NA,NA,a-curv-i5,2018-19,Haverhill - Silver Hill Elementary School,01280067, 227, 23.4, 582, 49.5, 50.5, 8.6, 18.4,38 +NA,NA,a-curv-i5,2018-19,Haverhill - TEACH,01280073, 56, 3.6, 39, 15.4, 84.6, 0.0, 94.9,66.7 +NA,NA,a-curv-i5,2018-19,Haverhill - Tilton,01280075, 229, 18.1, 454, 50.0, 50.0, 25.3, 21.6,66.3 +NA,NA,a-curv-i5,2018-19,Haverhill - Walnut Square,01280080, 67, 22.0, 134, 51.5, 48.5, 1.5, 6.7,30.6 +NA,NA,a-curv-i5,2018-19,Hawlemont - Hawlemont Regional,06850005, 40, 17.6, 154, 57.1, 42.9, 0.0, 29.9,47.4 +NA,NA,a-curv-i5,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 102, 14.9, 190, 47.9, 52.1, 8.4, 26.3,59 +NA,NA,a-curv-i5,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 121, 20.5, 306, 54.3, 45.8, 10.8, 16.7,17.7 +NA,NA,a-curv-i5,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 57, 27.0, 217, 47.0, 52.5, 0.0, 21.2,15.2 +NA,NA,a-curv-i5,2018-19,Hingham - East Elementary School,01310005, 184, 20.3, 539, 47.5, 52.5, 0.0, 20.0,5.4 +NA,NA,a-curv-i5,2018-19,Hingham - Hingham High,01310505, 590, 15.5," 1,260", 49.6, 50.4, 0.2, 9.4,5.8 +NA,NA,a-curv-i5,2018-19,Hingham - Hingham Middle School,01310410, 592, 17.9," 1,024", 48.3, 51.7, 0.3, 11.3,5.7 +NA,NA,a-curv-i5,2018-19,Hingham - Plymouth River,01310019, 175, 20.3, 445, 48.8, 51.2, 0.5, 15.7,4.3 +NA,NA,a-curv-i5,2018-19,Hingham - South Elementary,01310020, 191, 21.8, 520, 48.5, 51.5, 0.0, 15.4,3.7 +NA,NA,a-curv-i5,2018-19,Hingham - Wm L Foster Elementary,01310010, 183, 21.3, 488, 46.3, 53.7, 1.4, 16.8,4.1 +6.50566037735849,5,a-curv-i5,2018-19,Holbrook - Holbrook Middle High School,01330505, 318, 16.3, 606, 51.0, 48.8, 5.6, 18.2,31.7,594 +NA,NA,a-curv-i5,2018-19,Holbrook - John F Kennedy,01330018, 137, 23.0, 681, 46.3, 53.7, 7.2, 20.3,29.5 +NA,NA,a-curv-i5,2018-19,Holland - Holland Elementary,01350005, 65, 17.0, 233, 48.9, 51.1, 0.0, 13.3,28.8 +NA,NA,a-curv-i5,2018-19,Holliston - Holliston High,01360505, 482, 16.4, 833, 50.8, 49.2, 0.8, 13.0,6 +NA,NA,a-curv-i5,2018-19,Holliston - Miller School,01360007, 365, 19.8, 678, 49.3, 50.7, 2.4, 19.6,8.1 +NA,NA,a-curv-i5,2018-19,Holliston - Placentino Elementary,01360010, 228, 16.6, 710, 44.2, 55.6, 4.2, 16.5,7.3 +NA,NA,a-curv-i5,2018-19,Holliston - Robert H. Adams Middle School,01360305, 479, 14.2, 688, 48.4, 51.6, 2.0, 18.9,7.1 +NA,NA,a-curv-i5,2018-19,Holyoke - E N White Elementary,01370045, 124, 20.2, 412, 44.7, 55.3, 14.1, 29.9,71.4 +NA,NA,a-curv-i5,2018-19,Holyoke - H.B. Lawrence School,01370070, 91, 15.7, 237, 46.8, 53.2, 28.7, 24.5,90.3 +NA,NA,a-curv-i5,2018-19,Holyoke - Holyoke High,01370505," 1,040", 16.0," 1,461", 48.5, 51.3, 18.3, 20.3,69.7 +NA,NA,a-curv-i5,2018-19,Holyoke - Holyoke STEM Academy,01370320, 104, 20.4, 266, 50.4, 49.6, 30.1, 25.9,80.5 +NA,NA,a-curv-i5,2018-19,Holyoke - Joseph Metcalf School,01370003, 79, 18.6, 268, 56.3, 43.7, 12.7, 24.3,52.6 +NA,NA,a-curv-i5,2018-19,Holyoke - Kelly Elementary,01370040, 170, 17.5, 443, 44.7, 55.3, 29.4, 23.3,89.6 +NA,NA,a-curv-i5,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 199, 17.8, 532, 49.3, 50.8, 17.7, 25.8,79.1 +NA,NA,a-curv-i5,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 134, 20.9, 411, 46.7, 53.3, 14.4, 30.9,68.4 +NA,NA,a-curv-i5,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 217, 16.7, 501, 44.5, 55.5, 27.0, 34.3,83 +NA,NA,a-curv-i5,2018-19,Holyoke - Morgan Full Service Community School,01370025, 58, 21.8, 341, 47.8, 52.2, 25.5, 26.1,90.9 +NA,NA,a-curv-i5,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 33, 24.8, 130, 46.2, 53.9, 34.6, 39.2,92.3 +NA,NA,a-curv-i5,2018-19,Holyoke - William R. Peck School,01370030, 138, 12.9, 303, 38.6, 61.4, 36.0, 40.6,89.1 +NA,NA,a-curv-i5,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 211, 23.0, 702, 53.4, 46.6, 15.2, 21.5,67.1 +NA,NA,a-curv-i5,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 356, 12.7, 474, 49.2, 50.8, 1.3, 14.6,10.3 +NA,NA,a-curv-i5,2018-19,Hopedale - Memorial,01380010, 240, 19.9, 527, 46.7, 53.3, 2.7, 26.0,12.5 +NA,NA,a-curv-i5,2018-19,Hopedale - Park Street School,01380003, 13, 7.3, 95, 50.5, 49.5, 0.0, 26.3,16.8 +NA,NA,a-curv-i5,2018-19,Hopkinton - Elmwood,01390010, 136, 21.8, 559, 49.2, 50.8, 8.8, 9.8,3.9 +NA,NA,a-curv-i5,2018-19,Hopkinton - Hopkins Elementary School,01390015, 252, 24.4, 560, 47.5, 52.5, 4.5, 11.3,5.4 +NA,NA,a-curv-i5,2018-19,Hopkinton - Hopkinton High,01390505, 919, 18.2," 1,186", 50.8, 49.2, 0.9, 12.4,4.8 +NA,NA,a-curv-i5,2018-19,Hopkinton - Hopkinton Middle School,01390305, 549, 20.3, 857, 50.3, 49.7, 0.9, 12.4,5.7 +NA,NA,a-curv-i5,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 10, 10.3, 82, 28.1, 72.0, 23.2, 47.6,6.1 +NA,NA,a-curv-i5,2018-19,Hopkinton - Marathon Elementary School,01390005, 120, 19.9, 504, 51.2, 48.8, 20.0, 9.1,5.6 +NA,NA,a-curv-i5,2018-19,Hudson - C A Farley,01410030, 199, 20.1, 428, 50.7, 49.3, 17.3, 12.4,27.3 +NA,NA,a-curv-i5,2018-19,Hudson - David J. Quinn Middle School,01410410, 582, 20.7, 647, 52.4, 47.6, 7.3, 19.2,25.7 +NA,NA,a-curv-i5,2018-19,Hudson - Forest Avenue Elementary,01410015, 159, 20.3, 354, 46.1, 54.0, 16.7, 13.3,22.3 +NA,NA,a-curv-i5,2018-19,Hudson - Hudson High,01410505, 492, 15.3, 901, 52.1, 48.0, 7.3, 12.4,20.4 +NA,NA,a-curv-i5,2018-19,Hudson - Mulready Elementary,01410007, 123, 18.1, 252, 50.0, 50.0, 12.7, 23.8,26.2 +NA,NA,a-curv-i5,2018-19,Hull - Hull High,01420505, 276, 9.3, 289, 47.8, 52.3, 0.0, 20.4,30.5 +NA,NA,a-curv-i5,2018-19,Hull - Lillian M Jacobs,01420015, 168, 19.5, 411, 46.2, 53.8, 1.5, 23.8,29.4 +NA,NA,a-curv-i5,2018-19,Hull - Memorial Middle,01420305, 119, 13.5, 181, 47.5, 52.5, 0.6, 17.7,27.1 +NA,NA,a-curv-i5,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 430, 18.9, 792, 52.9, 47.0, 1.8, 18.4,10.6 +NA,NA,a-curv-i5,2018-19,Ipswich - Ipswich High,01440505, 389, 12.4, 547, 52.8, 47.0, 0.9, 11.5,11.9 +NA,NA,a-curv-i5,2018-19,Ipswich - Ipswich Middle School,01440305, 220, 20.8, 412, 50.2, 49.8, 1.7, 18.0,11.4 +NA,NA,a-curv-i5,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 180, 20.0, 404, 49.0, 51.0, 4.0, 20.5,11.6 +NA,NA,a-curv-i5,2018-19,Ipswich - Winthrop,01440015, 180, 18.7, 379, 49.3, 50.7, 4.0, 20.8,23.5 +NA,NA,a-curv-i5,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 107, 36.0, 599, 47.9, 52.1, 28.1, 21.9,63.4 +NA,NA,a-curv-i5,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 465, 23.7," 1,466", 50.7, 49.3, 19.2, 12.4,48.8 +NA,NA,a-curv-i5,2018-19,King Philip - King Philip Middle School,06900510, 346, 19.7, 738, 48.6, 51.4, 0.7, 15.9,11.1 +NA,NA,a-curv-i5,2018-19,King Philip - King Philip Regional High,06900505, 484, 19.1," 1,302", 47.5, 52.5, 0.6, 12.4,8.5 +NA,NA,a-curv-i5,2018-19,Kingston - Kingston Elementary,01450005, 150, 21.0, 445, 48.8, 51.2, 2.5, 14.4,15.3 +NA,NA,a-curv-i5,2018-19,Kingston - Kingston Intermediate,01450020, 235, 21.3, 602, 48.7, 51.2, 1.8, 17.6,17.3 +NA,NA,a-curv-i5,2018-19,Lawrence - Alexander B Bruce,01490015, 223, 21.2, 562, 51.4, 48.6, 41.3, 18.3,68.5 +NA,NA,a-curv-i5,2018-19,Lawrence - Arlington Middle School,01490017, 264, 23.9, 612, 48.5, 51.0, 41.8, 17.8,72.9 +NA,NA,a-curv-i5,2018-19,Lawrence - Community Day Arlington,01490009, 120, 25.7, 616, 46.1, 53.7, 55.7, 12.0,77.8 +NA,NA,a-curv-i5,2018-19,Lawrence - Edward F. Parthum,01490053, 231, 19.7, 654, 47.6, 52.5, 39.1, 18.8,66.1 +NA,NA,a-curv-i5,2018-19,Lawrence - Emily G Wetherbee,01490080, 247, 20.3, 647, 52.7, 47.3, 29.8, 21.2,62.3 +NA,NA,a-curv-i5,2018-19,Lawrence - Francis M Leahy,01490040, 160, 23.8, 472, 49.2, 50.9, 41.7, 12.3,75 +NA,NA,a-curv-i5,2018-19,Lawrence - Frost Middle School,01490525, 204, 26.5, 537, 46.2, 53.8, 15.1, 14.3,58.7 +NA,NA,a-curv-i5,2018-19,Lawrence - Gerard A. Guilmette,01490022, 140, 25.6, 516, 48.3, 51.7, 36.1, 22.9,74.6 +NA,NA,a-curv-i5,2018-19,Lawrence - Guilmette Middle School,01490025, 299, 13.8, 486, 50.8, 49.2, 27.6, 19.6,72.2 +6.664285714285714,5,a-curv-i5,2018-19,Lawrence - High School Learning Center,01490536, 112, 8.0, 150, 42.7, 57.3, 23.3, 17.3,62,187 +NA,NA,a-curv-i5,2018-19,Lawrence - James F Hennessey,01490020, 78, 18.0, 361, 44.3, 55.4, 57.3, 28.0,74 +NA,NA,a-curv-i5,2018-19,Lawrence - John Breen School,01490003, 23, 15.5, 356, 43.5, 55.9, 61.8, 30.6,67.4 +NA,NA,a-curv-i5,2018-19,Lawrence - John K Tarbox,01490075, 65, 20.2, 292, 43.5, 56.2, 52.4, 12.3,78.1 +NA,NA,a-curv-i5,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 9, 21.6, 194, 42.3, 56.7, 29.4, 9.8,78.4 +NA,NA,a-curv-i5,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 46, 17.6, 195, 44.1, 55.4, 34.4, 15.9,72.8 +6.287159015302728,5,a-curv-i5,2018-19,Lawrence - Lawrence High School,01490515," 1,503", 17.7," 3,274", 47.2, 52.1, 36.1, 15.9,65.1,3218 +NA,NA,a-curv-i5,2018-19,Lawrence - Oliver Partnership School,01490048, 105, 24.0, 505, 49.9, 49.7, 48.9, 14.1,78.6 +NA,NA,a-curv-i5,2018-19,Lawrence - Parthum Middle School,01490027, 249, 24.7, 620, 51.8, 47.9, 30.0, 16.5,66.1 +NA,NA,a-curv-i5,2018-19,Lawrence - Robert Frost,01490018, 150, 24.3, 608, 50.7, 48.9, 26.8, 15.1,60.7 +NA,NA,a-curv-i5,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 17, 11.7, 199, 39.7, 59.8, 48.2, 41.2,68.3 +NA,NA,a-curv-i5,2018-19,Lawrence - School for Exceptional Studies,01490537, 227, 4.5, 141, 17.7, 82.3, 19.2, 100.0,89.4 +NA,NA,a-curv-i5,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 228, 26.5, 776, 46.5, 53.4, 41.8, 24.1,75.6 +NA,NA,a-curv-i5,2018-19,Lawrence - Spark Academy,01490085, 187, 17.1, 458, 48.9, 50.9, 28.6, 23.1,71.6 +NA,NA,a-curv-i5,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 92, 24.0, 322, 45.7, 54.4, 44.4, 13.0,68.3 +NA,NA,a-curv-i5,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 74, 28.6, 353, 46.2, 53.5, 31.4, 15.3,72.8 +NA,NA,a-curv-i5,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 377, 18.4, 761, 55.5, 44.6, 28.0, 9.2,55.9 +NA,NA,a-curv-i5,2018-19,Lee - Lee Elementary,01500025, 193, 16.3, 345, 49.0, 51.0, 7.5, 14.8,38.8 +6.941176470588235,5,a-curv-i5,2018-19,Lee - Lee Middle/High School,01500505, 272, 11.6, 353, 49.3, 50.7, 2.3, 12.8,30,360 +NA,NA,a-curv-i5,2018-19,Leicester - Leicester High,01510505, 233, 17.5, 482, 48.1, 51.5, 2.3, 13.9,23.4 +NA,NA,a-curv-i5,2018-19,Leicester - Leicester Memorial Elementary,01510005, 109, 20.6, 321, 42.1, 57.9, 4.4, 16.2,26.8 +NA,NA,a-curv-i5,2018-19,Leicester - Leicester Middle,01510015, 231, 16.0, 371, 45.6, 54.5, 1.4, 15.1,23.7 +NA,NA,a-curv-i5,2018-19,Leicester - Leicester Primary School,01510010, 136, 19.8, 363, 46.3, 53.7, 6.1, 20.4,26.7 +NA,NA,a-curv-i5,2018-19,Lenox - Lenox Memorial High,01520505, 371, 12.0, 431, 50.8, 49.2, 1.9, 8.1,18.6 +NA,NA,a-curv-i5,2018-19,Lenox - Morris,01520015, 164, 17.0, 322, 47.5, 52.5, 3.7, 13.4,15.2 +NA,NA,a-curv-i5,2018-19,Leominster - Bennett,01530003, 15, 9.3, 138, 37.0, 63.0, 39.9, 55.1,31.9 +NA,NA,a-curv-i5,2018-19,Leominster - Center For Technical Education Innovation,01530605, 134, 14.6, 715, 35.2, 64.8, 4.9, 28.3,37.9 +NA,NA,a-curv-i5,2018-19,Leominster - Fall Brook,01530007, 313, 23.1, 651, 45.9, 53.9, 20.0, 23.7,37 +NA,NA,a-curv-i5,2018-19,Leominster - Frances Drake School,01530010, 317, 19.4, 579, 48.4, 51.6, 22.1, 27.8,48.2 +NA,NA,a-curv-i5,2018-19,Leominster - Johnny Appleseed,01530025, 357, 20.2, 677, 51.1, 48.9, 15.7, 18.5,38.7 +NA,NA,a-curv-i5,2018-19,Leominster - Leominster Center for Excellence,01530515, 43, 16.3, 60, 56.7, 43.3, 1.7, 40.0,53.3 +6.680615384615384,5,a-curv-i5,2018-19,Leominster - Leominster High School,01530505, 650, 19.2," 1,664", 48.3, 51.6, 6.4, 16.5,34.4,1072 +NA,NA,a-curv-i5,2018-19,Leominster - Lincoln School,01530005, 5, 9.2, 46, 34.8, 65.2, 41.3, 63.0,45.7 +NA,NA,a-curv-i5,2018-19,Leominster - Northwest,01530030, 319, 24.4, 710, 49.6, 50.4, 16.2, 20.6,44.5 +NA,NA,a-curv-i5,2018-19,Leominster - Priest Street,01530040, 56, 17.8, 143, 46.2, 53.9, 29.4, 30.8,49 +NA,NA,a-curv-i5,2018-19,Leominster - Samoset School,01530045, 389, 14.9, 508, 48.8, 51.0, 2.8, 24.6,35.8 +NA,NA,a-curv-i5,2018-19,Leominster - Sky View Middle School,01530320, 592, 19.6, 939, 48.8, 51.2, 10.7, 22.8,39.9 +NA,NA,a-curv-i5,2018-19,Leverett - Leverett Elementary,01540005, 50, 16.8, 137, 38.7, 61.3, 2.2, 16.8,19.7 +NA,NA,a-curv-i5,2018-19,Lexington - Bowman,01550008, 122, 20.8, 559, 47.8, 52.2, 16.1, 10.2,5.7 +NA,NA,a-curv-i5,2018-19,Lexington - Bridge,01550006, 127, 19.5, 550, 49.6, 50.4, 11.3, 11.6,7.3 +NA,NA,a-curv-i5,2018-19,Lexington - Fiske,01550015, 111, 20.1, 488, 46.7, 53.3, 15.0, 17.0,5.1 +NA,NA,a-curv-i5,2018-19,Lexington - Harrington,01550030, 109, 20.9, 501, 49.1, 50.9, 12.0, 13.4,6.2 +NA,NA,a-curv-i5,2018-19,Lexington - Jonas Clarke Middle,01550305, 532, 18.8, 926, 49.7, 50.1, 5.1, 13.8,5 +NA,NA,a-curv-i5,2018-19,Lexington - Joseph Estabrook,01550010, 127, 21.1, 592, 47.3, 52.7, 19.4, 11.5,6.4 +NA,NA,a-curv-i5,2018-19,Lexington - Lexington Children's Place,01550001, 6, 13.7, 82, 34.2, 65.9, 24.4, 47.6,13.4 +NA,NA,a-curv-i5,2018-19,Lexington - Lexington High,01550505," 1,210", 19.7," 2,265", 49.6, 50.3, 2.2, 10.7,5.2 +NA,NA,a-curv-i5,2018-19,Lexington - Maria Hastings,01550035, 98, 21.2, 457, 46.8, 53.2, 16.4, 19.7,5.7 +NA,NA,a-curv-i5,2018-19,Lexington - Wm Diamond Middle,01550310, 545, 18.5, 929, 52.4, 47.6, 5.3, 14.8,4.3 +NA,NA,a-curv-i5,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 58, 21.0, 176, 43.8, 56.3, 45.5, 26.1,76.7 +NA,NA,a-curv-i5,2018-19,Lincoln - Hanscom Middle,01570305, 166, 18.3, 280, 53.9, 46.1, 2.1, 18.2,0 +NA,NA,a-curv-i5,2018-19,Lincoln - Hanscom Primary,01570006, 100, 15.9, 302, 52.3, 47.7, 7.0, 21.2,.7 +NA,NA,a-curv-i5,2018-19,Lincoln - Lincoln School,01570025, 319, 16.1, 599, 49.3, 50.8, 4.7, 22.4,10.2 +NA,NA,a-curv-i5,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,239", 18.3," 1,537", 47.1, 52.9, 0.7, 17.2,5.5 +6.427947598253274,5,a-curv-i5,2018-19,Littleton - Littleton High School,01580505, 229, 13.6, 442, 56.1, 43.7, 0.7, 14.7,5,450 +NA,NA,a-curv-i5,2018-19,Littleton - Littleton Middle School,01580305, 191, 18.9, 367, 51.8, 48.2, 0.8, 16.6,8.7 +NA,NA,a-curv-i5,2018-19,Littleton - Russell St Elementary,01580015, 198, 22.2, 399, 50.6, 49.4, 0.8, 15.0,7.5 +NA,NA,a-curv-i5,2018-19,Littleton - Shaker Lane Elementary,01580005, 201, 19.7, 451, 49.7, 50.3, 5.1, 15.3,5.8 +NA,NA,a-curv-i5,2018-19,Longmeadow - Blueberry Hill,01590005, 208, 19.9, 444, 49.6, 50.5, 1.8, 15.5,5 +NA,NA,a-curv-i5,2018-19,Longmeadow - Center,01590010, 197, 19.5, 413, 46.7, 53.3, 0.0, 19.9,4.6 +NA,NA,a-curv-i5,2018-19,Longmeadow - Glenbrook Middle,01590017, 178, 18.8, 342, 50.3, 49.7, 0.6, 22.2,10.2 +NA,NA,a-curv-i5,2018-19,Longmeadow - Longmeadow High,01590505, 412, 18.9, 967, 50.3, 49.7, 0.6, 16.3,6.3 +NA,NA,a-curv-i5,2018-19,Longmeadow - Williams Middle,01590305, 175, 18.3, 317, 48.6, 51.4, 0.0, 17.7,6 +NA,NA,a-curv-i5,2018-19,Longmeadow - Wolf Swamp Road,01590025, 168, 19.2, 398, 45.5, 54.5, 3.3, 20.9,13.1 +NA,NA,a-curv-i5,2018-19,Lowell - Abraham Lincoln,01600020, 273, 19.6, 525, 46.1, 53.9, 31.1, 20.6,62.3 +NA,NA,a-curv-i5,2018-19,Lowell - B.F. Butler Middle School,01600310, 317, 19.4, 583, 52.0, 48.0, 13.7, 19.6,54.2 +NA,NA,a-curv-i5,2018-19,Lowell - Bartlett Community Partnership,01600090, 260, 19.5, 493, 49.7, 50.3, 29.0, 24.8,57.4 +NA,NA,a-curv-i5,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 11, 10.8, 119, 30.3, 69.8, 16.0, 53.8,51.3 +NA,NA,a-curv-i5,2018-19,Lowell - Charles W Morey,01600030, 262, 19.7, 512, 50.4, 49.6, 39.5, 19.3,42.8 +NA,NA,a-curv-i5,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 228, 22.9, 510, 44.9, 55.1, 36.5, 19.0,72.2 +NA,NA,a-curv-i5,2018-19,Lowell - Dr An Wang School,01600345, 334, 22.5, 706, 47.0, 53.0, 24.9, 16.4,53 +NA,NA,a-curv-i5,2018-19,Lowell - Dr Gertrude Bailey,01600002, 283, 18.9, 509, 45.6, 54.4, 26.5, 20.2,45.6 +NA,NA,a-curv-i5,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 152, 2.9, 49, 24.5, 75.5, 6.1, 100.0,65.3 +NA,NA,a-curv-i5,2018-19,Lowell - Greenhalge,01600015, 261, 20.3, 527, 46.9, 53.1, 28.8, 20.1,70.8 +NA,NA,a-curv-i5,2018-19,Lowell - Henry J Robinson Middle,01600330, 297, 26.0, 700, 50.0, 50.0, 29.1, 17.0,67.1 +NA,NA,a-curv-i5,2018-19,Lowell - James S Daley Middle School,01600315, 322, 21.9, 699, 44.9, 55.1, 8.2, 19.5,39.5 +NA,NA,a-curv-i5,2018-19,Lowell - James Sullivan Middle School,01600340, 225, 23.8, 512, 49.4, 50.6, 25.2, 18.6,58.2 +NA,NA,a-curv-i5,2018-19,Lowell - John J Shaughnessy,01600050, 269, 19.5, 499, 49.7, 50.3, 27.5, 19.0,60.1 +NA,NA,a-curv-i5,2018-19,Lowell - Joseph McAvinnue,01600010, 283, 18.8, 503, 49.1, 50.9, 35.8, 17.9,66.2 +NA,NA,a-curv-i5,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 370, 21.6, 706, 49.4, 50.6, 26.6, 16.0,63.6 +NA,NA,a-curv-i5,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 74, 2.7, 28, 10.7, 89.3, 10.7, 100.0,92.9 +NA,NA,a-curv-i5,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 83, 5.0, 46, 32.6, 67.4, 4.4, 100.0,87 +NA,NA,a-curv-i5,2018-19,Lowell - Lowell High,01600505," 2,014", 21.1," 3,226", 51.0, 49.0, 12.5, 10.9,46.9 +NA,NA,a-curv-i5,2018-19,Lowell - Moody Elementary,01600027, 126, 24.3, 297, 53.2, 46.8, 42.4, 11.8,71.7 +NA,NA,a-curv-i5,2018-19,Lowell - Pawtucketville Memorial,01600036, 286, 18.2, 496, 47.2, 52.8, 20.2, 19.8,45.4 +NA,NA,a-curv-i5,2018-19,Lowell - Peter W Reilly,01600040, 295, 20.7, 589, 49.8, 50.3, 28.0, 18.3,50.8 +NA,NA,a-curv-i5,2018-19,Lowell - Pyne Arts,01600018, 359, 18.3, 497, 47.3, 52.7, 17.5, 21.5,45.1 +NA,NA,a-curv-i5,2018-19,Lowell - Rogers STEM Academy,01600005, 390, 18.1, 733, 48.2, 51.8, 31.7, 13.8,62.8 +NA,NA,a-curv-i5,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 251, 20.6, 507, 52.7, 47.3, 23.5, 21.7,67.7 +NA,NA,a-curv-i5,2018-19,Lowell - The Career Academy,01600515, 107, 9.6, 107, 27.1, 72.9, 14.0, 23.4,77.6 +NA,NA,a-curv-i5,2018-19,Lowell - Washington,01600055, 171, 15.5, 263, 39.9, 60.1, 33.1, 24.0,55.5 +NA,NA,a-curv-i5,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 234, 20.7, 803, 50.2, 49.7, 51.1, 17.8,49.2 +NA,NA,a-curv-i5,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 103, 14.2, 100, 45.0, 55.0, 10.0, 28.0,71 +NA,NA,a-curv-i5,2018-19,Ludlow - Chapin Street Elementary School,01610020, 145, 18.0, 320, 49.1, 50.9, 4.4, 13.1,27.8 +NA,NA,a-curv-i5,2018-19,Ludlow - East Street Elementary School,01610010, 175, 12.5, 399, 47.6, 52.4, 9.3, 22.6,33.8 +NA,NA,a-curv-i5,2018-19,Ludlow - Ludlow Senior High,01610505, 395, 16.3, 894, 50.2, 49.6, 1.6, 13.7,22.6 +NA,NA,a-curv-i5,2018-19,Ludlow - Paul R Baird Middle,01610305, 295, 17.8, 618, 49.0, 51.0, 1.3, 14.9,24.9 +NA,NA,a-curv-i5,2018-19,Ludlow - Veterans Park Elementary,01610023, 210, 18.8, 372, 52.7, 47.3, 3.0, 16.1,31.7 +NA,NA,a-curv-i5,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 1, 4.0, 4, 75.0, 25.0, 0.0, 100.0,100 +NA,NA,a-curv-i5,2018-19,Lunenburg - Lunenburg High,01620505, 240, 15.0, 463, 50.3, 49.7, 0.0, 9.5,12.1 +NA,NA,a-curv-i5,2018-19,Lunenburg - Lunenburg Middle School,01620305, 203, 22.0, 401, 46.6, 53.4, 1.0, 13.2,17.7 +NA,NA,a-curv-i5,2018-19,Lunenburg - Lunenburg Primary School,01620010, 185, 22.8, 426, 48.8, 51.2, 2.4, 24.2,18.5 +NA,NA,a-curv-i5,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 184, 22.9, 372, 47.9, 52.2, 2.7, 13.7,16.7 +NA,NA,a-curv-i5,2018-19,Lynn - A Drewicz Elementary,01630016, 106, 21.3, 511, 52.5, 47.6, 38.9, 9.6,59.9 +NA,NA,a-curv-i5,2018-19,Lynn - Aborn,01630011, 53, 19.6, 246, 50.8, 49.2, 9.8, 8.5,37.4 +NA,NA,a-curv-i5,2018-19,Lynn - Breed Middle School,01630405, 520, 24.7," 1,425", 48.1, 51.9, 15.4, 17.8,58.8 +NA,NA,a-curv-i5,2018-19,Lynn - Brickett Elementary,01630020, 78, 20.3, 358, 46.7, 53.4, 36.3, 14.8,63.7 +NA,NA,a-curv-i5,2018-19,Lynn - Capt William G Shoemaker,01630090, 88, 15.4, 327, 39.5, 60.6, 5.5, 46.8,37.9 +NA,NA,a-curv-i5,2018-19,Lynn - Classical High,01630505, 603, 19.3," 1,660", 48.2, 51.8, 23.6, 10.3,48.1 +NA,NA,a-curv-i5,2018-19,Lynn - Cobbet Elementary,01630035, 135, 20.1, 600, 45.7, 54.3, 49.0, 14.0,70.3 +NA,NA,a-curv-i5,2018-19,Lynn - E J Harrington,01630045, 154, 18.2, 670, 48.7, 51.3, 36.9, 23.3,68.8 +NA,NA,a-curv-i5,2018-19,Lynn - Early Childhood Center,01630004, 79, 16.3, 317, 39.1, 60.9, 43.2, 35.0,65 +NA,NA,a-curv-i5,2018-19,Lynn - Edward A Sisson,01630095, 90, 20.9, 444, 48.9, 51.1, 15.8, 14.6,41.4 +7.464705882352942,5,a-curv-i5,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 136, 5.0, 106, 35.9, 64.2, 5.7, 48.1,67.9,91 +NA,NA,a-curv-i5,2018-19,Lynn - Hood,01630055, 102, 19.8, 469, 50.5, 49.5, 26.4, 14.3,59.7 +NA,NA,a-curv-i5,2018-19,Lynn - Ingalls,01630060, 134, 21.6, 649, 48.5, 51.5, 43.9, 15.4,66 +NA,NA,a-curv-i5,2018-19,Lynn - Julia F Callahan,01630030, 114, 16.2, 450, 47.3, 52.7, 21.6, 29.6,57.6 +NA,NA,a-curv-i5,2018-19,Lynn - Lincoln-Thomson,01630070, 55, 18.4, 236, 46.6, 53.0, 21.6, 17.8,55.1 +NA,NA,a-curv-i5,2018-19,Lynn - Lynn English High,01630510, 686, 20.0," 1,969", 46.4, 53.5, 32.2, 10.7,54.9 +NA,NA,a-curv-i5,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 683, 17.8," 1,026", 43.2, 56.7, 13.9, 20.3,54.3 +NA,NA,a-curv-i5,2018-19,Lynn - Lynn Woods,01630075, 36, 20.2, 175, 53.7, 46.3, 5.1, 18.3,29.1 +NA,NA,a-curv-i5,2018-19,Lynn - Pickering Middle,01630420, 298, 22.1, 667, 48.3, 51.7, 9.3, 18.9,42 +NA,NA,a-curv-i5,2018-19,Lynn - Robert L Ford,01630050, 105, 21.3, 501, 50.7, 49.3, 44.3, 10.4,62.9 +NA,NA,a-curv-i5,2018-19,Lynn - Sewell-Anderson,01630085, 68, 17.3, 275, 45.1, 54.9, 14.9, 24.4,39.6 +NA,NA,a-curv-i5,2018-19,Lynn - Thurgood Marshall Mid,01630305, 527, 24.0," 1,350", 49.2, 50.7, 17.6, 16.4,61.2 +NA,NA,a-curv-i5,2018-19,Lynn - Tracy,01630100, 91, 21.6, 440, 51.4, 48.6, 39.3, 12.3,65.5 +NA,NA,a-curv-i5,2018-19,Lynn - Washington Elementary School,01630005, 100, 20.1, 449, 47.2, 52.8, 45.7, 17.4,70.2 +NA,NA,a-curv-i5,2018-19,Lynn - William R Fallon,01630080, 19, 5.5, 48, 12.5, 87.5, 8.3, 97.9,87.5 +NA,NA,a-curv-i5,2018-19,Lynn - Wm P Connery,01630040, 122, 22.4, 627, 51.4, 48.6, 43.1, 10.7,66.2 +NA,NA,a-curv-i5,2018-19,Lynnfield - Huckleberry Hill,01640010, 85, 20.4, 434, 55.3, 44.7, 5.5, 19.4,9 +NA,NA,a-curv-i5,2018-19,Lynnfield - Lynnfield High,01640505, 275, 15.6, 628, 51.9, 48.1, 0.5, 17.8,7.3 +NA,NA,a-curv-i5,2018-19,Lynnfield - Lynnfield Middle School,01640405, 326, 18.7, 664, 46.1, 53.9, 1.1, 17.3,7.1 +NA,NA,a-curv-i5,2018-19,Lynnfield - Lynnfield Preschool,01640005, 3, 14.3, 43, 44.2, 55.8, 0.0, 44.2,2.3 +NA,NA,a-curv-i5,2018-19,Lynnfield - Summer Street,01640020, 88, 19.6, 432, 47.2, 52.8, 3.2, 17.1,4.6 +NA,NA,a-curv-i5,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 361, 20.4," 1,226", 52.6, 47.4, 26.7, 22.9,58.5 +NA,NA,a-curv-i5,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 24, 16.3, 49, 42.9, 57.1, 0.0, 0.0,2 +NA,NA,a-curv-i5,2018-19,Malden - Beebe,01650003, 424, 21.1, 899, 49.1, 51.0, 22.6, 13.2,44.6 +NA,NA,a-curv-i5,2018-19,Malden - Ferryway,01650013, 345, 23.2, 908, 49.3, 50.7, 20.8, 14.1,47.9 +NA,NA,a-curv-i5,2018-19,Malden - Forestdale,01650027, 324, 17.9, 558, 47.1, 52.9, 9.1, 25.1,40.7 +NA,NA,a-curv-i5,2018-19,Malden - Linden,01650047, 423, 21.1, 884, 48.9, 51.0, 13.0, 19.3,36.1 +NA,NA,a-curv-i5,2018-19,Malden - Malden Early Learning Center,01650049, 29, 15.0, 426, 37.8, 62.2, 6.8, 42.3,38 +NA,NA,a-curv-i5,2018-19,Malden - Malden High,01650505, 685, 20.0," 1,861", 48.4, 51.6, 15.7, 15.2,43.6 +NA,NA,a-curv-i5,2018-19,Malden - Salemwood,01650057, 602, 20.2," 1,192", 49.4, 50.6, 45.1, 9.7,58.6 +NA,NA,a-curv-i5,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 82, 19.1, 230, 47.0, 53.0, 1.3, 16.5,12.2 +6.776623376623377,5,a-curv-i5,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 308, 12.7, 467, 55.5, 44.5, 0.2, 7.7,6.4,471 +NA,NA,a-curv-i5,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 187, 20.2, 370, 48.4, 51.6, 0.3, 16.0,8.7 +NA,NA,a-curv-i5,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 134, 17.9, 330, 48.5, 51.5, 0.6, 21.5,5.5 +NA,NA,a-curv-i5,2018-19,Mansfield - Everett W Robinson,01670007, 146, 20.7, 709, 47.4, 52.6, 3.7, 13.7,16.2 +NA,NA,a-curv-i5,2018-19,Mansfield - Harold L Qualters Middle,01670035, 523, 19.2, 910, 47.5, 52.5, 2.1, 16.7,14.1 +NA,NA,a-curv-i5,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 175, 22.0, 800, 45.5, 54.5, 2.8, 15.5,15.4 +NA,NA,a-curv-i5,2018-19,Mansfield - Mansfield High,01670505, 730, 15.4," 1,268", 49.5, 50.6, 0.6, 11.0,10.8 +NA,NA,a-curv-i5,2018-19,Mansfield - Roland Green School,01670003, 6, 22.7, 136, 41.2, 58.8, 0.0, 55.9,21.3 +NA,NA,a-curv-i5,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 25, 22.7, 129, 36.4, 63.6, 0.0, 47.3,48.8 +NA,NA,a-curv-i5,2018-19,Marblehead - Glover,01680020, 147, 20.4, 384, 46.1, 53.9, 6.3, 22.1,7 +NA,NA,a-curv-i5,2018-19,Marblehead - L H Coffin,01680010, 107, 18.0, 215, 47.9, 52.1, 5.6, 20.0,13 +NA,NA,a-curv-i5,2018-19,Marblehead - Malcolm L Bell,01680005, 144, 19.4, 310, 47.1, 52.9, 10.3, 13.2,11.3 +NA,NA,a-curv-i5,2018-19,Marblehead - Marblehead High,01680505, 870, 12.0," 1,058", 52.2, 47.8, 1.9, 18.3,9.4 +NA,NA,a-curv-i5,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 280, 18.5, 470, 50.9, 49.2, 4.3, 21.1,10.4 +NA,NA,a-curv-i5,2018-19,Marblehead - Village School,01680016, 221, 28.3, 653, 46.6, 53.5, 3.2, 18.8,10.1 +NA,NA,a-curv-i5,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 95, 19.8, 235, 44.7, 55.3, 1.3, 28.9,13.6 +NA,NA,a-curv-i5,2018-19,Marion - Sippican,01690005, 166, 19.5, 451, 46.8, 53.2, 0.4, 22.0,19.3 +NA,NA,a-curv-i5,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 850, 22.6," 1,484", 47.8, 52.2, 17.6, 17.2,41.4 +NA,NA,a-curv-i5,2018-19,Marlborough - Charles Jaworek School,01700030, 302, 22.6, 819, 49.0, 51.0, 36.0, 12.6,39 +NA,NA,a-curv-i5,2018-19,Marlborough - Early Childhood Center,01700006, 17, 13.3, 217, 41.5, 58.5, 27.2, 48.4,34.1 +NA,NA,a-curv-i5,2018-19,Marlborough - Francis J Kane,01700008, 242, 21.6, 632, 50.2, 49.8, 31.8, 17.4,37.2 +NA,NA,a-curv-i5,2018-19,Marlborough - Marlborough High,01700505, 698, 13.1," 1,115", 47.5, 52.5, 17.9, 15.3,34.7 +NA,NA,a-curv-i5,2018-19,Marlborough - Richer,01700025, 236, 23.9, 678, 48.5, 51.5, 37.6, 14.6,43.1 +NA,NA,a-curv-i5,2018-19,Marshfield - Daniel Webster,01710015, 70, 18.0, 377, 48.5, 51.5, 2.1, 23.9,19.9 +NA,NA,a-curv-i5,2018-19,Marshfield - Eames Way School,01710005, 48, 20.5, 246, 38.2, 61.8, 0.0, 18.3,5.7 +NA,NA,a-curv-i5,2018-19,Marshfield - Furnace Brook Middle,01710310, 544, 17.6, 964, 50.0, 50.0, 0.8, 17.7,12.9 +NA,NA,a-curv-i5,2018-19,Marshfield - Gov Edward Winslow,01710020, 82, 19.2, 414, 51.0, 49.0, 0.0, 18.1,8.5 +NA,NA,a-curv-i5,2018-19,Marshfield - Marshfield High,01710505, 567, 18.5," 1,323", 49.7, 50.3, 0.6, 11.0,10.8 +NA,NA,a-curv-i5,2018-19,Marshfield - Martinson Elementary,01710025, 84, 19.3, 430, 47.2, 52.8, 4.7, 18.1,16.7 +NA,NA,a-curv-i5,2018-19,Marshfield - South River,01710010, 68, 18.9, 321, 49.2, 50.8, 0.3, 19.3,9.7 +NA,NA,a-curv-i5,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 761, 11.6, 636, 44.3, 55.5, 8.0, 19.3,26.1 +NA,NA,a-curv-i5,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 65, 17.0, 188, 55.3, 44.7, 4.3, 22.3,34 +NA,NA,a-curv-i5,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 126, 19.9, 360, 52.2, 47.8, 27.8, 20.8,73.1 +6.411149825783971,5,a-curv-i5,2018-19,Masconomet - Masconomet Regional High School,07050505, 574, 16.5," 1,134", 52.7, 47.3, 0.6, 14.7,5,1140 +NA,NA,a-curv-i5,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 325, 19.6, 648, 51.1, 48.9, 0.2, 19.9,6.5 +NA,NA,a-curv-i5,2018-19,Mashpee - Kenneth Coombs School,01720005, 231, 16.5, 419, 45.1, 54.9, 10.3, 17.0,38.7 +NA,NA,a-curv-i5,2018-19,Mashpee - Mashpee High,01720505, 328, 11.6, 462, 47.2, 52.8, 0.2, 13.9,25.3 +NA,NA,a-curv-i5,2018-19,Mashpee - Mashpee Middle School,01720020, 145, 17.5, 256, 51.2, 48.8, 1.6, 14.8,30.5 +NA,NA,a-curv-i5,2018-19,Mashpee - Quashnet School,01720035, 316, 19.0, 499, 51.3, 48.7, 1.6, 16.4,33.7 +NA,NA,a-curv-i5,2018-19,Mattapoisett - Center,01730005, 109, 19.0, 255, 48.6, 51.4, 0.4, 15.7,16.9 +NA,NA,a-curv-i5,2018-19,Mattapoisett - Old Hammondtown,01730010, 102, 17.6, 192, 45.8, 54.2, 1.0, 16.2,14.1 +NA,NA,a-curv-i5,2018-19,Maynard - Fowler School,01740305, 320, 16.9, 482, 50.0, 50.0, 3.1, 19.5,17.2 +NA,NA,a-curv-i5,2018-19,Maynard - Green Meadow,01740010, 239, 19.6, 499, 45.1, 54.9, 6.4, 19.8,19.6 +6.571428571428572,5,a-curv-i5,2018-19,Maynard - Maynard High,01740505, 210, 15.0, 368, 51.9, 47.6, 1.9, 13.9,14.7,375 +NA,NA,a-curv-i5,2018-19,Medfield - Dale Street,01750005, 244, 17.6, 379, 44.9, 55.2, 0.8, 14.8,2.9 +NA,NA,a-curv-i5,2018-19,Medfield - Medfield Senior High,01750505, 428, 16.3, 800, 49.6, 50.4, 0.8, 9.8,4.9 +NA,NA,a-curv-i5,2018-19,Medfield - Memorial School,01750003, 165, 20.4, 428, 51.4, 48.6, 1.9, 13.8,7.5 +NA,NA,a-curv-i5,2018-19,Medfield - Ralph Wheelock School,01750007, 190, 21.3, 405, 46.7, 53.3, 1.2, 12.4,6.2 +NA,NA,a-curv-i5,2018-19,Medfield - Thomas Blake Middle,01750305, 554, 16.9, 601, 48.9, 51.1, 0.7, 13.1,3.3 +NA,NA,a-curv-i5,2018-19,Medford - Brooks School,01760130, 137, 18.4, 519, 49.1, 50.9, 10.0, 17.7,15.4 +NA,NA,a-curv-i5,2018-19,Medford - Christopher Columbus,01760140, 113, 17.7, 397, 45.1, 54.9, 17.4, 22.4,35.8 +NA,NA,a-curv-i5,2018-19,Medford - Curtis-Tufts,01760510, 21, 5.5, 21, 38.1, 61.9, 0.0, 100.0,66.7 +NA,NA,a-curv-i5,2018-19,Medford - John J McGlynn Elementary School,01760068, 133, 17.9, 477, 53.7, 46.3, 17.0, 19.1,39.4 +NA,NA,a-curv-i5,2018-19,Medford - John J. McGlynn Middle School,01760320, 329, 15.9, 472, 48.3, 51.7, 17.6, 20.6,42 +NA,NA,a-curv-i5,2018-19,Medford - Madeleine Dugger Andrews,01760315, 410, 14.3, 476, 45.2, 54.8, 0.2, 20.2,21.2 +NA,NA,a-curv-i5,2018-19,Medford - Medford High,01760505, 710, 13.9," 1,357", 48.9, 51.1, 6.9, 19.2,31 +NA,NA,a-curv-i5,2018-19,Medford - Milton Fuller Roberts,01760150, 160, 17.3, 564, 48.1, 52.0, 16.7, 16.7,29.6 +NA,NA,a-curv-i5,2018-19,Medway - Burke/Memorial Elementary School,01770015, 232, 20.3, 489, 50.9, 49.1, 3.1, 19.6,12.1 +NA,NA,a-curv-i5,2018-19,Medway - John D Mc Govern Elementary,01770013, 114, 18.8, 335, 45.1, 54.9, 2.7, 15.5,11.6 +NA,NA,a-curv-i5,2018-19,Medway - Medway High,01770505, 372, 14.9, 699, 49.1, 50.9, 0.3, 12.9,7.7 +NA,NA,a-curv-i5,2018-19,Medway - Medway Middle,01770305, 319, 18.8, 684, 53.4, 46.6, 0.3, 19.0,8.8 +NA,NA,a-curv-i5,2018-19,Melrose - Early Childhood Center,01780003, 35, 15.8, 332, 46.4, 53.6, 0.0, 17.5,8.1 +NA,NA,a-curv-i5,2018-19,Melrose - Herbert Clark Hoover,01780017, 112, 20.7, 290, 50.0, 50.0, 9.0, 11.0,12.4 +NA,NA,a-curv-i5,2018-19,Melrose - Horace Mann,01780025, 96, 23.1, 277, 54.5, 45.5, 0.0, 12.6,2.9 +NA,NA,a-curv-i5,2018-19,Melrose - Lincoln,01780020, 160, 20.9, 418, 53.6, 46.4, 20.6, 16.0,20.1 +NA,NA,a-curv-i5,2018-19,Melrose - Melrose High,01780505, 411, 17.6," 1,029", 53.4, 46.7, 2.1, 12.3,10.7 +NA,NA,a-curv-i5,2018-19,Melrose - Melrose Middle,01780305, 487, 20.8, 795, 49.6, 50.4, 3.7, 18.6,10.4 +NA,NA,a-curv-i5,2018-19,Melrose - Roosevelt,01780035, 160, 21.3, 426, 48.4, 51.6, 7.3, 14.8,11.7 +NA,NA,a-curv-i5,2018-19,Melrose - Winthrop,01780050, 152, 21.7, 413, 48.9, 51.1, 0.7, 11.9,5.3 +NA,NA,a-curv-i5,2018-19,Mendon-Upton - Henry P Clough,07100179, 89, 19.6, 370, 51.4, 48.7, 3.2, 16.0,7.8 +NA,NA,a-curv-i5,2018-19,Mendon-Upton - Memorial School,07100001, 112, 20.6, 487, 47.0, 53.0, 2.7, 15.6,10.9 +NA,NA,a-curv-i5,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 361, 22.4, 799, 48.1, 51.9, 0.9, 17.9,9.6 +NA,NA,a-curv-i5,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 341, 15.7, 654, 53.8, 46.2, 0.5, 11.2,9.2 +NA,NA,a-curv-i5,2018-19,Methuen - Comprehensive Grammar School,01810050, 331, 20.2," 1,086", 50.4, 49.6, 17.5, 18.6,29.9 +NA,NA,a-curv-i5,2018-19,Methuen - Donald P Timony Grammar,01810060, 377, 23.7," 1,347", 45.3, 54.7, 10.0, 18.8,40.4 +NA,NA,a-curv-i5,2018-19,Methuen - Marsh Grammar School,01810030, 383, 21.0," 1,208", 47.7, 52.3, 5.9, 23.8,28.5 +NA,NA,a-curv-i5,2018-19,Methuen - Methuen High,01810505," 1,052", 18.1," 2,031", 47.6, 52.4, 7.3, 11.1,30.7 +NA,NA,a-curv-i5,2018-19,Methuen - Tenney Grammar School,01810055, 407, 22.5," 1,387", 46.1, 53.9, 11.8, 21.1,40.9 +NA,NA,a-curv-i5,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 360, 18.0, 544, 45.8, 54.2, 1.1, 18.6,36 +NA,NA,a-curv-i5,2018-19,Middleborough - John T. Nichols Middle,01820305, 419, 24.9, 789, 49.4, 50.6, 0.6, 19.9,30 +NA,NA,a-curv-i5,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 305, 21.7, 609, 50.9, 49.1, 1.3, 16.9,29.1 +NA,NA,a-curv-i5,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 116, 17.9, 266, 43.6, 56.4, 2.6, 24.8,32.3 +NA,NA,a-curv-i5,2018-19,Middleborough - Middleborough High,01820505, 412, 16.1, 776, 48.2, 51.8, 0.3, 15.5,22.9 +NA,NA,a-curv-i5,2018-19,Middleton - Fuller Meadow,01840003, 124, 13.9, 273, 52.4, 47.6, 2.2, 13.9,6.2 +NA,NA,a-curv-i5,2018-19,Middleton - Howe-Manning,01840005, 210, 16.4, 437, 48.5, 51.5, 0.5, 18.3,7.3 +NA,NA,a-curv-i5,2018-19,Milford - Brookside,01850065, 174, 17.7, 479, 47.8, 52.2, 27.4, 14.8,42.2 +NA,NA,a-curv-i5,2018-19,Milford - Memorial,01850010, 178, 17.4, 479, 47.6, 52.4, 34.7, 14.8,43.8 +NA,NA,a-curv-i5,2018-19,Milford - Milford High,01850505, 590, 17.9," 1,207", 48.8, 51.2, 9.6, 13.8,30.4 +NA,NA,a-curv-i5,2018-19,Milford - Shining Star Early Childhood Center,01850075, 26, 17.1, 179, 43.0, 56.4, 16.2, 53.6,37.4 +NA,NA,a-curv-i5,2018-19,Milford - Stacy Middle,01850305, 500, 20.4," 1,062", 47.2, 52.7, 10.9, 12.1,35.7 +NA,NA,a-curv-i5,2018-19,Milford - Woodland,01850090, 432, 19.1," 1,017", 47.0, 53.0, 13.5, 16.2,40.5 +NA,NA,a-curv-i5,2018-19,Millbury - Elmwood Street,01860017, 233, 18.6, 559, 46.5, 53.5, 8.1, 19.1,26.8 +NA,NA,a-curv-i5,2018-19,Millbury - Millbury Junior/Senior High,01860505, 431, 16.0, 713, 52.0, 48.0, 1.3, 14.5,21.9 +NA,NA,a-curv-i5,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 182, 22.2, 442, 50.5, 49.6, 4.5, 20.4,27.6 +NA,NA,a-curv-i5,2018-19,Millis - Clyde F Brown,01870005, 196, 18.3, 492, 52.0, 48.0, 2.0, 13.6,11.2 +6.4265193370165745,5,a-curv-i5,2018-19,Millis - Millis High School,01870505, 181, 13.3, 357, 50.7, 49.3, 0.8, 12.9,12.6,356 +NA,NA,a-curv-i5,2018-19,Millis - Millis Middle,01870020, 228, 17.7, 381, 48.3, 51.7, 1.3, 11.8,12.3 +NA,NA,a-curv-i5,2018-19,Milton - Charles S Pierce Middle,01890410, 548, 18.1, 940, 51.1, 48.9, 1.0, 16.2,10.4 +NA,NA,a-curv-i5,2018-19,Milton - Collicot,01890005, 241, 23.4, 657, 45.8, 54.2, 2.7, 15.7,3.4 +NA,NA,a-curv-i5,2018-19,Milton - Cunningham School,01890007, 213, 21.9, 618, 51.5, 48.5, 3.2, 19.3,6.6 +NA,NA,a-curv-i5,2018-19,Milton - Glover,01890010, 230, 22.1, 604, 51.0, 49.0, 1.8, 14.1,5.5 +NA,NA,a-curv-i5,2018-19,Milton - Milton High,01890505, 525, 16.6," 1,044", 49.9, 50.0, 0.8, 12.7,11.7 +NA,NA,a-curv-i5,2018-19,Milton - Tucker,01890020, 161, 21.5, 432, 48.8, 51.2, 4.9, 10.9,18.5 +NA,NA,a-curv-i5,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 559, 10.1, 515, 36.1, 63.5, 2.1, 45.6,20.4 +NA,NA,a-curv-i5,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 71, 16.8, 300, 50.0, 50.0, 0.3, 20.3,33.3 +NA,NA,a-curv-i5,2018-19,Mohawk Trail - Colrain Central,07170010, 34, 15.4, 105, 49.5, 50.5, 1.0, 29.5,34.3 +7.149244712990937,5,a-curv-i5,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 331, 9.4, 358, 53.4, 46.4, 0.3, 24.3,37.4,352 +NA,NA,a-curv-i5,2018-19,Mohawk Trail - Sanderson Academy,07170020, 45, 12.5, 150, 46.0, 54.0, 0.0, 16.7,23.3 +NA,NA,a-curv-i5,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 162, 16.0, 232, 53.0, 47.0, 6.0, 20.3,34.5 +NA,NA,a-curv-i5,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 365, 17.2, 559, 46.0, 54.0, 5.4, 17.4,26.3 +6.873684210526315,5,a-curv-i5,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 456, 12.8, 640, 49.2, 50.8, 3.3, 14.1,24.7,642 +NA,NA,a-curv-i5,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 342, 16.4, 465, 49.3, 50.8, 3.2, 17.2,26.2 +NA,NA,a-curv-i5,2018-19,Monson - Granite Valley Middle,01910310, 246, 14.5, 252, 51.6, 48.4, 1.6, 21.4,27.4 +6.553424657534246,5,a-curv-i5,2018-19,Monson - Monson High School,01910505, 146, 13.7, 259, 50.2, 49.8, 0.0, 13.5,17.4,264 +NA,NA,a-curv-i5,2018-19,Monson - Quarry Hill Community School,01910025, 198, 17.9, 407, 51.8, 47.9, 1.5, 19.7,31.9 +NA,NA,a-curv-i5,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 602, 18.6," 1,408", 49.0, 50.4, 1.1, 15.0,23.8 +NA,NA,a-curv-i5,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 140, 15.0, 205, 51.7, 48.3, 0.5, 20.0,23.9 +NA,NA,a-curv-i5,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 336, 13.5, 552, 53.3, 46.7, 0.2, 14.1,14.5 +NA,NA,a-curv-i5,2018-19,Mount Greylock - Williamstown Elementary,07150010, 197, 16.7, 435, 45.8, 54.3, 0.2, 15.6,20 +NA,NA,a-curv-i5,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 796, 23.6," 1,566", 50.8, 49.2, 2.6, 13.2,17.1 +NA,NA,a-curv-i5,2018-19,Nahant - Johnson,01960010, 65, 16.8, 153, 50.3, 49.7, 0.0, 29.4,15 +NA,NA,a-curv-i5,2018-19,Nantucket - Cyrus Peirce,01970010, 197, 19.8, 386, 49.0, 51.0, 11.1, 17.4,22.8 +NA,NA,a-curv-i5,2018-19,Nantucket - Nantucket Elementary,01970005, 189, 18.7, 391, 49.4, 50.6, 32.0, 20.0,26.1 +NA,NA,a-curv-i5,2018-19,Nantucket - Nantucket High,01970505, 292, 14.6, 531, 47.3, 52.5, 11.3, 10.9,19.2 +NA,NA,a-curv-i5,2018-19,Nantucket - Nantucket Intermediate School,01970020, 213, 20.8, 388, 46.9, 53.1, 16.8, 12.1,19.9 +NA,NA,a-curv-i5,2018-19,Narragansett - Baldwinville Elementary,07200005, 112, 24.0, 287, 48.1, 51.9, 0.4, 18.5,29.6 +NA,NA,a-curv-i5,2018-19,Narragansett - Narragansett Middle,07200305, 232, 22.9, 483, 45.6, 54.5, 0.4, 14.5,30.2 +NA,NA,a-curv-i5,2018-19,Narragansett - Narragansett Regional High,07200505, 213, 13.2, 349, 50.7, 49.3, 0.0, 15.8,26.9 +NA,NA,a-curv-i5,2018-19,Narragansett - Phillipston Memorial,07200003, 52, 17.3, 158, 41.1, 58.9, 1.3, 17.7,36.1 +NA,NA,a-curv-i5,2018-19,Narragansett - Templeton Center,07200020, 72, 22.4, 179, 46.9, 53.1, 0.0, 9.5,27.4 +NA,NA,a-curv-i5,2018-19,Nashoba - Center School,07250020, 183, 20.4, 549, 50.3, 49.7, 1.8, 17.3,6 +NA,NA,a-curv-i5,2018-19,Nashoba - Florence Sawyer School,07250025, 271, 19.9, 737, 49.4, 50.6, 1.6, 14.8,6.4 +NA,NA,a-curv-i5,2018-19,Nashoba - Hale,07250310, 152, 18.4, 282, 49.3, 50.7, 4.6, 17.4,5.3 +NA,NA,a-curv-i5,2018-19,Nashoba - Luther Burbank Middle School,07250305, 136, 17.9, 243, 45.7, 54.3, 3.3, 19.3,15.6 +NA,NA,a-curv-i5,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 135, 20.3, 468, 48.3, 51.7, 4.7, 23.7,18.4 +NA,NA,a-curv-i5,2018-19,Nashoba - Nashoba Regional,07250505, 548, 14.5, 974, 52.1, 48.0, 1.0, 12.9,5.5 +6.655528255528256,5,a-curv-i5,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 407, 12.4, 672, 38.1, 61.5, 0.7, 33.0,17.1,684 +NA,NA,a-curv-i5,2018-19,Natick - Bennett-Hemenway,01980005, 113, 20.2, 566, 50.2, 49.8, 1.6, 15.6,6.7 +NA,NA,a-curv-i5,2018-19,Natick - Brown,01980010, 112, 18.4, 495, 49.3, 50.7, 15.0, 10.1,9.5 +NA,NA,a-curv-i5,2018-19,Natick - J F Kennedy Middle School,01980305, 351, 20.7, 700, 49.0, 51.0, 5.0, 16.4,9 +NA,NA,a-curv-i5,2018-19,Natick - Johnson,01980031, 48, 19.3, 232, 43.5, 56.5, 0.9, 12.1,12.9 +NA,NA,a-curv-i5,2018-19,Natick - Lilja Elementary,01980035, 108, 16.4, 435, 50.3, 49.7, 5.8, 13.1,10.6 +NA,NA,a-curv-i5,2018-19,Natick - Memorial,01980043, 84, 20.2, 425, 45.2, 54.8, 1.2, 13.9,5.4 +NA,NA,a-curv-i5,2018-19,Natick - Natick High,01980505," 1,355", 17.0," 1,755", 49.3, 50.5, 2.8, 14.9,8.7 +NA,NA,a-curv-i5,2018-19,Natick - Wilson Middle,01980310, 437, 22.2, 943, 48.4, 51.6, 0.1, 20.2,10 +NA,NA,a-curv-i5,2018-19,Nauset - Nauset Regional High,06600505, 543, 14.5, 934, 54.1, 45.7, 2.0, 9.2,19.5 +NA,NA,a-curv-i5,2018-19,Nauset - Nauset Regional Middle,06600305, 402, 17.9, 573, 51.8, 48.0, 1.9, 22.7,20.6 +NA,NA,a-curv-i5,2018-19,Needham - Broadmeadow,01990005, 122, 22.3, 567, 51.9, 48.2, 3.9, 14.8,3.4 +NA,NA,a-curv-i5,2018-19,Needham - High Rock School,01990410, 305, 18.8, 455, 50.1, 49.9, 1.1, 20.7,5.1 +NA,NA,a-curv-i5,2018-19,Needham - Hillside Elementary,01990035, 111, 22.8, 510, 48.8, 51.2, 8.4, 14.9,4.5 +NA,NA,a-curv-i5,2018-19,Needham - John Eliot,01990020, 97, 20.0, 396, 46.5, 53.5, 6.3, 19.7,9.3 +NA,NA,a-curv-i5,2018-19,Needham - Needham High,01990505, 716, 17.3," 1,717", 50.1, 49.9, 0.6, 17.0,4.4 +NA,NA,a-curv-i5,2018-19,Needham - Newman Elementary,01990050, 166, 20.5, 763, 49.7, 50.3, 5.5, 22.3,7.1 +NA,NA,a-curv-i5,2018-19,Needham - Pollard Middle,01990405, 607, 18.4, 841, 52.2, 47.8, 0.7, 18.9,4.5 +NA,NA,a-curv-i5,2018-19,Needham - William Mitchell,01990040, 116, 20.8, 495, 49.1, 50.9, 3.2, 11.7,3.2 +NA,NA,a-curv-i5,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 144, 34.0, 648, 49.9, 49.9, 11.7, 19.0,38.1 +NA,NA,a-curv-i5,2018-19,New Bedford - Abraham Lincoln,02010095, 272, 20.7, 703, 47.1, 52.9, 20.3, 15.5,67.9 +NA,NA,a-curv-i5,2018-19,New Bedford - Alfred J Gomes,02010063, 233, 20.0, 539, 47.9, 52.1, 69.2, 21.5,77.4 +NA,NA,a-curv-i5,2018-19,New Bedford - Betsey B Winslow,02010140, 114, 21.2, 277, 49.5, 50.5, 10.8, 12.6,48.7 +NA,NA,a-curv-i5,2018-19,New Bedford - Carlos Pacheco,02010105, 137, 19.2, 326, 44.5, 55.5, 46.6, 19.0,78.8 +NA,NA,a-curv-i5,2018-19,New Bedford - Casimir Pulaski,02010123, 344, 16.0, 727, 44.6, 55.4, 15.0, 29.3,44.3 +NA,NA,a-curv-i5,2018-19,New Bedford - Charles S Ashley,02010010, 120, 19.1, 286, 49.3, 50.7, 15.7, 19.2,51.1 +NA,NA,a-curv-i5,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 100, 23.3, 305, 46.2, 53.8, 23.9, 12.8,62.6 +NA,NA,a-curv-i5,2018-19,New Bedford - Ellen R Hathaway,02010075, 132, 16.6, 324, 49.4, 50.6, 53.7, 18.5,73.8 +NA,NA,a-curv-i5,2018-19,New Bedford - Elwyn G Campbell,02010020, 107, 16.9, 287, 42.9, 57.1, 21.3, 30.7,56.5 +NA,NA,a-curv-i5,2018-19,New Bedford - Hayden/McFadden,02010078, 412, 16.9, 752, 47.2, 52.8, 52.0, 27.3,81.9 +NA,NA,a-curv-i5,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 202, 17.5, 436, 49.1, 50.9, 48.6, 22.3,81.9 +NA,NA,a-curv-i5,2018-19,New Bedford - James B Congdon,02010040, 128, 19.9, 319, 53.6, 46.4, 39.2, 15.1,74.3 +NA,NA,a-curv-i5,2018-19,New Bedford - Jireh Swift,02010130, 80, 19.3, 193, 51.8, 48.2, 13.5, 11.9,49.2 +NA,NA,a-curv-i5,2018-19,New Bedford - John Avery Parker,02010115, 98, 18.2, 249, 49.0, 51.0, 35.7, 16.9,72.3 +NA,NA,a-curv-i5,2018-19,New Bedford - John B Devalles,02010050, 160, 19.5, 389, 54.2, 45.8, 38.6, 14.4,79.4 +NA,NA,a-curv-i5,2018-19,New Bedford - Keith Middle School,02010405, 428, 21.9, 969, 48.2, 51.8, 20.6, 18.4,67.5 +NA,NA,a-curv-i5,2018-19,New Bedford - New Bedford High,02010505," 1,207", 17.4," 2,319", 49.1, 50.9, 29.6, 16.0,63.3 +NA,NA,a-curv-i5,2018-19,New Bedford - Normandin Middle School,02010410, 556, 21.8," 1,253", 47.4, 52.6, 19.5, 18.1,58.5 +NA,NA,a-curv-i5,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 82, 19.5, 207, 56.0, 44.0, 57.5, 15.9,78.7 +NA,NA,a-curv-i5,2018-19,New Bedford - Roosevelt Middle School,02010415, 435, 19.2, 879, 48.5, 51.5, 27.0, 25.8,69.6 +NA,NA,a-curv-i5,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 350, 16.7, 810, 42.6, 57.4, 15.6, 31.2,70.4 +NA,NA,a-curv-i5,2018-19,New Bedford - Thomas R Rodman,02010125, 82, 19.2, 191, 43.5, 56.5, 26.7, 16.8,70.7 +NA,NA,a-curv-i5,2018-19,New Bedford - Trinity Day Academy,02010510, 133, 6.5, 103, 43.7, 56.3, 6.8, 100.0,81.6 +7.097029702970298,5,a-curv-i5,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 101, 7.2, 123, 22.8, 77.2, 15.5, 34.2,82.1,114 +NA,NA,a-curv-i5,2018-19,New Bedford - William H Taylor,02010135, 100, 19.4, 284, 49.7, 50.4, 13.0, 17.3,55.6 +NA,NA,a-curv-i5,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 159, 22.4, 518, 51.7, 48.3, 17.8, 9.9,37.1 +NA,NA,a-curv-i5,2018-19,New Salem-Wendell - Swift River,07280015, 30, 19.1, 153, 51.0, 49.0, 0.0, 18.3,32 +NA,NA,a-curv-i5,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 115, 20.2, 314, 50.6, 49.4, 1.3, 24.2,9.9 +NA,NA,a-curv-i5,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 174, 18.1, 642, 50.6, 49.4, 3.0, 22.3,9.7 +NA,NA,a-curv-i5,2018-19,Newburyport - Newburyport High,02040505, 634, 15.8, 755, 52.5, 47.4, 1.3, 9.4,8.2 +NA,NA,a-curv-i5,2018-19,Newburyport - Rupert A Nock Middle,02040305, 312, 19.4, 551, 49.2, 50.8, 1.8, 17.6,8.4 +NA,NA,a-curv-i5,2018-19,Newton - A E Angier,02070005, 174, 20.0, 493, 51.7, 48.3, 6.9, 17.4,4.9 +NA,NA,a-curv-i5,2018-19,Newton - Bigelow Middle,02070305, 281, 19.3, 507, 53.3, 46.8, 7.3, 18.5,10.9 +NA,NA,a-curv-i5,2018-19,Newton - Bowen,02070015, 139, 21.0, 409, 48.2, 51.8, 13.7, 18.3,8.1 +NA,NA,a-curv-i5,2018-19,Newton - C C Burr,02070020, 138, 18.9, 367, 47.1, 52.9, 10.6, 15.8,10.1 +NA,NA,a-curv-i5,2018-19,Newton - Cabot,02070025, 131, 19.7, 366, 50.3, 49.7, 6.6, 10.9,6.8 +NA,NA,a-curv-i5,2018-19,Newton - Charles E Brown Middle,02070310, 466, 19.2, 755, 50.5, 49.5, 4.8, 19.2,6.9 +NA,NA,a-curv-i5,2018-19,Newton - Countryside,02070040, 139, 20.9, 407, 49.1, 50.9, 15.0, 17.7,10.6 +NA,NA,a-curv-i5,2018-19,Newton - F A Day Middle,02070315, 539, 21.6, 980, 46.2, 53.8, 2.2, 18.5,8.6 +NA,NA,a-curv-i5,2018-19,Newton - Franklin,02070055, 152, 19.6, 422, 56.9, 43.1, 7.1, 14.2,7.1 +NA,NA,a-curv-i5,2018-19,Newton - Horace Mann,02070075, 132, 20.8, 387, 43.4, 56.6, 7.8, 10.9,9 +NA,NA,a-curv-i5,2018-19,Newton - John Ward,02070120, 118, 17.5, 293, 49.8, 50.2, 6.1, 14.3,3.4 +NA,NA,a-curv-i5,2018-19,Newton - Lincoln-Eliot,02070070, 132, 19.5, 358, 50.0, 49.7, 16.8, 21.5,19.3 +NA,NA,a-curv-i5,2018-19,Newton - Mason-Rice,02070080, 159, 21.8, 491, 48.5, 51.5, 6.5, 12.6,2.2 +NA,NA,a-curv-i5,2018-19,Newton - Memorial Spaulding,02070105, 160, 20.6, 464, 50.7, 49.4, 10.1, 17.7,4.3 +NA,NA,a-curv-i5,2018-19,Newton - Newton Early Childhood Center,02070108, 14, 17.5, 245, 35.5, 64.5, 4.5, 72.2,14.3 +NA,NA,a-curv-i5,2018-19,Newton - Newton North High,02070505," 1,071", 15.5," 2,111", 49.3, 50.6, 3.1, 16.7,11.7 +NA,NA,a-curv-i5,2018-19,Newton - Newton South High,02070510," 1,048", 14.3," 1,907", 47.4, 52.3, 2.7, 13.4,8.8 +NA,NA,a-curv-i5,2018-19,Newton - Oak Hill Middle,02070320, 417, 17.5, 631, 46.9, 53.1, 5.4, 17.6,8.7 +NA,NA,a-curv-i5,2018-19,Newton - Peirce,02070100, 95, 20.0, 269, 49.1, 50.9, 5.6, 13.4,6 +NA,NA,a-curv-i5,2018-19,Newton - Underwood,02070115, 96, 19.9, 271, 54.2, 45.8, 4.8, 14.8,9.2 +NA,NA,a-curv-i5,2018-19,Newton - Williams,02070125, 104, 18.6, 272, 46.0, 54.0, 9.9, 13.2,6.3 +NA,NA,a-curv-i5,2018-19,Newton - Zervas,02070130, 146, 20.5, 421, 48.2, 51.5, 10.7, 18.3,7.4 +NA,NA,a-curv-i5,2018-19,Norfolk - Freeman-Kennedy School,02080005, 158, 23.4, 520, 46.4, 53.7, 0.8, 16.7,5.6 +NA,NA,a-curv-i5,2018-19,Norfolk - H Olive Day,02080015, 84, 18.6, 445, 48.3, 51.7, 4.5, 17.8,4.5 +NA,NA,a-curv-i5,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 474, 16.1, 558, 72.4, 27.6, 0.2, 19.4,12 +NA,NA,a-curv-i5,2018-19,North Adams - Brayton,02090035, 107, 16.2, 278, 47.1, 52.9, 0.4, 28.1,64.8 +NA,NA,a-curv-i5,2018-19,North Adams - Colegrove Park Elementary,02090008, 113, 18.4, 333, 48.1, 52.0, 1.8, 27.6,64.9 +NA,NA,a-curv-i5,2018-19,North Adams - Drury High,02090505, 316, 14.7, 530, 52.5, 47.6, 0.4, 21.5,55.9 +NA,NA,a-curv-i5,2018-19,North Adams - Greylock,02090015, 101, 15.7, 272, 49.6, 50.4, 0.7, 25.4,54.8 +NA,NA,a-curv-i5,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 108, 20.4, 492, 48.2, 51.8, 2.0, 18.5,20.7 +NA,NA,a-curv-i5,2018-19,North Andover - Annie L Sargent School,02110018, 180, 23.2, 466, 50.2, 49.8, 0.9, 17.2,6.7 +NA,NA,a-curv-i5,2018-19,North Andover - Atkinson,02110001, 141, 22.6, 354, 50.9, 49.2, 5.4, 17.8,29.9 +NA,NA,a-curv-i5,2018-19,North Andover - Franklin,02110010, 200, 17.5, 390, 42.3, 57.7, 0.5, 20.5,9.2 +NA,NA,a-curv-i5,2018-19,North Andover - Kittredge,02110015, 99, 21.4, 235, 43.8, 56.2, 0.9, 17.9,9.8 +NA,NA,a-curv-i5,2018-19,North Andover - North Andover High,02110505," 1,153", 19.4," 1,474", 51.2, 48.8, 0.8, 11.1,12.6 +NA,NA,a-curv-i5,2018-19,North Andover - North Andover Middle,02110305, 749, 23.0," 1,088", 49.4, 50.6, 1.4, 14.1,14.9 +NA,NA,a-curv-i5,2018-19,North Andover - Thomson,02110020, 126, 21.1, 295, 51.9, 48.1, 5.8, 19.3,29.2 +NA,NA,a-curv-i5,2018-19,North Attleborough - Amvet Boulevard,02120007, 131, 19.9, 378, 49.5, 50.5, 4.5, 11.1,9.3 +NA,NA,a-curv-i5,2018-19,North Attleborough - Community,02120030, 171, 12.3, 309, 45.0, 55.0, 10.7, 30.1,46.3 +NA,NA,a-curv-i5,2018-19,North Attleborough - Falls,02120010, 97, 17.3, 245, 44.1, 55.9, 2.5, 16.3,16.3 +NA,NA,a-curv-i5,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 198, 21.4, 620, 49.0, 51.0, 3.4, 16.9,12.9 +NA,NA,a-curv-i5,2018-19,North Attleborough - North Attleboro High,02120505, 590, 16.5," 1,109", 47.8, 51.9, 1.5, 13.2,13 +NA,NA,a-curv-i5,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 70, 13.0, 183, 36.1, 63.9, 8.7, 39.9,23.5 +NA,NA,a-curv-i5,2018-19,North Attleborough - North Attleborough Middle,02120305, 510, 20.3," 1,109", 52.5, 47.5, 1.6, 17.5,16 +NA,NA,a-curv-i5,2018-19,North Attleborough - Roosevelt Avenue,02120015, 88, 20.2, 262, 55.0, 45.0, 2.7, 6.5,10.7 +NA,NA,a-curv-i5,2018-19,North Brookfield - North Brookfield Elementary,02150015, 63, 19.9, 327, 47.1, 52.9, 0.0, 26.0,33.6 +NA,NA,a-curv-i5,2018-19,North Brookfield - North Brookfield High,02150505, 118, 13.8, 251, 49.4, 50.6, 0.0, 17.9,28.3 +NA,NA,a-curv-i5,2018-19,North Middlesex - Ashby Elementary,07350010, 102, 17.6, 174, 39.7, 60.3, 0.0, 38.5,24.1 +NA,NA,a-curv-i5,2018-19,North Middlesex - Hawthorne Brook,07350030, 320, 19.8, 495, 48.5, 51.5, 1.6, 21.2,16.6 +NA,NA,a-curv-i5,2018-19,North Middlesex - Nissitissit Middle School,07350310, 339, 18.8, 534, 46.4, 53.6, 0.0, 28.1,17.4 +NA,NA,a-curv-i5,2018-19,North Middlesex - North Middlesex Regional,07350505, 453, 17.3, 828, 53.9, 46.1, 1.3, 15.8,13.7 +NA,NA,a-curv-i5,2018-19,North Middlesex - Spaulding Memorial,07350005, 207, 21.4, 440, 52.1, 48.0, 4.8, 21.8,23.6 +NA,NA,a-curv-i5,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 7, 14.1, 98, 39.8, 60.2, 0.0, 48.0,23.5 +NA,NA,a-curv-i5,2018-19,North Middlesex - Varnum Brook,07350035, 250, 21.2, 530, 48.7, 51.3, 0.4, 22.1,17.7 +NA,NA,a-curv-i5,2018-19,North Reading - E Ethel Little School,02170003, 182, 17.9, 327, 46.8, 53.2, 0.0, 22.3,12.5 +NA,NA,a-curv-i5,2018-19,North Reading - J Turner Hood,02170010, 188, 19.8, 353, 47.6, 52.4, 0.6, 17.0,7.4 +NA,NA,a-curv-i5,2018-19,North Reading - L D Batchelder,02170005, 196, 23.8, 437, 48.3, 51.7, 0.2, 16.3,6 +NA,NA,a-curv-i5,2018-19,North Reading - North Reading High,02170505, 324, 18.6, 750, 50.3, 49.7, 0.4, 13.5,5.9 +NA,NA,a-curv-i5,2018-19,North Reading - North Reading Middle,02170305, 363, 15.0, 544, 51.7, 48.4, 0.7, 22.6,9.6 +NA,NA,a-curv-i5,2018-19,Northampton - Bridge Street,02100005, 84, 17.0, 276, 42.4, 57.6, 9.4, 25.7,43.5 +NA,NA,a-curv-i5,2018-19,Northampton - Jackson Street,02100020, 108, 20.3, 361, 50.7, 49.3, 7.5, 17.5,23.8 +NA,NA,a-curv-i5,2018-19,Northampton - John F Kennedy Middle School,02100410, 508, 14.6, 625, 49.8, 50.2, 3.0, 25.8,27.2 +NA,NA,a-curv-i5,2018-19,Northampton - Leeds,02100025, 91, 20.0, 347, 46.1, 53.9, 1.7, 26.5,28.5 +NA,NA,a-curv-i5,2018-19,Northampton - Northampton High,02100505, 375, 16.8, 851, 49.8, 50.2, 2.2, 14.3,18.8 +NA,NA,a-curv-i5,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 72, 18.5, 220, 47.3, 52.3, 4.6, 26.4,32.7 +NA,NA,a-curv-i5,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 429, 11.8, 501, 45.7, 54.3, 1.8, 37.9,30.7 +NA,NA,a-curv-i5,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 784, 15.9," 1,449", 51.4, 48.7, 1.8, 13.6,6.4 +NA,NA,a-curv-i5,2018-19,Northborough - Fannie E Proctor,02130015, 57, 17.3, 237, 45.6, 54.4, 5.5, 23.2,16 +NA,NA,a-curv-i5,2018-19,Northborough - Lincoln Street,02130003, 54, 18.7, 245, 53.1, 46.9, 6.1, 24.1,13.1 +NA,NA,a-curv-i5,2018-19,Northborough - Marguerite E Peaslee,02130014, 58, 19.8, 278, 44.2, 55.8, 6.1, 23.7,8.3 +NA,NA,a-curv-i5,2018-19,Northborough - Marion E Zeh,02130020, 50, 20.3, 242, 41.7, 58.3, 6.2, 22.3,7 +NA,NA,a-curv-i5,2018-19,Northborough - Robert E. Melican Middle School,02130305, 359, 18.2, 585, 51.6, 48.4, 2.2, 18.6,10.6 +NA,NA,a-curv-i5,2018-19,Northbridge - Northbridge Elementary,02140005, 84, 17.7, 365, 42.7, 57.3, 4.9, 24.9,37 +NA,NA,a-curv-i5,2018-19,Northbridge - Northbridge High,02140505, 363, 15.2, 553, 48.3, 51.7, 1.1, 10.9,25.7 +NA,NA,a-curv-i5,2018-19,Northbridge - Northbridge Middle,02140305, 282, 20.5, 707, 48.8, 51.2, 1.6, 13.9,26.5 +NA,NA,a-curv-i5,2018-19,Northbridge - W Edward Balmer,02140001, 105, 22.3, 464, 53.5, 46.6, 3.9, 12.9,30.4 +NA,NA,a-curv-i5,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 800, 19.7," 1,254", 45.9, 54.1, 3.3, 23.3,33.2 +NA,NA,a-curv-i5,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 378, 14.6, 489, 37.6, 62.4, 0.0, 15.8,33.1 +NA,NA,a-curv-i5,2018-19,Norton - Henri A. Yelle,02180060, 176, 23.7, 379, 50.7, 49.3, 1.3, 15.8,23.8 +NA,NA,a-curv-i5,2018-19,Norton - J C Solmonese,02180015, 109, 20.6, 498, 49.4, 50.6, 1.6, 28.1,21.1 +NA,NA,a-curv-i5,2018-19,Norton - L G Nourse Elementary,02180010, 71, 20.8, 268, 49.3, 50.8, 3.0, 23.1,24.6 +NA,NA,a-curv-i5,2018-19,Norton - Norton High,02180505, 370, 17.6, 726, 47.7, 52.3, 0.6, 14.3,15.2 +NA,NA,a-curv-i5,2018-19,Norton - Norton Middle,02180305, 323, 17.4, 591, 51.6, 48.4, 1.0, 21.0,17.4 +NA,NA,a-curv-i5,2018-19,Norwell - Grace Farrar Cole,02190005, 184, 19.3, 483, 44.1, 55.9, 0.4, 17.6,7.5 +NA,NA,a-curv-i5,2018-19,Norwell - Norwell High,02190505, 327, 14.8, 682, 54.8, 45.2, 0.3, 12.9,3.1 +NA,NA,a-curv-i5,2018-19,Norwell - Norwell Middle School,02190405, 495, 17.3, 519, 45.5, 54.5, 0.0, 17.7,3.1 +NA,NA,a-curv-i5,2018-19,Norwell - William G Vinal,02190020, 184, 21.2, 529, 46.5, 53.5, 0.2, 15.9,2.5 +NA,NA,a-curv-i5,2018-19,Norwood - Balch,02200005, 77, 17.5, 309, 50.5, 49.5, 27.5, 23.6,39.5 +NA,NA,a-curv-i5,2018-19,Norwood - Charles J Prescott,02200025, 58, 18.1, 246, 49.2, 50.8, 13.4, 19.1,14.2 +NA,NA,a-curv-i5,2018-19,Norwood - Cornelius M Callahan,02200010, 52, 17.0, 204, 48.5, 51.5, 13.2, 28.9,37.8 +NA,NA,a-curv-i5,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 360, 19.0, 759, 50.2, 49.8, 4.1, 19.9,24.9 +NA,NA,a-curv-i5,2018-19,Norwood - F A Cleveland,02200015, 75, 18.9, 325, 45.2, 54.8, 11.7, 24.3,22.8 +NA,NA,a-curv-i5,2018-19,Norwood - George F. Willett,02200075, 54, 17.1, 395, 41.3, 58.7, 18.0, 25.8,25.3 +NA,NA,a-curv-i5,2018-19,Norwood - John P Oldham,02200020, 56, 19.1, 242, 48.8, 51.2, 5.8, 28.5,17.4 +NA,NA,a-curv-i5,2018-19,Norwood - Norwood High,02200505, 499, 15.4," 1,000", 50.3, 49.7, 4.6, 13.9,23.9 +NA,NA,a-curv-i5,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 249, 16.5, 459, 51.9, 48.2, 19.8, 24.2,23.8 +NA,NA,a-curv-i5,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 248, 17.4, 544, 37.3, 62.5, 0.2, 24.6,17.1 +NA,NA,a-curv-i5,2018-19,Old Rochester - Old Rochester Regional High,07400505, 348, 18.2, 774, 51.2, 48.8, 0.0, 10.1,12.4 +NA,NA,a-curv-i5,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 311, 17.2, 438, 45.4, 54.6, 0.0, 13.5,13 +NA,NA,a-curv-i5,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 26, 19.9, 199, 48.2, 51.8, 6.0, 21.1,27.6 +NA,NA,a-curv-i5,2018-19,Orange - Dexter Park,02230010, 155, 21.8, 324, 48.5, 51.5, 1.9, 27.5,50 +NA,NA,a-curv-i5,2018-19,Orange - Fisher Hill,02230015, 112, 20.5, 257, 47.5, 52.5, 0.8, 28.8,61.1 +NA,NA,a-curv-i5,2018-19,Orleans - Orleans Elementary,02240005, 154, 16.5, 215, 49.3, 50.7, 7.0, 19.5,28.4 +NA,NA,a-curv-i5,2018-19,Oxford - Alfred M Chaffee,02260010, 48, 18.5, 254, 45.7, 54.3, 0.4, 20.9,29.1 +NA,NA,a-curv-i5,2018-19,Oxford - Clara Barton,02260005, 65, 24.2, 394, 45.9, 54.1, 2.0, 17.5,32.5 +NA,NA,a-curv-i5,2018-19,Oxford - Oxford High,02260505, 266, 18.1, 540, 51.9, 48.0, 0.2, 14.1,32.8 +NA,NA,a-curv-i5,2018-19,Oxford - Oxford Middle,02260405, 178, 26.4, 438, 46.1, 53.9, 0.0, 12.3,33.8 +NA,NA,a-curv-i5,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 19, 6.6, 25, 8.0, 92.0, 0.0, 48.0,60 +NA,NA,a-curv-i5,2018-19,Palmer - Old Mill Pond,02270008, 357, 16.1, 663, 48.6, 51.4, 5.0, 19.9,47.2 +NA,NA,a-curv-i5,2018-19,Palmer - Palmer High,02270505, 365, 14.1, 684, 50.6, 49.4, 1.6, 18.3,38.6 +NA,NA,a-curv-i5,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 508, 12.8, 638, 36.4, 63.2, 0.0, 29.5,36.1 +NA,NA,a-curv-i5,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 142, 14.3, 290, 55.9, 44.1, 10.0, 22.1,80 +NA,NA,a-curv-i5,2018-19,Peabody - Captain Samuel Brown,02290005, 147, 18.1, 364, 44.5, 55.5, 5.2, 33.5,28 +NA,NA,a-curv-i5,2018-19,Peabody - Center,02290015, 157, 20.0, 402, 53.0, 47.0, 12.2, 12.9,33.8 +NA,NA,a-curv-i5,2018-19,Peabody - J Henry Higgins Middle,02290305, 726, 20.6," 1,459", 48.9, 51.1, 6.0, 18.6,31.7 +NA,NA,a-curv-i5,2018-19,Peabody - John E Burke,02290007, 116, 16.5, 274, 51.1, 48.9, 4.7, 28.8,17.9 +NA,NA,a-curv-i5,2018-19,Peabody - John E. McCarthy,02290016, 110, 19.2, 402, 43.8, 56.2, 5.7, 34.8,31.6 +NA,NA,a-curv-i5,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 734, 15.3," 1,433", 47.7, 52.1, 4.9, 19.4,28.1 +NA,NA,a-curv-i5,2018-19,Peabody - South Memorial,02290035, 154, 21.0, 476, 57.8, 42.2, 9.5, 13.0,20.6 +NA,NA,a-curv-i5,2018-19,Peabody - Thomas Carroll,02290010, 220, 22.3, 625, 52.6, 47.4, 17.4, 15.0,44.3 +NA,NA,a-curv-i5,2018-19,Peabody - West Memorial,02290045, 98, 16.4, 273, 45.4, 54.6, 2.2, 22.0,21.3 +NA,NA,a-curv-i5,2018-19,Peabody - William A Welch Sr,02290027, 144, 20.8, 409, 52.8, 47.2, 18.3, 16.4,51.6 +NA,NA,a-curv-i5,2018-19,Pelham - Pelham Elementary,02300005, 43, 19.3, 134, 48.5, 51.5, 0.8, 24.6,20.2 +NA,NA,a-curv-i5,2018-19,Pembroke - Bryantville Elementary,02310003, 184, 19.8, 499, 47.9, 52.1, 2.4, 16.4,19.4 +NA,NA,a-curv-i5,2018-19,Pembroke - Hobomock Elementary,02310010, 158, 19.9, 431, 45.2, 54.8, 1.2, 14.6,9.5 +NA,NA,a-curv-i5,2018-19,Pembroke - North Pembroke Elementary,02310015, 184, 20.0, 568, 46.1, 53.9, 2.6, 16.7,12.7 +NA,NA,a-curv-i5,2018-19,Pembroke - Pembroke Community Middle School,02310305, 264, 19.8, 464, 44.8, 55.2, 0.2, 14.4,10.6 +6.394326241134752,5,a-curv-i5,2018-19,Pembroke - Pembroke High School,02310505, 423, 15.7, 848, 52.7, 47.3, 0.1, 11.0,11,849 +NA,NA,a-curv-i5,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 65, 14.3, 225, 41.3, 58.7, 0.4, 33.3,15.1 +NA,NA,a-curv-i5,2018-19,Pentucket - Dr John C Page School,07450015, 125, 17.0, 341, 47.8, 52.2, 0.9, 22.9,7.3 +NA,NA,a-curv-i5,2018-19,Pentucket - Elmer S Bagnall,07450005, 147, 19.0, 498, 45.2, 54.6, 0.2, 21.7,13.1 +NA,NA,a-curv-i5,2018-19,Pentucket - Helen R Donaghue School,07450010, 87, 19.9, 227, 48.5, 51.5, 0.4, 24.7,17.6 +NA,NA,a-curv-i5,2018-19,Pentucket - Pentucket Regional Middle,07450405, 209, 16.1, 398, 47.0, 53.0, 0.3, 19.9,13.6 +NA,NA,a-curv-i5,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 442, 14.5, 930, 46.9, 53.1, 0.2, 13.0,9.4 +NA,NA,a-curv-i5,2018-19,Petersham - Petersham Center,02340005, 56, 17.2, 121, 51.2, 48.8, 0.0, 20.7,27.3 +5.494736842105263,5,a-curv-i5,2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 38, 16.5, 128, 32.8, 67.2, 29.7, 23.4,69.5,119 +4.228571428571429,4.23,a-curv-i5,2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 42, 16.7, 156, 52.6, 47.4, 19.9, 29.5,85.3,198 +NA,NA,a-curv-i5,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 42, 21.6, 219, 48.0, 52.1, 63.5, 9.6,45.2 +NA,NA,a-curv-i5,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 354, 18.9, 805, 51.2, 48.8, 20.1, 10.6,37.5 +NA,NA,a-curv-i5,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 161, 17.4, 361, 50.7, 49.3, 16.6, 13.6,23 +NA,NA,a-curv-i5,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 38, 20.8, 161, 55.3, 44.7, 0.0, 29.2,32.9 +NA,NA,a-curv-i5,2018-19,Pioneer Valley - Northfield Elementary,07500008, 48, 17.5, 182, 48.9, 51.1, 0.0, 22.5,20.3 +NA,NA,a-curv-i5,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 23, 5.5, 33, 54.6, 45.5, 0.0, 36.4,39.4 +NA,NA,a-curv-i5,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 309, 13.9, 311, 48.2, 51.8, 0.3, 14.2,16.7 +NA,NA,a-curv-i5,2018-19,Pioneer Valley - Warwick Community School,07500009, 39, 8.1, 58, 41.4, 58.6, 0.0, 10.3,27.6 +NA,NA,a-curv-i5,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 287, 17.1, 517, 52.8, 47.0, 2.9, 9.7,17 +NA,NA,a-curv-i5,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 361, 11.8, 398, 68.3, 31.2, 0.5, 23.1,26.6 +NA,NA,a-curv-i5,2018-19,Pittsfield - Allendale,02360010, 112, 17.0, 312, 53.9, 46.2, 5.5, 14.1,51 +NA,NA,a-curv-i5,2018-19,Pittsfield - Crosby,02360065, 123, 15.1, 423, 39.7, 60.3, 7.1, 41.6,71.2 +NA,NA,a-curv-i5,2018-19,Pittsfield - Egremont,02360035, 117, 18.3, 429, 49.2, 50.8, 6.3, 15.2,42.7 +NA,NA,a-curv-i5,2018-19,Pittsfield - John T Reid Middle,02360305, 354, 15.4, 553, 51.4, 48.5, 1.5, 24.4,58.4 +NA,NA,a-curv-i5,2018-19,Pittsfield - Morningside Community School,02360055, 130, 15.8, 375, 49.3, 50.7, 11.5, 21.6,75.7 +NA,NA,a-curv-i5,2018-19,Pittsfield - Pittsfield High,02360505, 472, 12.3, 787, 49.9, 50.1, 3.4, 24.7,40.7 +NA,NA,a-curv-i5,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 75, 15.5, 212, 51.4, 48.6, 1.4, 17.9,46.2 +NA,NA,a-curv-i5,2018-19,Pittsfield - Silvio O Conte Community,02360105, 139, 15.3, 350, 50.6, 49.4, 11.1, 16.6,84.3 +NA,NA,a-curv-i5,2018-19,Pittsfield - Stearns,02360090, 69, 16.8, 235, 42.6, 57.5, 0.0, 23.0,33.6 +NA,NA,a-curv-i5,2018-19,Pittsfield - Taconic High,02360510, 455, 12.7, 799, 50.3, 49.7, 2.8, 24.8,44.8 +NA,NA,a-curv-i5,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 354, 17.7, 645, 51.2, 48.8, 3.3, 20.5,49.2 +NA,NA,a-curv-i5,2018-19,Pittsfield - Williams,02360100, 91, 16.5, 296, 45.6, 54.4, 6.1, 13.9,29.1 +NA,NA,a-curv-i5,2018-19,Plainville - Anna Ware Jackson,02380010, 98, 19.2, 439, 49.4, 50.6, 6.2, 19.4,19.4 +NA,NA,a-curv-i5,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 70, 20.5, 287, 49.5, 50.5, 2.8, 19.9,17.8 +NA,NA,a-curv-i5,2018-19,Plymouth - Cold Spring,02390005, 139, 18.0, 214, 54.2, 45.8, 9.8, 16.4,34.1 +NA,NA,a-curv-i5,2018-19,Plymouth - Federal Furnace School,02390011, 262, 15.8, 361, 49.9, 50.1, 0.0, 19.4,30.2 +NA,NA,a-curv-i5,2018-19,Plymouth - Hedge,02390010, 127, 17.3, 190, 46.3, 53.7, 17.9, 21.1,55.3 +NA,NA,a-curv-i5,2018-19,Plymouth - Indian Brook,02390012, 320, 20.4, 567, 50.6, 49.4, 0.0, 16.4,18.5 +NA,NA,a-curv-i5,2018-19,Plymouth - Manomet Elementary,02390015, 172, 17.9, 265, 50.6, 49.4, 0.0, 20.8,26.8 +NA,NA,a-curv-i5,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 320, 20.2, 548, 46.9, 53.1, 3.7, 13.0,21.5 +NA,NA,a-curv-i5,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 587, 20.1," 1,081", 47.5, 52.5, 2.4, 22.9,28.2 +NA,NA,a-curv-i5,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 16, 11.9, 190, 40.5, 59.5, 2.6, 54.2,34.2 +NA,NA,a-curv-i5,2018-19,Plymouth - Plymouth North High,02390505, 918, 15.2," 1,250", 49.7, 50.3, 2.2, 13.7,20.4 +NA,NA,a-curv-i5,2018-19,Plymouth - Plymouth South High,02390515, 930, 14.0," 1,070", 47.8, 52.2, 0.3, 15.9,15.9 +NA,NA,a-curv-i5,2018-19,Plymouth - Plymouth South Middle,02390305, 374, 20.5, 717, 47.4, 52.6, 0.1, 20.1,19.4 +NA,NA,a-curv-i5,2018-19,Plymouth - South Elementary,02390046, 398, 17.9, 624, 45.7, 54.3, 0.2, 20.0,20.8 +NA,NA,a-curv-i5,2018-19,Plymouth - West Elementary,02390047, 295, 13.8, 354, 48.9, 51.1, 0.6, 18.6,25.4 +NA,NA,a-curv-i5,2018-19,Plympton - Dennett Elementary,02400010, 104, 14.5, 203, 47.3, 52.7, 0.0, 15.8,15.8 +NA,NA,a-curv-i5,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 488, 20.1," 1,112", 49.1, 50.9, 11.5, 15.8,37.6 +NA,NA,a-curv-i5,2018-19,Provincetown - Provincetown Schools,02420020, 80, 12.8, 129, 53.5, 46.5, 20.2, 20.2,36.4 +NA,NA,a-curv-i5,2018-19,Quabbin - Hardwick Elementary,07530005, 51, 21.1, 171, 38.6, 61.4, 0.0, 19.9,40.4 +NA,NA,a-curv-i5,2018-19,Quabbin - Hubbardston Center,07530010, 86, 22.3, 308, 52.3, 47.7, 0.3, 16.2,19.5 +NA,NA,a-curv-i5,2018-19,Quabbin - New Braintree Grade,07530020, 15, 20.4, 62, 46.8, 53.2, 0.0, 16.1,25.8 +NA,NA,a-curv-i5,2018-19,Quabbin - Oakham Center,07530025, 41, 21.6, 131, 62.6, 37.4, 1.5, 17.6,13.7 +6.943459915611814,5,a-curv-i5,2018-19,Quabbin - Quabbin Regional High School,07530505, 474, 18.2, 630, 51.9, 48.1, 0.0, 13.3,16.8,626 +NA,NA,a-curv-i5,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 153, 17.0, 360, 54.7, 45.3, 0.3, 20.0,24.7 +NA,NA,a-curv-i5,2018-19,Quabbin - Ruggles Lane,07530030, 130, 21.0, 489, 46.2, 53.8, 0.0, 29.0,31.9 +NA,NA,a-curv-i5,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 189, 14.9, 363, 47.7, 51.2, 0.8, 13.5,29.2 +NA,NA,a-curv-i5,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 140, 17.2, 224, 46.4, 53.6, 0.0, 13.4,34.8 +NA,NA,a-curv-i5,2018-19,Quaboag Regional - Warren Elementary,07780005, 152, 20.1, 451, 50.1, 49.9, 2.2, 23.1,46.1 +NA,NA,a-curv-i5,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 107, 20.2, 300, 49.3, 50.7, 1.3, 19.7,31 +NA,NA,a-curv-i5,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 42, 10.5, 220, 36.8, 63.2, 0.0, 69.1,35.5 +NA,NA,a-curv-i5,2018-19,Quincy - Atherton Hough,02430040, 150, 13.2, 271, 44.3, 55.7, 15.1, 36.9,29.2 +NA,NA,a-curv-i5,2018-19,Quincy - Atlantic Middle,02430305, 295, 21.4, 560, 48.8, 51.3, 12.5, 15.9,29.5 +NA,NA,a-curv-i5,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 154, 16.1, 331, 47.7, 52.3, 18.4, 9.4,32.3 +NA,NA,a-curv-i5,2018-19,Quincy - Broad Meadows Middle,02430310, 258, 17.7, 376, 47.9, 52.1, 6.4, 36.4,41.5 +NA,NA,a-curv-i5,2018-19,Quincy - Central Middle,02430315, 375, 20.1, 621, 51.9, 48.2, 4.2, 11.0,22.4 +NA,NA,a-curv-i5,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 166, 17.7, 348, 51.2, 48.9, 16.7, 14.9,18.4 +NA,NA,a-curv-i5,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 237, 16.3, 523, 53.0, 47.0, 33.5, 9.9,40.3 +NA,NA,a-curv-i5,2018-19,Quincy - Francis W Parker,02430075, 190, 13.0, 329, 41.3, 58.7, 29.2, 17.9,41.3 +NA,NA,a-curv-i5,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 217, 17.4, 501, 46.5, 53.5, 34.3, 12.0,42.7 +NA,NA,a-curv-i5,2018-19,Quincy - Merrymount,02430060, 147, 18.3, 366, 48.4, 51.6, 17.2, 17.5,24.6 +NA,NA,a-curv-i5,2018-19,Quincy - Montclair,02430065, 175, 18.5, 426, 52.1, 47.9, 32.6, 9.2,32.4 +NA,NA,a-curv-i5,2018-19,Quincy - North Quincy High,02430510, 599, 16.0," 1,274", 46.3, 53.7, 9.3, 13.8,30.4 +NA,NA,a-curv-i5,2018-19,Quincy - Point Webster Middle,02430325, 257, 17.1, 403, 47.9, 52.1, 11.2, 15.4,39.5 +NA,NA,a-curv-i5,2018-19,Quincy - Quincy High,02430505, 847, 15.4," 1,544", 48.6, 51.3, 8.7, 16.7,34.9 +NA,NA,a-curv-i5,2018-19,Quincy - Snug Harbor Community School,02430090, 286, 9.5, 475, 44.6, 55.4, 16.8, 41.9,58.7 +NA,NA,a-curv-i5,2018-19,Quincy - South West Middle School,02430320, 258, 17.0, 384, 43.5, 56.5, 14.8, 25.5,50 +NA,NA,a-curv-i5,2018-19,Quincy - Squantum,02430095, 200, 13.3, 342, 50.9, 49.1, 12.0, 24.0,23.7 +NA,NA,a-curv-i5,2018-19,Quincy - Wollaston School,02430110, 157, 16.5, 339, 50.7, 49.3, 34.8, 9.7,28.9 +NA,NA,a-curv-i5,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 2, 33.0, 33, 57.6, 42.4, 0.0, 0.0,15.2 +NA,NA,a-curv-i5,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 635, 13.9, 625, 48.0, 52.0, 0.8, 20.2,38.9 +NA,NA,a-curv-i5,2018-19,Ralph C Mahar - The Gateway to College,07550525, 2, 121.0, 121, 61.2, 38.8, 0.0, 0.8,39.7 +NA,NA,a-curv-i5,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 88, 22.6, 318, 47.2, 52.8, 19.5, 23.9,45.3 +NA,NA,a-curv-i5,2018-19,Randolph - J F Kennedy Elementary,02440018, 158, 16.9, 495, 44.2, 55.8, 22.0, 36.4,52.5 +NA,NA,a-curv-i5,2018-19,Randolph - Margaret L Donovan,02440015, 140, 23.6, 459, 48.2, 51.9, 21.6, 14.8,39.7 +NA,NA,a-curv-i5,2018-19,Randolph - Martin E Young Elementary,02440040, 109, 17.2, 281, 42.7, 57.3, 26.7, 23.5,45.9 +NA,NA,a-curv-i5,2018-19,Randolph - Randolph Community Middle,02440410, 288, 18.6, 636, 45.9, 54.1, 8.7, 24.7,45.3 +NA,NA,a-curv-i5,2018-19,Randolph - Randolph High,02440505, 303, 16.2, 678, 43.5, 56.5, 11.8, 18.3,45.7 +NA,NA,a-curv-i5,2018-19,Reading - Alice M Barrows,02460002, 85, 19.8, 376, 47.3, 52.7, 1.3, 12.5,4.5 +NA,NA,a-curv-i5,2018-19,Reading - Arthur W Coolidge Middle,02460305, 205, 20.2, 440, 45.9, 54.1, 0.5, 22.7,6.6 +NA,NA,a-curv-i5,2018-19,Reading - Birch Meadow,02460005, 69, 21.3, 382, 43.7, 56.3, 0.5, 18.9,4.7 +NA,NA,a-curv-i5,2018-19,Reading - J Warren Killam,02460017, 76, 20.3, 404, 45.1, 55.0, 3.0, 13.9,6.4 +NA,NA,a-curv-i5,2018-19,Reading - Joshua Eaton,02460010, 88, 19.8, 394, 51.8, 48.2, 2.8, 14.0,11.2 +NA,NA,a-curv-i5,2018-19,Reading - RISE PreSchool,02460001, 9, 14.6, 131, 36.6, 63.4, 3.8, 48.9,10.7 +NA,NA,a-curv-i5,2018-19,Reading - Reading Memorial High,02460505, 619, 17.2," 1,252", 50.4, 49.4, 0.4, 18.1,6.6 +NA,NA,a-curv-i5,2018-19,Reading - Walter S Parker Middle,02460310, 260, 21.5, 548, 50.0, 50.0, 0.7, 14.1,9.3 +NA,NA,a-curv-i5,2018-19,Reading - Wood End Elementary School,02460020, 59, 22.1, 306, 49.0, 51.0, 1.0, 16.0,8.2 +NA,NA,a-curv-i5,2018-19,Revere - A. C. Whelan Elementary School,02480003, 291, 24.5, 777, 47.2, 52.8, 22.1, 17.5,47.6 +NA,NA,a-curv-i5,2018-19,Revere - Abraham Lincoln,02480025, 258, 18.4, 649, 47.3, 52.7, 35.8, 22.5,43.5 +NA,NA,a-curv-i5,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 173, 14.9, 343, 43.7, 56.3, 33.5, 26.2,49.3 +NA,NA,a-curv-i5,2018-19,Revere - Garfield Elementary School,02480056, 290, 20.7, 750, 48.3, 51.7, 42.0, 16.5,54.1 +NA,NA,a-curv-i5,2018-19,Revere - Garfield Middle School,02480057, 353, 21.6, 588, 50.2, 49.8, 18.0, 8.2,48.5 +NA,NA,a-curv-i5,2018-19,Revere - Paul Revere,02480050, 182, 21.4, 463, 50.1, 49.9, 27.0, 19.2,51 +NA,NA,a-curv-i5,2018-19,Revere - Revere High,02480505, 896, 20.3," 2,035", 49.4, 50.5, 17.7, 9.7,45.6 +NA,NA,a-curv-i5,2018-19,Revere - Rumney Marsh Academy,02480014, 284, 21.2, 613, 49.4, 50.6, 4.7, 20.6,46 +NA,NA,a-curv-i5,2018-19,Revere - Seacoast School,02480520, 94, 7.6, 87, 29.9, 70.1, 6.9, 21.8,67.8 +NA,NA,a-curv-i5,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 317, 19.0, 724, 49.9, 50.1, 34.1, 18.8,48.2 +NA,NA,a-curv-i5,2018-19,Revere - Susan B. Anthony Middle School,02480305, 240, 22.5, 598, 52.7, 47.3, 16.7, 10.9,44.3 +NA,NA,a-curv-i5,2018-19,Richmond - Richmond Consolidated,02490005, 110, 17.2, 179, 50.3, 49.7, 0.0, 14.5,27.4 +NA,NA,a-curv-i5,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 321, 18.5, 657, 51.5, 48.6, 0.5, 16.4,10.5 +NA,NA,a-curv-i5,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 118, 15.4, 287, 55.4, 44.6, 0.0, 20.6,7.7 +NA,NA,a-curv-i5,2018-19,Rochester - Rochester Memorial,02500005, 194, 19.6, 517, 48.0, 52.0, 0.6, 20.3,13.7 +NA,NA,a-curv-i5,2018-19,Rockland - Jefferson Elementary School,02510060, 137, 17.5, 274, 53.7, 46.4, 9.1, 14.6,38 +NA,NA,a-curv-i5,2018-19,Rockland - John W Rogers Middle,02510305, 369, 21.7, 734, 48.6, 51.4, 5.0, 16.9,35.3 +NA,NA,a-curv-i5,2018-19,Rockland - Memorial Park,02510020, 125, 19.3, 298, 50.7, 49.3, 13.1, 20.8,40.3 +NA,NA,a-curv-i5,2018-19,Rockland - R Stewart Esten,02510025, 158, 17.8, 348, 45.1, 54.9, 9.2, 18.4,38.5 +NA,NA,a-curv-i5,2018-19,Rockland - Rockland Senior High,02510505, 291, 15.1, 666, 51.5, 48.5, 4.1, 16.4,29.1 +NA,NA,a-curv-i5,2018-19,Rockport - Rockport Elementary,02520005, 96, 19.3, 394, 49.8, 50.3, 1.8, 17.8,23.4 +NA,NA,a-curv-i5,2018-19,Rockport - Rockport High,02520510, 206, 12.0, 286, 46.2, 53.9, 1.1, 18.5,14.7 +NA,NA,a-curv-i5,2018-19,Rockport - Rockport Middle,02520305, 236, 13.7, 219, 49.8, 50.2, 1.4, 22.4,21.9 +NA,NA,a-curv-i5,2018-19,Rowe - Rowe Elementary,02530005, 25, 13.4, 66, 48.5, 51.5, 0.0, 27.3,31.8 +NA,NA,a-curv-i5,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 493, 26.6," 1,562", 50.0, 50.0, 5.9, 15.2,36.9 +NA,NA,a-curv-i5,2018-19,Salem - Bates,02580003, 157, 18.7, 410, 48.5, 51.5, 14.4, 22.0,49 +NA,NA,a-curv-i5,2018-19,Salem - Carlton,02580015, 114, 20.9, 291, 53.3, 46.7, 5.5, 27.5,42.6 +NA,NA,a-curv-i5,2018-19,Salem - Collins Middle,02580305, 287, 19.4, 699, 47.6, 52.4, 11.0, 21.6,54.7 +NA,NA,a-curv-i5,2018-19,Salem - Horace Mann Laboratory,02580030, 126, 19.4, 304, 51.6, 48.4, 24.7, 12.8,53.3 +NA,NA,a-curv-i5,2018-19,Salem - New Liberty Innovation School,02580510, 45, 14.4, 65, 60.0, 40.0, 10.8, 40.0,72.3 +NA,NA,a-curv-i5,2018-19,Salem - Salem Early Childhood,02580001, 13, 8.2, 105, 33.3, 66.7, 10.5, 66.7,51.4 +NA,NA,a-curv-i5,2018-19,Salem - Salem High,02580505, 595, 13.8, 951, 44.6, 55.4, 13.7, 23.9,47.7 +7.296000000000001,5,a-curv-i5,2018-19,Salem - Salem Prep High School,02580515, 25, 5.4, 20, 30.0, 70.0, 0.0, 100.0,65,22 +NA,NA,a-curv-i5,2018-19,Salem - Saltonstall School,02580050, 233, 13.1, 410, 51.2, 48.8, 10.2, 18.3,41.5 +NA,NA,a-curv-i5,2018-19,Salem - Witchcraft Heights,02580070, 239, 17.5, 572, 48.4, 51.6, 17.7, 22.4,45.5 +NA,NA,a-curv-i5,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 240, 19.1, 479, 53.2, 46.8, 4.4, 13.6,28.2 +NA,NA,a-curv-i5,2018-19,Sandwich - Forestdale School,02610002, 258, 19.3, 615, 48.8, 51.2, 2.4, 15.8,18.1 +NA,NA,a-curv-i5,2018-19,Sandwich - Oak Ridge,02610025, 421, 19.4, 816, 49.4, 50.6, 1.1, 22.7,17.4 +NA,NA,a-curv-i5,2018-19,Sandwich - Sandwich High,02610505, 352, 15.4, 656, 50.3, 49.7, 0.8, 15.4,13 +NA,NA,a-curv-i5,2018-19,Sandwich - Sandwich STEM Academy,02610305, 262, 18.7, 450, 52.2, 47.6, 0.0, 21.1,13.3 +NA,NA,a-curv-i5,2018-19,Saugus - Belmonte Saugus Middle,02620305, 479, 17.6, 646, 48.9, 51.1, 4.6, 17.8,29.7 +NA,NA,a-curv-i5,2018-19,Saugus - Douglas Waybright,02620067, 96, 19.5, 247, 43.3, 56.7, 2.8, 18.6,30 +NA,NA,a-curv-i5,2018-19,Saugus - Lynnhurst,02620040, 104, 21.3, 295, 45.8, 54.2, 9.8, 15.3,32.2 +NA,NA,a-curv-i5,2018-19,Saugus - Oaklandvale,02620050, 96, 21.2, 253, 50.6, 49.4, 20.2, 14.2,45.5 +NA,NA,a-curv-i5,2018-19,Saugus - Saugus High,02620505, 357, 15.6, 689, 48.3, 51.5, 4.5, 13.4,26.3 +NA,NA,a-curv-i5,2018-19,Saugus - Veterans Memorial,02620065, 286, 14.5, 531, 46.5, 53.5, 5.7, 26.9,30.1 +NA,NA,a-curv-i5,2018-19,Savoy - Emma L Miller Elementary School,02630010, 60, 8.6, 61, 45.9, 54.1, 0.0, 23.0,54.1 +NA,NA,a-curv-i5,2018-19,Scituate - Cushing Elementary,02640007, 159, 18.5, 333, 46.3, 53.8, 1.5, 9.9,8.1 +NA,NA,a-curv-i5,2018-19,Scituate - Gates Middle School,02640305, 391, 21.9, 685, 51.5, 48.5, 0.4, 14.2,11.4 +NA,NA,a-curv-i5,2018-19,Scituate - Hatherly Elementary,02640010, 132, 17.8, 265, 47.2, 52.8, 0.0, 18.1,8.7 +NA,NA,a-curv-i5,2018-19,Scituate - Jenkins Elementary School,02640015, 171, 18.4, 356, 46.6, 53.4, 0.6, 18.3,12.1 +6.306401766004415,5,a-curv-i5,2018-19,Scituate - Scituate High School,02640505, 453, 19.0, 961, 51.0, 48.9, 0.0, 11.7,9.3,959 +NA,NA,a-curv-i5,2018-19,Scituate - Wampatuck Elementary,02640020, 162, 19.8, 420, 47.9, 52.1, 1.9, 15.0,10.2 +NA,NA,a-curv-i5,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 338, 15.0, 505, 47.9, 52.1, 0.8, 17.6,13.1 +NA,NA,a-curv-i5,2018-19,Seekonk - George R Martin,02650007, 104, 22.0, 501, 53.3, 46.7, 6.6, 16.4,17 +NA,NA,a-curv-i5,2018-19,Seekonk - Mildred Aitken School,02650015, 94, 22.3, 460, 47.6, 52.4, 6.5, 18.3,12.6 +NA,NA,a-curv-i5,2018-19,Seekonk - Seekonk High,02650505, 316, 17.3, 617, 52.0, 48.0, 0.5, 17.0,11.2 +NA,NA,a-curv-i5,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 216, 24.4, 659, 50.1, 49.9, 26.7, 14.4,59.9 +NA,NA,a-curv-i5,2018-19,Sharon - Cottage Street,02660005, 174, 19.5, 521, 48.9, 51.1, 10.0, 13.2,4.4 +NA,NA,a-curv-i5,2018-19,Sharon - East Elementary,02660010, 154, 20.6, 515, 51.1, 48.9, 6.4, 12.2,8.9 +NA,NA,a-curv-i5,2018-19,Sharon - Heights Elementary,02660015, 154, 22.0, 547, 47.9, 52.1, 6.6, 14.4,5.5 +NA,NA,a-curv-i5,2018-19,Sharon - Sharon Early Childhood Center,02660001, 4, 14.3, 56, 30.4, 69.6, 7.1, 50.0,16.1 +NA,NA,a-curv-i5,2018-19,Sharon - Sharon High,02660505, 489, 15.8," 1,120", 46.8, 53.1, 0.8, 10.9,8.7 +NA,NA,a-curv-i5,2018-19,Sharon - Sharon Middle,02660305, 503, 19.4, 857, 50.5, 49.5, 1.9, 13.9,9.7 +6.858654906284454,5,a-curv-i5,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 907, 15.5," 1,286", 41.8, 58.2, 0.1, 22.8,14.2,1294 +NA,NA,a-curv-i5,2018-19,Sherborn - Pine Hill,02690010, 187, 19.0, 419, 49.2, 50.8, 2.6, 15.0,5 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Beal School,02710005, 70, 17.0, 298, 44.3, 55.7, 7.7, 14.4,14.4 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Calvin Coolidge,02710015, 78, 22.0, 403, 48.4, 51.6, 6.2, 16.4,20.1 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Floral Street School,02710020, 145, 22.6, 723, 48.8, 51.2, 4.4, 14.1,9 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Oak Middle School,02710030, 511, 22.3," 1,000", 49.6, 50.4, 2.6, 13.9,11.2 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Parker Road Preschool,02710040, 18, 15.6, 268, 45.2, 54.9, 6.0, 41.0,16 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Sherwood Middle School,02710305, 602, 22.8, 956, 48.4, 51.6, 2.3, 15.0,10.4 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 942, 17.7," 1,855", 52.9, 46.9, 2.2, 11.9,10.1 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Spring Street,02710035, 70, 22.4, 366, 47.0, 53.0, 0.8, 14.2,3.3 +NA,NA,a-curv-i5,2018-19,Shrewsbury - Walter J Paton,02710025, 72, 22.6, 382, 50.8, 49.2, 1.8, 14.9,8.9 +NA,NA,a-curv-i5,2018-19,Shutesbury - Shutesbury Elementary,02720005, 55, 15.6, 126, 56.4, 43.7, 0.8, 17.5,32.5 +NA,NA,a-curv-i5,2018-19,Silver Lake - Silver Lake Regional High,07600505, 485, 18.5," 1,264", 47.5, 52.5, 0.7, 16.0,13.6 +NA,NA,a-curv-i5,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 319, 16.4, 512, 47.5, 52.5, 0.8, 16.0,18.8 +NA,NA,a-curv-i5,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 237, 14.6, 381, 46.2, 53.3, 1.3, 24.4,34.1 +NA,NA,a-curv-i5,2018-19,Somerset - Chace Street,02730005, 180, 22.4, 435, 45.1, 54.9, 1.8, 25.8,26.4 +NA,NA,a-curv-i5,2018-19,Somerset - North Elementary,02730008, 263, 19.2, 465, 47.7, 52.3, 0.9, 14.8,19.1 +NA,NA,a-curv-i5,2018-19,Somerset - Somerset Middle School,02730305, 350, 20.9, 628, 48.6, 51.4, 0.2, 14.7,20.1 +NA,NA,a-curv-i5,2018-19,Somerset - South,02730015, 130, 22.5, 270, 53.0, 47.0, 2.6, 13.0,28.9 +6.510592459605027,5,a-curv-i5,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 557, 16.0," 1,050", 50.1, 49.9, 0.2, 11.1,13.5,1037 +NA,NA,a-curv-i5,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 173, 21.9, 632, 47.9, 52.1, 30.1, 11.2,35.6 +NA,NA,a-curv-i5,2018-19,Somerville - Arthur D Healey,02740075, 173, 15.3, 438, 50.0, 50.0, 24.4, 25.1,55.9 +NA,NA,a-curv-i5,2018-19,Somerville - Benjamin G Brown,02740015, 64, 18.8, 229, 58.5, 41.5, 1.3, 14.9,12.2 +NA,NA,a-curv-i5,2018-19,Somerville - Capuano Early Childhood Center,02740005, 42, 17.0, 347, 42.7, 57.4, 39.8, 26.2,37.5 +NA,NA,a-curv-i5,2018-19,Somerville - E Somerville Community,02740111, 231, 19.2, 713, 48.0, 52.0, 33.9, 16.8,49.4 +7.8050761421319805,5,a-curv-i5,2018-19,Somerville - Full Circle High School,02740510, 197, 6.8, 64, 34.4, 65.6, 4.7, 67.2,68.8,48 +NA,NA,a-curv-i5,2018-19,Somerville - John F Kennedy,02740083, 160, 18.0, 437, 44.9, 55.2, 2.1, 23.6,26.5 +NA,NA,a-curv-i5,2018-19,Somerville - Next Wave Junior High,02740410, 99, 5.3, 23, 17.4, 82.6, 13.0, 73.9,78.3 +NA,NA,a-curv-i5,2018-19,Somerville - Somerville High,02740505, 647, 15.0," 1,272", 45.6, 54.3, 13.9, 15.6,42.3 +NA,NA,a-curv-i5,2018-19,Somerville - West Somerville Neighborhood,02740115, 117, 19.1, 367, 48.8, 51.0, 4.6, 22.6,40.6 +NA,NA,a-curv-i5,2018-19,Somerville - Winter Hill Community,02740120, 167, 17.2, 456, 44.1, 55.7, 37.1, 27.9,52.2 +NA,NA,a-curv-i5,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 312, 15.5, 580, 50.7, 49.3, 5.9, 17.9,27.4 +NA,NA,a-curv-i5,2018-19,South Hadley - Mosier,02780020, 99, 19.7, 423, 48.7, 51.3, 5.7, 17.0,28.8 +NA,NA,a-curv-i5,2018-19,South Hadley - Plains Elementary,02780015, 53, 16.5, 370, 51.9, 48.1, 6.2, 19.7,27 +NA,NA,a-curv-i5,2018-19,South Hadley - South Hadley High,02780505, 277, 14.0, 550, 51.1, 48.7, 1.3, 14.6,21.8 +6.755186721991701,5,a-curv-i5,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 482, 13.6, 744, 39.4, 60.6, 13.6, 40.5,43,750 +NA,NA,a-curv-i5,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 464, 17.1, 942, 49.3, 50.6, 14.9, 18.4,18.7 +NA,NA,a-curv-i5,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 413, 14.6, 639, 32.7, 67.3, 0.5, 28.8,23.2 +NA,NA,a-curv-i5,2018-19,Southampton - William E Norris,02750005, 178, 18.2, 500, 49.0, 51.0, 2.0, 21.0,12.6 +NA,NA,a-curv-i5,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 63, 17.2, 258, 47.3, 52.7, 7.0, 11.2,5 +NA,NA,a-curv-i5,2018-19,Southborough - Margaret A Neary,02760020, 60, 19.8, 257, 50.6, 49.4, 3.1, 15.2,6.6 +NA,NA,a-curv-i5,2018-19,Southborough - Mary E Finn School,02760008, 68, 15.8, 338, 47.9, 52.1, 7.7, 24.3,7.4 +NA,NA,a-curv-i5,2018-19,Southborough - P Brent Trottier,02760305, 329, 14.4, 434, 47.9, 52.1, 4.2, 13.8,6 +NA,NA,a-curv-i5,2018-19,Southbridge - Charlton Street,02770005, 156, 16.9, 285, 51.9, 48.1, 22.8, 22.1,68.1 +NA,NA,a-curv-i5,2018-19,Southbridge - Eastford Road,02770010, 90, 17.5, 376, 50.5, 49.5, 10.4, 19.7,70 +NA,NA,a-curv-i5,2018-19,Southbridge - Southbridge Academy,02770525, 61, 6.2, 37, 35.1, 64.9, 10.8, 75.7,91.9 +6.27085201793722,5,a-curv-i5,2018-19,Southbridge - Southbridge High School,02770515, 223, 18.7, 503, 48.1, 51.9, 20.5, 19.5,66.6,482 +NA,NA,a-curv-i5,2018-19,Southbridge - Southbridge Middle School,02770315, 479, 20.8, 504, 46.6, 53.4, 20.0, 17.1,66.3 +NA,NA,a-curv-i5,2018-19,Southbridge - West Street,02770020, 187, 17.0, 325, 49.5, 50.5, 25.2, 20.6,70.2 +NA,NA,a-curv-i5,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 676, 16.3," 1,431", 49.5, 50.5, 1.0, 12.7,33 +NA,NA,a-curv-i5,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 239, 11.5, 301, 54.2, 45.9, 1.7, 22.3,29.9 +NA,NA,a-curv-i5,2018-19,Southern Berkshire - New Marlborough Central,07650018, 77, 10.7, 76, 54.0, 46.1, 0.0, 6.6,26.3 +NA,NA,a-curv-i5,2018-19,Southern Berkshire - South Egremont,07650030, 18, 7.4, 14, 64.3, 35.7, 0.0, 0.0,28.6 +NA,NA,a-curv-i5,2018-19,Southern Berkshire - Undermountain,07650035, 180, 18.3, 299, 43.1, 56.9, 2.3, 20.4,35.8 +7.086060606060606,5,a-curv-i5,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 990, 13.7," 1,127", 41.5, 58.5, 0.6, 14.1,22.7,1131 +NA,NA,a-curv-i5,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 197, 21.2, 465, 49.9, 50.1, 4.1, 16.3,27.5 +NA,NA,a-curv-i5,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 424, 13.5, 713, 49.2, 50.8, 1.3, 16.1,17.5 +NA,NA,a-curv-i5,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 152, 17.4, 351, 44.4, 55.6, 6.0, 19.9,28.2 +NA,NA,a-curv-i5,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 262, 14.5, 286, 45.1, 54.9, 1.4, 17.8,33.6 +NA,NA,a-curv-i5,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 18.9, 258, 45.4, 54.7, 3.1, 28.7,31.8 +NA,NA,a-curv-i5,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 184, 18.2, 454, 44.5, 55.5, 2.9, 20.9,37.7 +NA,NA,a-curv-i5,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 92, 19.2, 441, 47.9, 51.9, 5.9, 23.6,39.7 +NA,NA,a-curv-i5,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 246, 17.8, 440, 53.4, 46.6, 4.1, 8.9,33.6 +NA,NA,a-curv-i5,2018-19,Springfield - Alice B Beal Elementary,02810175, 174, 17.2, 244, 51.2, 48.8, 14.8, 12.3,70.1 +NA,NA,a-curv-i5,2018-19,Springfield - Arthur T Talmadge,02810165, 182, 17.2, 240, 48.3, 51.7, 7.5, 22.9,77.5 +NA,NA,a-curv-i5,2018-19,Springfield - Balliet Middle School,02810360, 44, 8.2, 52, 36.5, 63.5, 15.4, 32.7,92.3 +NA,NA,a-curv-i5,2018-19,Springfield - Brightwood,02810025, 193, 20.5, 339, 49.0, 51.0, 23.9, 23.3,92 +NA,NA,a-curv-i5,2018-19,Springfield - Chestnut Academy,02810365, 173, 16.9, 334, 49.1, 50.9, 25.5, 30.2,89.5 +NA,NA,a-curv-i5,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 216, 15.1, 328, 54.9, 45.1, 7.0, 22.0,67.4 +NA,NA,a-curv-i5,2018-19,Springfield - Conservatory of the Arts,02810475, 215, 11.8, 341, 70.4, 29.6, 11.4, 20.5,79.2 +NA,NA,a-curv-i5,2018-19,Springfield - Daniel B Brunton,02810035, 304, 18.4, 427, 52.9, 47.1, 11.5, 19.0,77.3 +NA,NA,a-curv-i5,2018-19,Springfield - Early Childhood Education Center,02810001, 20, 9.5, 185, 33.0, 67.0, 20.0, 62.7,80 +NA,NA,a-curv-i5,2018-19,Springfield - Edward P. Boland School,02810010, 433, 17.1, 787, 39.6, 60.4, 26.3, 39.3,84.8 +NA,NA,a-curv-i5,2018-19,Springfield - Elias Brookings,02810030, 202, 18.0, 339, 46.6, 53.4, 20.9, 36.6,84.4 +NA,NA,a-curv-i5,2018-19,Springfield - Forest Park Middle,02810325, 410, 16.3, 745, 48.1, 52.0, 20.5, 22.7,80.7 +NA,NA,a-curv-i5,2018-19,Springfield - Frank H Freedman,02810075, 183, 20.3, 304, 48.0, 52.0, 11.8, 20.1,70.4 +NA,NA,a-curv-i5,2018-19,Springfield - Frederick Harris,02810080, 383, 19.3, 639, 47.0, 53.1, 14.6, 24.4,70.4 +NA,NA,a-curv-i5,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2018-19,Springfield - German Gerena Community School,02810195, 456, 17.1, 716, 49.7, 50.3, 21.4, 23.3,81.3 +NA,NA,a-curv-i5,2018-19,Springfield - Glenwood,02810065, 184, 20.3, 290, 47.2, 52.8, 14.1, 20.0,75.5 +NA,NA,a-curv-i5,2018-19,Springfield - Glickman Elementary,02810068, 244, 16.8, 323, 41.8, 58.2, 15.8, 40.3,77.4 +6.824891461649782,5,a-curv-i5,2018-19,Springfield - High School Of Commerce,02810510, 691, 14.0," 1,036", 49.8, 50.2, 24.6, 22.8,79.7,1015 +NA,NA,a-curv-i5,2018-19,Springfield - Hiram L Dorman,02810050, 182, 21.5, 299, 49.2, 50.8, 15.7, 23.1,80.6 +NA,NA,a-curv-i5,2018-19,Springfield - Homer Street,02810085, 243, 19.9, 383, 47.8, 52.2, 14.4, 15.4,84.9 +NA,NA,a-curv-i5,2018-19,Springfield - Impact Prep at Chestnut,02810366, 295, 20.5, 410, 51.7, 48.3, 25.1, 23.9,87.1 +NA,NA,a-curv-i5,2018-19,Springfield - Indian Orchard Elementary,02810100, 358, 20.4, 659, 46.6, 53.4, 16.2, 27.3,80 +NA,NA,a-curv-i5,2018-19,Springfield - John F Kennedy Middle,02810328, 164, 21.0, 498, 44.2, 55.8, 16.3, 27.1,82.9 +NA,NA,a-curv-i5,2018-19,Springfield - John J Duggan Middle,02810320, 594, 14.4, 788, 47.7, 52.3, 10.0, 19.8,69 +NA,NA,a-curv-i5,2018-19,Springfield - Kensington International School,02810110, 184, 19.8, 308, 53.9, 46.1, 23.1, 21.8,88.6 +NA,NA,a-curv-i5,2018-19,Springfield - Liberty,02810115, 168, 22.1, 292, 50.7, 49.3, 22.3, 17.5,73.3 +NA,NA,a-curv-i5,2018-19,Springfield - Liberty Preparatory Academy,02810560, 24, 4.1, 17, 17.7, 82.4, 5.9, 11.8,76.5 +NA,NA,a-curv-i5,2018-19,Springfield - Lincoln,02810120, 228, 23.1, 409, 49.1, 50.9, 29.3, 13.7,89 +NA,NA,a-curv-i5,2018-19,Springfield - M Marcus Kiley Middle,02810330, 390, 17.9, 750, 45.3, 54.7, 17.5, 23.7,81.2 +NA,NA,a-curv-i5,2018-19,Springfield - Margaret C Ells,02810060, 65, 12.2, 263, 39.5, 60.5, 15.6, 57.8,66.9 +NA,NA,a-curv-i5,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 182, 21.0, 345, 50.7, 49.3, 11.3, 20.6,67 +NA,NA,a-curv-i5,2018-19,Springfield - Mary M Lynch,02810140, 165, 21.4, 273, 55.3, 44.7, 5.5, 14.7,78.4 +NA,NA,a-curv-i5,2018-19,Springfield - Mary M Walsh,02810155, 198, 18.8, 298, 52.0, 48.0, 19.5, 21.8,82.9 +NA,NA,a-curv-i5,2018-19,Springfield - Mary O Pottenger,02810145, 230, 23.5, 443, 50.1, 49.9, 13.3, 19.0,70.9 +NA,NA,a-curv-i5,2018-19,Springfield - Milton Bradley School,02810023, 369, 16.4, 535, 47.7, 52.3, 23.0, 29.4,92 +NA,NA,a-curv-i5,2018-19,Springfield - Rebecca M Johnson,02810055, 437, 19.3, 808, 48.4, 51.6, 17.2, 30.6,87 +NA,NA,a-curv-i5,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 74, 21.9, 311, 46.6, 53.4, 19.9, 25.4,78.8 +NA,NA,a-curv-i5,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 946, 13.2," 1,404", 54.7, 45.3, 11.0, 15.7,68.9 +NA,NA,a-curv-i5,2018-19,Springfield - STEM Middle Academy,02810350, 151, 16.7, 297, 41.4, 58.6, 5.1, 14.5,67.3 +NA,NA,a-curv-i5,2018-19,Springfield - Samuel Bowles,02810020, 190, 20.6, 317, 49.2, 50.8, 10.7, 19.6,78.2 +NA,NA,a-curv-i5,2018-19,Springfield - South End Middle School,02810355, 118, 14.5, 231, 52.0, 48.1, 19.9, 18.6,90.9 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield Central High,02810500, 971, 17.4," 2,063", 46.5, 53.5, 13.9, 16.0,65 +6.670503597122303,5,a-curv-i5,2018-19,Springfield - Springfield High School,02810570, 139, 15.5, 260, 47.3, 52.7, 12.7, 29.6,80,231 +6.630434782608695,5,a-curv-i5,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 736, 14.9," 1,262", 42.7, 57.3, 18.8, 23.1,77.4,1260 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 30, 14.0, 28, 57.1, 42.9, 96.4, 0.0,92.9 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 23, 13.5, 48, 22.9, 77.1, 100.0, 2.1,68.8 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 151, 7.2, 73, 13.7, 86.3, 12.3, 100.0,91.8 +7.223529411764706,5,a-curv-i5,2018-19,Springfield - Springfield Public Day High School,02810550, 102, 5.8, 91, 23.1, 76.9, 13.2, 100.0,93.4,99 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield Public Day Middle School,02810345, 68, 5.4, 53, 18.9, 81.1, 5.7, 100.0,94.3 +NA,NA,a-curv-i5,2018-19,Springfield - Springfield Vocational Academy,02810675, 33, 12.6, 91, 40.7, 59.3, 12.1, 100.0,90.1 +NA,NA,a-curv-i5,2018-19,Springfield - Sumner Avenue,02810160, 342, 17.7, 568, 45.3, 54.8, 15.7, 34.2,82.6 +NA,NA,a-curv-i5,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 349, 15.9, 697, 48.1, 51.9, 3.3, 20.5,52.1 +NA,NA,a-curv-i5,2018-19,Springfield - Thomas M Balliet,02810015, 158, 21.2, 328, 46.7, 53.4, 7.9, 24.4,70.1 +NA,NA,a-curv-i5,2018-19,Springfield - Van Sickle Academy,02810485, 151, 12.1, 260, 46.2, 53.9, 17.7, 31.2,79.2 +NA,NA,a-curv-i5,2018-19,Springfield - Warner,02810180, 162, 16.9, 261, 46.4, 53.6, 8.8, 14.9,67.1 +NA,NA,a-curv-i5,2018-19,Springfield - Washington,02810185, 264, 18.7, 443, 48.1, 51.9, 24.6, 25.7,80.4 +NA,NA,a-curv-i5,2018-19,Springfield - White Street,02810190, 228, 24.9, 445, 49.0, 51.0, 19.8, 17.1,85.2 +NA,NA,a-curv-i5,2018-19,Springfield - William N. DeBerry,02810045, 203, 17.7, 267, 43.1, 56.9, 24.0, 32.2,89.5 +NA,NA,a-curv-i5,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 66, 31.4, 267, 48.3, 51.7, 13.1, 19.9,68.5 +NA,NA,a-curv-i5,2018-19,Stoneham - Colonial Park,02840005, 89, 20.9, 273, 42.9, 57.1, 2.9, 27.1,12.1 +NA,NA,a-curv-i5,2018-19,Stoneham - Robin Hood,02840025, 124, 22.7, 400, 49.3, 50.8, 6.8, 25.0,17.5 +NA,NA,a-curv-i5,2018-19,Stoneham - South,02840030, 130, 20.6, 342, 50.3, 49.7, 7.3, 17.8,20.8 +NA,NA,a-curv-i5,2018-19,Stoneham - Stoneham Central Middle School,02840405, 493, 17.1, 729, 49.8, 50.2, 3.0, 19.1,19.3 +NA,NA,a-curv-i5,2018-19,Stoneham - Stoneham High,02840505, 415, 14.9, 681, 51.3, 48.8, 2.5, 15.7,14 +NA,NA,a-curv-i5,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9, 12.7, 106, 45.3, 54.7, 0.0, 45.3,28.3 +NA,NA,a-curv-i5,2018-19,Stoughton - Helen Hansen Elementary,02850010, 143, 13.5, 224, 49.6, 50.5, 4.9, 20.5,28.1 +NA,NA,a-curv-i5,2018-19,Stoughton - Joseph H Gibbons,02850025, 171, 17.8, 351, 47.0, 53.0, 5.1, 16.0,28.2 +NA,NA,a-curv-i5,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 195, 15.1, 345, 46.4, 53.6, 5.2, 17.1,27 +NA,NA,a-curv-i5,2018-19,Stoughton - O'Donnell Middle School,02850405, 502, 19.5, 891, 47.4, 52.6, 6.5, 17.9,28.1 +NA,NA,a-curv-i5,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 149, 19.6, 366, 48.1, 51.9, 27.9, 11.8,50 +NA,NA,a-curv-i5,2018-19,Stoughton - South Elementary,02850015, 129, 16.5, 246, 48.0, 52.0, 4.5, 12.6,22 +NA,NA,a-curv-i5,2018-19,Stoughton - Stoughton High,02850505, 697, 16.5," 1,063", 48.5, 51.5, 5.3, 12.5,26.7 +NA,NA,a-curv-i5,2018-19,Sturbridge - Burgess Elementary,02870005, 232, 19.4, 883, 44.6, 55.4, 1.4, 12.9,14.3 +NA,NA,a-curv-i5,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 524, 14.5, 840, 55.4, 44.5, 0.5, 16.2,11.3 +NA,NA,a-curv-i5,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 593, 19.3, 955, 52.9, 47.1, 0.5, 20.2,4.5 +NA,NA,a-curv-i5,2018-19,Sudbury - General John Nixon Elementary,02880025, 212, 20.3, 343, 46.1, 53.9, 4.1, 16.6,6.7 +NA,NA,a-curv-i5,2018-19,Sudbury - Israel Loring School,02880015, 305, 20.4, 478, 47.9, 52.1, 2.5, 16.3,10.3 +NA,NA,a-curv-i5,2018-19,Sudbury - Josiah Haynes,02880010, 246, 19.1, 362, 44.2, 55.8, 3.9, 16.6,2.8 +NA,NA,a-curv-i5,2018-19,Sudbury - Peter Noyes,02880030, 316, 20.5, 548, 46.9, 53.1, 2.7, 23.4,3.3 +NA,NA,a-curv-i5,2018-19,Sunderland - Sunderland Elementary,02890005, 178, 16.2, 230, 45.2, 54.8, 8.7, 21.7,33 +NA,NA,a-curv-i5,2018-19,Sutton - Sutton Early Learning,02900003, 59, 22.9, 310, 48.4, 51.6, 2.6, 23.9,9.7 +NA,NA,a-curv-i5,2018-19,Sutton - Sutton Elementary,02900005, 117, 21.5, 317, 48.6, 51.4, 1.0, 23.3,10.1 +6.245454545454545,5,a-curv-i5,2018-19,Sutton - Sutton High School,02900510, 176, 15.5, 388, 51.0, 49.0, 0.8, 8.5,7.5,386 +NA,NA,a-curv-i5,2018-19,Sutton - Sutton Middle School,02900305, 146, 23.2, 371, 48.8, 51.2, 0.5, 16.4,10.8 +NA,NA,a-curv-i5,2018-19,Swampscott - Clarke,02910005, 86, 19.9, 214, 48.1, 51.9, 17.8, 17.3,22 +NA,NA,a-curv-i5,2018-19,Swampscott - Hadley,02910010, 120, 21.6, 325, 45.5, 54.5, 9.5, 15.1,16.9 +NA,NA,a-curv-i5,2018-19,Swampscott - Stanley,02910020, 100, 19.0, 238, 43.3, 56.7, 4.2, 18.1,3.4 +NA,NA,a-curv-i5,2018-19,Swampscott - Swampscott High,02910505, 426, 14.5, 714, 53.5, 46.5, 1.7, 14.2,16 +NA,NA,a-curv-i5,2018-19,Swampscott - Swampscott Middle,02910305, 497, 18.0, 745, 47.3, 52.8, 4.7, 21.2,16.2 +NA,NA,a-curv-i5,2018-19,Swansea - Elizabeth S Brown,02920006, 125, 22.1, 276, 54.0, 46.0, 1.1, 11.2,17.4 +NA,NA,a-curv-i5,2018-19,Swansea - Gardner,02920015, 116, 22.4, 264, 47.7, 52.3, 0.4, 9.5,25.8 +NA,NA,a-curv-i5,2018-19,Swansea - Joseph Case High,02920505, 271, 14.0, 534, 47.9, 52.1, 0.4, 11.2,16.9 +NA,NA,a-curv-i5,2018-19,Swansea - Joseph Case Jr High,02920305, 271, 17.5, 551, 47.4, 52.6, 0.2, 11.1,23.1 +NA,NA,a-curv-i5,2018-19,Swansea - Joseph G Luther,02920020, 103, 19.7, 204, 52.9, 47.1, 0.0, 17.2,15.7 +NA,NA,a-curv-i5,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 115, 17.6, 265, 49.1, 50.9, 0.0, 19.6,17.7 +NA,NA,a-curv-i5,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 508, 46.1," 2,469", 59.1, 40.9, 1.7, 19.2,43.9 +NA,NA,a-curv-i5,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 386, 19.5, 600, 47.5, 52.5, 0.7, 11.5,21.2 +NA,NA,a-curv-i5,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 785, 12.8," 1,197", 50.7, 49.2, 0.3, 8.0,19 +NA,NA,a-curv-i5,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 76, 10.0, 467, 41.8, 58.2, 0.0, 13.3,24.8 +NA,NA,a-curv-i5,2018-19,Taunton - Benjamin Friedman Middle,02930315, 366, 22.9, 807, 48.7, 51.3, 1.9, 18.7,41.9 +NA,NA,a-curv-i5,2018-19,Taunton - East Taunton Elementary,02930010, 281, 17.2, 620, 52.1, 47.9, 4.5, 24.0,38.4 +NA,NA,a-curv-i5,2018-19,Taunton - Edmund Hatch Bennett,02930007, 117, 20.9, 313, 49.5, 50.5, 4.5, 16.9,33.6 +NA,NA,a-curv-i5,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 19, 19.0, 361, 40.2, 59.8, 8.3, 53.5,47.7 +NA,NA,a-curv-i5,2018-19,Taunton - Elizabeth Pole,02930027, 251, 18.0, 576, 47.6, 52.4, 12.0, 19.8,57.1 +NA,NA,a-curv-i5,2018-19,Taunton - H H Galligan,02930057, 101, 19.7, 255, 47.8, 52.2, 17.7, 20.8,67.5 +NA,NA,a-curv-i5,2018-19,Taunton - Hopewell,02930035, 117, 18.9, 282, 55.7, 44.3, 5.7, 20.6,62.4 +NA,NA,a-curv-i5,2018-19,Taunton - John F Parker Middle,02930305, 210, 24.4, 526, 53.0, 47.0, 9.7, 22.1,56.1 +NA,NA,a-curv-i5,2018-19,Taunton - Joseph C Chamberlain,02930008, 219, 18.0, 504, 46.8, 53.2, 1.8, 23.6,36.1 +NA,NA,a-curv-i5,2018-19,Taunton - Joseph H Martin,02930042, 357, 21.7, 716, 45.4, 54.6, 2.4, 18.0,41.3 +NA,NA,a-curv-i5,2018-19,Taunton - Mulcahey Elementary School,02930015, 196, 19.5, 522, 49.0, 51.0, 10.2, 18.8,51.7 +7.3536,5,a-curv-i5,2018-19,Taunton - Taunton Alternative High School,02930525, 125, 9.1, 150, 35.3, 64.7, 1.3, 31.3,64.7,101 +NA,NA,a-curv-i5,2018-19,Taunton - Taunton High,02930505, 985, 20.5," 2,648", 50.1, 49.9, 4.3, 14.8,38.4 +NA,NA,a-curv-i5,2018-19,Tewksbury - Heath-Brook,02950010, 113, 20.6, 351, 53.0, 47.0, 2.9, 14.3,13.7 +NA,NA,a-curv-i5,2018-19,Tewksbury - John F. Ryan,02950023, 278, 20.2, 514, 50.4, 49.6, 1.4, 17.1,13.4 +NA,NA,a-curv-i5,2018-19,Tewksbury - John W. Wynn Middle,02950305, 264, 19.9, 557, 46.1, 53.9, 0.9, 19.9,15.3 +NA,NA,a-curv-i5,2018-19,Tewksbury - L F Dewing,02950001, 153, 18.2, 615, 47.3, 52.7, 2.9, 24.1,15.8 +NA,NA,a-curv-i5,2018-19,Tewksbury - Louise Davy Trahan,02950025, 108, 17.1, 205, 54.2, 45.9, 1.0, 15.1,16.1 +NA,NA,a-curv-i5,2018-19,Tewksbury - North Street,02950020, 120, 21.3, 285, 48.1, 51.9, 3.2, 19.7,19.3 +NA,NA,a-curv-i5,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 418, 20.3, 929, 50.7, 49.2, 1.1, 12.6,13.9 +NA,NA,a-curv-i5,2018-19,Tisbury - Tisbury Elementary,02960005, 212, 13.1, 312, 46.8, 53.2, 22.8, 14.4,31.7 +NA,NA,a-curv-i5,2018-19,Topsfield - Proctor Elementary,02980005, 81, 19.4, 267, 53.2, 46.8, 0.0, 18.0,4.1 +NA,NA,a-curv-i5,2018-19,Topsfield - Steward Elementary,02980010, 109, 16.1, 381, 48.0, 52.0, 0.5, 17.1,3.7 +NA,NA,a-curv-i5,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 608, 16.7," 1,011", 41.3, 58.6, 0.1, 28.5,18.2 +NA,NA,a-curv-i5,2018-19,Triton - Newbury Elementary,07730020, 202, 18.2, 409, 46.5, 53.6, 1.2, 19.1,13.2 +NA,NA,a-curv-i5,2018-19,Triton - Pine Grove,07730025, 199, 19.9, 426, 48.6, 51.4, 0.9, 17.4,13.4 +NA,NA,a-curv-i5,2018-19,Triton - Salisbury Elementary,07730015, 245, 20.0, 511, 47.6, 52.5, 0.8, 13.7,37 +6.339024390243902,5,a-curv-i5,2018-19,Triton - Triton Regional High School,07730505, 328, 14.6, 670, 50.5, 49.6, 1.6, 13.1,17.5,681 +NA,NA,a-curv-i5,2018-19,Triton - Triton Regional Middle School,07730405, 218, 19.2, 388, 49.2, 50.8, 0.5, 18.0,19.3 +NA,NA,a-curv-i5,2018-19,Truro - Truro Central,03000005, 78, 13.0, 110, 50.9, 49.1, 0.9, 17.3,30.9 +NA,NA,a-curv-i5,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 357, 22.1, 810, 47.0, 53.0, 3.7, 19.3,14.3 +7.0041666666666655,5,a-curv-i5,2018-19,Tyngsborough - Tyngsborough High School,03010505, 384, 15.8, 484, 52.5, 47.5, 0.4, 9.7,8.7,478 +NA,NA,a-curv-i5,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 251, 15.8, 369, 47.2, 52.9, 1.6, 18.7,11.9 +NA,NA,a-curv-i5,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 144, 22.8, 491, 46.8, 53.2, 26.3, 19.4,65.6 +NA,NA,a-curv-i5,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 208, 21.9, 717, 49.1, 50.9, 31.8, 16.7,60.5 +NA,NA,a-curv-i5,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 19, 13.8, 57, 49.1, 50.9, 1.8, 12.3,14 +NA,NA,a-curv-i5,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 154, 18.3, 354, 46.3, 53.7, 7.3, 22.9,21.8 +NA,NA,a-curv-i5,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 332, 15.1, 697, 35.6, 64.4, 0.0, 21.2,23.8 +NA,NA,a-curv-i5,2018-19,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2018-19,Uxbridge - Taft Early Learning Center,03040005, 155, 19.1, 578, 46.5, 53.5, 3.5, 22.7,21.5 +NA,NA,a-curv-i5,2018-19,Uxbridge - Uxbridge High,03040505, 327, 15.1, 588, 44.6, 55.4, 1.4, 15.8,16.7 +NA,NA,a-curv-i5,2018-19,Uxbridge - Whitin Intermediate,03040405, 178, 21.4, 534, 46.3, 53.8, 0.6, 14.8,19.1 +NA,NA,a-curv-i5,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 101, 26.7, 346, 53.5, 46.5, 3.5, 22.8,70.5 +NA,NA,a-curv-i5,2018-19,Wachusett - Central Tree Middle,07750310, 203, 17.2, 386, 51.0, 49.0, 0.3, 17.1,9.3 +NA,NA,a-curv-i5,2018-19,Wachusett - Chocksett Middle School,07750315, 183, 17.9, 361, 49.0, 51.0, 0.6, 18.0,11.9 +NA,NA,a-curv-i5,2018-19,Wachusett - Davis Hill Elementary,07750018, 172, 18.8, 457, 49.0, 51.0, 2.2, 12.9,11.2 +NA,NA,a-curv-i5,2018-19,Wachusett - Dawson,07750020, 196, 17.4, 480, 49.8, 50.2, 5.2, 12.7,10.2 +NA,NA,a-curv-i5,2018-19,Wachusett - Early Childhood Center,07750001, 8, 22.5, 180, 38.3, 61.7, 1.7, 52.2,18.9 +NA,NA,a-curv-i5,2018-19,Wachusett - Glenwood Elementary School,07750060, 149, 19.5, 354, 50.6, 49.4, 2.0, 15.5,16.4 +NA,NA,a-curv-i5,2018-19,Wachusett - Houghton Elementary,07750027, 151, 17.0, 360, 47.2, 52.8, 1.1, 20.3,10 +NA,NA,a-curv-i5,2018-19,Wachusett - Leroy E.Mayo,07750032, 184, 19.2, 490, 47.6, 52.5, 3.5, 11.4,9.6 +NA,NA,a-curv-i5,2018-19,Wachusett - Mountview Middle,07750305, 348, 21.8, 825, 50.4, 49.6, 0.7, 13.0,9 +NA,NA,a-curv-i5,2018-19,Wachusett - Naquag Elementary School,07750005, 129, 17.9, 317, 51.1, 48.9, 2.8, 15.1,12 +NA,NA,a-curv-i5,2018-19,Wachusett - Paxton Center,07750040, 193, 18.6, 461, 47.7, 52.3, 3.9, 14.3,11.1 +NA,NA,a-curv-i5,2018-19,Wachusett - Thomas Prince,07750045, 177, 17.9, 384, 50.3, 49.7, 0.0, 13.5,6.3 +NA,NA,a-curv-i5,2018-19,Wachusett - Wachusett Regional High,07750505," 1,164", 16.6," 2,106", 51.5, 48.5, 0.1, 15.0,9.2 +NA,NA,a-curv-i5,2018-19,Wakefield - Dolbeare,03050005, 105, 22.1, 463, 48.2, 51.8, 3.9, 15.3,10.8 +NA,NA,a-curv-i5,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 12, 12.2, 146, 40.4, 59.6, 4.1, 27.4,16.4 +NA,NA,a-curv-i5,2018-19,Wakefield - Galvin Middle School,03050310, 517, 20.9," 1,044", 48.9, 51.2, 1.2, 21.7,14.6 +NA,NA,a-curv-i5,2018-19,Wakefield - Greenwood,03050020, 50, 22.3, 223, 47.1, 52.9, 2.2, 12.6,5.4 +NA,NA,a-curv-i5,2018-19,Wakefield - Wakefield Memorial High,03050505, 561, 14.4," 1,003", 53.0, 47.0, 1.5, 14.6,13.1 +NA,NA,a-curv-i5,2018-19,Wakefield - Walton,03050040, 50, 22.9, 229, 44.1, 55.9, 3.5, 14.9,7 +NA,NA,a-curv-i5,2018-19,Wakefield - Woodville School,03050015, 101, 20.0, 400, 48.8, 51.0, 5.0, 16.0,20.3 +NA,NA,a-curv-i5,2018-19,Wales - Wales Elementary,03060005, 39, 19.8, 150, 46.0, 54.0, 0.0, 22.0,34 +NA,NA,a-curv-i5,2018-19,Walpole - Bird Middle,03070305, 282, 19.0, 458, 49.8, 50.2, 2.6, 14.9,12.2 +NA,NA,a-curv-i5,2018-19,Walpole - Boyden,03070010, 120, 18.1, 353, 51.3, 48.7, 6.5, 15.9,13.9 +NA,NA,a-curv-i5,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 7, 11.0, 77, 42.9, 57.1, 15.6, 37.7,10.4 +NA,NA,a-curv-i5,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 244, 21.0, 444, 48.7, 51.4, 1.6, 11.7,12.8 +NA,NA,a-curv-i5,2018-19,Walpole - Elm Street School,03070005, 129, 20.2, 424, 49.5, 50.5, 6.4, 13.9,9.4 +NA,NA,a-curv-i5,2018-19,Walpole - Fisher,03070015, 144, 19.8, 461, 45.8, 54.2, 4.3, 15.6,8.7 +NA,NA,a-curv-i5,2018-19,Walpole - Old Post Road,03070018, 136, 20.4, 449, 51.2, 48.8, 4.2, 6.9,12.5 +NA,NA,a-curv-i5,2018-19,Walpole - Walpole High,03070505, 509, 18.0," 1,140", 51.1, 48.9, 1.8, 11.8,9.8 +NA,NA,a-curv-i5,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 278, 16.6, 447, 43.9, 56.2, 8.1, 11.6,14.3 +NA,NA,a-curv-i5,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 260, 18.0, 437, 47.6, 52.4, 58.8, 9.8,54.9 +NA,NA,a-curv-i5,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 262, 16.4, 413, 48.2, 51.8, 23.2, 11.1,26.2 +NA,NA,a-curv-i5,2018-19,Waltham - John F Kennedy Middle,03080404, 366, 15.4, 551, 44.7, 55.4, 15.4, 19.2,34.5 +NA,NA,a-curv-i5,2018-19,Waltham - John W. McDevitt Middle School,03080415, 434, 16.2, 687, 52.6, 47.5, 14.3, 21.4,33.2 +NA,NA,a-curv-i5,2018-19,Waltham - Northeast Elementary School,03080040, 303, 17.2, 574, 47.9, 52.1, 26.3, 16.0,35.9 +NA,NA,a-curv-i5,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 260, 16.7, 413, 49.4, 50.6, 32.5, 14.0,38.7 +NA,NA,a-curv-i5,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 60, 18.8, 113, 40.7, 59.3, 55.8, 6.2,36.3 +NA,NA,a-curv-i5,2018-19,Waltham - Waltham Sr High,03080505, 851, 15.4," 1,604", 47.0, 53.0, 19.9, 12.5,35.1 +NA,NA,a-curv-i5,2018-19,Waltham - William F. Stanley Elementary School,03080005, 301, 12.9, 453, 44.4, 55.6, 26.7, 23.4,32.2 +NA,NA,a-curv-i5,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 76, 17.7, 390, 48.0, 52.1, 2.3, 20.8,56.4 +6.195260663507109,5,a-curv-i5,2018-19,Ware - Ware Junior/Senior High School,03090505, 211, 17.4, 484, 50.4, 49.6, 0.8, 19.6,44.6,476 +NA,NA,a-curv-i5,2018-19,Ware - Ware Middle School,03090305, 105, 23.8, 316, 48.7, 51.3, 0.6, 15.8,47.8 +NA,NA,a-curv-i5,2018-19,Wareham - John William Decas,03100003, 339, 15.7, 625, 50.1, 49.9, 2.4, 26.9,56.8 +NA,NA,a-curv-i5,2018-19,Wareham - Minot Forest,03100017, 186, 17.5, 359, 45.4, 54.6, 0.8, 25.9,50.7 +NA,NA,a-curv-i5,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 32, 4.7, 46, 54.4, 45.7, 0.0, 32.6,63 +NA,NA,a-curv-i5,2018-19,Wareham - Wareham Middle,03100305, 264, 17.3, 541, 49.0, 50.8, 1.1, 24.6,51.9 +NA,NA,a-curv-i5,2018-19,Wareham - Wareham Senior High,03100505, 488, 13.0, 610, 48.9, 51.0, 0.7, 25.1,43.4 +NA,NA,a-curv-i5,2018-19,Watertown - Cunniff,03140015, 150, 19.7, 328, 47.9, 52.1, 12.8, 22.3,24.7 +NA,NA,a-curv-i5,2018-19,Watertown - Hosmer,03140020, 291, 18.1, 674, 48.1, 51.9, 16.2, 20.5,22.9 +NA,NA,a-curv-i5,2018-19,Watertown - James Russell Lowell,03140025, 199, 19.6, 423, 49.2, 50.8, 13.7, 15.6,27 +NA,NA,a-curv-i5,2018-19,Watertown - Watertown High,03140505, 415, 13.4, 674, 47.6, 52.4, 7.7, 17.8,28.8 +NA,NA,a-curv-i5,2018-19,Watertown - Watertown Middle,03140305, 401, 17.0, 579, 48.7, 51.3, 7.9, 19.3,26.8 +NA,NA,a-curv-i5,2018-19,Wayland - Claypit Hill School,03150005, 214, 21.0, 546, 50.7, 49.3, 6.2, 17.0,5.1 +NA,NA,a-curv-i5,2018-19,Wayland - Happy Hollow School,03150015, 150, 20.9, 377, 48.8, 51.2, 5.6, 16.2,5.8 +NA,NA,a-curv-i5,2018-19,Wayland - Loker School,03150020, 108, 21.2, 276, 48.2, 51.8, 11.2, 10.5,2.9 +6.373076923076923,5,a-curv-i5,2018-19,Wayland - Wayland High School,03150505, 416, 15.2, 846, 48.5, 51.5, 1.2, 22.1,4.6,846 +NA,NA,a-curv-i5,2018-19,Wayland - Wayland Middle School,03150305, 460, 15.3, 666, 51.7, 48.4, 1.7, 19.2,6.8 +6.46694560669456,5,a-curv-i5,2018-19,Webster - Bartlett High School,03160505, 239, 15.8, 471, 48.8, 51.0, 5.7, 15.3,44.6,458 +NA,NA,a-curv-i5,2018-19,Webster - Park Avenue Elementary,03160015, 256, 20.9, 833, 46.9, 53.1, 14.2, 23.9,59.8 +NA,NA,a-curv-i5,2018-19,Webster - Webster Middle School,03160315, 256, 17.9, 585, 52.3, 47.7, 6.5, 20.2,54.5 +NA,NA,a-curv-i5,2018-19,Wellesley - Ernest F Upham,03170050, 53, 20.8, 230, 47.0, 53.0, 0.0, 25.7,3.5 +NA,NA,a-curv-i5,2018-19,Wellesley - Hunnewell,03170025, 58, 21.8, 262, 49.6, 50.4, 0.8, 16.8,3.4 +NA,NA,a-curv-i5,2018-19,Wellesley - John D Hardy,03170020, 72, 20.3, 288, 50.0, 50.0, 8.0, 12.9,3.5 +NA,NA,a-curv-i5,2018-19,Wellesley - Joseph E Fiske,03170015, 79, 17.9, 292, 52.4, 47.6, 9.6, 13.0,8.2 +NA,NA,a-curv-i5,2018-19,Wellesley - Katharine Lee Bates,03170005, 87, 19.6, 356, 53.9, 46.1, 0.3, 10.1,1.7 +NA,NA,a-curv-i5,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 12, 11.9, 116, 41.4, 58.6, 0.0, 49.1,7.8 +NA,NA,a-curv-i5,2018-19,Wellesley - Schofield,03170045, 88, 20.8, 379, 53.6, 46.4, 2.9, 12.4,7.1 +NA,NA,a-curv-i5,2018-19,Wellesley - Sprague Elementary School,03170048, 92, 20.3, 371, 51.2, 48.8, 5.1, 18.1,7 +NA,NA,a-curv-i5,2018-19,Wellesley - Wellesley Middle,03170305, 753, 16.9," 1,158", 50.6, 49.3, 1.3, 15.2,4.8 +NA,NA,a-curv-i5,2018-19,Wellesley - Wellesley Sr High,03170505, 696, 16.6," 1,530", 51.2, 48.8, 1.3, 15.7,5.4 +NA,NA,a-curv-i5,2018-19,Wellfleet - Wellfleet Elementary,03180005, 70, 13.6, 107, 46.7, 53.3, 0.9, 20.6,30.8 +NA,NA,a-curv-i5,2018-19,West Boylston - Major Edwards Elementary,03220005, 198, 19.5, 412, 47.1, 52.9, 4.6, 19.4,23.3 +NA,NA,a-curv-i5,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 360, 13.3, 488, 54.9, 45.1, 1.2, 12.5,18.2 +NA,NA,a-curv-i5,2018-19,West Bridgewater - Howard School,03230305, 139, 21.1, 291, 54.0, 46.1, 1.0, 13.8,18.6 +NA,NA,a-curv-i5,2018-19,West Bridgewater - Rose L Macdonald,03230003, 164, 22.0, 266, 50.0, 50.0, 3.8, 7.9,14.7 +NA,NA,a-curv-i5,2018-19,West Bridgewater - Spring Street School,03230005, 70, 22.3, 182, 47.8, 52.2, 1.1, 16.5,14.8 +NA,NA,a-curv-i5,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 448, 17.3, 636, 51.1, 48.9, 1.4, 6.3,14.5 +NA,NA,a-curv-i5,2018-19,West Springfield - Cowing Early Childhood,03320001, 11, 13.3, 145, 37.9, 62.1, 27.6, 51.7,59.3 +NA,NA,a-curv-i5,2018-19,West Springfield - John Ashley,03320005, 48, 21.0, 252, 52.4, 47.6, 5.2, 17.1,44.4 +NA,NA,a-curv-i5,2018-19,West Springfield - John R Fausey,03320010, 133, 17.3, 452, 49.3, 50.7, 3.1, 18.8,31.2 +NA,NA,a-curv-i5,2018-19,West Springfield - Memorial,03320025, 57, 18.9, 210, 49.1, 51.0, 5.2, 16.2,65.7 +NA,NA,a-curv-i5,2018-19,West Springfield - Mittineague,03320030, 52, 16.6, 169, 56.2, 43.8, 0.6, 16.6,36.7 +NA,NA,a-curv-i5,2018-19,West Springfield - Philip G Coburn,03320007, 139, 18.0, 498, 52.6, 47.4, 45.8, 14.1,70.1 +NA,NA,a-curv-i5,2018-19,West Springfield - Tatham,03320040, 68, 19.0, 259, 49.8, 50.2, 2.7, 12.7,31.7 +NA,NA,a-curv-i5,2018-19,West Springfield - West Springfield High,03320505, 691, 15.9," 1,226", 48.5, 51.5, 8.4, 18.4,40.1 +NA,NA,a-curv-i5,2018-19,West Springfield - West Springfield Middle,03320305, 590, 18.1, 934, 46.0, 54.0, 6.4, 18.4,43.4 +NA,NA,a-curv-i5,2018-19,Westborough - Annie E Fales,03210010, 123, 19.1, 361, 53.5, 46.5, 12.2, 17.2,5.5 +NA,NA,a-curv-i5,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 126, 18.5, 509, 47.4, 52.7, 31.2, 24.0,12 +NA,NA,a-curv-i5,2018-19,Westborough - J Harding Armstrong,03210005, 129, 19.4, 421, 45.6, 54.4, 21.6, 14.7,8.8 +NA,NA,a-curv-i5,2018-19,Westborough - Mill Pond School,03210045, 390, 23.3, 913, 50.9, 49.1, 7.2, 17.9,10.1 +NA,NA,a-curv-i5,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 556, 14.6, 603, 49.1, 50.9, 5.0, 16.3,7.8 +NA,NA,a-curv-i5,2018-19,Westborough - Westborough High,03210505, 729, 15.0," 1,171", 49.6, 50.3, 3.8, 8.7,8.5 +NA,NA,a-curv-i5,2018-19,Westfield - Abner Gibbs,03250020, 101, 21.8, 219, 49.8, 50.2, 2.7, 11.0,54.3 +NA,NA,a-curv-i5,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 19, 11.2, 211, 49.8, 50.2, 2.4, 49.3,46 +NA,NA,a-curv-i5,2018-19,Westfield - Franklin Ave,03250015, 101, 21.0, 211, 52.6, 47.4, 4.7, 15.2,67.3 +NA,NA,a-curv-i5,2018-19,Westfield - Highland,03250025, 167, 21.3, 346, 51.2, 48.8, 21.1, 12.7,41.6 +NA,NA,a-curv-i5,2018-19,Westfield - Munger Hill,03250033, 213, 17.7, 369, 48.8, 51.2, 16.0, 19.8,30.4 +NA,NA,a-curv-i5,2018-19,Westfield - Paper Mill,03250036, 186, 17.6, 325, 46.2, 53.9, 4.9, 15.4,45.9 +NA,NA,a-curv-i5,2018-19,Westfield - Southampton Road,03250040, 151, 22.2, 333, 46.3, 53.8, 3.3, 12.6,34.8 +NA,NA,a-curv-i5,2018-19,Westfield - Westfield High,03250505, 689, 14.9," 1,214", 52.6, 47.2, 4.3, 17.1,27.9 +NA,NA,a-curv-i5,2018-19,Westfield - Westfield Intermediate School,03250075, 462, 17.7, 824, 49.3, 50.7, 5.5, 21.0,40.8 +NA,NA,a-curv-i5,2018-19,Westfield - Westfield Middle School,03250310, 491, 15.9, 808, 50.6, 49.4, 4.7, 20.2,36.6 +NA,NA,a-curv-i5,2018-19,Westfield - Westfield Technical Academy,03250605, 283, 13.5, 521, 36.9, 63.2, 1.0, 29.8,32.3 +NA,NA,a-curv-i5,2018-19,Westford - Abbot Elementary,03260004, 150, 19.3, 386, 54.9, 45.1, 0.8, 13.5,6.7 +NA,NA,a-curv-i5,2018-19,Westford - Blanchard Middle,03260310, 380, 15.7, 559, 47.6, 52.4, 1.4, 16.8,5.2 +NA,NA,a-curv-i5,2018-19,Westford - Col John Robinson,03260025, 103, 20.4, 307, 49.2, 50.8, 5.5, 9.8,8.1 +NA,NA,a-curv-i5,2018-19,Westford - Day Elementary,03260007, 142, 18.9, 358, 51.7, 48.3, 3.4, 13.1,6.2 +NA,NA,a-curv-i5,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 153, 17.7, 353, 51.8, 48.2, 0.9, 17.6,4.3 +NA,NA,a-curv-i5,2018-19,Westford - Millennium Elementary,03260013, 14, 13.4, 139, 42.5, 57.6, 0.0, 53.2,12.2 +NA,NA,a-curv-i5,2018-19,Westford - Nabnasset,03260015, 140, 15.9, 318, 47.5, 52.5, 2.2, 15.4,6.3 +NA,NA,a-curv-i5,2018-19,Westford - Rita E. Miller Elementary School,03260055, 119, 17.9, 305, 46.9, 53.1, 7.2, 18.4,5.9 +NA,NA,a-curv-i5,2018-19,Westford - Stony Brook School,03260330, 380, 18.1, 668, 47.0, 53.0, 0.5, 15.1,4.3 +NA,NA,a-curv-i5,2018-19,Westford - Westford Academy,03260505, 718, 19.4," 1,703", 47.9, 52.1, 0.5, 11.2,4.1 +NA,NA,a-curv-i5,2018-19,Westhampton - Westhampton Elementary School,03270005, 58, 16.4, 126, 46.0, 54.0, 0.8, 23.0,15.1 +NA,NA,a-curv-i5,2018-19,Weston - Country,03300010, 80, 19.4, 317, 53.6, 46.4, 5.4, 14.8,5.4 +NA,NA,a-curv-i5,2018-19,Weston - Field Elementary School,03300012, 105, 16.1, 299, 50.8, 49.2, 3.7, 15.1,5.4 +NA,NA,a-curv-i5,2018-19,Weston - Weston High,03300505, 555, 13.9, 708, 50.3, 49.7, 2.4, 17.8,4.7 +NA,NA,a-curv-i5,2018-19,Weston - Weston Middle,03300305, 321, 17.8, 497, 44.3, 55.7, 2.2, 21.1,4.8 +NA,NA,a-curv-i5,2018-19,Weston - Woodland,03300015, 75, 18.8, 287, 48.1, 51.9, 4.5, 17.1,4.5 +NA,NA,a-curv-i5,2018-19,Westport - Alice A Macomber,03310015, 135, 16.7, 372, 48.9, 51.1, 1.6, 24.5,26.3 +NA,NA,a-curv-i5,2018-19,Westport - Westport Elementary,03310030, 240, 18.6, 471, 42.9, 57.1, 1.5, 18.3,25.3 +6.695081967213115,5,a-curv-i5,2018-19,Westport - Westport Junior/Senior High School,03310515, 366, 15.0, 601, 45.6, 54.4, 0.2, 13.8,22.8,597 +NA,NA,a-curv-i5,2018-19,Westwood - Deerfield School,03350010, 73, 18.3, 184, 45.1, 54.9, 3.8, 18.5,4.4 +NA,NA,a-curv-i5,2018-19,Westwood - Downey,03350012, 101, 20.5, 287, 42.5, 57.5, 2.1, 23.3,7.3 +NA,NA,a-curv-i5,2018-19,Westwood - E W Thurston Middle,03350305, 428, 19.4, 751, 47.7, 52.3, 0.5, 19.3,7.1 +NA,NA,a-curv-i5,2018-19,Westwood - Martha Jones,03350017, 116, 17.9, 286, 52.5, 47.6, 1.8, 12.6,2.8 +NA,NA,a-curv-i5,2018-19,Westwood - Paul Hanlon,03350015, 94, 17.7, 229, 48.0, 52.0, 1.3, 17.5,5.7 +NA,NA,a-curv-i5,2018-19,Westwood - Westwood High,03350505, 546, 15.4," 1,019", 53.6, 46.3, 0.2, 14.0,4.5 +NA,NA,a-curv-i5,2018-19,Westwood - Westwood Integrated Preschool,03350050, 3, 17.0, 51, 29.4, 70.6, 0.0, 54.9,5.9 +NA,NA,a-curv-i5,2018-19,Westwood - William E Sheehan,03350025, 123, 18.9, 319, 48.9, 51.1, 0.3, 19.4,3.5 +NA,NA,a-curv-i5,2018-19,Weymouth - Abigail Adams Middle School,03360310, 648, 21.1, 911, 49.0, 51.0, 3.3, 21.2,30.2 +NA,NA,a-curv-i5,2018-19,Weymouth - Academy Avenue,03360005, 66, 20.6, 305, 49.5, 50.5, 13.1, 13.1,29.8 +NA,NA,a-curv-i5,2018-19,Weymouth - Frederick C Murphy,03360050, 46, 21.6, 219, 46.6, 53.4, 0.0, 26.5,29.2 +NA,NA,a-curv-i5,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 19, 12.1, 228, 41.7, 58.3, 0.0, 56.6,29.8 +NA,NA,a-curv-i5,2018-19,Weymouth - Lawrence W Pingree,03360065, 44, 17.8, 192, 56.8, 43.2, 0.0, 20.8,30.2 +NA,NA,a-curv-i5,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 427, 18.2, 898, 49.1, 50.9, 3.0, 19.0,31.3 +NA,NA,a-curv-i5,2018-19,Weymouth - Ralph Talbot,03360085, 55, 19.4, 250, 47.2, 52.8, 13.6, 15.6,30 +NA,NA,a-curv-i5,2018-19,Weymouth - Thomas V Nash,03360060, 51, 15.3, 174, 56.3, 43.7, 0.6, 20.1,27 +NA,NA,a-curv-i5,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 65, 20.9, 310, 49.7, 50.3, 10.0, 16.8,21.3 +NA,NA,a-curv-i5,2018-19,Weymouth - Wessagusset,03360110, 74, 16.0, 278, 45.7, 54.3, 0.0, 20.1,26.6 +6.381758957654723,5,a-curv-i5,2018-19,Weymouth - Weymouth High School,03360505, 921, 15.6," 1,882", 48.6, 51.2, 2.4, 15.6,24.6,1863 +NA,NA,a-curv-i5,2018-19,Weymouth - William Seach,03360080, 66, 21.9, 332, 50.6, 49.4, 17.5, 16.0,57.8 +NA,NA,a-curv-i5,2018-19,Whately - Whately Elementary,03370005, 103, 16.1, 133, 50.4, 49.6, 2.3, 15.0,19.6 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 245, 18.3, 482, 45.2, 54.8, 0.0, 21.0,18.9 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - Indian Head,07800035, 169, 20.7, 516, 47.7, 52.3, 0.6, 13.0,15.5 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - John H Duval,07800030, 141, 21.7, 452, 48.2, 51.8, 1.8, 14.2,26.8 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - Louise A Conley,07800010, 169, 21.5, 533, 47.5, 52.5, 1.9, 12.0,19.7 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 496, 19.7," 1,286", 50.5, 49.5, 0.9, 16.9,17.7 +NA,NA,a-curv-i5,2018-19,Whitman-Hanson - Whitman Middle,07800310, 243, 23.8, 588, 47.6, 52.4, 1.4, 13.8,21.4 +NA,NA,a-curv-i5,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 590, 15.6," 1,235", 45.8, 54.2, 1.1, 21.8,28.1 +NA,NA,a-curv-i5,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 64, 19.9, 153, 50.3, 49.7, 3.3, 21.6,24.2 +NA,NA,a-curv-i5,2018-19,Wilmington - Boutwell,03420005, 76, 15.1, 136, 44.9, 55.2, 0.0, 12.5,10.3 +NA,NA,a-curv-i5,2018-19,Wilmington - North Intermediate,03420060, 153, 19.3, 268, 45.9, 54.1, 0.0, 19.0,11.2 +NA,NA,a-curv-i5,2018-19,Wilmington - Shawsheen Elementary,03420025, 202, 18.3, 364, 50.6, 49.5, 1.4, 20.6,11.5 +NA,NA,a-curv-i5,2018-19,Wilmington - West Intermediate,03420080, 136, 19.5, 238, 49.2, 50.8, 0.4, 16.4,7.6 +NA,NA,a-curv-i5,2018-19,Wilmington - Wildwood,03420015, 97, 15.0, 174, 36.8, 63.2, 4.0, 23.6,11.5 +NA,NA,a-curv-i5,2018-19,Wilmington - Wilmington High,03420505, 445, 16.5, 831, 51.0, 48.9, 0.4, 13.8,8.7 +NA,NA,a-curv-i5,2018-19,Wilmington - Wilmington Middle School,03420330, 568, 16.3, 786, 49.8, 50.3, 0.3, 18.8,8.8 +NA,NA,a-curv-i5,2018-19,Wilmington - Woburn Street,03420020, 228, 18.6, 421, 51.1, 48.9, 1.0, 14.0,9.5 +NA,NA,a-curv-i5,2018-19,Winchendon - Memorial,03430040, 107, 19.7, 301, 45.2, 54.8, 0.7, 19.6,47.5 +NA,NA,a-curv-i5,2018-19,Winchendon - Murdock Academy for Success,03430405, 2, 33.5, 42, 42.9, 57.1, 0.0, 45.2,64.3 +6.309859154929578,5,a-curv-i5,2018-19,Winchendon - Murdock High School,03430515, 142, 13.6, 306, 45.8, 54.3, 0.3, 20.9,35.6,300 +NA,NA,a-curv-i5,2018-19,Winchendon - Murdock Middle School,03430315, 123, 19.5, 292, 49.3, 50.7, 0.3, 13.7,33.6 +NA,NA,a-curv-i5,2018-19,Winchendon - Toy Town Elementary,03430050, 121, 19.7, 262, 44.3, 55.7, 1.5, 19.9,44.7 +NA,NA,a-curv-i5,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 7, 11.3, 79, 48.1, 51.9, 1.3, 32.9,38 +NA,NA,a-curv-i5,2018-19,Winchester - Ambrose Elementary,03440045, 241, 19.0, 397, 45.6, 54.4, 2.0, 16.9,1.3 +NA,NA,a-curv-i5,2018-19,Winchester - Lincoln Elementary,03440005, 241, 20.5, 432, 49.3, 50.7, 3.9, 11.6,2.3 +NA,NA,a-curv-i5,2018-19,Winchester - Lynch Elementary,03440020, 295, 18.8, 567, 44.1, 55.9, 10.6, 20.5,6.7 +NA,NA,a-curv-i5,2018-19,Winchester - McCall Middle,03440305, 502, 22.6," 1,106", 50.6, 49.2, 0.8, 15.9,5.1 +NA,NA,a-curv-i5,2018-19,Winchester - Muraco Elementary,03440040, 228, 18.9, 375, 50.7, 49.3, 4.8, 17.3,4.8 +NA,NA,a-curv-i5,2018-19,Winchester - Vinson-Owen Elementary,03440025, 254, 18.8, 416, 50.0, 50.0, 4.6, 16.4,1.9 +6.335068912710566,5,a-curv-i5,2018-19,Winchester - Winchester High School,03440505, 653, 16.6," 1,367", 51.5, 48.5, 0.7, 17.6,6.2,1359 +NA,NA,a-curv-i5,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 100, 22.5, 449, 46.3, 53.7, 10.2, 13.8,28.1 +NA,NA,a-curv-i5,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 106, 19.5, 478, 54.2, 45.8, 10.9, 17.0,29.5 +5.9393939393939394,5,a-curv-i5,2018-19,Winthrop - Winthrop High School,03460505, 231, 18.1, 600, 47.7, 52.3, 5.0, 16.3,22,595 +NA,NA,a-curv-i5,2018-19,Winthrop - Winthrop Middle School,03460305, 269, 20.8, 475, 49.1, 51.0, 6.5, 15.2,25.9 +NA,NA,a-curv-i5,2018-19,Woburn - Clyde Reeves,03470040, 216, 17.1, 400, 51.0, 49.0, 8.8, 15.5,20 +NA,NA,a-curv-i5,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 496, 15.8, 533, 50.3, 49.7, 4.3, 20.8,23.5 +NA,NA,a-curv-i5,2018-19,Woburn - Goodyear Elementary School,03470005, 190, 16.6, 315, 46.7, 53.3, 4.4, 16.5,34 +NA,NA,a-curv-i5,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 180, 21.1, 379, 49.1, 50.9, 5.8, 10.0,18.2 +NA,NA,a-curv-i5,2018-19,Woburn - John F Kennedy Middle School,03470405, 441, 15.6, 471, 52.4, 47.6, 5.5, 18.9,28.9 +NA,NA,a-curv-i5,2018-19,Woburn - Linscott-Rumford,03470025, 120, 17.2, 206, 57.8, 42.2, 8.7, 10.2,29.1 +NA,NA,a-curv-i5,2018-19,Woburn - Malcolm White,03470055, 180, 17.7, 318, 54.4, 45.6, 16.4, 12.3,36.5 +NA,NA,a-curv-i5,2018-19,Woburn - Mary D Altavesta,03470065, 154, 15.6, 240, 46.7, 53.3, 14.6, 18.8,32.5 +NA,NA,a-curv-i5,2018-19,Woburn - Shamrock,03470043, 168, 14.2, 376, 43.9, 56.1, 12.2, 34.8,37 +NA,NA,a-curv-i5,2018-19,Woburn - Woburn High,03470505, 595, 14.8," 1,283", 53.2, 46.8, 6.2, 18.5,22.1 +NA,NA,a-curv-i5,2018-19,Worcester - Belmont Street Community,03480020, 189, 21.9, 605, 46.8, 53.2, 50.3, 22.3,79 +NA,NA,a-curv-i5,2018-19,Worcester - Burncoat Middle School,03480405, 381, 17.0, 666, 52.1, 47.9, 17.7, 23.3,55.4 +NA,NA,a-curv-i5,2018-19,Worcester - Burncoat Senior High,03480503, 574, 13.7," 1,018", 45.8, 54.2, 27.2, 24.2,55.9 +NA,NA,a-curv-i5,2018-19,Worcester - Burncoat Street,03480035, 154, 14.8, 308, 50.0, 50.0, 39.3, 27.6,77.9 +NA,NA,a-curv-i5,2018-19,Worcester - Canterbury,03480045, 169, 15.8, 377, 44.8, 55.2, 57.0, 24.4,70.8 +NA,NA,a-curv-i5,2018-19,Worcester - Chandler Elementary Community,03480050, 193, 19.1, 495, 47.1, 52.9, 56.4, 15.8,80.6 +NA,NA,a-curv-i5,2018-19,Worcester - Chandler Magnet,03480052, 200, 18.1, 492, 51.0, 49.0, 65.0, 19.5,69.7 +NA,NA,a-curv-i5,2018-19,Worcester - City View,03480053, 192, 18.1, 478, 47.7, 52.3, 42.1, 24.5,75.9 +NA,NA,a-curv-i5,2018-19,Worcester - Claremont Academy,03480350, 249, 17.9, 527, 50.7, 49.3, 34.7, 11.8,66 +NA,NA,a-curv-i5,2018-19,Worcester - Clark St Community,03480055, 94, 20.9, 277, 49.8, 50.2, 49.5, 28.2,78 +NA,NA,a-curv-i5,2018-19,Worcester - Columbus Park,03480060, 192, 17.7, 465, 47.3, 52.7, 48.8, 20.7,74 +NA,NA,a-curv-i5,2018-19,Worcester - Doherty Memorial High,03480512, 845, 13.7," 1,455", 46.5, 53.4, 17.8, 14.3,40 +NA,NA,a-curv-i5,2018-19,Worcester - Elm Park Community,03480095, 156, 21.0, 443, 47.9, 52.1, 46.7, 17.6,78.1 +NA,NA,a-curv-i5,2018-19,Worcester - Flagg Street,03480090, 126, 22.8, 389, 53.5, 46.5, 15.9, 10.3,26 +NA,NA,a-curv-i5,2018-19,Worcester - Forest Grove Middle,03480415, 534, 18.6, 971, 48.9, 51.1, 16.7, 20.1,45.4 +NA,NA,a-curv-i5,2018-19,Worcester - Francis J McGrath Elementary,03480177, 89, 20.0, 243, 50.2, 49.8, 30.0, 11.1,58.9 +NA,NA,a-curv-i5,2018-19,Worcester - Gates Lane,03480110, 286, 14.3, 570, 41.4, 58.6, 41.2, 40.9,58.8 +NA,NA,a-curv-i5,2018-19,Worcester - Goddard School/Science Technical,03480100, 163, 18.4, 413, 47.9, 52.1, 49.9, 23.5,73.1 +NA,NA,a-curv-i5,2018-19,Worcester - Grafton Street,03480115, 148, 18.9, 378, 47.6, 52.4, 45.5, 16.4,73.8 +NA,NA,a-curv-i5,2018-19,Worcester - Head Start,03480002, 247, 12.5, 611, 52.7, 47.3, 75.9, 12.4,82.7 +NA,NA,a-curv-i5,2018-19,Worcester - Heard Street,03480136, 104, 19.7, 277, 49.8, 50.2, 19.9, 14.4,43.3 +NA,NA,a-curv-i5,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 141, 20.7, 406, 49.8, 50.3, 33.0, 16.3,52.5 +NA,NA,a-curv-i5,2018-19,Worcester - Lake View,03480145, 104, 23.6, 332, 48.2, 51.8, 28.0, 13.0,42.5 +NA,NA,a-curv-i5,2018-19,Worcester - Lincoln Street,03480160, 98, 17.9, 243, 52.3, 47.7, 49.0, 25.5,81.5 +NA,NA,a-curv-i5,2018-19,Worcester - May Street,03480175, 112, 22.3, 335, 54.0, 46.0, 23.0, 11.6,44.2 +NA,NA,a-curv-i5,2018-19,Worcester - Midland Street,03480185, 89, 19.2, 230, 49.6, 50.4, 20.9, 9.1,37.8 +NA,NA,a-curv-i5,2018-19,Worcester - Nelson Place,03480200, 284, 14.4, 566, 40.3, 59.7, 19.6, 31.6,32.5 +NA,NA,a-curv-i5,2018-19,Worcester - Norrback Avenue,03480202, 285, 14.8, 590, 45.8, 54.2, 36.1, 33.4,46.6 +NA,NA,a-curv-i5,2018-19,Worcester - North High,03480515, 713, 13.8," 1,119", 47.4, 52.6, 32.4, 20.6,63.2 +NA,NA,a-curv-i5,2018-19,Worcester - Quinsigamond,03480210, 304, 18.5, 764, 47.4, 52.6, 44.8, 22.9,67.5 +NA,NA,a-curv-i5,2018-19,Worcester - Rice Square,03480215, 148, 24.2, 487, 51.3, 48.7, 35.7, 16.0,62.6 +NA,NA,a-curv-i5,2018-19,Worcester - Roosevelt,03480220, 332, 15.5, 714, 49.7, 50.3, 24.9, 22.8,46.6 +NA,NA,a-curv-i5,2018-19,Worcester - South High Community,03480520, 701, 15.3," 1,267", 50.1, 49.8, 31.6, 22.4,58.3 +NA,NA,a-curv-i5,2018-19,Worcester - Sullivan Middle,03480423, 578, 17.2, 880, 49.9, 50.1, 24.6, 20.9,62.2 +NA,NA,a-curv-i5,2018-19,Worcester - Tatnuck,03480230, 142, 21.3, 416, 51.2, 48.8, 26.9, 16.8,48.6 +NA,NA,a-curv-i5,2018-19,Worcester - Thorndyke Road,03480235, 118, 23.0, 367, 46.6, 53.4, 27.5, 14.4,47.4 +NA,NA,a-curv-i5,2018-19,Worcester - Union Hill School,03480240, 156, 20.0, 421, 48.9, 51.1, 50.6, 21.9,76.5 +NA,NA,a-curv-i5,2018-19,Worcester - University Pk Campus School,03480285, 128, 16.9, 235, 49.4, 50.6, 20.9, 11.9,60.4 +NA,NA,a-curv-i5,2018-19,Worcester - Vernon Hill School,03480280, 223, 16.7, 510, 47.8, 52.2, 40.4, 25.9,71.8 +NA,NA,a-curv-i5,2018-19,Worcester - Wawecus Road School,03480026, 96, 11.7, 151, 49.7, 50.3, 31.8, 33.8,58.9 +NA,NA,a-curv-i5,2018-19,Worcester - West Tatnuck,03480260, 149, 18.2, 377, 48.3, 51.7, 24.9, 19.4,30.2 +NA,NA,a-curv-i5,2018-19,Worcester - Woodland Academy,03480030, 194, 23.9, 627, 48.6, 51.4, 60.8, 16.0,76.6 +NA,NA,a-curv-i5,2018-19,Worcester - Worcester Arts Magnet School,03480225, 125, 23.6, 404, 49.5, 50.5, 21.0, 17.8,30 +NA,NA,a-curv-i5,2018-19,Worcester - Worcester East Middle,03480420, 548, 15.5, 754, 51.5, 48.5, 28.3, 18.8,67.5 +NA,NA,a-curv-i5,2018-19,Worcester - Worcester Technical High,03480605, 707, 16.2," 1,412", 54.6, 45.4, 7.4, 11.1,41.7 +NA,NA,a-curv-i5,2018-19,Worthington - R. H. Conwell,03490010, 57, 7.4, 76, 52.6, 47.4, 0.0, 21.1,35.5 +NA,NA,a-curv-i5,2018-19,Wrentham - Charles E Roderick,03500010, 200, 19.8, 443, 45.6, 54.4, 1.1, 17.2,10.8 +NA,NA,a-curv-i5,2018-19,Wrentham - Delaney,03500003, 228, 18.2, 584, 48.8, 51.2, 3.1, 18.7,11.1 +NA,NA,a-curv-i5,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 698, 19.3," 1,420", 53.6, 46.4, 9.2, 12.2,36.3 +NA,NA,a-curv-i5,2017-18,Abington - Abington Early Education Program,00010001, 24, 17.8, 107, 47.7, 52.3, 0.0, 36.4,20.6 +NA,NA,a-curv-i5,2017-18,Abington - Abington High,00010505, 260, 16.0, 519, 51.6, 48.4, 4.2, 9.8,21.4 +NA,NA,a-curv-i5,2017-18,Abington - Abington Middle School,00010405, 373, 23.2, 699, 48.8, 51.2, 3.1, 13.3,22.5 +NA,NA,a-curv-i5,2017-18,Abington - Beaver Brook Elementary,00010020, 273, 20.8, 433, 51.5, 48.5, 9.0, 14.5,19.9 +NA,NA,a-curv-i5,2017-18,Abington - Woodsdale Elementary School,00010015, 143, 25.3, 329, 46.5, 53.5, 10.0, 11.2,26.1 +NA,NA,a-curv-i5,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 167, 20.9, 521, 51.4, 48.6, 12.7, 25.5,34.7 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 725, 18.4," 1,831", 48.6, 51.4, 0.9, 9.0,4.3 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 149, 21.5, 455, 49.7, 50.3, 6.2, 18.9,4.4 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 135, 22.8, 435, 48.5, 51.5, 6.7, 17.7,6.7 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 11, 12.3, 123, 37.4, 62.6, 0.8, 50.4,10.6 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Luther Conant School,06000030, 144, 22.2, 448, 49.3, 50.7, 12.7, 14.3,7.4 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 156, 22.3, 493, 48.9, 51.1, 7.3, 16.4,8.1 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Merriam School,06000010, 156, 22.6, 499, 47.3, 52.7, 6.6, 16.0,6.6 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 128, 22.3, 399, 46.9, 53.1, 14.8, 15.5,9.8 +NA,NA,a-curv-i5,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 575, 24.0, 978, 48.1, 51.9, 2.6, 16.6,5.3 +NA,NA,a-curv-i5,2017-18,Acushnet - Acushnet Elementary School,00030025, 158, 19.8, 567, 48.3, 51.7, 1.2, 13.6,23.5 +NA,NA,a-curv-i5,2017-18,Acushnet - Albert F Ford Middle School,00030305, 277, 18.7, 422, 46.9, 53.1, 0.5, 14.9,23 +NA,NA,a-curv-i5,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 188, 16.8, 403, 47.6, 52.4, 0.5, 30.0,52.1 +6.876767676767676,5,a-curv-i5,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 297, 14.4, 414, 50.2, 49.8, 1.0, 23.2,41.5,417 +NA,NA,a-curv-i5,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 257, 19.1, 388, 48.5, 51.5, 0.3, 24.7,51.3 +NA,NA,a-curv-i5,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 489, 19.3, 983, 46.9, 53.1, 2.5, 5.4,6.6 +NA,NA,a-curv-i5,2017-18,Agawam - Agawam Early Childhood Center,00050003, 16, 12.8, 186, 47.3, 52.7, 0.0, 46.8,39.8 +NA,NA,a-curv-i5,2017-18,Agawam - Agawam High,00050505, 593, 15.6," 1,165", 48.5, 51.5, 2.0, 12.7,21.9 +NA,NA,a-curv-i5,2017-18,Agawam - Agawam Junior High,00050405, 796, 12.7, 581, 48.9, 51.1, 1.4, 14.8,26.9 +NA,NA,a-curv-i5,2017-18,Agawam - Benjamin J Phelps,00050020, 226, 17.9, 381, 44.9, 55.1, 10.8, 12.3,27 +NA,NA,a-curv-i5,2017-18,Agawam - Clifford M Granger,00050010, 139, 22.0, 285, 51.2, 48.8, 8.8, 21.8,35.8 +NA,NA,a-curv-i5,2017-18,Agawam - James Clark School,00050030, 182, 19.5, 335, 47.5, 52.5, 10.1, 16.4,28.7 +NA,NA,a-curv-i5,2017-18,Agawam - Roberta G. Doering School,00050303, 435, 17.4, 581, 47.2, 52.8, 4.5, 16.9,33.2 +NA,NA,a-curv-i5,2017-18,Agawam - Robinson Park,00050025, 231, 16.7, 365, 50.4, 49.6, 14.0, 14.0,35.1 +NA,NA,a-curv-i5,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 131, 19.0, 398, 54.8, 45.2, 22.9, 16.1,55.5 +NA,NA,a-curv-i5,2017-18,Amesbury - Amesbury Elementary,00070005, 161, 19.6, 400, 44.0, 56.0, 0.0, 22.0,22.5 +NA,NA,a-curv-i5,2017-18,Amesbury - Amesbury High,00070505, 367, 16.5, 602, 45.7, 54.3, 0.8, 14.0,14.1 +7.2558139534883725,5,a-curv-i5,2017-18,Amesbury - Amesbury Innovation High School,00070515, 43, 9.7, 47, 42.6, 57.4, 0.0, 44.7,63.8,40 +NA,NA,a-curv-i5,2017-18,Amesbury - Amesbury Middle,00070013, 376, 16.7, 682, 50.4, 49.6, 1.2, 21.1,23.3 +NA,NA,a-curv-i5,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 189, 19.0, 445, 45.4, 54.6, 3.6, 24.9,27.9 +NA,NA,a-curv-i5,2017-18,Amherst - Crocker Farm Elementary,00080009, 101, 20.7, 428, 47.4, 52.3, 20.1, 21.7,34.1 +NA,NA,a-curv-i5,2017-18,Amherst - Fort River Elementary,00080020, 95, 20.1, 333, 51.4, 48.6, 16.2, 26.1,35.4 +NA,NA,a-curv-i5,2017-18,Amherst - Wildwood Elementary,00080050, 116, 19.7, 401, 46.9, 53.1, 14.7, 19.0,32.7 +NA,NA,a-curv-i5,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 630, 13.0, 931, 47.9, 51.9, 5.4, 18.7,23.1 +NA,NA,a-curv-i5,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 309, 16.0, 414, 46.9, 53.1, 9.9, 21.7,29 +NA,NA,a-curv-i5,2017-18,Andover - Andover High,00090505," 1,050", 15.2," 1,777", 52.6, 47.2, 0.6, 14.9,6.6 +NA,NA,a-curv-i5,2017-18,Andover - Andover West Middle,00090310, 275, 19.7, 532, 53.2, 46.8, 1.7, 16.7,7.7 +NA,NA,a-curv-i5,2017-18,Andover - Bancroft Elementary,00090003, 192, 20.9, 585, 47.7, 52.3, 4.1, 16.4,7.7 +NA,NA,a-curv-i5,2017-18,Andover - Doherty Middle,00090305, 279, 20.6, 563, 50.3, 49.7, 0.9, 20.6,6.2 +NA,NA,a-curv-i5,2017-18,Andover - Henry C Sanborn Elementary,00090010, 130, 20.5, 388, 47.9, 52.1, 12.1, 17.3,7.7 +NA,NA,a-curv-i5,2017-18,Andover - High Plain Elementary,00090004, 165, 21.9, 525, 45.5, 54.5, 10.5, 19.6,6.5 +NA,NA,a-curv-i5,2017-18,Andover - Shawsheen School,00090005, 9, 11.6, 104, 27.9, 72.1, 5.8, 57.7,10.6 +NA,NA,a-curv-i5,2017-18,Andover - South Elementary,00090020, 164, 20.7, 496, 49.2, 50.8, 7.1, 17.5,3.4 +NA,NA,a-curv-i5,2017-18,Andover - West Elementary,00090025, 199, 21.1, 613, 49.6, 50.4, 4.7, 23.5,8 +NA,NA,a-curv-i5,2017-18,Andover - Wood Hill Middle School,00090350, 247, 17.4, 424, 49.8, 50.2, 3.5, 20.0,6.8 +NA,NA,a-curv-i5,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 135, 24.8, 410, 46.1, 53.9, 24.9, 23.2,53.4 +NA,NA,a-curv-i5,2017-18,Arlington - Arlington High,00100505, 796, 14.2," 1,339", 51.2, 48.4, 1.9, 11.9,9.3 +NA,NA,a-curv-i5,2017-18,Arlington - Brackett,00100010, 189, 18.0, 485, 46.6, 53.4, 4.3, 13.4,4.1 +NA,NA,a-curv-i5,2017-18,Arlington - Cyrus E Dallin,00100025, 175, 19.3, 483, 48.4, 51.6, 3.1, 14.5,3.7 +NA,NA,a-curv-i5,2017-18,Arlington - Hardy,00100030, 154, 20.3, 446, 45.5, 54.3, 11.2, 16.6,5.4 +NA,NA,a-curv-i5,2017-18,Arlington - John A Bishop,00100005, 126, 23.0, 414, 46.1, 53.9, 5.1, 11.4,6 +NA,NA,a-curv-i5,2017-18,Arlington - M Norcross Stratton,00100055, 168, 17.2, 412, 50.2, 49.8, 5.3, 17.2,8.7 +NA,NA,a-curv-i5,2017-18,Arlington - Menotomy Preschool,00100038, 6, 17.0, 102, 28.4, 71.6, 0.0, 65.7,10.8 +NA,NA,a-curv-i5,2017-18,Arlington - Ottoson Middle,00100410, 696, 19.6," 1,275", 53.5, 46.5, 2.9, 18.1,9.3 +NA,NA,a-curv-i5,2017-18,Arlington - Peirce,00100045, 91, 23.2, 301, 48.8, 51.2, 9.3, 15.6,7.6 +NA,NA,a-curv-i5,2017-18,Arlington - Thompson,00100050, 161, 21.1, 486, 48.8, 51.2, 11.9, 14.4,15 +NA,NA,a-curv-i5,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 275, 19.6, 550, 50.4, 49.6, 2.5, 25.3,16.5 +NA,NA,a-curv-i5,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 82, 20.3, 164, 50.6, 49.4, 3.0, 12.8,17.1 +6.569154228855721,5,a-curv-i5,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 402, 15.7, 711, 51.2, 48.7, 1.1, 15.3,14.2,719 +NA,NA,a-curv-i5,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 488, 18.0, 570, 50.4, 49.6, 1.1, 17.7,14.9 +NA,NA,a-curv-i5,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 181, 23.8, 385, 45.5, 54.5, 2.3, 18.4,15.6 +NA,NA,a-curv-i5,2017-18,Ashland - Ashland High,00140505, 436, 14.7, 789, 51.3, 48.5, 3.3, 13.1,12.3 +NA,NA,a-curv-i5,2017-18,Ashland - Ashland Middle,00140405, 355, 19.0, 611, 51.2, 48.8, 4.3, 16.5,13.1 +NA,NA,a-curv-i5,2017-18,Ashland - David Mindess,00140015, 281, 24.0, 646, 50.0, 50.0, 6.7, 17.3,13 +NA,NA,a-curv-i5,2017-18,Ashland - Henry E Warren Elementary,00140010, 204, 19.7, 620, 50.3, 49.7, 8.1, 14.5,11.8 +NA,NA,a-curv-i5,2017-18,Ashland - William Pittaway Elementary,00140005, 30, 4.9, 137, 42.3, 57.7, 0.0, 33.6,11.7 +6.625925925925927,5,a-curv-i5,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 648, 16.6," 1,111", 40.7, 59.2, 3.2, 29.3,22.4,1113 +NA,NA,a-curv-i5,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 182, 20.5, 624, 45.8, 54.2, 2.6, 32.1,55.6 +NA,NA,a-curv-i5,2017-18,Athol-Royalston - Athol High,06150505, 212, 13.2, 401, 48.4, 51.6, 1.2, 23.9,40.6 +NA,NA,a-curv-i5,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 199, 19.2, 408, 48.0, 52.0, 4.7, 28.4,45.1 +NA,NA,a-curv-i5,2017-18,Athol-Royalston - Royalston Community School,06150050, 56, 17.2, 138, 48.6, 51.4, 0.0, 14.5,35.5 +NA,NA,a-curv-i5,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 502, 23.6," 1,207", 53.3, 46.7, 9.9, 13.2,39.9 +NA,NA,a-curv-i5,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 205, 19.0, 384, 48.7, 51.3, 12.8, 16.4,37.5 +NA,NA,a-curv-i5,2017-18,Attleboro - Attleboro Community Academy,00160515, 53, 10.7, 92, 41.3, 58.7, 1.1, 6.5,41.3 +NA,NA,a-curv-i5,2017-18,Attleboro - Attleboro High,00160505, 888, 20.6," 1,765", 47.3, 52.7, 2.8, 9.9,25.1 +NA,NA,a-curv-i5,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 221, 24.4, 597, 46.7, 53.1, 5.5, 14.9,34.7 +NA,NA,a-curv-i5,2017-18,Attleboro - Early Learning Center,00160008, 24, 8.7, 207, 39.1, 60.9, 0.5, 57.5,36.2 +NA,NA,a-curv-i5,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 195, 24.0, 465, 48.4, 51.6, 5.6, 14.6,31 +NA,NA,a-curv-i5,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 190, 25.1, 475, 49.7, 50.3, 12.8, 13.3,31.2 +NA,NA,a-curv-i5,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 242, 16.2, 432, 49.1, 50.9, 11.1, 22.7,33.6 +NA,NA,a-curv-i5,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 252, 27.0, 687, 48.2, 51.8, 1.6, 15.9,20.4 +NA,NA,a-curv-i5,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 190, 21.6, 410, 48.8, 51.2, 12.7, 17.6,35.6 +NA,NA,a-curv-i5,2017-18,Attleboro - Wamsutta Middle School,00160320, 171, 25.1, 570, 46.7, 53.3, 4.2, 16.7,30.2 +NA,NA,a-curv-i5,2017-18,Auburn - Auburn Middle,00170305, 360, 19.5, 633, 46.4, 53.6, 2.8, 9.8,16.3 +NA,NA,a-curv-i5,2017-18,Auburn - Auburn Senior High,00170505, 623, 16.7, 806, 53.6, 46.4, 2.7, 9.6,14.9 +NA,NA,a-curv-i5,2017-18,Auburn - Bryn Mawr,00170010, 52, 23.4, 304, 49.0, 51.0, 5.3, 12.8,20.1 +NA,NA,a-curv-i5,2017-18,Auburn - Pakachoag School,00170025, 47, 23.6, 312, 46.2, 53.8, 8.3, 10.3,18.3 +NA,NA,a-curv-i5,2017-18,Auburn - Swanson Road Intermediate School,00170030, 189, 23.2, 576, 51.9, 48.1, 4.0, 8.3,19.3 +6.885714285714286,5,a-curv-i5,2017-18,Avon - Avon Middle High School,00180510, 224, 11.5, 317, 47.3, 52.1, 3.8, 15.5,26.8,312 +NA,NA,a-curv-i5,2017-18,Avon - Ralph D Butler,00180010, 98, 18.7, 416, 45.7, 54.3, 4.1, 17.3,28.6 +6.685943775100401,5,a-curv-i5,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 249, 16.5, 406, 51.5, 48.5, 3.0, 14.3,22.7,409 +NA,NA,a-curv-i5,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 210, 19.5, 368, 48.4, 51.6, 2.2, 18.8,26.1 +NA,NA,a-curv-i5,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 178, 20.5, 403, 47.1, 52.9, 2.2, 19.9,22.3 +NA,NA,a-curv-i5,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 243, 20.7, 535, 46.9, 53.1, 7.9, 16.4,25.4 +NA,NA,a-curv-i5,2017-18,Barnstable - Barnstable High,00200505, 771, 14.7," 1,817", 49.6, 50.4, 6.9, 13.8,25.2 +NA,NA,a-curv-i5,2017-18,Barnstable - Barnstable Intermediate School,00200315, 431, 16.5, 734, 51.0, 49.0, 8.3, 17.0,30.8 +NA,NA,a-curv-i5,2017-18,Barnstable - Barnstable United Elementary School,00200050, 413, 21.2, 853, 48.5, 51.3, 10.9, 13.2,38.1 +NA,NA,a-curv-i5,2017-18,Barnstable - Centerville Elementary,00200010, 73, 19.0, 260, 46.5, 53.5, 16.5, 16.5,29.6 +NA,NA,a-curv-i5,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 19, 9.6, 183, 41.0, 59.0, 16.9, 47.5,36.1 +NA,NA,a-curv-i5,2017-18,Barnstable - Hyannis West Elementary,00200025, 117, 18.3, 348, 50.0, 50.0, 39.4, 10.9,53.4 +NA,NA,a-curv-i5,2017-18,Barnstable - West Barnstable Elementary,00200005, 63, 21.4, 260, 44.6, 55.4, 8.8, 14.6,27.7 +NA,NA,a-curv-i5,2017-18,Barnstable - West Villages Elementary School,00200045, 107, 20.9, 430, 47.4, 52.6, 3.0, 14.4,21.6 +NA,NA,a-curv-i5,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 87, 20.4, 299, 48.5, 51.5, 20.7, 9.7,38.5 +NA,NA,a-curv-i5,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 297, 15.8, 447, 49.7, 50.3, 13.2, 19.0,67.8 +NA,NA,a-curv-i5,2017-18,Bedford - Bedford High,00230505, 544, 13.2, 871, 49.4, 50.5, 1.6, 17.0,8.5 +NA,NA,a-curv-i5,2017-18,Bedford - John Glenn Middle,00230305, 376, 17.3, 585, 48.5, 51.5, 3.4, 18.1,7.9 +NA,NA,a-curv-i5,2017-18,Bedford - Lt Elezer Davis,00230010, 81, 22.2, 599, 51.9, 48.1, 11.7, 10.7,10 +NA,NA,a-curv-i5,2017-18,Bedford - Lt Job Lane School,00230012, 146, 23.5, 611, 47.3, 52.7, 7.7, 17.0,7.9 +NA,NA,a-curv-i5,2017-18,Belchertown - Belchertown High,00240505, 427, 13.9, 703, 48.1, 51.9, 0.3, 12.9,12.4 +NA,NA,a-curv-i5,2017-18,Belchertown - Chestnut Hill Community School,00240006, 233, 21.8, 550, 51.6, 48.4, 1.1, 22.7,20.5 +NA,NA,a-curv-i5,2017-18,Belchertown - Cold Spring,00240005, 35, 19.1, 198, 50.5, 49.5, 1.5, 21.7,22.2 +NA,NA,a-curv-i5,2017-18,Belchertown - Jabish Middle School,00240025, 267, 17.8, 408, 47.5, 52.5, 0.2, 17.9,19.6 +NA,NA,a-curv-i5,2017-18,Belchertown - Swift River Elementary,00240018, 205, 20.5, 469, 48.2, 51.8, 1.9, 20.7,22.4 +NA,NA,a-curv-i5,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 11, 9.4, 103, 45.6, 54.4, 0.0, 42.7,20.4 +6.3722666666666665,5,a-curv-i5,2017-18,Bellingham - Bellingham High School,00250505, 375, 17.8, 764, 47.8, 52.2, 1.7, 18.2,15.3,763 +NA,NA,a-curv-i5,2017-18,Bellingham - Bellingham Memorial School,00250315, 286, 19.6, 721, 50.9, 49.1, 1.2, 16.8,17.9 +NA,NA,a-curv-i5,2017-18,Bellingham - Keough Memorial Academy,00250510, 48, 8.9, 41, 46.3, 51.2, 0.0, 85.4,34.1 +NA,NA,a-curv-i5,2017-18,Bellingham - South Elementary,00250020, 68, 20.1, 341, 49.3, 50.7, 1.8, 12.9,24 +NA,NA,a-curv-i5,2017-18,Bellingham - Stall Brook,00250025, 75, 17.6, 312, 48.1, 51.9, 3.8, 17.3,18.3 +NA,NA,a-curv-i5,2017-18,Belmont - Belmont High,00260505, 452, 20.8," 1,307", 51.0, 49.0, 1.8, 6.4,7.3 +NA,NA,a-curv-i5,2017-18,Belmont - Daniel Butler,00260015, 138, 23.1, 390, 44.6, 55.4, 16.2, 9.2,10.5 +NA,NA,a-curv-i5,2017-18,Belmont - Mary Lee Burbank,00260010, 138, 22.3, 378, 49.2, 50.8, 13.2, 6.6,5.6 +NA,NA,a-curv-i5,2017-18,Belmont - Roger E Wellington,00260035, 209, 22.7, 644, 47.0, 53.0, 12.3, 14.3,6.1 +NA,NA,a-curv-i5,2017-18,Belmont - Winn Brook,00260005, 172, 23.3, 482, 46.7, 53.3, 16.4, 8.7,2.3 +NA,NA,a-curv-i5,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 679, 22.7," 1,423", 50.9, 49.1, 3.6, 10.3,7.6 +NA,NA,a-curv-i5,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 65, 23.0, 350, 50.9, 49.1, 5.1, 16.6,50.3 +NA,NA,a-curv-i5,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 154, 24.7, 445, 51.0, 49.0, 5.6, 12.4,7 +NA,NA,a-curv-i5,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 146, 16.2, 281, 50.2, 49.8, 21.4, 18.1,64.4 +NA,NA,a-curv-i5,2017-18,Berkley - Berkley Community School,00270010, 98, 20.5, 526, 51.3, 48.7, 1.0, 14.6,17.1 +NA,NA,a-curv-i5,2017-18,Berkley - Berkley Middle School,00270305, 154, 20.4, 392, 50.5, 49.5, 0.3, 15.6,13.8 +NA,NA,a-curv-i5,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 138, 17.9, 358, 49.4, 50.6, 0.6, 22.3,39.1 +NA,NA,a-curv-i5,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 328, 12.2, 525, 47.4, 52.6, 1.3, 13.9,20.6 +NA,NA,a-curv-i5,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 324, 18.0, 381, 50.7, 49.3, 2.9, 16.5,27.6 +NA,NA,a-curv-i5,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 235, 15.2, 352, 47.2, 52.8, 6.3, 24.4,35.2 +NA,NA,a-curv-i5,2017-18,Berlin - Berlin Memorial,00280005, 122, 14.6, 189, 44.4, 55.6, 3.2, 15.9,15.3 +NA,NA,a-curv-i5,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 289, 17.0, 590, 45.9, 54.1, 1.9, 15.9,10.7 +NA,NA,a-curv-i5,2017-18,Beverly - Ayers/Ryal Side School,00300055, 24, 20.8, 500, 47.2, 52.8, 9.2, 13.6,25.2 +NA,NA,a-curv-i5,2017-18,Beverly - Beverly High,00300505, 554, 19.5," 1,237", 50.4, 49.6, 2.2, 15.7,21.3 +NA,NA,a-curv-i5,2017-18,Beverly - Briscoe Middle,00300305, 521, 21.3," 1,017", 46.4, 53.6, 2.1, 20.1,26.1 +NA,NA,a-curv-i5,2017-18,Beverly - Centerville Elementary,00300010, 23, 16.0, 367, 49.3, 50.7, 4.4, 21.8,31.9 +NA,NA,a-curv-i5,2017-18,Beverly - Cove Elementary,00300015, 32, 14.8, 473, 48.2, 51.8, 5.3, 19.7,23.9 +NA,NA,a-curv-i5,2017-18,Beverly - Hannah Elementary,00300033, 23, 17.7, 407, 45.5, 54.5, 3.9, 19.9,21.1 +NA,NA,a-curv-i5,2017-18,Beverly - McKeown School,00300002, 16, 8.8, 141, 37.6, 62.4, 0.0, 70.9,35.5 +NA,NA,a-curv-i5,2017-18,Beverly - North Beverly Elementary,00300040, 26, 15.6, 405, 50.1, 49.9, 4.7, 22.2,23.7 +6.089126559714795,5,a-curv-i5,2017-18,Billerica - Billerica Memorial High School,00310505, 561, 17.7," 1,340", 49.1, 50.9, 1.5, 15.7,13.3,1340 +NA,NA,a-curv-i5,2017-18,Billerica - Eugene C Vining,00310030, 106, 16.0, 192, 41.7, 58.3, 0.5, 17.7,21.4 +NA,NA,a-curv-i5,2017-18,Billerica - Frederick J Dutile,00310007, 141, 17.2, 274, 51.1, 48.9, 0.0, 17.9,19.3 +NA,NA,a-curv-i5,2017-18,Billerica - Hajjar Elementary,00310026, 212, 19.3, 463, 49.2, 50.8, 7.3, 14.5,19.4 +NA,NA,a-curv-i5,2017-18,Billerica - John F Kennedy,00310012, 150, 18.8, 319, 51.1, 48.9, 0.0, 13.2,13.8 +NA,NA,a-curv-i5,2017-18,Billerica - Locke Middle,00310310, 330, 15.7, 508, 47.8, 52.2, 0.0, 18.7,13.2 +NA,NA,a-curv-i5,2017-18,Billerica - Marshall Middle School,00310305, 340, 19.2, 666, 49.5, 50.5, 1.5, 20.7,15.9 +NA,NA,a-curv-i5,2017-18,Billerica - Parker,00310015, 221, 19.5, 488, 44.7, 55.3, 0.2, 21.1,16.4 +NA,NA,a-curv-i5,2017-18,Billerica - Thomas Ditson,00310005, 242, 19.3, 527, 50.3, 49.7, 2.8, 17.1,16.9 +NA,NA,a-curv-i5,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 679, 17.2," 1,219", 49.6, 50.4, 0.2, 8.9,9.4 +NA,NA,a-curv-i5,2017-18,Blackstone-Millville - A F Maloney,06220015, 121, 22.9, 297, 50.5, 49.5, 3.7, 17.2,18.5 +NA,NA,a-curv-i5,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 205, 13.8, 404, 48.8, 51.2, 1.0, 15.3,17.8 +NA,NA,a-curv-i5,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 250, 19.5, 427, 49.6, 50.4, 0.5, 13.1,17.1 +NA,NA,a-curv-i5,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 126, 19.9, 278, 43.5, 56.5, 6.8, 17.3,21.9 +NA,NA,a-curv-i5,2017-18,Blackstone-Millville - Millville Elementary,06220010, 107, 20.7, 289, 50.2, 49.8, 0.3, 21.1,25.3 +NA,NA,a-curv-i5,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 427, 14.8, 841, 44.6, 55.4, 0.5, 25.6,22.2 +NA,NA,a-curv-i5,2017-18,Boston - Another Course To College,00350541, 145, 12.5, 237, 48.5, 51.5, 13.1, 21.5,57.4 +NA,NA,a-curv-i5,2017-18,Boston - Baldwin Early Learning Center,00350003, 32, 14.2, 167, 40.1, 59.9, 58.1, 23.4,32.9 +NA,NA,a-curv-i5,2017-18,Boston - Beethoven,00350021, 133, 19.0, 332, 51.2, 48.8, 27.4, 20.8,37.7 +NA,NA,a-curv-i5,2017-18,Boston - Blackstone,00350390, 312, 16.6, 601, 47.6, 52.4, 44.8, 24.6,71.2 +NA,NA,a-curv-i5,2017-18,Boston - Boston Adult Academy,00350548, 87, 13.5, 198, 49.0, 51.0, 78.3, 4.5,38.9 +NA,NA,a-curv-i5,2017-18,Boston - Boston Arts Academy,00350546, 293, 15.6, 470, 66.6, 33.4, 3.8, 14.7,45.3 +5.445614035087719,5,a-curv-i5,2017-18,Boston - Boston Collaborative High School,00350755, 57, 15.2, 239, 46.9, 53.1, 21.3, 19.7,57.7,182 +NA,NA,a-curv-i5,2017-18,Boston - Boston Community Leadership Academy,00350558, 160, 18.2, 470, 47.9, 52.1, 22.3, 22.1,56.4 +7.087850467289719,5,a-curv-i5,2017-18,Boston - Boston International High School,00350507, 321, 14.6, 485, 45.8, 54.2, 91.1, 6.0,62.7,366 +NA,NA,a-curv-i5,2017-18,Boston - Boston Latin,00350560, 796, 26.0," 2,439", 55.4, 44.6, 0.0, 2.4,15.8 +NA,NA,a-curv-i5,2017-18,Boston - Boston Latin Academy,00350545, 472, 25.8," 1,761", 57.6, 42.4, 0.2, 4.1,31.2 +NA,NA,a-curv-i5,2017-18,Boston - Boston Teachers Union School,00350012, 124, 18.8, 295, 45.1, 54.9, 12.9, 25.4,40.7 +NA,NA,a-curv-i5,2017-18,Boston - Brighton High,00350505, 207, 17.7, 665, 38.3, 61.7, 42.0, 18.6,64.8 +NA,NA,a-curv-i5,2017-18,Boston - Carter Developmental Center,00350036, 1, 31.0, 31, 38.7, 61.3, 29.0, 90.3,67.7 +NA,NA,a-curv-i5,2017-18,Boston - Charles H Taylor,00350054, 319, 17.9, 568, 48.6, 51.4, 36.6, 15.3,65.5 +NA,NA,a-curv-i5,2017-18,Boston - Charles Sumner,00350052, 262, 18.9, 576, 45.5, 54.5, 43.8, 24.7,56.8 +NA,NA,a-curv-i5,2017-18,Boston - Charlestown High,00350515, 445, 12.5, 998, 41.6, 58.3, 39.4, 23.5,61.9 +NA,NA,a-curv-i5,2017-18,Boston - Clarence R Edwards Middle,00350430, 181, 14.5, 320, 44.7, 55.3, 41.9, 35.6,70.6 +NA,NA,a-curv-i5,2017-18,Boston - Community Academy,00350518, 47, 8.8, 141, 41.1, 58.9, 5.7, 16.3,62.4 +NA,NA,a-curv-i5,2017-18,Boston - Community Academy of Science and Health,00350581, 181, 14.2, 379, 47.5, 52.5, 32.7, 35.6,69.4 +NA,NA,a-curv-i5,2017-18,Boston - Curley K-8 School,00350020, 496, 17.3, 975, 48.3, 51.7, 34.6, 27.2,54.9 +NA,NA,a-curv-i5,2017-18,Boston - Curtis Guild,00350062, 162, 15.6, 292, 50.3, 49.7, 62.3, 24.7,59.9 +NA,NA,a-curv-i5,2017-18,Boston - Dante Alighieri Montessori School,00350066, 83, 6.7, 93, 57.0, 43.0, 49.5, 14.0,24.7 +NA,NA,a-curv-i5,2017-18,Boston - David A Ellis,00350072, 183, 17.1, 463, 50.8, 49.2, 39.1, 12.7,80.8 +NA,NA,a-curv-i5,2017-18,Boston - Dearborn,00350074, 135, 16.5, 357, 48.7, 51.3, 37.3, 14.0,58.3 +NA,NA,a-curv-i5,2017-18,Boston - Dennis C Haley,00350077, 185, 22.1, 456, 49.1, 50.9, 19.5, 35.7,42.8 +NA,NA,a-curv-i5,2017-18,Boston - Donald Mckay,00350080, 307, 22.5, 778, 50.4, 49.6, 53.2, 14.1,56.6 +NA,NA,a-curv-i5,2017-18,Boston - Dorchester Academy,00350651, 21, 6.5, 40, 60.0, 40.0, 7.5, 25.0,62.5 +NA,NA,a-curv-i5,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 58, 17.9, 203, 45.8, 54.2, 60.6, 25.6,68 +NA,NA,a-curv-i5,2017-18,Boston - Dr. William Henderson Lower,00350266, 62, 20.4, 222, 50.5, 49.5, 21.2, 28.4,41.9 +NA,NA,a-curv-i5,2017-18,Boston - Dr. William Henderson Upper,00350426, 256, 21.5, 651, 45.5, 54.5, 9.5, 38.7,52.4 +NA,NA,a-curv-i5,2017-18,Boston - ELC - West Zone,00350006, 31, 16.0, 118, 40.7, 59.3, 37.3, 22.9,44.9 +NA,NA,a-curv-i5,2017-18,Boston - East Boston Early Childhood Center,00350009, 48, 15.7, 192, 52.1, 47.9, 56.3, 25.5,54.7 +NA,NA,a-curv-i5,2017-18,Boston - East Boston High,00350530, 445, 17.6," 1,415", 42.7, 57.3, 41.9, 15.8,52.8 +NA,NA,a-curv-i5,2017-18,Boston - Edison K-8,00350375, 424, 14.4, 662, 44.9, 55.1, 43.8, 21.6,59.4 +NA,NA,a-curv-i5,2017-18,Boston - Edward Everett,00350088, 93, 18.6, 261, 51.0, 49.0, 24.1, 21.1,65.9 +NA,NA,a-curv-i5,2017-18,Boston - Eliot Elementary,00350096, 332, 19.1, 642, 49.8, 50.2, 8.4, 19.9,20.4 +NA,NA,a-curv-i5,2017-18,Boston - Ellis Mendell,00350100, 87, 19.9, 265, 50.2, 49.8, 20.8, 21.1,33.6 +5.729479768786128,5,a-curv-i5,2017-18,Boston - Excel High School,00350522, 173, 18.6, 541, 38.8, 61.2, 34.2, 21.6,62.8,491 +5.777099236641222,5,a-curv-i5,2017-18,Boston - Fenway High School,00350540, 131, 19.9, 363, 50.4, 49.6, 19.0, 20.9,52.1,364 +NA,NA,a-curv-i5,2017-18,Boston - Franklin D Roosevelt,00350116, 123, 22.7, 459, 47.7, 52.3, 17.2, 26.1,43.1 +NA,NA,a-curv-i5,2017-18,Boston - Gardner Pilot Academy,00350326, 158, 18.0, 401, 47.9, 52.1, 47.6, 26.9,50.9 +NA,NA,a-curv-i5,2017-18,Boston - George H Conley,00350122, 132, 13.2, 228, 47.4, 52.6, 30.3, 38.6,48.7 +6.88,5,a-curv-i5,2017-18,Boston - Greater Egleston Community High School,00350543, 75, 7.9, 117, 54.7, 45.3, 15.4, 9.4,70.1,105 +NA,NA,a-curv-i5,2017-18,Boston - Harvard-Kent,00350200, 236, 16.2, 477, 41.5, 58.5, 44.2, 24.7,67.7 +NA,NA,a-curv-i5,2017-18,Boston - Haynes Early Education Center,00350010, 72, 17.9, 222, 45.9, 54.1, 47.7, 17.1,66.2 +NA,NA,a-curv-i5,2017-18,Boston - Henry Grew,00350135, 85, 20.6, 251, 55.4, 44.6, 22.3, 8.0,68.1 +NA,NA,a-curv-i5,2017-18,Boston - Higginson,00350015, 72, 16.0, 184, 46.7, 53.3, 50.0, 27.2,82.1 +NA,NA,a-curv-i5,2017-18,Boston - Higginson/Lewis K-8,00350377, 154, 12.9, 298, 46.6, 53.4, 23.8, 37.9,79.9 +NA,NA,a-curv-i5,2017-18,Boston - Horace Mann School for the Deaf,00350750, 123, 6.2, 91, 38.5, 61.5, 68.1, 96.7,74.7 +NA,NA,a-curv-i5,2017-18,Boston - Hugh Roe O'Donnell,00350141, 83, 20.0, 263, 50.2, 49.8, 73.4, 11.8,57.4 +NA,NA,a-curv-i5,2017-18,Boston - Jackson Mann,00350013, 455, 14.3, 666, 43.1, 56.9, 42.0, 28.1,67.4 +NA,NA,a-curv-i5,2017-18,Boston - James Condon Elementary,00350146, 550, 20.2, 949, 47.4, 52.6, 30.6, 24.7,67.1 +NA,NA,a-curv-i5,2017-18,Boston - James J Chittick,00350154, 175, 15.5, 324, 44.4, 55.6, 19.4, 32.4,70.1 +NA,NA,a-curv-i5,2017-18,Boston - James Otis,00350156, 184, 19.8, 395, 48.1, 51.9, 59.2, 12.7,52.4 +NA,NA,a-curv-i5,2017-18,Boston - James P Timilty Middle,00350485, 164, 18.2, 356, 50.6, 49.4, 25.3, 21.6,68 +NA,NA,a-curv-i5,2017-18,Boston - James W Hennigan,00350153, 365, 16.0, 609, 52.9, 47.1, 49.6, 22.3,71.6 +NA,NA,a-curv-i5,2017-18,Boston - Jeremiah E Burke High,00350525, 145, 19.3, 499, 46.3, 53.7, 35.5, 11.2,60.5 +NA,NA,a-curv-i5,2017-18,Boston - John D Philbrick,00350172, 73, 21.7, 171, 47.4, 52.6, 17.5, 14.0,49.1 +NA,NA,a-curv-i5,2017-18,Boston - John F Kennedy,00350166, 156, 17.1, 406, 51.0, 49.0, 44.6, 17.2,67.7 +NA,NA,a-curv-i5,2017-18,Boston - John W McCormack,00350179, 194, 19.3, 423, 45.4, 54.6, 38.1, 29.6,74.7 +NA,NA,a-curv-i5,2017-18,Boston - John Winthrop,00350180, 130, 17.6, 323, 52.6, 47.4, 21.4, 16.4,76.5 +NA,NA,a-curv-i5,2017-18,Boston - Joseph J Hurley,00350182, 133, 20.9, 368, 50.3, 49.7, 54.1, 16.3,52.2 +NA,NA,a-curv-i5,2017-18,Boston - Joseph Lee,00350183, 208, 19.8, 650, 45.4, 54.6, 17.2, 36.8,66 +NA,NA,a-curv-i5,2017-18,Boston - Joseph P Manning,00350184, 89, 14.0, 157, 51.0, 49.0, 7.6, 31.2,31.8 +NA,NA,a-curv-i5,2017-18,Boston - Joseph P Tynan,00350181, 148, 11.0, 234, 41.9, 58.1, 23.9, 44.0,74.8 +NA,NA,a-curv-i5,2017-18,Boston - Josiah Quincy,00350286, 630, 18.5, 834, 50.2, 49.8, 52.2, 16.1,51.6 +NA,NA,a-curv-i5,2017-18,Boston - Joyce Kilmer,00350190, 190, 17.3, 475, 48.4, 51.6, 9.7, 25.1,25.1 +NA,NA,a-curv-i5,2017-18,Boston - King K-8,00350376, 207, 19.5, 497, 49.7, 50.3, 22.5, 21.9,76.1 +NA,NA,a-curv-i5,2017-18,Boston - Lee Academy,00350001, 95, 16.9, 231, 47.6, 52.4, 29.9, 29.0,59.7 +NA,NA,a-curv-i5,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 247, 16.5, 565, 45.3, 54.7, 44.1, 26.5,73.1 +NA,NA,a-curv-i5,2017-18,Boston - Lyndon,00350262, 248, 17.4, 590, 48.6, 51.4, 12.2, 18.0,29.2 +NA,NA,a-curv-i5,2017-18,Boston - Lyon K-8,00350004, 107, 13.0, 130, 43.8, 56.2, 6.9, 32.3,48.5 +NA,NA,a-curv-i5,2017-18,Boston - Lyon Upper 9-12,00350655, 57, 14.2, 131, 43.5, 56.5, 15.3, 35.9,50.4 +NA,NA,a-curv-i5,2017-18,Boston - Madison Park High,00350537, 407, 14.8, 842, 42.4, 57.6, 32.8, 33.6,67.6 +NA,NA,a-curv-i5,2017-18,Boston - Manassah E Bradley,00350215, 107, 19.1, 288, 46.5, 53.5, 23.3, 19.4,44.8 +NA,NA,a-curv-i5,2017-18,Boston - Margarita Muniz Academy,00350549, 92, 19.6, 299, 57.9, 42.1, 42.1, 11.7,68.6 +NA,NA,a-curv-i5,2017-18,Boston - Mario Umana Academy,00350656, 394, 18.9," 1,013", 46.8, 53.2, 59.5, 15.1,59.7 +NA,NA,a-curv-i5,2017-18,Boston - Mather,00350227, 307, 20.2, 634, 49.8, 50.2, 40.5, 15.9,61.5 +NA,NA,a-curv-i5,2017-18,Boston - Mattapan Early Elementary School,00350016, 102, 15.9, 348, 39.4, 60.6, 41.4, 32.8,63.8 +NA,NA,a-curv-i5,2017-18,Boston - Maurice J Tobin,00350229, 175, 20.2, 442, 53.8, 46.2, 24.0, 13.6,77.6 +NA,NA,a-curv-i5,2017-18,Boston - Michael J Perkins,00350231, 86, 19.5, 219, 53.9, 46.1, 10.0, 11.9,79.9 +NA,NA,a-curv-i5,2017-18,Boston - Mildred Avenue K-8,00350378, 233, 16.9, 567, 49.0, 51.0, 28.6, 21.0,66.5 +NA,NA,a-curv-i5,2017-18,Boston - Mission Hill School,00350382, 126, 8.6, 244, 40.6, 59.0, 15.6, 35.7,45.1 +NA,NA,a-curv-i5,2017-18,Boston - Mozart,00350237, 92, 15.1, 183, 39.9, 60.1, 15.8, 24.0,32.8 +NA,NA,a-curv-i5,2017-18,Boston - Nathan Hale,00350243, 67, 21.8, 160, 53.1, 46.9, 10.0, 16.3,56.3 +6.4850241545893725,5,a-curv-i5,2017-18,Boston - New Mission High School,00350542, 207, 15.5, 388, 47.9, 52.1, 4.4, 13.9,51,392 +NA,NA,a-curv-i5,2017-18,Boston - O W Holmes,00350138, 156, 16.4, 346, 48.3, 51.7, 15.3, 32.9,75.4 +NA,NA,a-curv-i5,2017-18,Boston - O'Bryant School Math/Science,00350575, 437, 22.8," 1,545", 56.2, 43.8, 1.2, 3.7,43.8 +NA,NA,a-curv-i5,2017-18,Boston - Oliver Hazard Perry,00350255, 132, 12.3, 226, 43.8, 56.2, 15.9, 25.7,46.5 +NA,NA,a-curv-i5,2017-18,Boston - Orchard Gardens,00350257, 458, 18.9, 913, 49.4, 50.6, 51.6, 15.6,63.5 +NA,NA,a-curv-i5,2017-18,Boston - Patrick J Kennedy,00350264, 108, 19.9, 309, 46.3, 53.7, 66.3, 18.1,58.3 +NA,NA,a-curv-i5,2017-18,Boston - Paul A Dever,00350268, 265, 16.6, 414, 47.8, 52.2, 46.9, 14.7,79.5 +NA,NA,a-curv-i5,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 64, 21.9, 251, 49.8, 50.2, 17.9, 13.1,70.1 +NA,NA,a-curv-i5,2017-18,Boston - Phineas Bates,00350278, 100, 19.9, 269, 48.7, 51.3, 30.1, 27.5,46.1 +NA,NA,a-curv-i5,2017-18,Boston - Quincy Upper School,00350565, 204, 20.7, 512, 47.9, 52.1, 11.5, 17.8,61.3 +NA,NA,a-curv-i5,2017-18,Boston - Rafael Hernandez,00350691, 172, 21.4, 385, 52.7, 47.3, 58.7, 7.8,58.7 +NA,NA,a-curv-i5,2017-18,Boston - Richard J Murphy,00350240, 441, 21.8, 956, 47.0, 53.0, 23.0, 14.5,46.2 +NA,NA,a-curv-i5,2017-18,Boston - Roger Clap,00350298, 56, 17.3, 156, 53.2, 46.8, 30.8, 26.3,61.5 +NA,NA,a-curv-i5,2017-18,Boston - Samuel Adams,00350302, 144, 13.4, 293, 49.8, 50.2, 60.1, 22.5,49.8 +NA,NA,a-curv-i5,2017-18,Boston - Samuel W Mason,00350304, 85, 18.3, 254, 44.1, 55.9, 26.4, 32.3,59.8 +NA,NA,a-curv-i5,2017-18,Boston - Sarah Greenwood,00350308, 263, 16.5, 440, 48.9, 51.1, 48.2, 24.3,72.3 +NA,NA,a-curv-i5,2017-18,Boston - Snowden International School at Copley,00350690, 146, 18.2, 457, 51.9, 48.1, 12.0, 22.8,54.3 +NA,NA,a-curv-i5,2017-18,Boston - TechBoston Academy,00350657, 511, 14.4, 958, 45.0, 55.0, 24.6, 20.7,64.9 +NA,NA,a-curv-i5,2017-18,Boston - The English High,00350535, 204, 15.5, 549, 43.2, 56.8, 38.3, 18.6,66.5 +NA,NA,a-curv-i5,2017-18,Boston - Thomas J Kenny,00350328, 131, 18.1, 322, 48.1, 51.9, 31.1, 23.0,63.4 +NA,NA,a-curv-i5,2017-18,Boston - UP Academy Holland,00350167, 230, 25.0, 849, 50.2, 49.8, 31.1, 15.8,72.6 +NA,NA,a-curv-i5,2017-18,Boston - Urban Science Academy,00350579, 256, 14.6, 405, 39.5, 60.2, 15.1, 25.4,52.1 +NA,NA,a-curv-i5,2017-18,Boston - Warren-Prescott,00350346, 256, 19.3, 596, 46.6, 53.4, 13.1, 19.6,44 +NA,NA,a-curv-i5,2017-18,Boston - Washington Irving Middle,00350445, 178, 16.0, 363, 51.5, 48.5, 26.4, 27.8,64.2 +NA,NA,a-curv-i5,2017-18,Boston - West Roxbury Academy,00350658, 192, 15.4, 489, 45.4, 54.6, 31.1, 20.4,56.2 +NA,NA,a-curv-i5,2017-18,Boston - William E Russell,00350366, 114, 21.8, 427, 48.9, 51.1, 56.0, 10.8,63.7 +NA,NA,a-curv-i5,2017-18,Boston - William Ellery Channing,00350360, 79, 19.4, 220, 50.5, 49.5, 28.2, 9.5,63.6 +NA,NA,a-curv-i5,2017-18,Boston - William H Ohrenberger,00350258, 373, 20.1, 673, 46.4, 53.6, 25.0, 20.2,48.6 +NA,NA,a-curv-i5,2017-18,Boston - William McKinley,00350363, 467, 7.1, 381, 25.7, 74.3, 21.5, 93.2,77.7 +NA,NA,a-curv-i5,2017-18,Boston - William Monroe Trotter,00350370, 192, 20.5, 536, 48.5, 51.5, 13.6, 16.4,79.3 +NA,NA,a-curv-i5,2017-18,Boston - Winship Elementary,00350374, 114, 15.1, 220, 45.9, 54.1, 33.2, 21.4,45 +NA,NA,a-curv-i5,2017-18,Boston - Young Achievers,00350380, 202, 19.4, 580, 45.9, 54.1, 27.9, 23.3,67.1 +NA,NA,a-curv-i5,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 247, 21.0, 710, 51.4, 48.6, 3.8, 17.6,28.5 +NA,NA,a-curv-i5,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 311, 15.7, 512, 53.7, 46.3, 6.3, 24.0,56.4 +NA,NA,a-curv-i5,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 258, 13.7, 457, 48.4, 51.6, 14.9, 30.0,62.1 +NA,NA,a-curv-i5,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 97, 36.6, 489, 48.5, 51.5, 16.0, 22.7,37.4 +NA,NA,a-curv-i5,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 236, 19.2, 934, 52.0, 48.0, 11.7, 13.7,48.7 +6.5,5,a-curv-i5,2017-18,Bourne - Bourne High School,00360505, 256, 15.7, 478, 52.7, 47.3, 0.0, 13.0,23,480 +NA,NA,a-curv-i5,2017-18,Bourne - Bourne Middle School,00360325, 360, 19.0, 702, 50.4, 49.6, 1.1, 15.7,25.4 +NA,NA,a-curv-i5,2017-18,Bourne - Bournedale Elementary School,00360005, 241, 17.6, 450, 46.2, 53.8, 0.9, 21.1,27.1 +NA,NA,a-curv-i5,2017-18,Bourne - Peebles Elementary School,00360010, 207, 19.0, 344, 52.3, 47.7, 1.2, 14.2,27.9 +NA,NA,a-curv-i5,2017-18,Boxford - Harry Lee Cole,00380005, 126, 13.8, 337, 46.6, 53.4, 0.9, 19.9,5 +NA,NA,a-curv-i5,2017-18,Boxford - Spofford Pond,00380013, 186, 16.4, 396, 50.8, 49.2, 0.3, 18.2,3.8 +NA,NA,a-curv-i5,2017-18,Boylston - Boylston Elementary,00390005, 158, 18.9, 303, 52.1, 47.9, 1.7, 15.5,8.3 +NA,NA,a-curv-i5,2017-18,Braintree - Archie T Morrison,00400033, 227, 18.9, 429, 49.9, 50.1, 9.6, 17.2,29.6 +NA,NA,a-curv-i5,2017-18,Braintree - Braintree High,00400505, 884, 16.5," 1,827", 48.8, 51.2, 4.7, 22.9,15.9 +NA,NA,a-curv-i5,2017-18,Braintree - Donald Ross,00400050, 154, 18.8, 276, 48.6, 51.4, 15.6, 12.7,29.3 +NA,NA,a-curv-i5,2017-18,Braintree - East Middle School,00400305, 407, 16.5, 724, 49.0, 50.8, 2.9, 19.9,21.1 +NA,NA,a-curv-i5,2017-18,Braintree - Highlands,00400015, 218, 20.4, 428, 51.6, 48.4, 5.6, 18.9,11.9 +NA,NA,a-curv-i5,2017-18,Braintree - Hollis,00400005, 308, 14.9, 446, 49.8, 50.2, 8.1, 26.2,17 +NA,NA,a-curv-i5,2017-18,Braintree - Liberty,00400025, 218, 22.1, 462, 50.6, 49.4, 7.1, 16.7,12.3 +NA,NA,a-curv-i5,2017-18,Braintree - Mary E Flaherty School,00400020, 175, 20.8, 373, 52.3, 47.7, 8.0, 20.6,18 +NA,NA,a-curv-i5,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 113, 17.6, 253, 39.9, 60.1, 10.3, 10.7,22.5 +NA,NA,a-curv-i5,2017-18,Braintree - South Middle School,00400310, 342, 17.8, 668, 51.8, 48.2, 1.0, 22.6,13.8 +NA,NA,a-curv-i5,2017-18,Brewster - Eddy Elementary,00410010, 135, 20.2, 242, 51.2, 48.8, 4.1, 23.1,20.2 +NA,NA,a-curv-i5,2017-18,Brewster - Stony Brook Elementary,00410005, 122, 18.3, 242, 48.3, 51.7, 3.3, 17.4,26.9 +NA,NA,a-curv-i5,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 80, 17.6, 314, 51.3, 48.7, 23.2, 24.2,58.6 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 173, 23.7, 511, 44.4, 55.6, 1.4, 13.7,12.5 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 588, 16.9," 1,432", 52.5, 47.5, 1.4, 9.7,12 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 154, 23.3, 509, 49.7, 50.3, 2.0, 12.0,19.6 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 102, 22.6, 320, 48.8, 51.3, 3.4, 17.8,20 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 323, 20.7," 1,081", 46.8, 53.2, 2.3, 23.2,16.6 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 262, 22.2, 683, 46.3, 53.7, 0.9, 14.3,16.1 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 24, 3.5, 22, 45.5, 54.5, 0.0, 100.0,50 +NA,NA,a-curv-i5,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 282, 23.3, 810, 47.8, 52.2, 1.2, 16.8,17.7 +NA,NA,a-curv-i5,2017-18,Brimfield - Brimfield Elementary,00430005, 85, 17.8, 300, 50.0, 50.0, 0.0, 17.0,18 +NA,NA,a-curv-i5,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 322, 17.5, 455, 70.5, 29.0, 0.0, 11.6,20 +NA,NA,a-curv-i5,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 992, 17.3," 1,268", 43.0, 56.8, 0.2, 12.5,23.5 +NA,NA,a-curv-i5,2017-18,Brockton - Ashfield Middle School,00440421, 245, 19.2, 528, 47.3, 52.7, 22.3, 14.2,46.2 +NA,NA,a-curv-i5,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 27, 11.3, 304, 40.8, 59.2, 12.5, 60.5,54.6 +6.5777777777777775,5,a-curv-i5,2017-18,Brockton - Brockton Champion High School,00440515, 99, 9.1, 154, 41.6, 58.4, 9.7, 50.6,70.1,176 +NA,NA,a-curv-i5,2017-18,Brockton - Brockton High,00440505," 1,939", 18.4," 4,187", 48.5, 51.5, 19.2, 11.7,44.9 +NA,NA,a-curv-i5,2017-18,Brockton - Brookfield,00440010, 272, 19.8, 657, 46.3, 53.7, 37.0, 14.6,49.5 +NA,NA,a-curv-i5,2017-18,Brockton - Downey,00440110, 345, 15.8, 656, 43.8, 56.3, 11.0, 31.9,61.9 +NA,NA,a-curv-i5,2017-18,Brockton - Dr W Arnone Community School,00440001, 291, 20.5, 716, 43.7, 56.3, 13.0, 21.2,63.1 +NA,NA,a-curv-i5,2017-18,Brockton - East Middle School,00440405, 477, 19.9, 520, 47.3, 52.7, 43.1, 18.3,58.1 +NA,NA,a-curv-i5,2017-18,Brockton - Edgar B Davis,00440023, 475, 22.8," 1,027", 50.9, 49.1, 22.3, 8.0,53.9 +NA,NA,a-curv-i5,2017-18,Brockton - Edison Academy,00440520, 228, 12.2, 334, 45.5, 54.5, 63.2, 10.8,54.8 +NA,NA,a-curv-i5,2017-18,Brockton - Frederick Douglass Academy,00440080, 78, 8.3, 88, 31.8, 68.2, 15.9, 29.5,68.2 +NA,NA,a-curv-i5,2017-18,Brockton - Gilmore Elementary School,00440055, 189, 23.8, 544, 49.3, 50.7, 36.2, 7.7,64.3 +NA,NA,a-curv-i5,2017-18,Brockton - Hancock,00440045, 205, 26.4, 660, 52.1, 47.9, 8.5, 9.1,43.2 +NA,NA,a-curv-i5,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 127, 6.1, 69, 29.0, 71.0, 11.6, 98.6,71 +NA,NA,a-curv-i5,2017-18,Brockton - John F Kennedy,00440017, 231, 21.9, 617, 50.6, 49.4, 25.1, 13.0,44.2 +NA,NA,a-curv-i5,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 486, 22.1, 703, 53.8, 46.2, 13.5, 12.7,44.2 +NA,NA,a-curv-i5,2017-18,Brockton - Louis F Angelo Elementary,00440065, 349, 21.8, 917, 48.1, 51.9, 24.9, 19.5,55.5 +NA,NA,a-curv-i5,2017-18,Brockton - Manthala George Jr. School,00440003, 368, 21.7, 953, 48.8, 51.2, 37.1, 19.2,58.7 +NA,NA,a-curv-i5,2017-18,Brockton - Mary E. Baker School,00440002, 337, 20.1, 816, 47.7, 52.3, 22.2, 15.2,48.7 +NA,NA,a-curv-i5,2017-18,Brockton - North Middle School,00440410, 346, 24.3, 654, 44.3, 55.7, 39.8, 14.2,58.6 +NA,NA,a-curv-i5,2017-18,Brockton - Oscar F Raymond,00440078, 303, 25.1, 929, 49.1, 50.9, 36.7, 10.0,63.1 +NA,NA,a-curv-i5,2017-18,Brockton - South Middle School,00440415, 172, 25.6, 504, 47.8, 52.2, 12.7, 16.9,49.6 +NA,NA,a-curv-i5,2017-18,Brockton - West Middle School,00440420, 363, 22.3, 673, 48.7, 51.3, 10.7, 17.8,47.7 +NA,NA,a-curv-i5,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 716, 19.9," 1,738", 51.7, 48.3, 7.5, 10.8,44.6 +NA,NA,a-curv-i5,2017-18,Brookfield - Brookfield Elementary,00450005, 77, 20.3, 317, 49.2, 50.8, 0.0, 15.1,26.8 +NA,NA,a-curv-i5,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 15.4, 77, 54.5, 45.5, 10.4, 18.2,10.4 +NA,NA,a-curv-i5,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 6, 11.8, 71, 45.1, 54.9, 7.0, 35.2,14.1 +NA,NA,a-curv-i5,2017-18,Brookline - Brookline High,00460505," 1,150", 14.2," 2,080", 49.9, 49.9, 4.0, 15.6,11 +NA,NA,a-curv-i5,2017-18,Brookline - Edith C Baker,00460005, 459, 17.3, 739, 48.7, 51.3, 12.3, 16.2,7.7 +NA,NA,a-curv-i5,2017-18,Brookline - Edward Devotion,00460015, 508, 17.2, 810, 47.3, 52.7, 14.8, 18.0,11.6 +NA,NA,a-curv-i5,2017-18,Brookline - Heath,00460025, 301, 19.0, 564, 50.5, 49.5, 4.8, 10.6,5.3 +NA,NA,a-curv-i5,2017-18,Brookline - John D Runkle,00460045, 314, 21.0, 627, 46.4, 53.6, 9.1, 20.6,7.2 +NA,NA,a-curv-i5,2017-18,Brookline - Lawrence,00460030, 414, 18.5, 706, 47.9, 52.1, 19.5, 14.3,9.6 +NA,NA,a-curv-i5,2017-18,Brookline - Michael Driscoll,00460020, 327, 19.9, 623, 46.4, 53.6, 9.3, 14.0,5.6 +NA,NA,a-curv-i5,2017-18,Brookline - Pierce,00460040, 473, 19.2, 844, 51.5, 48.5, 16.7, 11.8,10.7 +NA,NA,a-curv-i5,2017-18,Brookline - The Lynch Center,00460060, 5, 14.0, 69, 43.5, 56.5, 15.9, 37.7,18.8 +NA,NA,a-curv-i5,2017-18,Brookline - William H Lincoln,00460035, 349, 18.0, 575, 52.2, 47.8, 16.7, 18.1,12.3 +NA,NA,a-curv-i5,2017-18,Burlington - Burlington High,00480505, 569, 13.9," 1,102", 49.5, 50.5, 1.9, 9.9,10.4 +NA,NA,a-curv-i5,2017-18,Burlington - Fox Hill,00480007, 177, 16.6, 402, 49.5, 50.5, 3.5, 11.7,7.7 +NA,NA,a-curv-i5,2017-18,Burlington - Francis Wyman Elementary,00480035, 244, 16.2, 533, 48.8, 51.2, 7.7, 11.6,12 +NA,NA,a-curv-i5,2017-18,Burlington - Marshall Simonds Middle,00480303, 718, 19.8, 811, 48.8, 51.2, 1.8, 12.6,10.6 +NA,NA,a-curv-i5,2017-18,Burlington - Memorial,00480015, 177, 16.7, 402, 51.0, 49.0, 9.0, 14.9,12.7 +NA,NA,a-curv-i5,2017-18,Burlington - Pine Glen Elementary,00480020, 148, 15.8, 317, 52.1, 47.9, 12.0, 13.2,12.3 +NA,NA,a-curv-i5,2017-18,Cambridge - Amigos School,00490006, 194, 18.3, 397, 54.2, 45.8, 7.6, 15.1,18.4 +NA,NA,a-curv-i5,2017-18,Cambridge - Cambridge Rindge and Latin,00490506," 1,070", 15.4," 2,017", 47.9, 52.1, 6.4, 17.2,28.2 +NA,NA,a-curv-i5,2017-18,Cambridge - Cambridge Street Upper School,00490305, 146, 16.4, 254, 51.2, 48.8, 1.6, 33.5,42.5 +NA,NA,a-curv-i5,2017-18,Cambridge - Cambridgeport,00490007, 145, 16.7, 337, 46.9, 53.1, 4.5, 19.6,26.1 +NA,NA,a-curv-i5,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 219, 12.5, 302, 44.7, 55.3, 7.9, 26.8,39.7 +NA,NA,a-curv-i5,2017-18,Cambridge - Graham and Parks,00490080, 174, 15.7, 397, 50.4, 49.6, 36.3, 17.6,22.2 +NA,NA,a-curv-i5,2017-18,Cambridge - Haggerty,00490020, 124, 14.8, 252, 49.6, 50.4, 8.3, 19.0,24.6 +NA,NA,a-curv-i5,2017-18,Cambridge - John M Tobin,00490065, 228, 9.0, 293, 46.8, 53.2, 4.8, 19.1,26.3 +NA,NA,a-curv-i5,2017-18,Cambridge - Kennedy-Longfellow,00490040, 161, 14.6, 314, 49.7, 50.3, 32.8, 16.2,36.9 +NA,NA,a-curv-i5,2017-18,Cambridge - King Open,00490035, 239, 11.1, 327, 47.1, 52.9, 8.9, 30.0,29.7 +NA,NA,a-curv-i5,2017-18,Cambridge - Maria L. Baldwin,00490005, 191, 14.7, 352, 51.4, 48.6, 3.7, 20.2,20.7 +NA,NA,a-curv-i5,2017-18,Cambridge - Martin Luther King Jr.,00490030, 181, 15.8, 321, 50.2, 49.8, 4.7, 15.9,21.8 +NA,NA,a-curv-i5,2017-18,Cambridge - Morse,00490045, 193, 13.0, 310, 45.8, 54.2, 9.4, 30.6,35.2 +NA,NA,a-curv-i5,2017-18,Cambridge - Peabody,00490050, 129, 20.0, 326, 51.2, 48.8, 5.8, 25.2,23.3 +NA,NA,a-curv-i5,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 133, 19.0, 266, 48.5, 51.5, 2.6, 25.9,39.8 +NA,NA,a-curv-i5,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 115, 22.2, 277, 50.5, 49.5, 1.4, 27.4,23.5 +NA,NA,a-curv-i5,2017-18,Cambridge - Vassal Lane Upper School,00490320, 141, 17.7, 280, 58.6, 41.4, 13.2, 16.4,30 +NA,NA,a-curv-i5,2017-18,Canton - Canton High,00500505, 494, 17.4, 986, 50.4, 49.3, 0.9, 9.3,13.4 +NA,NA,a-curv-i5,2017-18,Canton - Dean S Luce,00500020, 454, 19.2, 498, 50.0, 50.0, 5.8, 9.6,14.7 +NA,NA,a-curv-i5,2017-18,Canton - John F Kennedy,00500017, 450, 20.6, 534, 47.2, 52.8, 3.6, 11.2,10.9 +NA,NA,a-curv-i5,2017-18,Canton - Lt Peter M Hansen,00500012, 440, 18.8, 476, 50.2, 49.8, 4.2, 10.3,15.8 +NA,NA,a-curv-i5,2017-18,Canton - Rodman Early Childhood Center,00500010, 32, 12.9, 103, 33.0, 67.0, 1.0, 41.7,19.4 +NA,NA,a-curv-i5,2017-18,Canton - Wm H Galvin Middle,00500305, 514, 17.1, 738, 51.5, 48.5, 1.2, 12.2,14.1 +NA,NA,a-curv-i5,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 174, 15.8, 243, 55.1, 44.9, 1.6, 15.6,16.5 +NA,NA,a-curv-i5,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 426, 13.3, 601, 35.8, 64.2, 1.5, 29.0,32.9 +NA,NA,a-curv-i5,2017-18,Carlisle - Carlisle School,00510025, 236, 17.6, 622, 45.7, 54.3, 3.2, 16.9,4 +NA,NA,a-curv-i5,2017-18,Carver - Carver Elementary School,00520015, 406, 19.8, 786, 50.4, 49.6, 1.3, 21.8,22.5 +6.4,5,a-curv-i5,2017-18,Carver - Carver Middle/High School,00520405, 396, 15.1, 784, 49.0, 51.0, 0.3, 21.0,20.2,792 +NA,NA,a-curv-i5,2017-18,Central Berkshire - Becket Washington School,06350005, 52, 17.7, 126, 46.0, 54.0, 0.0, 22.2,28.6 +NA,NA,a-curv-i5,2017-18,Central Berkshire - Craneville,06350025, 162, 20.6, 410, 44.9, 55.1, 1.7, 14.6,34.4 +NA,NA,a-curv-i5,2017-18,Central Berkshire - Kittredge,06350035, 59, 18.4, 160, 51.3, 48.8, 0.0, 25.0,35.6 +NA,NA,a-curv-i5,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 204, 19.1, 385, 47.8, 52.2, 0.0, 15.8,30.1 +NA,NA,a-curv-i5,2017-18,Central Berkshire - Wahconah Regional High,06350505, 301, 16.1, 537, 51.6, 48.4, 0.4, 9.9,23.8 +NA,NA,a-curv-i5,2017-18,Chelmsford - Byam School,00560030, 179, 22.2, 507, 47.5, 52.5, 3.9, 15.6,15.4 +NA,NA,a-curv-i5,2017-18,Chelmsford - Center Elementary School,00560005, 156, 22.7, 455, 52.5, 47.5, 7.0, 14.9,13.6 +NA,NA,a-curv-i5,2017-18,Chelmsford - Charles D Harrington,00560025, 172, 22.3, 492, 45.1, 54.9, 5.7, 13.6,16.3 +NA,NA,a-curv-i5,2017-18,Chelmsford - Chelmsford High,00560505, 739, 16.8," 1,480", 50.3, 49.7, 1.6, 12.8,9.2 +NA,NA,a-curv-i5,2017-18,Chelmsford - Col Moses Parker School,00560305, 419, 15.9, 722, 48.1, 51.9, 2.6, 18.1,10.9 +NA,NA,a-curv-i5,2017-18,Chelmsford - Community Education Center,00560001, 96, 13.8, 166, 38.0, 62.0, 0.0, 54.2,18.7 +NA,NA,a-curv-i5,2017-18,Chelmsford - McCarthy Middle School,00560310, 468, 16.2, 817, 47.9, 52.1, 3.3, 18.0,12 +NA,NA,a-curv-i5,2017-18,Chelmsford - South Row,00560015, 156, 20.1, 403, 46.9, 53.1, 6.7, 9.9,9.4 +NA,NA,a-curv-i5,2017-18,Chelsea - Chelsea High,00570505, 554, 19.1," 1,599", 46.1, 53.9, 36.1, 12.9,57.1 +NA,NA,a-curv-i5,2017-18,Chelsea - Clark Avenue School,00570050, 231, 24.1, 547, 45.9, 54.1, 2.2, 16.6,59 +NA,NA,a-curv-i5,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 26, 22.2, 578, 45.7, 54.3, 48.3, 15.9,66.8 +NA,NA,a-curv-i5,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 195, 24.2, 533, 48.2, 51.8, 4.5, 21.6,64.4 +NA,NA,a-curv-i5,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 22, 25.7, 565, 47.4, 52.6, 42.8, 13.8,69 +NA,NA,a-curv-i5,2017-18,Chelsea - George F. Kelly Elementary,00570035, 27, 22.7, 554, 50.2, 49.8, 33.9, 14.8,59 +NA,NA,a-curv-i5,2017-18,Chelsea - Joseph A. Browne School,00570055, 208, 26.4, 632, 48.7, 51.3, 61.9, 6.3,61.2 +NA,NA,a-curv-i5,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 48, 20.8, 982, 49.4, 50.6, 56.0, 15.8,62.4 +NA,NA,a-curv-i5,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 23, 21.4, 492, 45.5, 54.5, 36.4, 18.7,63.4 +NA,NA,a-curv-i5,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 64, 13.6, 138, 50.7, 49.3, 0.0, 28.3,26.1 +NA,NA,a-curv-i5,2017-18,Chicopee - Barry,00610003, 80, 21.1, 422, 41.7, 58.3, 12.1, 23.5,48.1 +NA,NA,a-curv-i5,2017-18,Chicopee - Belcher,00610010, 68, 19.6, 269, 49.1, 50.9, 17.1, 13.0,61.3 +NA,NA,a-curv-i5,2017-18,Chicopee - Bellamy Middle,00610305, 465, 19.4, 843, 49.5, 50.5, 5.0, 19.6,51.5 +NA,NA,a-curv-i5,2017-18,Chicopee - Bowe,00610015, 79, 24.4, 496, 48.8, 51.2, 12.9, 17.3,71.8 +NA,NA,a-curv-i5,2017-18,Chicopee - Bowie,00610020, 94, 18.4, 337, 48.4, 51.6, 0.9, 12.5,38.9 +NA,NA,a-curv-i5,2017-18,Chicopee - Chicopee Academy,00610021, 110, 6.2, 95, 29.5, 70.5, 4.2, 29.5,76.8 +6.39882697947214,5,a-curv-i5,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 682, 15.7," 1,397", 46.1, 53.9, 3.9, 14.1,39.9,1365 +NA,NA,a-curv-i5,2017-18,Chicopee - Chicopee High,00610505, 499, 15.9, 961, 49.7, 50.1, 6.2, 18.7,49 +NA,NA,a-curv-i5,2017-18,Chicopee - Dupont Middle,00610310, 310, 19.8, 797, 43.9, 56.1, 6.5, 19.9,54.1 +NA,NA,a-curv-i5,2017-18,Chicopee - Fairview Elementary,00610050, 105, 19.0, 463, 47.5, 52.5, 7.3, 15.6,67.4 +NA,NA,a-curv-i5,2017-18,Chicopee - Gen John J Stefanik,00610090, 111, 18.6, 411, 47.9, 52.1, 12.7, 18.7,75.2 +NA,NA,a-curv-i5,2017-18,Chicopee - Lambert-Lavoie,00610040, 87, 18.1, 312, 47.4, 52.6, 0.6, 13.8,44.9 +NA,NA,a-curv-i5,2017-18,Chicopee - Litwin,00610022, 115, 18.5, 424, 48.8, 51.2, 7.5, 19.3,50 +NA,NA,a-curv-i5,2017-18,Chicopee - Streiber Memorial School,00610065, 105, 15.5, 283, 46.3, 53.7, 0.0, 22.3,40.3 +NA,NA,a-curv-i5,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 23, 12.5, 284, 39.1, 60.9, 1.1, 43.3,38.7 +NA,NA,a-curv-i5,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 175, 19.9, 387, 48.1, 51.9, 3.9, 21.7,18.1 +NA,NA,a-curv-i5,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 120, 13.3, 264, 50.4, 49.2, 14.8, 23.1,56.1 +NA,NA,a-curv-i5,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 114, 14.5, 255, 54.5, 45.5, 19.6, 23.9,54.1 +NA,NA,a-curv-i5,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 82, 15.7, 217, 54.4, 45.2, 18.0, 30.4,65 +NA,NA,a-curv-i5,2017-18,Clarksburg - Clarksburg Elementary,00630010, 108, 15.5, 191, 51.3, 48.7, 0.0, 24.6,29.8 +NA,NA,a-curv-i5,2017-18,Clinton - Clinton Elementary,00640050, 147, 20.3, 697, 47.5, 52.5, 12.3, 24.8,36 +NA,NA,a-curv-i5,2017-18,Clinton - Clinton Middle School,00640305, 387, 19.3, 742, 44.1, 55.9, 7.8, 22.2,35.2 +NA,NA,a-curv-i5,2017-18,Clinton - Clinton Senior High,00640505, 231, 13.7, 460, 50.4, 49.6, 6.1, 18.9,28.7 +NA,NA,a-curv-i5,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 137, 15.2, 335, 49.3, 50.7, 6.3, 18.8,50.7 +6.6491017964071855,5,a-curv-i5,2017-18,Cohasset - Cohasset Middle/High School,00650505, 501, 18.3, 846, 48.9, 51.1, 0.2, 12.6,4.4,846 +NA,NA,a-curv-i5,2017-18,Cohasset - Deer Hill,00650005, 192, 21.7, 390, 46.7, 53.3, 0.3, 14.6,4.9 +NA,NA,a-curv-i5,2017-18,Cohasset - Joseph Osgood,00650010, 183, 19.1, 359, 48.7, 51.3, 0.0, 14.8,3.6 +NA,NA,a-curv-i5,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 212, 27.5, 739, 51.0, 49.0, 20.6, 13.7,35.7 +NA,NA,a-curv-i5,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 193, 13.2, 355, 51.8, 48.2, 2.5, 17.7,29.9 +NA,NA,a-curv-i5,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 108, 20.0, 320, 47.8, 52.2, 28.8, 10.9,45.9 +NA,NA,a-curv-i5,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 126, 21.3, 400, 50.5, 49.5, 40.5, 12.5,47.5 +NA,NA,a-curv-i5,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 108, 20.1, 320, 50.6, 49.4, 27.5, 9.7,50 +NA,NA,a-curv-i5,2017-18,Concord - Alcott,00670005, 157, 18.7, 482, 46.5, 53.5, 3.3, 15.4,8.9 +NA,NA,a-curv-i5,2017-18,Concord - Concord Middle,00670305, 664, 13.9, 729, 53.5, 46.5, 0.8, 16.9,6 +NA,NA,a-curv-i5,2017-18,Concord - Thoreau,00670020, 159, 17.6, 459, 45.3, 54.7, 3.3, 21.4,3.1 +NA,NA,a-curv-i5,2017-18,Concord - Willard,00670030, 150, 17.9, 438, 48.2, 51.6, 3.7, 15.3,4.6 +NA,NA,a-curv-i5,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 886, 16.0," 1,265", 52.0, 47.9, 0.4, 16.2,5.5 +NA,NA,a-curv-i5,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 74, 18.0, 448, 54.5, 45.5, 17.0, 13.2,43.3 +NA,NA,a-curv-i5,2017-18,Conway - Conway Grammar,00680005, 103, 16.4, 140, 44.3, 55.7, 0.0, 20.7,27.1 +NA,NA,a-curv-i5,2017-18,Danvers - Danvers High,00710505, 485, 15.8, 949, 49.9, 50.1, 1.3, 15.5,12.6 +NA,NA,a-curv-i5,2017-18,Danvers - Great Oak,00710015, 146, 21.1, 377, 46.7, 53.3, 1.3, 8.0,15.1 +NA,NA,a-curv-i5,2017-18,Danvers - Highlands,00710010, 146, 20.6, 371, 47.4, 52.6, 2.2, 14.3,18.1 +NA,NA,a-curv-i5,2017-18,Danvers - Holten Richmond Middle School,00710305, 577, 19.1, 832, 49.4, 50.6, 0.4, 17.7,15.3 +NA,NA,a-curv-i5,2017-18,Danvers - Ivan G Smith,00710032, 98, 23.5, 281, 55.9, 44.1, 1.1, 10.7,16 +NA,NA,a-curv-i5,2017-18,Danvers - Riverside,00710030, 141, 18.1, 382, 42.4, 57.6, 0.8, 30.6,17.8 +NA,NA,a-curv-i5,2017-18,Danvers - Willis E Thorpe,00710045, 144, 17.5, 313, 46.3, 53.7, 1.6, 16.6,16.6 +NA,NA,a-curv-i5,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 37, 18.6, 149, 47.7, 52.3, 1.3, 20.8,26.2 +NA,NA,a-curv-i5,2017-18,Dartmouth - Dartmouth High,00720505, 513, 16.9," 1,084", 48.8, 51.1, 1.8, 12.1,15 +NA,NA,a-curv-i5,2017-18,Dartmouth - Dartmouth Middle,00720050, 696, 17.0, 978, 45.8, 54.2, 1.5, 15.0,21.8 +NA,NA,a-curv-i5,2017-18,Dartmouth - George H Potter,00720030, 169, 21.2, 416, 44.5, 55.5, 4.1, 15.4,31.3 +NA,NA,a-curv-i5,2017-18,Dartmouth - James M. Quinn School,00720040, 265, 21.1, 634, 47.0, 53.0, 3.6, 19.4,23.7 +NA,NA,a-curv-i5,2017-18,Dartmouth - Joseph Demello,00720015, 189, 20.9, 438, 48.2, 51.8, 6.4, 17.1,20.3 +NA,NA,a-curv-i5,2017-18,Dedham - Avery,00730010, 66, 21.8, 324, 50.6, 49.4, 16.7, 30.9,39.8 +NA,NA,a-curv-i5,2017-18,Dedham - Dedham High,00730505, 379, 15.6, 744, 50.0, 50.0, 5.9, 16.7,18.7 +NA,NA,a-curv-i5,2017-18,Dedham - Dedham Middle School,00730305, 567, 17.0, 618, 48.5, 51.5, 5.5, 24.4,21.8 +NA,NA,a-curv-i5,2017-18,Dedham - Early Childhood Center,00730005, 69, 16.5, 284, 45.4, 54.6, 5.6, 25.4,24.6 +NA,NA,a-curv-i5,2017-18,Dedham - Greenlodge,00730025, 65, 18.6, 269, 43.9, 56.1, 3.3, 27.9,7.8 +NA,NA,a-curv-i5,2017-18,Dedham - Oakdale,00730030, 66, 19.5, 292, 50.0, 50.0, 10.6, 20.5,15.4 +NA,NA,a-curv-i5,2017-18,Dedham - Riverdale,00730045, 66, 12.9, 192, 44.3, 55.7, 11.5, 26.0,30.7 +NA,NA,a-curv-i5,2017-18,Deerfield - Deerfield Elementary,00740015, 287, 18.0, 409, 50.6, 49.4, 0.7, 22.5,17.8 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 663, 14.5," 1,038", 48.9, 51.1, 5.8, 16.3,33.7 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 78, 16.6, 346, 46.5, 53.5, 10.1, 22.5,42.2 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 51, 18.7, 292, 42.8, 57.2, 16.4, 22.3,52.4 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 278, 15.5, 447, 49.4, 50.6, 7.2, 23.5,42.1 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 183, 21.8, 543, 49.9, 50.1, 11.2, 21.7,37.8 +NA,NA,a-curv-i5,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 84, 20.5, 432, 49.3, 50.7, 10.2, 13.4,37.3 +NA,NA,a-curv-i5,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 210, 22.3, 469, 46.5, 53.5, 0.0, 10.4,15.8 +NA,NA,a-curv-i5,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 208, 19.1, 402, 46.8, 53.2, 0.0, 16.2,17.2 +6.439484978540773,5,a-curv-i5,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 466, 16.9, 919, 44.6, 55.4, 0.1, 15.8,11.9,909 +NA,NA,a-curv-i5,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 285, 19.5, 591, 50.6, 49.4, 0.3, 18.6,16.2 +NA,NA,a-curv-i5,2017-18,Dighton-Rehoboth - Palmer River,06500010, 286, 21.6, 561, 52.2, 47.8, 0.4, 14.4,12.7 +NA,NA,a-curv-i5,2017-18,Douglas - Douglas Elementary School,00770015, 120, 23.0, 368, 52.4, 47.6, 0.3, 20.1,15.5 +6.677056277056278,5,a-curv-i5,2017-18,Douglas - Douglas High School,00770505, 231, 13.2, 389, 50.6, 49.4, 0.5, 19.5,11.1,382 +NA,NA,a-curv-i5,2017-18,Douglas - Douglas Middle School,00770305, 115, 24.2, 344, 44.2, 55.8, 0.9, 16.6,16.3 +NA,NA,a-curv-i5,2017-18,Douglas - Douglas Primary School,00770005, 62, 19.4, 230, 47.4, 52.6, 0.4, 21.3,16.5 +NA,NA,a-curv-i5,2017-18,Dover - Chickering,00780005, 205, 18.1, 498, 44.2, 55.8, 4.0, 14.7,2 +NA,NA,a-curv-i5,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 368, 15.7, 668, 49.4, 50.4, 0.6, 13.8,5.1 +NA,NA,a-curv-i5,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 339, 18.3, 531, 49.2, 50.8, 0.6, 15.6,2.4 +NA,NA,a-curv-i5,2017-18,Dracut - Brookside Elementary,00790035, 187, 22.1, 458, 46.9, 53.1, 2.6, 21.2,24.9 +NA,NA,a-curv-i5,2017-18,Dracut - Dracut Senior High,00790505, 393, 18.2, 854, 50.1, 49.9, 2.2, 9.0,15.2 +NA,NA,a-curv-i5,2017-18,Dracut - George H. Englesby Elementary School,00790045, 222, 21.3, 524, 50.2, 49.8, 1.7, 18.1,27.7 +NA,NA,a-curv-i5,2017-18,Dracut - Greenmont Avenue,00790030, 117, 22.4, 291, 46.0, 54.0, 5.5, 16.8,29.2 +NA,NA,a-curv-i5,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 239, 19.5, 580, 44.5, 55.5, 1.0, 24.7,17.9 +NA,NA,a-curv-i5,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 492, 20.8, 893, 51.7, 48.3, 1.1, 15.5,22.6 +NA,NA,a-curv-i5,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 38, 20.9, 286, 53.8, 46.2, 22.4, 11.9,56.6 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 94, 21.0, 351, 46.7, 53.3, 4.8, 20.5,19.7 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 410, 18.3, 690, 47.7, 52.3, 0.4, 13.0,17.1 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 108, 22.1, 396, 48.0, 52.0, 2.8, 14.1,25.3 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 401, 17.6, 593, 53.1, 46.9, 1.2, 14.3,23.3 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 155, 19.4, 478, 45.8, 54.2, 3.6, 14.0,19.2 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 71, 20.4, 287, 45.3, 54.7, 7.0, 24.7,30.7 +NA,NA,a-curv-i5,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 467, 18.9," 1,155", 51.7, 48.2, 0.8, 9.4,16.1 +NA,NA,a-curv-i5,2017-18,Duxbury - Alden School,00820004, 310, 22.2, 687, 50.2, 49.8, 0.4, 12.7,4.9 +NA,NA,a-curv-i5,2017-18,Duxbury - Chandler Elementary,00820006, 291, 19.8, 646, 50.2, 49.8, 0.6, 18.1,6.3 +NA,NA,a-curv-i5,2017-18,Duxbury - Duxbury High,00820505, 485, 19.2," 1,056", 49.9, 50.0, 0.1, 9.6,5.2 +NA,NA,a-curv-i5,2017-18,Duxbury - Duxbury Middle,00820305, 313, 22.0, 745, 48.2, 51.8, 0.4, 15.7,5.9 +NA,NA,a-curv-i5,2017-18,East Bridgewater - Central,00830005, 240, 18.6, 600, 52.2, 47.8, 1.0, 17.7,15.8 +6.315102040816326,5,a-curv-i5,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 490, 21.5," 1,044", 51.6, 48.4, 0.9, 17.5,14.1,1032 +NA,NA,a-curv-i5,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 297, 22.9, 667, 42.9, 57.1, 0.9, 22.6,17.1 +NA,NA,a-curv-i5,2017-18,East Longmeadow - Birchland Park,00870305, 329, 19.8, 670, 46.6, 53.4, 1.6, 18.4,18.8 +NA,NA,a-curv-i5,2017-18,East Longmeadow - East Longmeadow High,00870505, 336, 18.5, 837, 49.9, 50.1, 0.8, 15.9,14.8 +NA,NA,a-curv-i5,2017-18,East Longmeadow - Mapleshade,00870010, 134, 15.6, 281, 49.5, 50.5, 2.8, 15.3,23.8 +NA,NA,a-curv-i5,2017-18,East Longmeadow - Meadow Brook,00870013, 183, 20.6, 580, 46.6, 53.4, 5.3, 19.0,19.3 +NA,NA,a-curv-i5,2017-18,East Longmeadow - Mountain View,00870015, 120, 17.3, 290, 48.6, 51.4, 1.7, 14.1,15.9 +NA,NA,a-curv-i5,2017-18,Eastham - Eastham Elementary,00850005, 143, 13.2, 187, 48.7, 51.3, 2.7, 21.4,17.6 +NA,NA,a-curv-i5,2017-18,Easthampton - Center School,00860005, 42, 19.8, 201, 45.3, 54.7, 4.5, 17.9,27.4 +NA,NA,a-curv-i5,2017-18,Easthampton - Easthampton High,00860505, 211, 15.8, 462, 53.2, 46.5, 1.9, 13.2,23.2 +NA,NA,a-curv-i5,2017-18,Easthampton - Maple,00860010, 49, 18.5, 267, 46.8, 53.2, 2.2, 27.0,39.3 +NA,NA,a-curv-i5,2017-18,Easthampton - Neil A Pepin,00860020, 39, 18.2, 180, 45.0, 55.0, 6.7, 20.0,32.2 +NA,NA,a-curv-i5,2017-18,Easthampton - White Brook Middle School,00860305, 210, 19.5, 458, 51.5, 48.3, 0.2, 19.0,26.2 +NA,NA,a-curv-i5,2017-18,Easton - Center School,00880003, 54, 19.1, 277, 41.9, 58.1, 6.1, 16.6,16.2 +NA,NA,a-curv-i5,2017-18,Easton - Easton Middle School,00880405, 467, 20.2, 895, 48.7, 51.3, 0.4, 22.0,11.3 +NA,NA,a-curv-i5,2017-18,Easton - Moreau Hall,00880020, 45, 18.9, 233, 45.9, 54.1, 5.6, 12.4,17.2 +NA,NA,a-curv-i5,2017-18,Easton - Oliver Ames High,00880505, 443, 18.5," 1,188", 53.4, 46.6, 1.1, 15.2,10.9 +NA,NA,a-curv-i5,2017-18,Easton - Parkview Elementary,00880015, 63, 18.2, 324, 48.8, 51.2, 0.6, 18.2,9.6 +NA,NA,a-curv-i5,2017-18,Easton - Richardson Olmsted School,00880025, 144, 23.7, 854, 50.1, 49.9, 1.4, 17.6,12.2 +NA,NA,a-curv-i5,2017-18,Edgartown - Edgartown Elementary,00890005, 255, 16.2, 359, 51.3, 48.7, 20.3, 23.7,28.7 +NA,NA,a-curv-i5,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 156, 18.2, 360, 61.4, 38.6, 14.7, 14.7,53.6 +NA,NA,a-curv-i5,2017-18,Erving - Erving Elementary,00910030, 56, 18.1, 144, 47.9, 52.1, 1.4, 18.8,27.1 +6.672749099639856,5,a-curv-i5,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 833, 17.4," 1,369", 58.4, 41.6, 0.3, 16.4,16,1382 +NA,NA,a-curv-i5,2017-18,Everett - Adams School,00930003, 64, 14.2, 227, 38.8, 61.2, 24.7, 15.9,46.7 +NA,NA,a-curv-i5,2017-18,Everett - Devens School,00930030, 146, 3.9, 71, 22.5, 77.5, 11.3, 76.1,71.8 +NA,NA,a-curv-i5,2017-18,Everett - Everett High,00930505, 862, 16.8," 1,952", 48.8, 51.2, 21.4, 10.3,41.1 +NA,NA,a-curv-i5,2017-18,Everett - George Keverian School,00930028, 474, 22.6, 886, 48.9, 51.1, 16.8, 19.9,49 +NA,NA,a-curv-i5,2017-18,Everett - Lafayette School,00930038, 472, 24.2, 938, 51.5, 48.5, 18.2, 23.0,46.8 +NA,NA,a-curv-i5,2017-18,Everett - Madeline English School,00930018, 493, 20.3, 823, 50.3, 49.7, 15.1, 21.4,40.7 +NA,NA,a-curv-i5,2017-18,Everett - Parlin School,00930058, 415, 24.5, 834, 51.0, 49.0, 36.5, 12.2,54.6 +NA,NA,a-curv-i5,2017-18,Everett - Sumner G. Whittier School,00930010, 306, 21.8, 650, 49.7, 50.3, 37.1, 14.6,54.2 +NA,NA,a-curv-i5,2017-18,Everett - Webster School,00930015, 304, 15.3, 744, 44.8, 55.2, 25.8, 24.2,50.9 +NA,NA,a-curv-i5,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 405, 24.2," 1,131", 50.7, 49.3, 15.3, 20.5,40.1 +NA,NA,a-curv-i5,2017-18,Fairhaven - East Fairhaven,00940010, 151, 22.0, 419, 46.1, 53.9, 4.1, 20.0,32.7 +NA,NA,a-curv-i5,2017-18,Fairhaven - Fairhaven High,00940505, 349, 15.7, 659, 52.4, 47.6, 1.5, 14.1,21.1 +NA,NA,a-curv-i5,2017-18,Fairhaven - Hastings Middle,00940305, 274, 19.4, 479, 47.8, 52.2, 0.4, 14.6,25.5 +NA,NA,a-curv-i5,2017-18,Fairhaven - Leroy Wood,00940030, 222, 20.1, 506, 50.0, 50.0, 2.6, 16.6,31.6 +NA,NA,a-curv-i5,2017-18,Fall River - B M C Durfee High,00950505," 1,188", 16.7," 2,196", 49.2, 50.8, 14.4, 16.1,57 +NA,NA,a-curv-i5,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 320, 19.7, 788, 46.7, 53.3, 23.2, 16.8,75 +NA,NA,a-curv-i5,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2017-18,Fall River - Henry Lord Community School,00950017, 335, 16.5, 677, 47.6, 52.4, 23.3, 27.9,79.9 +NA,NA,a-curv-i5,2017-18,Fall River - James Tansey,00950140, 104, 24.9, 324, 52.5, 47.5, 4.0, 15.1,42 +NA,NA,a-curv-i5,2017-18,Fall River - John J Doran,00950045, 210, 20.4, 548, 47.3, 52.7, 14.2, 25.0,77.9 +NA,NA,a-curv-i5,2017-18,Fall River - Letourneau Elementary School,00950013, 228, 22.3, 641, 50.2, 49.8, 37.6, 16.1,70.8 +NA,NA,a-curv-i5,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 240, 24.9, 757, 48.5, 51.5, 27.1, 15.2,78.5 +NA,NA,a-curv-i5,2017-18,Fall River - Matthew J Kuss Middle,00950320, 292, 19.5, 727, 53.0, 47.0, 4.7, 20.9,60.7 +NA,NA,a-curv-i5,2017-18,Fall River - Morton Middle,00950315, 267, 19.7, 596, 44.8, 55.2, 8.7, 21.5,58.2 +NA,NA,a-curv-i5,2017-18,Fall River - North End Elementary,00950005, 324, 19.1, 785, 46.1, 53.9, 10.6, 25.6,57.6 +NA,NA,a-curv-i5,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 150, 10.0, 229, 52.4, 47.6, 4.4, 28.8,82.1 +NA,NA,a-curv-i5,2017-18,Fall River - Samuel Watson,00950145, 96, 26.3, 322, 49.4, 50.6, 16.8, 13.0,78.9 +NA,NA,a-curv-i5,2017-18,Fall River - Spencer Borden,00950130, 287, 16.9, 609, 45.0, 55.0, 10.0, 26.8,59.3 +NA,NA,a-curv-i5,2017-18,Fall River - Stone PK-12 School,00950340, 77, 6.2, 59, 23.7, 76.3, 8.5, 94.9,91.5 +NA,NA,a-curv-i5,2017-18,Fall River - Talbot Innovation School,00950305, 241, 19.0, 525, 43.6, 56.4, 31.6, 21.9,73.1 +NA,NA,a-curv-i5,2017-18,Fall River - William S Greene,00950065, 314, 20.1, 803, 51.2, 48.8, 12.7, 21.9,69.2 +NA,NA,a-curv-i5,2017-18,Falmouth - East Falmouth Elementary,00960005, 80, 16.1, 258, 48.8, 51.2, 3.5, 20.9,45.3 +NA,NA,a-curv-i5,2017-18,Falmouth - Falmouth High,00960505, 683, 14.1, 840, 51.9, 48.0, 2.4, 10.1,22.4 +NA,NA,a-curv-i5,2017-18,Falmouth - Lawrence,00960405, 442, 17.1, 604, 48.0, 52.0, 3.0, 18.5,24.7 +NA,NA,a-curv-i5,2017-18,Falmouth - Morse Pond School,00960305, 253, 24.7, 553, 49.7, 50.3, 3.1, 21.9,28.6 +NA,NA,a-curv-i5,2017-18,Falmouth - Mullen-Hall,00960020, 125, 17.5, 438, 43.4, 56.6, 6.6, 12.8,26.3 +NA,NA,a-curv-i5,2017-18,Falmouth - North Falmouth Elementary,00960030, 85, 19.0, 323, 52.6, 47.4, 1.9, 17.3,19.2 +NA,NA,a-curv-i5,2017-18,Falmouth - Teaticket,00960015, 89, 15.9, 372, 43.5, 56.5, 8.3, 26.3,45.2 +NA,NA,a-curv-i5,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 76, 13.5, 123, 38.2, 61.8, 0.0, 22.0,38.2 +NA,NA,a-curv-i5,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 329, 18.3, 632, 44.9, 55.1, 5.4, 23.1,64.1 +NA,NA,a-curv-i5,2017-18,Fitchburg - Crocker Elementary,00970016, 199, 24.1, 679, 45.5, 54.5, 14.3, 27.7,62.2 +NA,NA,a-curv-i5,2017-18,Fitchburg - Fitchburg High,00970505, 549, 16.7," 1,204", 48.5, 51.5, 10.7, 20.9,53.1 +NA,NA,a-curv-i5,2017-18,Fitchburg - Goodrich Academy,00970510, 129, 7.6, 302, 45.0, 55.0, 4.6, 18.2,55.3 +NA,NA,a-curv-i5,2017-18,Fitchburg - McKay Arts Academy,00970340, 275, 21.2, 707, 53.3, 46.7, 11.6, 22.6,60 +NA,NA,a-curv-i5,2017-18,Fitchburg - Memorial Intermediate,00970048, 336, 22.3, 743, 49.8, 50.2, 17.4, 14.5,55 +NA,NA,a-curv-i5,2017-18,Fitchburg - Reingold Elementary,00970043, 255, 20.5, 672, 46.0, 54.0, 20.1, 23.8,58.2 +NA,NA,a-curv-i5,2017-18,Fitchburg - South Street Elementary,00970060, 268, 19.9, 678, 50.0, 50.0, 16.5, 26.8,67.1 +NA,NA,a-curv-i5,2017-18,Florida - Abbott Memorial,00980005, 85, 7.9, 82, 48.8, 51.2, 0.0, 31.7,24.4 +NA,NA,a-curv-i5,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 363, 13.0, 223, 49.3, 50.7, 0.0, 13.0,25.1 +NA,NA,a-curv-i5,2017-18,Foxborough - Charles Taylor Elementary,00990050, 106, 19.8, 239, 45.6, 54.4, 4.2, 16.7,10.5 +NA,NA,a-curv-i5,2017-18,Foxborough - Foxborough High,00990505, 539, 13.7, 810, 47.8, 52.2, 0.6, 15.1,14.7 +NA,NA,a-curv-i5,2017-18,Foxborough - John J Ahern,00990405, 558, 18.1, 850, 48.2, 51.8, 1.4, 21.5,14.6 +NA,NA,a-curv-i5,2017-18,Foxborough - Mabelle M Burrell,00990015, 113, 19.7, 330, 46.7, 53.3, 2.7, 23.0,13.9 +NA,NA,a-curv-i5,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 185, 18.8, 395, 49.6, 50.4, 5.8, 21.5,19.7 +NA,NA,a-curv-i5,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 768, 20.1," 1,500", 52.8, 47.1, 13.5, 8.2,18.3 +NA,NA,a-curv-i5,2017-18,Framingham - Barbieri Elementary,01000035, 316, 18.4, 672, 55.2, 44.8, 43.0, 22.0,44.2 +NA,NA,a-curv-i5,2017-18,Framingham - Brophy,01000006, 237, 17.3, 477, 49.9, 50.1, 43.2, 20.5,48.2 +NA,NA,a-curv-i5,2017-18,Framingham - Cameron Middle School,01000302, 434, 16.9, 565, 48.5, 51.5, 10.1, 27.4,37.3 +NA,NA,a-curv-i5,2017-18,Framingham - Charlotte A Dunning,01000007, 225, 17.4, 470, 46.6, 53.4, 18.1, 24.5,20.4 +6.285826771653544,5,a-curv-i5,2017-18,Framingham - Framingham High School,01000515," 1,016", 16.8," 2,219", 49.3, 50.7, 13.3, 15.8,25.2,2177 +NA,NA,a-curv-i5,2017-18,Framingham - Fuller Middle,01000305, 356, 18.4, 572, 48.6, 51.4, 34.3, 24.3,43.7 +NA,NA,a-curv-i5,2017-18,Framingham - Hemenway,01000015, 237, 19.7, 561, 50.3, 49.7, 16.4, 24.8,18.4 +NA,NA,a-curv-i5,2017-18,Framingham - Juniper Hill School,01000001, 344, 6.9, 294, 41.8, 58.2, 14.3, 47.6,28.2 +NA,NA,a-curv-i5,2017-18,Framingham - King Elementary School,01000005, 152, 16.5, 272, 46.7, 53.3, 23.5, 13.6,18.8 +NA,NA,a-curv-i5,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 184, 17.0, 378, 46.0, 54.0, 13.0, 31.7,39.2 +NA,NA,a-curv-i5,2017-18,Framingham - Miriam F McCarthy School,01000050, 260, 18.3, 566, 49.6, 50.4, 22.8, 35.9,51.1 +NA,NA,a-curv-i5,2017-18,Framingham - Potter Road,01000039, 213, 20.3, 515, 49.3, 50.7, 28.3, 14.8,18.4 +NA,NA,a-curv-i5,2017-18,Framingham - Walsh Middle,01000310, 479, 17.6, 764, 46.5, 53.5, 6.4, 24.5,26.3 +NA,NA,a-curv-i5,2017-18,Framingham - Woodrow Wilson,01000055, 265, 19.3, 583, 49.6, 50.4, 60.9, 13.7,48.5 +NA,NA,a-curv-i5,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 238, 17.2, 400, 53.3, 46.3, 0.0, 14.0,4.3 +NA,NA,a-curv-i5,2017-18,Franklin - Annie Sullivan Middle School,01010040, 237, 19.2, 449, 47.2, 52.6, 1.1, 15.8,8 +NA,NA,a-curv-i5,2017-18,Franklin - Davis Thayer,01010035, 96, 18.7, 224, 47.8, 52.2, 4.0, 19.2,20.1 +NA,NA,a-curv-i5,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 6, 20.0, 120, 35.0, 65.0, 0.0, 48.3,10.8 +NA,NA,a-curv-i5,2017-18,Franklin - Franklin High,01010505, 892, 17.3," 1,788", 49.7, 50.3, 0.3, 14.3,6.6 +NA,NA,a-curv-i5,2017-18,Franklin - Helen Keller Elementary,01010012, 160, 20.4, 410, 47.6, 52.4, 1.7, 18.3,9.8 +NA,NA,a-curv-i5,2017-18,Franklin - Horace Mann,01010405, 228, 21.2, 468, 50.9, 49.1, 0.0, 13.9,6.4 +NA,NA,a-curv-i5,2017-18,Franklin - J F Kennedy Memorial,01010013, 144, 20.4, 370, 47.0, 53.0, 1.4, 18.4,8.1 +NA,NA,a-curv-i5,2017-18,Franklin - Jefferson Elementary,01010010, 136, 19.8, 343, 45.2, 54.8, 2.9, 24.5,5.5 +NA,NA,a-curv-i5,2017-18,Franklin - Oak Street Elementary,01010030, 152, 21.1, 401, 45.4, 54.6, 0.7, 16.7,10.2 +NA,NA,a-curv-i5,2017-18,Franklin - Parmenter,01010032, 144, 18.5, 334, 48.2, 51.8, 3.3, 15.3,18.9 +NA,NA,a-curv-i5,2017-18,Franklin - Remington Middle,01010310, 241, 19.1, 449, 49.7, 50.3, 1.1, 21.4,10.5 +NA,NA,a-curv-i5,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 289, 14.6, 491, 31.2, 68.8, 0.2, 31.8,33.4 +NA,NA,a-curv-i5,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 356, 16.3, 761, 48.8, 51.2, 0.1, 13.1,10.4 +NA,NA,a-curv-i5,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 84, 20.7, 435, 46.2, 53.8, 1.1, 10.8,19.1 +NA,NA,a-curv-i5,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 87, 17.7, 425, 48.5, 51.5, 1.2, 17.9,24.7 +NA,NA,a-curv-i5,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 296, 22.7, 746, 51.2, 48.8, 0.3, 16.6,16.8 +NA,NA,a-curv-i5,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 157, 19.9, 446, 51.1, 48.9, 1.3, 15.0,17.5 +NA,NA,a-curv-i5,2017-18,Frontier - Frontier Regional,06700505, 445, 13.1, 625, 46.1, 53.9, 1.4, 19.4,18.6 +NA,NA,a-curv-i5,2017-18,Gardner - Elm Street School,01030001, 100, 22.6, 568, 47.5, 52.5, 4.8, 23.8,51.4 +NA,NA,a-curv-i5,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 49, 9.6, 70, 45.7, 54.3, 1.4, 30.0,68.6 +NA,NA,a-curv-i5,2017-18,Gardner - Gardner High,01030505, 331, 16.3, 691, 46.5, 53.5, 3.2, 18.5,42.1 +NA,NA,a-curv-i5,2017-18,Gardner - Gardner Middle School,01030405, 282, 20.8, 552, 50.0, 50.0, 3.8, 24.1,50.4 +NA,NA,a-curv-i5,2017-18,Gardner - Waterford Street,01030020, 73, 22.9, 502, 48.6, 51.4, 4.0, 24.9,58 +NA,NA,a-curv-i5,2017-18,Gateway - Chester Elementary,06720059, 57, 17.0, 124, 38.7, 61.3, 0.0, 29.0,37.9 +NA,NA,a-curv-i5,2017-18,Gateway - Gateway Regional High,06720505, 239, 9.9, 208, 53.4, 46.6, 1.4, 16.3,24 +NA,NA,a-curv-i5,2017-18,Gateway - Gateway Regional Middle School,06720405, 141, 15.4, 198, 47.5, 52.5, 2.5, 17.2,27.8 +NA,NA,a-curv-i5,2017-18,Gateway - Littleville Elementary School,06720143, 127, 20.3, 308, 48.7, 51.3, 4.9, 21.1,30.8 +7.0189602446483175,5,a-curv-i5,2017-18,Georgetown - Georgetown High School,01050505, 327, 12.5, 400, 51.8, 48.3, 0.0, 12.8,7.3,401 +NA,NA,a-curv-i5,2017-18,Georgetown - Georgetown Middle School,01050305, 170, 16.2, 228, 45.2, 54.8, 0.0, 14.5,10.1 +NA,NA,a-curv-i5,2017-18,Georgetown - Penn Brook,01050010, 183, 20.1, 693, 48.5, 51.5, 0.1, 11.7,9.2 +NA,NA,a-curv-i5,2017-18,Georgetown - Perley Elementary,01050005, 5, 25.2, 126, 50.0, 50.0, 1.6, 17.5,8.7 +NA,NA,a-curv-i5,2017-18,Gill-Montague - Gill Elementary,06740005, 54, 18.6, 130, 47.7, 52.3, 0.0, 15.4,28.5 +NA,NA,a-curv-i5,2017-18,Gill-Montague - Great Falls Middle,06740310, 165, 14.9, 242, 47.5, 52.5, 2.1, 27.3,43 +NA,NA,a-curv-i5,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 66, 16.0, 160, 43.1, 56.9, 6.9, 25.6,56.3 +NA,NA,a-curv-i5,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 103, 17.9, 218, 48.2, 51.8, 10.6, 28.4,59.6 +NA,NA,a-curv-i5,2017-18,Gill-Montague - Turners Fall High,06740505, 191, 9.8, 209, 57.9, 42.1, 4.3, 23.0,32.5 +NA,NA,a-curv-i5,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 412, 14.4, 505, 49.9, 50.1, 9.3, 14.9,52.1 +NA,NA,a-curv-i5,2017-18,Gloucester - Beeman Memorial,01070010, 73, 19.1, 340, 51.2, 48.8, 11.5, 21.2,45.9 +NA,NA,a-curv-i5,2017-18,Gloucester - East Gloucester Elementary,01070020, 49, 17.5, 213, 47.4, 52.6, 3.8, 20.7,28.6 +NA,NA,a-curv-i5,2017-18,Gloucester - Gloucester High,01070505, 451, 14.3, 803, 46.5, 53.5, 6.2, 26.3,32.6 +NA,NA,a-curv-i5,2017-18,Gloucester - Gloucester PreSchool,01070025, 12, 11.3, 135, 42.2, 57.8, 0.0, 58.5,41.5 +NA,NA,a-curv-i5,2017-18,Gloucester - Plum Cove School,01070042, 49, 17.4, 213, 49.3, 50.7, 1.4, 18.3,28.2 +NA,NA,a-curv-i5,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 362, 20.1, 673, 46.5, 53.5, 3.1, 25.0,31.4 +NA,NA,a-curv-i5,2017-18,Gloucester - Veterans Memorial,01070045, 50, 17.2, 210, 54.3, 45.7, 20.5, 35.2,52.4 +NA,NA,a-curv-i5,2017-18,Gloucester - West Parish,01070050, 78, 18.0, 349, 49.6, 50.4, 2.6, 21.8,28.7 +NA,NA,a-curv-i5,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 11, 2.0, 2, 50.0, 50.0, 0.0, 0.0,0 +6.317380352644837,5,a-curv-i5,2017-18,Grafton - Grafton High School,01100505, 397, 17.1, 833, 50.4, 49.6, 0.5, 12.6,9.6,835 +NA,NA,a-curv-i5,2017-18,Grafton - Grafton Middle,01100305, 338, 19.6, 536, 51.9, 48.1, 0.7, 15.9,8.8 +NA,NA,a-curv-i5,2017-18,Grafton - Millbury Street Elementary School,01100200, 319, 20.8, 663, 47.8, 52.2, 1.4, 20.8,12.1 +NA,NA,a-curv-i5,2017-18,Grafton - North Grafton Elementary,01100025, 113, 17.3, 261, 48.3, 51.7, 1.1, 25.3,12.3 +NA,NA,a-curv-i5,2017-18,Grafton - North Street Elementary School,01100030, 286, 21.2, 587, 45.5, 54.5, 1.0, 18.1,11.1 +NA,NA,a-curv-i5,2017-18,Grafton - South Grafton Elementary,01100005, 127, 18.4, 312, 40.4, 59.6, 3.2, 27.9,12.8 +NA,NA,a-curv-i5,2017-18,Granby - East Meadow,01110004, 110, 18.4, 150, 44.0, 56.0, 2.7, 14.0,19.3 +6.872727272727272,5,a-curv-i5,2017-18,Granby - Granby Jr Sr High School,01110505, 242, 15.4, 338, 45.0, 55.0, 3.6, 13.6,20.7,341 +NA,NA,a-curv-i5,2017-18,Granby - West Street,01110010, 76, 13.9, 221, 52.0, 48.0, 5.0, 21.7,34.8 +NA,NA,a-curv-i5,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 886, 13.7," 1,386", 44.0, 56.0, 2.2, 9.7,35.6 +NA,NA,a-curv-i5,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,363", 13.5," 1,488", 50.1, 49.9, 12.4, 20.8,50.6 +NA,NA,a-curv-i5,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,362", 18.8," 2,226", 44.4, 55.6, 6.1, 15.5,41.1 +NA,NA,a-curv-i5,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,792", 15.7," 2,153", 49.6, 50.4, 3.1, 10.6,36.4 +NA,NA,a-curv-i5,2017-18,Greenfield - Discovery School at Four Corners,01140025, 85, 17.4, 252, 48.4, 51.6, 6.3, 13.1,23.4 +NA,NA,a-curv-i5,2017-18,Greenfield - Federal Street School,01140010, 90, 17.1, 256, 49.2, 50.8, 4.7, 19.5,60.2 +NA,NA,a-curv-i5,2017-18,Greenfield - Greenfield High,01140505, 359, 13.6, 468, 45.9, 53.8, 6.0, 16.5,45.9 +NA,NA,a-curv-i5,2017-18,Greenfield - Greenfield Middle,01140305, 359, 18.0, 397, 47.9, 52.1, 5.8, 14.1,49.1 +NA,NA,a-curv-i5,2017-18,Greenfield - Newton School,01140035, 57, 16.9, 239, 50.2, 49.8, 13.0, 13.0,66.5 +NA,NA,a-curv-i5,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 13.9, 125, 48.8, 51.2, 1.6, 33.6,45.6 +NA,NA,a-curv-i5,2017-18,Groton-Dunstable - Boutwell School,06730001, 6, 16.3, 81, 53.1, 46.9, 6.2, 51.9,21 +NA,NA,a-curv-i5,2017-18,Groton-Dunstable - Florence Roche School,06730010, 105, 20.3, 530, 49.6, 50.4, 1.9, 16.4,8.5 +NA,NA,a-curv-i5,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 409, 17.8, 789, 50.3, 49.7, 0.3, 11.4,4.2 +NA,NA,a-curv-i5,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 340, 19.1, 772, 49.0, 51.0, 1.0, 18.5,6.9 +NA,NA,a-curv-i5,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 60, 19.4, 291, 46.4, 53.6, 1.0, 21.3,7.2 +NA,NA,a-curv-i5,2017-18,Hadley - Hadley Elementary,01170015, 274, 15.8, 289, 45.7, 54.3, 3.5, 17.6,20.8 +NA,NA,a-curv-i5,2017-18,Hadley - Hopkins Academy,01170505, 161, 12.7, 236, 48.3, 51.7, 2.1, 9.7,12.7 +NA,NA,a-curv-i5,2017-18,Halifax - Halifax Elementary,01180005, 240, 21.5, 604, 49.7, 50.3, 0.8, 15.7,17.7 +NA,NA,a-curv-i5,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 84, 21.6, 259, 45.9, 54.1, 1.9, 15.4,7.3 +NA,NA,a-curv-i5,2017-18,Hamilton-Wenham - Cutler School,06750010, 101, 20.2, 293, 49.8, 50.2, 2.0, 15.7,5.5 +NA,NA,a-curv-i5,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 296, 16.2, 556, 51.3, 48.7, 0.0, 12.2,4.9 +NA,NA,a-curv-i5,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 325, 16.9, 383, 54.8, 45.2, 0.0, 19.1,5.5 +NA,NA,a-curv-i5,2017-18,Hamilton-Wenham - Winthrop School,06750015, 95, 19.6, 298, 51.7, 48.3, 0.0, 18.8,9.1 +NA,NA,a-curv-i5,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 254, 17.5, 485, 52.0, 48.0, 3.3, 11.8,37.5 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 65, 19.9, 257, 51.0, 49.0, 0.8, 21.8,19.5 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 70, 22.3, 371, 50.7, 49.3, 2.7, 18.6,13.5 +6.243168316831683,5,a-curv-i5,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 505, 17.5," 1,101", 51.2, 48.8, 0.1, 13.5,11.8,1109 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Soule Road,06800030, 80, 23.8, 346, 50.6, 49.4, 1.2, 11.3,17.3 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 65, 23.3, 303, 45.5, 54.5, 2.6, 12.9,16.2 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 63, 11.8, 108, 48.1, 51.9, 0.0, 26.9,25.9 +NA,NA,a-curv-i5,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 253, 21.9, 615, 50.9, 49.1, 0.2, 12.0,13.7 +NA,NA,a-curv-i5,2017-18,Hampshire - Hampshire Regional High,06830505, 541, 12.9, 703, 54.5, 45.5, 1.0, 21.2,15.8 +NA,NA,a-curv-i5,2017-18,Hancock - Hancock Elementary,01210005, 82, 5.0, 44, 38.6, 61.4, 0.0, 9.1,18.2 +NA,NA,a-curv-i5,2017-18,Hanover - Cedar Elementary,01220004, 163, 19.6, 429, 45.2, 54.8, 0.9, 25.2,8.9 +NA,NA,a-curv-i5,2017-18,Hanover - Center Elementary,01220005, 128, 20.9, 335, 48.1, 51.9, 1.2, 16.7,5.4 +NA,NA,a-curv-i5,2017-18,Hanover - Hanover High,01220505, 369, 16.3, 791, 46.1, 53.4, 0.3, 11.0,5.9 +NA,NA,a-curv-i5,2017-18,Hanover - Hanover Middle,01220305, 806, 19.8, 835, 48.1, 51.9, 1.2, 20.8,10.3 +NA,NA,a-curv-i5,2017-18,Hanover - Sylvester,01220015, 93, 20.8, 228, 49.6, 50.4, 0.9, 20.2,6.1 +NA,NA,a-curv-i5,2017-18,Harvard - Bromfield,01250505, 317, 15.8, 663, 48.7, 51.1, 0.6, 10.3,3.8 +NA,NA,a-curv-i5,2017-18,Harvard - Hildreth Elementary School,01250005, 235, 18.1, 444, 50.5, 49.5, 3.2, 11.3,3.8 +NA,NA,a-curv-i5,2017-18,Hatfield - Hatfield Elementary,01270005, 135, 16.9, 253, 47.4, 52.2, 0.0, 17.8,13.8 +NA,NA,a-curv-i5,2017-18,Hatfield - Smith Academy,01270505, 129, 11.5, 189, 47.6, 52.4, 0.0, 21.7,12.2 +NA,NA,a-curv-i5,2017-18,Haverhill - Bradford Elementary,01280008, 211, 15.8, 310, 46.5, 53.5, 6.1, 37.4,32.9 +NA,NA,a-curv-i5,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 483, 20.7," 1,059", 48.0, 52.0, 2.6, 19.4,33.3 +NA,NA,a-curv-i5,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 67, 19.3, 115, 45.2, 54.8, 3.5, 5.2,62.6 +NA,NA,a-curv-i5,2017-18,Haverhill - Consentino Middle School,01280100, 405, 23.9," 1,013", 49.6, 50.4, 15.5, 13.4,51.8 +NA,NA,a-curv-i5,2017-18,Haverhill - Crowell,01280020, 66, 19.5, 107, 48.6, 51.4, 22.4, 16.8,60.7 +NA,NA,a-curv-i5,2017-18,Haverhill - Dr Paul Nettle,01280050, 191, 20.7, 516, 51.6, 48.4, 4.8, 26.0,50.4 +NA,NA,a-curv-i5,2017-18,Haverhill - Golden Hill,01280026, 298, 17.3, 496, 49.6, 50.4, 22.4, 27.0,56.5 +NA,NA,a-curv-i5,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 60, 21.0, 105, 54.3, 45.7, 33.3, 12.4,68.6 +NA,NA,a-curv-i5,2017-18,Haverhill - Haverhill Alternative School,01280033, 47, 6.1, 46, 23.9, 76.1, 4.3, 100.0,78.3 +NA,NA,a-curv-i5,2017-18,Haverhill - Haverhill High,01280505," 1,302", 17.4," 1,950", 50.1, 49.8, 7.4, 14.4,34.2 +NA,NA,a-curv-i5,2017-18,Haverhill - John G Whittier,01280085, 179, 27.3, 548, 47.8, 52.2, 6.9, 22.1,40.3 +NA,NA,a-curv-i5,2017-18,Haverhill - Moody,01280045, 198, 11.0, 243, 34.2, 65.8, 4.1, 67.9,52.7 +NA,NA,a-curv-i5,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 349, 15.2, 504, 45.0, 55.0, 14.7, 31.7,52 +NA,NA,a-curv-i5,2017-18,Haverhill - TEACH,01280073, 79, 3.3, 48, 12.5, 87.5, 6.3, 97.9,62.5 +NA,NA,a-curv-i5,2017-18,Haverhill - Tilton,01280075, 236, 20.0, 521, 48.9, 51.1, 24.6, 23.8,66.2 +NA,NA,a-curv-i5,2017-18,Haverhill - Walnut Square,01280080, 79, 19.8, 139, 56.1, 43.9, 2.2, 10.1,30.2 +NA,NA,a-curv-i5,2017-18,Hawlemont - Hawlemont Regional,06850005, 39, 20.0, 160, 58.8, 41.3, 0.0, 23.8,50 +NA,NA,a-curv-i5,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 85, 19.2, 232, 46.6, 53.4, 8.2, 27.2,56.5 +NA,NA,a-curv-i5,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 113, 20.3, 301, 57.8, 42.2, 7.0, 18.6,16.9 +NA,NA,a-curv-i5,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 78, 25.8, 218, 46.3, 53.7, 0.0, 20.2,15.1 +NA,NA,a-curv-i5,2017-18,Hingham - East Elementary School,01310005, 192, 19.9, 541, 43.8, 56.2, 0.0, 17.7,5.7 +NA,NA,a-curv-i5,2017-18,Hingham - Hingham High,01310505, 583, 15.7," 1,258", 50.2, 49.8, 0.2, 8.2,5.4 +NA,NA,a-curv-i5,2017-18,Hingham - Hingham Middle School,01310410, 595, 18.7," 1,076", 47.4, 52.6, 0.3, 11.1,5.8 +NA,NA,a-curv-i5,2017-18,Hingham - Plymouth River,01310019, 176, 21.3, 469, 51.4, 48.6, 1.7, 13.6,3.4 +NA,NA,a-curv-i5,2017-18,Hingham - South Elementary,01310020, 191, 22.1, 528, 49.2, 50.8, 0.0, 13.8,3.2 +NA,NA,a-curv-i5,2017-18,Hingham - Wm L Foster Elementary,01310010, 183, 19.6, 448, 46.4, 53.6, 0.9, 16.3,5.1 +6.494568690095846,5,a-curv-i5,2017-18,Holbrook - Holbrook Middle High School,01330505, 313, 16.5, 605, 49.3, 50.7, 6.1, 16.9,32.4,589 +NA,NA,a-curv-i5,2017-18,Holbrook - John F Kennedy,01330018, 136, 21.8, 644, 47.4, 52.6, 8.9, 20.8,30.9 +NA,NA,a-curv-i5,2017-18,Holland - Holland Elementary,01350005, 65, 17.9, 235, 48.5, 51.5, 0.0, 15.3,26 +NA,NA,a-curv-i5,2017-18,Holliston - Holliston High,01360505, 465, 16.3, 803, 48.6, 51.3, 1.0, 12.6,5.6 +NA,NA,a-curv-i5,2017-18,Holliston - Miller School,01360007, 369, 19.9, 686, 48.1, 51.9, 2.9, 21.0,8 +NA,NA,a-curv-i5,2017-18,Holliston - Placentino Elementary,01360010, 224, 17.9, 753, 46.5, 53.5, 4.1, 14.7,7.2 +NA,NA,a-curv-i5,2017-18,Holliston - Robert H. Adams Middle School,01360305, 462, 14.0, 685, 50.9, 49.1, 1.6, 19.6,7.2 +NA,NA,a-curv-i5,2017-18,Holyoke - E N White Elementary,01370045, 181, 20.7, 522, 48.7, 51.3, 19.5, 27.2,72 +NA,NA,a-curv-i5,2017-18,Holyoke - H.B. Lawrence School,01370070, 106, 15.2, 266, 48.1, 51.9, 29.7, 24.8,90.2 +NA,NA,a-curv-i5,2017-18,Holyoke - Holyoke High,01370505, 464, 21.5," 1,314", 48.1, 51.8, 18.7, 18.0,64.3 +NA,NA,a-curv-i5,2017-18,Holyoke - Joseph Metcalf School,01370003, 65, 18.9, 285, 53.0, 47.0, 10.2, 31.6,54.7 +NA,NA,a-curv-i5,2017-18,Holyoke - Kelly Elementary,01370040, 216, 20.6, 589, 45.2, 54.8, 35.5, 21.9,90 +NA,NA,a-curv-i5,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 304, 15.4, 564, 49.6, 50.4, 20.7, 25.0,79.4 +NA,NA,a-curv-i5,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 133, 22.6, 430, 44.4, 55.6, 13.5, 28.8,60.2 +NA,NA,a-curv-i5,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 189, 18.5, 500, 43.4, 56.6, 26.6, 31.6,82.8 +NA,NA,a-curv-i5,2017-18,Holyoke - Morgan Full Service Community School,01370025, 113, 21.6, 443, 50.3, 49.7, 29.3, 22.3,90.3 +NA,NA,a-curv-i5,2017-18,Holyoke - William R. Peck School,01370030, 168, 13.5, 330, 42.7, 57.3, 34.8, 36.4,90.9 +NA,NA,a-curv-i5,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 88, 10.6, 162, 43.8, 56.2, 19.8, 34.6,78.4 +NA,NA,a-curv-i5,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 197, 24.6, 703, 55.9, 44.1, 15.5, 19.6,65.9 +NA,NA,a-curv-i5,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 344, 13.7, 505, 50.5, 49.5, 0.8, 16.2,9.1 +NA,NA,a-curv-i5,2017-18,Hopedale - Memorial,01380010, 232, 21.3, 543, 45.5, 54.5, 2.2, 21.9,11.6 +NA,NA,a-curv-i5,2017-18,Hopedale - Park Street School,01380003, 14, 6.6, 91, 50.5, 49.5, 0.0, 28.6,14.3 +NA,NA,a-curv-i5,2017-18,Hopkinton - Center,01390005, 94, 22.0, 473, 49.9, 50.1, 13.7, 10.1,5.1 +NA,NA,a-curv-i5,2017-18,Hopkinton - Elmwood,01390010, 124, 21.3, 513, 48.3, 51.7, 7.4, 9.7,3.3 +NA,NA,a-curv-i5,2017-18,Hopkinton - Hopkins Elementary School,01390015, 243, 25.2, 554, 48.7, 51.3, 2.7, 10.1,5.2 +NA,NA,a-curv-i5,2017-18,Hopkinton - Hopkinton High,01390505, 869, 17.9," 1,167", 49.9, 50.1, 1.1, 13.0,4.5 +NA,NA,a-curv-i5,2017-18,Hopkinton - Hopkinton Middle School,01390305, 557, 19.2, 821, 51.4, 48.6, 1.3, 12.9,4.4 +NA,NA,a-curv-i5,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 9, 8.9, 69, 31.9, 68.1, 20.3, 44.9,5.8 +NA,NA,a-curv-i5,2017-18,Hudson - C A Farley,01410030, 206, 19.2, 459, 50.8, 49.2, 13.7, 11.8,25.3 +NA,NA,a-curv-i5,2017-18,Hudson - David J. Quinn Middle School,01410410, 442, 18.2, 660, 52.4, 47.6, 7.1, 19.7,21.8 +NA,NA,a-curv-i5,2017-18,Hudson - Forest Avenue Elementary,01410015, 150, 21.2, 359, 49.3, 50.7, 15.0, 12.5,23.1 +NA,NA,a-curv-i5,2017-18,Hudson - Hudson High,01410505, 536, 14.7, 929, 50.6, 49.4, 7.0, 12.8,17.1 +NA,NA,a-curv-i5,2017-18,Hudson - Mulready Elementary,01410007, 129, 16.3, 243, 48.6, 51.4, 11.9, 22.2,21 +NA,NA,a-curv-i5,2017-18,Hull - Hull High,01420505, 251, 10.3, 297, 47.8, 52.2, 0.3, 21.2,25.6 +NA,NA,a-curv-i5,2017-18,Hull - Lillian M Jacobs,01420015, 171, 19.8, 431, 47.3, 52.7, 0.7, 21.3,29.5 +NA,NA,a-curv-i5,2017-18,Hull - Memorial Middle,01420305, 124, 14.5, 193, 43.5, 56.5, 0.0, 18.1,28 +NA,NA,a-curv-i5,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 465, 18.1, 799, 51.7, 48.3, 1.9, 18.6,8.6 +NA,NA,a-curv-i5,2017-18,Ipswich - Ipswich High,01440505, 370, 11.9, 517, 50.3, 49.5, 1.2, 11.2,11 +NA,NA,a-curv-i5,2017-18,Ipswich - Ipswich Middle School,01440305, 227, 21.6, 451, 50.8, 49.2, 0.0, 16.2,11.1 +NA,NA,a-curv-i5,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 175, 20.2, 405, 48.1, 51.9, 3.7, 19.5,11.9 +NA,NA,a-curv-i5,2017-18,Ipswich - Winthrop,01440015, 186, 18.1, 374, 49.5, 50.5, 5.1, 22.5,20.9 +NA,NA,a-curv-i5,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 92, 38.5, 556, 46.8, 53.2, 30.8, 21.4,62.8 +NA,NA,a-curv-i5,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 426, 23.9," 1,343", 50.2, 49.8, 28.1, 13.3,46.5 +NA,NA,a-curv-i5,2017-18,King Philip - King Philip Middle School,06900510, 335, 19.9, 745, 47.4, 52.5, 0.7, 15.8,7.8 +NA,NA,a-curv-i5,2017-18,King Philip - King Philip Regional High,06900505, 487, 19.0," 1,307", 47.9, 52.1, 0.5, 11.6,8.3 +NA,NA,a-curv-i5,2017-18,Kingston - Kingston Elementary,01450005, 156, 20.2, 448, 48.2, 51.8, 1.6, 15.8,16.1 +NA,NA,a-curv-i5,2017-18,Kingston - Kingston Intermediate,01450020, 225, 21.0, 572, 49.1, 50.7, 1.0, 17.8,16.1 +NA,NA,a-curv-i5,2017-18,Lanesborough - Lanesborough Elementary,01480005, 125, 16.2, 214, 55.1, 44.9, 0.0, 22.0,24.3 +NA,NA,a-curv-i5,2017-18,Lawrence - Alexander B Bruce,01490015, 155, 20.2, 543, 51.6, 48.4, 40.0, 17.1,61.5 +NA,NA,a-curv-i5,2017-18,Lawrence - Arlington Middle School,01490017, 266, 23.8, 617, 49.9, 50.1, 42.8, 16.4,64.3 +NA,NA,a-curv-i5,2017-18,Lawrence - Community Day Arlington,01490009, 166, 26.0, 624, 48.1, 51.9, 57.1, 16.8,66.3 +NA,NA,a-curv-i5,2017-18,Lawrence - Edward F. Parthum,01490053, 198, 23.3, 668, 49.0, 51.0, 39.5, 15.6,62.4 +NA,NA,a-curv-i5,2017-18,Lawrence - Emily G Wetherbee,01490080, 236, 20.9, 699, 51.6, 48.4, 30.2, 21.5,63.1 +NA,NA,a-curv-i5,2017-18,Lawrence - Francis M Leahy,01490040, 126, 24.7, 521, 48.9, 51.1, 42.6, 11.9,69.5 +NA,NA,a-curv-i5,2017-18,Lawrence - Frost Middle School,01490525, 242, 25.6, 517, 47.0, 53.0, 14.1, 15.3,53.2 +NA,NA,a-curv-i5,2017-18,Lawrence - Gerard A. Guilmette,01490022, 145, 26.1, 510, 47.6, 52.4, 38.8, 24.9,72.2 +NA,NA,a-curv-i5,2017-18,Lawrence - Guilmette Middle School,01490025, 311, 14.9, 486, 52.7, 47.3, 25.1, 17.1,66 +6.8031999999999995,5,a-curv-i5,2017-18,Lawrence - High School Learning Center,01490536, 125, 8.7, 165, 36.4, 63.6, 18.8, 25.5,55.2,187 +NA,NA,a-curv-i5,2017-18,Lawrence - James F Hennessey,01490020, 49, 18.4, 388, 46.6, 53.4, 53.9, 28.4,67.3 +NA,NA,a-curv-i5,2017-18,Lawrence - John Breen School,01490003, 27, 14.2, 364, 44.2, 55.8, 50.3, 34.1,64.8 +NA,NA,a-curv-i5,2017-18,Lawrence - John K Tarbox,01490075, 75, 23.4, 358, 47.5, 52.5, 50.0, 12.0,71.2 +NA,NA,a-curv-i5,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 9, 19.3, 174, 48.9, 51.1, 26.4, 9.8,70.1 +NA,NA,a-curv-i5,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 44, 20.7, 223, 42.2, 57.8, 35.9, 15.2,66.4 +6.182118294360385,5,a-curv-i5,2017-18,Lawrence - Lawrence High School,01490515," 1,454", 17.9," 3,274", 49.1, 50.9, 36.3, 15.7,53.7,3304 +NA,NA,a-curv-i5,2017-18,Lawrence - Oliver Partnership School,01490048, 100, 23.1, 462, 48.5, 51.5, 40.9, 17.7,66 +NA,NA,a-curv-i5,2017-18,Lawrence - Parthum Middle School,01490027, 252, 23.6, 611, 50.2, 49.8, 28.5, 17.7,60.1 +NA,NA,a-curv-i5,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 250, 16.8, 138, 37.7, 62.3, 23.9, 31.2,59.4 +NA,NA,a-curv-i5,2017-18,Lawrence - Robert Frost,01490018, 125, 25.1, 620, 50.5, 49.5, 26.1, 15.6,57.9 +NA,NA,a-curv-i5,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 16, 11.9, 190, 39.5, 60.5, 46.3, 50.0,68.4 +NA,NA,a-curv-i5,2017-18,Lawrence - School for Exceptional Studies,01490537, 231, 4.9, 147, 17.7, 82.3, 19.0, 100.0,84.4 +NA,NA,a-curv-i5,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 249, 23.4, 777, 45.9, 54.1, 40.7, 25.7,74 +NA,NA,a-curv-i5,2017-18,Lawrence - Spark Academy,01490085, 247, 15.1, 470, 51.9, 48.1, 28.3, 22.3,65.5 +NA,NA,a-curv-i5,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 92, 23.5, 308, 44.5, 55.5, 40.6, 15.6,63.3 +NA,NA,a-curv-i5,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 82, 26.5, 358, 46.9, 53.1, 29.3, 18.2,62.3 +NA,NA,a-curv-i5,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 327, 18.2, 734, 54.2, 45.8, 28.9, 7.5,53.7 +NA,NA,a-curv-i5,2017-18,Lee - Lee Elementary,01500025, 158, 15.7, 346, 48.8, 51.2, 6.1, 10.7,42.2 +6.869635627530364,5,a-curv-i5,2017-18,Lee - Lee Middle/High School,01500505, 247, 11.8, 345, 49.9, 50.1, 2.0, 12.5,28.7,349 +NA,NA,a-curv-i5,2017-18,Leicester - Leicester High,01510505, 225, 17.1, 472, 47.0, 52.8, 2.8, 14.0,23.1 +NA,NA,a-curv-i5,2017-18,Leicester - Leicester Memorial Elementary,01510005, 108, 21.8, 336, 45.5, 54.5, 3.6, 16.4,26.8 +NA,NA,a-curv-i5,2017-18,Leicester - Leicester Middle,01510015, 230, 17.9, 419, 48.9, 51.1, 1.4, 15.0,22.4 +NA,NA,a-curv-i5,2017-18,Leicester - Leicester Primary School,01510010, 140, 19.2, 371, 41.2, 58.8, 3.2, 22.6,27.8 +NA,NA,a-curv-i5,2017-18,Lenox - Lenox Memorial High,01520505, 367, 11.5, 436, 51.4, 48.6, 1.8, 9.2,16.1 +NA,NA,a-curv-i5,2017-18,Lenox - Morris,01520015, 159, 16.8, 312, 49.0, 51.0, 3.5, 11.5,15.1 +NA,NA,a-curv-i5,2017-18,Leominster - Bennett,01530003, 12, 10.2, 122, 34.4, 65.6, 13.9, 61.5,39.3 +NA,NA,a-curv-i5,2017-18,Leominster - Center For Technical Education Innovation,01530605, 135, 14.8, 707, 36.4, 63.6, 1.4, 24.5,32.1 +NA,NA,a-curv-i5,2017-18,Leominster - Fall Brook,01530007, 272, 25.0, 674, 47.5, 52.5, 13.6, 22.0,33.2 +NA,NA,a-curv-i5,2017-18,Leominster - Frances Drake School,01530010, 255, 20.6, 576, 48.3, 51.7, 13.7, 26.0,49.5 +NA,NA,a-curv-i5,2017-18,Leominster - Johnny Appleseed,01530025, 308, 21.5, 671, 51.6, 48.4, 13.6, 18.3,39.5 +NA,NA,a-curv-i5,2017-18,Leominster - Leominster Center for Excellence,01530515, 42, 15.1, 55, 58.2, 41.8, 3.6, 43.6,56.4 +6.704294478527608,5,a-curv-i5,2017-18,Leominster - Leominster High School,01530505, 652, 19.0," 1,681", 48.5, 51.5, 5.9, 16.3,30.5,1056 +NA,NA,a-curv-i5,2017-18,Leominster - Lincoln School,01530005, 5, 11.4, 57, 31.6, 68.4, 19.3, 73.7,40.4 +NA,NA,a-curv-i5,2017-18,Leominster - Northwest,01530030, 283, 24.9, 700, 49.7, 50.3, 15.7, 19.9,45.3 +NA,NA,a-curv-i5,2017-18,Leominster - Priest Street,01530040, 49, 18.4, 130, 43.8, 56.2, 11.5, 27.7,56.9 +NA,NA,a-curv-i5,2017-18,Leominster - Samoset School,01530045, 368, 15.7, 507, 47.7, 52.1, 3.2, 28.2,35.3 +NA,NA,a-curv-i5,2017-18,Leominster - Sky View Middle School,01530320, 478, 22.0, 946, 47.8, 52.2, 8.0, 24.5,38.2 +NA,NA,a-curv-i5,2017-18,Leverett - Leverett Elementary,01540005, 45, 16.0, 127, 40.9, 59.1, 0.0, 14.2,22.8 +NA,NA,a-curv-i5,2017-18,Lexington - Bowman,01550008, 115, 21.7, 565, 48.1, 51.9, 14.2, 9.4,5.3 +NA,NA,a-curv-i5,2017-18,Lexington - Bridge,01550006, 125, 20.3, 580, 50.5, 49.5, 9.8, 10.3,6.6 +NA,NA,a-curv-i5,2017-18,Lexington - Fiske,01550015, 102, 21.8, 503, 45.7, 54.3, 10.3, 17.1,4 +NA,NA,a-curv-i5,2017-18,Lexington - Harrington,01550030, 100, 21.7, 491, 48.3, 51.7, 6.9, 13.8,5.7 +NA,NA,a-curv-i5,2017-18,Lexington - Jonas Clarke Middle,01550305, 512, 19.8, 939, 47.3, 52.7, 4.0, 13.3,5.2 +NA,NA,a-curv-i5,2017-18,Lexington - Joseph Estabrook,01550010, 122, 21.0, 580, 49.8, 50.2, 13.4, 11.6,6.4 +NA,NA,a-curv-i5,2017-18,Lexington - Lexington Children's Place,01550001, 6, 15.7, 94, 38.3, 61.7, 26.6, 50.0,17 +NA,NA,a-curv-i5,2017-18,Lexington - Lexington High,01550505," 1,189", 19.6," 2,223", 49.0, 50.9, 1.6, 10.8,5 +NA,NA,a-curv-i5,2017-18,Lexington - Maria Hastings,01550035, 97, 22.0, 478, 48.1, 51.9, 13.6, 19.7,5 +NA,NA,a-curv-i5,2017-18,Lexington - Wm Diamond Middle,01550310, 506, 19.1, 894, 51.7, 48.3, 3.7, 13.3,4.4 +NA,NA,a-curv-i5,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 31, 28.3, 91, 44.0, 56.0, 45.1, 25.3,79.1 +NA,NA,a-curv-i5,2017-18,Lincoln - Hanscom Middle,01570305, 150, 17.1, 255, 49.8, 50.2, 2.7, 22.4,2.4 +NA,NA,a-curv-i5,2017-18,Lincoln - Hanscom Primary,01570006, 98, 14.7, 282, 47.9, 52.1, 4.3, 20.2,1.8 +NA,NA,a-curv-i5,2017-18,Lincoln - Lincoln School,01570025, 330, 15.7, 596, 49.2, 50.8, 3.9, 22.3,9.1 +NA,NA,a-curv-i5,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,249", 18.2," 1,532", 48.6, 51.4, 0.3, 16.5,5.5 +6.469421487603306,5,a-curv-i5,2017-18,Littleton - Littleton High School,01580505, 242, 13.7, 465, 55.1, 44.9, 0.6, 17.4,5.6,463 +NA,NA,a-curv-i5,2017-18,Littleton - Littleton Middle School,01580305, 184, 19.5, 366, 54.1, 45.9, 0.5, 17.2,11.2 +NA,NA,a-curv-i5,2017-18,Littleton - Russell St Elementary,01580015, 198, 21.5, 387, 47.5, 52.5, 0.5, 17.8,8 +NA,NA,a-curv-i5,2017-18,Littleton - Shaker Lane Elementary,01580005, 82, 19.5, 454, 52.2, 47.8, 4.6, 12.6,7.3 +NA,NA,a-curv-i5,2017-18,Longmeadow - Blueberry Hill,01590005, 205, 19.6, 434, 48.6, 51.4, 2.1, 15.7,5.3 +NA,NA,a-curv-i5,2017-18,Longmeadow - Center,01590010, 201, 19.0, 411, 49.1, 50.9, 0.2, 20.4,6.3 +NA,NA,a-curv-i5,2017-18,Longmeadow - Glenbrook Middle,01590017, 169, 20.2, 346, 49.7, 50.3, 0.0, 20.5,7.8 +NA,NA,a-curv-i5,2017-18,Longmeadow - Longmeadow High,01590505, 408, 18.9, 955, 49.8, 50.2, 0.4, 17.2,5.5 +NA,NA,a-curv-i5,2017-18,Longmeadow - Williams Middle,01590305, 179, 18.6, 335, 46.0, 54.0, 0.0, 17.6,4.8 +NA,NA,a-curv-i5,2017-18,Longmeadow - Wolf Swamp Road,01590025, 168, 19.8, 415, 46.5, 53.5, 1.2, 26.5,13 +NA,NA,a-curv-i5,2017-18,Lowell - Abraham Lincoln,01600020, 284, 18.4, 521, 42.2, 57.8, 34.5, 19.2,63.9 +NA,NA,a-curv-i5,2017-18,Lowell - B.F. Butler Middle School,01600310, 359, 22.6, 577, 49.9, 50.1, 19.4, 18.9,52.9 +NA,NA,a-curv-i5,2017-18,Lowell - Bartlett Community Partnership,01600090, 303, 17.3, 518, 49.0, 51.0, 28.6, 23.4,55.8 +NA,NA,a-curv-i5,2017-18,Lowell - Charles W Morey,01600030, 274, 19.8, 534, 49.4, 50.6, 42.7, 18.5,40.1 +NA,NA,a-curv-i5,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 228, 22.9, 517, 45.5, 54.5, 39.7, 20.5,68.1 +NA,NA,a-curv-i5,2017-18,Lowell - Dr An Wang School,01600345, 359, 22.9, 728, 49.9, 50.1, 25.5, 14.6,49.6 +NA,NA,a-curv-i5,2017-18,Lowell - Dr Gertrude Bailey,01600002, 283, 18.6, 500, 48.4, 51.6, 24.0, 17.2,44.2 +NA,NA,a-curv-i5,2017-18,Lowell - Greenhalge,01600015, 251, 20.5, 518, 46.9, 53.1, 32.4, 20.1,68.9 +NA,NA,a-curv-i5,2017-18,Lowell - Henry J Robinson Middle,01600330, 285, 23.2, 687, 48.8, 51.2, 27.5, 15.7,61.1 +NA,NA,a-curv-i5,2017-18,Lowell - James S Daley Middle School,01600315, 312, 22.2, 702, 46.9, 53.1, 12.0, 18.1,40.9 +NA,NA,a-curv-i5,2017-18,Lowell - James Sullivan Middle School,01600340, 288, 24.1, 699, 48.1, 51.9, 27.0, 17.7,58.1 +NA,NA,a-curv-i5,2017-18,Lowell - John J Shaughnessy,01600050, 283, 18.1, 489, 50.3, 49.7, 28.2, 18.6,55.4 +NA,NA,a-curv-i5,2017-18,Lowell - Joseph McAvinnue,01600010, 283, 18.8, 504, 48.2, 51.8, 36.9, 15.1,62.3 +NA,NA,a-curv-i5,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 369, 21.7, 723, 48.8, 51.2, 32.6, 14.4,62.9 +NA,NA,a-curv-i5,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 60, 3.1, 26, 11.5, 88.5, 15.4, 100.0,80.8 +NA,NA,a-curv-i5,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 89, 4.3, 45, 28.9, 71.1, 2.2, 100.0,71.1 +NA,NA,a-curv-i5,2017-18,Lowell - Lowell Day School on Broadway,01600605, 74, 2.4, 20, 25.0, 75.0, 5.0, 100.0,35 +NA,NA,a-curv-i5,2017-18,Lowell - Lowell High,01600505," 2,061", 20.8," 3,245", 50.4, 49.6, 12.2, 10.5,43.1 +NA,NA,a-curv-i5,2017-18,Lowell - Moody Elementary,01600027, 129, 19.6, 256, 53.5, 46.5, 43.0, 10.5,66.8 +NA,NA,a-curv-i5,2017-18,Lowell - Pawtucketville Memorial,01600036, 308, 17.9, 518, 47.9, 52.1, 23.4, 18.9,43.6 +NA,NA,a-curv-i5,2017-18,Lowell - Peter W Reilly,01600040, 325, 18.3, 531, 47.8, 52.2, 26.9, 16.2,49.2 +NA,NA,a-curv-i5,2017-18,Lowell - Pyne Arts,01600018, 383, 17.5, 508, 46.5, 53.5, 19.9, 20.7,44.5 +NA,NA,a-curv-i5,2017-18,Lowell - Rogers STEM Academy,01600005, 368, 17.8, 695, 46.6, 53.4, 32.2, 17.6,62.2 +NA,NA,a-curv-i5,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 296, 17.5, 510, 51.4, 48.6, 24.5, 19.4,60.8 +NA,NA,a-curv-i5,2017-18,Lowell - The Career Academy,01600515, 106, 9.5, 106, 29.2, 70.8, 10.4, 14.2,76.4 +NA,NA,a-curv-i5,2017-18,Lowell - Washington,01600055, 160, 15.5, 251, 43.0, 57.0, 29.9, 20.3,46.6 +NA,NA,a-curv-i5,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 254, 21.0, 797, 51.1, 48.9, 53.3, 17.2,44.9 +NA,NA,a-curv-i5,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 129, 12.9, 109, 45.0, 55.0, 4.6, 29.4,64.2 +NA,NA,a-curv-i5,2017-18,Ludlow - Chapin Street Elementary School,01610020, 149, 17.8, 326, 54.6, 45.4, 5.5, 14.1,34.4 +NA,NA,a-curv-i5,2017-18,Ludlow - East Street Elementary School,01610010, 159, 14.8, 425, 45.2, 54.8, 7.5, 18.8,32.9 +NA,NA,a-curv-i5,2017-18,Ludlow - Ludlow Senior High,01610505, 378, 15.5, 883, 50.6, 49.4, 1.5, 13.7,20.7 +NA,NA,a-curv-i5,2017-18,Ludlow - Paul R Baird Middle,01610305, 294, 18.7, 640, 49.5, 50.5, 1.7, 15.5,22.8 +NA,NA,a-curv-i5,2017-18,Ludlow - Veterans Park Elementary,01610023, 205, 21.4, 395, 46.3, 53.7, 1.8, 16.7,25.8 +NA,NA,a-curv-i5,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2017-18,Lunenburg - Lunenburg High,01620505, 220, 15.5, 446, 49.8, 50.2, 0.9, 10.8,12.6 +NA,NA,a-curv-i5,2017-18,Lunenburg - Lunenburg Middle School,01620305, 245, 22.3, 433, 44.8, 55.2, 2.3, 14.3,13.2 +NA,NA,a-curv-i5,2017-18,Lunenburg - Lunenburg Primary School,01620010, 183, 21.2, 398, 48.0, 52.0, 4.0, 23.4,16.3 +NA,NA,a-curv-i5,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 159, 22.4, 366, 49.2, 50.8, 1.9, 15.6,15 +NA,NA,a-curv-i5,2017-18,Lynn - A Drewicz Elementary,01630016, 86, 23.8, 503, 51.9, 48.1, 35.0, 9.9,62.2 +NA,NA,a-curv-i5,2017-18,Lynn - Aborn,01630011, 50, 20.6, 249, 51.0, 49.0, 7.6, 12.0,41.4 +NA,NA,a-curv-i5,2017-18,Lynn - Breed Middle School,01630405, 478, 25.7," 1,351", 46.9, 53.1, 14.3, 16.6,58.6 +NA,NA,a-curv-i5,2017-18,Lynn - Brickett Elementary,01630020, 58, 21.4, 304, 46.4, 53.6, 25.7, 8.9,58.2 +NA,NA,a-curv-i5,2017-18,Lynn - Capt William G Shoemaker,01630090, 86, 15.6, 328, 39.0, 61.0, 2.7, 39.9,40.9 +NA,NA,a-curv-i5,2017-18,Lynn - Classical High,01630505, 588, 19.2," 1,608", 46.8, 53.2, 21.6, 10.2,47.2 +NA,NA,a-curv-i5,2017-18,Lynn - Cobbet Elementary,01630035, 110, 22.8, 614, 47.7, 52.3, 43.8, 13.0,72.3 +NA,NA,a-curv-i5,2017-18,Lynn - E J Harrington,01630045, 126, 20.8, 651, 49.2, 50.8, 28.6, 22.4,72.7 +NA,NA,a-curv-i5,2017-18,Lynn - Early Childhood Center,01630004, 72, 18.3, 330, 41.5, 58.5, 29.1, 34.5,62.1 +NA,NA,a-curv-i5,2017-18,Lynn - Edward A Sisson,01630095, 82, 21.9, 438, 47.0, 53.0, 13.5, 18.0,40.6 +7.292561983471074,5,a-curv-i5,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 121, 5.0, 94, 42.6, 57.4, 1.1, 51.1,73.4,107 +NA,NA,a-curv-i5,2017-18,Lynn - Hood,01630055, 86, 23.1, 491, 50.5, 49.5, 22.4, 15.9,59.5 +NA,NA,a-curv-i5,2017-18,Lynn - Ingalls,01630060, 111, 24.0, 658, 47.9, 52.1, 38.3, 15.5,66.6 +NA,NA,a-curv-i5,2017-18,Lynn - Julia F Callahan,01630030, 100, 18.6, 474, 46.6, 53.4, 15.2, 29.5,58.4 +NA,NA,a-curv-i5,2017-18,Lynn - Lincoln-Thomson,01630070, 60, 20.7, 249, 46.6, 53.4, 21.7, 16.5,51.8 +NA,NA,a-curv-i5,2017-18,Lynn - Lynn English High,01630510, 654, 19.3," 1,819", 46.3, 53.7, 28.1, 11.1,51.5 +NA,NA,a-curv-i5,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 696, 17.2," 1,000", 41.7, 58.3, 12.2, 22.7,53.7 +NA,NA,a-curv-i5,2017-18,Lynn - Lynn Woods,01630075, 42, 20.5, 168, 53.0, 47.0, 6.0, 19.0,28 +NA,NA,a-curv-i5,2017-18,Lynn - Pickering Middle,01630420, 293, 20.8, 619, 48.8, 51.2, 5.8, 18.1,38.9 +NA,NA,a-curv-i5,2017-18,Lynn - Robert L Ford,01630050, 86, 24.2, 510, 51.6, 48.4, 40.0, 12.0,63.3 +NA,NA,a-curv-i5,2017-18,Lynn - Sewell-Anderson,01630085, 66, 19.3, 310, 43.5, 56.5, 14.5, 24.2,44.2 +NA,NA,a-curv-i5,2017-18,Lynn - Thurgood Marshall Mid,01630305, 489, 25.0," 1,321", 49.7, 50.3, 16.6, 13.8,62.8 +NA,NA,a-curv-i5,2017-18,Lynn - Tracy,01630100, 78, 23.2, 442, 52.3, 47.7, 36.9, 12.9,64 +NA,NA,a-curv-i5,2017-18,Lynn - Washington Elementary School,01630005, 82, 23.4, 475, 48.8, 51.2, 37.1, 15.4,66.7 +NA,NA,a-curv-i5,2017-18,Lynn - William R Fallon,01630080, 24, 5.0, 52, 13.5, 86.5, 5.8, 94.2,75 +NA,NA,a-curv-i5,2017-18,Lynn - Wm P Connery,01630040, 106, 25.1, 652, 49.7, 50.3, 37.6, 9.4,65.5 +NA,NA,a-curv-i5,2017-18,Lynnfield - Huckleberry Hill,01640010, 84, 20.4, 428, 54.7, 45.3, 4.9, 16.6,8.9 +NA,NA,a-curv-i5,2017-18,Lynnfield - Lynnfield High,01640505, 457, 10.9, 643, 51.5, 48.5, 0.3, 16.0,7.8 +NA,NA,a-curv-i5,2017-18,Lynnfield - Lynnfield Middle School,01640405, 338, 18.3, 674, 47.8, 52.2, 0.1, 19.9,6.5 +NA,NA,a-curv-i5,2017-18,Lynnfield - Lynnfield Preschool,01640005, 4, 10.0, 40, 52.5, 47.5, 0.0, 50.0,10 +NA,NA,a-curv-i5,2017-18,Lynnfield - Summer Street,01640020, 84, 20.4, 429, 43.4, 56.6, 2.6, 15.2,4 +NA,NA,a-curv-i5,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 407, 20.3," 1,196", 52.5, 47.5, 31.2, 22.7,57.3 +NA,NA,a-curv-i5,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 24, 16.7, 50, 50.0, 50.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2017-18,Malden - Beebe,01650003, 382, 21.7, 887, 49.6, 50.4, 24.5, 13.3,42.3 +NA,NA,a-curv-i5,2017-18,Malden - Ferryway,01650013, 379, 23.0, 917, 50.9, 49.1, 22.2, 11.6,44.7 +NA,NA,a-curv-i5,2017-18,Malden - Forestdale,01650027, 317, 19.2, 589, 48.7, 51.3, 12.9, 23.1,40.1 +NA,NA,a-curv-i5,2017-18,Malden - Linden,01650047, 484, 17.7, 873, 48.2, 51.7, 11.0, 21.4,36 +NA,NA,a-curv-i5,2017-18,Malden - Malden Early Learning Center,01650049, 27, 16.6, 431, 37.4, 62.6, 10.7, 36.7,36.2 +NA,NA,a-curv-i5,2017-18,Malden - Malden High,01650505, 684, 19.7," 1,875", 48.0, 51.9, 16.8, 14.0,39.8 +NA,NA,a-curv-i5,2017-18,Malden - Salemwood,01650057, 609, 20.8," 1,234", 47.6, 52.4, 43.9, 8.8,50.7 +NA,NA,a-curv-i5,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 71, 19.1, 228, 50.9, 49.1, 1.8, 6.1,9.2 +6.878481012658227,5,a-curv-i5,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 316, 11.8, 443, 57.1, 42.9, 0.7, 10.8,5.9,443 +NA,NA,a-curv-i5,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 186, 20.4, 374, 46.5, 53.5, 0.3, 12.0,6.1 +NA,NA,a-curv-i5,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 107, 18.1, 342, 47.1, 52.9, 0.0, 7.0,6.4 +NA,NA,a-curv-i5,2017-18,Mansfield - Everett W Robinson,01670007, 148, 21.2, 727, 45.7, 54.3, 5.5, 13.8,14.6 +NA,NA,a-curv-i5,2017-18,Mansfield - Harold L Qualters Middle,01670035, 522, 20.5, 951, 47.7, 52.3, 1.9, 16.8,12.6 +NA,NA,a-curv-i5,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 190, 21.5, 792, 47.1, 52.9, 2.8, 13.3,13.8 +NA,NA,a-curv-i5,2017-18,Mansfield - Mansfield High,01670505, 753, 15.5," 1,312", 50.5, 49.5, 0.8, 9.5,11.8 +NA,NA,a-curv-i5,2017-18,Mansfield - Roland Green School,01670003, 6, 21.3, 126, 44.4, 55.6, 3.2, 55.6,23 +NA,NA,a-curv-i5,2017-18,Marblehead - Elbridge Gerry,01680015, 55, 19.8, 139, 44.6, 55.4, 7.2, 5.8,17.3 +NA,NA,a-curv-i5,2017-18,Marblehead - Glover,01680020, 123, 20.8, 387, 45.0, 55.0, 7.0, 23.8,6.7 +NA,NA,a-curv-i5,2017-18,Marblehead - L H Coffin,01680010, 59, 18.7, 158, 46.2, 53.8, 4.4, 18.4,10.8 +NA,NA,a-curv-i5,2017-18,Marblehead - Malcolm L Bell,01680005, 111, 18.4, 275, 43.6, 56.4, 7.6, 13.5,13.1 +NA,NA,a-curv-i5,2017-18,Marblehead - Marblehead High,01680505, 710, 13.2," 1,043", 52.9, 47.1, 1.8, 17.4,9.2 +NA,NA,a-curv-i5,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 284, 19.3, 497, 51.3, 48.7, 3.4, 24.3,8.9 +NA,NA,a-curv-i5,2017-18,Marblehead - Village School,01680016, 220, 28.0, 652, 46.8, 53.2, 4.9, 18.4,10.3 +NA,NA,a-curv-i5,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 90, 20.7, 230, 39.6, 60.4, 0.4, 25.7,10.4 +NA,NA,a-curv-i5,2017-18,Marion - Sippican,01690005, 166, 19.2, 454, 46.7, 53.3, 0.7, 20.7,20.5 +NA,NA,a-curv-i5,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 802, 22.6," 1,397", 48.1, 51.9, 18.8, 18.2,37.4 +NA,NA,a-curv-i5,2017-18,Marlborough - Charles Jaworek School,01700030, 252, 22.8, 821, 47.0, 53.0, 34.2, 13.4,35 +NA,NA,a-curv-i5,2017-18,Marlborough - Early Childhood Center,01700006, 17, 14.3, 210, 39.5, 60.5, 19.5, 46.7,28.1 +NA,NA,a-curv-i5,2017-18,Marlborough - Francis J Kane,01700008, 196, 23.3, 650, 49.2, 50.8, 27.8, 15.8,33.5 +NA,NA,a-curv-i5,2017-18,Marlborough - Marlborough High,01700505, 635, 14.2," 1,151", 49.3, 50.7, 16.7, 15.4,29 +NA,NA,a-curv-i5,2017-18,Marlborough - Richer,01700025, 196, 22.9, 641, 49.5, 50.5, 41.0, 15.0,42.1 +NA,NA,a-curv-i5,2017-18,Marshfield - Daniel Webster,01710015, 72, 18.7, 421, 50.4, 49.6, 2.1, 26.1,15.9 +NA,NA,a-curv-i5,2017-18,Marshfield - Eames Way School,01710005, 48, 20.2, 242, 37.6, 62.4, 0.0, 17.4,6.2 +NA,NA,a-curv-i5,2017-18,Marshfield - Furnace Brook Middle,01710310, 533, 18.0, 970, 46.5, 53.5, 0.8, 16.0,9.7 +NA,NA,a-curv-i5,2017-18,Marshfield - Gov Edward Winslow,01710020, 84, 19.8, 416, 48.8, 51.2, 0.0, 17.1,11.3 +NA,NA,a-curv-i5,2017-18,Marshfield - Marshfield High,01710505, 566, 18.5," 1,334", 50.8, 49.2, 0.5, 13.1,11.2 +NA,NA,a-curv-i5,2017-18,Marshfield - Martinson Elementary,01710025, 88, 18.6, 431, 49.0, 51.0, 4.9, 17.4,11.8 +NA,NA,a-curv-i5,2017-18,Marshfield - South River,01710010, 72, 20.7, 373, 50.7, 49.3, 0.5, 18.0,10.2 +NA,NA,a-curv-i5,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 736, 11.8, 639, 48.8, 51.0, 10.2, 17.8,20.7 +NA,NA,a-curv-i5,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 66, 16.1, 188, 54.8, 45.2, 4.8, 26.1,33 +NA,NA,a-curv-i5,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 142, 20.2, 358, 52.0, 48.0, 20.9, 21.2,73.5 +6.417993079584775,5,a-curv-i5,2017-18,Masconomet - Masconomet Regional High School,07050505, 578, 16.5," 1,143", 51.7, 48.2, 0.3, 15.3,5.8,1143 +NA,NA,a-curv-i5,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 322, 20.2, 658, 50.6, 49.4, 0.6, 20.8,4.9 +NA,NA,a-curv-i5,2017-18,Mashpee - Kenneth Coombs School,01720005, 210, 18.6, 449, 45.7, 54.3, 6.0, 16.0,37.6 +NA,NA,a-curv-i5,2017-18,Mashpee - Mashpee High,01720505, 304, 12.8, 464, 48.9, 51.1, 0.4, 14.0,23.7 +NA,NA,a-curv-i5,2017-18,Mashpee - Mashpee Middle School,01720020, 160, 17.2, 280, 50.7, 49.3, 1.4, 18.6,22.1 +NA,NA,a-curv-i5,2017-18,Mashpee - Quashnet School,01720035, 342, 18.8, 504, 50.2, 49.8, 2.2, 16.7,30.8 +NA,NA,a-curv-i5,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 138, 28.3, 609, 53.5, 46.5, 0.2, 23.0,51.2 +NA,NA,a-curv-i5,2017-18,Mattapoisett - Center,01730005, 118, 16.7, 244, 49.6, 50.4, 0.8, 18.0,16.4 +NA,NA,a-curv-i5,2017-18,Mattapoisett - Old Hammondtown,01730010, 111, 17.2, 204, 45.6, 54.4, 0.5, 13.7,13.7 +NA,NA,a-curv-i5,2017-18,Maynard - Fowler School,01740305, 285, 17.7, 521, 49.9, 50.1, 2.7, 18.4,16.7 +NA,NA,a-curv-i5,2017-18,Maynard - Green Meadow,01740010, 153, 19.7, 495, 46.1, 53.9, 7.3, 18.6,17 +6.492753623188406,5,a-curv-i5,2017-18,Maynard - Maynard High,01740505, 207, 16.3, 390, 53.6, 46.4, 5.4, 15.4,17.4,390 +NA,NA,a-curv-i5,2017-18,Medfield - Dale Street,01750005, 223, 18.6, 366, 47.5, 52.5, 2.5, 11.7,2.5 +NA,NA,a-curv-i5,2017-18,Medfield - Medfield Senior High,01750505, 445, 16.1, 831, 50.9, 49.1, 1.0, 9.4,5.4 +NA,NA,a-curv-i5,2017-18,Medfield - Memorial School,01750003, 182, 23.2, 445, 50.3, 49.7, 0.9, 13.0,6.5 +NA,NA,a-curv-i5,2017-18,Medfield - Ralph Wheelock School,01750007, 188, 25.0, 383, 46.0, 54.0, 2.6, 12.5,5.2 +NA,NA,a-curv-i5,2017-18,Medfield - Thomas Blake Middle,01750305, 565, 17.3, 625, 49.0, 51.0, 0.3, 12.3,2.7 +NA,NA,a-curv-i5,2017-18,Medford - Brooks School,01760130, 135, 18.3, 512, 48.8, 51.2, 9.6, 16.4,13.7 +NA,NA,a-curv-i5,2017-18,Medford - Christopher Columbus,01760140, 111, 17.4, 401, 46.9, 53.1, 18.5, 22.7,40.9 +NA,NA,a-curv-i5,2017-18,Medford - Curtis-Tufts,01760510, 26, 7.1, 27, 33.3, 66.7, 3.7, 96.3,51.9 +NA,NA,a-curv-i5,2017-18,Medford - John J McGlynn Elementary School,01760068, 133, 18.7, 512, 52.0, 48.0, 19.1, 18.0,39.8 +NA,NA,a-curv-i5,2017-18,Medford - John J. McGlynn Middle School,01760320, 369, 14.3, 477, 46.1, 53.9, 16.4, 20.1,36.3 +NA,NA,a-curv-i5,2017-18,Medford - Madeleine Dugger Andrews,01760315, 425, 14.7, 509, 46.8, 53.2, 0.2, 20.8,19.6 +NA,NA,a-curv-i5,2017-18,Medford - Medford High,01760505, 793, 14.5," 1,436", 49.9, 50.1, 9.5, 18.7,27.9 +NA,NA,a-curv-i5,2017-18,Medford - Milton Fuller Roberts,01760150, 164, 16.4, 545, 47.7, 52.3, 18.3, 18.2,28.6 +NA,NA,a-curv-i5,2017-18,Medway - Burke/Memorial Elementary School,01770015, 232, 21.4, 513, 52.4, 47.6, 1.4, 19.3,10.1 +NA,NA,a-curv-i5,2017-18,Medway - John D Mc Govern Elementary,01770013, 115, 18.8, 343, 49.3, 50.7, 5.2, 18.7,9.9 +NA,NA,a-curv-i5,2017-18,Medway - Medway High,01770505, 341, 15.7, 723, 47.7, 52.3, 0.0, 10.9,9 +NA,NA,a-curv-i5,2017-18,Medway - Medway Middle,01770305, 325, 19.2, 702, 51.3, 48.7, 0.6, 18.7,9.8 +NA,NA,a-curv-i5,2017-18,Melrose - Early Childhood Center,01780003, 22, 14.8, 326, 46.9, 53.1, 0.0, 17.5,8.6 +NA,NA,a-curv-i5,2017-18,Melrose - Herbert Clark Hoover,01780017, 104, 20.5, 267, 47.6, 52.4, 3.7, 10.1,10.9 +NA,NA,a-curv-i5,2017-18,Melrose - Horace Mann,01780025, 96, 23.0, 276, 54.0, 46.0, 0.4, 12.3,2.5 +NA,NA,a-curv-i5,2017-18,Melrose - Lincoln,01780020, 160, 20.9, 418, 53.1, 46.9, 19.6, 13.9,18.7 +NA,NA,a-curv-i5,2017-18,Melrose - Melrose High,01780505, 406, 18.5," 1,005", 53.4, 46.6, 1.7, 12.8,11.2 +NA,NA,a-curv-i5,2017-18,Melrose - Melrose Middle,01780305, 523, 19.6, 795, 50.2, 49.8, 3.3, 17.2,11.2 +NA,NA,a-curv-i5,2017-18,Melrose - Roosevelt,01780035, 160, 21.8, 435, 47.4, 52.6, 7.8, 14.7,13.1 +NA,NA,a-curv-i5,2017-18,Melrose - Winthrop,01780050, 152, 21.4, 406, 49.5, 50.5, 0.5, 11.8,5.9 +NA,NA,a-curv-i5,2017-18,Mendon-Upton - Henry P Clough,07100179, 95, 18.8, 379, 49.6, 50.4, 1.3, 17.4,7.1 +NA,NA,a-curv-i5,2017-18,Mendon-Upton - Memorial School,07100001, 107, 21.4, 477, 45.9, 54.1, 3.6, 14.5,10.1 +NA,NA,a-curv-i5,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 380, 20.2, 791, 49.3, 50.7, 0.3, 16.4,8.2 +NA,NA,a-curv-i5,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 371, 14.0, 638, 54.9, 45.1, 0.3, 11.6,9.6 +NA,NA,a-curv-i5,2017-18,Methuen - Comprehensive Grammar School,01810050, 344, 19.9," 1,120", 49.6, 50.4, 16.6, 19.0,29.8 +NA,NA,a-curv-i5,2017-18,Methuen - Donald P Timony Grammar,01810060, 388, 23.3," 1,383", 47.3, 52.7, 9.7, 18.4,40.7 +NA,NA,a-curv-i5,2017-18,Methuen - Marsh Grammar School,01810030, 392, 20.1," 1,205", 47.3, 52.7, 6.2, 20.8,25.9 +NA,NA,a-curv-i5,2017-18,Methuen - Methuen High,01810505," 1,131", 17.0," 1,987", 47.1, 52.9, 6.6, 8.1,29.9 +NA,NA,a-curv-i5,2017-18,Methuen - Tenney Grammar School,01810055, 410, 22.3," 1,385", 46.1, 53.9, 10.8, 19.9,40.8 +NA,NA,a-curv-i5,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 320, 19.8, 580, 47.6, 52.4, 1.0, 18.6,33.1 +NA,NA,a-curv-i5,2017-18,Middleborough - John T. Nichols Middle,01820305, 421, 25.6, 805, 50.2, 49.8, 1.0, 18.8,27.7 +NA,NA,a-curv-i5,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 278, 20.3, 583, 49.6, 50.4, 1.0, 18.5,28.3 +NA,NA,a-curv-i5,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 71, 20.6, 307, 47.9, 52.1, 1.3, 22.1,30.9 +NA,NA,a-curv-i5,2017-18,Middleborough - Middleborough High,01820505, 456, 13.9, 724, 48.9, 51.1, 0.4, 15.1,21.4 +NA,NA,a-curv-i5,2017-18,Middleton - Fuller Meadow,01840003, 100, 11.8, 229, 51.5, 48.5, 1.7, 15.7,7.9 +NA,NA,a-curv-i5,2017-18,Middleton - Howe-Manning,01840005, 199, 15.8, 461, 48.6, 51.4, 0.0, 19.1,8.2 +NA,NA,a-curv-i5,2017-18,Milford - Brookside,01850065, 182, 17.8, 473, 48.6, 51.4, 29.6, 12.3,39.5 +NA,NA,a-curv-i5,2017-18,Milford - Memorial,01850010, 177, 18.3, 488, 49.2, 50.8, 31.6, 12.9,35.7 +NA,NA,a-curv-i5,2017-18,Milford - Milford High,01850505, 567, 18.5," 1,181", 51.6, 48.4, 9.9, 13.9,26.7 +NA,NA,a-curv-i5,2017-18,Milford - Shining Star Early Childhood Center,01850075, 12, 15.5, 169, 42.6, 57.4, 8.9, 44.4,39.1 +NA,NA,a-curv-i5,2017-18,Milford - Stacy Middle,01850305, 495, 19.6," 1,004", 47.3, 52.7, 11.1, 14.2,30.4 +NA,NA,a-curv-i5,2017-18,Milford - Woodland,01850090, 427, 18.7, 981, 46.9, 53.1, 19.9, 14.1,34.6 +NA,NA,a-curv-i5,2017-18,Millbury - Elmwood Street,01860017, 209, 19.9, 597, 47.2, 52.8, 6.5, 15.7,27.8 +NA,NA,a-curv-i5,2017-18,Millbury - Millbury Junior/Senior High,01860505, 420, 16.4, 718, 51.9, 48.1, 1.1, 15.6,20.9 +NA,NA,a-curv-i5,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 183, 21.9, 439, 51.3, 48.7, 3.4, 18.5,26.7 +NA,NA,a-curv-i5,2017-18,Millis - Clyde F Brown,01870005, 193, 18.6, 504, 51.0, 49.0, 1.8, 15.9,9.1 +6.291304347826087,5,a-curv-i5,2017-18,Millis - Millis High School,01870505, 184, 14.5, 394, 49.0, 51.0, 0.5, 10.4,10.4,393 +NA,NA,a-curv-i5,2017-18,Millis - Millis Middle,01870020, 235, 18.3, 412, 47.3, 52.7, 0.7, 11.9,13.1 +NA,NA,a-curv-i5,2017-18,Milton - Charles S Pierce Middle,01890410, 512, 18.2, 907, 50.3, 49.7, 0.8, 15.7,10.6 +NA,NA,a-curv-i5,2017-18,Milton - Collicot,01890005, 70, 22.3, 732, 45.5, 54.5, 1.8, 19.8,4.8 +NA,NA,a-curv-i5,2017-18,Milton - Cunningham School,01890007, 55, 22.5, 535, 49.5, 50.5, 4.3, 15.1,6 +NA,NA,a-curv-i5,2017-18,Milton - Glover,01890010, 106, 21.7, 581, 50.1, 49.9, 1.2, 12.7,4.1 +NA,NA,a-curv-i5,2017-18,Milton - Milton High,01890505, 488, 17.5," 1,025", 50.5, 49.4, 1.5, 10.5,11 +NA,NA,a-curv-i5,2017-18,Milton - Tucker,01890020, 76, 21.5, 444, 49.1, 50.9, 4.1, 7.9,16.9 +NA,NA,a-curv-i5,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 557, 10.7, 534, 36.5, 63.3, 1.5, 50.2,20.4 +NA,NA,a-curv-i5,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 38, 25.8, 284, 50.4, 49.6, 0.4, 22.2,34.2 +NA,NA,a-curv-i5,2017-18,Mohawk Trail - Colrain Central,07170010, 34, 13.1, 106, 52.8, 47.2, 0.0, 29.2,34.9 +7.078571428571427,5,a-curv-i5,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 336, 10.6, 397, 51.9, 48.1, 0.3, 24.4,35.8,387 +NA,NA,a-curv-i5,2017-18,Mohawk Trail - Sanderson Academy,07170020, 41, 14.5, 162, 40.7, 59.3, 0.0, 16.7,25.9 +NA,NA,a-curv-i5,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 161, 15.7, 242, 56.6, 43.4, 7.0, 19.8,30.2 +NA,NA,a-curv-i5,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 336, 17.4, 561, 47.1, 52.9, 4.8, 14.6,27.5 +6.9491525423728815,5,a-curv-i5,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 472, 12.3, 628, 48.9, 51.1, 3.8, 12.7,22.9,620 +NA,NA,a-curv-i5,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 332, 16.8, 463, 50.3, 49.7, 4.3, 18.8,29.4 +NA,NA,a-curv-i5,2017-18,Monson - Granite Valley Middle,01910310, 202, 17.1, 286, 50.7, 49.3, 0.7, 19.6,23.8 +6.733742331288343,5,a-curv-i5,2017-18,Monson - Monson High School,01910505, 163, 12.6, 261, 51.0, 49.0, 0.0, 13.4,18.4,258 +NA,NA,a-curv-i5,2017-18,Monson - Quarry Hill Community School,01910025, 172, 18.9, 403, 48.4, 51.6, 1.2, 21.6,33.7 +NA,NA,a-curv-i5,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 799, 18.1," 1,409", 46.8, 52.9, 0.6, 14.9,22.1 +NA,NA,a-curv-i5,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 333, 13.1, 536, 51.7, 48.3, 0.2, 13.4,13.4 +NA,NA,a-curv-i5,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 754, 23.8," 1,555", 50.0, 50.0, 2.5, 13.2,17.9 +NA,NA,a-curv-i5,2017-18,Nahant - Johnson,01960010, 57, 17.6, 149, 51.7, 48.3, 0.0, 6.0,18.8 +NA,NA,a-curv-i5,2017-18,Nantucket - Cyrus Peirce,01970010, 216, 18.9, 367, 50.4, 49.6, 15.0, 15.8,21.3 +NA,NA,a-curv-i5,2017-18,Nantucket - Nantucket Elementary,01970005, 193, 18.6, 377, 46.7, 53.3, 29.4, 15.9,27.9 +NA,NA,a-curv-i5,2017-18,Nantucket - Nantucket High,01970505, 296, 15.2, 545, 47.5, 52.5, 13.0, 14.7,18.3 +NA,NA,a-curv-i5,2017-18,Nantucket - Nantucket Intermediate School,01970020, 192, 21.8, 388, 47.9, 52.1, 20.9, 11.1,20.6 +NA,NA,a-curv-i5,2017-18,Narragansett - Baldwinville Elementary,07200005, 112, 23.6, 283, 43.1, 56.9, 0.4, 19.1,28.3 +NA,NA,a-curv-i5,2017-18,Narragansett - Narragansett Middle,07200305, 147, 23.9, 468, 48.1, 51.9, 0.0, 15.2,29.1 +NA,NA,a-curv-i5,2017-18,Narragansett - Narragansett Regional High,07200505, 224, 13.0, 362, 52.5, 47.5, 0.6, 14.4,22.9 +NA,NA,a-curv-i5,2017-18,Narragansett - Phillipston Memorial,07200003, 52, 17.8, 171, 39.2, 60.8, 1.2, 28.1,35.1 +NA,NA,a-curv-i5,2017-18,Narragansett - Templeton Center,07200020, 72, 21.9, 175, 46.9, 53.1, 0.0, 18.9,26.9 +NA,NA,a-curv-i5,2017-18,Nashoba - Center School,07250020, 189, 20.1, 563, 48.3, 51.7, 2.0, 15.5,4.1 +NA,NA,a-curv-i5,2017-18,Nashoba - Florence Sawyer School,07250025, 298, 20.1, 769, 50.5, 49.5, 1.4, 14.4,5.2 +NA,NA,a-curv-i5,2017-18,Nashoba - Hale,07250310, 145, 20.5, 298, 54.7, 45.3, 2.0, 13.4,4.4 +NA,NA,a-curv-i5,2017-18,Nashoba - Luther Burbank Middle School,07250305, 137, 18.1, 244, 44.7, 55.3, 2.0, 20.9,15.2 +NA,NA,a-curv-i5,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 130, 26.0, 484, 48.6, 51.4, 4.1, 22.1,16.5 +NA,NA,a-curv-i5,2017-18,Nashoba - Nashoba Regional,07250505, 560, 14.1, 979, 50.4, 49.6, 0.5, 12.3,4.7 +6.530526315789473,5,a-curv-i5,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 380, 13.7, 674, 40.4, 59.3, 0.4, 36.2,17.4,698 +NA,NA,a-curv-i5,2017-18,Natick - Bennett-Hemenway,01980005, 115, 20.8, 594, 49.0, 51.0, 2.0, 15.5,7.4 +NA,NA,a-curv-i5,2017-18,Natick - Brown,01980010, 113, 19.0, 519, 48.7, 51.3, 15.4, 11.6,12.3 +NA,NA,a-curv-i5,2017-18,Natick - J F Kennedy Middle School,01980305, 337, 20.5, 652, 49.5, 50.5, 3.7, 13.2,6.9 +NA,NA,a-curv-i5,2017-18,Natick - Johnson,01980031, 44, 21.1, 232, 41.4, 58.6, 0.9, 12.1,14.2 +NA,NA,a-curv-i5,2017-18,Natick - Lilja Elementary,01980035, 101, 17.5, 436, 52.1, 47.9, 3.4, 10.1,11.2 +NA,NA,a-curv-i5,2017-18,Natick - Memorial,01980043, 84, 19.7, 414, 45.9, 54.1, 0.7, 10.6,5.1 +NA,NA,a-curv-i5,2017-18,Natick - Natick High,01980505," 1,336", 17.5," 1,750", 50.1, 49.8, 2.1, 15.0,8.5 +NA,NA,a-curv-i5,2017-18,Natick - Wilson Middle,01980310, 451, 21.7, 952, 48.9, 51.1, 0.4, 17.3,10.1 +NA,NA,a-curv-i5,2017-18,Nauset - Nauset Regional High,06600505, 541, 14.7, 940, 54.6, 45.4, 2.3, 9.9,17.6 +NA,NA,a-curv-i5,2017-18,Nauset - Nauset Regional Middle,06600305, 401, 18.4, 566, 48.6, 51.2, 1.4, 20.7,19.4 +NA,NA,a-curv-i5,2017-18,Needham - Broadmeadow,01990005, 126, 21.4, 544, 52.8, 47.2, 4.0, 13.4,2.6 +NA,NA,a-curv-i5,2017-18,Needham - High Rock School,01990410, 306, 19.1, 456, 50.9, 49.1, 1.8, 19.3,5.7 +NA,NA,a-curv-i5,2017-18,Needham - Hillside Elementary,01990035, 110, 21.2, 484, 47.5, 52.5, 7.0, 14.9,3.9 +NA,NA,a-curv-i5,2017-18,Needham - John Eliot,01990020, 97, 19.9, 399, 47.6, 52.4, 7.3, 17.5,9 +NA,NA,a-curv-i5,2017-18,Needham - Needham High,01990505, 730, 16.6," 1,675", 49.4, 50.4, 0.5, 17.1,5.2 +NA,NA,a-curv-i5,2017-18,Needham - Newman Elementary,01990050, 163, 20.4, 765, 49.0, 51.0, 5.0, 22.1,6.9 +NA,NA,a-curv-i5,2017-18,Needham - Pollard Middle,01990405, 635, 18.2, 852, 52.8, 47.2, 1.1, 17.8,4.7 +NA,NA,a-curv-i5,2017-18,Needham - William Mitchell,01990040, 116, 21.4, 499, 50.9, 49.1, 2.8, 11.2,3 +NA,NA,a-curv-i5,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 156, 28.7, 568, 49.5, 50.5, 6.9, 17.4,38.2 +NA,NA,a-curv-i5,2017-18,New Bedford - Abraham Lincoln,02010095, 307, 21.3, 720, 47.8, 52.2, 18.5, 14.7,66.4 +NA,NA,a-curv-i5,2017-18,New Bedford - Alfred J Gomes,02010063, 211, 20.5, 583, 47.0, 53.0, 70.7, 22.0,75.8 +NA,NA,a-curv-i5,2017-18,New Bedford - Betsey B Winslow,02010140, 112, 22.5, 306, 51.6, 48.4, 11.4, 12.7,47.7 +NA,NA,a-curv-i5,2017-18,New Bedford - Carlos Pacheco,02010105, 145, 19.3, 348, 44.5, 55.5, 46.0, 17.5,75 +NA,NA,a-curv-i5,2017-18,New Bedford - Casimir Pulaski,02010123, 336, 17.2, 768, 42.3, 57.7, 16.3, 29.7,44.5 +NA,NA,a-curv-i5,2017-18,New Bedford - Charles S Ashley,02010010, 120, 18.5, 278, 47.8, 52.2, 13.7, 15.8,54.7 +NA,NA,a-curv-i5,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 99, 22.3, 302, 46.7, 53.3, 25.5, 13.2,65.6 +NA,NA,a-curv-i5,2017-18,New Bedford - Ellen R Hathaway,02010075, 129, 18.1, 314, 50.6, 49.4, 57.6, 20.7,71.7 +NA,NA,a-curv-i5,2017-18,New Bedford - Elwyn G Campbell,02010020, 88, 22.2, 280, 49.6, 50.4, 21.4, 26.1,53.6 +NA,NA,a-curv-i5,2017-18,New Bedford - Hayden/McFadden,02010078, 369, 17.8, 707, 48.4, 51.6, 52.2, 23.2,80.5 +NA,NA,a-curv-i5,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 139, 21.3, 374, 51.1, 48.9, 49.2, 21.1,79.4 +NA,NA,a-curv-i5,2017-18,New Bedford - James B Congdon,02010040, 142, 18.8, 338, 51.8, 48.2, 43.5, 15.4,72.8 +NA,NA,a-curv-i5,2017-18,New Bedford - Jireh Swift,02010130, 80, 21.3, 213, 54.0, 46.0, 11.3, 11.7,50.7 +NA,NA,a-curv-i5,2017-18,New Bedford - John Avery Parker,02010115, 98, 19.2, 262, 46.9, 53.1, 36.3, 16.4,66.8 +NA,NA,a-curv-i5,2017-18,New Bedford - John B Devalles,02010050, 168, 18.2, 382, 51.8, 48.2, 37.2, 20.7,79.1 +NA,NA,a-curv-i5,2017-18,New Bedford - Keith Middle School,02010405, 438, 19.6, 885, 48.5, 51.5, 22.7, 22.1,64.3 +NA,NA,a-curv-i5,2017-18,New Bedford - New Bedford High,02010505," 1,192", 15.6," 2,064", 47.6, 52.4, 31.0, 16.4,60.5 +NA,NA,a-curv-i5,2017-18,New Bedford - Normandin Middle School,02010410, 547, 20.0," 1,260", 48.5, 51.5, 22.1, 19.0,57.8 +NA,NA,a-curv-i5,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 82, 19.0, 218, 55.5, 44.5, 57.8, 15.1,71.1 +NA,NA,a-curv-i5,2017-18,New Bedford - Roosevelt Middle School,02010415, 392, 19.7, 815, 48.2, 51.8, 29.0, 24.9,70.4 +NA,NA,a-curv-i5,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 364, 16.3, 816, 42.0, 58.0, 14.8, 29.0,68.4 +NA,NA,a-curv-i5,2017-18,New Bedford - Thomas R Rodman,02010125, 74, 21.8, 197, 43.1, 56.9, 23.4, 13.7,68.5 +NA,NA,a-curv-i5,2017-18,New Bedford - Trinity Day Academy,02010510, 131, 5.8, 95, 35.8, 64.2, 5.3, 96.8,86.3 +7.393939393939394,5,a-curv-i5,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 132, 5.1, 122, 27.9, 72.1, 11.5, 32.8,82,100 +NA,NA,a-curv-i5,2017-18,New Bedford - William H Taylor,02010135, 100, 18.7, 272, 49.6, 50.4, 17.3, 11.0,52.9 +NA,NA,a-curv-i5,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 158, 22.1, 458, 50.0, 50.0, 10.3, 10.3,41.3 +NA,NA,a-curv-i5,2017-18,New Salem-Wendell - Swift River,07280015, 24, 18.7, 159, 50.3, 49.7, 0.0, 17.6,35.2 +NA,NA,a-curv-i5,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 114, 20.8, 324, 49.7, 50.3, 0.9, 22.2,9.6 +NA,NA,a-curv-i5,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 181, 17.1, 621, 49.0, 51.0, 2.3, 21.1,9.5 +NA,NA,a-curv-i5,2017-18,Newburyport - Newburyport High,02040505, 632, 16.5, 786, 53.9, 46.1, 1.3, 9.9,9 +NA,NA,a-curv-i5,2017-18,Newburyport - Rupert A Nock Middle,02040305, 320, 21.1, 563, 46.5, 53.5, 1.2, 17.8,8.7 +NA,NA,a-curv-i5,2017-18,Newton - A E Angier,02070005, 153, 21.7, 469, 52.2, 47.8, 7.0, 18.8,3.8 +NA,NA,a-curv-i5,2017-18,Newton - Bigelow Middle,02070305, 310, 18.4, 524, 52.9, 47.1, 7.1, 19.7,10.9 +NA,NA,a-curv-i5,2017-18,Newton - Bowen,02070015, 139, 21.8, 424, 47.2, 52.8, 14.6, 14.4,6.6 +NA,NA,a-curv-i5,2017-18,Newton - C C Burr,02070020, 138, 20.3, 394, 49.7, 50.3, 10.7, 15.7,9.4 +NA,NA,a-curv-i5,2017-18,Newton - Cabot,02070025, 144, 19.5, 398, 52.5, 47.5, 6.5, 12.6,7.3 +NA,NA,a-curv-i5,2017-18,Newton - Charles E Brown Middle,02070310, 463, 18.7, 758, 47.2, 52.8, 2.8, 20.7,6.9 +NA,NA,a-curv-i5,2017-18,Newton - Countryside,02070040, 146, 20.7, 422, 50.7, 49.3, 16.6, 16.4,12.3 +NA,NA,a-curv-i5,2017-18,Newton - F A Day Middle,02070315, 527, 22.3, 993, 44.8, 55.2, 3.2, 19.9,8.1 +NA,NA,a-curv-i5,2017-18,Newton - Franklin,02070055, 151, 20.1, 432, 55.6, 44.4, 4.4, 16.9,6.9 +NA,NA,a-curv-i5,2017-18,Newton - Horace Mann,02070075, 132, 22.0, 409, 44.0, 56.0, 8.6, 11.2,9 +NA,NA,a-curv-i5,2017-18,Newton - John Ward,02070120, 116, 18.7, 307, 51.1, 48.9, 5.5, 15.0,3.3 +NA,NA,a-curv-i5,2017-18,Newton - Lincoln-Eliot,02070070, 132, 20.0, 367, 52.6, 47.1, 21.8, 21.0,20.2 +NA,NA,a-curv-i5,2017-18,Newton - Mason-Rice,02070080, 159, 23.1, 521, 48.0, 52.0, 6.3, 12.5,2.7 +NA,NA,a-curv-i5,2017-18,Newton - Memorial Spaulding,02070105, 160, 20.1, 452, 47.3, 52.7, 10.8, 19.0,6.4 +NA,NA,a-curv-i5,2017-18,Newton - Newton Early Childhood Center,02070108, 14, 19.1, 268, 33.6, 66.4, 9.3, 69.8,11.9 +NA,NA,a-curv-i5,2017-18,Newton - Newton North High,02070505," 1,017", 16.2," 2,173", 49.5, 50.3, 3.0, 23.1,10.3 +NA,NA,a-curv-i5,2017-18,Newton - Newton South High,02070510, 965, 14.9," 1,898", 48.5, 51.3, 2.9, 17.4,8.9 +NA,NA,a-curv-i5,2017-18,Newton - Oak Hill Middle,02070320, 406, 17.5, 623, 50.1, 49.9, 6.9, 18.5,8.5 +NA,NA,a-curv-i5,2017-18,Newton - Peirce,02070100, 103, 18.7, 273, 49.1, 50.9, 5.1, 10.6,6.6 +NA,NA,a-curv-i5,2017-18,Newton - Underwood,02070115, 104, 19.8, 290, 53.8, 46.2, 10.0, 13.8,10 +NA,NA,a-curv-i5,2017-18,Newton - Williams,02070125, 104, 19.5, 286, 43.7, 56.3, 10.5, 16.8,7 +NA,NA,a-curv-i5,2017-18,Newton - Zervas,02070130, 139, 21.0, 411, 50.4, 49.4, 14.1, 16.8,8.8 +NA,NA,a-curv-i5,2017-18,Norfolk - Freeman-Kennedy School,02080005, 154, 22.0, 489, 45.6, 54.4, 0.8, 17.6,4.7 +NA,NA,a-curv-i5,2017-18,Norfolk - H Olive Day,02080015, 88, 19.0, 470, 45.7, 54.3, 4.0, 18.7,5.7 +NA,NA,a-curv-i5,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 462, 16.1, 550, 69.3, 30.7, 0.2, 20.0,14.2 +NA,NA,a-curv-i5,2017-18,North Adams - Brayton,02090035, 136, 13.7, 286, 49.7, 50.3, 0.7, 25.9,67.8 +NA,NA,a-curv-i5,2017-18,North Adams - Colegrove Park Elementary,02090008, 115, 20.1, 360, 48.9, 51.1, 1.9, 28.9,61.9 +NA,NA,a-curv-i5,2017-18,North Adams - Drury High,02090505, 281, 15.0, 529, 53.3, 46.7, 0.0, 21.7,51.4 +NA,NA,a-curv-i5,2017-18,North Adams - Greylock,02090015, 103, 18.0, 301, 50.2, 49.8, 2.3, 20.9,57.8 +NA,NA,a-curv-i5,2017-18,North Andover - Annie L Sargent School,02110018, 198, 21.4, 565, 49.4, 50.6, 1.1, 14.7,6.7 +NA,NA,a-curv-i5,2017-18,North Andover - Atkinson,02110001, 155, 23.0, 593, 48.2, 51.8, 6.1, 21.4,28 +NA,NA,a-curv-i5,2017-18,North Andover - Franklin,02110010, 190, 18.1, 455, 44.4, 55.6, 1.1, 18.2,8.4 +NA,NA,a-curv-i5,2017-18,North Andover - Kittredge,02110015, 98, 22.2, 289, 44.3, 55.7, 1.0, 14.9,10.4 +NA,NA,a-curv-i5,2017-18,North Andover - North Andover High,02110505," 1,191", 19.6," 1,503", 51.9, 48.1, 1.1, 8.9,11.3 +NA,NA,a-curv-i5,2017-18,North Andover - North Andover Middle,02110305, 708, 23.6," 1,118", 48.7, 51.3, 1.1, 14.1,14.9 +NA,NA,a-curv-i5,2017-18,North Andover - Thomson,02110020, 130, 20.0, 341, 52.2, 47.8, 8.5, 15.2,23.5 +NA,NA,a-curv-i5,2017-18,North Attleborough - Amvet Boulevard,02120007, 131, 20.1, 383, 52.0, 48.0, 5.0, 7.3,7.8 +NA,NA,a-curv-i5,2017-18,North Attleborough - Community,02120030, 170, 12.6, 313, 42.8, 57.2, 10.5, 27.8,41.9 +NA,NA,a-curv-i5,2017-18,North Attleborough - Falls,02120010, 111, 16.9, 271, 47.2, 52.8, 2.2, 13.7,15.9 +NA,NA,a-curv-i5,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 191, 23.0, 642, 50.0, 50.0, 3.1, 15.7,12.6 +NA,NA,a-curv-i5,2017-18,North Attleborough - North Attleboro High,02120505, 581, 17.7," 1,152", 49.8, 50.1, 1.7, 13.0,13.2 +NA,NA,a-curv-i5,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 65, 11.9, 155, 35.5, 64.5, 0.0, 40.6,21.3 +NA,NA,a-curv-i5,2017-18,North Attleborough - North Attleborough Middle,02120305, 513, 19.9," 1,093", 48.7, 51.1, 1.6, 17.3,13.8 +NA,NA,a-curv-i5,2017-18,North Attleborough - Roosevelt Avenue,02120015, 94, 20.5, 283, 56.2, 43.8, 3.2, 9.5,12.4 +NA,NA,a-curv-i5,2017-18,North Brookfield - North Brookfield Elementary,02150015, 58, 20.9, 325, 47.7, 52.3, 0.0, 24.6,33.5 +NA,NA,a-curv-i5,2017-18,North Brookfield - North Brookfield High,02150505, 114, 13.5, 239, 49.0, 51.0, 0.0, 21.8,33.5 +NA,NA,a-curv-i5,2017-18,North Middlesex - Ashby Elementary,07350010, 111, 17.3, 185, 43.2, 56.8, 0.0, 36.2,30.8 +NA,NA,a-curv-i5,2017-18,North Middlesex - Hawthorne Brook,07350030, 316, 20.2, 499, 50.3, 49.7, 1.4, 18.6,17.2 +NA,NA,a-curv-i5,2017-18,North Middlesex - Nissitissit Middle School,07350310, 334, 18.4, 527, 48.0, 52.0, 0.2, 25.2,12.1 +NA,NA,a-curv-i5,2017-18,North Middlesex - North Middlesex Regional,07350505, 441, 17.8, 797, 54.0, 46.0, 0.4, 12.5,13.6 +NA,NA,a-curv-i5,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 1, 16.0, 16, 31.3, 68.8, 0.0, 100.0,81.3 +NA,NA,a-curv-i5,2017-18,North Middlesex - Spaulding Memorial,07350005, 207, 20.9, 430, 50.5, 49.5, 4.2, 20.7,24 +NA,NA,a-curv-i5,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 17, 20.4, 107, 35.5, 64.5, 0.0, 48.6,22.4 +NA,NA,a-curv-i5,2017-18,North Middlesex - Varnum Brook,07350035, 255, 21.4, 546, 47.1, 52.9, 0.2, 23.3,21.4 +NA,NA,a-curv-i5,2017-18,North Reading - E Ethel Little School,02170003, 177, 17.9, 338, 46.7, 53.3, 1.2, 19.8,12.1 +NA,NA,a-curv-i5,2017-18,North Reading - J Turner Hood,02170010, 191, 17.9, 335, 47.5, 52.5, 0.9, 21.2,7.8 +NA,NA,a-curv-i5,2017-18,North Reading - L D Batchelder,02170005, 199, 24.1, 472, 48.7, 51.3, 1.5, 15.0,6.4 +NA,NA,a-curv-i5,2017-18,North Reading - North Reading High,02170505, 311, 19.9, 800, 52.1, 47.9, 0.6, 14.1,7 +NA,NA,a-curv-i5,2017-18,North Reading - North Reading Middle,02170305, 359, 15.5, 548, 51.1, 48.9, 0.5, 21.7,8.2 +NA,NA,a-curv-i5,2017-18,Northampton - Bridge Street,02100005, 81, 19.0, 302, 43.0, 57.0, 8.6, 29.1,41.4 +NA,NA,a-curv-i5,2017-18,Northampton - Jackson Street,02100020, 108, 20.3, 358, 55.9, 44.1, 6.1, 17.0,26.5 +NA,NA,a-curv-i5,2017-18,Northampton - John F Kennedy Middle School,02100410, 543, 13.6, 629, 48.0, 52.0, 4.0, 25.4,27 +NA,NA,a-curv-i5,2017-18,Northampton - Leeds,02100025, 97, 18.9, 336, 46.7, 53.3, 3.0, 24.7,25.6 +NA,NA,a-curv-i5,2017-18,Northampton - Northampton High,02100505, 384, 16.6, 869, 51.8, 48.2, 2.0, 16.1,17.6 +NA,NA,a-curv-i5,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 72, 18.7, 229, 47.2, 52.8, 3.5, 22.7,30.1 +NA,NA,a-curv-i5,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 291, 13.7, 493, 41.8, 58.2, 1.2, 37.7,32.5 +NA,NA,a-curv-i5,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 793, 15.6," 1,474", 51.7, 48.3, 1.6, 13.4,5.7 +NA,NA,a-curv-i5,2017-18,Northborough - Fannie E Proctor,02130015, 61, 17.0, 247, 47.8, 52.2, 5.7, 21.5,15 +NA,NA,a-curv-i5,2017-18,Northborough - Lincoln Street,02130003, 55, 19.7, 258, 53.9, 46.1, 7.4, 19.8,10.1 +NA,NA,a-curv-i5,2017-18,Northborough - Marguerite E Peaslee,02130014, 58, 19.5, 272, 44.1, 55.9, 5.9, 21.7,8.5 +NA,NA,a-curv-i5,2017-18,Northborough - Marion E Zeh,02130020, 50, 20.0, 241, 44.0, 56.0, 4.6, 19.9,5.8 +NA,NA,a-curv-i5,2017-18,Northborough - Robert E. Melican Middle School,02130305, 381, 18.1, 622, 48.1, 51.9, 2.3, 19.3,10.3 +NA,NA,a-curv-i5,2017-18,Northbridge - Northbridge Elementary,02140005, 85, 19.2, 392, 41.8, 58.2, 4.1, 24.7,32.9 +NA,NA,a-curv-i5,2017-18,Northbridge - Northbridge High,02140505, 389, 14.7, 571, 49.9, 50.1, 1.1, 9.8,23.6 +NA,NA,a-curv-i5,2017-18,Northbridge - Northbridge Middle,02140305, 395, 21.3, 742, 48.9, 51.1, 1.6, 14.7,24.3 +NA,NA,a-curv-i5,2017-18,Northbridge - W Edward Balmer,02140001, 138, 22.1, 508, 51.6, 48.4, 2.6, 13.2,31.7 +NA,NA,a-curv-i5,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 894, 19.2," 1,252", 46.6, 53.4, 3.8, 21.5,33.6 +NA,NA,a-curv-i5,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 411, 13.7, 484, 36.6, 63.4, 0.0, 17.1,31.2 +NA,NA,a-curv-i5,2017-18,Norton - Henri A. Yelle,02180060, 173, 24.8, 397, 49.1, 50.9, 1.3, 16.1,17.9 +NA,NA,a-curv-i5,2017-18,Norton - J C Solmonese,02180015, 113, 19.9, 481, 47.8, 52.2, 0.8, 26.6,20.8 +NA,NA,a-curv-i5,2017-18,Norton - L G Nourse Elementary,02180010, 76, 20.6, 285, 48.1, 51.9, 3.2, 17.9,28.8 +NA,NA,a-curv-i5,2017-18,Norton - Norton High,02180505, 314, 19.3, 738, 47.3, 52.7, 0.3, 13.3,12.5 +NA,NA,a-curv-i5,2017-18,Norton - Norton Middle,02180305, 392, 15.4, 590, 52.9, 47.1, 1.2, 18.6,14.2 +NA,NA,a-curv-i5,2017-18,Norwell - Grace Farrar Cole,02190005, 112, 19.3, 479, 41.8, 58.2, 0.0, 15.9,4.6 +NA,NA,a-curv-i5,2017-18,Norwell - Norwell High,02190505, 310, 15.8, 699, 50.8, 49.2, 0.1, 11.6,4.1 +NA,NA,a-curv-i5,2017-18,Norwell - Norwell Middle School,02190405, 467, 17.3, 510, 51.8, 48.2, 0.0, 18.6,3.5 +NA,NA,a-curv-i5,2017-18,Norwell - William G Vinal,02190020, 152, 21.0, 519, 46.4, 53.6, 0.2, 15.6,1.7 +NA,NA,a-curv-i5,2017-18,Norwood - Balch,02200005, 75, 18.3, 312, 49.7, 50.3, 20.5, 22.4,37.8 +NA,NA,a-curv-i5,2017-18,Norwood - Charles J Prescott,02200025, 57, 17.7, 236, 49.6, 50.4, 14.4, 18.2,10.2 +NA,NA,a-curv-i5,2017-18,Norwood - Cornelius M Callahan,02200010, 48, 19.5, 215, 47.0, 53.0, 16.7, 29.8,31.6 +NA,NA,a-curv-i5,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 410, 18.4, 758, 48.9, 51.1, 3.3, 18.9,24.5 +NA,NA,a-curv-i5,2017-18,Norwood - F A Cleveland,02200015, 75, 19.5, 335, 48.4, 51.6, 13.4, 26.6,17.3 +NA,NA,a-curv-i5,2017-18,Norwood - George F. Willett,02200075, 54, 17.3, 387, 47.8, 52.2, 18.6, 25.3,25.8 +NA,NA,a-curv-i5,2017-18,Norwood - John P Oldham,02200020, 63, 15.7, 225, 54.2, 45.8, 5.8, 25.8,18.7 +NA,NA,a-curv-i5,2017-18,Norwood - Norwood High,02200505, 512, 15.1, 984, 49.6, 50.4, 7.1, 15.7,22.2 +NA,NA,a-curv-i5,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 203, 14.9, 431, 50.6, 49.4, 18.8, 23.4,24.4 +NA,NA,a-curv-i5,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 276, 17.7, 531, 37.5, 62.5, 0.2, 24.3,15.4 +NA,NA,a-curv-i5,2017-18,Old Rochester - Old Rochester Regional High,07400505, 354, 17.5, 777, 52.5, 47.5, 0.0, 11.1,10.7 +NA,NA,a-curv-i5,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 292, 19.7, 487, 46.0, 54.0, 0.0, 14.0,12.9 +NA,NA,a-curv-i5,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 32, 19.9, 158, 46.2, 53.8, 5.7, 11.4,27.8 +NA,NA,a-curv-i5,2017-18,Orange - Dexter Park,02230010, 140, 22.1, 309, 43.0, 57.0, 1.3, 28.2,50.2 +NA,NA,a-curv-i5,2017-18,Orange - Fisher Hill,02230015, 136, 18.1, 274, 49.3, 50.7, 1.1, 27.4,57.7 +NA,NA,a-curv-i5,2017-18,Orleans - Orleans Elementary,02240005, 154, 17.4, 228, 47.8, 52.2, 7.9, 20.2,23.7 +NA,NA,a-curv-i5,2017-18,Oxford - Alfred M Chaffee,02260010, 64, 19.7, 289, 45.0, 55.0, 0.0, 18.0,33.9 +NA,NA,a-curv-i5,2017-18,Oxford - Clara Barton,02260005, 81, 23.5, 381, 46.7, 53.3, 0.0, 15.7,31.2 +NA,NA,a-curv-i5,2017-18,Oxford - Oxford High,02260505, 300, 18.0, 552, 52.9, 47.1, 0.9, 13.6,30.3 +NA,NA,a-curv-i5,2017-18,Oxford - Oxford Middle,02260405, 204, 24.5, 450, 47.6, 52.4, 0.2, 14.9,30.7 +NA,NA,a-curv-i5,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 30, 7.1, 37, 8.1, 91.9, 0.0, 40.5,51.4 +NA,NA,a-curv-i5,2017-18,Palmer - Old Mill Pond,02270008, 412, 15.7, 700, 50.7, 49.3, 3.3, 20.4,43.7 +NA,NA,a-curv-i5,2017-18,Palmer - Palmer High,02270505, 432, 14.4, 715, 48.7, 51.2, 1.4, 19.3,35 +NA,NA,a-curv-i5,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 493, 12.1, 622, 37.5, 62.5, 0.0, 26.2,35.2 +NA,NA,a-curv-i5,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 177, 14.2, 300, 54.7, 45.3, 13.3, 14.0,72.3 +NA,NA,a-curv-i5,2017-18,Peabody - Captain Samuel Brown,02290005, 147, 17.9, 365, 44.1, 55.9, 7.1, 35.6,26.6 +NA,NA,a-curv-i5,2017-18,Peabody - Center,02290015, 157, 20.2, 401, 51.1, 48.9, 12.2, 14.2,30.4 +NA,NA,a-curv-i5,2017-18,Peabody - J Henry Higgins Middle,02290305, 832, 19.4," 1,388", 48.7, 51.3, 6.0, 19.6,25.4 +NA,NA,a-curv-i5,2017-18,Peabody - John E Burke,02290007, 123, 15.1, 264, 50.8, 49.2, 4.2, 26.9,19.3 +NA,NA,a-curv-i5,2017-18,Peabody - John E. McCarthy,02290016, 106, 19.2, 389, 40.9, 59.1, 5.9, 35.7,32.1 +NA,NA,a-curv-i5,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 751, 15.4," 1,444", 48.4, 51.6, 3.9, 19.3,25.6 +NA,NA,a-curv-i5,2017-18,Peabody - South Memorial,02290035, 153, 20.7, 460, 56.7, 43.3, 4.3, 12.8,22.2 +NA,NA,a-curv-i5,2017-18,Peabody - Thomas Carroll,02290010, 243, 20.2, 616, 53.2, 46.8, 14.9, 14.1,39.6 +NA,NA,a-curv-i5,2017-18,Peabody - West Memorial,02290045, 100, 15.7, 251, 45.4, 54.6, 0.8, 19.9,16.3 +NA,NA,a-curv-i5,2017-18,Peabody - William A Welch Sr,02290027, 136, 19.1, 360, 49.4, 50.6, 17.2, 16.9,49.4 +NA,NA,a-curv-i5,2017-18,Pelham - Pelham Elementary,02300005, 42, 17.8, 127, 48.0, 52.0, 0.8, 26.0,20.5 +NA,NA,a-curv-i5,2017-18,Pembroke - Bryantville Elementary,02310003, 192, 18.5, 499, 48.9, 51.1, 0.4, 15.2,19 +NA,NA,a-curv-i5,2017-18,Pembroke - Hobomock Elementary,02310010, 166, 18.3, 420, 43.6, 56.4, 1.4, 13.8,8.6 +NA,NA,a-curv-i5,2017-18,Pembroke - North Pembroke Elementary,02310015, 211, 16.9, 559, 46.0, 53.8, 1.8, 18.2,11.8 +NA,NA,a-curv-i5,2017-18,Pembroke - Pembroke Community Middle School,02310305, 295, 19.3, 494, 50.8, 49.2, 0.0, 13.0,13.2 +6.284651162790698,5,a-curv-i5,2017-18,Pembroke - Pembroke High School,02310505, 430, 16.4, 916, 50.0, 49.7, 0.0, 10.7,8.4,922 +NA,NA,a-curv-i5,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 63, 15.0, 229, 43.7, 56.3, 0.4, 31.0,16.2 +NA,NA,a-curv-i5,2017-18,Pentucket - Dr John C Page School,07450015, 121, 17.8, 345, 49.6, 50.4, 0.0, 21.4,8.1 +NA,NA,a-curv-i5,2017-18,Pentucket - Elmer S Bagnall,07450005, 147, 19.0, 511, 44.4, 55.6, 0.0, 22.1,12.7 +NA,NA,a-curv-i5,2017-18,Pentucket - Helen R Donaghue School,07450010, 91, 19.7, 230, 49.6, 50.4, 0.4, 26.5,15.7 +NA,NA,a-curv-i5,2017-18,Pentucket - Pentucket Regional Middle,07450405, 221, 17.6, 424, 43.6, 56.4, 0.0, 19.1,9.7 +NA,NA,a-curv-i5,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 418, 14.5, 740, 49.9, 50.1, 0.3, 11.9,9.2 +NA,NA,a-curv-i5,2017-18,Petersham - Petersham Center,02340005, 48, 16.7, 115, 48.7, 51.3, 0.9, 26.1,20.9 +4.133333333333334,4.13,a-curv-i5,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 42, 17.7, 154, 47.4, 52.6, 27.3, 24.7,80.5,203 +NA,NA,a-curv-i5,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 51, 15.7, 169, 44.4, 55.6, 60.9, 9.5,47.9 +NA,NA,a-curv-i5,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 276, 19.5, 679, 52.6, 47.4, 26.2, 8.7,36.8 +NA,NA,a-curv-i5,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 167, 18.1, 362, 53.0, 47.0, 23.2, 11.6,25.1 +NA,NA,a-curv-i5,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 44, 17.8, 159, 52.8, 47.2, 0.6, 18.9,28.3 +NA,NA,a-curv-i5,2017-18,Pioneer Valley - Northfield Elementary,07500008, 57, 16.4, 189, 48.7, 51.3, 0.0, 23.3,24.3 +NA,NA,a-curv-i5,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 37, 3.8, 34, 58.8, 41.2, 0.0, 32.4,44.1 +NA,NA,a-curv-i5,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 277, 13.6, 355, 50.1, 49.9, 0.3, 13.0,16.9 +NA,NA,a-curv-i5,2017-18,Pioneer Valley - Warwick Community School,07500009, 38, 7.2, 60, 45.0, 55.0, 0.0, 13.3,31.7 +NA,NA,a-curv-i5,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 265, 17.2, 493, 52.5, 47.3, 2.8, 5.7,14 +NA,NA,a-curv-i5,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 367, 12.7, 404, 69.3, 30.4, 0.5, 22.5,21.3 +NA,NA,a-curv-i5,2017-18,Pittsfield - Allendale,02360010, 102, 17.2, 292, 50.0, 50.0, 4.1, 10.6,50.3 +NA,NA,a-curv-i5,2017-18,Pittsfield - Crosby,02360065, 102, 16.4, 453, 39.5, 60.5, 5.3, 39.7,72.8 +NA,NA,a-curv-i5,2017-18,Pittsfield - Egremont,02360035, 117, 18.6, 438, 50.2, 49.8, 5.7, 16.7,40.6 +NA,NA,a-curv-i5,2017-18,Pittsfield - John T Reid Middle,02360305, 339, 15.9, 551, 51.2, 48.8, 1.1, 26.1,55.2 +NA,NA,a-curv-i5,2017-18,Pittsfield - Morningside Community School,02360055, 157, 15.8, 406, 48.5, 51.5, 9.1, 25.6,76.1 +NA,NA,a-curv-i5,2017-18,Pittsfield - Pittsfield High,02360505, 465, 13.1, 834, 49.4, 50.6, 4.6, 25.8,38 +NA,NA,a-curv-i5,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 74, 15.9, 220, 54.1, 45.9, 0.5, 17.3,47.3 +NA,NA,a-curv-i5,2017-18,Pittsfield - Silvio O Conte Community,02360105, 133, 16.8, 366, 52.2, 47.8, 10.4, 16.1,81.1 +NA,NA,a-curv-i5,2017-18,Pittsfield - Stearns,02360090, 64, 17.3, 237, 45.6, 54.4, 0.0, 22.4,39.7 +NA,NA,a-curv-i5,2017-18,Pittsfield - Taconic High,02360510, 407, 12.9, 716, 49.0, 51.0, 2.7, 21.2,38.3 +NA,NA,a-curv-i5,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 324, 18.4, 657, 50.8, 49.2, 2.3, 21.9,42.5 +NA,NA,a-curv-i5,2017-18,Pittsfield - Williams,02360100, 91, 17.5, 314, 48.7, 51.3, 5.7, 14.6,28.3 +NA,NA,a-curv-i5,2017-18,Plainville - Anna Ware Jackson,02380010, 98, 18.5, 416, 46.2, 53.8, 4.3, 18.0,14.7 +NA,NA,a-curv-i5,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 75, 20.5, 307, 50.2, 49.8, 3.3, 16.9,17.6 +NA,NA,a-curv-i5,2017-18,Plymouth - Cold Spring,02390005, 151, 19.8, 260, 52.7, 47.3, 5.8, 13.1,33.1 +NA,NA,a-curv-i5,2017-18,Plymouth - Federal Furnace School,02390011, 283, 15.9, 396, 48.2, 51.8, 0.3, 24.0,34.3 +NA,NA,a-curv-i5,2017-18,Plymouth - Hedge,02390010, 126, 14.5, 160, 41.9, 58.1, 8.8, 19.4,52.5 +NA,NA,a-curv-i5,2017-18,Plymouth - Indian Brook,02390012, 298, 22.4, 580, 49.1, 50.9, 0.0, 15.5,20.3 +NA,NA,a-curv-i5,2017-18,Plymouth - Manomet Elementary,02390015, 172, 19.5, 290, 52.4, 47.6, 0.0, 17.9,27.6 +NA,NA,a-curv-i5,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 307, 21.1, 568, 48.1, 51.9, 2.6, 13.6,20.1 +NA,NA,a-curv-i5,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 597, 19.4," 1,046", 44.3, 55.5, 1.5, 23.2,26.3 +NA,NA,a-curv-i5,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 15, 10.9, 163, 48.5, 51.5, 0.6, 57.7,31.9 +NA,NA,a-curv-i5,2017-18,Plymouth - Plymouth North High,02390505, 899, 15.5," 1,253", 51.3, 48.7, 2.2, 15.7,20 +NA,NA,a-curv-i5,2017-18,Plymouth - Plymouth South High,02390515, 816, 14.1," 1,093", 47.1, 52.9, 0.4, 19.9,16.5 +NA,NA,a-curv-i5,2017-18,Plymouth - Plymouth South Middle,02390305, 417, 18.6, 732, 47.1, 52.9, 0.1, 20.8,18.3 +NA,NA,a-curv-i5,2017-18,Plymouth - South Elementary,02390046, 397, 18.6, 666, 45.6, 54.4, 0.0, 17.3,21.8 +NA,NA,a-curv-i5,2017-18,Plymouth - West Elementary,02390047, 312, 14.6, 399, 47.1, 52.9, 2.3, 18.5,25.3 +NA,NA,a-curv-i5,2017-18,Plympton - Dennett Elementary,02400010, 104, 14.4, 203, 49.8, 50.2, 0.0, 15.3,17.7 +NA,NA,a-curv-i5,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 502, 20.3," 1,145", 48.8, 51.2, 10.7, 16.0,38.3 +NA,NA,a-curv-i5,2017-18,Provincetown - Provincetown Schools,02420020, 98, 12.1, 120, 51.7, 48.3, 17.5, 22.5,30 +NA,NA,a-curv-i5,2017-18,Quabbin - Hardwick Elementary,07530005, 64, 19.0, 191, 45.0, 55.0, 0.0, 22.0,42.4 +NA,NA,a-curv-i5,2017-18,Quabbin - Hubbardston Center,07530010, 86, 22.5, 315, 50.8, 49.2, 0.0, 16.2,16.8 +NA,NA,a-curv-i5,2017-18,Quabbin - IB School of Quabbin,07530515, 14, 9.9, 73, 72.6, 27.4, 0.0, 2.7,13.7 +NA,NA,a-curv-i5,2017-18,Quabbin - New Braintree Grade,07530020, 15, 20.0, 60, 45.0, 55.0, 1.7, 18.3,25 +NA,NA,a-curv-i5,2017-18,Quabbin - Oakham Center,07530025, 33, 25.0, 127, 62.2, 37.8, 0.8, 13.4,15.7 +6.842290748898678,5,a-curv-i5,2017-18,Quabbin - Quabbin Regional High School,07530505, 454, 19.7, 673, 53.6, 46.4, 0.1, 13.5,19.3,657 +NA,NA,a-curv-i5,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 153, 18.6, 385, 50.9, 49.1, 0.0, 18.7,24.2 +NA,NA,a-curv-i5,2017-18,Quabbin - Ruggles Lane,07530030, 127, 20.4, 491, 45.8, 54.2, 0.0, 26.5,32 +NA,NA,a-curv-i5,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 192, 15.0, 367, 49.0, 50.7, 2.5, 14.4,29.2 +NA,NA,a-curv-i5,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 143, 17.4, 241, 50.6, 49.4, 1.7, 13.7,33.6 +NA,NA,a-curv-i5,2017-18,Quaboag Regional - Warren Elementary,07780005, 155, 20.3, 465, 49.0, 51.0, 1.9, 21.1,46 +NA,NA,a-curv-i5,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 108, 19.9, 312, 48.1, 51.9, 1.0, 19.2,27.9 +NA,NA,a-curv-i5,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 11.9, 227, 43.6, 56.4, 0.0, 66.5,36.6 +NA,NA,a-curv-i5,2017-18,Quincy - Atherton Hough,02430040, 136, 13.4, 257, 44.0, 56.0, 14.4, 31.9,28.4 +NA,NA,a-curv-i5,2017-18,Quincy - Atlantic Middle,02430305, 276, 20.6, 511, 49.1, 50.9, 10.0, 12.7,30.3 +NA,NA,a-curv-i5,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 160, 16.2, 349, 50.7, 49.3, 13.8, 10.9,30.1 +NA,NA,a-curv-i5,2017-18,Quincy - Broad Meadows Middle,02430310, 269, 17.6, 392, 45.2, 54.8, 6.6, 37.0,41.1 +NA,NA,a-curv-i5,2017-18,Quincy - Central Middle,02430315, 378, 20.4, 637, 49.9, 50.1, 4.9, 10.8,21.7 +NA,NA,a-curv-i5,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 155, 17.2, 334, 50.9, 49.1, 15.3, 18.0,21.3 +NA,NA,a-curv-i5,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 246, 16.7, 549, 50.1, 49.9, 25.9, 9.1,41.2 +NA,NA,a-curv-i5,2017-18,Quincy - Francis W Parker,02430075, 177, 13.6, 320, 41.6, 58.4, 34.1, 15.0,41.3 +NA,NA,a-curv-i5,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 210, 18.1, 509, 46.6, 53.4, 24.6, 10.6,43.6 +NA,NA,a-curv-i5,2017-18,Quincy - Merrymount,02430060, 150, 17.2, 343, 48.4, 51.6, 19.5, 18.7,24.8 +NA,NA,a-curv-i5,2017-18,Quincy - Montclair,02430065, 164, 18.2, 396, 52.0, 48.0, 33.3, 8.1,25.5 +NA,NA,a-curv-i5,2017-18,Quincy - North Quincy High,02430510, 560, 16.7," 1,250", 48.4, 51.6, 12.1, 13.6,32.9 +NA,NA,a-curv-i5,2017-18,Quincy - Point Webster Middle,02430325, 270, 16.4, 376, 46.5, 53.5, 6.9, 15.4,40.4 +NA,NA,a-curv-i5,2017-18,Quincy - Quincy High,02430505, 849, 15.1," 1,524", 47.3, 52.6, 9.2, 17.2,34.1 +NA,NA,a-curv-i5,2017-18,Quincy - Reay E Sterling Middle,02430320, 241, 17.0, 378, 45.8, 54.2, 10.6, 21.7,45.5 +NA,NA,a-curv-i5,2017-18,Quincy - Snug Harbor Community School,02430090, 258, 10.5, 498, 43.0, 57.0, 13.1, 39.4,56.4 +NA,NA,a-curv-i5,2017-18,Quincy - Squantum,02430095, 191, 13.9, 343, 50.7, 49.3, 9.3, 20.7,24.2 +NA,NA,a-curv-i5,2017-18,Quincy - Wollaston School,02430110, 150, 17.1, 338, 50.0, 50.0, 34.6, 10.7,33.7 +NA,NA,a-curv-i5,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 2, 36.0, 36, 75.0, 25.0, 0.0, 0.0,13.9 +NA,NA,a-curv-i5,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 620, 13.8, 659, 49.5, 50.5, 0.8, 18.4,36.7 +NA,NA,a-curv-i5,2017-18,Ralph C Mahar - The Gateway to College,07550525, 2, 102.0, 102, 62.7, 37.3, 2.0, 1.0,43.1 +NA,NA,a-curv-i5,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 83, 22.3, 312, 44.6, 55.4, 21.8, 23.1,42.9 +NA,NA,a-curv-i5,2017-18,Randolph - J F Kennedy Elementary,02440018, 171, 17.0, 512, 45.5, 54.5, 15.6, 36.5,51.8 +NA,NA,a-curv-i5,2017-18,Randolph - Margaret L Donovan,02440015, 126, 24.4, 440, 47.0, 53.0, 24.3, 13.6,38.4 +NA,NA,a-curv-i5,2017-18,Randolph - Martin E Young Elementary,02440040, 106, 17.5, 310, 45.2, 54.8, 29.7, 22.9,48.4 +NA,NA,a-curv-i5,2017-18,Randolph - Randolph Community Middle,02440410, 318, 17.4, 623, 46.4, 53.6, 10.6, 24.4,44.6 +NA,NA,a-curv-i5,2017-18,Randolph - Randolph High,02440505, 329, 16.1, 723, 44.1, 55.9, 14.4, 15.9,45.6 +NA,NA,a-curv-i5,2017-18,Reading - Alice M Barrows,02460002, 82, 19.6, 377, 49.9, 50.1, 1.9, 12.5,7.4 +NA,NA,a-curv-i5,2017-18,Reading - Arthur W Coolidge Middle,02460305, 198, 22.2, 474, 45.4, 54.6, 0.2, 19.0,6.8 +NA,NA,a-curv-i5,2017-18,Reading - Birch Meadow,02460005, 84, 20.4, 367, 44.1, 55.9, 0.3, 16.3,4.9 +NA,NA,a-curv-i5,2017-18,Reading - J Warren Killam,02460017, 93, 20.9, 425, 43.8, 56.2, 3.5, 16.5,9.6 +NA,NA,a-curv-i5,2017-18,Reading - Joshua Eaton,02460010, 89, 19.2, 382, 50.0, 50.0, 1.8, 14.4,9.2 +NA,NA,a-curv-i5,2017-18,Reading - RISE PreSchool,02460001, 18, 12.6, 113, 35.4, 64.6, 0.0, 49.6,12.4 +NA,NA,a-curv-i5,2017-18,Reading - Reading Memorial High,02460505, 584, 18.0," 1,231", 50.4, 49.6, 0.5, 17.8,6.8 +NA,NA,a-curv-i5,2017-18,Reading - Walter S Parker Middle,02460310, 243, 21.7, 559, 49.6, 50.4, 0.7, 14.5,10.6 +NA,NA,a-curv-i5,2017-18,Reading - Wood End Elementary School,02460020, 55, 22.6, 290, 47.6, 52.4, 1.0, 16.6,7.2 +NA,NA,a-curv-i5,2017-18,Revere - A. C. Whelan Elementary School,02480003, 551, 23.5, 780, 47.4, 52.6, 22.6, 18.6,47.4 +NA,NA,a-curv-i5,2017-18,Revere - Abraham Lincoln,02480025, 535, 19.0, 717, 48.7, 51.3, 34.0, 19.4,45.7 +NA,NA,a-curv-i5,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 349, 16.1, 390, 44.9, 55.1, 30.8, 23.8,47.4 +NA,NA,a-curv-i5,2017-18,Revere - Garfield Elementary School,02480056, 599, 20.0, 782, 48.1, 51.9, 40.8, 15.6,52.7 +NA,NA,a-curv-i5,2017-18,Revere - Garfield Middle School,02480057, 365, 21.0, 555, 48.6, 51.4, 17.1, 11.2,44.1 +NA,NA,a-curv-i5,2017-18,Revere - Paul Revere,02480050, 398, 20.4, 493, 50.9, 49.1, 30.0, 18.7,46.2 +NA,NA,a-curv-i5,2017-18,Revere - Revere High,02480505, 872, 20.7," 2,039", 49.0, 51.0, 17.8, 9.9,40.6 +NA,NA,a-curv-i5,2017-18,Revere - Rumney Marsh Academy,02480014, 277, 21.7, 608, 46.9, 53.1, 3.6, 21.5,43.4 +NA,NA,a-curv-i5,2017-18,Revere - Seacoast School,02480520, 96, 8.5, 96, 30.2, 69.8, 11.5, 18.8,56.3 +NA,NA,a-curv-i5,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 598, 20.3, 734, 52.5, 47.5, 31.9, 15.5,47 +NA,NA,a-curv-i5,2017-18,Revere - Susan B. Anthony Middle School,02480305, 230, 22.4, 573, 51.5, 48.5, 15.2, 10.5,43.8 +NA,NA,a-curv-i5,2017-18,Richmond - Richmond Consolidated,02490005, 118, 17.9, 183, 53.0, 47.0, 0.0, 7.7,18 +NA,NA,a-curv-i5,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 331, 18.4, 664, 50.0, 50.0, 0.0, 17.9,8.7 +NA,NA,a-curv-i5,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 116, 15.3, 287, 58.9, 41.1, 0.0, 16.7,7 +NA,NA,a-curv-i5,2017-18,Rochester - Rochester Memorial,02500005, 202, 19.5, 507, 46.5, 53.5, 0.6, 18.3,12.6 +NA,NA,a-curv-i5,2017-18,Rockland - Jefferson Elementary School,02510060, 143, 16.9, 290, 53.1, 46.9, 9.0, 15.5,38.3 +NA,NA,a-curv-i5,2017-18,Rockland - John W Rogers Middle,02510305, 359, 19.4, 684, 49.3, 50.7, 3.7, 16.2,33.8 +NA,NA,a-curv-i5,2017-18,Rockland - Memorial Park,02510020, 123, 19.2, 306, 50.0, 50.0, 11.4, 19.0,35.3 +NA,NA,a-curv-i5,2017-18,Rockland - R Stewart Esten,02510025, 137, 19.4, 340, 43.8, 56.2, 9.4, 17.9,33.5 +NA,NA,a-curv-i5,2017-18,Rockland - Rockland Senior High,02510505, 278, 16.0, 666, 49.7, 50.3, 3.5, 15.2,27 +NA,NA,a-curv-i5,2017-18,Rockport - Rockport Elementary,02520005, 121, 21.7, 399, 48.1, 51.9, 2.3, 20.1,20.6 +NA,NA,a-curv-i5,2017-18,Rockport - Rockport High,02520510, 181, 13.3, 284, 49.3, 50.7, 0.7, 18.0,12 +NA,NA,a-curv-i5,2017-18,Rockport - Rockport Middle,02520305, 228, 14.7, 227, 44.5, 55.5, 0.0, 20.7,13.7 +NA,NA,a-curv-i5,2017-18,Rowe - Rowe Elementary,02530005, 25, 14.0, 68, 50.0, 50.0, 0.0, 22.1,27.9 +NA,NA,a-curv-i5,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 338, 24.6," 1,379", 49.7, 50.3, 22.2, 18.6,54.7 +NA,NA,a-curv-i5,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 537, 25.6," 1,568", 49.9, 50.1, 4.0, 12.4,35.4 +NA,NA,a-curv-i5,2017-18,Salem - Bates,02580003, 151, 17.7, 365, 48.5, 51.5, 8.2, 25.2,46 +NA,NA,a-curv-i5,2017-18,Salem - Carlton,02580015, 108, 20.9, 276, 54.3, 45.7, 6.2, 22.5,44.9 +NA,NA,a-curv-i5,2017-18,Salem - Collins Middle,02580305, 252, 18.0, 569, 46.0, 54.0, 9.3, 24.3,47.5 +NA,NA,a-curv-i5,2017-18,Salem - Horace Mann Laboratory,02580030, 124, 17.8, 281, 50.5, 49.5, 14.9, 14.9,52.3 +NA,NA,a-curv-i5,2017-18,Salem - Nathaniel Bowditch,02580025, 173, 15.2, 335, 50.7, 49.3, 37.0, 13.4,71.3 +NA,NA,a-curv-i5,2017-18,Salem - New Liberty Innovation School,02580510, 36, 15.1, 61, 52.5, 47.5, 14.8, 34.4,65.6 +NA,NA,a-curv-i5,2017-18,Salem - Salem Early Childhood,02580001, 10, 11.3, 113, 37.2, 62.8, 6.2, 60.2,54.9 +NA,NA,a-curv-i5,2017-18,Salem - Salem High,02580505, 595, 14.5, 946, 46.9, 52.9, 14.7, 22.7,43.9 +7.773913043478261,5,a-curv-i5,2017-18,Salem - Salem Prep High School,02580515, 92, 5.2, 36, 36.1, 63.9, 2.8, 97.2,66.7,26 +NA,NA,a-curv-i5,2017-18,Salem - Saltonstall School,02580050, 233, 12.7, 393, 50.9, 49.1, 12.0, 16.5,38.2 +NA,NA,a-curv-i5,2017-18,Salem - Witchcraft Heights,02580070, 213, 16.7, 495, 44.6, 55.4, 9.9, 23.8,40.2 +NA,NA,a-curv-i5,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 254, 18.5, 468, 54.1, 45.9, 4.1, 14.5,30.3 +NA,NA,a-curv-i5,2017-18,Sandwich - Forestdale School,02610002, 258, 20.5, 658, 50.8, 49.2, 2.4, 17.0,19.3 +NA,NA,a-curv-i5,2017-18,Sandwich - Oak Ridge,02610025, 389, 19.3, 828, 50.8, 49.2, 1.1, 21.9,15 +NA,NA,a-curv-i5,2017-18,Sandwich - Sandwich High,02610505, 381, 16.4, 680, 50.6, 49.4, 0.6, 16.3,10.7 +NA,NA,a-curv-i5,2017-18,Sandwich - Sandwich STEM Academy,02610305, 286, 17.4, 457, 48.8, 51.2, 0.7, 21.0,12.3 +NA,NA,a-curv-i5,2017-18,Saugus - Belmonte Saugus Middle,02620305, 439, 17.6, 679, 48.7, 51.3, 4.9, 16.5,26.4 +NA,NA,a-curv-i5,2017-18,Saugus - Douglas Waybright,02620067, 99, 19.6, 249, 45.4, 54.6, 2.0, 16.1,26.5 +NA,NA,a-curv-i5,2017-18,Saugus - Lynnhurst,02620040, 104, 21.3, 288, 50.7, 49.3, 9.0, 18.1,28.5 +NA,NA,a-curv-i5,2017-18,Saugus - Oaklandvale,02620050, 96, 21.9, 262, 46.6, 53.4, 18.7, 16.4,42.7 +NA,NA,a-curv-i5,2017-18,Saugus - Saugus High,02620505, 368, 15.0, 677, 49.9, 50.1, 5.2, 12.7,24.8 +NA,NA,a-curv-i5,2017-18,Saugus - Veterans Memorial,02620065, 279, 15.4, 548, 47.8, 52.2, 4.9, 20.3,28.3 +NA,NA,a-curv-i5,2017-18,Savoy - Emma L Miller Elementary School,02630010, 58, 8.1, 58, 50.0, 50.0, 0.0, 15.5,46.6 +NA,NA,a-curv-i5,2017-18,Scituate - Cushing Elementary,02640007, 143, 17.7, 314, 44.3, 55.7, 1.3, 8.0,8.9 +NA,NA,a-curv-i5,2017-18,Scituate - Gates Middle School,02640305, 403, 21.7, 720, 52.4, 47.6, 0.3, 13.6,8.8 +NA,NA,a-curv-i5,2017-18,Scituate - Hatherly Elementary,02640010, 127, 17.3, 273, 45.4, 54.6, 1.1, 19.0,5.5 +NA,NA,a-curv-i5,2017-18,Scituate - Jenkins Elementary School,02640015, 158, 18.6, 366, 45.4, 54.6, 0.3, 14.8,12 +6.362666666666667,5,a-curv-i5,2017-18,Scituate - Scituate High School,02640505, 450, 18.3, 923, 52.3, 47.7, 0.2, 11.4,10.2,921 +NA,NA,a-curv-i5,2017-18,Scituate - Wampatuck Elementary,02640020, 147, 18.3, 405, 47.9, 52.1, 2.0, 13.8,11.9 +NA,NA,a-curv-i5,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 351, 14.8, 512, 50.2, 49.8, 1.0, 19.1,14.1 +NA,NA,a-curv-i5,2017-18,Seekonk - George R Martin,02650007, 100, 22.7, 494, 49.8, 50.2, 6.9, 16.0,16 +NA,NA,a-curv-i5,2017-18,Seekonk - Mildred Aitken School,02650015, 90, 22.0, 431, 47.3, 52.7, 5.6, 15.5,12.8 +NA,NA,a-curv-i5,2017-18,Seekonk - Seekonk High,02650505, 298, 17.6, 590, 52.5, 47.5, 1.4, 17.3,13.6 +NA,NA,a-curv-i5,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 222, 24.9, 653, 48.4, 51.6, 29.2, 15.2,58.5 +NA,NA,a-curv-i5,2017-18,Sharon - Cottage Street,02660005, 174, 19.4, 520, 47.7, 52.3, 10.2, 13.3,4.6 +NA,NA,a-curv-i5,2017-18,Sharon - East Elementary,02660010, 153, 20.6, 494, 49.4, 50.6, 6.1, 12.3,7.7 +NA,NA,a-curv-i5,2017-18,Sharon - Heights Elementary,02660015, 155, 21.4, 531, 49.9, 50.1, 6.6, 14.9,6.6 +NA,NA,a-curv-i5,2017-18,Sharon - Sharon Early Childhood Center,02660001, 4, 14.0, 56, 37.5, 62.5, 3.6, 44.6,12.5 +NA,NA,a-curv-i5,2017-18,Sharon - Sharon High,02660505, 571, 14.0," 1,084", 47.2, 52.8, 1.1, 12.1,7 +NA,NA,a-curv-i5,2017-18,Sharon - Sharon Middle,02660305, 609, 20.1, 885, 48.7, 51.3, 2.8, 12.8,8.4 +6.741637010676156,5,a-curv-i5,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 843, 16.8," 1,327", 41.7, 58.3, 0.0, 21.3,14.1,1326 +NA,NA,a-curv-i5,2017-18,Sherborn - Pine Hill,02690010, 187, 18.7, 428, 48.4, 51.6, 1.6, 15.4,4.7 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Beal School,02710005, 69, 18.3, 309, 48.2, 51.8, 5.5, 14.9,11 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Calvin Coolidge,02710015, 82, 22.5, 409, 51.6, 48.4, 8.6, 14.2,16.1 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Floral Street School,02710020, 163, 24.2, 746, 48.5, 51.5, 5.9, 12.3,9.1 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Oak Middle School,02710030, 509, 22.6," 1,005", 50.1, 49.9, 2.2, 13.6,10.3 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Parker Road Preschool,02710040, 18, 15.3, 271, 46.5, 53.5, 11.4, 35.8,13.7 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Sherwood Middle School,02710305, 613, 22.1, 960, 47.5, 52.5, 1.5, 14.5,10.2 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 946, 17.7," 1,846", 53.3, 46.5, 2.7, 9.5,9.3 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Spring Street,02710035, 73, 21.5, 355, 49.0, 51.0, 2.8, 13.0,3.4 +NA,NA,a-curv-i5,2017-18,Shrewsbury - Walter J Paton,02710025, 73, 22.2, 350, 44.6, 55.4, 2.0, 17.7,4.6 +NA,NA,a-curv-i5,2017-18,Shutesbury - Shutesbury Elementary,02720005, 60, 13.9, 125, 56.0, 44.0, 0.0, 16.8,32 +NA,NA,a-curv-i5,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 226, 22.1, 553, 50.5, 49.5, 6.7, 17.4,28.4 +NA,NA,a-curv-i5,2017-18,Silver Lake - Silver Lake Regional High,07600505, 481, 19.6," 1,334", 48.0, 52.0, 0.1, 15.7,15.7 +NA,NA,a-curv-i5,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 304, 18.3, 542, 46.9, 53.1, 0.6, 15.5,16.4 +NA,NA,a-curv-i5,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 229, 12.8, 360, 48.9, 51.1, 1.1, 24.4,31.7 +NA,NA,a-curv-i5,2017-18,Somerset - Chace Street,02730005, 172, 23.2, 430, 45.3, 54.7, 1.9, 27.2,26.3 +NA,NA,a-curv-i5,2017-18,Somerset - North Elementary,02730008, 261, 20.3, 488, 49.2, 50.8, 0.6, 12.5,19.7 +NA,NA,a-curv-i5,2017-18,Somerset - Somerset Middle School,02730305, 348, 21.1, 626, 47.1, 52.9, 0.5, 15.5,18.8 +NA,NA,a-curv-i5,2017-18,Somerset - South,02730015, 130, 23.4, 281, 53.0, 47.0, 2.5, 10.7,26 +6.505970149253732,5,a-curv-i5,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 536, 15.5," 1,012", 50.9, 49.1, 0.1, 9.9,13.5,1001 +NA,NA,a-curv-i5,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 170, 20.7, 606, 47.9, 52.1, 29.9, 12.5,34.2 +NA,NA,a-curv-i5,2017-18,Somerville - Arthur D Healey,02740075, 177, 15.1, 441, 49.9, 50.1, 24.5, 25.4,50.1 +NA,NA,a-curv-i5,2017-18,Somerville - Benjamin G Brown,02740015, 62, 19.6, 232, 52.6, 47.4, 2.2, 12.1,13.8 +NA,NA,a-curv-i5,2017-18,Somerville - Capuano Early Childhood Center,02740005, 47, 14.3, 326, 45.7, 54.3, 44.5, 26.1,35.9 +NA,NA,a-curv-i5,2017-18,Somerville - E Somerville Community,02740111, 226, 19.1, 703, 49.8, 50.2, 33.0, 17.9,51.1 +7.794059405940594,5,a-curv-i5,2017-18,Somerville - Full Circle High School,02740510, 202, 6.3, 68, 38.2, 61.8, 4.4, 66.2,67.6,52 +NA,NA,a-curv-i5,2017-18,Somerville - John F Kennedy,02740083, 155, 19.1, 449, 45.4, 54.6, 1.1, 23.4,29 +NA,NA,a-curv-i5,2017-18,Somerville - Next Wave Junior High,02740410, 89, 5.4, 22, 13.6, 86.4, 4.5, 63.6,63.6 +NA,NA,a-curv-i5,2017-18,Somerville - Somerville High,02740505, 641, 14.6," 1,213", 45.1, 54.8, 13.8, 15.7,38.9 +NA,NA,a-curv-i5,2017-18,Somerville - West Somerville Neighborhood,02740115, 117, 18.7, 360, 47.5, 52.2, 4.2, 19.2,39.2 +NA,NA,a-curv-i5,2017-18,Somerville - Winter Hill Community,02740120, 170, 17.7, 468, 41.5, 58.3, 37.0, 29.1,53.6 +NA,NA,a-curv-i5,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 312, 16.0, 590, 52.2, 47.8, 5.1, 16.6,26.1 +NA,NA,a-curv-i5,2017-18,South Hadley - Mosier,02780020, 77, 21.7, 420, 46.9, 53.1, 6.0, 16.7,24.5 +NA,NA,a-curv-i5,2017-18,South Hadley - Plains Elementary,02780015, 30, 21.3, 370, 53.2, 46.8, 5.7, 16.8,29.2 +NA,NA,a-curv-i5,2017-18,South Hadley - South Hadley High,02780505, 254, 14.6, 555, 49.5, 50.5, 1.4, 13.0,19.5 +6.739655172413793,5,a-curv-i5,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 464, 13.7, 719, 40.9, 59.1, 9.7, 41.9,38.5,731 +NA,NA,a-curv-i5,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 459, 18.1, 913, 50.8, 49.2, 14.1, 16.5,15.8 +NA,NA,a-curv-i5,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 444, 14.0, 638, 33.4, 66.6, 0.0, 31.5,22.4 +NA,NA,a-curv-i5,2017-18,Southampton - William E Norris,02750005, 185, 18.3, 515, 48.2, 51.8, 2.1, 21.2,12 +NA,NA,a-curv-i5,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 63, 17.4, 262, 46.9, 53.1, 6.9, 13.4,2.3 +NA,NA,a-curv-i5,2017-18,Southborough - Margaret A Neary,02760020, 60, 20.1, 261, 52.1, 47.9, 6.5, 10.3,4.6 +NA,NA,a-curv-i5,2017-18,Southborough - Mary E Finn School,02760008, 68, 16.2, 353, 49.3, 50.7, 6.8, 24.6,7.1 +NA,NA,a-curv-i5,2017-18,Southborough - P Brent Trottier,02760305, 290, 16.1, 457, 48.8, 51.2, 3.7, 14.0,3.1 +NA,NA,a-curv-i5,2017-18,Southbridge - Charlton Street,02770005, 199, 17.2, 307, 47.9, 52.1, 25.7, 15.3,68.1 +NA,NA,a-curv-i5,2017-18,Southbridge - Eastford Road,02770010, 74, 19.1, 404, 54.5, 45.5, 22.0, 20.0,74.5 +6.473282442748092,5,a-curv-i5,2017-18,Southbridge - Southbridge High School,02770515, 262, 16.5, 556, 48.0, 52.0, 26.8, 23.4,64.6,500 +NA,NA,a-curv-i5,2017-18,Southbridge - Southbridge Middle School,02770315, 283, 17.9, 538, 45.4, 54.6, 26.0, 18.8,67.5 +NA,NA,a-curv-i5,2017-18,Southbridge - West Street,02770020, 201, 20.2, 367, 49.9, 50.1, 34.1, 20.2,69.8 +NA,NA,a-curv-i5,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 719, 15.7," 1,415", 48.6, 51.4, 1.1, 15.3,34.1 +NA,NA,a-curv-i5,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 251, 10.9, 310, 51.0, 49.0, 0.0, 17.7,31.6 +NA,NA,a-curv-i5,2017-18,Southern Berkshire - New Marlborough Central,07650018, 68, 14.4, 88, 47.7, 52.3, 0.0, 3.4,22.7 +NA,NA,a-curv-i5,2017-18,Southern Berkshire - Undermountain,07650035, 187, 17.1, 296, 45.3, 54.7, 4.1, 13.5,35.8 +7.059267015706806,5,a-curv-i5,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 955, 14.0," 1,110", 41.1, 58.9, 0.2, 13.0,21.7,1123 +NA,NA,a-curv-i5,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 218, 20.3, 443, 50.6, 49.4, 3.6, 16.7,25.1 +NA,NA,a-curv-i5,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 463, 14.1, 721, 49.7, 50.3, 0.8, 14.8,14.6 +NA,NA,a-curv-i5,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 270, 14.0, 364, 45.6, 54.4, 3.6, 18.7,28.3 +NA,NA,a-curv-i5,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 242, 12.6, 316, 48.1, 51.9, 2.8, 17.4,33.9 +NA,NA,a-curv-i5,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 57, 20.5, 251, 44.2, 55.8, 1.6, 29.5,28.3 +NA,NA,a-curv-i5,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 187, 17.2, 442, 44.6, 55.4, 3.2, 22.9,36.9 +NA,NA,a-curv-i5,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 96, 18.7, 449, 48.3, 51.4, 5.3, 23.6,38.5 +NA,NA,a-curv-i5,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 237, 17.8, 441, 53.3, 46.7, 3.9, 6.6,34 +NA,NA,a-curv-i5,2017-18,Springfield - Alice B Beal Elementary,02810175, 177, 18.2, 289, 51.2, 48.8, 18.0, 15.9,64.7 +NA,NA,a-curv-i5,2017-18,Springfield - Arthur T Talmadge,02810165, 198, 16.3, 256, 46.5, 53.5, 6.6, 17.2,78.5 +NA,NA,a-curv-i5,2017-18,Springfield - Balliet Middle School,02810360, 40, 12.8, 85, 40.0, 60.0, 8.2, 32.9,89.4 +NA,NA,a-curv-i5,2017-18,Springfield - Brightwood,02810025, 217, 20.9, 376, 50.5, 49.5, 26.3, 19.9,92.8 +NA,NA,a-curv-i5,2017-18,Springfield - Chestnut Academy,02810365, 236, 16.7, 445, 48.1, 51.9, 27.9, 27.6,87 +NA,NA,a-curv-i5,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 186, 16.9, 321, 53.9, 46.1, 6.5, 21.5,66.4 +NA,NA,a-curv-i5,2017-18,Springfield - Conservatory of the Arts,02810475, 198, 12.4, 355, 69.0, 31.0, 13.2, 20.3,74.6 +NA,NA,a-curv-i5,2017-18,Springfield - Daniel B Brunton,02810035, 283, 20.9, 472, 51.7, 48.3, 15.7, 18.0,76.9 +NA,NA,a-curv-i5,2017-18,Springfield - Early Childhood Education Center,02810001, 20, 11.2, 218, 37.6, 62.4, 17.9, 56.4,81.2 +NA,NA,a-curv-i5,2017-18,Springfield - Edward P. Boland School,02810010, 388, 20.1, 875, 43.4, 56.6, 27.0, 33.6,82.3 +NA,NA,a-curv-i5,2017-18,Springfield - Elias Brookings,02810030, 218, 19.7, 395, 47.1, 52.9, 20.3, 33.7,81.8 +NA,NA,a-curv-i5,2017-18,Springfield - Forest Park Middle,02810325, 341, 16.8, 806, 49.5, 50.5, 24.2, 22.1,78.3 +NA,NA,a-curv-i5,2017-18,Springfield - Frank H Freedman,02810075, 168, 27.9, 380, 46.1, 53.9, 15.0, 17.6,71.8 +NA,NA,a-curv-i5,2017-18,Springfield - Frederick Harris,02810080, 368, 21.3, 695, 49.6, 50.4, 16.4, 21.0,69.4 +NA,NA,a-curv-i5,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 3, 9.3, 14, 71.4, 28.6, 7.1, 7.1,78.6 +NA,NA,a-curv-i5,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 3, 17.0, 30, 56.7, 43.3, 6.7, 10.0,76.7 +NA,NA,a-curv-i5,2017-18,Springfield - German Gerena Community School,02810195, 464, 17.2, 786, 52.5, 47.5, 23.9, 21.9,79.8 +NA,NA,a-curv-i5,2017-18,Springfield - Glenwood,02810065, 197, 21.9, 336, 45.2, 54.8, 14.9, 17.9,72.9 +NA,NA,a-curv-i5,2017-18,Springfield - Glickman Elementary,02810068, 244, 19.3, 361, 47.1, 52.9, 18.8, 36.6,74.8 +6.900382165605096,5,a-curv-i5,2017-18,Springfield - High School Of Commerce,02810510, 785, 14.2," 1,185", 48.7, 51.3, 28.6, 23.5,76.1,1079 +NA,NA,a-curv-i5,2017-18,Springfield - Hiram L Dorman,02810050, 202, 20.9, 320, 48.8, 51.3, 16.3, 20.9,80 +NA,NA,a-curv-i5,2017-18,Springfield - Homer Street,02810085, 243, 24.6, 465, 48.6, 51.4, 22.4, 14.6,82.8 +NA,NA,a-curv-i5,2017-18,Springfield - Impact Prep at Chestnut,02810366, 111, 20.7, 259, 51.4, 48.6, 27.4, 22.4,90.3 +NA,NA,a-curv-i5,2017-18,Springfield - Indian Orchard Elementary,02810100, 387, 21.4, 747, 45.5, 54.5, 16.1, 26.0,78.8 +NA,NA,a-curv-i5,2017-18,Springfield - John F Kennedy Middle,02810328, 157, 19.4, 495, 45.1, 54.9, 16.6, 24.0,82.4 +NA,NA,a-curv-i5,2017-18,Springfield - John J Duggan Middle,02810320, 576, 14.4, 812, 44.7, 55.3, 12.7, 23.8,68.8 +NA,NA,a-curv-i5,2017-18,Springfield - Kensington International School,02810110, 184, 23.4, 364, 50.5, 49.5, 26.6, 17.0,81.6 +NA,NA,a-curv-i5,2017-18,Springfield - Liberty,02810115, 173, 21.9, 307, 51.5, 48.5, 26.7, 14.0,75.9 +NA,NA,a-curv-i5,2017-18,Springfield - Liberty Preparatory Academy,02810560, 15, 4.1, 12, 16.7, 83.3, 8.3, 16.7,83.3 +NA,NA,a-curv-i5,2017-18,Springfield - Lincoln,02810120, 228, 25.9, 439, 46.2, 53.8, 31.9, 13.9,87.7 +NA,NA,a-curv-i5,2017-18,Springfield - M Marcus Kiley Middle,02810330, 337, 22.0, 744, 44.6, 55.4, 16.0, 21.4,77.4 +NA,NA,a-curv-i5,2017-18,Springfield - Margaret C Ells,02810060, 65, 11.0, 312, 38.1, 61.9, 9.0, 50.6,71.8 +NA,NA,a-curv-i5,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 182, 23.7, 396, 50.0, 50.0, 10.9, 18.4,62.4 +NA,NA,a-curv-i5,2017-18,Springfield - Mary M Lynch,02810140, 174, 19.4, 277, 53.1, 46.9, 10.5, 14.4,79.1 +NA,NA,a-curv-i5,2017-18,Springfield - Mary M Walsh,02810155, 198, 21.1, 321, 47.0, 53.0, 27.4, 21.8,77.9 +NA,NA,a-curv-i5,2017-18,Springfield - Mary O Pottenger,02810145, 245, 24.5, 485, 48.2, 51.8, 18.1, 19.2,68.9 +NA,NA,a-curv-i5,2017-18,Springfield - Milton Bradley School,02810023, 341, 20.6, 658, 48.8, 51.2, 23.4, 26.1,89.7 +NA,NA,a-curv-i5,2017-18,Springfield - Rebecca M Johnson,02810055, 421, 22.7, 900, 48.2, 51.8, 17.9, 27.9,87 +NA,NA,a-curv-i5,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 53, 22.1, 224, 45.5, 54.5, 27.2, 21.4,81.3 +NA,NA,a-curv-i5,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 950, 13.3," 1,435", 53.9, 46.1, 8.6, 15.3,66.1 +NA,NA,a-curv-i5,2017-18,Springfield - STEM Middle Academy,02810350, 134, 19.3, 297, 38.7, 61.3, 4.0, 14.1,66.3 +NA,NA,a-curv-i5,2017-18,Springfield - Samuel Bowles,02810020, 228, 20.3, 366, 52.5, 47.5, 14.2, 16.7,71.9 +NA,NA,a-curv-i5,2017-18,Springfield - South End Middle School,02810355, 154, 13.6, 272, 51.5, 48.5, 25.4, 16.2,88.6 +NA,NA,a-curv-i5,2017-18,Springfield - Springfield Central High,02810500, 926, 17.8," 2,056", 46.8, 53.2, 14.4, 15.7,63.7 +6.407547169811321,5,a-curv-i5,2017-18,Springfield - Springfield High School,02810570, 106, 8.6, 235, 43.0, 57.0, 11.5, 31.5,77.4,211 +6.54097902097902,5,a-curv-i5,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 715, 17.7," 1,354", 42.3, 57.7, 23.0, 21.5,77,1304 +NA,NA,a-curv-i5,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 153, 8.8, 93, 15.1, 84.9, 14.0, 88.2,83.9 +7.1288888888888895,5,a-curv-i5,2017-18,Springfield - Springfield Public Day High School,02810550, 90, 7.4, 101, 27.7, 72.3, 12.9, 97.0,82.2,98 +NA,NA,a-curv-i5,2017-18,Springfield - Springfield Public Day Middle School,02810345, 84, 5.1, 69, 15.9, 84.1, 10.1, 97.1,97.1 +NA,NA,a-curv-i5,2017-18,Springfield - Springfield Vocational Academy,02810675, 34, 7.9, 76, 44.7, 55.3, 0.0, 100.0,72.4 +NA,NA,a-curv-i5,2017-18,Springfield - Sumner Avenue,02810160, 380, 18.4, 647, 44.8, 55.2, 22.3, 30.3,77.4 +NA,NA,a-curv-i5,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 333, 17.0, 706, 48.2, 51.8, 4.1, 17.6,51.8 +NA,NA,a-curv-i5,2017-18,Springfield - Thomas M Balliet,02810015, 158, 24.3, 361, 49.9, 50.1, 8.9, 23.3,70.1 +NA,NA,a-curv-i5,2017-18,Springfield - Van Sickle Academy,02810485, 248, 13.4, 438, 45.7, 54.3, 18.0, 25.3,73.1 +NA,NA,a-curv-i5,2017-18,Springfield - Warner,02810180, 170, 21.0, 317, 50.2, 49.8, 14.2, 13.9,67.8 +NA,NA,a-curv-i5,2017-18,Springfield - Washington,02810185, 252, 20.1, 482, 46.3, 53.7, 24.5, 17.8,76.3 +NA,NA,a-curv-i5,2017-18,Springfield - White Street,02810190, 228, 26.7, 492, 50.8, 49.2, 19.5, 16.9,81.9 +NA,NA,a-curv-i5,2017-18,Springfield - William N. DeBerry,02810045, 188, 20.4, 292, 43.8, 56.2, 27.7, 30.1,87.7 +NA,NA,a-curv-i5,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 53, 30.4, 214, 49.1, 50.9, 22.9, 18.2,67.8 +NA,NA,a-curv-i5,2017-18,Stoneham - Colonial Park,02840005, 91, 21.7, 283, 43.1, 56.9, 4.6, 27.9,12 +NA,NA,a-curv-i5,2017-18,Stoneham - Robin Hood,02840025, 124, 22.4, 388, 49.0, 51.0, 7.0, 25.3,20.4 +NA,NA,a-curv-i5,2017-18,Stoneham - South,02840030, 120, 21.1, 317, 50.8, 49.2, 7.3, 17.4,21.8 +NA,NA,a-curv-i5,2017-18,Stoneham - Stoneham Central Middle School,02840405, 517, 16.0, 696, 51.6, 48.4, 2.6, 19.1,16.1 +NA,NA,a-curv-i5,2017-18,Stoneham - Stoneham High,02840505, 380, 15.9, 682, 53.4, 46.6, 2.2, 14.5,14.2 +NA,NA,a-curv-i5,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9, 13.4, 115, 44.3, 55.7, 1.7, 47.0,21.7 +NA,NA,a-curv-i5,2017-18,Stoughton - Helen Hansen Elementary,02850010, 155, 12.0, 227, 52.4, 47.6, 5.3, 19.4,25.6 +NA,NA,a-curv-i5,2017-18,Stoughton - Joseph H Gibbons,02850025, 179, 16.3, 354, 50.8, 49.2, 4.8, 16.1,24.3 +NA,NA,a-curv-i5,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 187, 15.4, 350, 46.9, 53.1, 4.6, 17.7,26.6 +NA,NA,a-curv-i5,2017-18,Stoughton - O'Donnell Middle School,02850405, 506, 18.7, 841, 44.9, 55.1, 4.0, 15.6,26.9 +NA,NA,a-curv-i5,2017-18,Stoughton - South Elementary,02850015, 125, 16.9, 254, 49.6, 50.4, 4.3, 12.2,26 +NA,NA,a-curv-i5,2017-18,Stoughton - Stoughton High,02850505, 705, 17.6," 1,139", 48.4, 51.6, 3.2, 12.9,25.5 +NA,NA,a-curv-i5,2017-18,Stoughton - West Elementary,02850020, 148, 19.2, 378, 49.7, 50.3, 23.0, 13.2,47.9 +NA,NA,a-curv-i5,2017-18,Sturbridge - Burgess Elementary,02870005, 236, 23.0, 902, 44.1, 55.9, 0.7, 12.7,15.6 +NA,NA,a-curv-i5,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 518, 14.3, 823, 57.6, 42.4, 0.1, 13.5,13.5 +NA,NA,a-curv-i5,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 591, 19.6, 942, 49.3, 50.7, 0.3, 16.8,4.7 +NA,NA,a-curv-i5,2017-18,Sudbury - General John Nixon Elementary,02880025, 96, 20.1, 346, 47.4, 52.6, 3.8, 15.9,7.8 +NA,NA,a-curv-i5,2017-18,Sudbury - Israel Loring School,02880015, 121, 21.1, 465, 46.0, 54.0, 1.7, 14.2,8.8 +NA,NA,a-curv-i5,2017-18,Sudbury - Josiah Haynes,02880010, 108, 19.8, 384, 46.4, 53.6, 1.3, 14.3,3.6 +NA,NA,a-curv-i5,2017-18,Sudbury - Peter Noyes,02880030, 138, 20.4, 572, 48.4, 51.6, 2.6, 20.6,3.3 +NA,NA,a-curv-i5,2017-18,Sunderland - Sunderland Elementary,02890005, 169, 17.5, 236, 41.9, 58.1, 7.6, 22.9,30.9 +NA,NA,a-curv-i5,2017-18,Sutton - Sutton Early Learning,02900003, 56, 22.1, 325, 51.4, 48.6, 3.1, 24.9,10.5 +NA,NA,a-curv-i5,2017-18,Sutton - Sutton Elementary,02900005, 117, 22.0, 326, 49.4, 50.6, 1.5, 22.7,10.1 +6.216759776536312,5,a-curv-i5,2017-18,Sutton - Sutton High School,02900510, 179, 15.5, 403, 51.9, 48.1, 0.0, 6.5,8.2,399 +NA,NA,a-curv-i5,2017-18,Sutton - Sutton Middle School,02900305, 138, 23.0, 368, 49.2, 50.8, 0.8, 14.1,9.2 +NA,NA,a-curv-i5,2017-18,Swampscott - Clarke,02910005, 98, 15.8, 193, 45.1, 54.9, 13.0, 21.2,17.1 +NA,NA,a-curv-i5,2017-18,Swampscott - Hadley,02910010, 120, 19.6, 294, 49.7, 50.3, 10.9, 14.6,20.7 +NA,NA,a-curv-i5,2017-18,Swampscott - Stanley,02910020, 120, 19.5, 293, 47.8, 52.2, 2.4, 11.6,4.4 +NA,NA,a-curv-i5,2017-18,Swampscott - Swampscott High,02910505, 421, 13.7, 681, 51.5, 48.5, 0.6, 14.1,15.4 +NA,NA,a-curv-i5,2017-18,Swampscott - Swampscott Middle,02910305, 550, 16.8, 770, 48.6, 51.4, 3.4, 21.2,14.3 +NA,NA,a-curv-i5,2017-18,Swansea - Elizabeth S Brown,02920006, 210, 20.6, 282, 51.1, 48.9, 0.0, 10.3,19.9 +NA,NA,a-curv-i5,2017-18,Swansea - Gardner,02920015, 116, 22.1, 264, 48.9, 51.1, 0.8, 9.1,18.9 +NA,NA,a-curv-i5,2017-18,Swansea - Joseph Case High,02920505, 268, 13.7, 529, 47.4, 52.6, 0.4, 12.1,16.8 +NA,NA,a-curv-i5,2017-18,Swansea - Joseph Case Jr High,02920305, 254, 16.8, 520, 46.9, 53.1, 0.0, 11.7,19.6 +NA,NA,a-curv-i5,2017-18,Swansea - Joseph G Luther,02920020, 186, 18.5, 226, 51.3, 48.7, 0.0, 17.7,16.8 +NA,NA,a-curv-i5,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 118, 16.3, 265, 47.2, 52.8, 0.0, 23.0,19.2 +NA,NA,a-curv-i5,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 460, 41.0," 1,888", 58.2, 41.8, 1.0, 19.8,41.2 +NA,NA,a-curv-i5,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 390, 19.5, 597, 50.3, 49.7, 0.5, 14.2,20.6 +NA,NA,a-curv-i5,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 792, 12.4," 1,194", 49.2, 50.8, 0.1, 8.6,16.3 +NA,NA,a-curv-i5,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 73, 10.2, 456, 41.7, 58.3, 0.0, 12.9,20.8 +NA,NA,a-curv-i5,2017-18,Taunton - Benjamin Friedman Middle,02930315, 375, 20.8, 788, 48.4, 51.6, 1.9, 19.4,38.7 +NA,NA,a-curv-i5,2017-18,Taunton - East Taunton Elementary,02930010, 288, 16.9, 624, 49.8, 50.2, 3.4, 24.4,35.1 +NA,NA,a-curv-i5,2017-18,Taunton - Edmund Hatch Bennett,02930007, 125, 20.4, 327, 48.9, 51.1, 5.2, 14.1,28.1 +NA,NA,a-curv-i5,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 21, 18.6, 391, 39.4, 60.6, 5.4, 46.0,45.3 +NA,NA,a-curv-i5,2017-18,Taunton - Elizabeth Pole,02930027, 251, 18.8, 604, 47.5, 52.5, 11.6, 20.0,55.6 +NA,NA,a-curv-i5,2017-18,Taunton - H H Galligan,02930057, 101, 18.2, 236, 47.9, 52.1, 14.0, 21.6,64 +NA,NA,a-curv-i5,2017-18,Taunton - Hopewell,02930035, 117, 18.9, 282, 52.8, 47.2, 4.6, 24.1,58.2 +NA,NA,a-curv-i5,2017-18,Taunton - John F Parker Middle,02930305, 205, 25.0, 533, 50.8, 49.2, 8.6, 17.4,53.5 +NA,NA,a-curv-i5,2017-18,Taunton - Joseph C Chamberlain,02930008, 227, 18.2, 527, 49.7, 50.3, 2.7, 21.6,34.7 +NA,NA,a-curv-i5,2017-18,Taunton - Joseph H Martin,02930042, 345, 21.8, 699, 46.2, 53.8, 2.0, 16.3,42.3 +NA,NA,a-curv-i5,2017-18,Taunton - Mulcahey Elementary School,02930015, 179, 21.0, 483, 50.7, 49.3, 9.9, 19.0,51.1 +7.432835820895522,5,a-curv-i5,2017-18,Taunton - Taunton Alternative High School,02930525, 134, 8.1, 138, 39.1, 60.9, 0.0, 29.7,67.4,95 +NA,NA,a-curv-i5,2017-18,Taunton - Taunton High,02930505, 982, 20.9," 2,682", 50.4, 49.5, 3.4, 15.6,37.2 +NA,NA,a-curv-i5,2017-18,Tewksbury - Heath-Brook,02950010, 105, 20.9, 346, 51.2, 48.8, 3.2, 11.3,13.9 +NA,NA,a-curv-i5,2017-18,Tewksbury - John F. Ryan,02950023, 246, 21.0, 517, 47.4, 52.6, 1.9, 17.4,11.4 +NA,NA,a-curv-i5,2017-18,Tewksbury - John W. Wynn Middle,02950305, 279, 19.8, 585, 52.6, 47.4, 0.5, 20.5,14.5 +NA,NA,a-curv-i5,2017-18,Tewksbury - L F Dewing,02950001, 145, 20.1, 624, 47.9, 52.1, 3.4, 22.6,15.7 +NA,NA,a-curv-i5,2017-18,Tewksbury - Louise Davy Trahan,02950025, 108, 19.4, 233, 55.4, 44.6, 0.4, 9.4,15.9 +NA,NA,a-curv-i5,2017-18,Tewksbury - North Street,02950020, 120, 20.9, 280, 45.7, 54.3, 2.9, 22.9,16.1 +NA,NA,a-curv-i5,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 424, 19.1, 921, 48.0, 52.0, 1.4, 12.1,13.1 +NA,NA,a-curv-i5,2017-18,Tisbury - Tisbury Elementary,02960005, 212, 13.5, 318, 46.5, 53.5, 24.8, 15.7,24.5 +NA,NA,a-curv-i5,2017-18,Topsfield - Proctor Elementary,02980005, 68, 18.6, 257, 52.5, 47.5, 0.0, 17.5,4.7 +NA,NA,a-curv-i5,2017-18,Topsfield - Steward Elementary,02980010, 97, 15.8, 384, 49.2, 50.8, 0.5, 16.7,4.4 +NA,NA,a-curv-i5,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 573, 16.4, 980, 43.0, 56.8, 0.3, 26.7,18.3 +NA,NA,a-curv-i5,2017-18,Triton - Newbury Elementary,07730020, 207, 19.0, 458, 46.3, 53.7, 1.1, 18.3,11.1 +NA,NA,a-curv-i5,2017-18,Triton - Pine Grove,07730025, 199, 20.4, 459, 47.9, 52.1, 1.3, 16.8,14.6 +NA,NA,a-curv-i5,2017-18,Triton - Salisbury Elementary,07730015, 235, 20.7, 523, 47.8, 52.2, 1.9, 16.3,36.1 +6.411049723756906,5,a-curv-i5,2017-18,Triton - Triton Regional High School,07730505, 362, 13.9, 712, 50.8, 49.2, 0.8, 13.3,14.2,719 +NA,NA,a-curv-i5,2017-18,Triton - Triton Regional Middle School,07730405, 209, 21.6, 419, 50.1, 49.9, 1.0, 15.3,20.3 +NA,NA,a-curv-i5,2017-18,Truro - Truro Central,03000005, 74, 14.8, 106, 55.7, 44.3, 0.0, 17.0,28.3 +NA,NA,a-curv-i5,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 372, 21.2, 813, 45.5, 54.5, 3.2, 18.2,13.8 +7.003141361256544,5,a-curv-i5,2017-18,Tyngsborough - Tyngsborough High School,03010505, 382, 16.2, 484, 50.4, 49.6, 0.8, 8.3,7.4,476 +NA,NA,a-curv-i5,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 291, 15.9, 417, 49.4, 50.6, 1.2, 19.7,16.1 +NA,NA,a-curv-i5,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 142, 22.1, 496, 48.6, 51.4, 25.8, 20.6,62.5 +NA,NA,a-curv-i5,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 210, 23.9, 750, 49.1, 50.9, 26.5, 19.1,61.5 +NA,NA,a-curv-i5,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 20, 11.4, 51, 47.1, 52.9, 0.0, 17.6,17.6 +NA,NA,a-curv-i5,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 183, 15.4, 347, 44.1, 55.9, 5.5, 26.5,17.9 +NA,NA,a-curv-i5,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 324, 15.2, 693, 37.5, 62.5, 0.0, 17.3,21.8 +NA,NA,a-curv-i5,2017-18,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2017-18,Uxbridge - McCloskey Middle School,03040015, 172, 21.5, 412, 46.1, 53.9, 1.5, 13.3,18 +NA,NA,a-curv-i5,2017-18,Uxbridge - Taft Early Learning Center,03040005, 99, 21.6, 455, 46.8, 53.2, 2.2, 22.2,22 +NA,NA,a-curv-i5,2017-18,Uxbridge - Uxbridge High,03040505, 272, 15.7, 482, 45.9, 54.1, 0.8, 16.0,18.3 +NA,NA,a-curv-i5,2017-18,Uxbridge - Whitin Elementary School,03040020, 102, 22.6, 383, 47.3, 52.7, 1.6, 15.7,19.6 +NA,NA,a-curv-i5,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 90, 27.7, 308, 52.6, 47.4, 9.7, 23.4,68.2 +NA,NA,a-curv-i5,2017-18,Wachusett - Central Tree Middle,07750310, 202, 16.3, 372, 50.0, 50.0, 0.3, 17.2,10.2 +NA,NA,a-curv-i5,2017-18,Wachusett - Chocksett Middle School,07750315, 175, 18.5, 369, 49.6, 50.4, 0.3, 14.6,10 +NA,NA,a-curv-i5,2017-18,Wachusett - Davis Hill Elementary,07750018, 166, 21.6, 475, 47.4, 52.6, 2.5, 13.3,11.6 +NA,NA,a-curv-i5,2017-18,Wachusett - Dawson,07750020, 184, 18.6, 489, 49.5, 50.5, 5.7, 12.7,9.4 +NA,NA,a-curv-i5,2017-18,Wachusett - Early Childhood Center,07750001, 8, 23.4, 187, 43.3, 56.7, 0.0, 46.0,16 +NA,NA,a-curv-i5,2017-18,Wachusett - Glenwood Elementary School,07750060, 132, 21.5, 345, 50.1, 49.9, 1.4, 16.8,13.3 +NA,NA,a-curv-i5,2017-18,Wachusett - Houghton Elementary,07750027, 159, 17.3, 371, 46.4, 53.6, 0.5, 17.3,12.1 +NA,NA,a-curv-i5,2017-18,Wachusett - Leroy E.Mayo,07750032, 174, 19.8, 489, 47.4, 52.6, 3.5, 10.8,9 +NA,NA,a-curv-i5,2017-18,Wachusett - Mountview Middle,07750305, 346, 21.8, 814, 49.4, 50.6, 1.2, 13.8,9.1 +NA,NA,a-curv-i5,2017-18,Wachusett - Naquag Elementary School,07750005, 125, 19.9, 347, 52.4, 47.6, 4.0, 11.8,11.5 +NA,NA,a-curv-i5,2017-18,Wachusett - Paxton Center,07750040, 203, 18.0, 474, 47.5, 52.5, 4.0, 13.3,8 +NA,NA,a-curv-i5,2017-18,Wachusett - Thomas Prince,07750045, 160, 20.1, 406, 51.7, 48.3, 0.0, 14.8,4.9 +NA,NA,a-curv-i5,2017-18,Wachusett - Wachusett Regional High,07750505," 1,136", 17.2," 2,129", 52.8, 47.1, 0.3, 13.2,7.8 +NA,NA,a-curv-i5,2017-18,Wakefield - Dolbeare,03050005, 105, 21.2, 446, 48.7, 51.3, 1.8, 13.2,9.4 +NA,NA,a-curv-i5,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 22, 10.5, 139, 45.3, 54.7, 2.2, 26.6,18.7 +NA,NA,a-curv-i5,2017-18,Wakefield - Galvin Middle School,03050310, 531, 20.8," 1,050", 48.6, 51.4, 1.0, 20.6,13.6 +NA,NA,a-curv-i5,2017-18,Wakefield - Greenwood,03050020, 50, 22.3, 223, 48.9, 51.1, 2.2, 14.8,7.6 +NA,NA,a-curv-i5,2017-18,Wakefield - Wakefield Memorial High,03050505, 548, 14.6," 1,030", 52.2, 47.8, 1.0, 15.5,11.1 +NA,NA,a-curv-i5,2017-18,Wakefield - Walton,03050040, 45, 23.2, 209, 45.9, 54.1, 2.9, 12.0,8.1 +NA,NA,a-curv-i5,2017-18,Wakefield - Woodville School,03050015, 105, 20.7, 435, 47.8, 52.0, 6.7, 15.2,18.6 +NA,NA,a-curv-i5,2017-18,Wales - Wales Elementary,03060005, 39, 20.7, 160, 44.4, 55.6, 0.0, 18.8,26.3 +NA,NA,a-curv-i5,2017-18,Walpole - Bird Middle,03070305, 290, 20.0, 495, 50.1, 49.9, 2.6, 16.0,9.1 +NA,NA,a-curv-i5,2017-18,Walpole - Boyden,03070010, 74, 19.1, 360, 53.9, 46.1, 6.1, 15.8,11.9 +NA,NA,a-curv-i5,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 7, 11.7, 82, 43.9, 56.1, 17.1, 40.2,14.6 +NA,NA,a-curv-i5,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 246, 21.5, 453, 49.4, 50.6, 0.9, 12.4,7.7 +NA,NA,a-curv-i5,2017-18,Walpole - Elm Street School,03070005, 84, 20.9, 438, 47.7, 52.3, 4.3, 12.1,9.4 +NA,NA,a-curv-i5,2017-18,Walpole - Fisher,03070015, 92, 19.7, 453, 46.4, 53.6, 5.1, 14.3,8.4 +NA,NA,a-curv-i5,2017-18,Walpole - Old Post Road,03070018, 88, 19.2, 423, 50.1, 49.9, 3.5, 7.1,7.1 +NA,NA,a-curv-i5,2017-18,Walpole - Walpole High,03070505, 476, 17.7," 1,143", 51.0, 48.9, 1.1, 13.9,9.2 +NA,NA,a-curv-i5,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 267, 16.8, 436, 43.1, 56.9, 8.5, 15.1,18.1 +NA,NA,a-curv-i5,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 280, 17.0, 447, 46.8, 53.2, 54.4, 11.9,49.2 +NA,NA,a-curv-i5,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 268, 16.9, 438, 50.2, 49.8, 23.5, 13.0,26.9 +NA,NA,a-curv-i5,2017-18,Waltham - John F Kennedy Middle,03080404, 362, 14.9, 529, 48.4, 51.6, 15.7, 17.4,31.4 +NA,NA,a-curv-i5,2017-18,Waltham - John W. McDevitt Middle School,03080415, 406, 16.3, 638, 50.8, 49.2, 11.6, 19.7,30.7 +NA,NA,a-curv-i5,2017-18,Waltham - Northeast Elementary School,03080040, 299, 17.0, 588, 46.8, 53.2, 21.4, 16.8,31.8 +NA,NA,a-curv-i5,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 279, 15.9, 426, 47.2, 52.8, 32.9, 15.5,37.8 +NA,NA,a-curv-i5,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 40, 19.5, 78, 39.7, 60.3, 53.8, 2.6,28.2 +NA,NA,a-curv-i5,2017-18,Waltham - Waltham Sr High,03080505, 811, 16.3," 1,586", 46.2, 53.8, 18.2, 11.2,31 +NA,NA,a-curv-i5,2017-18,Waltham - William F. Stanley Elementary School,03080005, 296, 13.8, 443, 44.9, 55.1, 29.6, 25.7,33.4 +NA,NA,a-curv-i5,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 76, 19.4, 432, 47.9, 52.1, 1.4, 24.3,57.9 +6.154455445544555,5,a-curv-i5,2017-18,Ware - Ware Junior/Senior High School,03090505, 202, 17.7, 466, 49.6, 50.4, 1.3, 18.2,45.3,466 +NA,NA,a-curv-i5,2017-18,Ware - Ware Middle School,03090305, 114, 23.3, 338, 51.2, 48.8, 1.2, 17.2,46.4 +NA,NA,a-curv-i5,2017-18,Wareham - John William Decas,03100003, 348, 16.9, 579, 48.5, 51.5, 2.2, 22.3,57.5 +NA,NA,a-curv-i5,2017-18,Wareham - Minot Forest,03100017, 237, 16.4, 499, 49.5, 50.5, 0.6, 30.1,52.3 +NA,NA,a-curv-i5,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 43, 7.1, 75, 40.0, 60.0, 0.0, 21.3,53.3 +NA,NA,a-curv-i5,2017-18,Wareham - Wareham Middle,03100305, 300, 17.8, 742, 47.6, 52.2, 0.4, 24.1,49.9 +NA,NA,a-curv-i5,2017-18,Wareham - Wareham Senior High,03100505, 434, 10.8, 515, 49.1, 50.7, 0.8, 23.9,38.3 +NA,NA,a-curv-i5,2017-18,Watertown - Cunniff,03140015, 132, 18.2, 305, 45.9, 54.1, 11.1, 22.3,21.3 +NA,NA,a-curv-i5,2017-18,Watertown - Hosmer,03140020, 247, 19.2, 698, 48.6, 51.4, 20.1, 20.6,22.9 +NA,NA,a-curv-i5,2017-18,Watertown - James Russell Lowell,03140025, 179, 18.4, 415, 49.9, 50.1, 14.2, 19.5,25.3 +NA,NA,a-curv-i5,2017-18,Watertown - Watertown High,03140505, 425, 13.5, 693, 50.1, 49.8, 6.5, 20.9,25.3 +NA,NA,a-curv-i5,2017-18,Watertown - Watertown Middle,03140305, 414, 16.5, 539, 49.4, 50.6, 6.3, 20.4,25 +NA,NA,a-curv-i5,2017-18,Wayland - Claypit Hill School,03150005, 221, 20.4, 549, 50.6, 49.4, 4.6, 18.2,4.6 +NA,NA,a-curv-i5,2017-18,Wayland - Happy Hollow School,03150015, 151, 21.2, 392, 45.9, 54.1, 5.1, 17.1,6.9 +NA,NA,a-curv-i5,2017-18,Wayland - Loker School,03150020, 113, 20.6, 289, 45.3, 54.7, 9.3, 12.8,5.2 +6.341888619854721,5,a-curv-i5,2017-18,Wayland - Wayland High School,03150505, 413, 15.8, 865, 48.1, 51.9, 1.7, 20.5,5.1,856 +NA,NA,a-curv-i5,2017-18,Wayland - Wayland Middle School,03150305, 447, 15.1, 642, 50.3, 49.7, 2.8, 18.4,6.5 +6.606349206349206,5,a-curv-i5,2017-18,Webster - Bartlett High School,03160505, 252, 14.7, 444, 45.5, 54.5, 4.3, 16.7,42.1,439 +NA,NA,a-curv-i5,2017-18,Webster - Park Avenue Elementary,03160015, 218, 19.9, 818, 47.8, 52.2, 12.7, 22.5,56.4 +NA,NA,a-curv-i5,2017-18,Webster - Webster Middle School,03160315, 206, 24.1, 600, 54.5, 45.5, 4.3, 20.3,48.7 +NA,NA,a-curv-i5,2017-18,Wellesley - Ernest F Upham,03170050, 56, 19.7, 238, 46.6, 53.4, 0.0, 25.2,3.8 +NA,NA,a-curv-i5,2017-18,Wellesley - Hunnewell,03170025, 56, 20.9, 251, 51.4, 48.6, 0.8, 15.9,2.8 +NA,NA,a-curv-i5,2017-18,Wellesley - John D Hardy,03170020, 72, 19.8, 296, 49.7, 50.0, 8.8, 12.8,4.4 +NA,NA,a-curv-i5,2017-18,Wellesley - Joseph E Fiske,03170015, 84, 18.1, 429, 49.7, 50.3, 6.8, 23.1,9.3 +NA,NA,a-curv-i5,2017-18,Wellesley - Katharine Lee Bates,03170005, 84, 20.3, 368, 55.4, 44.6, 0.3, 12.2,1.9 +NA,NA,a-curv-i5,2017-18,Wellesley - Schofield,03170045, 84, 20.7, 374, 53.5, 46.5, 1.3, 12.6,8.8 +NA,NA,a-curv-i5,2017-18,Wellesley - Sprague Elementary School,03170048, 87, 21.0, 378, 48.1, 51.9, 5.3, 18.3,5.6 +NA,NA,a-curv-i5,2017-18,Wellesley - Wellesley Middle,03170305, 778, 16.3," 1,132", 49.2, 50.8, 2.3, 15.0,5 +NA,NA,a-curv-i5,2017-18,Wellesley - Wellesley Sr High,03170505, 699, 17.0," 1,566", 51.3, 48.7, 0.7, 15.1,6.8 +NA,NA,a-curv-i5,2017-18,Wellfleet - Wellfleet Elementary,03180005, 82, 13.5, 121, 50.4, 49.6, 1.7, 19.0,33.1 +NA,NA,a-curv-i5,2017-18,West Boylston - Major Edwards Elementary,03220005, 195, 20.1, 423, 49.9, 50.1, 6.1, 18.9,21.5 +NA,NA,a-curv-i5,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 370, 13.1, 499, 52.1, 47.9, 1.2, 12.0,18.4 +NA,NA,a-curv-i5,2017-18,West Bridgewater - Howard School,03230305, 142, 20.9, 288, 53.8, 46.2, 0.7, 11.1,19.8 +NA,NA,a-curv-i5,2017-18,West Bridgewater - Rose L Macdonald,03230003, 164, 20.6, 248, 50.0, 50.0, 2.0, 10.5,14.5 +NA,NA,a-curv-i5,2017-18,West Bridgewater - Spring Street School,03230005, 57, 19.4, 149, 43.0, 57.0, 2.7, 18.8,15.4 +NA,NA,a-curv-i5,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 456, 17.1, 635, 52.8, 47.2, 1.1, 6.5,13.4 +NA,NA,a-curv-i5,2017-18,West Springfield - 21st Century Skills Academy,03320515, 8, 6.3, 13, 46.2, 53.8, 0.0, 30.8,61.5 +NA,NA,a-curv-i5,2017-18,West Springfield - Cowing Early Childhood,03320001, 10, 15.1, 150, 42.7, 57.3, 1.3, 50.7,61.3 +NA,NA,a-curv-i5,2017-18,West Springfield - John Ashley,03320005, 48, 19.8, 237, 54.4, 45.6, 3.4, 15.2,44.3 +NA,NA,a-curv-i5,2017-18,West Springfield - John R Fausey,03320010, 149, 16.0, 469, 47.8, 52.2, 3.8, 19.6,34.3 +NA,NA,a-curv-i5,2017-18,West Springfield - Memorial,03320025, 57, 21.0, 236, 43.6, 56.4, 3.0, 16.1,65.3 +NA,NA,a-curv-i5,2017-18,West Springfield - Mittineague,03320030, 63, 14.3, 175, 52.6, 47.4, 7.4, 21.1,45.1 +NA,NA,a-curv-i5,2017-18,West Springfield - Philip G Coburn,03320007, 119, 19.3, 537, 52.0, 48.0, 50.3, 11.4,69.3 +NA,NA,a-curv-i5,2017-18,West Springfield - Tatham,03320040, 68, 18.8, 251, 51.4, 48.6, 1.6, 12.7,35.1 +NA,NA,a-curv-i5,2017-18,West Springfield - West Springfield High,03320505, 736, 15.5," 1,251", 48.4, 51.6, 9.0, 18.6,38.2 +NA,NA,a-curv-i5,2017-18,West Springfield - West Springfield Middle,03320305, 583, 19.8, 976, 45.5, 54.5, 9.9, 19.5,45.2 +NA,NA,a-curv-i5,2017-18,Westborough - Annie E Fales,03210010, 112, 19.8, 338, 51.8, 48.2, 13.6, 18.0,6.8 +NA,NA,a-curv-i5,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 133, 17.7, 517, 48.2, 51.8, 23.8, 21.5,12.4 +NA,NA,a-curv-i5,2017-18,Westborough - J Harding Armstrong,03210005, 124, 18.9, 419, 45.3, 54.7, 22.0, 11.5,5 +NA,NA,a-curv-i5,2017-18,Westborough - Mill Pond School,03210045, 389, 24.0, 948, 51.8, 48.2, 5.8, 16.7,7.5 +NA,NA,a-curv-i5,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 536, 15.8, 616, 48.9, 51.1, 5.7, 14.6,10.1 +NA,NA,a-curv-i5,2017-18,Westborough - Westborough High,03210505, 648, 15.0," 1,137", 49.3, 50.7, 2.4, 10.3,7.5 +NA,NA,a-curv-i5,2017-18,Westfield - Abner Gibbs,03250020, 110, 20.7, 228, 51.3, 48.7, 0.9, 8.3,48.2 +NA,NA,a-curv-i5,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 13.2, 222, 40.5, 59.5, 1.8, 44.6,48.6 +NA,NA,a-curv-i5,2017-18,Westfield - Franklin Ave,03250015, 120, 19.8, 238, 54.6, 45.4, 3.8, 15.1,63.9 +NA,NA,a-curv-i5,2017-18,Westfield - Highland,03250025, 210, 18.0, 380, 46.6, 53.4, 45.3, 15.0,62.4 +NA,NA,a-curv-i5,2017-18,Westfield - Munger Hill,03250033, 201, 19.2, 385, 49.9, 50.1, 0.5, 20.5,23.4 +NA,NA,a-curv-i5,2017-18,Westfield - North Middle School,03250305, 374, 18.9, 673, 49.5, 50.4, 0.3, 18.7,25.9 +NA,NA,a-curv-i5,2017-18,Westfield - Paper Mill,03250036, 220, 18.2, 398, 47.2, 52.8, 2.5, 14.8,40.5 +NA,NA,a-curv-i5,2017-18,Westfield - Russell Elementary School,03250055, 90, 17.7, 159, 48.4, 51.6, 0.0, 17.0,25.2 +NA,NA,a-curv-i5,2017-18,Westfield - South Middle School,03250310, 308, 16.7, 603, 47.1, 52.9, 9.1, 22.4,44.1 +NA,NA,a-curv-i5,2017-18,Westfield - Southampton Road,03250040, 235, 17.6, 413, 50.4, 49.6, 2.4, 14.8,34.9 +NA,NA,a-curv-i5,2017-18,Westfield - Westfield High,03250505, 628, 16.8," 1,240", 54.3, 45.6, 4.0, 16.1,25.6 +NA,NA,a-curv-i5,2017-18,Westfield - Westfield Technical Academy,03250605, 277, 14.1, 538, 38.3, 61.7, 0.6, 27.1,32.5 +NA,NA,a-curv-i5,2017-18,Westford - Abbot Elementary,03260004, 151, 17.9, 365, 50.4, 49.6, 0.3, 15.3,6.8 +NA,NA,a-curv-i5,2017-18,Westford - Blanchard Middle,03260310, 388, 16.3, 595, 47.4, 52.6, 0.8, 14.6,5.4 +NA,NA,a-curv-i5,2017-18,Westford - Col John Robinson,03260025, 106, 18.4, 292, 48.6, 51.4, 4.5, 11.3,5.8 +NA,NA,a-curv-i5,2017-18,Westford - Day Elementary,03260007, 141, 19.2, 361, 49.6, 50.4, 1.1, 15.8,6.4 +NA,NA,a-curv-i5,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 138, 18.8, 344, 52.3, 47.7, 0.9, 13.4,4.9 +NA,NA,a-curv-i5,2017-18,Westford - Millennium Elementary,03260013, 14, 12.7, 130, 43.1, 56.9, 0.0, 47.7,12.3 +NA,NA,a-curv-i5,2017-18,Westford - Nabnasset,03260015, 135, 17.0, 335, 48.7, 51.3, 1.5, 13.1,6 +NA,NA,a-curv-i5,2017-18,Westford - Rita E. Miller Elementary School,03260055, 130, 17.6, 333, 49.8, 50.2, 7.8, 19.2,7.2 +NA,NA,a-curv-i5,2017-18,Westford - Stony Brook School,03260330, 393, 17.8, 648, 48.0, 52.0, 0.0, 14.0,5.7 +NA,NA,a-curv-i5,2017-18,Westford - Westford Academy,03260505, 710, 19.6," 1,702", 48.8, 51.2, 0.4, 10.2,4.1 +NA,NA,a-curv-i5,2017-18,Westhampton - Westhampton Elementary School,03270005, 50, 15.6, 124, 46.0, 53.2, 0.8, 24.2,14.5 +NA,NA,a-curv-i5,2017-18,Weston - Country,03300010, 85, 17.8, 305, 55.1, 44.9, 4.9, 12.5,7.2 +NA,NA,a-curv-i5,2017-18,Weston - Field Elementary School,03300012, 128, 16.3, 330, 47.9, 52.1, 3.6, 16.4,6.1 +NA,NA,a-curv-i5,2017-18,Weston - Weston High,03300505, 356, 16.5, 692, 47.1, 52.9, 1.7, 18.2,5.2 +NA,NA,a-curv-i5,2017-18,Weston - Weston Middle,03300305, 312, 17.9, 489, 50.3, 49.7, 2.7, 18.6,3.3 +NA,NA,a-curv-i5,2017-18,Weston - Woodland,03300015, 84, 18.0, 303, 47.2, 52.8, 4.6, 13.2,4.6 +NA,NA,a-curv-i5,2017-18,Westport - Alice A Macomber,03310015, 128, 18.2, 385, 45.5, 54.5, 2.6, 22.6,27 +NA,NA,a-curv-i5,2017-18,Westport - Westport Elementary,03310030, 287, 17.7, 501, 45.7, 54.3, 0.6, 18.8,22.8 +6.72463768115942,5,a-curv-i5,2017-18,Westport - Westport Junior/Senior High School,03310515, 345, 13.9, 553, 45.0, 55.0, 0.0, 12.1,20.1,550 +NA,NA,a-curv-i5,2017-18,Westwood - Deerfield School,03350010, 87, 17.0, 205, 40.5, 59.5, 3.4, 19.0,3.4 +NA,NA,a-curv-i5,2017-18,Westwood - Downey,03350012, 87, 21.5, 258, 41.5, 58.5, 2.7, 22.9,8.5 +NA,NA,a-curv-i5,2017-18,Westwood - E W Thurston Middle,03350305, 428, 20.5, 796, 50.4, 49.6, 0.6, 18.7,5 +NA,NA,a-curv-i5,2017-18,Westwood - Martha Jones,03350017, 116, 18.4, 294, 49.7, 50.3, 0.0, 11.2,4.1 +NA,NA,a-curv-i5,2017-18,Westwood - Paul Hanlon,03350015, 87, 18.4, 220, 47.7, 52.3, 1.8, 17.7,6.4 +NA,NA,a-curv-i5,2017-18,Westwood - Westwood High,03350505, 546, 15.4," 1,009", 53.2, 46.7, 0.3, 14.6,3.9 +NA,NA,a-curv-i5,2017-18,Westwood - Westwood Integrated Preschool,03350050, 3, 17.7, 53, 28.3, 71.7, 0.0, 50.9,9.4 +NA,NA,a-curv-i5,2017-18,Westwood - William E Sheehan,03350025, 123, 18.7, 318, 47.5, 52.5, 1.6, 16.0,3.5 +NA,NA,a-curv-i5,2017-18,Weymouth - Abigail Adams Middle School,03360310, 625, 21.8, 924, 50.8, 49.2, 2.2, 19.0,30.8 +NA,NA,a-curv-i5,2017-18,Weymouth - Academy Avenue,03360005, 57, 20.4, 321, 48.0, 52.0, 12.8, 13.1,28.3 +NA,NA,a-curv-i5,2017-18,Weymouth - Frederick C Murphy,03360050, 42, 21.0, 254, 46.5, 53.5, 0.8, 23.6,26.4 +NA,NA,a-curv-i5,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 19, 11.5, 219, 42.0, 58.0, 1.4, 52.1,31.5 +NA,NA,a-curv-i5,2017-18,Weymouth - Lawrence W Pingree,03360065, 37, 17.6, 190, 54.7, 45.3, 0.5, 20.5,28.4 +NA,NA,a-curv-i5,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 454, 18.6, 897, 47.2, 52.7, 2.6, 19.3,28 +NA,NA,a-curv-i5,2017-18,Weymouth - Ralph Talbot,03360085, 48, 18.4, 244, 44.7, 55.3, 10.7, 18.0,25.8 +NA,NA,a-curv-i5,2017-18,Weymouth - Thomas V Nash,03360060, 45, 16.3, 205, 56.1, 43.9, 0.5, 22.4,25.9 +NA,NA,a-curv-i5,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 62, 19.9, 352, 49.4, 50.6, 7.7, 14.8,18.8 +NA,NA,a-curv-i5,2017-18,Weymouth - Wessagusset,03360110, 60, 15.8, 278, 47.5, 52.5, 0.0, 15.5,23.4 +6.381256656017039,5,a-curv-i5,2017-18,Weymouth - Weymouth High School,03360505, 939, 16.2," 1,921", 48.6, 51.4, 2.4, 13.7,22.7,1900 +NA,NA,a-curv-i5,2017-18,Weymouth - William Seach,03360080, 53, 21.6, 315, 47.6, 52.4, 16.8, 16.5,53.7 +NA,NA,a-curv-i5,2017-18,Whately - Whately Elementary,03370005, 105, 17.7, 137, 51.1, 48.9, 3.6, 13.9,20.4 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 187, 19.7, 394, 44.4, 55.6, 0.3, 18.3,17.3 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Indian Head,07800035, 105, 21.2, 318, 49.7, 50.3, 0.3, 18.2,16.7 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - John H Duval,07800030, 141, 21.5, 449, 50.1, 49.9, 2.0, 10.7,25.8 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Louise A Conley,07800010, 176, 21.8, 561, 51.3, 48.7, 1.6, 11.4,18.9 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 112, 20.1, 440, 43.4, 56.6, 0.5, 21.1,16.1 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 454, 20.8," 1,174", 52.5, 47.5, 0.9, 14.0,15.9 +NA,NA,a-curv-i5,2017-18,Whitman-Hanson - Whitman Middle,07800310, 241, 23.4, 573, 43.5, 56.5, 1.0, 12.2,19.9 +NA,NA,a-curv-i5,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 620, 15.0," 1,249", 45.2, 54.8, 1.0, 22.0,28.6 +NA,NA,a-curv-i5,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 73, 16.7, 166, 49.4, 50.6, 4.2, 21.1,21.1 +NA,NA,a-curv-i5,2017-18,Williamstown - Williamstown Elementary,03410010, 200, 16.6, 455, 48.4, 51.6, 0.4, 13.0,16.3 +NA,NA,a-curv-i5,2017-18,Wilmington - Boutwell,03420005, 87, 15.4, 159, 52.8, 47.2, 1.9, 20.1,7.5 +NA,NA,a-curv-i5,2017-18,Wilmington - North Intermediate,03420060, 162, 20.2, 304, 48.4, 51.6, 1.3, 18.1,9.2 +NA,NA,a-curv-i5,2017-18,Wilmington - Shawsheen Elementary,03420025, 198, 17.7, 344, 49.4, 50.6, 2.0, 20.3,8.1 +NA,NA,a-curv-i5,2017-18,Wilmington - West Intermediate,03420080, 141, 19.2, 247, 50.6, 49.4, 0.8, 19.0,10.1 +NA,NA,a-curv-i5,2017-18,Wilmington - Wildwood,03420015, 97, 18.2, 207, 46.4, 53.6, 1.4, 22.2,10.1 +NA,NA,a-curv-i5,2017-18,Wilmington - Wilmington High,03420505, 444, 16.5, 864, 51.2, 48.8, 0.6, 13.3,7.9 +NA,NA,a-curv-i5,2017-18,Wilmington - Wilmington Middle School,03420330, 570, 17.1, 846, 47.5, 52.5, 0.6, 21.5,8.7 +NA,NA,a-curv-i5,2017-18,Wilmington - Woburn Street,03420020, 208, 18.2, 376, 49.5, 50.5, 2.9, 14.6,11.7 +NA,NA,a-curv-i5,2017-18,Winchendon - Memorial,03430040, 91, 20.8, 295, 43.7, 56.3, 0.7, 16.9,47.8 +NA,NA,a-curv-i5,2017-18,Winchendon - Murdock Academy for Success,03430405, 4, 23.8, 37, 40.5, 59.5, 0.0, 29.7,59.5 +6.198518518518519,5,a-curv-i5,2017-18,Winchendon - Murdock High School,03430515, 135, 14.6, 329, 46.5, 53.5, 0.6, 24.0,38,304 +NA,NA,a-curv-i5,2017-18,Winchendon - Murdock Middle School,03430315, 99, 21.9, 287, 48.4, 51.6, 0.7, 14.6,36.9 +NA,NA,a-curv-i5,2017-18,Winchendon - Toy Town Elementary,03430050, 126, 20.6, 288, 46.9, 53.1, 1.0, 14.6,39.9 +NA,NA,a-curv-i5,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 7, 11.4, 79, 50.6, 49.4, 1.3, 30.4,48.1 +NA,NA,a-curv-i5,2017-18,Winchester - Ambrose Elementary,03440045, 260, 19.7, 424, 46.0, 54.0, 2.8, 16.7,.9 +NA,NA,a-curv-i5,2017-18,Winchester - Lincoln Elementary,03440005, 247, 19.2, 403, 51.1, 48.9, 4.2, 12.7,1.2 +NA,NA,a-curv-i5,2017-18,Winchester - Lynch Elementary,03440020, 292, 19.4, 548, 45.8, 54.2, 12.0, 19.2,8.4 +NA,NA,a-curv-i5,2017-18,Winchester - McCall Middle,03440305, 502, 22.6," 1,112", 50.9, 49.1, 1.0, 17.1,4.9 +NA,NA,a-curv-i5,2017-18,Winchester - Muraco Elementary,03440040, 248, 17.9, 379, 49.1, 50.9, 4.0, 16.4,4.7 +NA,NA,a-curv-i5,2017-18,Winchester - Vinson-Owen Elementary,03440025, 249, 20.4, 462, 48.9, 51.1, 7.1, 19.7,2.8 +6.295268138801262,5,a-curv-i5,2017-18,Winchester - Winchester High School,03440505, 634, 17.0," 1,348", 49.9, 50.1, 1.5, 16.8,6.3,1351 +NA,NA,a-curv-i5,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 105, 21.6, 454, 47.4, 52.6, 6.4, 16.1,26.9 +NA,NA,a-curv-i5,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 106, 20.7, 483, 50.9, 49.1, 11.2, 17.2,29 +5.803571428571429,5,a-curv-i5,2017-18,Winthrop - Winthrop High School,03460505, 224, 18.3, 589, 48.9, 51.1, 4.6, 17.5,23.3,615 +NA,NA,a-curv-i5,2017-18,Winthrop - Winthrop Middle School,03460305, 285, 22.9, 488, 45.7, 54.3, 5.7, 14.3,26.2 +NA,NA,a-curv-i5,2017-18,Woburn - Clyde Reeves,03470040, 231, 16.9, 425, 50.6, 49.4, 11.3, 15.8,17.6 +NA,NA,a-curv-i5,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 495, 15.6, 525, 49.7, 50.3, 3.4, 21.1,21.5 +NA,NA,a-curv-i5,2017-18,Woburn - Daniel P Hurld,03470020, 120, 17.8, 214, 51.4, 48.6, 7.5, 6.1,13.6 +NA,NA,a-curv-i5,2017-18,Woburn - Goodyear Elementary School,03470005, 180, 17.0, 306, 44.4, 55.6, 6.2, 13.4,38.9 +NA,NA,a-curv-i5,2017-18,Woburn - John F Kennedy Middle School,03470405, 440, 16.1, 483, 52.0, 48.0, 4.3, 18.6,26.9 +NA,NA,a-curv-i5,2017-18,Woburn - Linscott-Rumford,03470025, 120, 17.8, 214, 56.1, 43.9, 5.6, 13.6,30.4 +NA,NA,a-curv-i5,2017-18,Woburn - Malcolm White,03470055, 180, 18.2, 327, 54.4, 45.6, 10.4, 8.3,35.8 +NA,NA,a-curv-i5,2017-18,Woburn - Mary D Altavesta,03470065, 131, 18.4, 241, 46.1, 53.9, 17.0, 14.9,24.9 +NA,NA,a-curv-i5,2017-18,Woburn - Shamrock,03470043, 168, 15.0, 380, 45.8, 54.2, 15.5, 27.4,33.4 +NA,NA,a-curv-i5,2017-18,Woburn - Woburn High,03470505, 600, 15.9," 1,301", 51.7, 48.3, 5.7, 15.8,20.1 +NA,NA,a-curv-i5,2017-18,Woburn - Wyman,03470060, 110, 16.6, 183, 52.5, 47.5, 3.8, 7.7,19.7 +NA,NA,a-curv-i5,2017-18,Worcester - Belmont Street Community,03480020, 170, 24.1, 622, 46.6, 53.4, 52.6, 19.6,80.9 +NA,NA,a-curv-i5,2017-18,Worcester - Burncoat Middle School,03480405, 510, 11.4, 601, 50.1, 49.9, 19.1, 22.8,54.4 +NA,NA,a-curv-i5,2017-18,Worcester - Burncoat Senior High,03480503, 532, 14.0, 988, 48.8, 51.2, 27.8, 27.0,52.6 +NA,NA,a-curv-i5,2017-18,Worcester - Burncoat Street,03480035, 124, 16.8, 312, 49.0, 51.0, 37.2, 25.6,76.3 +NA,NA,a-curv-i5,2017-18,Worcester - Canterbury,03480045, 132, 19.3, 391, 46.5, 53.5, 50.4, 22.3,73.9 +NA,NA,a-curv-i5,2017-18,Worcester - Chandler Elementary Community,03480050, 257, 20.8, 519, 45.9, 54.1, 58.6, 16.0,78 +NA,NA,a-curv-i5,2017-18,Worcester - Chandler Magnet,03480052, 198, 17.4, 472, 52.3, 47.7, 68.9, 18.6,68.6 +NA,NA,a-curv-i5,2017-18,Worcester - City View,03480053, 190, 17.7, 504, 50.4, 49.6, 43.3, 23.8,73.6 +NA,NA,a-curv-i5,2017-18,Worcester - Claremont Academy,03480350, 221, 19.1, 540, 50.6, 49.4, 39.3, 12.4,63.9 +NA,NA,a-curv-i5,2017-18,Worcester - Clark St Community,03480055, 97, 18.1, 287, 48.1, 51.9, 55.4, 25.4,79.4 +NA,NA,a-curv-i5,2017-18,Worcester - Columbus Park,03480060, 162, 22.0, 562, 45.2, 54.8, 50.9, 23.3,72.8 +NA,NA,a-curv-i5,2017-18,Worcester - Doherty Memorial High,03480512, 792, 13.2," 1,463", 46.6, 53.4, 18.9, 18.3,38.6 +NA,NA,a-curv-i5,2017-18,Worcester - Elm Park Community,03480095, 170, 19.6, 501, 45.3, 54.7, 53.1, 17.2,75.6 +NA,NA,a-curv-i5,2017-18,Worcester - Flagg Street,03480090, 117, 22.8, 401, 47.4, 52.6, 17.5, 11.7,26.9 +NA,NA,a-curv-i5,2017-18,Worcester - Forest Grove Middle,03480415, 412, 21.3, 984, 49.2, 50.8, 21.5, 18.4,44.9 +NA,NA,a-curv-i5,2017-18,Worcester - Francis J McGrath Elementary,03480177, 80, 19.4, 234, 50.4, 49.6, 32.5, 12.0,49.1 +NA,NA,a-curv-i5,2017-18,Worcester - Gates Lane,03480110, 279, 13.8, 601, 41.8, 58.2, 36.3, 37.6,58.7 +NA,NA,a-curv-i5,2017-18,Worcester - Goddard School/Science Technical,03480100, 140, 22.1, 473, 47.6, 52.4, 52.4, 19.7,71.9 +NA,NA,a-curv-i5,2017-18,Worcester - Grafton Street,03480115, 126, 23.3, 427, 45.4, 54.6, 45.7, 17.1,73.1 +NA,NA,a-curv-i5,2017-18,Worcester - Head Start,03480002, 245, 14.3, 642, 52.8, 47.2, 73.5, 10.3,85.8 +NA,NA,a-curv-i5,2017-18,Worcester - Heard Street,03480136, 88, 22.4, 297, 49.2, 50.8, 22.2, 12.5,44.8 +NA,NA,a-curv-i5,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 139, 19.4, 404, 49.5, 50.5, 34.2, 14.6,51.7 +NA,NA,a-curv-i5,2017-18,Worcester - Lake View,03480145, 90, 22.6, 299, 48.5, 51.5, 28.1, 16.1,42.1 +NA,NA,a-curv-i5,2017-18,Worcester - Lincoln Street,03480160, 90, 20.6, 285, 50.2, 49.8, 53.3, 23.5,79.3 +NA,NA,a-curv-i5,2017-18,Worcester - May Street,03480175, 97, 25.6, 353, 51.6, 48.4, 27.5, 10.8,39.4 +NA,NA,a-curv-i5,2017-18,Worcester - Midland Street,03480185, 80, 19.5, 233, 47.6, 52.4, 22.7, 9.9,34.3 +NA,NA,a-curv-i5,2017-18,Worcester - Nelson Place,03480200, 219, 16.2, 545, 42.2, 57.8, 17.8, 28.3,29 +NA,NA,a-curv-i5,2017-18,Worcester - Norrback Avenue,03480202, 244, 15.4, 587, 46.7, 53.3, 33.6, 31.7,43.8 +NA,NA,a-curv-i5,2017-18,Worcester - North High,03480515, 702, 13.7," 1,189", 50.0, 50.0, 32.3, 22.9,62.2 +NA,NA,a-curv-i5,2017-18,Worcester - Quinsigamond,03480210, 215, 24.0, 762, 50.5, 49.5, 46.1, 18.5,66.9 +NA,NA,a-curv-i5,2017-18,Worcester - Rice Square,03480215, 148, 22.3, 459, 46.4, 53.6, 37.5, 15.5,64.9 +NA,NA,a-curv-i5,2017-18,Worcester - Roosevelt,03480220, 256, 17.6, 684, 51.8, 48.2, 24.4, 20.3,41.8 +NA,NA,a-curv-i5,2017-18,Worcester - South High Community,03480520, 593, 15.9," 1,284", 49.1, 50.9, 30.8, 25.1,55.8 +NA,NA,a-curv-i5,2017-18,Worcester - Sullivan Middle,03480423, 570, 17.4, 874, 49.1, 50.9, 25.2, 19.7,56.2 +NA,NA,a-curv-i5,2017-18,Worcester - Tatnuck,03480230, 119, 23.5, 409, 53.1, 46.9, 28.6, 17.8,49.1 +NA,NA,a-curv-i5,2017-18,Worcester - Thorndyke Road,03480235, 101, 26.6, 397, 48.4, 51.6, 28.2, 14.9,43.8 +NA,NA,a-curv-i5,2017-18,Worcester - Union Hill School,03480240, 134, 23.7, 482, 46.3, 53.7, 47.1, 21.2,77.4 +NA,NA,a-curv-i5,2017-18,Worcester - University Pk Campus School,03480285, 127, 16.4, 236, 47.5, 52.5, 22.0, 11.9,57.6 +NA,NA,a-curv-i5,2017-18,Worcester - Vernon Hill School,03480280, 193, 20.1, 565, 45.8, 54.2, 39.3, 25.1,72.2 +NA,NA,a-curv-i5,2017-18,Worcester - Wawecus Road School,03480026, 73, 14.5, 163, 49.7, 50.3, 39.3, 30.7,55.2 +NA,NA,a-curv-i5,2017-18,Worcester - West Tatnuck,03480260, 139, 18.4, 382, 50.3, 49.7, 24.6, 18.1,26.7 +NA,NA,a-curv-i5,2017-18,Worcester - Woodland Academy,03480030, 163, 27.0, 642, 50.9, 49.1, 59.7, 15.4,73.1 +NA,NA,a-curv-i5,2017-18,Worcester - Worcester Arts Magnet School,03480225, 110, 25.2, 410, 50.2, 49.8, 18.3, 16.1,30.7 +NA,NA,a-curv-i5,2017-18,Worcester - Worcester East Middle,03480420, 482, 16.5, 798, 49.9, 50.1, 27.9, 17.9,66 +NA,NA,a-curv-i5,2017-18,Worcester - Worcester Technical High,03480605, 666, 15.9," 1,382", 54.8, 45.2, 7.8, 16.7,43.7 +NA,NA,a-curv-i5,2017-18,Worthington - R. H. Conwell,03490010, 50, 6.9, 63, 58.7, 41.3, 0.0, 23.8,39.7 +NA,NA,a-curv-i5,2017-18,Wrentham - Charles E Roderick,03500010, 195, 21.9, 475, 44.0, 56.0, 0.4, 13.9,9.3 +NA,NA,a-curv-i5,2017-18,Wrentham - Delaney,03500003, 226, 18.2, 590, 51.0, 49.0, 2.4, 17.6,11.5 +NA,NA,a-curv-i5,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 707, 18.9," 1,425", 52.8, 47.2, 7.9, 12.4,34.9 +NA,NA,a-curv-i5,2016-17,Abington - Abington High,00010505, 245, 14.9, 454, 54.2, 45.8, 2.9, 9.9,20.3 +NA,NA,a-curv-i5,2016-17,Abington - Beaver Brook Elementary School,00010003, 314, 24.2, 607, 49.1, 50.9, 8.6, 15.2,25.4 +NA,NA,a-curv-i5,2016-17,Abington - Center Elementary School,00010002, 101, 18.5, 220, 45.5, 54.5, 4.5, 23.6,20.9 +NA,NA,a-curv-i5,2016-17,Abington - Frolio Middle School,00010405, 224, 20.2, 336, 46.7, 53.3, 2.1, 13.1,20.8 +NA,NA,a-curv-i5,2016-17,Abington - Woodsdale Elementary School,00010015, 143, 28.0, 364, 49.5, 50.5, 2.5, 12.4,22 +NA,NA,a-curv-i5,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 123, 22.8, 516, 52.9, 47.1, 13.0, 25.6,31.8 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 733, 18.9," 1,870", 49.4, 50.6, 1.2, 10.5,3.7 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 135, 21.5, 413, 48.2, 51.8, 3.4, 20.6,5.6 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 142, 22.9, 460, 48.3, 51.7, 7.6, 18.0,4.3 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 10, 11.1, 110, 37.3, 62.7, 0.0, 44.5,12.7 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Luther Conant School,06000030, 142, 22.7, 451, 49.9, 50.1, 13.7, 16.4,6.2 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 149, 22.5, 474, 48.3, 51.7, 8.0, 16.0,7.4 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Merriam School,06000010, 163, 22.2, 513, 47.0, 53.0, 4.9, 16.2,5.8 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 128, 22.8, 411, 47.7, 52.3, 10.7, 16.8,8.8 +NA,NA,a-curv-i5,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 558, 22.8, 924, 47.5, 52.5, 1.9, 13.2,4.5 +NA,NA,a-curv-i5,2016-17,Acushnet - Acushnet Elementary School,00030025, 172, 18.7, 548, 46.5, 53.5, 0.7, 17.5,26.5 +NA,NA,a-curv-i5,2016-17,Acushnet - Albert F Ford Middle School,00030305, 372, 18.5, 423, 49.4, 50.6, 0.2, 12.3,18.2 +NA,NA,a-curv-i5,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 127, 16.1, 255, 52.9, 47.1, 0.4, 24.7,34.5 +6.863926940639269,5,a-curv-i5,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 438, 14.6, 608, 50.2, 49.8, 0.8, 22.2,36.7,622 +NA,NA,a-curv-i5,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 174, 20.8, 440, 47.0, 53.0, 0.2, 26.8,57 +NA,NA,a-curv-i5,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 475, 19.4, 973, 47.8, 52.2, 1.2, 5.0,5.8 +NA,NA,a-curv-i5,2016-17,Agawam - Agawam Early Childhood Center,00050003, 16, 11.8, 188, 42.0, 58.0, 0.0, 51.6,34 +NA,NA,a-curv-i5,2016-17,Agawam - Agawam High,00050505, 600, 15.8," 1,192", 48.1, 51.9, 1.3, 12.7,21.9 +NA,NA,a-curv-i5,2016-17,Agawam - Agawam Junior High,00050405, 783, 12.0, 572, 52.3, 47.7, 1.0, 16.8,22.9 +NA,NA,a-curv-i5,2016-17,Agawam - Benjamin J Phelps,00050020, 225, 18.3, 393, 46.3, 53.7, 12.7, 15.3,29.3 +NA,NA,a-curv-i5,2016-17,Agawam - Clifford M Granger,00050010, 148, 21.4, 299, 49.5, 50.5, 6.4, 21.1,31.1 +NA,NA,a-curv-i5,2016-17,Agawam - James Clark School,00050030, 181, 19.7, 341, 47.8, 52.2, 11.7, 15.8,30.2 +NA,NA,a-curv-i5,2016-17,Agawam - Roberta G. Doering School,00050303, 371, 16.7, 606, 46.2, 53.8, 5.8, 15.2,30.4 +NA,NA,a-curv-i5,2016-17,Agawam - Robinson Park,00050025, 231, 17.4, 381, 49.1, 50.9, 14.7, 12.1,37.3 +NA,NA,a-curv-i5,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 50, 46.4, 320, 54.1, 45.9, 11.9, 17.5,53.8 +NA,NA,a-curv-i5,2016-17,Amesbury - Amesbury Elementary,00070005, 171, 19.2, 403, 47.4, 52.6, 0.0, 20.3,20.6 +NA,NA,a-curv-i5,2016-17,Amesbury - Amesbury High,00070505, 369, 16.6, 611, 46.0, 54.0, 0.5, 16.2,15.1 +7.3951219512195125,5,a-curv-i5,2016-17,Amesbury - Amesbury Innovation High School,00070515, 41, 10.2, 46, 41.3, 58.7, 0.0, 50.0,60.9,31 +NA,NA,a-curv-i5,2016-17,Amesbury - Amesbury Middle,00070013, 374, 17.0, 691, 49.1, 50.9, 1.7, 17.7,22.6 +NA,NA,a-curv-i5,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 191, 20.2, 467, 46.3, 53.7, 3.9, 23.1,27.8 +NA,NA,a-curv-i5,2016-17,Amherst - Crocker Farm Elementary,00080009, 106, 19.0, 418, 49.3, 50.5, 17.5, 25.8,30.1 +NA,NA,a-curv-i5,2016-17,Amherst - Fort River Elementary,00080020, 94, 19.9, 328, 50.3, 49.7, 15.5, 25.0,40.5 +NA,NA,a-curv-i5,2016-17,Amherst - Wildwood Elementary,00080050, 119, 19.1, 401, 47.6, 52.4, 16.0, 17.5,28.7 +NA,NA,a-curv-i5,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 673, 12.7, 925, 47.5, 52.4, 4.9, 17.9,21.6 +NA,NA,a-curv-i5,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 270, 18.2, 441, 51.7, 48.3, 5.2, 20.9,24 +NA,NA,a-curv-i5,2016-17,Andover - Andover High,00090505," 1,217", 14.0," 1,805", 51.1, 48.8, 0.8, 14.8,6.5 +NA,NA,a-curv-i5,2016-17,Andover - Andover West Middle,00090310, 277, 19.8, 534, 53.9, 46.1, 1.1, 15.2,7.5 +NA,NA,a-curv-i5,2016-17,Andover - Bancroft Elementary,00090003, 192, 21.2, 592, 48.1, 51.9, 3.9, 16.9,6.1 +NA,NA,a-curv-i5,2016-17,Andover - Doherty Middle,00090305, 287, 20.0, 561, 49.0, 50.8, 0.9, 19.3,4.8 +NA,NA,a-curv-i5,2016-17,Andover - Henry C Sanborn Elementary,00090010, 130, 20.6, 390, 46.4, 53.6, 10.5, 15.4,8.7 +NA,NA,a-curv-i5,2016-17,Andover - High Plain Elementary,00090004, 165, 22.0, 528, 47.2, 52.8, 13.1, 17.6,5.7 +NA,NA,a-curv-i5,2016-17,Andover - Shawsheen School,00090005, 9, 10.8, 97, 39.2, 60.8, 0.0, 54.6,12.4 +NA,NA,a-curv-i5,2016-17,Andover - South Elementary,00090020, 164, 21.1, 506, 50.2, 49.8, 6.7, 17.6,4.3 +NA,NA,a-curv-i5,2016-17,Andover - West Elementary,00090025, 199, 22.0, 639, 47.6, 52.4, 4.7, 23.0,8.6 +NA,NA,a-curv-i5,2016-17,Andover - Wood Hill Middle School,00090350, 243, 17.9, 424, 54.5, 45.5, 1.4, 18.4,7.1 +NA,NA,a-curv-i5,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 84, 26.7, 310, 46.5, 53.5, 14.2, 22.9,48.7 +NA,NA,a-curv-i5,2016-17,Arlington - Arlington High,00100505, 586, 15.9," 1,282", 50.1, 49.8, 1.5, 10.4,9.2 +NA,NA,a-curv-i5,2016-17,Arlington - Brackett,00100010, 189, 17.7, 479, 48.0, 52.0, 3.1, 12.9,3.1 +NA,NA,a-curv-i5,2016-17,Arlington - Cyrus E Dallin,00100025, 182, 18.1, 471, 48.2, 51.8, 2.8, 15.9,4 +NA,NA,a-curv-i5,2016-17,Arlington - Hardy,00100030, 147, 21.0, 441, 45.4, 54.6, 10.7, 17.2,6.6 +NA,NA,a-curv-i5,2016-17,Arlington - John A Bishop,00100005, 126, 23.4, 422, 50.2, 49.8, 5.2, 11.6,4.5 +NA,NA,a-curv-i5,2016-17,Arlington - M Norcross Stratton,00100055, 169, 16.6, 401, 50.1, 49.9, 9.7, 16.0,8.5 +NA,NA,a-curv-i5,2016-17,Arlington - Menotomy Preschool,00100038, 6, 15.5, 93, 35.5, 64.5, 0.0, 58.1,10.8 +NA,NA,a-curv-i5,2016-17,Arlington - Ottoson Middle,00100410, 690, 19.0," 1,224", 52.8, 47.2, 1.3, 16.0,9.6 +NA,NA,a-curv-i5,2016-17,Arlington - Peirce,00100045, 84, 23.3, 279, 48.7, 51.3, 9.0, 14.7,5.4 +NA,NA,a-curv-i5,2016-17,Arlington - Thompson,00100050, 147, 22.0, 462, 48.1, 51.9, 11.0, 13.6,14.7 +NA,NA,a-curv-i5,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 243, 22.1, 543, 48.3, 51.7, 2.8, 22.8,16.9 +NA,NA,a-curv-i5,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 81, 20.0, 160, 46.3, 53.8, 5.6, 13.1,13.8 +6.46975476839237,5,a-curv-i5,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 367, 16.4, 703, 50.1, 49.9, 1.0, 15.9,12.8,702 +NA,NA,a-curv-i5,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 470, 18.6, 579, 50.9, 49.1, 1.7, 16.1,13.8 +NA,NA,a-curv-i5,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 167, 24.9, 376, 46.8, 53.2, 3.5, 18.9,15.7 +NA,NA,a-curv-i5,2016-17,Ashland - Ashland High,00140505, 408, 14.8, 756, 51.1, 48.9, 2.1, 12.8,10.7 +NA,NA,a-curv-i5,2016-17,Ashland - Ashland Middle,00140405, 345, 18.8, 599, 50.9, 49.1, 3.0, 14.2,14.4 +NA,NA,a-curv-i5,2016-17,Ashland - David Mindess,00140015, 233, 22.3, 624, 49.7, 50.3, 6.9, 18.3,12.5 +NA,NA,a-curv-i5,2016-17,Ashland - Henry E Warren Elementary,00140010, 176, 20.2, 614, 50.2, 49.8, 6.4, 15.5,10.1 +NA,NA,a-curv-i5,2016-17,Ashland - William Pittaway Elementary,00140005, 22, 7.0, 143, 48.3, 51.7, 0.0, 28.0,11.9 +6.555810147299509,5,a-curv-i5,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 611, 16.2," 1,102", 42.4, 57.6, 2.0, 29.6,20.5,1103 +NA,NA,a-curv-i5,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 198, 21.0, 604, 48.7, 51.3, 3.5, 31.3,55 +NA,NA,a-curv-i5,2016-17,Athol-Royalston - Athol High,06150505, 186, 13.6, 359, 46.5, 53.5, 1.1, 24.2,42.6 +NA,NA,a-curv-i5,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 202, 18.5, 401, 47.1, 52.9, 2.7, 27.2,45.9 +NA,NA,a-curv-i5,2016-17,Athol-Royalston - Royalston Community School,06150050, 70, 16.3, 148, 50.7, 49.3, 1.4, 17.6,37.8 +NA,NA,a-curv-i5,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 515, 22.8," 1,102", 53.1, 46.9, 6.2, 12.3,38.8 +NA,NA,a-curv-i5,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 219, 19.4, 454, 46.3, 53.7, 17.8, 17.6,38.1 +NA,NA,a-curv-i5,2016-17,Attleboro - Attleboro Community Academy,00160515, 58, 9.9, 92, 42.4, 57.6, 1.1, 4.3,51.1 +NA,NA,a-curv-i5,2016-17,Attleboro - Attleboro High,00160505, 857, 21.2," 1,722", 45.5, 54.5, 2.8, 10.7,24.1 +NA,NA,a-curv-i5,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 212, 23.3, 560, 46.1, 53.9, 5.9, 14.6,34.6 +NA,NA,a-curv-i5,2016-17,Attleboro - Early Learning Center,00160008, 18, 10.9, 196, 39.3, 60.7, 0.0, 59.2,33.2 +NA,NA,a-curv-i5,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 171, 25.6, 488, 44.7, 55.3, 3.7, 13.9,27 +NA,NA,a-curv-i5,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 167, 25.5, 468, 52.1, 47.9, 13.9, 13.0,28.6 +NA,NA,a-curv-i5,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 217, 16.2, 389, 46.3, 53.7, 5.7, 23.4,28.3 +NA,NA,a-curv-i5,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 238, 27.4, 673, 49.3, 50.7, 1.3, 17.7,19.3 +NA,NA,a-curv-i5,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 181, 23.8, 477, 47.0, 53.0, 11.9, 15.7,37.3 +NA,NA,a-curv-i5,2016-17,Attleboro - Wamsutta Middle School,00160320, 169, 24.7, 576, 46.2, 53.8, 3.5, 16.7,30.9 +NA,NA,a-curv-i5,2016-17,Auburn - Auburn Middle,00170305, 275, 20.7, 628, 49.4, 50.6, 2.9, 7.5,17 +NA,NA,a-curv-i5,2016-17,Auburn - Auburn Senior High,00170505, 605, 16.6, 804, 52.0, 48.0, 2.2, 10.8,13.9 +NA,NA,a-curv-i5,2016-17,Auburn - Bryn Mawr,00170010, 48, 24.6, 296, 47.6, 52.4, 4.4, 9.8,17.6 +NA,NA,a-curv-i5,2016-17,Auburn - Pakachoag School,00170025, 48, 23.4, 281, 47.0, 53.0, 8.5, 6.4,17.4 +NA,NA,a-curv-i5,2016-17,Auburn - Swanson Road Intermediate School,00170030, 194, 21.3, 543, 50.5, 49.5, 3.1, 7.9,20.6 +6.966801619433198,5,a-curv-i5,2016-17,Avon - Avon Middle High School,00180510, 247, 12.2, 319, 49.8, 49.5, 3.8, 16.3,25.1,319 +NA,NA,a-curv-i5,2016-17,Avon - Ralph D Butler,00180010, 98, 18.3, 403, 47.6, 52.4, 4.0, 16.6,22.1 +6.630962343096234,5,a-curv-i5,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 239, 17.0, 415, 48.4, 51.6, 2.7, 16.4,23.6,409 +NA,NA,a-curv-i5,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 210, 20.5, 388, 53.4, 46.6, 2.3, 17.3,20.1 +NA,NA,a-curv-i5,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 178, 20.2, 387, 46.8, 53.2, 1.3, 21.2,20.4 +NA,NA,a-curv-i5,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 244, 19.9, 527, 46.5, 53.5, 6.8, 15.7,26.4 +NA,NA,a-curv-i5,2016-17,Barnstable - Barnstable High,00200505, 709, 15.2," 1,812", 51.2, 48.8, 6.1, 11.8,24.5 +NA,NA,a-curv-i5,2016-17,Barnstable - Barnstable Intermediate School,00200315, 481, 14.9, 768, 51.2, 48.8, 5.5, 18.9,30.2 +NA,NA,a-curv-i5,2016-17,Barnstable - Barnstable United Elementary School,00200050, 406, 23.7, 859, 48.3, 51.7, 8.7, 13.3,33.3 +NA,NA,a-curv-i5,2016-17,Barnstable - Centerville Elementary,00200010, 87, 18.0, 287, 44.3, 55.7, 11.8, 18.1,25.8 +NA,NA,a-curv-i5,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 16, 10.1, 161, 43.5, 56.5, 11.2, 50.9,39.1 +NA,NA,a-curv-i5,2016-17,Barnstable - Hyannis West Elementary,00200025, 123, 16.5, 345, 46.7, 53.3, 40.0, 10.1,51.9 +NA,NA,a-curv-i5,2016-17,Barnstable - West Barnstable Elementary,00200005, 62, 22.7, 273, 43.2, 56.8, 10.3, 12.5,23.1 +NA,NA,a-curv-i5,2016-17,Barnstable - West Villages Elementary School,00200045, 107, 21.3, 439, 50.8, 49.2, 3.9, 13.4,22.3 +NA,NA,a-curv-i5,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 82, 21.0, 282, 49.3, 50.7, 15.6, 11.3,36.9 +NA,NA,a-curv-i5,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 304, 14.8, 398, 48.2, 51.8, 14.1, 19.3,67.3 +NA,NA,a-curv-i5,2016-17,Bedford - Bedford High,00230505, 599, 12.4, 895, 49.1, 50.6, 1.1, 14.3,7.3 +NA,NA,a-curv-i5,2016-17,Bedford - John Glenn Middle,00230305, 389, 16.1, 557, 49.7, 50.3, 4.7, 17.8,7.7 +NA,NA,a-curv-i5,2016-17,Bedford - Lt Elezer Davis,00230010, 93, 19.9, 608, 49.5, 50.5, 12.2, 11.3,8.9 +NA,NA,a-curv-i5,2016-17,Bedford - Lt Job Lane School,00230012, 138, 23.1, 581, 46.0, 54.0, 8.8, 18.8,7.6 +NA,NA,a-curv-i5,2016-17,Belchertown - Belchertown High,00240505, 437, 14.2, 713, 49.1, 50.9, 0.4, 12.8,13.7 +NA,NA,a-curv-i5,2016-17,Belchertown - Chestnut Hill Community School,00240006, 239, 22.4, 580, 50.0, 50.0, 0.7, 20.7,17.8 +NA,NA,a-curv-i5,2016-17,Belchertown - Cold Spring,00240005, 35, 16.9, 179, 55.3, 44.7, 0.0, 21.8,22.9 +NA,NA,a-curv-i5,2016-17,Belchertown - Jabish Middle School,00240025, 254, 16.9, 398, 48.5, 51.5, 0.3, 18.8,21.1 +NA,NA,a-curv-i5,2016-17,Belchertown - Swift River Elementary,00240018, 222, 19.9, 494, 47.8, 52.2, 2.2, 22.9,22.7 +NA,NA,a-curv-i5,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 8, 13.8, 103, 45.6, 54.4, 0.0, 42.7,15.5 +6.599052132701422,5,a-curv-i5,2016-17,Bellingham - Bellingham High School,00250505, 422, 16.8, 746, 46.0, 54.0, 1.5, 17.4,16.2,739 +NA,NA,a-curv-i5,2016-17,Bellingham - Bellingham Memorial School,00250315, 294, 17.9, 710, 49.9, 50.1, 0.8, 16.8,16.8 +NA,NA,a-curv-i5,2016-17,Bellingham - Keough Memorial Academy,00250510, 36, 9.0, 41, 31.7, 65.9, 0.0, 58.5,41.5 +NA,NA,a-curv-i5,2016-17,Bellingham - South Elementary,00250020, 72, 18.9, 339, 50.7, 49.3, 1.2, 15.0,16.2 +NA,NA,a-curv-i5,2016-17,Bellingham - Stall Brook,00250025, 76, 17.7, 337, 53.1, 46.9, 3.9, 15.1,18.1 +NA,NA,a-curv-i5,2016-17,Belmont - Belmont High,00260505, 449, 20.1," 1,267", 53.0, 47.0, 2.4, 5.3,6.6 +NA,NA,a-curv-i5,2016-17,Belmont - Daniel Butler,00260015, 130, 22.9, 367, 47.1, 52.9, 14.7, 7.9,12.5 +NA,NA,a-curv-i5,2016-17,Belmont - Mary Lee Burbank,00260010, 129, 23.3, 370, 50.0, 50.0, 12.4, 6.2,4.9 +NA,NA,a-curv-i5,2016-17,Belmont - Roger E Wellington,00260035, 203, 23.2, 663, 44.5, 55.5, 10.7, 13.4,7.5 +NA,NA,a-curv-i5,2016-17,Belmont - Winn Brook,00260005, 162, 23.5, 470, 48.9, 51.1, 13.4, 8.9,3.6 +NA,NA,a-curv-i5,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 657, 22.3," 1,367", 50.4, 49.6, 3.4, 10.1,6.9 +NA,NA,a-curv-i5,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 69, 21.4, 348, 48.6, 51.4, 5.2, 16.4,46.8 +NA,NA,a-curv-i5,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 172, 23.2, 442, 48.4, 51.6, 2.9, 12.7,5.4 +NA,NA,a-curv-i5,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 131, 14.5, 250, 50.0, 50.0, 16.0, 17.6,62.8 +NA,NA,a-curv-i5,2016-17,Berkley - Berkley Community School,00270010, 165, 20.8, 535, 50.3, 49.7, 0.0, 13.8,17.9 +NA,NA,a-curv-i5,2016-17,Berkley - Berkley Middle School,00270305, 177, 18.7, 395, 51.9, 48.1, 0.3, 18.0,13.2 +NA,NA,a-curv-i5,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 186, 14.4, 351, 51.9, 47.9, 1.4, 24.2,39.9 +NA,NA,a-curv-i5,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 321, 12.1, 537, 47.5, 52.5, 1.1, 14.5,20.9 +NA,NA,a-curv-i5,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 292, 18.1, 383, 52.7, 47.3, 2.3, 18.3,26.1 +NA,NA,a-curv-i5,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 241, 14.0, 346, 44.5, 55.5, 6.6, 20.8,32.4 +NA,NA,a-curv-i5,2016-17,Berlin - Berlin Memorial,00280005, 123, 14.9, 193, 43.0, 57.0, 5.2, 17.1,17.1 +NA,NA,a-curv-i5,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 306, 16.2, 587, 47.7, 52.3, 2.4, 17.0,8.5 +NA,NA,a-curv-i5,2016-17,Beverly - Ayers/Ryal Side School,00300055, 25, 21.0, 524, 48.3, 51.7, 16.6, 13.2,31.7 +NA,NA,a-curv-i5,2016-17,Beverly - Beverly High,00300505, 590, 19.0," 1,245", 50.4, 49.6, 2.5, 16.0,21.8 +NA,NA,a-curv-i5,2016-17,Beverly - Briscoe Middle,00300305, 549, 20.4," 1,013", 45.8, 54.2, 2.2, 21.4,22.8 +NA,NA,a-curv-i5,2016-17,Beverly - Centerville Elementary,00300010, 22, 16.3, 359, 47.1, 52.9, 1.7, 23.4,35.1 +NA,NA,a-curv-i5,2016-17,Beverly - Cove Elementary,00300015, 26, 17.6, 457, 47.5, 52.5, 2.4, 17.9,25.6 +NA,NA,a-curv-i5,2016-17,Beverly - Hannah Elementary,00300033, 23, 16.3, 375, 48.5, 51.5, 1.1, 21.1,21.1 +NA,NA,a-curv-i5,2016-17,Beverly - McKeown School,00300002, 16, 9.8, 157, 35.7, 64.3, 0.0, 63.1,38.2 +NA,NA,a-curv-i5,2016-17,Beverly - North Beverly Elementary,00300040, 25, 15.4, 385, 48.3, 51.7, 0.5, 17.7,20.5 +6.055123674911661,5,a-curv-i5,2016-17,Billerica - Billerica Memorial High School,00310505, 566, 18.3," 1,392", 50.0, 50.0, 1.4, 15.5,15.1,1376 +NA,NA,a-curv-i5,2016-17,Billerica - Eugene C Vining,00310030, 106, 16.5, 198, 46.0, 54.0, 0.5, 14.6,21.7 +NA,NA,a-curv-i5,2016-17,Billerica - Frederick J Dutile,00310007, 150, 17.3, 294, 49.3, 50.7, 0.0, 19.7,15.6 +NA,NA,a-curv-i5,2016-17,Billerica - Hajjar Elementary,00310026, 221, 19.2, 481, 47.0, 53.0, 5.6, 17.9,18.9 +NA,NA,a-curv-i5,2016-17,Billerica - John F Kennedy,00310012, 159, 18.1, 324, 49.1, 50.9, 0.0, 13.9,10.2 +NA,NA,a-curv-i5,2016-17,Billerica - Locke Middle,00310310, 377, 16.2, 540, 48.5, 51.5, 0.0, 17.8,11.3 +NA,NA,a-curv-i5,2016-17,Billerica - Marshall Middle School,00310305, 322, 19.4, 635, 50.1, 49.9, 1.3, 19.7,15.9 +NA,NA,a-curv-i5,2016-17,Billerica - Parker,00310015, 212, 20.5, 493, 44.4, 55.6, 0.8, 20.1,19.5 +NA,NA,a-curv-i5,2016-17,Billerica - Thomas Ditson,00310005, 266, 18.1, 546, 50.7, 49.3, 2.9, 17.2,17.2 +NA,NA,a-curv-i5,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 787, 17.3," 1,209", 51.9, 48.1, 0.2, 8.9,9.6 +NA,NA,a-curv-i5,2016-17,Blackstone-Millville - A F Maloney,06220015, 122, 22.8, 297, 52.5, 47.5, 4.7, 16.8,19.2 +NA,NA,a-curv-i5,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 193, 15.4, 442, 52.3, 47.7, 1.1, 12.0,17.6 +NA,NA,a-curv-i5,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 270, 19.2, 443, 50.8, 49.2, 2.7, 12.0,17.6 +NA,NA,a-curv-i5,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 126, 21.5, 302, 44.4, 55.6, 10.3, 15.6,25.2 +NA,NA,a-curv-i5,2016-17,Blackstone-Millville - Millville Elementary,06220010, 107, 19.8, 290, 44.1, 55.9, 2.4, 25.5,22.8 +NA,NA,a-curv-i5,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 434, 14.7, 856, 44.6, 55.4, 0.2, 25.4,21.7 +NA,NA,a-curv-i5,2016-17,Boston - Another Course To College,00350541, 124, 14.6, 231, 51.1, 48.9, 14.7, 19.9,61 +NA,NA,a-curv-i5,2016-17,Boston - Baldwin Early Learning Center,00350003, 28, 15.2, 179, 38.0, 62.0, 59.2, 26.8,27.4 +NA,NA,a-curv-i5,2016-17,Boston - Beethoven,00350021, 150, 18.0, 353, 48.2, 51.8, 24.9, 18.1,41.4 +NA,NA,a-curv-i5,2016-17,Boston - Blackstone,00350390, 359, 17.5, 639, 47.6, 52.4, 42.9, 24.7,70.9 +NA,NA,a-curv-i5,2016-17,Boston - Boston Adult Academy,00350548, 121, 13.1, 225, 52.0, 48.0, 71.6, 6.2,32.9 +NA,NA,a-curv-i5,2016-17,Boston - Boston Arts Academy,00350546, 334, 14.6, 445, 63.6, 36.4, 3.8, 14.4,42.7 +6.321739130434783,5,a-curv-i5,2016-17,Boston - Boston Collaborative High School,00350755, 92, 13.9, 296, 47.0, 53.0, 10.1, 14.5,60.8,193 +NA,NA,a-curv-i5,2016-17,Boston - Boston Community Leadership Academy,00350558, 175, 16.4, 491, 48.7, 51.3, 22.8, 21.4,54.4 +7.069538461538461,5,a-curv-i5,2016-17,Boston - Boston International High School,00350507, 325, 14.3, 532, 45.5, 54.5, 85.5, 3.6,49.1,378 +NA,NA,a-curv-i5,2016-17,Boston - Boston Latin,00350560, 815, 25.3," 2,397", 54.8, 45.2, 0.0, 2.4,15.4 +NA,NA,a-curv-i5,2016-17,Boston - Boston Latin Academy,00350545, 690, 18.1," 1,687", 57.9, 42.1, 0.1, 3.9,30.9 +NA,NA,a-curv-i5,2016-17,Boston - Boston Teachers Union School,00350012, 136, 17.9, 309, 49.2, 50.8, 13.9, 24.6,40.8 +NA,NA,a-curv-i5,2016-17,Boston - Brighton High,00350505, 309, 15.8, 805, 40.2, 59.8, 41.0, 20.6,60.9 +NA,NA,a-curv-i5,2016-17,Boston - Carter Developmental Center,00350036, 2, 29.0, 29, 37.9, 62.1, 31.0, 96.6,86.2 +NA,NA,a-curv-i5,2016-17,Boston - Charles H Taylor,00350054, 333, 17.0, 561, 48.0, 52.0, 35.1, 15.2,68.8 +NA,NA,a-curv-i5,2016-17,Boston - Charles Sumner,00350052, 304, 18.0, 567, 47.4, 52.6, 39.9, 25.0,55.2 +NA,NA,a-curv-i5,2016-17,Boston - Charlestown High,00350515, 518, 14.2, 942, 41.6, 58.4, 43.4, 23.7,59.1 +NA,NA,a-curv-i5,2016-17,Boston - Clarence R Edwards Middle,00350430, 257, 17.6, 357, 45.9, 54.1, 42.9, 31.9,58.5 +NA,NA,a-curv-i5,2016-17,Boston - Community Academy,00350518, 50, 6.7, 73, 31.5, 68.5, 9.6, 24.7,72.6 +NA,NA,a-curv-i5,2016-17,Boston - Community Academy of Science and Health,00350581, 172, 15.5, 414, 46.9, 53.1, 34.5, 30.0,66.2 +NA,NA,a-curv-i5,2016-17,Boston - Curley K-8 School,00350020, 373, 18.0," 1,012", 49.8, 50.2, 35.0, 27.0,50.9 +NA,NA,a-curv-i5,2016-17,Boston - Curtis Guild,00350062, 178, 15.1, 334, 47.0, 53.0, 59.9, 22.2,58.1 +NA,NA,a-curv-i5,2016-17,Boston - Dante Alighieri Montessori School,00350066, 91, 6.0, 92, 52.2, 47.8, 50.0, 13.0,34.8 +NA,NA,a-curv-i5,2016-17,Boston - David A Ellis,00350072, 184, 16.9, 455, 48.6, 51.4, 36.7, 14.7,73.4 +NA,NA,a-curv-i5,2016-17,Boston - Dearborn,00350074, 181, 14.4, 329, 47.4, 52.6, 49.5, 12.2,54.7 +NA,NA,a-curv-i5,2016-17,Boston - Dennis C Haley,00350077, 194, 22.5, 484, 50.2, 49.8, 17.4, 33.1,41.9 +NA,NA,a-curv-i5,2016-17,Boston - Donald Mckay,00350080, 274, 22.0, 729, 49.2, 50.8, 55.3, 12.5,53.5 +NA,NA,a-curv-i5,2016-17,Boston - Dorchester Academy,00350651, 182, 8.6, 122, 50.8, 49.2, 10.7, 23.8,70.5 +NA,NA,a-curv-i5,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 58, 18.1, 207, 46.4, 53.6, 57.0, 21.7,61.8 +NA,NA,a-curv-i5,2016-17,Boston - Dr. William Henderson Lower,00350266, 44, 23.3, 224, 53.6, 46.4, 22.3, 27.7,36.2 +NA,NA,a-curv-i5,2016-17,Boston - Dr. William Henderson Upper,00350426, 284, 17.0, 552, 46.2, 53.8, 11.1, 39.9,54.2 +NA,NA,a-curv-i5,2016-17,Boston - ELC - West Zone,00350006, 27, 17.2, 124, 46.8, 53.2, 32.3, 27.4,50.8 +NA,NA,a-curv-i5,2016-17,Boston - East Boston Early Childhood Center,00350009, 48, 15.7, 185, 49.2, 50.8, 51.9, 23.8,48.6 +NA,NA,a-curv-i5,2016-17,Boston - East Boston High,00350530, 475, 16.8," 1,516", 43.9, 56.1, 44.2, 15.4,48.3 +NA,NA,a-curv-i5,2016-17,Boston - Edison K-8,00350375, 369, 14.6, 728, 45.9, 54.1, 50.4, 20.9,60 +NA,NA,a-curv-i5,2016-17,Boston - Edward Everett,00350088, 88, 20.6, 289, 48.4, 51.6, 30.4, 18.0,59.9 +NA,NA,a-curv-i5,2016-17,Boston - Eliot Elementary,00350096, 305, 18.3, 566, 48.8, 51.2, 7.2, 20.1,20 +NA,NA,a-curv-i5,2016-17,Boston - Ellis Mendell,00350100, 83, 19.0, 256, 47.7, 52.3, 24.2, 24.2,37.9 +6.181818181818182,5,a-curv-i5,2016-17,Boston - Excel High School,00350522, 231, 16.8, 511, 39.5, 60.5, 30.7, 23.1,61.4,525 +5.834586466165414,5,a-curv-i5,2016-17,Boston - Fenway High School,00350540, 133, 19.2, 356, 53.1, 46.9, 19.7, 18.8,48.3,360 +NA,NA,a-curv-i5,2016-17,Boston - Franklin D Roosevelt,00350116, 143, 22.0, 476, 49.2, 50.8, 15.5, 26.9,43.7 +NA,NA,a-curv-i5,2016-17,Boston - Gardner Pilot Academy,00350326, 145, 18.9, 409, 46.9, 53.1, 44.3, 24.2,47.7 +NA,NA,a-curv-i5,2016-17,Boston - George H Conley,00350122, 136, 14.2, 240, 42.5, 57.5, 23.8, 36.3,42.5 +4.470588235294118,4.47,a-curv-i5,2016-17,Boston - Greater Egleston Community High School,00350543, 51, 16.1, 235, 46.4, 53.6, 22.6, 7.7,53.6,225 +NA,NA,a-curv-i5,2016-17,Boston - Harvard-Kent,00350200, 254, 17.0, 543, 42.5, 57.5, 43.8, 25.0,72.2 +NA,NA,a-curv-i5,2016-17,Boston - Haynes Early Education Center,00350010, 71, 16.9, 196, 42.9, 57.1, 45.9, 16.8,67.9 +NA,NA,a-curv-i5,2016-17,Boston - Henry Grew,00350135, 102, 18.8, 270, 51.9, 48.1, 18.5, 5.9,62.6 +NA,NA,a-curv-i5,2016-17,Boston - Higginson,00350015, 73, 16.6, 195, 44.6, 55.4, 37.9, 27.7,77.4 +NA,NA,a-curv-i5,2016-17,Boston - Higginson/Lewis K-8,00350377, 174, 15.3, 344, 46.5, 53.5, 18.9, 30.2,77.6 +NA,NA,a-curv-i5,2016-17,Boston - Horace Mann School for the Deaf,00350750, 113, 5.9, 91, 39.6, 60.4, 70.3, 86.8,74.7 +NA,NA,a-curv-i5,2016-17,Boston - Hugh Roe O'Donnell,00350141, 83, 21.3, 281, 50.5, 49.5, 72.6, 12.5,54.4 +NA,NA,a-curv-i5,2016-17,Boston - Jackson Mann,00350013, 446, 16.8, 800, 43.4, 56.6, 36.6, 24.0,63.8 +NA,NA,a-curv-i5,2016-17,Boston - James Condon Elementary,00350146, 515, 19.5, 883, 48.8, 51.2, 33.6, 22.3,64.4 +NA,NA,a-curv-i5,2016-17,Boston - James J Chittick,00350154, 154, 15.4, 311, 43.7, 56.3, 18.0, 30.9,65.9 +NA,NA,a-curv-i5,2016-17,Boston - James Otis,00350156, 185, 20.8, 410, 50.0, 50.0, 64.4, 11.5,49 +NA,NA,a-curv-i5,2016-17,Boston - James P Timilty Middle,00350485, 163, 17.5, 388, 47.9, 52.1, 38.7, 20.9,67 +NA,NA,a-curv-i5,2016-17,Boston - James W Hennigan,00350153, 359, 15.9, 641, 49.9, 50.1, 48.4, 22.0,69 +NA,NA,a-curv-i5,2016-17,Boston - Jeremiah E Burke High,00350525, 166, 17.7, 544, 48.2, 51.8, 34.9, 10.5,56.8 +NA,NA,a-curv-i5,2016-17,Boston - John D Philbrick,00350172, 63, 21.7, 189, 46.0, 54.0, 18.0, 13.2,48.1 +NA,NA,a-curv-i5,2016-17,Boston - John F Kennedy,00350166, 175, 16.5, 409, 51.1, 48.9, 48.2, 16.6,69.4 +NA,NA,a-curv-i5,2016-17,Boston - John W McCormack,00350179, 230, 19.0, 508, 48.2, 51.8, 35.0, 25.8,69.7 +NA,NA,a-curv-i5,2016-17,Boston - John Winthrop,00350180, 152, 16.2, 336, 54.8, 45.2, 23.5, 16.4,71.1 +NA,NA,a-curv-i5,2016-17,Boston - Joseph J Hurley,00350182, 129, 20.0, 361, 49.3, 50.4, 50.4, 14.7,49.9 +NA,NA,a-curv-i5,2016-17,Boston - Joseph Lee,00350183, 203, 20.2, 678, 45.6, 54.4, 17.3, 37.5,64.3 +NA,NA,a-curv-i5,2016-17,Boston - Joseph P Manning,00350184, 89, 14.6, 171, 46.8, 53.2, 8.2, 31.0,32.7 +NA,NA,a-curv-i5,2016-17,Boston - Joseph P Tynan,00350181, 173, 10.8, 268, 39.9, 60.1, 26.9, 40.7,76.1 +NA,NA,a-curv-i5,2016-17,Boston - Josiah Quincy,00350286, 515, 18.2, 874, 49.5, 50.5, 54.5, 15.0,52.3 +NA,NA,a-curv-i5,2016-17,Boston - Joyce Kilmer,00350190, 175, 19.2, 469, 48.4, 51.6, 11.1, 23.2,24.3 +NA,NA,a-curv-i5,2016-17,Boston - King K-8,00350376, 222, 20.8, 538, 48.1, 51.9, 22.5, 19.7,74.7 +NA,NA,a-curv-i5,2016-17,Boston - Lee Academy,00350001, 82, 15.6, 207, 45.9, 54.1, 24.2, 27.1,57 +NA,NA,a-curv-i5,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 251, 16.6, 616, 46.4, 53.6, 45.3, 26.6,67.2 +NA,NA,a-curv-i5,2016-17,Boston - Lyndon,00350262, 226, 18.9, 586, 48.1, 51.9, 17.4, 18.8,29.5 +NA,NA,a-curv-i5,2016-17,Boston - Lyon K-8,00350004, 92, 15.3, 139, 46.8, 53.2, 7.2, 33.8,38.1 +NA,NA,a-curv-i5,2016-17,Boston - Lyon Upper 9-12,00350655, 73, 12.0, 126, 48.4, 51.6, 11.9, 42.1,54.8 +NA,NA,a-curv-i5,2016-17,Boston - Madison Park High,00350537, 424, 12.1, 841, 43.4, 56.6, 31.2, 32.3,66.5 +NA,NA,a-curv-i5,2016-17,Boston - Manassah E Bradley,00350215, 91, 20.7, 299, 48.5, 51.5, 31.8, 17.1,47.5 +NA,NA,a-curv-i5,2016-17,Boston - Margarita Muniz Academy,00350549, 126, 16.0, 276, 59.1, 40.9, 50.4, 11.2,61.2 +NA,NA,a-curv-i5,2016-17,Boston - Mario Umana Academy,00350656, 368, 19.7," 1,001", 45.9, 54.1, 55.7, 15.8,56 +NA,NA,a-curv-i5,2016-17,Boston - Mather,00350227, 278, 20.6, 659, 51.0, 49.0, 42.3, 15.3,58.3 +NA,NA,a-curv-i5,2016-17,Boston - Mattahunt,00350226, 338, 15.7, 615, 48.8, 51.2, 28.5, 23.7,64.9 +NA,NA,a-curv-i5,2016-17,Boston - Maurice J Tobin,00350229, 220, 21.2, 481, 50.1, 49.9, 32.4, 13.5,73.6 +NA,NA,a-curv-i5,2016-17,Boston - Michael J Perkins,00350231, 94, 18.1, 224, 56.7, 43.3, 17.4, 12.9,79.9 +NA,NA,a-curv-i5,2016-17,Boston - Mildred Avenue K-8,00350378, 221, 15.9, 528, 49.2, 50.8, 27.5, 21.2,65.2 +NA,NA,a-curv-i5,2016-17,Boston - Mission Hill School,00350382, 104, 14.1, 231, 41.1, 58.4, 14.3, 34.6,43.7 +NA,NA,a-curv-i5,2016-17,Boston - Mozart,00350237, 79, 13.8, 183, 42.6, 57.4, 19.1, 19.7,36.1 +NA,NA,a-curv-i5,2016-17,Boston - Nathan Hale,00350243, 80, 22.0, 194, 54.6, 45.4, 12.9, 13.4,60.3 +6.485207100591717,5,a-curv-i5,2016-17,Boston - New Mission High School,00350542, 169, 16.0, 319, 49.5, 50.5, 5.6, 13.5,49.2,320 +NA,NA,a-curv-i5,2016-17,Boston - O W Holmes,00350138, 136, 20.2, 391, 44.8, 55.2, 14.8, 32.0,68.3 +NA,NA,a-curv-i5,2016-17,Boston - O'Bryant School Math/Science,00350575, 405, 22.2," 1,410", 56.1, 43.9, 1.1, 3.5,43.4 +NA,NA,a-curv-i5,2016-17,Boston - Oliver Hazard Perry,00350255, 109, 17.6, 245, 44.5, 55.5, 18.4, 26.1,45.7 +NA,NA,a-curv-i5,2016-17,Boston - Orchard Gardens,00350257, 437, 18.4, 925, 48.9, 51.1, 51.7, 13.2,63.5 +NA,NA,a-curv-i5,2016-17,Boston - Patrick J Kennedy,00350264, 98, 20.4, 317, 46.7, 53.3, 71.0, 15.1,53 +NA,NA,a-curv-i5,2016-17,Boston - Paul A Dever,00350268, 263, 14.6, 437, 48.1, 51.9, 47.8, 15.1,75.7 +NA,NA,a-curv-i5,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 61, 20.8, 223, 46.6, 53.4, 18.8, 16.6,70 +NA,NA,a-curv-i5,2016-17,Boston - Phineas Bates,00350278, 107, 19.2, 287, 49.1, 50.9, 24.7, 20.6,47.4 +NA,NA,a-curv-i5,2016-17,Boston - Quincy Upper School,00350565, 229, 19.7, 503, 44.1, 55.9, 11.3, 15.3,58.8 +NA,NA,a-curv-i5,2016-17,Boston - Rafael Hernandez,00350691, 169, 21.9, 408, 55.1, 44.9, 57.8, 8.3,57.6 +NA,NA,a-curv-i5,2016-17,Boston - Richard J Murphy,00350240, 432, 21.2, 995, 46.1, 53.9, 23.2, 15.1,43.1 +NA,NA,a-curv-i5,2016-17,Boston - Roger Clap,00350298, 56, 20.6, 186, 54.8, 45.2, 28.5, 19.9,52.7 +NA,NA,a-curv-i5,2016-17,Boston - Samuel Adams,00350302, 132, 14.1, 299, 47.2, 52.8, 70.6, 20.4,51.8 +NA,NA,a-curv-i5,2016-17,Boston - Samuel W Mason,00350304, 85, 18.4, 257, 43.2, 56.8, 24.5, 31.9,60.7 +NA,NA,a-curv-i5,2016-17,Boston - Sarah Greenwood,00350308, 244, 18.9, 460, 49.1, 50.9, 44.6, 23.7,68.9 +NA,NA,a-curv-i5,2016-17,Boston - Snowden International School at Copley,00350690, 173, 18.3, 420, 51.7, 48.3, 13.3, 21.4,60.7 +NA,NA,a-curv-i5,2016-17,Boston - TechBoston Academy,00350657, 604, 17.1," 1,024", 44.9, 55.1, 21.9, 20.7,65.2 +NA,NA,a-curv-i5,2016-17,Boston - The English High,00350535, 242, 13.4, 586, 43.5, 56.5, 41.6, 18.6,58.7 +NA,NA,a-curv-i5,2016-17,Boston - Thomas J Kenny,00350328, 134, 18.9, 361, 47.6, 52.4, 33.2, 18.3,60.1 +NA,NA,a-curv-i5,2016-17,Boston - UP Academy Holland,00350167, 260, 21.5, 745, 49.1, 50.9, 33.7, 15.8,69.7 +NA,NA,a-curv-i5,2016-17,Boston - Urban Science Academy,00350579, 379, 12.5, 454, 41.2, 58.8, 13.0, 23.1,53.1 +NA,NA,a-curv-i5,2016-17,Boston - Warren-Prescott,00350346, 245, 19.1, 611, 46.2, 53.8, 12.1, 16.4,40.9 +NA,NA,a-curv-i5,2016-17,Boston - Washington Irving Middle,00350445, 180, 15.6, 358, 46.4, 53.6, 18.4, 27.1,58.9 +NA,NA,a-curv-i5,2016-17,Boston - West Roxbury Academy,00350658, 282, 14.0, 553, 47.0, 53.0, 26.6, 18.6,55.3 +NA,NA,a-curv-i5,2016-17,Boston - William E Russell,00350366, 147, 19.5, 402, 49.5, 50.5, 56.0, 10.9,59 +NA,NA,a-curv-i5,2016-17,Boston - William Ellery Channing,00350360, 90, 19.1, 260, 51.2, 48.8, 20.4, 9.6,53.1 +NA,NA,a-curv-i5,2016-17,Boston - William H Ohrenberger,00350258, 346, 19.1, 646, 45.5, 54.5, 25.5, 19.7,46.4 +NA,NA,a-curv-i5,2016-17,Boston - William McKinley,00350363, 544, 7.5, 446, 27.4, 72.6, 20.4, 91.9,75.3 +NA,NA,a-curv-i5,2016-17,Boston - William Monroe Trotter,00350370, 168, 21.6, 547, 49.0, 51.0, 13.7, 17.9,75.9 +NA,NA,a-curv-i5,2016-17,Boston - Winship Elementary,00350374, 116, 17.7, 263, 47.5, 52.5, 28.5, 16.0,47.1 +NA,NA,a-curv-i5,2016-17,Boston - Young Achievers,00350380, 229, 18.0, 586, 48.5, 51.5, 28.8, 24.1,65.4 +NA,NA,a-curv-i5,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 272, 20.7, 684, 52.0, 48.0, 3.2, 17.7,26.9 +NA,NA,a-curv-i5,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 287, 18.8, 498, 56.0, 44.0, 9.6, 25.3,51.2 +NA,NA,a-curv-i5,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 332, 14.4, 462, 49.6, 50.4, 7.1, 29.4,60.4 +NA,NA,a-curv-i5,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 87, 33.4, 418, 48.6, 51.4, 10.0, 23.9,38 +NA,NA,a-curv-i5,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 242, 18.6, 941, 50.9, 49.1, 6.9, 14.3,46.2 +6.599196787148594,5,a-curv-i5,2016-17,Bourne - Bourne High School,00360505, 249, 16.5, 456, 50.0, 50.0, 0.2, 16.4,23,436 +NA,NA,a-curv-i5,2016-17,Bourne - Bourne Middle School,00360325, 413, 19.2, 720, 50.6, 49.4, 0.6, 13.8,21.4 +NA,NA,a-curv-i5,2016-17,Bourne - Bournedale Elementary School,00360005, 237, 16.3, 446, 47.1, 52.9, 0.2, 20.6,28.7 +NA,NA,a-curv-i5,2016-17,Bourne - Peebles Elementary School,00360010, 197, 19.2, 353, 49.9, 50.1, 1.4, 15.3,25.8 +NA,NA,a-curv-i5,2016-17,Boxford - Harry Lee Cole,00380005, 116, 13.2, 324, 44.4, 55.6, 0.3, 21.3,4 +NA,NA,a-curv-i5,2016-17,Boxford - Spofford Pond,00380013, 204, 16.4, 426, 48.8, 51.2, 0.9, 21.4,4.2 +NA,NA,a-curv-i5,2016-17,Boylston - Boylston Elementary,00390005, 156, 19.5, 311, 50.2, 49.8, 2.3, 14.5,9 +NA,NA,a-curv-i5,2016-17,Braintree - Archie T Morrison,00400033, 206, 20.6, 431, 51.0, 49.0, 10.0, 19.0,28.3 +NA,NA,a-curv-i5,2016-17,Braintree - Braintree High,00400505, 897, 15.9," 1,781", 50.0, 50.0, 3.4, 18.4,16.1 +NA,NA,a-curv-i5,2016-17,Braintree - Donald Ross,00400050, 165, 17.8, 282, 46.5, 53.5, 14.9, 15.6,29.1 +NA,NA,a-curv-i5,2016-17,Braintree - East Middle School,00400305, 407, 16.9, 734, 48.4, 51.5, 2.2, 19.9,19.9 +NA,NA,a-curv-i5,2016-17,Braintree - Highlands,00400015, 218, 20.1, 420, 51.0, 49.0, 3.1, 20.7,10.2 +NA,NA,a-curv-i5,2016-17,Braintree - Hollis,00400005, 302, 14.8, 434, 47.7, 52.3, 5.5, 31.1,12.4 +NA,NA,a-curv-i5,2016-17,Braintree - Liberty,00400025, 218, 21.8, 452, 52.2, 47.8, 8.8, 16.8,10.4 +NA,NA,a-curv-i5,2016-17,Braintree - Mary E Flaherty School,00400020, 182, 19.9, 370, 50.8, 49.2, 6.2, 19.7,16.2 +NA,NA,a-curv-i5,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 120, 18.2, 273, 47.6, 52.4, 9.2, 11.7,19.8 +NA,NA,a-curv-i5,2016-17,Braintree - South Middle School,00400310, 339, 18.6, 682, 51.5, 48.5, 2.6, 19.9,12.8 +NA,NA,a-curv-i5,2016-17,Brewster - Eddy Elementary,00410010, 146, 18.6, 239, 50.2, 49.8, 2.9, 20.5,22.2 +NA,NA,a-curv-i5,2016-17,Brewster - Stony Brook Elementary,00410005, 143, 17.5, 266, 51.1, 48.9, 2.6, 18.8,25.9 +NA,NA,a-curv-i5,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 63, 18.2, 270, 53.0, 47.0, 25.6, 22.2,56.3 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 152, 22.8, 508, 45.7, 54.3, 1.2, 12.8,11 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 608, 17.2," 1,457", 50.4, 49.6, 0.8, 9.3,10.8 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 147, 24.4, 511, 46.8, 53.2, 1.0, 13.9,15.9 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 106, 22.0, 324, 50.9, 49.1, 3.4, 12.7,20.7 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 315, 20.8," 1,046", 46.7, 53.3, 1.6, 21.0,17.2 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 182, 22.8, 690, 50.6, 49.4, 0.6, 13.3,14.9 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 17, 5.8, 20, 45.0, 55.0, 0.0, 100.0,45 +NA,NA,a-curv-i5,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 241, 23.0, 802, 46.8, 53.2, 0.9, 17.1,17.3 +NA,NA,a-curv-i5,2016-17,Brimfield - Brimfield Elementary,00430005, 93, 15.6, 291, 50.9, 49.1, 0.0, 16.5,16.5 +NA,NA,a-curv-i5,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 321, 17.3, 452, 71.5, 28.3, 0.0, 11.7,17.5 +NA,NA,a-curv-i5,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 991, 17.7," 1,303", 42.1, 57.7, 0.2, 18.9,24.3 +NA,NA,a-curv-i5,2016-17,Brockton - Ashfield Middle School,00440421, 248, 19.0, 521, 48.4, 51.6, 22.1, 16.9,47.6 +NA,NA,a-curv-i5,2016-17,Brockton - Barrett Russell School,00440007, 104, 17.4, 226, 47.3, 52.7, 14.6, 12.4,66.8 +6.509473684210526,5,a-curv-i5,2016-17,Brockton - Brockton Champion High School,00440515, 95, 6.1, 131, 37.4, 62.6, 8.4, 45.0,67.2,177 +NA,NA,a-curv-i5,2016-17,Brockton - Brockton High,00440505," 1,849", 19.3," 4,314", 49.5, 50.5, 18.9, 12.0,43.9 +NA,NA,a-curv-i5,2016-17,Brockton - Brookfield,00440010, 247, 21.9, 652, 47.5, 52.5, 36.8, 11.7,50.6 +NA,NA,a-curv-i5,2016-17,Brockton - Downey,00440110, 357, 15.5, 664, 44.7, 55.3, 8.9, 30.6,61 +NA,NA,a-curv-i5,2016-17,Brockton - Dr W Arnone Community School,00440001, 333, 22.8, 786, 45.2, 54.8, 12.2, 21.0,60.1 +NA,NA,a-curv-i5,2016-17,Brockton - East Middle School,00440405, 309, 19.6, 568, 45.1, 54.9, 39.1, 20.8,58.3 +NA,NA,a-curv-i5,2016-17,Brockton - Edgar B Davis,00440023, 468, 22.9," 1,035", 50.9, 49.1, 21.6, 8.7,54.8 +NA,NA,a-curv-i5,2016-17,Brockton - Edison Academy,00440520, 165, 11.4, 235, 48.1, 51.9, 55.7, 10.2,46.8 +NA,NA,a-curv-i5,2016-17,Brockton - Frederick Douglass Academy,00440080, 69, 8.7, 83, 27.7, 72.3, 9.6, 30.1,63.9 +NA,NA,a-curv-i5,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 52, 10.3, 364, 38.2, 61.8, 1.1, 61.0,51.4 +NA,NA,a-curv-i5,2016-17,Brockton - Goddard Alternative School,00440400, 116, 6.3, 58, 32.8, 67.2, 17.2, 98.3,79.3 +NA,NA,a-curv-i5,2016-17,Brockton - Hancock,00440045, 223, 24.6, 659, 50.2, 49.8, 8.5, 6.5,44 +NA,NA,a-curv-i5,2016-17,Brockton - Huntington,00440055, 199, 24.1, 569, 49.0, 51.0, 37.3, 7.6,59.8 +NA,NA,a-curv-i5,2016-17,Brockton - John F Kennedy,00440017, 249, 20.7, 618, 49.8, 50.2, 20.6, 12.6,44.2 +NA,NA,a-curv-i5,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 476, 23.7, 712, 52.2, 47.8, 13.5, 11.9,42.1 +NA,NA,a-curv-i5,2016-17,Brockton - Louis F Angelo Elementary,00440065, 377, 20.2, 906, 48.6, 51.4, 23.2, 19.3,53 +NA,NA,a-curv-i5,2016-17,Brockton - Manthala George Jr. School,00440003, 356, 21.0, 887, 49.0, 51.0, 34.2, 19.1,53.9 +NA,NA,a-curv-i5,2016-17,Brockton - Mary E. Baker School,00440002, 340, 19.2, 780, 48.2, 51.8, 19.9, 16.2,47.1 +NA,NA,a-curv-i5,2016-17,Brockton - North Middle School,00440410, 383, 19.1, 579, 46.6, 53.4, 34.5, 15.4,57.5 +NA,NA,a-curv-i5,2016-17,Brockton - Oscar F Raymond,00440078, 292, 24.4, 866, 48.2, 51.8, 34.3, 9.4,61.1 +NA,NA,a-curv-i5,2016-17,Brockton - South Middle School,00440415, 238, 24.4, 526, 47.3, 52.7, 13.7, 16.9,46.2 +NA,NA,a-curv-i5,2016-17,Brockton - West Middle School,00440420, 379, 20.4, 650, 50.0, 50.0, 7.8, 18.3,45.5 +NA,NA,a-curv-i5,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 778, 19.0," 1,611", 51.2, 48.8, 7.0, 9.5,43.4 +NA,NA,a-curv-i5,2016-17,Brookfield - Brookfield Elementary,00450005, 80, 20.8, 329, 51.1, 48.9, 0.3, 13.1,27.1 +NA,NA,a-curv-i5,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 15.0, 75, 50.7, 49.3, 20.0, 21.3,6.7 +NA,NA,a-curv-i5,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 6, 13.2, 79, 39.2, 60.8, 17.7, 39.2,10.1 +NA,NA,a-curv-i5,2016-17,Brookline - Brookline High,00460505," 1,123", 15.1," 2,054", 49.5, 50.5, 4.0, 16.3,11.4 +NA,NA,a-curv-i5,2016-17,Brookline - Edith C Baker,00460005, 499, 18.1, 786, 49.1, 50.9, 14.5, 14.1,7.3 +NA,NA,a-curv-i5,2016-17,Brookline - Edward Devotion,00460015, 544, 17.3, 817, 47.9, 52.1, 15.9, 16.3,11 +NA,NA,a-curv-i5,2016-17,Brookline - Heath,00460025, 323, 19.3, 589, 50.4, 49.4, 5.8, 9.3,4.1 +NA,NA,a-curv-i5,2016-17,Brookline - John D Runkle,00460045, 357, 19.9, 625, 48.0, 52.0, 8.8, 20.6,5.9 +NA,NA,a-curv-i5,2016-17,Brookline - Lawrence,00460030, 426, 19.6, 739, 47.6, 52.4, 23.5, 13.9,9.5 +NA,NA,a-curv-i5,2016-17,Brookline - Michael Driscoll,00460020, 333, 20.9, 624, 48.9, 51.1, 11.4, 15.2,7.4 +NA,NA,a-curv-i5,2016-17,Brookline - Pierce,00460040, 495, 20.2, 891, 51.2, 48.8, 17.5, 9.5,9 +NA,NA,a-curv-i5,2016-17,Brookline - The Lynch Center,00460060, 6, 13.3, 80, 38.8, 61.3, 12.5, 32.5,15 +NA,NA,a-curv-i5,2016-17,Brookline - William H Lincoln,00460035, 393, 17.9, 602, 50.2, 49.8, 16.6, 19.1,13 +NA,NA,a-curv-i5,2016-17,Burlington - Burlington High,00480505, 559, 14.8," 1,131", 47.9, 52.1, 1.9, 10.5,9.2 +NA,NA,a-curv-i5,2016-17,Burlington - Fox Hill,00480007, 165, 17.0, 388, 46.9, 53.1, 6.7, 12.9,7.7 +NA,NA,a-curv-i5,2016-17,Burlington - Francis Wyman Elementary,00480035, 238, 16.3, 535, 51.2, 48.8, 7.7, 11.6,12 +NA,NA,a-curv-i5,2016-17,Burlington - Marshall Simonds Middle,00480303, 721, 20.6, 834, 47.2, 52.6, 1.7, 11.4,10.1 +NA,NA,a-curv-i5,2016-17,Burlington - Memorial,00480015, 179, 16.1, 388, 49.5, 50.5, 6.4, 14.4,11.1 +NA,NA,a-curv-i5,2016-17,Burlington - Pine Glen Elementary,00480020, 145, 14.9, 289, 54.3, 45.7, 13.8, 11.4,11.4 +NA,NA,a-curv-i5,2016-17,Cambridge - Amigos School,00490006, 199, 16.9, 374, 56.1, 43.9, 5.1, 11.5,17.9 +NA,NA,a-curv-i5,2016-17,Cambridge - Cambridge Rindge and Latin,00490506," 1,037", 15.5," 2,027", 48.2, 51.8, 6.4, 16.0,27.9 +NA,NA,a-curv-i5,2016-17,Cambridge - Cambridge Street Upper School,00490305, 144, 18.9, 271, 49.8, 50.2, 4.1, 23.2,32.8 +NA,NA,a-curv-i5,2016-17,Cambridge - Cambridgeport,00490007, 127, 16.8, 307, 45.6, 54.4, 4.9, 19.9,25.4 +NA,NA,a-curv-i5,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 217, 11.6, 277, 48.0, 52.0, 13.0, 28.9,42.6 +NA,NA,a-curv-i5,2016-17,Cambridge - Graham and Parks,00490080, 183, 15.0, 404, 49.3, 50.7, 39.1, 19.6,23.8 +NA,NA,a-curv-i5,2016-17,Cambridge - Haggerty,00490020, 127, 13.6, 248, 50.0, 50.0, 7.7, 20.2,24.6 +NA,NA,a-curv-i5,2016-17,Cambridge - John M Tobin,00490065, 218, 9.0, 289, 49.1, 50.9, 2.4, 22.5,26.6 +NA,NA,a-curv-i5,2016-17,Cambridge - Kennedy-Longfellow,00490040, 145, 14.3, 285, 44.9, 55.1, 23.9, 19.6,33.3 +NA,NA,a-curv-i5,2016-17,Cambridge - King Open,00490035, 211, 12.1, 326, 45.7, 54.3, 6.7, 28.5,26.4 +NA,NA,a-curv-i5,2016-17,Cambridge - Maria L. Baldwin,00490005, 179, 15.2, 349, 51.9, 48.1, 4.6, 22.6,21.2 +NA,NA,a-curv-i5,2016-17,Cambridge - Martin Luther King Jr.,00490030, 178, 14.2, 298, 49.7, 50.3, 7.7, 16.4,26.2 +NA,NA,a-curv-i5,2016-17,Cambridge - Morse,00490045, 185, 13.3, 318, 45.3, 54.7, 6.3, 33.6,37.1 +NA,NA,a-curv-i5,2016-17,Cambridge - Peabody,00490050, 121, 19.5, 322, 52.8, 47.2, 4.7, 26.4,22.4 +NA,NA,a-curv-i5,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 150, 19.0, 273, 53.1, 46.9, 2.2, 24.2,42.1 +NA,NA,a-curv-i5,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 139, 21.1, 281, 47.0, 53.0, 1.4, 26.3,25.6 +NA,NA,a-curv-i5,2016-17,Cambridge - Vassal Lane Upper School,00490320, 153, 17.4, 282, 50.4, 49.6, 13.1, 20.9,29.8 +NA,NA,a-curv-i5,2016-17,Canton - Canton High,00500505, 582, 16.8, 960, 50.2, 49.6, 1.1, 7.7,11.5 +NA,NA,a-curv-i5,2016-17,Canton - Dean S Luce,00500020, 370, 18.2, 492, 51.2, 48.8, 5.1, 10.8,16.1 +NA,NA,a-curv-i5,2016-17,Canton - John F Kennedy,00500017, 338, 20.5, 507, 46.5, 53.5, 3.2, 13.4,9.3 +NA,NA,a-curv-i5,2016-17,Canton - Lt Peter M Hansen,00500012, 347, 19.4, 496, 53.0, 47.0, 3.0, 11.1,13.1 +NA,NA,a-curv-i5,2016-17,Canton - Rodman Early Childhood Center,00500010, 24, 13.0, 104, 39.4, 60.6, 0.0, 43.3,16.3 +NA,NA,a-curv-i5,2016-17,Canton - Wm H Galvin Middle,00500305, 522, 18.1, 789, 50.7, 49.3, 1.4, 13.9,15.2 +NA,NA,a-curv-i5,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 77, 30.8, 243, 57.6, 42.4, 0.8, 14.0,12.3 +NA,NA,a-curv-i5,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 415, 14.4, 640, 38.3, 61.7, 2.8, 24.1,34.1 +NA,NA,a-curv-i5,2016-17,Carlisle - Carlisle School,00510025, 218, 17.7, 590, 44.9, 55.1, 3.4, 15.4,2.5 +NA,NA,a-curv-i5,2016-17,Carver - Carver Elementary School,00520015, 423, 19.2, 796, 49.0, 51.0, 0.8, 20.9,22.5 +6.437383177570093,5,a-curv-i5,2016-17,Carver - Carver Middle/High School,00520405, 428, 14.8, 826, 49.5, 50.5, 0.4, 20.3,19.1,836 +NA,NA,a-curv-i5,2016-17,Central Berkshire - Becket Washington School,06350005, 52, 17.1, 125, 43.2, 56.8, 0.0, 24.0,24.8 +NA,NA,a-curv-i5,2016-17,Central Berkshire - Craneville,06350025, 163, 20.2, 429, 45.2, 54.8, 1.4, 15.6,35.4 +NA,NA,a-curv-i5,2016-17,Central Berkshire - Kittredge,06350035, 61, 16.6, 133, 48.1, 51.9, 0.0, 15.8,37.6 +NA,NA,a-curv-i5,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 254, 15.9, 399, 47.9, 52.1, 0.5, 15.5,31.6 +NA,NA,a-curv-i5,2016-17,Central Berkshire - Wahconah Regional High,06350505, 315, 15.5, 539, 50.5, 49.5, 0.6, 10.0,20.2 +NA,NA,a-curv-i5,2016-17,Chelmsford - Byam School,00560030, 172, 23.3, 512, 43.4, 56.6, 5.1, 15.0,13.3 +NA,NA,a-curv-i5,2016-17,Chelmsford - Center Elementary School,00560005, 152, 22.3, 448, 50.7, 49.3, 8.7, 16.5,13.8 +NA,NA,a-curv-i5,2016-17,Chelmsford - Charles D Harrington,00560025, 160, 23.2, 486, 44.4, 55.6, 6.0, 14.0,19.1 +NA,NA,a-curv-i5,2016-17,Chelmsford - Chelmsford High,00560505, 762, 16.7," 1,489", 50.9, 49.1, 1.3, 12.9,8.5 +NA,NA,a-curv-i5,2016-17,Chelmsford - Col Moses Parker School,00560305, 417, 16.7, 735, 49.4, 50.6, 2.4, 17.7,12.1 +NA,NA,a-curv-i5,2016-17,Chelmsford - Community Education Center,00560001, 96, 13.8, 163, 42.3, 57.7, 0.0, 48.5,16 +NA,NA,a-curv-i5,2016-17,Chelmsford - McCarthy Middle School,00560310, 517, 16.8, 867, 49.3, 50.7, 2.7, 17.9,10.4 +NA,NA,a-curv-i5,2016-17,Chelmsford - South Row,00560015, 152, 19.8, 394, 44.7, 55.3, 8.1, 10.4,9.9 +NA,NA,a-curv-i5,2016-17,Chelsea - Chelsea High,00570505, 643, 22.8," 1,621", 48.2, 51.8, 35.5, 9.6,46.6 +NA,NA,a-curv-i5,2016-17,Chelsea - Clark Avenue School,00570050, 244, 23.3, 537, 44.9, 55.1, 2.8, 15.6,57.4 +NA,NA,a-curv-i5,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 24, 24.7, 592, 45.9, 54.1, 42.9, 13.2,59.5 +NA,NA,a-curv-i5,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 186, 25.3, 529, 43.3, 56.7, 5.3, 19.7,61.4 +NA,NA,a-curv-i5,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 24, 25.4, 609, 48.3, 51.7, 36.0, 12.0,60.9 +NA,NA,a-curv-i5,2016-17,Chelsea - George F. Kelly Elementary,00570035, 25, 22.5, 562, 49.6, 50.4, 29.0, 14.8,52.8 +NA,NA,a-curv-i5,2016-17,Chelsea - Joseph A. Browne School,00570055, 213, 24.6, 650, 50.3, 49.7, 57.2, 8.0,53.2 +NA,NA,a-curv-i5,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 49, 18.9, 925, 47.6, 52.4, 49.9, 14.1,54.4 +NA,NA,a-curv-i5,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 24, 21.8, 523, 45.5, 54.5, 23.5, 16.8,60.4 +NA,NA,a-curv-i5,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 71, 12.7, 143, 52.4, 47.6, 0.0, 24.5,26.6 +NA,NA,a-curv-i5,2016-17,Chicopee - Barry,00610003, 77, 22.0, 427, 43.1, 56.9, 15.0, 21.1,48 +NA,NA,a-curv-i5,2016-17,Chicopee - Belcher,00610010, 71, 18.7, 268, 44.8, 55.2, 13.4, 19.4,62.3 +NA,NA,a-curv-i5,2016-17,Chicopee - Bellamy Middle,00610305, 469, 18.3, 822, 48.8, 51.2, 4.3, 20.7,53.3 +NA,NA,a-curv-i5,2016-17,Chicopee - Bowe,00610015, 84, 21.1, 452, 52.4, 47.6, 12.8, 17.0,69.2 +NA,NA,a-curv-i5,2016-17,Chicopee - Bowie,00610020, 99, 18.5, 356, 50.0, 50.0, 0.0, 13.2,37.4 +NA,NA,a-curv-i5,2016-17,Chicopee - Chicopee Academy,00610021, 126, 6.5, 105, 26.7, 73.3, 1.9, 40.0,82.9 +6.447761194029852,5,a-curv-i5,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 737, 15.3," 1,416", 46.4, 53.6, 2.9, 14.5,41,1430 +NA,NA,a-curv-i5,2016-17,Chicopee - Chicopee High,00610505, 556, 14.1, 941, 50.5, 49.5, 4.9, 19.3,45.8 +NA,NA,a-curv-i5,2016-17,Chicopee - Dupont Middle,00610310, 319, 20.2, 820, 44.3, 55.7, 6.3, 19.4,52.2 +NA,NA,a-curv-i5,2016-17,Chicopee - Fairview Elementary,00610050, 117, 18.9, 442, 49.8, 50.2, 7.9, 14.5,65.4 +NA,NA,a-curv-i5,2016-17,Chicopee - Gen John J Stefanik,00610090, 107, 18.0, 382, 47.9, 52.1, 9.9, 17.0,70.4 +NA,NA,a-curv-i5,2016-17,Chicopee - Lambert-Lavoie,00610040, 68, 17.9, 304, 49.0, 51.0, 0.3, 12.2,46.1 +NA,NA,a-curv-i5,2016-17,Chicopee - Litwin,00610022, 127, 15.6, 423, 48.5, 51.5, 6.9, 18.9,49.6 +NA,NA,a-curv-i5,2016-17,Chicopee - Streiber Memorial School,00610065, 97, 18.5, 287, 49.5, 50.5, 0.3, 22.0,37.3 +NA,NA,a-curv-i5,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 25, 13.0, 321, 38.9, 61.1, 0.0, 50.2,47.4 +NA,NA,a-curv-i5,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 178, 19.9, 394, 47.5, 52.5, 3.6, 23.1,15.2 +NA,NA,a-curv-i5,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 115, 13.1, 269, 54.6, 45.4, 13.0, 21.6,55.4 +NA,NA,a-curv-i5,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 111, 13.7, 266, 59.0, 41.0, 12.0, 24.4,54.5 +NA,NA,a-curv-i5,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 60, 14.4, 172, 51.2, 48.8, 19.2, 30.8,71.5 +NA,NA,a-curv-i5,2016-17,Clarksburg - Clarksburg Elementary,00630010, 64, 19.1, 178, 52.8, 47.2, 0.0, 20.2,33.1 +NA,NA,a-curv-i5,2016-17,Clinton - Clinton Elementary,00640050, 185, 17.4, 730, 47.8, 52.2, 10.0, 21.1,34.8 +NA,NA,a-curv-i5,2016-17,Clinton - Clinton Middle School,00640305, 370, 19.6, 707, 45.5, 54.5, 7.1, 21.8,32.2 +NA,NA,a-curv-i5,2016-17,Clinton - Clinton Senior High,00640505, 246, 13.8, 485, 46.0, 54.0, 4.9, 21.2,32 +NA,NA,a-curv-i5,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 117, 15.9, 353, 49.9, 50.1, 7.9, 23.5,48.2 +6.6803149606299215,5,a-curv-i5,2016-17,Cohasset - Cohasset Middle/High School,00650505, 508, 17.9, 841, 49.5, 50.5, 0.1, 12.4,4.4,838 +NA,NA,a-curv-i5,2016-17,Cohasset - Deer Hill,00650005, 198, 21.0, 383, 45.2, 54.8, 0.0, 14.6,5.7 +NA,NA,a-curv-i5,2016-17,Cohasset - Joseph Osgood,00650010, 193, 19.2, 378, 48.4, 51.6, 0.3, 11.1,4.8 +NA,NA,a-curv-i5,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 199, 26.2, 625, 51.2, 48.8, 18.4, 13.8,36.6 +NA,NA,a-curv-i5,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 370, 14.0, 366, 52.7, 47.3, 2.5, 18.9,32 +NA,NA,a-curv-i5,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 96, 20.1, 282, 48.6, 51.4, 59.2, 8.5,46.8 +NA,NA,a-curv-i5,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 120, 22.3, 400, 49.5, 50.5, 42.5, 12.3,43.8 +NA,NA,a-curv-i5,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 96, 20.1, 280, 51.1, 48.9, 44.3, 10.4,51.8 +NA,NA,a-curv-i5,2016-17,Concord - Alcott,00670005, 126, 19.7, 483, 50.7, 49.3, 3.1, 11.6,8.1 +NA,NA,a-curv-i5,2016-17,Concord - Concord Middle,00670305, 652, 14.1, 718, 51.9, 48.1, 0.6, 14.2,5.8 +NA,NA,a-curv-i5,2016-17,Concord - Thoreau,00670020, 127, 19.1, 474, 46.6, 53.4, 2.1, 18.8,5.1 +NA,NA,a-curv-i5,2016-17,Concord - Willard,00670030, 124, 19.2, 459, 46.4, 53.6, 3.5, 10.5,3.5 +NA,NA,a-curv-i5,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 800, 14.6," 1,274", 52.0, 47.9, 0.2, 15.2,4.9 +NA,NA,a-curv-i5,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 35, 21.7, 435, 54.9, 45.1, 14.5, 11.0,38.6 +NA,NA,a-curv-i5,2016-17,Conway - Conway Grammar,00680005, 100, 17.1, 143, 44.1, 55.9, 0.0, 20.3,23.8 +NA,NA,a-curv-i5,2016-17,Danvers - Danvers High,00710505, 484, 16.3, 974, 50.8, 49.2, 0.7, 14.1,13.4 +NA,NA,a-curv-i5,2016-17,Danvers - Great Oak,00710015, 146, 20.0, 357, 47.3, 52.7, 1.1, 7.0,17.1 +NA,NA,a-curv-i5,2016-17,Danvers - Highlands,00710010, 146, 20.6, 371, 49.6, 50.4, 1.6, 12.7,16.7 +NA,NA,a-curv-i5,2016-17,Danvers - Holten Richmond Middle School,00710305, 572, 19.0, 843, 49.2, 50.8, 0.4, 16.7,15.5 +NA,NA,a-curv-i5,2016-17,Danvers - Ivan G Smith,00710032, 106, 22.7, 291, 54.6, 45.4, 0.7, 10.7,15.8 +NA,NA,a-curv-i5,2016-17,Danvers - Riverside,00710030, 138, 17.8, 369, 43.4, 56.6, 0.3, 30.6,19 +NA,NA,a-curv-i5,2016-17,Danvers - Willis E Thorpe,00710045, 144, 18.3, 327, 46.5, 53.5, 1.2, 16.8,17.7 +NA,NA,a-curv-i5,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 37, 21.8, 161, 42.2, 57.8, 3.1, 20.5,23 +NA,NA,a-curv-i5,2016-17,Dartmouth - Dartmouth High,00720505, 513, 17.4," 1,063", 49.2, 50.8, 1.0, 11.2,15.1 +NA,NA,a-curv-i5,2016-17,Dartmouth - Dartmouth Middle,00720050, 675, 16.9, 976, 48.3, 51.7, 1.1, 13.8,17.9 +NA,NA,a-curv-i5,2016-17,Dartmouth - George H Potter,00720030, 168, 22.2, 421, 46.3, 53.7, 4.5, 13.1,30.2 +NA,NA,a-curv-i5,2016-17,Dartmouth - James M. Quinn School,00720040, 265, 21.1, 630, 44.8, 55.2, 2.7, 18.1,23.7 +NA,NA,a-curv-i5,2016-17,Dartmouth - Joseph Demello,00720015, 180, 21.0, 419, 49.9, 50.1, 5.5, 15.8,17.4 +NA,NA,a-curv-i5,2016-17,Dedham - Avery,00730010, 65, 21.2, 312, 48.4, 51.6, 16.0, 27.2,38.5 +NA,NA,a-curv-i5,2016-17,Dedham - Dedham High,00730505, 372, 15.6, 746, 50.3, 49.7, 3.9, 15.8,16.4 +NA,NA,a-curv-i5,2016-17,Dedham - Dedham Middle School,00730305, 460, 15.7, 635, 49.0, 51.0, 4.1, 24.9,18.7 +NA,NA,a-curv-i5,2016-17,Dedham - Early Childhood Center,00730005, 76, 15.9, 301, 46.2, 53.8, 7.3, 23.3,24.3 +NA,NA,a-curv-i5,2016-17,Dedham - Greenlodge,00730025, 63, 19.5, 277, 45.5, 54.5, 4.7, 23.1,10.5 +NA,NA,a-curv-i5,2016-17,Dedham - Oakdale,00730030, 63, 19.3, 274, 54.4, 45.6, 7.7, 19.7,11.3 +NA,NA,a-curv-i5,2016-17,Dedham - Riverdale,00730045, 47, 17.2, 181, 42.0, 58.0, 10.5, 26.0,24.9 +NA,NA,a-curv-i5,2016-17,Deerfield - Deerfield Elementary,00740015, 286, 18.2, 408, 50.0, 50.0, 1.5, 19.1,16.4 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 666, 14.3," 1,015", 49.7, 50.3, 4.9, 17.3,30.6 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 79, 19.1, 401, 45.1, 54.9, 13.0, 24.7,47.4 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 51, 19.5, 296, 41.9, 58.1, 14.9, 20.6,49 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 304, 14.4, 439, 47.8, 52.2, 5.9, 19.8,39 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 202, 21.4, 524, 50.6, 49.4, 9.2, 22.1,38.4 +NA,NA,a-curv-i5,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 88, 19.3, 425, 46.8, 53.2, 12.0, 13.4,33.2 +NA,NA,a-curv-i5,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 234, 19.6, 451, 49.7, 50.3, 0.2, 12.6,15.5 +NA,NA,a-curv-i5,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 222, 19.5, 403, 45.7, 54.3, 0.0, 12.7,14.9 +6.535700197238659,5,a-curv-i5,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 507, 16.2, 936, 44.2, 55.8, 0.0, 17.5,14.9,928 +NA,NA,a-curv-i5,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 222, 22.0, 581, 49.6, 50.4, 0.2, 17.4,13.1 +NA,NA,a-curv-i5,2016-17,Dighton-Rehoboth - Palmer River,06500010, 330, 18.7, 560, 51.4, 48.6, 0.5, 13.0,12.3 +NA,NA,a-curv-i5,2016-17,Douglas - Douglas Elementary School,00770015, 114, 26.6, 400, 46.5, 53.5, 0.0, 18.0,16 +6.617543859649123,5,a-curv-i5,2016-17,Douglas - Douglas High School,00770505, 228, 14.3, 404, 52.7, 47.3, 0.2, 18.3,10.9,394 +NA,NA,a-curv-i5,2016-17,Douglas - Douglas Middle School,00770305, 101, 26.0, 361, 49.9, 50.1, 0.0, 15.2,15.5 +NA,NA,a-curv-i5,2016-17,Douglas - Douglas Primary School,00770005, 50, 24.0, 230, 46.1, 53.9, 0.0, 25.2,14.8 +NA,NA,a-curv-i5,2016-17,Dover - Chickering,00780005, 204, 18.5, 494, 44.7, 55.3, 2.6, 17.8,2.6 +NA,NA,a-curv-i5,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 360, 15.7, 654, 51.2, 48.8, 0.5, 12.2,3.4 +NA,NA,a-curv-i5,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 312, 19.3, 527, 49.5, 50.5, 0.6, 14.6,3.6 +NA,NA,a-curv-i5,2016-17,Dracut - Brookside Elementary,00790035, 182, 22.6, 456, 50.0, 50.0, 2.2, 20.8,25.4 +NA,NA,a-curv-i5,2016-17,Dracut - Dracut Senior High,00790505, 389, 17.7, 814, 52.0, 48.0, 1.1, 10.4,14.4 +NA,NA,a-curv-i5,2016-17,Dracut - George H. Englesby Elementary School,00790045, 206, 22.7, 513, 51.1, 48.9, 2.1, 18.1,26.9 +NA,NA,a-curv-i5,2016-17,Dracut - Greenmont Avenue,00790030, 119, 21.7, 287, 48.8, 51.2, 4.2, 18.5,27.5 +NA,NA,a-curv-i5,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 223, 21.2, 584, 44.9, 55.1, 1.4, 25.0,17.8 +NA,NA,a-curv-i5,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 476, 22.1, 924, 49.0, 51.0, 1.3, 14.7,19.3 +NA,NA,a-curv-i5,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 52, 20.4, 286, 54.5, 45.5, 23.1, 11.5,50.7 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 90, 21.6, 363, 42.7, 57.3, 5.5, 23.4,22.9 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 432, 18.0, 716, 49.0, 51.0, 0.1, 10.9,16.2 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 110, 21.3, 367, 47.4, 52.6, 3.3, 14.4,22.9 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 536, 16.8, 622, 51.4, 48.6, 1.3, 13.8,21.9 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 157, 19.9, 495, 46.1, 53.9, 2.2, 14.1,18.8 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 75, 18.5, 262, 49.2, 50.8, 5.3, 19.5,27.9 +NA,NA,a-curv-i5,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 469, 18.6," 1,155", 51.7, 48.1, 0.3, 9.8,17.3 +NA,NA,a-curv-i5,2016-17,Duxbury - Alden School,00820004, 330, 21.7, 715, 50.5, 49.5, 0.0, 15.5,5.6 +NA,NA,a-curv-i5,2016-17,Duxbury - Chandler Elementary,00820006, 284, 19.9, 628, 48.7, 51.3, 0.3, 15.6,5.4 +NA,NA,a-curv-i5,2016-17,Duxbury - Duxbury High,00820505, 500, 18.5," 1,060", 48.7, 51.3, 0.0, 8.7,5.5 +NA,NA,a-curv-i5,2016-17,Duxbury - Duxbury Middle,00820305, 329, 21.6, 763, 46.9, 53.1, 0.4, 13.1,5.2 +NA,NA,a-curv-i5,2016-17,East Bridgewater - Central,00830005, 214, 17.1, 570, 49.1, 50.9, 0.2, 18.6,15.1 +6.550344827586207,5,a-curv-i5,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 580, 20.6," 1,068", 51.3, 48.7, 0.7, 14.9,13,1051 +NA,NA,a-curv-i5,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 289, 24.7, 695, 44.5, 55.5, 0.3, 25.0,15.5 +NA,NA,a-curv-i5,2016-17,East Longmeadow - Birchland Park,00870305, 338, 18.4, 633, 47.9, 52.1, 0.9, 18.2,16 +NA,NA,a-curv-i5,2016-17,East Longmeadow - East Longmeadow High,00870505, 324, 20.4, 867, 51.2, 48.8, 1.3, 15.3,14.1 +NA,NA,a-curv-i5,2016-17,East Longmeadow - Mapleshade,00870010, 133, 15.5, 274, 55.1, 44.9, 3.6, 16.4,22.6 +NA,NA,a-curv-i5,2016-17,East Longmeadow - Meadow Brook,00870013, 180, 20.5, 568, 43.7, 56.3, 5.3, 18.1,17.4 +NA,NA,a-curv-i5,2016-17,East Longmeadow - Mountain View,00870015, 113, 19.0, 298, 48.3, 51.7, 0.3, 16.1,13.1 +NA,NA,a-curv-i5,2016-17,Eastham - Eastham Elementary,00850005, 143, 13.5, 190, 50.5, 49.5, 3.7, 20.0,32.6 +NA,NA,a-curv-i5,2016-17,Easthampton - Center School,00860005, 36, 21.0, 189, 41.8, 58.2, 5.8, 18.5,31.2 +NA,NA,a-curv-i5,2016-17,Easthampton - Easthampton High,00860505, 213, 15.8, 457, 53.2, 46.8, 1.5, 13.6,25.8 +NA,NA,a-curv-i5,2016-17,Easthampton - Maple,00860010, 48, 19.4, 268, 46.6, 53.4, 1.5, 27.2,36.6 +NA,NA,a-curv-i5,2016-17,Easthampton - Neil A Pepin,00860020, 36, 21.0, 189, 43.9, 56.1, 3.7, 14.3,28 +NA,NA,a-curv-i5,2016-17,Easthampton - White Brook Middle School,00860305, 215, 21.0, 454, 51.8, 48.0, 0.9, 19.6,30.2 +NA,NA,a-curv-i5,2016-17,Easton - Center School,00880003, 132, 18.3, 265, 43.0, 57.0, 4.2, 15.5,13.6 +NA,NA,a-curv-i5,2016-17,Easton - Easton Middle School,00880405, 512, 18.6, 893, 50.6, 49.4, 0.1, 19.1,10.4 +NA,NA,a-curv-i5,2016-17,Easton - Moreau Hall,00880020, 110, 20.6, 241, 49.0, 51.0, 4.1, 8.3,16.2 +NA,NA,a-curv-i5,2016-17,Easton - Oliver Ames High,00880505, 429, 19.0," 1,193", 52.6, 47.4, 0.8, 15.3,10.5 +NA,NA,a-curv-i5,2016-17,Easton - Parkview Elementary,00880015, 153, 19.9, 355, 47.0, 53.0, 0.8, 19.4,9.9 +NA,NA,a-curv-i5,2016-17,Easton - Richardson Olmsted School,00880025, 360, 23.3, 838, 49.0, 51.0, 0.7, 19.5,11 +NA,NA,a-curv-i5,2016-17,Edgartown - Edgartown Elementary,00890005, 243, 16.5, 356, 54.5, 45.5, 17.7, 23.3,26.1 +NA,NA,a-curv-i5,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 142, 19.3, 361, 65.7, 34.3, 12.7, 15.5,52.9 +NA,NA,a-curv-i5,2016-17,Erving - Erving Elementary,00910030, 49, 18.9, 142, 46.5, 53.5, 0.7, 19.7,26.1 +6.727980535279805,5,a-curv-i5,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 822, 16.3," 1,288", 57.1, 42.9, 0.2, 19.5,18.9,1307 +NA,NA,a-curv-i5,2016-17,Everett - Adams School,00930003, 64, 14.3, 228, 42.5, 57.5, 21.1, 18.9,44.3 +NA,NA,a-curv-i5,2016-17,Everett - Devens School,00930030, 139, 4.0, 68, 23.5, 76.5, 13.2, 91.2,70.6 +NA,NA,a-curv-i5,2016-17,Everett - Everett High,00930505, 846, 17.7," 2,031", 48.2, 51.8, 19.1, 10.8,38.3 +NA,NA,a-curv-i5,2016-17,Everett - George Keverian School,00930028, 479, 23.5, 934, 48.1, 51.9, 15.2, 17.7,45.3 +NA,NA,a-curv-i5,2016-17,Everett - Lafayette School,00930038, 491, 23.8, 959, 52.1, 47.9, 17.1, 22.2,44.4 +NA,NA,a-curv-i5,2016-17,Everett - Madeline English School,00930018, 411, 23.2, 858, 50.7, 49.3, 14.1, 20.3,40.6 +NA,NA,a-curv-i5,2016-17,Everett - Parlin School,00930058, 411, 25.2, 934, 50.5, 49.5, 32.8, 11.5,44.6 +NA,NA,a-curv-i5,2016-17,Everett - Sumner G. Whittier School,00930010, 299, 21.3, 630, 52.4, 47.6, 33.7, 10.5,48.9 +NA,NA,a-curv-i5,2016-17,Everett - Webster School,00930015, 218, 16.2, 553, 42.3, 57.7, 14.5, 27.8,47.4 +NA,NA,a-curv-i5,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 349, 25.3, 959, 50.6, 49.4, 15.6, 20.2,39.7 +NA,NA,a-curv-i5,2016-17,Fairhaven - East Fairhaven,00940010, 151, 21.4, 444, 47.1, 52.9, 2.3, 20.7,32.2 +NA,NA,a-curv-i5,2016-17,Fairhaven - Fairhaven High,00940505, 373, 14.9, 626, 51.9, 48.1, 1.0, 15.3,23 +NA,NA,a-curv-i5,2016-17,Fairhaven - Hastings Middle,00940305, 297, 18.0, 461, 48.2, 51.8, 1.5, 12.8,26.2 +NA,NA,a-curv-i5,2016-17,Fairhaven - Leroy Wood,00940030, 212, 21.7, 513, 50.7, 49.3, 2.5, 13.8,31.4 +NA,NA,a-curv-i5,2016-17,Fall River - B M C Durfee High,00950505," 1,028", 18.9," 2,127", 49.6, 50.4, 11.1, 16.1,53.4 +NA,NA,a-curv-i5,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 300, 20.2, 759, 46.6, 53.4, 14.8, 19.2,74.3 +NA,NA,a-curv-i5,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Fall River - Henry Lord Community School,00950017, 274, 17.2, 629, 46.3, 53.7, 20.3, 27.5,77.7 +NA,NA,a-curv-i5,2016-17,Fall River - James Tansey,00950140, 103, 23.1, 297, 53.2, 46.8, 2.4, 13.8,45.8 +NA,NA,a-curv-i5,2016-17,Fall River - John J Doran,00950045, 206, 20.5, 545, 47.3, 52.7, 14.3, 24.8,74.9 +NA,NA,a-curv-i5,2016-17,Fall River - Letourneau Elementary School,00950013, 220, 23.0, 639, 49.6, 50.4, 37.4, 14.6,70.4 +NA,NA,a-curv-i5,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 261, 21.7, 707, 47.9, 52.1, 20.9, 13.2,76.7 +NA,NA,a-curv-i5,2016-17,Fall River - Matthew J Kuss Middle,00950320, 346, 19.9, 761, 51.2, 48.8, 5.7, 20.5,58.1 +NA,NA,a-curv-i5,2016-17,Fall River - Morton Middle,00950315, 240, 19.3, 617, 43.9, 56.1, 5.2, 23.3,62.6 +NA,NA,a-curv-i5,2016-17,Fall River - North End Elementary,00950005, 321, 19.3, 786, 47.1, 52.9, 7.6, 25.7,57.5 +NA,NA,a-curv-i5,2016-17,Fall River - Resiliency Middle School,00950335, 16, 11.3, 44, 54.5, 45.5, 11.4, 38.6,79.5 +NA,NA,a-curv-i5,2016-17,Fall River - Resiliency Preparatory School,00950325, 76, 7.9, 141, 35.5, 64.5, 0.7, 22.7,77.3 +NA,NA,a-curv-i5,2016-17,Fall River - Samuel Watson,00950145, 124, 20.1, 304, 51.0, 49.0, 12.5, 17.1,75.3 +NA,NA,a-curv-i5,2016-17,Fall River - Spencer Borden,00950130, 232, 18.7, 543, 44.6, 55.4, 7.2, 22.7,58.9 +NA,NA,a-curv-i5,2016-17,Fall River - Stone Day School,00950340, 69, 3.8, 39, 17.9, 82.1, 0.0, 97.4,87.2 +NA,NA,a-curv-i5,2016-17,Fall River - Talbot Innovation School,00950305, 329, 15.7, 545, 47.7, 52.3, 29.2, 22.8,73.9 +NA,NA,a-curv-i5,2016-17,Fall River - William S Greene,00950065, 302, 20.3, 774, 49.6, 50.4, 8.4, 21.2,63.7 +NA,NA,a-curv-i5,2016-17,Falmouth - East Falmouth Elementary,00960005, 87, 16.5, 357, 44.3, 55.7, 1.4, 26.1,40.1 +NA,NA,a-curv-i5,2016-17,Falmouth - Falmouth High,00960505, 732, 13.9, 879, 49.1, 50.9, 2.2, 11.6,22.1 +NA,NA,a-curv-i5,2016-17,Falmouth - Lawrence,00960405, 429, 17.4, 577, 49.0, 51.0, 1.9, 21.0,25 +NA,NA,a-curv-i5,2016-17,Falmouth - Morse Pond School,00960305, 260, 25.9, 597, 50.9, 49.1, 2.7, 17.6,26.5 +NA,NA,a-curv-i5,2016-17,Falmouth - Mullen-Hall,00960020, 125, 17.9, 448, 46.2, 53.8, 4.7, 13.4,22.3 +NA,NA,a-curv-i5,2016-17,Falmouth - North Falmouth Elementary,00960030, 85, 18.7, 318, 51.3, 48.7, 2.2, 17.3,22.3 +NA,NA,a-curv-i5,2016-17,Falmouth - Teaticket,00960015, 98, 14.5, 308, 48.1, 51.9, 1.9, 18.2,40.9 +NA,NA,a-curv-i5,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 77, 13.4, 120, 47.5, 52.5, 0.0, 20.0,30 +NA,NA,a-curv-i5,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 352, 17.2, 582, 45.0, 55.0, 4.3, 21.1,62.4 +NA,NA,a-curv-i5,2016-17,Fitchburg - Crocker Elementary,00970016, 189, 24.2, 659, 46.4, 53.6, 11.8, 28.2,63 +NA,NA,a-curv-i5,2016-17,Fitchburg - Fitchburg High,00970505, 521, 17.5," 1,201", 47.6, 52.4, 8.7, 19.7,52.5 +NA,NA,a-curv-i5,2016-17,Fitchburg - Goodrich Academy,00970510, 121, 7.3, 240, 45.4, 54.6, 3.3, 20.0,56.3 +NA,NA,a-curv-i5,2016-17,Fitchburg - McKay Arts Academy,00970340, 294, 20.4, 697, 53.1, 46.9, 10.0, 20.5,57.1 +NA,NA,a-curv-i5,2016-17,Fitchburg - Memorial Intermediate,00970048, 313, 21.3, 742, 50.4, 49.6, 15.0, 16.0,54.2 +NA,NA,a-curv-i5,2016-17,Fitchburg - Reingold Elementary,00970043, 244, 21.5, 671, 47.8, 52.2, 16.7, 22.7,56.3 +NA,NA,a-curv-i5,2016-17,Fitchburg - South Street Elementary,00970060, 276, 19.7, 678, 49.1, 50.9, 18.0, 28.5,65.5 +NA,NA,a-curv-i5,2016-17,Florida - Abbott Memorial,00980005, 60, 9.1, 85, 56.5, 43.5, 0.0, 30.6,24.7 +NA,NA,a-curv-i5,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 347, 13.5, 221, 52.0, 48.0, 0.5, 15.4,21.3 +NA,NA,a-curv-i5,2016-17,Foxborough - Charles Taylor Elementary,00990050, 123, 17.4, 244, 43.4, 56.6, 3.3, 16.4,9.4 +NA,NA,a-curv-i5,2016-17,Foxborough - Foxborough High,00990505, 552, 13.9, 835, 46.7, 53.3, 0.6, 17.6,12.2 +NA,NA,a-curv-i5,2016-17,Foxborough - John J Ahern,00990405, 531, 18.1, 831, 49.2, 50.8, 1.0, 19.1,14.7 +NA,NA,a-curv-i5,2016-17,Foxborough - Mabelle M Burrell,00990015, 115, 19.4, 332, 45.2, 54.8, 1.8, 21.1,12 +NA,NA,a-curv-i5,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 185, 19.0, 398, 49.2, 50.8, 4.0, 21.1,17.3 +NA,NA,a-curv-i5,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 540, 22.9," 1,270", 52.7, 47.3, 14.5, 8.7,16 +NA,NA,a-curv-i5,2016-17,Framingham - Barbieri Elementary,01000035, 332, 17.8, 686, 53.4, 46.6, 38.2, 23.3,41 +NA,NA,a-curv-i5,2016-17,Framingham - Brophy,01000006, 247, 17.8, 514, 50.8, 49.2, 39.5, 18.9,43.8 +NA,NA,a-curv-i5,2016-17,Framingham - Cameron Middle School,01000302, 395, 16.9, 556, 49.8, 50.2, 7.9, 29.9,35.4 +NA,NA,a-curv-i5,2016-17,Framingham - Charlotte A Dunning,01000007, 243, 16.7, 484, 45.9, 54.1, 16.3, 22.5,19.4 +6.323429710867398,5,a-curv-i5,2016-17,Framingham - Framingham High School,01000515," 1,003", 17.6," 2,223", 48.0, 52.0, 13.7, 15.3,21.6,2102 +NA,NA,a-curv-i5,2016-17,Framingham - Fuller Middle,01000305, 335, 15.9, 504, 48.8, 51.2, 34.7, 22.2,42.3 +NA,NA,a-curv-i5,2016-17,Framingham - Hemenway,01000015, 237, 20.4, 575, 48.9, 51.1, 12.7, 24.2,16.3 +NA,NA,a-curv-i5,2016-17,Framingham - Juniper Hill School,01000001, 352, 6.3, 279, 44.1, 55.9, 5.4, 45.9,23.7 +NA,NA,a-curv-i5,2016-17,Framingham - King Elementary School,01000005, 132, 18.6, 241, 44.0, 56.0, 29.0, 13.7,23.7 +NA,NA,a-curv-i5,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 179, 17.6, 382, 47.4, 52.6, 9.2, 29.3,34 +NA,NA,a-curv-i5,2016-17,Framingham - Miriam F McCarthy School,01000050, 286, 16.3, 559, 49.9, 50.1, 15.6, 34.7,49 +NA,NA,a-curv-i5,2016-17,Framingham - Potter Road,01000039, 205, 21.7, 525, 47.6, 52.4, 26.1, 16.8,18.7 +NA,NA,a-curv-i5,2016-17,Framingham - Walsh Middle,01000310, 474, 17.1, 734, 48.6, 51.4, 6.0, 24.3,23.3 +NA,NA,a-curv-i5,2016-17,Framingham - Woodrow Wilson,01000055, 273, 18.8, 588, 50.2, 49.8, 52.0, 16.0,48 +NA,NA,a-curv-i5,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 232, 17.6, 394, 53.8, 45.9, 0.0, 15.7,5.6 +NA,NA,a-curv-i5,2016-17,Franklin - Annie Sullivan Middle School,01010040, 241, 20.2, 471, 47.3, 52.7, 0.8, 15.7,7.9 +NA,NA,a-curv-i5,2016-17,Franklin - Davis Thayer,01010035, 104, 20.5, 268, 47.0, 53.0, 4.5, 17.2,18.7 +NA,NA,a-curv-i5,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 6, 22.5, 134, 38.1, 61.9, 0.0, 36.6,15.7 +NA,NA,a-curv-i5,2016-17,Franklin - Franklin High,01010505, 980, 16.2," 1,741", 50.8, 49.2, 0.6, 12.8,6.5 +NA,NA,a-curv-i5,2016-17,Franklin - Helen Keller Elementary,01010012, 160, 20.6, 412, 46.4, 53.6, 0.7, 14.3,6.1 +NA,NA,a-curv-i5,2016-17,Franklin - Horace Mann,01010405, 236, 20.9, 468, 53.2, 46.8, 0.0, 14.1,3.6 +NA,NA,a-curv-i5,2016-17,Franklin - J F Kennedy Memorial,01010013, 144, 20.2, 364, 48.9, 51.1, 2.2, 15.4,6.6 +NA,NA,a-curv-i5,2016-17,Franklin - Jefferson Elementary,01010010, 136, 20.1, 341, 46.6, 53.4, 1.5, 16.7,5.3 +NA,NA,a-curv-i5,2016-17,Franklin - Oak Street Elementary,01010030, 160, 20.5, 411, 46.0, 54.0, 0.7, 15.1,8 +NA,NA,a-curv-i5,2016-17,Franklin - Parmenter,01010032, 152, 19.2, 365, 48.8, 51.2, 3.0, 9.0,15.9 +NA,NA,a-curv-i5,2016-17,Franklin - Remington Middle,01010310, 253, 18.6, 463, 48.4, 51.6, 2.4, 19.4,11.2 +NA,NA,a-curv-i5,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 280, 14.1, 484, 32.2, 67.8, 0.0, 28.1,34.9 +NA,NA,a-curv-i5,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 362, 14.9, 724, 50.3, 49.7, 0.3, 14.1,11.3 +NA,NA,a-curv-i5,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 84, 19.6, 412, 47.8, 52.2, 0.7, 8.3,15.5 +NA,NA,a-curv-i5,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 83, 17.9, 410, 48.0, 52.0, 2.0, 15.4,20.2 +NA,NA,a-curv-i5,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 297, 22.3, 734, 49.7, 50.3, 0.3, 14.2,13.6 +NA,NA,a-curv-i5,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 161, 20.5, 471, 52.7, 47.3, 1.1, 18.9,18.7 +NA,NA,a-curv-i5,2016-17,Frontier - Frontier Regional,06700505, 461, 12.5, 613, 46.3, 53.7, 1.6, 19.6,17.8 +NA,NA,a-curv-i5,2016-17,Gardner - Elm Street School,01030001, 104, 22.2, 577, 44.7, 55.3, 2.4, 25.5,51 +NA,NA,a-curv-i5,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 57, 10.6, 86, 40.7, 58.1, 0.0, 24.4,62.8 +NA,NA,a-curv-i5,2016-17,Gardner - Gardner High,01030505, 342, 16.8, 714, 46.2, 53.8, 2.4, 16.7,38.2 +NA,NA,a-curv-i5,2016-17,Gardner - Gardner Middle School,01030405, 309, 18.6, 536, 50.4, 49.6, 4.1, 22.9,48.1 +NA,NA,a-curv-i5,2016-17,Gardner - Waterford Street,01030020, 69, 22.5, 465, 52.0, 48.0, 5.8, 26.0,54.8 +NA,NA,a-curv-i5,2016-17,Gateway - Chester Elementary,06720059, 57, 15.3, 114, 45.6, 54.4, 0.0, 25.4,36.8 +NA,NA,a-curv-i5,2016-17,Gateway - Gateway Regional High,06720505, 250, 10.2, 221, 55.7, 44.3, 0.9, 15.4,28.5 +NA,NA,a-curv-i5,2016-17,Gateway - Gateway Regional Middle School,06720405, 132, 16.8, 210, 43.3, 56.7, 2.4, 18.1,21.9 +NA,NA,a-curv-i5,2016-17,Gateway - Littleville Elementary School,06720143, 127, 20.2, 306, 46.1, 53.9, 5.2, 23.5,30.4 +6.911258278145695,5,a-curv-i5,2016-17,Georgetown - Georgetown High School,01050505, 302, 14.2, 426, 53.1, 46.9, 0.0, 17.1,9.6,411 +NA,NA,a-curv-i5,2016-17,Georgetown - Georgetown Middle School,01050305, 177, 16.6, 427, 48.0, 52.0, 0.0, 12.2,7.3 +NA,NA,a-curv-i5,2016-17,Georgetown - Penn Brook,01050010, 232, 19.9, 702, 48.3, 51.7, 0.6, 13.1,9.7 +NA,NA,a-curv-i5,2016-17,Georgetown - Perley Elementary,01050005, 6, 19.8, 118, 50.0, 50.0, 0.0, 16.1,5.1 +NA,NA,a-curv-i5,2016-17,Gill-Montague - Gill Elementary,06740005, 54, 17.3, 121, 46.3, 53.7, 0.0, 14.9,28.1 +NA,NA,a-curv-i5,2016-17,Gill-Montague - Great Falls Middle,06740310, 172, 13.7, 241, 51.5, 48.5, 2.1, 28.2,39 +NA,NA,a-curv-i5,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 60, 17.0, 151, 47.7, 52.3, 17.2, 25.2,53.6 +NA,NA,a-curv-i5,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 102, 17.7, 213, 48.8, 51.2, 14.6, 23.0,51.6 +NA,NA,a-curv-i5,2016-17,Gill-Montague - Turners Fall High,06740505, 166, 11.7, 218, 50.0, 50.0, 3.2, 19.3,28.9 +NA,NA,a-curv-i5,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 375, 14.6, 497, 49.1, 50.9, 10.9, 12.9,46.1 +NA,NA,a-curv-i5,2016-17,Gloucester - Beeman Memorial,01070010, 72, 19.4, 350, 50.3, 49.7, 12.3, 18.0,44.9 +NA,NA,a-curv-i5,2016-17,Gloucester - East Gloucester Elementary,01070020, 48, 19.5, 234, 44.0, 56.0, 3.8, 19.7,28.2 +NA,NA,a-curv-i5,2016-17,Gloucester - Gloucester High,01070505, 456, 14.3, 825, 48.6, 51.4, 5.2, 25.9,31.4 +NA,NA,a-curv-i5,2016-17,Gloucester - Gloucester PreSchool,01070025, 11, 10.4, 113, 46.0, 54.0, 0.9, 56.6,40.7 +NA,NA,a-curv-i5,2016-17,Gloucester - Plum Cove School,01070042, 48, 18.2, 218, 48.6, 51.4, 2.8, 15.6,28.4 +NA,NA,a-curv-i5,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 320, 21.2, 642, 48.1, 51.9, 3.1, 24.6,28.5 +NA,NA,a-curv-i5,2016-17,Gloucester - Veterans Memorial,01070045, 49, 17.7, 221, 49.3, 50.7, 14.9, 30.3,48.9 +NA,NA,a-curv-i5,2016-17,Gloucester - West Parish,01070050, 73, 18.6, 358, 52.0, 48.0, 3.4, 22.9,29.9 +NA,NA,a-curv-i5,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 11, 2.0, 2, 50.0, 50.0, 0.0, 0.0,0 +6.346534653465346,5,a-curv-i5,2016-17,Grafton - Grafton High School,01100505, 404, 16.9, 826, 51.9, 48.1, 0.5, 12.5,10.4,835 +NA,NA,a-curv-i5,2016-17,Grafton - Grafton Middle,01100305, 323, 18.3, 487, 50.3, 49.7, 0.8, 12.7,8.4 +NA,NA,a-curv-i5,2016-17,Grafton - Millbury Street Elementary School,01100200, 324, 21.1, 680, 48.4, 51.6, 1.2, 19.1,12.8 +NA,NA,a-curv-i5,2016-17,Grafton - North Grafton Elementary,01100025, 116, 18.0, 295, 47.8, 52.2, 1.0, 23.4,9.2 +NA,NA,a-curv-i5,2016-17,Grafton - North Street Elementary School,01100030, 278, 22.2, 598, 48.0, 52.0, 0.8, 16.7,11.4 +NA,NA,a-curv-i5,2016-17,Grafton - South Grafton Elementary,01100005, 126, 18.5, 318, 43.7, 56.3, 0.3, 25.5,12.3 +NA,NA,a-curv-i5,2016-17,Granby - East Meadow,01110004, 141, 17.2, 169, 42.0, 58.0, 3.0, 17.8,14.8 +7.272553699284009,5,a-curv-i5,2016-17,Granby - Granby Jr Sr High School,01110505, 419, 14.6, 375, 45.6, 54.4, 2.4, 14.1,19.7,381 +NA,NA,a-curv-i5,2016-17,Granby - West Street,01110010, 68, 14.7, 203, 49.8, 50.2, 4.9, 14.8,27.1 +NA,NA,a-curv-i5,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 892, 13.6," 1,372", 44.1, 55.9, 1.7, 9.5,33.9 +NA,NA,a-curv-i5,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,298", 13.8," 1,450", 50.8, 49.2, 10.3, 21.3,48.8 +NA,NA,a-curv-i5,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,334", 18.4," 2,175", 44.9, 55.1, 5.4, 20.9,41.1 +NA,NA,a-curv-i5,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,531", 14.1," 2,145", 50.3, 49.7, 2.6, 11.2,35.7 +NA,NA,a-curv-i5,2016-17,Greenfield - Discovery School at Four Corners,01140025, 85, 17.0, 246, 50.8, 49.2, 5.7, 13.4,26 +NA,NA,a-curv-i5,2016-17,Greenfield - Federal Street School,01140010, 90, 16.3, 244, 50.8, 49.2, 2.0, 20.1,60.2 +NA,NA,a-curv-i5,2016-17,Greenfield - Green River,01140030, 25, 4.4, 6, 66.7, 33.3, 0.0, 0.0,50 +NA,NA,a-curv-i5,2016-17,Greenfield - Greenfield High,01140505, 321, 13.5, 464, 46.6, 53.4, 4.3, 19.6,44.6 +NA,NA,a-curv-i5,2016-17,Greenfield - Greenfield Middle,01140305, 356, 17.2, 408, 47.8, 52.2, 4.4, 13.5,46.1 +NA,NA,a-curv-i5,2016-17,Greenfield - Newton School,01140035, 70, 16.5, 231, 50.2, 49.8, 11.3, 9.1,65.8 +NA,NA,a-curv-i5,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 14.2, 128, 44.5, 55.5, 0.0, 33.6,51.6 +NA,NA,a-curv-i5,2016-17,Groton-Dunstable - Boutwell School,06730001, 14, 7.0, 76, 38.2, 61.8, 1.3, 53.9,15.8 +NA,NA,a-curv-i5,2016-17,Groton-Dunstable - Florence Roche School,06730010, 97, 20.1, 487, 52.2, 47.8, 2.5, 15.2,8.4 +NA,NA,a-curv-i5,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 422, 17.6, 814, 49.5, 50.5, 0.0, 12.3,2.8 +NA,NA,a-curv-i5,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 344, 19.2, 792, 48.0, 52.0, 1.0, 16.5,6.8 +NA,NA,a-curv-i5,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 58, 19.8, 283, 44.5, 55.5, 1.1, 20.5,4.6 +NA,NA,a-curv-i5,2016-17,Hadley - Hadley Elementary,01170015, 271, 17.1, 308, 47.7, 52.3, 2.3, 17.5,19.2 +NA,NA,a-curv-i5,2016-17,Hadley - Hopkins Academy,01170505, 163, 13.6, 263, 49.4, 50.6, 1.1, 7.6,12.2 +NA,NA,a-curv-i5,2016-17,Halifax - Halifax Elementary,01180005, 240, 21.2, 592, 47.6, 52.4, 0.7, 14.4,19.4 +NA,NA,a-curv-i5,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 90, 20.5, 260, 48.5, 51.5, 0.8, 14.6,8.5 +NA,NA,a-curv-i5,2016-17,Hamilton-Wenham - Cutler School,06750010, 100, 18.6, 263, 51.0, 49.0, 0.8, 15.2,5.3 +NA,NA,a-curv-i5,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 347, 14.9, 581, 52.8, 47.2, 0.0, 10.0,6.4 +NA,NA,a-curv-i5,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 325, 17.8, 410, 48.5, 51.5, 0.0, 17.1,6.1 +NA,NA,a-curv-i5,2016-17,Hamilton-Wenham - Winthrop School,06750015, 99, 19.2, 301, 53.2, 46.8, 1.3, 16.9,8 +NA,NA,a-curv-i5,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 308, 16.5, 439, 52.8, 47.2, 3.6, 9.6,40.1 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 53, 21.1, 250, 48.0, 52.0, 1.6, 26.8,22 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 63, 22.7, 322, 49.1, 50.9, 3.4, 15.5,12.7 +6.221705426356589,5,a-curv-i5,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 516, 17.7," 1,136", 50.1, 49.9, 0.1, 12.5,11.1,1147 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Soule Road,06800030, 78, 24.4, 345, 51.6, 48.4, 1.4, 9.0,16.8 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 65, 24.0, 317, 50.5, 49.5, 2.8, 12.0,15.8 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 115, 20.8, 223, 49.8, 50.2, 0.0, 21.1,16.6 +NA,NA,a-curv-i5,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 238, 21.4, 544, 50.9, 49.1, 0.4, 13.6,16.2 +NA,NA,a-curv-i5,2016-17,Hampshire - Hampshire Regional High,06830505, 535, 13.7, 738, 54.9, 45.1, 0.7, 20.1,15.7 +NA,NA,a-curv-i5,2016-17,Hancock - Hancock Elementary,01210005, 39, 5.4, 46, 43.5, 56.5, 0.0, 8.7,17.4 +NA,NA,a-curv-i5,2016-17,Hanover - Cedar Elementary,01220004, 176, 18.6, 433, 49.4, 50.6, 1.4, 23.3,8.1 +NA,NA,a-curv-i5,2016-17,Hanover - Center Elementary,01220005, 136, 20.9, 355, 50.4, 49.6, 0.8, 18.6,5.1 +NA,NA,a-curv-i5,2016-17,Hanover - Hanover High,01220505, 374, 16.3, 787, 46.9, 52.7, 0.6, 15.6,5 +NA,NA,a-curv-i5,2016-17,Hanover - Hanover Middle,01220305, 816, 19.8, 839, 46.7, 53.3, 1.0, 20.6,6.7 +NA,NA,a-curv-i5,2016-17,Hanover - Sylvester,01220015, 94, 20.7, 228, 50.9, 49.1, 1.8, 21.9,8.3 +NA,NA,a-curv-i5,2016-17,Harvard - Bromfield,01250505, 334, 15.7, 685, 49.2, 50.8, 0.6, 10.9,5.4 +NA,NA,a-curv-i5,2016-17,Harvard - Hildreth Elementary School,01250005, 231, 18.1, 444, 48.6, 51.4, 2.7, 12.4,4.5 +NA,NA,a-curv-i5,2016-17,Hatfield - Hatfield Elementary,01270005, 148, 16.4, 250, 46.8, 53.2, 0.0, 19.2,12 +NA,NA,a-curv-i5,2016-17,Hatfield - Smith Academy,01270505, 149, 11.8, 201, 47.8, 52.2, 1.0, 19.9,12.9 +NA,NA,a-curv-i5,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 84, 22.9, 161, 42.2, 57.8, 13.0, 22.4,64 +NA,NA,a-curv-i5,2016-17,Haverhill - Bradford Elementary,01280008, 294, 20.8, 610, 49.0, 51.0, 3.0, 25.4,31 +NA,NA,a-curv-i5,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 173, 20.7, 408, 50.2, 49.8, 2.7, 21.3,28.7 +NA,NA,a-curv-i5,2016-17,Haverhill - Consentino Middle School,01280100, 396, 24.0," 1,033", 48.5, 51.5, 16.3, 13.1,48.5 +NA,NA,a-curv-i5,2016-17,Haverhill - Crowell,01280020, 99, 18.3, 150, 42.7, 57.3, 17.3, 21.3,57.3 +NA,NA,a-curv-i5,2016-17,Haverhill - Dr Paul Nettle,01280050, 214, 19.0, 476, 51.3, 48.7, 5.3, 29.0,45 +NA,NA,a-curv-i5,2016-17,Haverhill - Golden Hill,01280026, 292, 18.6, 516, 49.6, 50.4, 17.8, 26.6,54.1 +NA,NA,a-curv-i5,2016-17,Haverhill - Greenleaf,01280027, 136, 20.1, 240, 46.7, 53.3, 1.7, 12.1,39.2 +NA,NA,a-curv-i5,2016-17,Haverhill - Haverhill Alternative School,01280033, 44, 7.2, 54, 31.5, 68.5, 1.9, 92.6,77.8 +NA,NA,a-curv-i5,2016-17,Haverhill - Haverhill High,01280505, 856, 16.2," 1,922", 47.9, 52.1, 6.3, 15.7,33.1 +NA,NA,a-curv-i5,2016-17,Haverhill - John G Whittier,01280085, 176, 26.0, 514, 47.9, 52.1, 5.6, 20.0,38.9 +NA,NA,a-curv-i5,2016-17,Haverhill - Moody,01280045, 207, 10.3, 239, 33.5, 66.5, 5.0, 70.7,49.4 +NA,NA,a-curv-i5,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 362, 14.7, 509, 44.8, 55.2, 13.4, 31.0,49.5 +NA,NA,a-curv-i5,2016-17,Haverhill - TEACH,01280073, 89, 3.0, 48, 25.0, 75.0, 8.3, 100.0,72.9 +NA,NA,a-curv-i5,2016-17,Haverhill - Tilton,01280075, 235, 20.7, 539, 48.8, 51.2, 18.9, 20.2,66.8 +NA,NA,a-curv-i5,2016-17,Haverhill - Walnut Square,01280080, 80, 21.2, 151, 47.7, 52.3, 2.0, 11.3,26.5 +NA,NA,a-curv-i5,2016-17,Hawlemont - Hawlemont Regional,06850005, 41, 15.9, 127, 56.7, 43.3, 0.0, 23.6,50.4 +NA,NA,a-curv-i5,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 122, 17.2, 217, 41.9, 58.1, 12.0, 26.3,49.8 +NA,NA,a-curv-i5,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 112, 20.4, 302, 57.6, 42.4, 3.0, 12.9,15.9 +NA,NA,a-curv-i5,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 41, 31.7, 218, 46.8, 53.2, 0.0, 20.2,10.6 +NA,NA,a-curv-i5,2016-17,Hingham - East Elementary School,01310005, 190, 20.8, 570, 42.1, 57.9, 0.2, 15.1,5.8 +NA,NA,a-curv-i5,2016-17,Hingham - Hingham High,01310505, 588, 15.1," 1,224", 49.1, 50.9, 0.1, 9.5,5.3 +NA,NA,a-curv-i5,2016-17,Hingham - Hingham Middle School,01310410, 613, 18.7," 1,101", 49.4, 50.6, 0.3, 11.4,5.1 +NA,NA,a-curv-i5,2016-17,Hingham - Plymouth River,01310019, 175, 21.6, 473, 52.6, 47.4, 0.8, 12.3,4.9 +NA,NA,a-curv-i5,2016-17,Hingham - South Elementary,01310020, 191, 21.9, 521, 49.9, 50.1, 0.2, 14.2,3.5 +NA,NA,a-curv-i5,2016-17,Hingham - Wm L Foster Elementary,01310010, 183, 21.0, 479, 47.0, 53.0, 0.8, 12.3,6.7 +NA,NA,a-curv-i5,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 278, 14.2, 473, 49.7, 50.3, 4.7, 15.2,32.8 +NA,NA,a-curv-i5,2016-17,Holbrook - John F Kennedy,01330018, 81, 19.5, 431, 46.9, 53.1, 9.5, 23.4,27.4 +NA,NA,a-curv-i5,2016-17,Holbrook - South,01330025, 52, 21.5, 279, 52.7, 47.3, 7.2, 16.8,27.2 +NA,NA,a-curv-i5,2016-17,Holland - Holland Elementary,01350005, 73, 16.3, 237, 47.7, 52.3, 0.0, 18.1,22.4 +NA,NA,a-curv-i5,2016-17,Holliston - Holliston High,01360505, 466, 16.9, 814, 48.2, 51.8, 0.5, 12.7,5.7 +NA,NA,a-curv-i5,2016-17,Holliston - Miller School,01360007, 369, 19.5, 684, 48.7, 51.3, 3.2, 18.9,6.3 +NA,NA,a-curv-i5,2016-17,Holliston - Placentino Elementary,01360010, 211, 18.5, 752, 47.5, 52.5, 3.9, 14.4,7.7 +NA,NA,a-curv-i5,2016-17,Holliston - Robert H. Adams Middle School,01360305, 428, 16.1, 666, 50.8, 49.2, 2.0, 18.2,6.5 +NA,NA,a-curv-i5,2016-17,Holyoke - E N White Elementary,01370045, 189, 21.4, 499, 47.7, 52.3, 22.0, 21.8,74.5 +NA,NA,a-curv-i5,2016-17,Holyoke - H.B. Lawrence School,01370070, 114, 16.3, 294, 46.3, 53.7, 31.0, 24.5,87.8 +NA,NA,a-curv-i5,2016-17,Holyoke - Holyoke High,01370505, 501, 20.3," 1,309", 48.0, 52.0, 15.0, 17.3,62.9 +NA,NA,a-curv-i5,2016-17,Holyoke - Joseph Metcalf School,01370003, 55, 17.9, 280, 47.5, 52.5, 12.9, 36.1,57.1 +NA,NA,a-curv-i5,2016-17,Holyoke - Kelly Elementary,01370040, 222, 21.2, 549, 47.2, 52.8, 37.2, 15.8,85.8 +NA,NA,a-curv-i5,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 300, 14.1, 562, 50.2, 49.8, 20.1, 27.4,79 +NA,NA,a-curv-i5,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 133, 22.4, 431, 45.2, 54.8, 12.1, 26.2,59.9 +NA,NA,a-curv-i5,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 197, 18.9, 466, 42.7, 57.3, 22.5, 28.8,78.1 +NA,NA,a-curv-i5,2016-17,Holyoke - Morgan Full Service Community School,01370025, 111, 20.1, 403, 47.1, 52.9, 37.5, 22.6,89.6 +NA,NA,a-curv-i5,2016-17,Holyoke - William R. Peck School,01370030, 166, 15.8, 364, 45.3, 54.7, 33.8, 35.7,81 +NA,NA,a-curv-i5,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 103, 11.4, 196, 42.3, 57.7, 26.5, 32.7,83.7 +NA,NA,a-curv-i5,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 191, 25.2, 702, 57.0, 43.0, 13.4, 18.4,66.1 +NA,NA,a-curv-i5,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 331, 14.5, 524, 51.5, 48.5, 0.8, 17.0,8.8 +NA,NA,a-curv-i5,2016-17,Hopedale - Memorial,01380010, 232, 21.6, 553, 44.8, 55.2, 1.8, 21.7,11 +NA,NA,a-curv-i5,2016-17,Hopedale - Park Street School,01380003, 6, 14.0, 82, 48.8, 51.2, 0.0, 28.0,19.5 +NA,NA,a-curv-i5,2016-17,Hopkinton - Center,01390005, 99, 20.9, 457, 51.0, 49.0, 9.8, 8.5,3.5 +NA,NA,a-curv-i5,2016-17,Hopkinton - Elmwood,01390010, 144, 20.9, 495, 45.7, 54.3, 4.8, 10.5,3 +NA,NA,a-curv-i5,2016-17,Hopkinton - Hopkins Elementary School,01390015, 232, 24.2, 506, 49.4, 50.6, 1.2, 11.9,4.5 +NA,NA,a-curv-i5,2016-17,Hopkinton - Hopkinton High,01390505, 826, 17.5," 1,091", 51.6, 48.4, 0.5, 11.8,3.8 +NA,NA,a-curv-i5,2016-17,Hopkinton - Hopkinton Middle School,01390305, 515, 22.2, 872, 52.3, 47.7, 0.5, 13.5,3.4 +NA,NA,a-curv-i5,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 9, 9.0, 71, 42.3, 57.7, 16.9, 46.5,12.7 +NA,NA,a-curv-i5,2016-17,Hudson - C A Farley,01410030, 222, 19.1, 492, 52.8, 47.2, 14.0, 13.2,24.2 +NA,NA,a-curv-i5,2016-17,Hudson - David J. Quinn Middle School,01410410, 437, 18.7, 659, 52.8, 47.2, 6.7, 17.8,19.6 +NA,NA,a-curv-i5,2016-17,Hudson - Forest Avenue Elementary,01410015, 142, 21.0, 336, 47.6, 52.4, 13.7, 14.0,17.3 +NA,NA,a-curv-i5,2016-17,Hudson - Hudson High,01410505, 546, 14.5, 948, 50.6, 49.4, 5.5, 15.1,17.4 +NA,NA,a-curv-i5,2016-17,Hudson - Mulready Elementary,01410007, 120, 18.2, 253, 51.0, 49.0, 9.1, 21.3,20.9 +NA,NA,a-curv-i5,2016-17,Hull - Hull High,01420505, 253, 11.0, 309, 43.0, 57.0, 1.0, 17.2,24.9 +NA,NA,a-curv-i5,2016-17,Hull - Lillian M Jacobs,01420015, 176, 18.8, 425, 46.4, 53.6, 0.5, 17.6,30.1 +NA,NA,a-curv-i5,2016-17,Hull - Memorial Middle,01420305, 122, 14.8, 205, 46.3, 53.7, 1.0, 15.1,26.8 +NA,NA,a-curv-i5,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 481, 18.1, 793, 52.0, 48.0, 2.8, 18.9,9 +NA,NA,a-curv-i5,2016-17,Ipswich - Ipswich High,01440505, 378, 12.3, 548, 50.5, 49.3, 1.1, 12.0,9.7 +NA,NA,a-curv-i5,2016-17,Ipswich - Ipswich Middle School,01440305, 226, 22.0, 458, 51.5, 48.5, 0.7, 13.1,10.7 +NA,NA,a-curv-i5,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 174, 19.6, 404, 49.5, 50.5, 5.4, 18.8,10.9 +NA,NA,a-curv-i5,2016-17,Ipswich - Winthrop,01440015, 191, 18.3, 388, 47.2, 52.8, 4.9, 19.1,17 +NA,NA,a-curv-i5,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 78, 37.9, 503, 45.1, 54.9, 32.6, 22.7,60.6 +NA,NA,a-curv-i5,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 363, 23.4," 1,191", 51.0, 49.0, 28.0, 13.1,46.8 +NA,NA,a-curv-i5,2016-17,King Philip - King Philip Middle School,06900510, 369, 20.7, 779, 47.4, 52.5, 0.1, 14.1,6.5 +NA,NA,a-curv-i5,2016-17,King Philip - King Philip Regional High,06900505, 500, 18.9," 1,317", 46.9, 53.1, 0.4, 11.3,7.4 +NA,NA,a-curv-i5,2016-17,Kingston - Kingston Elementary,01450005, 157, 19.6, 438, 47.7, 52.3, 2.7, 13.7,15.5 +NA,NA,a-curv-i5,2016-17,Kingston - Kingston Intermediate,01450020, 234, 20.9, 588, 48.0, 52.0, 1.0, 17.2,16 +NA,NA,a-curv-i5,2016-17,Lanesborough - Lanesborough Elementary,01480005, 117, 16.9, 204, 54.4, 45.6, 0.5, 22.5,20.1 +NA,NA,a-curv-i5,2016-17,Lawrence - Alexander B Bruce,01490015, 150, 21.8, 529, 51.6, 48.4, 32.1, 17.2,61.2 +NA,NA,a-curv-i5,2016-17,Lawrence - Arlington Middle School,01490017, 316, 21.9, 596, 50.7, 49.3, 40.1, 13.4,63.3 +NA,NA,a-curv-i5,2016-17,Lawrence - Community Day Arlington,01490009, 96, 24.4, 582, 50.5, 49.5, 53.4, 12.7,66 +NA,NA,a-curv-i5,2016-17,Lawrence - Edward F. Parthum,01490053, 206, 22.5, 639, 48.4, 51.6, 33.2, 14.1,63.2 +NA,NA,a-curv-i5,2016-17,Lawrence - Emily G Wetherbee,01490080, 216, 23.2, 722, 51.0, 49.0, 25.1, 19.5,63.2 +NA,NA,a-curv-i5,2016-17,Lawrence - Francis M Leahy,01490040, 115, 24.0, 511, 46.6, 53.4, 40.3, 10.2,64.8 +NA,NA,a-curv-i5,2016-17,Lawrence - Frost Middle School,01490525, 243, 24.6, 496, 47.6, 52.4, 12.9, 12.9,48.8 +NA,NA,a-curv-i5,2016-17,Lawrence - Gerard A. Guilmette,01490022, 161, 23.3, 525, 49.7, 50.3, 34.5, 17.1,70.1 +NA,NA,a-curv-i5,2016-17,Lawrence - Guilmette Middle School,01490025, 317, 16.0, 503, 51.1, 48.9, 20.9, 18.1,66.6 +7.073684210526315,5,a-curv-i5,2016-17,Lawrence - High School Learning Center,01490536, 152, 8.1, 131, 35.9, 64.1, 32.1, 13.7,56.5,176 +NA,NA,a-curv-i5,2016-17,Lawrence - James F Hennessey,01490020, 36, 18.8, 401, 46.9, 53.1, 49.1, 22.7,69.1 +NA,NA,a-curv-i5,2016-17,Lawrence - John Breen School,01490003, 24, 14.6, 346, 42.8, 57.2, 36.1, 22.5,63.6 +NA,NA,a-curv-i5,2016-17,Lawrence - John K Tarbox,01490075, 75, 21.1, 341, 45.7, 54.3, 45.2, 8.8,72.4 +NA,NA,a-curv-i5,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 8, 21.6, 173, 46.8, 53.2, 32.4, 8.1,66.5 +NA,NA,a-curv-i5,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 42, 17.1, 187, 43.9, 56.1, 25.1, 13.9,60.4 +5.996960486322189,5,a-curv-i5,2016-17,Lawrence - Lawrence High School,01490515," 1,316", 19.9," 3,333", 48.2, 51.8, 33.9, 16.5,53.9,3295 +NA,NA,a-curv-i5,2016-17,Lawrence - Oliver Partnership School,01490048, 100, 25.4, 508, 49.6, 50.4, 37.0, 14.8,70.9 +NA,NA,a-curv-i5,2016-17,Lawrence - Parthum Middle School,01490027, 243, 21.6, 541, 48.6, 51.4, 24.2, 14.4,61.2 +NA,NA,a-curv-i5,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 188, 16.2, 172, 41.9, 58.1, 21.5, 24.4,65.7 +NA,NA,a-curv-i5,2016-17,Lawrence - Robert Frost,01490018, 150, 24.0, 607, 47.6, 52.4, 23.9, 9.7,54.2 +NA,NA,a-curv-i5,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 18, 10.8, 195, 35.4, 64.6, 43.1, 49.7,59.5 +NA,NA,a-curv-i5,2016-17,Lawrence - School for Exceptional Studies,01490537, 251, 4.6, 170, 20.0, 80.0, 15.9, 97.6,81.8 +NA,NA,a-curv-i5,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 241, 23.4, 744, 47.0, 53.0, 38.4, 19.5,68 +NA,NA,a-curv-i5,2016-17,Lawrence - Spark Academy,01490085, 223, 17.0, 480, 51.9, 48.1, 30.2, 24.6,63.8 +NA,NA,a-curv-i5,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 96, 24.6, 337, 47.5, 52.5, 38.3, 17.2,63.2 +NA,NA,a-curv-i5,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 77, 24.9, 337, 46.9, 53.1, 30.0, 17.8,63.2 +NA,NA,a-curv-i5,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 320, 18.1, 714, 53.2, 46.8, 26.5, 7.1,53.2 +NA,NA,a-curv-i5,2016-17,Lee - Lee Elementary,01500025, 105, 17.9, 349, 51.3, 48.7, 4.9, 12.3,38.1 +6.855737704918033,5,a-curv-i5,2016-17,Lee - Lee Middle/High School,01500505, 244, 11.8, 339, 49.9, 50.1, 1.5, 12.1,27.7,349 +NA,NA,a-curv-i5,2016-17,Leicester - Leicester High,01510505, 202, 18.6, 457, 49.2, 50.8, 2.0, 12.9,19.7 +NA,NA,a-curv-i5,2016-17,Leicester - Leicester Memorial Elementary,01510005, 119, 21.1, 355, 43.4, 56.6, 1.7, 17.2,22.3 +NA,NA,a-curv-i5,2016-17,Leicester - Leicester Middle,01510015, 188, 19.9, 409, 49.4, 50.6, 2.9, 13.7,21.5 +NA,NA,a-curv-i5,2016-17,Leicester - Leicester Primary School,01510010, 145, 17.9, 360, 43.1, 56.9, 3.9, 18.9,29.2 +NA,NA,a-curv-i5,2016-17,Lenox - Lenox Memorial High,01520505, 359, 12.0, 452, 54.2, 45.8, 2.9, 7.7,17 +NA,NA,a-curv-i5,2016-17,Lenox - Morris,01520015, 146, 16.9, 319, 45.1, 54.9, 4.4, 9.1,15.7 +NA,NA,a-curv-i5,2016-17,Leominster - Bennett,01530003, 11, 11.8, 130, 41.5, 58.5, 0.0, 63.1,43.1 +NA,NA,a-curv-i5,2016-17,Leominster - Center For Technical Education Innovation,01530605, 134, 14.4, 673, 37.0, 63.0, 2.5, 23.6,32.5 +NA,NA,a-curv-i5,2016-17,Leominster - Fall Brook,01530007, 270, 24.5, 723, 50.1, 49.9, 20.7, 21.3,35.1 +NA,NA,a-curv-i5,2016-17,Leominster - Frances Drake School,01530010, 294, 18.0, 578, 49.3, 50.7, 12.6, 23.2,50.3 +NA,NA,a-curv-i5,2016-17,Leominster - Johnny Appleseed,01530025, 300, 20.4, 642, 48.1, 51.9, 12.1, 22.3,36.9 +NA,NA,a-curv-i5,2016-17,Leominster - Leominster Center for Excellence,01530515, 36, 12.7, 42, 59.5, 40.5, 2.4, 45.2,45.2 +6.784895104895105,5,a-curv-i5,2016-17,Leominster - Leominster High School,01530505, 715, 17.7," 1,632", 48.8, 51.2, 5.7, 18.0,29.5,1086 +NA,NA,a-curv-i5,2016-17,Leominster - Lincoln School,01530005, 5, 10.8, 54, 27.8, 72.2, 0.0, 61.1,42.6 +NA,NA,a-curv-i5,2016-17,Leominster - Northwest,01530030, 292, 21.9, 695, 48.5, 51.5, 11.1, 21.7,40.6 +NA,NA,a-curv-i5,2016-17,Leominster - Priest Street,01530040, 56, 16.3, 132, 49.2, 50.8, 21.2, 19.7,54.5 +NA,NA,a-curv-i5,2016-17,Leominster - Samoset School,01530045, 434, 14.4, 487, 47.0, 53.0, 1.0, 25.3,28.5 +NA,NA,a-curv-i5,2016-17,Leominster - Sky View Middle School,01530320, 610, 19.8, 912, 47.9, 52.1, 8.3, 22.5,33 +NA,NA,a-curv-i5,2016-17,Leverett - Leverett Elementary,01540005, 45, 16.2, 129, 42.6, 57.4, 0.0, 13.2,17.8 +NA,NA,a-curv-i5,2016-17,Lexington - Bowman,01550008, 119, 21.3, 568, 49.1, 50.9, 15.8, 10.9,5.5 +NA,NA,a-curv-i5,2016-17,Lexington - Bridge,01550006, 115, 22.7, 595, 49.1, 50.9, 10.8, 9.7,5 +NA,NA,a-curv-i5,2016-17,Lexington - Fiske,01550015, 100, 21.5, 491, 46.0, 54.0, 12.8, 15.9,3.7 +NA,NA,a-curv-i5,2016-17,Lexington - Harrington,01550030, 98, 21.5, 476, 49.2, 50.8, 5.9, 15.1,4.8 +NA,NA,a-curv-i5,2016-17,Lexington - Jonas Clarke Middle,01550305, 474, 20.3, 903, 48.2, 51.8, 3.8, 12.6,5.2 +NA,NA,a-curv-i5,2016-17,Lexington - Joseph Estabrook,01550010, 110, 22.1, 558, 52.2, 47.8, 12.5, 10.9,5.7 +NA,NA,a-curv-i5,2016-17,Lexington - Lexington Children's Place,01550001, 6, 14.8, 89, 34.8, 65.2, 0.0, 49.4,14.6 +NA,NA,a-curv-i5,2016-17,Lexington - Lexington High,01550505," 1,192", 19.4," 2,208", 49.5, 50.5, 3.1, 10.0,5.4 +NA,NA,a-curv-i5,2016-17,Lexington - Maria Hastings,01550035, 94, 22.5, 479, 48.0, 52.0, 19.0, 16.7,5.6 +NA,NA,a-curv-i5,2016-17,Lexington - Wm Diamond Middle,01550310, 471, 19.9, 870, 50.6, 49.4, 3.8, 13.3,3 +NA,NA,a-curv-i5,2016-17,Lincoln - Hanscom Middle,01570305, 179, 17.0, 252, 48.4, 51.6, 2.4, 17.5,2 +NA,NA,a-curv-i5,2016-17,Lincoln - Hanscom Primary,01570006, 94, 16.8, 302, 51.0, 49.0, 4.6, 20.5,1 +NA,NA,a-curv-i5,2016-17,Lincoln - Lincoln School,01570025, 327, 16.8, 642, 50.6, 49.4, 2.8, 21.3,8.4 +NA,NA,a-curv-i5,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,243", 18.7," 1,578", 50.3, 49.6, 0.2, 15.4,5.2 +6.389655172413794,5,a-curv-i5,2016-17,Littleton - Littleton High School,01580505, 232, 15.4, 467, 50.7, 49.3, 1.3, 18.0,3.9,467 +NA,NA,a-curv-i5,2016-17,Littleton - Littleton Middle School,01580305, 199, 17.5, 353, 53.8, 46.2, 0.8, 18.7,9.1 +NA,NA,a-curv-i5,2016-17,Littleton - Russell St Elementary,01580015, 187, 22.5, 383, 52.0, 48.0, 1.6, 18.3,9.7 +NA,NA,a-curv-i5,2016-17,Littleton - Shaker Lane Elementary,01580005, 78, 20.4, 451, 47.2, 52.8, 3.8, 18.4,9.3 +NA,NA,a-curv-i5,2016-17,Longmeadow - Blueberry Hill,01590005, 169, 19.0, 426, 50.0, 50.0, 2.6, 16.4,5.9 +NA,NA,a-curv-i5,2016-17,Longmeadow - Center,01590010, 173, 18.4, 407, 48.9, 51.1, 0.2, 21.9,5.9 +NA,NA,a-curv-i5,2016-17,Longmeadow - Glenbrook Middle,01590017, 169, 19.5, 335, 47.5, 52.5, 2.7, 19.7,7.8 +NA,NA,a-curv-i5,2016-17,Longmeadow - Longmeadow High,01590505, 377, 18.5, 937, 50.2, 49.8, 0.4, 16.3,5.5 +NA,NA,a-curv-i5,2016-17,Longmeadow - Williams Middle,01590305, 192, 18.2, 344, 45.1, 54.9, 0.0, 20.1,4.9 +NA,NA,a-curv-i5,2016-17,Longmeadow - Wolf Swamp Road,01590025, 138, 19.9, 397, 47.6, 52.4, 1.8, 23.2,11.1 +NA,NA,a-curv-i5,2016-17,Lowell - Abraham Lincoln,01600020, 261, 19.9, 516, 43.8, 56.2, 37.2, 17.6,63.4 +NA,NA,a-curv-i5,2016-17,Lowell - B.F. Butler Middle School,01600310, 284, 16.2, 553, 52.3, 47.7, 25.1, 15.6,54.8 +NA,NA,a-curv-i5,2016-17,Lowell - Bartlett Community Partnership,01600090, 257, 19.3, 518, 48.8, 51.2, 28.0, 25.3,58.5 +NA,NA,a-curv-i5,2016-17,Lowell - Charles W Morey,01600030, 275, 19.2, 532, 48.1, 51.9, 40.0, 18.6,44.7 +NA,NA,a-curv-i5,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 228, 23.9, 538, 45.9, 54.1, 43.3, 17.1,67.1 +NA,NA,a-curv-i5,2016-17,Lowell - Dr An Wang School,01600345, 346, 22.8, 695, 49.5, 50.5, 26.6, 15.3,47.5 +NA,NA,a-curv-i5,2016-17,Lowell - Dr Gertrude Bailey,01600002, 283, 18.9, 508, 44.3, 55.7, 23.0, 18.3,49.8 +NA,NA,a-curv-i5,2016-17,Lowell - Greenhalge,01600015, 238, 20.6, 511, 48.7, 51.3, 31.7, 16.4,66.3 +NA,NA,a-curv-i5,2016-17,Lowell - Henry J Robinson Middle,01600330, 264, 20.8, 638, 47.3, 52.7, 28.4, 16.6,62.1 +NA,NA,a-curv-i5,2016-17,Lowell - James S Daley Middle School,01600315, 341, 20.9, 702, 49.0, 51.0, 20.4, 17.8,39.7 +NA,NA,a-curv-i5,2016-17,Lowell - James Sullivan Middle School,01600340, 293, 21.9, 696, 48.7, 51.3, 29.2, 16.4,58.2 +NA,NA,a-curv-i5,2016-17,Lowell - John J Shaughnessy,01600050, 294, 17.0, 487, 49.9, 50.1, 29.4, 20.7,55 +NA,NA,a-curv-i5,2016-17,Lowell - Joseph McAvinnue,01600010, 272, 18.9, 490, 46.7, 53.3, 35.1, 17.8,57.8 +NA,NA,a-curv-i5,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 368, 19.6, 681, 48.2, 51.8, 39.5, 13.5,62.7 +NA,NA,a-curv-i5,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 63, 2.8, 22, 4.5, 95.5, 4.5, 100.0,95.5 +NA,NA,a-curv-i5,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 97, 4.2, 46, 32.6, 67.4, 6.5, 100.0,93.5 +NA,NA,a-curv-i5,2016-17,Lowell - Lowell High,01600505," 2,060", 20.4," 3,200", 50.0, 50.0, 12.1, 10.0,42.3 +NA,NA,a-curv-i5,2016-17,Lowell - Moody Elementary,01600027, 128, 19.8, 254, 50.8, 49.2, 40.2, 11.0,68.1 +NA,NA,a-curv-i5,2016-17,Lowell - Pawtucketville Memorial,01600036, 283, 19.2, 515, 46.2, 53.8, 23.1, 16.3,39.8 +NA,NA,a-curv-i5,2016-17,Lowell - Peter W Reilly,01600040, 313, 19.8, 556, 51.4, 48.6, 30.4, 14.2,48.9 +NA,NA,a-curv-i5,2016-17,Lowell - Pyne Arts,01600018, 374, 18.0, 510, 47.6, 52.4, 18.6, 22.0,43.7 +NA,NA,a-curv-i5,2016-17,Lowell - Rogers STEM Academy,01600005, 317, 19.0, 601, 47.3, 52.7, 33.1, 15.6,61.9 +NA,NA,a-curv-i5,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 286, 17.4, 499, 49.9, 50.1, 23.4, 17.8,58.9 +NA,NA,a-curv-i5,2016-17,Lowell - The Career Academy,01600515, 110, 8.7, 111, 34.2, 65.8, 11.7, 14.4,73 +NA,NA,a-curv-i5,2016-17,Lowell - Washington,01600055, 160, 15.7, 260, 43.1, 56.9, 32.3, 20.4,45 +NA,NA,a-curv-i5,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 238, 21.5, 808, 51.5, 48.5, 48.9, 17.2,43.1 +NA,NA,a-curv-i5,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 150, 12.3, 105, 49.5, 50.5, 1.0, 28.6,66.7 +NA,NA,a-curv-i5,2016-17,Ludlow - Chapin Street Elementary School,01610020, 150, 17.3, 355, 54.4, 45.6, 6.5, 16.6,32.7 +NA,NA,a-curv-i5,2016-17,Ludlow - East Street Elementary School,01610010, 144, 13.9, 390, 45.4, 54.6, 7.9, 17.4,31.3 +NA,NA,a-curv-i5,2016-17,Ludlow - Ludlow Senior High,01610505, 432, 14.6, 892, 50.3, 49.7, 1.1, 14.0,19.6 +NA,NA,a-curv-i5,2016-17,Ludlow - Paul R Baird Middle,01610305, 300, 19.1, 680, 51.5, 48.5, 1.6, 15.4,22.5 +NA,NA,a-curv-i5,2016-17,Ludlow - Veterans Park Elementary,01610023, 251, 17.9, 365, 43.8, 56.2, 0.8, 14.0,23.6 +NA,NA,a-curv-i5,2016-17,Lunenburg - Lunenburg High,01620505, 225, 14.7, 435, 51.7, 48.3, 1.4, 12.6,12.2 +NA,NA,a-curv-i5,2016-17,Lunenburg - Lunenburg Middle School,01620305, 203, 20.2, 397, 43.1, 56.9, 0.5, 14.9,16.4 +NA,NA,a-curv-i5,2016-17,Lunenburg - Lunenburg Primary School,01620010, 169, 23.4, 402, 48.0, 52.0, 2.7, 22.9,15.9 +NA,NA,a-curv-i5,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 172, 22.4, 401, 49.6, 50.4, 2.0, 16.2,16 +NA,NA,a-curv-i5,2016-17,Lynn - A Drewicz Elementary,01630016, 86, 22.9, 487, 49.1, 50.9, 33.5, 11.1,54.6 +NA,NA,a-curv-i5,2016-17,Lynn - Aborn,01630011, 50, 22.3, 270, 51.5, 48.5, 6.7, 8.5,37.8 +NA,NA,a-curv-i5,2016-17,Lynn - Breed Middle School,01630405, 475, 25.1," 1,309", 48.0, 52.0, 14.3, 15.4,53.5 +NA,NA,a-curv-i5,2016-17,Lynn - Brickett Elementary,01630020, 67, 20.9, 275, 47.6, 52.4, 20.0, 8.7,58.5 +NA,NA,a-curv-i5,2016-17,Lynn - Capt William G Shoemaker,01630090, 94, 16.0, 309, 39.2, 60.8, 3.2, 41.1,38.5 +NA,NA,a-curv-i5,2016-17,Lynn - Classical High,01630505, 559, 19.7," 1,550", 47.4, 52.6, 15.8, 11.4,44.9 +NA,NA,a-curv-i5,2016-17,Lynn - Cobbet Elementary,01630035, 137, 23.4, 631, 49.1, 50.9, 41.0, 11.1,63.7 +NA,NA,a-curv-i5,2016-17,Lynn - E J Harrington,01630045, 157, 21.4, 667, 48.1, 51.9, 28.2, 19.8,60.7 +NA,NA,a-curv-i5,2016-17,Lynn - Early Childhood Center,01630004, 80, 19.0, 324, 48.1, 51.9, 28.7, 28.7,61.4 +NA,NA,a-curv-i5,2016-17,Lynn - Edward A Sisson,01630095, 102, 21.9, 436, 47.2, 52.8, 11.9, 17.4,40.8 +6.696296296296296,5,a-curv-i5,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 189, 10.1, 258, 34.1, 65.9, 62.0, 17.8,39.5,308 +NA,NA,a-curv-i5,2016-17,Lynn - Hood,01630055, 91, 21.2, 473, 49.3, 50.7, 22.0, 14.0,56.4 +NA,NA,a-curv-i5,2016-17,Lynn - Ingalls,01630060, 114, 24.7, 691, 48.2, 51.8, 32.6, 13.7,59.8 +NA,NA,a-curv-i5,2016-17,Lynn - Julia F Callahan,01630030, 104, 18.1, 485, 45.2, 54.8, 12.6, 25.8,57.3 +NA,NA,a-curv-i5,2016-17,Lynn - Lincoln-Thomson,01630070, 60, 20.5, 249, 49.0, 51.0, 16.9, 16.9,41.4 +NA,NA,a-curv-i5,2016-17,Lynn - Lynn English High,01630510, 647, 18.4," 1,659", 48.2, 51.8, 20.4, 11.5,44.4 +NA,NA,a-curv-i5,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 658, 17.0, 934, 42.8, 57.2, 11.8, 24.3,50.7 +NA,NA,a-curv-i5,2016-17,Lynn - Lynn Woods,01630075, 42, 20.2, 164, 48.8, 51.2, 2.4, 19.5,28 +NA,NA,a-curv-i5,2016-17,Lynn - Pickering Middle,01630420, 301, 20.9, 617, 47.6, 52.4, 3.9, 20.3,36.3 +NA,NA,a-curv-i5,2016-17,Lynn - Robert L Ford,01630050, 90, 23.7, 519, 49.9, 50.1, 36.2, 10.4,56.5 +NA,NA,a-curv-i5,2016-17,Lynn - Sewell-Anderson,01630085, 67, 17.8, 291, 42.6, 57.4, 15.5, 22.0,39.9 +NA,NA,a-curv-i5,2016-17,Lynn - Thurgood Marshall Mid,01630305, 461, 23.4," 1,180", 47.7, 52.3, 15.8, 14.2,57.5 +NA,NA,a-curv-i5,2016-17,Lynn - Tracy,01630100, 97, 22.5, 426, 50.2, 49.8, 34.0, 6.3,58.2 +NA,NA,a-curv-i5,2016-17,Lynn - Washington Elementary School,01630005, 98, 22.9, 462, 50.0, 50.0, 35.3, 15.8,65.6 +NA,NA,a-curv-i5,2016-17,Lynn - William R Fallon,01630080, 24, 5.6, 54, 11.1, 88.9, 1.9, 94.4,70.4 +NA,NA,a-curv-i5,2016-17,Lynn - Wm P Connery,01630040, 106, 24.9, 650, 49.4, 50.6, 34.6, 10.6,60.6 +NA,NA,a-curv-i5,2016-17,Lynnfield - Huckleberry Hill,01640010, 84, 20.2, 425, 53.6, 46.4, 3.3, 15.8,7.1 +NA,NA,a-curv-i5,2016-17,Lynnfield - Lynnfield High,01640505, 275, 15.9, 627, 51.0, 49.0, 0.0, 15.2,8.3 +NA,NA,a-curv-i5,2016-17,Lynnfield - Lynnfield Middle School,01640405, 334, 19.3, 705, 49.1, 50.9, 0.0, 22.3,7 +NA,NA,a-curv-i5,2016-17,Lynnfield - Lynnfield Preschool,01640005, 4, 13.5, 54, 46.3, 53.7, 0.0, 55.6,11.1 +NA,NA,a-curv-i5,2016-17,Lynnfield - Summer Street,01640020, 88, 19.1, 421, 41.1, 58.9, 1.0, 15.7,3.8 +NA,NA,a-curv-i5,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 335, 20.8," 1,122", 52.4, 47.6, 34.9, 18.8,55.8 +NA,NA,a-curv-i5,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 24, 16.3, 49, 49.0, 51.0, 0.0, 0.0,2 +NA,NA,a-curv-i5,2016-17,Malden - Beebe,01650003, 346, 22.3, 862, 51.4, 48.6, 24.9, 13.0,39.1 +NA,NA,a-curv-i5,2016-17,Malden - Ferryway,01650013, 371, 23.5, 922, 50.8, 49.2, 20.8, 12.1,44.1 +NA,NA,a-curv-i5,2016-17,Malden - Forestdale,01650027, 305, 18.7, 572, 48.1, 51.9, 11.5, 25.2,36.4 +NA,NA,a-curv-i5,2016-17,Malden - Linden,01650047, 496, 17.8, 916, 46.4, 53.5, 12.9, 23.4,40 +NA,NA,a-curv-i5,2016-17,Malden - Malden Early Learning Center,01650049, 55, 6.7, 354, 42.4, 57.6, 13.0, 40.1,39.5 +NA,NA,a-curv-i5,2016-17,Malden - Malden High,01650505, 689, 19.2," 1,880", 49.1, 50.9, 16.8, 13.3,38.4 +NA,NA,a-curv-i5,2016-17,Malden - Salemwood,01650057, 690, 18.6," 1,263", 47.2, 52.8, 40.6, 8.6,49 +NA,NA,a-curv-i5,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 71, 19.2, 233, 49.4, 50.6, 2.1, 9.0,12 +6.838356164383562,5,a-curv-i5,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 292, 12.7, 426, 56.1, 43.9, 1.2, 9.6,6.8,424 +NA,NA,a-curv-i5,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 196, 20.1, 388, 49.0, 51.0, 0.3, 12.4,6.2 +NA,NA,a-curv-i5,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 107, 19.5, 370, 48.4, 51.6, 0.0, 9.7,5.4 +NA,NA,a-curv-i5,2016-17,Mansfield - Everett W Robinson,01670007, 144, 20.6, 712, 46.6, 53.4, 4.2, 12.1,13.8 +NA,NA,a-curv-i5,2016-17,Mansfield - Harold L Qualters Middle,01670035, 422, 18.9," 1,015", 48.2, 51.8, 0.7, 16.1,12.2 +NA,NA,a-curv-i5,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 197, 21.5, 836, 47.2, 52.8, 2.0, 15.4,14.8 +NA,NA,a-curv-i5,2016-17,Mansfield - Mansfield High,01670505, 745, 15.9," 1,309", 50.3, 49.7, 0.8, 8.6,9.1 +NA,NA,a-curv-i5,2016-17,Mansfield - Roland Green School,01670003, 6, 17.8, 107, 42.1, 57.9, 0.0, 50.5,23.4 +NA,NA,a-curv-i5,2016-17,Marblehead - Elbridge Gerry,01680015, 64, 19.4, 154, 45.5, 54.5, 6.5, 9.1,11 +NA,NA,a-curv-i5,2016-17,Marblehead - Glover,01680020, 124, 19.6, 370, 43.5, 56.5, 5.7, 24.1,7.6 +NA,NA,a-curv-i5,2016-17,Marblehead - L H Coffin,01680010, 58, 20.4, 169, 49.7, 50.3, 5.9, 15.4,13.6 +NA,NA,a-curv-i5,2016-17,Marblehead - Malcolm L Bell,01680005, 111, 18.2, 270, 44.8, 55.2, 7.8, 14.4,12.6 +NA,NA,a-curv-i5,2016-17,Marblehead - Marblehead High,01680505, 735, 13.3," 1,061", 53.6, 46.4, 1.5, 19.4,9 +NA,NA,a-curv-i5,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 280, 19.9, 509, 52.3, 47.7, 2.6, 21.0,8.3 +NA,NA,a-curv-i5,2016-17,Marblehead - Village School,01680016, 228, 29.2, 674, 47.2, 52.8, 5.5, 20.8,9.3 +NA,NA,a-curv-i5,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 96, 20.3, 230, 43.0, 57.0, 4.3, 25.2,4.8 +NA,NA,a-curv-i5,2016-17,Marion - Sippican,01690005, 166, 19.5, 461, 48.4, 51.6, 0.7, 20.0,20 +NA,NA,a-curv-i5,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 661, 22.4," 1,372", 48.4, 51.6, 14.8, 20.8,33.8 +NA,NA,a-curv-i5,2016-17,Marlborough - Charles Jaworek School,01700030, 252, 24.1, 867, 48.1, 51.9, 32.8, 13.6,33.1 +NA,NA,a-curv-i5,2016-17,Marlborough - Early Childhood Center,01700006, 18, 12.5, 188, 39.9, 60.1, 26.6, 43.6,26.1 +NA,NA,a-curv-i5,2016-17,Marlborough - Francis J Kane,01700008, 203, 22.8, 662, 47.9, 52.1, 30.7, 18.3,32 +NA,NA,a-curv-i5,2016-17,Marlborough - Marlborough High,01700505, 659, 15.7," 1,164", 48.9, 51.1, 15.0, 15.5,27.2 +NA,NA,a-curv-i5,2016-17,Marlborough - Richer,01700025, 175, 21.9, 548, 48.9, 51.1, 35.6, 13.0,35.8 +NA,NA,a-curv-i5,2016-17,Marshfield - Daniel Webster,01710015, 70, 19.0, 390, 49.5, 50.5, 1.5, 19.2,16.2 +NA,NA,a-curv-i5,2016-17,Marshfield - Eames Way School,01710005, 52, 19.8, 257, 38.5, 61.5, 0.8, 16.7,7.8 +NA,NA,a-curv-i5,2016-17,Marshfield - Furnace Brook Middle,01710310, 540, 18.9," 1,028", 47.3, 52.7, 0.9, 15.9,12.8 +NA,NA,a-curv-i5,2016-17,Marshfield - Gov Edward Winslow,01710020, 88, 19.2, 422, 50.2, 49.8, 0.2, 15.9,11.4 +NA,NA,a-curv-i5,2016-17,Marshfield - Marshfield High,01710505, 574, 19.0," 1,374", 49.9, 50.1, 0.6, 13.8,10.3 +NA,NA,a-curv-i5,2016-17,Marshfield - Martinson Elementary,01710025, 85, 19.1, 450, 48.7, 51.3, 4.7, 18.9,13.8 +NA,NA,a-curv-i5,2016-17,Marshfield - South River,01710010, 72, 20.2, 364, 48.9, 51.1, 0.5, 17.0,8.8 +NA,NA,a-curv-i5,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 743, 12.2, 666, 47.4, 52.6, 8.3, 17.6,18.5 +NA,NA,a-curv-i5,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 76, 16.3, 183, 56.8, 43.2, 3.8, 27.9,27.9 +NA,NA,a-curv-i5,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 144, 19.8, 357, 49.0, 51.0, 16.2, 21.8,69.7 +6.347130434782609,5,a-curv-i5,2016-17,Masconomet - Masconomet Regional High School,07050505, 575, 16.8," 1,179", 50.2, 49.8, 0.2, 13.3,6.1,1188 +NA,NA,a-curv-i5,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 315, 20.3, 654, 52.8, 47.2, 0.5, 17.4,5 +NA,NA,a-curv-i5,2016-17,Mashpee - Kenneth Coombs School,01720005, 200, 18.1, 434, 47.7, 52.3, 5.8, 15.9,33.6 +NA,NA,a-curv-i5,2016-17,Mashpee - Mashpee High,01720505, 300, 11.8, 423, 45.9, 54.1, 1.2, 15.1,25.1 +NA,NA,a-curv-i5,2016-17,Mashpee - Mashpee Middle School,01720020, 143, 17.1, 275, 48.7, 51.3, 1.5, 16.7,24 +NA,NA,a-curv-i5,2016-17,Mashpee - Quashnet School,01720035, 325, 18.2, 519, 50.3, 49.7, 2.9, 17.1,29.5 +NA,NA,a-curv-i5,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Mattapoisett - Center,01730005, 113, 15.3, 238, 47.1, 52.9, 0.8, 16.4,18.9 +NA,NA,a-curv-i5,2016-17,Mattapoisett - Old Hammondtown,01730010, 99, 18.0, 212, 43.9, 56.1, 0.0, 14.6,11.8 +NA,NA,a-curv-i5,2016-17,Maynard - Fowler School,01740305, 259, 19.9, 437, 47.6, 52.4, 3.9, 20.4,18.8 +NA,NA,a-curv-i5,2016-17,Maynard - Green Meadow,01740010, 158, 20.1, 508, 47.8, 52.2, 5.1, 15.9,14.6 +6.605555555555556,5,a-curv-i5,2016-17,Maynard - Maynard High,01740505, 288, 17.1, 514, 50.6, 49.4, 4.1, 18.7,16.7,502 +NA,NA,a-curv-i5,2016-17,Medfield - Dale Street,01750005, 229, 18.0, 371, 48.0, 52.0, 0.5, 11.3,3.2 +NA,NA,a-curv-i5,2016-17,Medfield - Medfield Senior High,01750505, 438, 16.6, 849, 49.9, 50.1, 0.8, 9.7,4.5 +NA,NA,a-curv-i5,2016-17,Medfield - Memorial School,01750003, 180, 22.9, 435, 47.8, 52.2, 2.1, 11.0,6 +NA,NA,a-curv-i5,2016-17,Medfield - Ralph Wheelock School,01750007, 197, 22.8, 352, 45.2, 54.8, 3.1, 13.4,4.5 +NA,NA,a-curv-i5,2016-17,Medfield - Thomas Blake Middle,01750305, 556, 17.8, 634, 50.3, 49.7, 0.8, 11.7,5.4 +NA,NA,a-curv-i5,2016-17,Medford - Brooks School,01760130, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Christopher Columbus,01760140, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Curtis-Tufts,01760510, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - John J McGlynn Elementary School,01760068, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - John J. McGlynn Middle School,01760320, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Medford High,01760505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Medford Vocational Technical High,01760605, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medford - Milton Fuller Roberts,01760150, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Medway - Burke/Memorial Elementary School,01770015, 208, 21.0, 506, 52.8, 47.2, 1.0, 16.0,8.9 +NA,NA,a-curv-i5,2016-17,Medway - John D Mc Govern Elementary,01770013, 81, 20.4, 350, 49.4, 50.6, 2.9, 17.7,9.4 +NA,NA,a-curv-i5,2016-17,Medway - Medway High,01770505, 375, 15.7, 751, 49.3, 50.7, 0.0, 12.1,7.1 +NA,NA,a-curv-i5,2016-17,Medway - Medway Middle,01770305, 320, 19.6, 708, 50.4, 49.6, 1.0, 16.2,9.6 +NA,NA,a-curv-i5,2016-17,Melrose - Early Childhood Center,01780003, 22, 13.7, 300, 47.0, 53.0, 0.0, 16.3,6.3 +NA,NA,a-curv-i5,2016-17,Melrose - Herbert Clark Hoover,01780017, 97, 21.3, 254, 47.6, 52.4, 0.8, 14.6,7.1 +NA,NA,a-curv-i5,2016-17,Melrose - Horace Mann,01780025, 97, 22.4, 265, 55.1, 44.9, 0.4, 12.5,6.8 +NA,NA,a-curv-i5,2016-17,Melrose - Lincoln,01780020, 161, 22.0, 436, 50.0, 50.0, 19.7, 15.1,21.8 +NA,NA,a-curv-i5,2016-17,Melrose - Melrose High,01780505, 402, 18.5, 979, 53.6, 46.4, 1.3, 13.4,12.4 +NA,NA,a-curv-i5,2016-17,Melrose - Melrose Middle,01780305, 539, 18.5, 776, 49.0, 51.0, 2.8, 16.6,8.8 +NA,NA,a-curv-i5,2016-17,Melrose - Roosevelt,01780035, 160, 21.6, 432, 47.7, 52.3, 6.9, 14.1,12.3 +NA,NA,a-curv-i5,2016-17,Melrose - Winthrop,01780050, 145, 21.1, 376, 48.1, 51.9, 1.1, 12.5,7.4 +NA,NA,a-curv-i5,2016-17,Mendon-Upton - Henry P Clough,07100179, 105, 19.1, 423, 48.5, 51.5, 1.7, 12.5,9 +NA,NA,a-curv-i5,2016-17,Mendon-Upton - Memorial School,07100001, 102, 20.3, 440, 44.5, 55.5, 3.4, 15.0,8.9 +NA,NA,a-curv-i5,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 392, 19.3, 788, 51.1, 48.9, 0.5, 16.9,6.7 +NA,NA,a-curv-i5,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 348, 13.8, 596, 54.0, 46.0, 0.2, 12.6,10.1 +NA,NA,a-curv-i5,2016-17,Methuen - Comprehensive Grammar School,01810050, 342, 21.2," 1,141", 50.1, 49.9, 16.2, 18.4,26.4 +NA,NA,a-curv-i5,2016-17,Methuen - Donald P Timony Grammar,01810060, 366, 23.0," 1,379", 47.4, 52.6, 9.4, 19.1,39.6 +NA,NA,a-curv-i5,2016-17,Methuen - Marsh Grammar School,01810030, 369, 21.5," 1,269", 47.1, 52.9, 6.3, 21.5,24.5 +NA,NA,a-curv-i5,2016-17,Methuen - Methuen High,01810505," 1,149", 15.8," 1,911", 47.6, 52.4, 5.3, 8.2,28.8 +NA,NA,a-curv-i5,2016-17,Methuen - Tenney Grammar School,01810055, 372, 21.8," 1,350", 46.2, 53.8, 9.5, 19.6,38.8 +NA,NA,a-curv-i5,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 335, 18.9, 579, 46.5, 53.5, 1.6, 18.1,33.5 +NA,NA,a-curv-i5,2016-17,Middleborough - John T. Nichols Middle,01820305, 441, 24.2, 796, 51.1, 48.9, 0.4, 18.5,27.6 +NA,NA,a-curv-i5,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 300, 19.8, 593, 48.7, 51.3, 1.2, 19.6,26.6 +NA,NA,a-curv-i5,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 78, 16.8, 258, 50.8, 49.2, 1.9, 19.4,27.5 +NA,NA,a-curv-i5,2016-17,Middleborough - Middleborough High,01820505, 469, 13.8, 705, 48.1, 51.9, 0.3, 14.3,20 +NA,NA,a-curv-i5,2016-17,Middleton - Fuller Meadow,01840003, 103, 11.3, 225, 50.7, 49.3, 1.8, 14.2,11.6 +NA,NA,a-curv-i5,2016-17,Middleton - Howe-Manning,01840005, 210, 16.1, 481, 47.0, 53.0, 1.2, 21.2,7.3 +NA,NA,a-curv-i5,2016-17,Milford - Brookside,01850065, 180, 18.9, 496, 49.8, 50.2, 27.2, 12.1,34.3 +NA,NA,a-curv-i5,2016-17,Milford - Memorial,01850010, 170, 19.5, 487, 45.8, 54.2, 31.8, 12.9,34.5 +NA,NA,a-curv-i5,2016-17,Milford - Milford High,01850505, 590, 17.8," 1,165", 50.6, 49.4, 8.8, 13.6,25 +NA,NA,a-curv-i5,2016-17,Milford - Shining Star Early Childhood Center,01850075, 24, 12.8, 150, 34.7, 65.3, 10.0, 40.0,26 +NA,NA,a-curv-i5,2016-17,Milford - Stacy Middle,01850305, 489, 19.5, 981, 47.7, 52.3, 5.7, 16.8,26.8 +NA,NA,a-curv-i5,2016-17,Milford - Woodland,01850090, 410, 19.0, 996, 47.1, 52.9, 15.5, 15.7,33.3 +NA,NA,a-curv-i5,2016-17,Millbury - Elmwood Street,01860017, 173, 21.7, 589, 46.9, 53.1, 5.4, 17.3,26.5 +NA,NA,a-curv-i5,2016-17,Millbury - Millbury Junior/Senior High,01860505, 407, 16.9, 728, 50.8, 49.2, 1.0, 16.8,22.8 +NA,NA,a-curv-i5,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 181, 22.2, 439, 51.3, 48.7, 2.1, 18.7,25.5 +NA,NA,a-curv-i5,2016-17,Millis - Clyde F Brown,01870005, 202, 18.1, 507, 50.9, 49.1, 1.0, 14.2,11.2 +6.313513513513514,5,a-curv-i5,2016-17,Millis - Millis High School,01870505, 185, 14.6, 393, 50.9, 49.1, 0.3, 9.4,10.2,390 +NA,NA,a-curv-i5,2016-17,Millis - Millis Middle,01870020, 242, 18.8, 442, 43.7, 56.3, 0.5, 14.0,13.6 +NA,NA,a-curv-i5,2016-17,Milton - Charles S Pierce Middle,01890410, 523, 18.6, 941, 49.2, 50.8, 1.0, 15.8,9.9 +NA,NA,a-curv-i5,2016-17,Milton - Collicot,01890005, 106, 21.9, 715, 45.7, 54.3, 2.2, 19.3,4.6 +NA,NA,a-curv-i5,2016-17,Milton - Cunningham School,01890007, 81, 21.6, 508, 47.2, 52.8, 4.5, 15.9,6.7 +NA,NA,a-curv-i5,2016-17,Milton - Glover,01890010, 119, 21.3, 589, 47.9, 52.1, 1.4, 15.1,3.9 +NA,NA,a-curv-i5,2016-17,Milton - Milton High,01890505, 509, 16.7," 1,015", 51.1, 48.9, 1.7, 11.3,11.6 +NA,NA,a-curv-i5,2016-17,Milton - Tucker,01890020, 90, 19.8, 424, 49.1, 50.9, 5.4, 10.8,20.5 +NA,NA,a-curv-i5,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 425, 11.8, 570, 32.8, 67.0, 1.1, 47.2,24.2 +NA,NA,a-curv-i5,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 38, 24.6, 253, 49.8, 50.2, 0.4, 22.9,36 +NA,NA,a-curv-i5,2016-17,Mohawk Trail - Colrain Central,07170010, 36, 12.9, 107, 57.9, 42.1, 0.0, 20.6,29 +NA,NA,a-curv-i5,2016-17,Mohawk Trail - Heath Elementary,07170015, 26, 4.0, 32, 53.1, 46.9, 0.0, 28.1,28.1 +7.001183431952663,5,a-curv-i5,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 338, 11.5, 434, 50.2, 49.8, 0.2, 21.9,36.2,422 +NA,NA,a-curv-i5,2016-17,Mohawk Trail - Sanderson Academy,07170020, 37, 14.7, 149, 43.0, 57.0, 0.0, 14.1,24.8 +NA,NA,a-curv-i5,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 161, 16.9, 279, 52.7, 47.3, 6.5, 20.8,27.6 +NA,NA,a-curv-i5,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 296, 18.8, 585, 48.4, 51.6, 5.8, 14.2,25 +6.930357142857143,5,a-curv-i5,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 448, 12.1, 600, 50.0, 50.0, 2.3, 13.8,21.3,599 +NA,NA,a-curv-i5,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 315, 16.0, 430, 51.2, 48.8, 3.0, 20.5,21.9 +NA,NA,a-curv-i5,2016-17,Monson - Granite Valley Middle,01910310, 227, 17.1, 305, 50.8, 49.2, 0.7, 16.4,21.6 +6.546835443037975,5,a-curv-i5,2016-17,Monson - Monson High School,01910505, 158, 14.3, 287, 50.5, 49.5, 0.0, 9.1,16,287 +NA,NA,a-curv-i5,2016-17,Monson - Quarry Hill Community School,01910025, 155, 19.3, 388, 46.9, 53.1, 1.3, 16.8,28.1 +NA,NA,a-curv-i5,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 788, 18.4," 1,410", 45.2, 54.6, 0.4, 13.8,21.9 +NA,NA,a-curv-i5,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 330, 13.6, 554, 49.6, 50.4, 0.2, 14.1,15.7 +NA,NA,a-curv-i5,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 755, 22.8," 1,479", 51.7, 48.3, 1.8, 13.7,16 +NA,NA,a-curv-i5,2016-17,Nahant - Johnson,01960010, 17, 16.6, 150, 50.0, 50.0, 0.0, 8.0,16.7 +NA,NA,a-curv-i5,2016-17,Nantucket - Cyrus Peirce,01970010, 221, 15.2, 336, 51.2, 48.8, 13.4, 14.6,15.5 +NA,NA,a-curv-i5,2016-17,Nantucket - Nantucket Elementary,01970005, 409, 20.1, 744, 47.6, 52.4, 23.4, 11.0,20.4 +NA,NA,a-curv-i5,2016-17,Nantucket - Nantucket High,01970505, 293, 15.1, 548, 47.6, 52.4, 13.9, 16.4,16.2 +NA,NA,a-curv-i5,2016-17,Narragansett - Baldwinville Elementary,07200005, 102, 25.6, 281, 44.8, 55.2, 0.0, 14.9,27.4 +NA,NA,a-curv-i5,2016-17,Narragansett - Narragansett Middle,07200305, 153, 21.0, 425, 47.8, 52.2, 0.0, 16.9,25.2 +NA,NA,a-curv-i5,2016-17,Narragansett - Narragansett Regional High,07200505, 250, 12.4, 388, 51.5, 48.5, 0.0, 12.6,19.6 +NA,NA,a-curv-i5,2016-17,Narragansett - Phillipston Memorial,07200003, 52, 18.6, 170, 46.5, 53.5, 1.2, 31.2,31.2 +NA,NA,a-curv-i5,2016-17,Narragansett - Templeton Center,07200020, 72, 20.0, 160, 43.1, 56.9, 0.0, 15.0,28.1 +NA,NA,a-curv-i5,2016-17,Nashoba - Center School,07250020, 201, 20.7, 604, 49.3, 50.7, 2.5, 15.1,5 +NA,NA,a-curv-i5,2016-17,Nashoba - Florence Sawyer School,07250025, 271, 21.6, 781, 50.8, 49.2, 0.9, 14.6,5 +NA,NA,a-curv-i5,2016-17,Nashoba - Hale,07250310, 138, 20.0, 281, 47.3, 52.7, 1.4, 13.5,3.9 +NA,NA,a-curv-i5,2016-17,Nashoba - Luther Burbank Middle School,07250305, 142, 18.2, 257, 46.7, 53.3, 1.9, 19.8,8.9 +NA,NA,a-curv-i5,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 131, 22.3, 496, 47.4, 52.6, 3.2, 21.6,16.7 +NA,NA,a-curv-i5,2016-17,Nashoba - Nashoba Regional,07250505, 592, 13.8, 998, 51.1, 48.9, 0.7, 13.0,5.3 +6.5468982630272965,5,a-curv-i5,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 403, 13.7, 710, 40.8, 59.0, 0.0, 34.1,18.6,732 +NA,NA,a-curv-i5,2016-17,Natick - Bennett-Hemenway,01980005, 117, 21.6, 620, 49.4, 50.6, 1.3, 17.1,6.9 +NA,NA,a-curv-i5,2016-17,Natick - Brown,01980010, 103, 20.7, 518, 45.9, 54.1, 11.6, 10.6,12.4 +NA,NA,a-curv-i5,2016-17,Natick - J F Kennedy Middle School,01980305, 326, 21.3, 661, 52.3, 47.7, 3.9, 11.6,7.4 +NA,NA,a-curv-i5,2016-17,Natick - Johnson,01980031, 45, 20.2, 226, 43.8, 56.2, 0.0, 12.8,12.8 +NA,NA,a-curv-i5,2016-17,Natick - Lilja Elementary,01980035, 100, 17.8, 423, 51.5, 48.5, 0.5, 8.0,9.9 +NA,NA,a-curv-i5,2016-17,Natick - Memorial,01980043, 84, 20.5, 431, 45.0, 55.0, 0.7, 10.9,5.8 +NA,NA,a-curv-i5,2016-17,Natick - Natick High,01980505," 1,271", 17.9," 1,701", 49.4, 50.6, 1.4, 16.9,9.8 +NA,NA,a-curv-i5,2016-17,Natick - Wilson Middle,01980310, 422, 22.6, 944, 50.2, 49.8, 0.2, 17.8,10.3 +NA,NA,a-curv-i5,2016-17,Nauset - Nauset Regional High,06600505, 567, 13.5, 927, 52.8, 47.2, 1.3, 11.0,18.7 +NA,NA,a-curv-i5,2016-17,Nauset - Nauset Regional Middle,06600305, 388, 17.1, 540, 49.1, 50.9, 0.7, 20.2,20.6 +NA,NA,a-curv-i5,2016-17,Needham - Broadmeadow,01990005, 127, 21.9, 557, 52.1, 47.9, 3.4, 13.1,3.2 +NA,NA,a-curv-i5,2016-17,Needham - High Rock School,01990410, 304, 17.6, 421, 52.5, 47.5, 1.0, 19.2,5.2 +NA,NA,a-curv-i5,2016-17,Needham - Hillside Elementary,01990035, 110, 20.9, 473, 48.2, 51.8, 5.1, 14.2,4.9 +NA,NA,a-curv-i5,2016-17,Needham - John Eliot,01990020, 97, 20.0, 395, 51.4, 48.6, 8.1, 16.5,9.6 +NA,NA,a-curv-i5,2016-17,Needham - Needham High,01990505, 695, 17.4," 1,659", 50.1, 49.9, 0.5, 15.7,5.4 +NA,NA,a-curv-i5,2016-17,Needham - Newman Elementary,01990050, 162, 20.8, 751, 47.5, 52.5, 4.9, 21.7,6.3 +NA,NA,a-curv-i5,2016-17,Needham - Pollard Middle,01990405, 630, 18.7, 880, 51.3, 48.8, 1.6, 19.2,5.5 +NA,NA,a-curv-i5,2016-17,Needham - William Mitchell,01990040, 116, 20.7, 491, 50.7, 49.3, 1.8, 10.6,1.6 +NA,NA,a-curv-i5,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 115, 33.3, 465, 49.7, 50.3, 8.0, 18.3,33.3 +NA,NA,a-curv-i5,2016-17,New Bedford - Abraham Lincoln,02010095, 280, 22.0, 769, 47.7, 52.3, 17.6, 15.7,64.9 +NA,NA,a-curv-i5,2016-17,New Bedford - Alfred J Gomes,02010063, 228, 19.3, 582, 45.4, 54.6, 69.4, 23.2,67.7 +NA,NA,a-curv-i5,2016-17,New Bedford - Betsey B Winslow,02010140, 108, 23.4, 301, 53.5, 46.5, 12.0, 14.0,40.5 +NA,NA,a-curv-i5,2016-17,New Bedford - Carlos Pacheco,02010105, 140, 21.5, 394, 46.4, 53.6, 52.0, 22.1,75.9 +NA,NA,a-curv-i5,2016-17,New Bedford - Casimir Pulaski,02010123, 335, 16.7, 748, 42.4, 57.6, 15.8, 29.8,44 +NA,NA,a-curv-i5,2016-17,New Bedford - Charles S Ashley,02010010, 136, 18.9, 322, 48.1, 51.9, 10.2, 14.6,51.2 +NA,NA,a-curv-i5,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 102, 21.6, 304, 54.9, 45.1, 24.7, 11.5,64.5 +NA,NA,a-curv-i5,2016-17,New Bedford - Ellen R Hathaway,02010075, 143, 16.1, 291, 50.2, 49.8, 57.4, 18.9,64.9 +NA,NA,a-curv-i5,2016-17,New Bedford - Elwyn G Campbell,02010020, 112, 18.8, 285, 50.2, 49.8, 20.0, 24.9,56.1 +NA,NA,a-curv-i5,2016-17,New Bedford - Hayden/McFadden,02010078, 405, 14.2, 662, 48.9, 51.1, 49.8, 25.8,74.2 +NA,NA,a-curv-i5,2016-17,New Bedford - James B Congdon,02010040, 144, 20.3, 365, 55.6, 44.4, 41.6, 13.7,66 +NA,NA,a-curv-i5,2016-17,New Bedford - Jireh Swift,02010130, 88, 21.6, 238, 50.4, 49.6, 14.7, 12.2,46.6 +NA,NA,a-curv-i5,2016-17,New Bedford - John Avery Parker,02010115, 98, 21.4, 284, 43.7, 56.3, 39.1, 14.1,63.7 +NA,NA,a-curv-i5,2016-17,New Bedford - John B Devalles,02010050, 184, 15.9, 366, 48.1, 51.9, 35.5, 18.6,75.4 +NA,NA,a-curv-i5,2016-17,New Bedford - John Hannigan,02010070, 112, 22.1, 387, 50.4, 49.6, 45.7, 22.0,69.3 +NA,NA,a-curv-i5,2016-17,New Bedford - Keith Middle School,02010405, 409, 20.9, 926, 49.6, 50.4, 20.0, 19.3,61.4 +NA,NA,a-curv-i5,2016-17,New Bedford - New Bedford High,02010505," 1,209", 15.9," 2,141", 47.7, 52.3, 28.6, 16.4,53.9 +NA,NA,a-curv-i5,2016-17,New Bedford - Normandin Middle School,02010410, 815, 21.2," 1,195", 46.8, 53.2, 21.6, 17.4,53.9 +NA,NA,a-curv-i5,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 86, 17.7, 245, 57.1, 42.9, 55.5, 13.1,71.8 +NA,NA,a-curv-i5,2016-17,New Bedford - Roosevelt Middle School,02010415, 386, 19.6, 792, 48.4, 51.6, 25.3, 25.0,65.4 +NA,NA,a-curv-i5,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 420, 16.5, 847, 42.6, 57.4, 14.5, 29.6,66.1 +NA,NA,a-curv-i5,2016-17,New Bedford - Thomas R Rodman,02010125, 88, 19.4, 214, 43.0, 57.0, 22.4, 14.5,58.4 +NA,NA,a-curv-i5,2016-17,New Bedford - Trinity Day Academy,02010510, 96, 7.1, 86, 37.2, 62.8, 9.3, 96.5,86 +7.228070175438598,5,a-curv-i5,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 114, 6.1, 128, 28.9, 71.1, 8.6, 27.3,81.3,110 +NA,NA,a-curv-i5,2016-17,New Bedford - William H Taylor,02010135, 96, 19.3, 231, 53.2, 46.8, 13.9, 12.6,58.9 +NA,NA,a-curv-i5,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 72, 27.2, 302, 48.3, 51.7, 10.3, 7.9,38.1 +NA,NA,a-curv-i5,2016-17,New Salem-Wendell - Swift River,07280015, 28, 19.0, 169, 48.5, 51.5, 0.0, 19.5,33.7 +NA,NA,a-curv-i5,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 130, 21.2, 332, 48.2, 51.8, 1.2, 21.1,7.8 +NA,NA,a-curv-i5,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 182, 17.3, 658, 48.6, 51.4, 2.4, 19.5,9 +NA,NA,a-curv-i5,2016-17,Newburyport - Newburyport High,02040505, 636, 16.4, 783, 52.9, 46.9, 0.8, 10.1,10.9 +NA,NA,a-curv-i5,2016-17,Newburyport - Rupert A Nock Middle,02040305, 309, 21.2, 544, 46.0, 54.0, 0.7, 14.2,8.6 +NA,NA,a-curv-i5,2016-17,Newton - A E Angier,02070005, 155, 20.0, 437, 53.5, 46.5, 7.1, 19.2,5.3 +NA,NA,a-curv-i5,2016-17,Newton - Bigelow Middle,02070305, 393, 17.4, 554, 50.9, 49.1, 5.2, 22.7,11.4 +NA,NA,a-curv-i5,2016-17,Newton - Bowen,02070015, 148, 21.5, 433, 47.8, 52.2, 13.4, 15.0,7.4 +NA,NA,a-curv-i5,2016-17,Newton - C C Burr,02070020, 141, 20.7, 407, 49.4, 50.6, 9.6, 16.0,6.9 +NA,NA,a-curv-i5,2016-17,Newton - Cabot,02070025, 147, 19.8, 407, 53.1, 46.9, 5.9, 14.3,7.9 +NA,NA,a-curv-i5,2016-17,Newton - Charles E Brown Middle,02070310, 475, 20.1, 790, 46.1, 53.9, 2.2, 22.4,6.1 +NA,NA,a-curv-i5,2016-17,Newton - Countryside,02070040, 162, 20.5, 455, 52.1, 47.9, 16.3, 19.3,11.2 +NA,NA,a-curv-i5,2016-17,Newton - F A Day Middle,02070315, 530, 22.2, 950, 45.9, 54.1, 3.3, 18.9,8.6 +NA,NA,a-curv-i5,2016-17,Newton - Franklin,02070055, 161, 20.1, 453, 54.5, 45.5, 4.4, 20.3,9.3 +NA,NA,a-curv-i5,2016-17,Newton - Horace Mann,02070075, 138, 21.8, 425, 44.5, 55.5, 6.4, 15.3,8 +NA,NA,a-curv-i5,2016-17,Newton - John Ward,02070120, 109, 20.2, 315, 54.3, 45.7, 3.8, 13.7,3.2 +NA,NA,a-curv-i5,2016-17,Newton - Lincoln-Eliot,02070070, 132, 20.0, 366, 51.6, 48.4, 16.7, 23.0,18.3 +NA,NA,a-curv-i5,2016-17,Newton - Mason-Rice,02070080, 162, 23.0, 511, 46.6, 53.4, 6.1, 10.8,3.7 +NA,NA,a-curv-i5,2016-17,Newton - Memorial Spaulding,02070105, 155, 21.6, 463, 48.2, 51.8, 9.1, 19.9,7.6 +NA,NA,a-curv-i5,2016-17,Newton - Newton Early Childhood Center,02070108, 14, 22.1, 293, 33.4, 66.6, 16.7, 67.6,12.6 +NA,NA,a-curv-i5,2016-17,Newton - Newton North High,02070505," 1,010", 16.2," 2,151", 49.8, 50.1, 2.1, 25.0,10.8 +NA,NA,a-curv-i5,2016-17,Newton - Newton South High,02070510," 1,005", 14.3," 1,874", 48.9, 51.1, 2.7, 17.6,8.7 +NA,NA,a-curv-i5,2016-17,Newton - Oak Hill Middle,02070320, 445, 17.7, 654, 54.6, 45.4, 6.0, 19.6,9.8 +NA,NA,a-curv-i5,2016-17,Newton - Peirce,02070100, 109, 20.0, 308, 49.4, 50.6, 6.2, 11.0,5.5 +NA,NA,a-curv-i5,2016-17,Newton - Underwood,02070115, 111, 20.2, 316, 52.5, 47.5, 7.6, 15.2,10.1 +NA,NA,a-curv-i5,2016-17,Newton - Williams,02070125, 104, 21.0, 307, 44.0, 56.0, 9.4, 13.4,6.2 +NA,NA,a-curv-i5,2016-17,Newton - Zervas,02070130, 125, 19.9, 348, 48.6, 51.4, 13.5, 12.9,10.6 +NA,NA,a-curv-i5,2016-17,Norfolk - Freeman-Kennedy School,02080005, 152, 21.8, 496, 46.0, 54.0, 0.6, 16.3,5 +NA,NA,a-curv-i5,2016-17,Norfolk - H Olive Day,02080015, 80, 20.2, 451, 43.7, 56.3, 4.2, 16.6,6.4 +NA,NA,a-curv-i5,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 454, 16.3, 534, 71.3, 28.7, 0.0, 17.0,14.6 +NA,NA,a-curv-i5,2016-17,North Adams - Brayton,02090035, 137, 15.8, 400, 48.8, 51.3, 0.3, 31.5,63 +NA,NA,a-curv-i5,2016-17,North Adams - Colegrove Park Elementary,02090008, 125, 18.7, 344, 50.0, 50.0, 0.9, 31.1,61 +NA,NA,a-curv-i5,2016-17,North Adams - Drury High,02090505, 250, 12.2, 436, 53.0, 47.0, 0.0, 21.6,49.3 +NA,NA,a-curv-i5,2016-17,North Adams - Greylock,02090015, 125, 17.2, 299, 46.2, 53.8, 4.7, 17.7,53.8 +NA,NA,a-curv-i5,2016-17,North Andover - Annie L Sargent School,02110018, 180, 23.5, 565, 47.4, 52.6, 0.9, 14.5,5.7 +NA,NA,a-curv-i5,2016-17,North Andover - Atkinson,02110001, 147, 22.6, 563, 49.2, 50.8, 6.0, 20.4,26.1 +NA,NA,a-curv-i5,2016-17,North Andover - Franklin,02110010, 159, 22.6, 475, 45.1, 54.9, 1.7, 18.7,8 +NA,NA,a-curv-i5,2016-17,North Andover - Kittredge,02110015, 90, 24.7, 297, 44.1, 55.9, 1.7, 16.2,10.4 +NA,NA,a-curv-i5,2016-17,North Andover - North Andover High,02110505," 1,160", 19.0," 1,421", 53.4, 46.6, 0.7, 10.2,10.8 +NA,NA,a-curv-i5,2016-17,North Andover - North Andover Middle,02110305, 706, 24.5," 1,146", 48.3, 51.7, 1.0, 14.7,13.2 +NA,NA,a-curv-i5,2016-17,North Andover - Thomson,02110020, 111, 24.6, 367, 50.1, 49.9, 7.1, 17.7,23.2 +NA,NA,a-curv-i5,2016-17,North Attleborough - Amvet Boulevard,02120007, 70, 22.6, 405, 50.9, 49.1, 6.2, 10.1,9.6 +NA,NA,a-curv-i5,2016-17,North Attleborough - Community,02120030, 99, 13.3, 345, 47.0, 53.0, 10.7, 27.0,38.3 +NA,NA,a-curv-i5,2016-17,North Attleborough - Falls,02120010, 66, 16.4, 277, 47.7, 52.3, 2.2, 12.6,16.2 +NA,NA,a-curv-i5,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 111, 23.7, 683, 50.4, 49.6, 2.8, 15.2,12.2 +NA,NA,a-curv-i5,2016-17,North Attleborough - North Attleboro High,02120505, 607, 16.8," 1,180", 51.1, 48.8, 1.8, 12.6,13.1 +NA,NA,a-curv-i5,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 13, 12.4, 161, 44.1, 55.9, 0.0, 41.6,18.6 +NA,NA,a-curv-i5,2016-17,North Attleborough - North Attleborough Middle,02120305, 504, 20.5," 1,100", 47.2, 52.8, 2.2, 17.2,13.4 +NA,NA,a-curv-i5,2016-17,North Attleborough - Roosevelt Avenue,02120015, 53, 21.9, 308, 54.9, 45.1, 3.9, 12.0,10.4 +NA,NA,a-curv-i5,2016-17,North Brookfield - North Brookfield Elementary,02150015, 61, 21.2, 326, 42.9, 57.1, 0.0, 11.7,33.1 +NA,NA,a-curv-i5,2016-17,North Brookfield - North Brookfield High,02150505, 126, 13.3, 229, 55.5, 44.5, 0.0, 11.4,29.3 +NA,NA,a-curv-i5,2016-17,North Middlesex - Ashby Elementary,07350010, 100, 20.7, 207, 44.4, 55.6, 0.0, 36.7,25.6 +NA,NA,a-curv-i5,2016-17,North Middlesex - Hawthorne Brook,07350030, 316, 19.7, 487, 52.2, 47.8, 0.6, 18.1,17.2 +NA,NA,a-curv-i5,2016-17,North Middlesex - Nissitissit Middle School,07350310, 295, 19.7, 531, 45.8, 54.2, 0.4, 22.8,11.5 +NA,NA,a-curv-i5,2016-17,North Middlesex - North Middlesex Regional,07350505, 408, 18.9, 794, 51.3, 48.7, 0.9, 13.7,12.6 +NA,NA,a-curv-i5,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 1, 10.0, 10, 70.0, 30.0, 0.0, 100.0,80 +NA,NA,a-curv-i5,2016-17,North Middlesex - Spaulding Memorial,07350005, 206, 20.6, 422, 49.8, 50.2, 4.0, 21.1,20.1 +NA,NA,a-curv-i5,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 19, 13.1, 96, 37.5, 62.5, 0.0, 58.3,18.8 +NA,NA,a-curv-i5,2016-17,North Middlesex - Varnum Brook,07350035, 265, 21.6, 574, 46.2, 53.8, 0.2, 21.6,20 +NA,NA,a-curv-i5,2016-17,North Reading - E Ethel Little School,02170003, 179, 17.6, 331, 44.7, 55.3, 1.2, 24.2,10.6 +NA,NA,a-curv-i5,2016-17,North Reading - J Turner Hood,02170010, 199, 17.3, 341, 49.6, 50.4, 0.3, 21.1,12.3 +NA,NA,a-curv-i5,2016-17,North Reading - L D Batchelder,02170005, 193, 23.8, 446, 51.6, 48.4, 0.7, 14.1,6.1 +NA,NA,a-curv-i5,2016-17,North Reading - North Reading High,02170505, 328, 19.6, 803, 49.9, 50.1, 0.5, 14.9,6.1 +NA,NA,a-curv-i5,2016-17,North Reading - North Reading Middle,02170305, 353, 16.6, 579, 50.9, 49.1, 0.5, 20.0,6.9 +NA,NA,a-curv-i5,2016-17,Northampton - Bridge Street,02100005, 77, 18.3, 280, 45.4, 54.6, 10.4, 35.7,36.4 +NA,NA,a-curv-i5,2016-17,Northampton - Jackson Street,02100020, 101, 19.8, 337, 53.1, 46.9, 8.0, 18.4,25.8 +NA,NA,a-curv-i5,2016-17,Northampton - John F Kennedy Middle School,02100410, 545, 13.7, 645, 52.1, 47.9, 2.8, 24.7,26.5 +NA,NA,a-curv-i5,2016-17,Northampton - Leeds,02100025, 105, 19.1, 356, 45.2, 54.8, 2.8, 25.0,23.9 +NA,NA,a-curv-i5,2016-17,Northampton - Northampton High,02100505, 391, 16.3, 882, 53.4, 46.6, 2.2, 17.0,17.1 +NA,NA,a-curv-i5,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 72, 19.2, 229, 48.0, 52.0, 4.8, 24.0,34.5 +NA,NA,a-curv-i5,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 341, 12.1, 485, 38.8, 61.2, 2.5, 34.4,30.3 +NA,NA,a-curv-i5,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 766, 16.1," 1,452", 52.5, 47.5, 1.3, 11.3,6.1 +NA,NA,a-curv-i5,2016-17,Northborough - Fannie E Proctor,02130015, 60, 17.2, 249, 45.4, 54.6, 5.6, 15.7,20.1 +NA,NA,a-curv-i5,2016-17,Northborough - Lincoln Street,02130003, 59, 18.4, 262, 53.4, 46.6, 8.8, 19.1,11.5 +NA,NA,a-curv-i5,2016-17,Northborough - Marguerite E Peaslee,02130014, 62, 17.8, 264, 47.0, 53.0, 7.6, 18.2,6.4 +NA,NA,a-curv-i5,2016-17,Northborough - Marion E Zeh,02130020, 60, 19.7, 307, 47.9, 52.1, 6.2, 23.1,8.5 +NA,NA,a-curv-i5,2016-17,Northborough - Robert E. Melican Middle School,02130305, 415, 17.7, 680, 46.3, 53.7, 2.8, 18.1,9.1 +NA,NA,a-curv-i5,2016-17,Northbridge - Northbridge Elementary,02140005, 96, 17.3, 403, 47.9, 52.1, 6.2, 21.6,31 +NA,NA,a-curv-i5,2016-17,Northbridge - Northbridge High,02140505, 388, 14.0, 589, 48.4, 51.6, 1.2, 12.2,21.4 +NA,NA,a-curv-i5,2016-17,Northbridge - Northbridge Middle,02140305, 429, 22.6, 781, 46.4, 53.6, 1.9, 16.6,24.1 +NA,NA,a-curv-i5,2016-17,Northbridge - W Edward Balmer,02140001, 144, 21.7, 521, 51.1, 48.9, 2.7, 16.7,31.9 +NA,NA,a-curv-i5,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 894, 19.3," 1,261", 45.4, 54.6, 1.8, 21.3,30.8 +NA,NA,a-curv-i5,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 417, 13.6, 483, 37.7, 62.3, 0.0, 15.5,31.5 +NA,NA,a-curv-i5,2016-17,Norton - Henri A. Yelle,02180060, 176, 23.6, 377, 53.6, 46.4, 1.9, 17.8,16.2 +NA,NA,a-curv-i5,2016-17,Norton - J C Solmonese,02180015, 113, 19.5, 405, 49.4, 50.6, 0.5, 17.3,20 +NA,NA,a-curv-i5,2016-17,Norton - L G Nourse Elementary,02180010, 76, 21.4, 377, 46.2, 53.8, 3.4, 27.6,26.8 +NA,NA,a-curv-i5,2016-17,Norton - Norton High,02180505, 346, 18.7, 758, 48.9, 51.1, 0.5, 13.2,13.6 +NA,NA,a-curv-i5,2016-17,Norton - Norton Middle,02180305, 514, 16.3, 609, 49.8, 50.2, 0.2, 18.9,14.6 +NA,NA,a-curv-i5,2016-17,Norwell - Grace Farrar Cole,02190005, 118, 18.7, 484, 43.4, 56.6, 0.2, 15.7,5 +NA,NA,a-curv-i5,2016-17,Norwell - Norwell High,02190505, 316, 15.8, 708, 51.4, 48.6, 0.0, 9.5,3.2 +NA,NA,a-curv-i5,2016-17,Norwell - Norwell Middle School,02190405, 456, 18.2, 522, 54.8, 45.2, 0.0, 17.6,3.4 +NA,NA,a-curv-i5,2016-17,Norwell - William G Vinal,02190020, 118, 19.2, 498, 45.6, 54.4, 0.2, 17.3,2.2 +NA,NA,a-curv-i5,2016-17,Norwood - Balch,02200005, 69, 18.1, 285, 50.2, 49.8, 16.8, 22.1,30.2 +NA,NA,a-curv-i5,2016-17,Norwood - Charles J Prescott,02200025, 58, 18.4, 246, 48.0, 52.0, 7.7, 19.5,8.5 +NA,NA,a-curv-i5,2016-17,Norwood - Cornelius M Callahan,02200010, 44, 21.0, 208, 51.4, 48.6, 13.5, 28.4,29.8 +NA,NA,a-curv-i5,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 429, 18.1, 769, 48.8, 51.2, 3.4, 17.7,21.2 +NA,NA,a-curv-i5,2016-17,Norwood - F A Cleveland,02200015, 75, 20.4, 349, 50.1, 49.9, 8.0, 23.8,17.8 +NA,NA,a-curv-i5,2016-17,Norwood - George F. Willett,02200075, 53, 19.5, 427, 47.5, 52.5, 14.1, 24.8,23.7 +NA,NA,a-curv-i5,2016-17,Norwood - John P Oldham,02200020, 52, 20.2, 242, 49.6, 50.4, 7.0, 23.6,25.6 +NA,NA,a-curv-i5,2016-17,Norwood - Norwood High,02200505, 515, 14.8, 981, 49.7, 50.3, 4.6, 16.9,21.7 +NA,NA,a-curv-i5,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 173, 15.7, 452, 52.4, 47.6, 17.3, 21.0,21.2 +NA,NA,a-curv-i5,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 343, 15.9, 540, 38.1, 61.9, 0.2, 22.6,18.1 +NA,NA,a-curv-i5,2016-17,Old Rochester - Old Rochester Regional High,07400505, 378, 16.4, 754, 50.9, 49.1, 0.0, 11.0,9.2 +NA,NA,a-curv-i5,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 293, 19.8, 496, 50.6, 49.4, 0.0, 12.7,13.5 +NA,NA,a-curv-i5,2016-17,Orange - Dexter Park,02230010, 154, 22.3, 333, 41.1, 58.9, 2.4, 26.7,52.9 +NA,NA,a-curv-i5,2016-17,Orange - Fisher Hill,02230015, 134, 17.9, 284, 48.6, 51.4, 0.7, 23.2,55.3 +NA,NA,a-curv-i5,2016-17,Orleans - Orleans Elementary,02240005, 154, 17.4, 224, 47.3, 52.7, 4.9, 21.4,21 +NA,NA,a-curv-i5,2016-17,Oxford - Alfred M Chaffee,02260010, 74, 19.3, 339, 47.5, 52.5, 0.6, 19.5,30.7 +NA,NA,a-curv-i5,2016-17,Oxford - Clara Barton,02260005, 91, 23.3, 423, 48.2, 51.8, 0.0, 13.0,31 +NA,NA,a-curv-i5,2016-17,Oxford - Oxford High,02260505, 316, 17.0, 561, 50.4, 49.6, 0.7, 12.1,33 +NA,NA,a-curv-i5,2016-17,Oxford - Oxford Middle,02260405, 166, 23.4, 436, 50.5, 49.5, 0.2, 14.2,31.9 +NA,NA,a-curv-i5,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 27, 7.5, 35, 8.6, 91.4, 0.0, 37.1,54.3 +NA,NA,a-curv-i5,2016-17,Palmer - Converse Middle,02270305, 119, 17.6, 255, 42.0, 58.0, 0.4, 22.7,41.2 +NA,NA,a-curv-i5,2016-17,Palmer - Old Mill Pond,02270008, 480, 15.7, 728, 50.4, 49.6, 2.9, 20.3,43.8 +NA,NA,a-curv-i5,2016-17,Palmer - Palmer High,02270505, 293, 13.3, 494, 45.7, 54.3, 1.2, 19.0,30.8 +NA,NA,a-curv-i5,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 470, 12.4, 607, 39.2, 60.8, 0.0, 25.0,34.3 +NA,NA,a-curv-i5,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 177, 14.7, 339, 54.0, 46.0, 10.9, 17.7,70.5 +NA,NA,a-curv-i5,2016-17,Peabody - Captain Samuel Brown,02290005, 151, 15.9, 364, 44.5, 55.5, 5.8, 30.8,28.8 +NA,NA,a-curv-i5,2016-17,Peabody - Center,02290015, 165, 18.7, 390, 49.7, 50.3, 10.8, 15.1,31.8 +NA,NA,a-curv-i5,2016-17,Peabody - J Henry Higgins Middle,02290305, 781, 20.5," 1,352", 47.9, 52.1, 6.3, 18.3,26.3 +NA,NA,a-curv-i5,2016-17,Peabody - John E Burke,02290007, 113, 18.6, 271, 51.3, 48.7, 0.0, 15.1,14.8 +NA,NA,a-curv-i5,2016-17,Peabody - John E. McCarthy,02290016, 103, 19.2, 365, 42.7, 57.3, 3.8, 33.7,27.4 +NA,NA,a-curv-i5,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 805, 14.8," 1,518", 49.3, 50.7, 5.5, 19.4,25.6 +NA,NA,a-curv-i5,2016-17,Peabody - South Memorial,02290035, 152, 20.7, 469, 52.2, 47.8, 4.5, 10.9,23 +NA,NA,a-curv-i5,2016-17,Peabody - Thomas Carroll,02290010, 238, 20.1, 622, 50.6, 49.4, 13.3, 15.0,41.2 +NA,NA,a-curv-i5,2016-17,Peabody - West Memorial,02290045, 100, 15.3, 247, 45.3, 54.7, 0.8, 17.4,14.6 +NA,NA,a-curv-i5,2016-17,Peabody - William A Welch Sr,02290027, 136, 20.0, 378, 51.3, 48.7, 21.4, 15.6,50 +NA,NA,a-curv-i5,2016-17,Pelham - Pelham Elementary,02300005, 43, 17.2, 126, 50.0, 50.0, 0.0, 27.0,23.8 +NA,NA,a-curv-i5,2016-17,Pembroke - Bryantville Elementary,02310003, 198, 18.7, 522, 48.9, 51.1, 1.3, 13.4,20.3 +NA,NA,a-curv-i5,2016-17,Pembroke - Hobomock Elementary,02310010, 166, 18.9, 435, 42.8, 57.2, 1.4, 13.3,7.6 +NA,NA,a-curv-i5,2016-17,Pembroke - North Pembroke Elementary,02310015, 216, 17.6, 586, 49.0, 51.0, 1.4, 18.1,13 +NA,NA,a-curv-i5,2016-17,Pembroke - Pembroke Community Middle School,02310305, 308, 19.2, 505, 50.3, 49.7, 0.2, 12.7,11.5 +6.1377990430622,5,a-curv-i5,2016-17,Pembroke - Pembroke High School,02310505, 418, 17.2, 960, 50.0, 50.0, 0.3, 9.9,9.8,973 +NA,NA,a-curv-i5,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 48, 15.2, 209, 42.6, 57.4, 0.0, 26.8,16.7 +NA,NA,a-curv-i5,2016-17,Pentucket - Dr John C Page School,07450015, 108, 19.0, 359, 51.0, 49.0, 0.0, 24.0,6.4 +NA,NA,a-curv-i5,2016-17,Pentucket - Elmer S Bagnall,07450005, 135, 19.0, 513, 44.6, 55.4, 0.0, 24.4,9.7 +NA,NA,a-curv-i5,2016-17,Pentucket - Helen R Donaghue School,07450010, 68, 22.6, 250, 45.6, 54.4, 0.4, 22.0,20.4 +NA,NA,a-curv-i5,2016-17,Pentucket - Pentucket Regional Middle,07450405, 256, 16.4, 458, 47.2, 52.8, 0.2, 17.2,8.1 +NA,NA,a-curv-i5,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 451, 13.5, 723, 52.7, 47.3, 0.3, 11.3,8.6 +NA,NA,a-curv-i5,2016-17,Petersham - Petersham Center,02340005, 49, 16.8, 128, 46.9, 53.1, 1.6, 19.5,18.8 +5.192727272727272,5,a-curv-i5,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 55, 16.1, 170, 44.7, 55.3, 17.1, 33.5,79.4,193 +NA,NA,a-curv-i5,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 79, 19.1, 211, 38.9, 61.1, 62.1, 12.8,33.2 +NA,NA,a-curv-i5,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 208, 18.9, 535, 50.1, 49.9, 38.1, 10.7,35.7 +NA,NA,a-curv-i5,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 153, 18.5, 321, 53.6, 46.4, 26.2, 14.0,26.5 +NA,NA,a-curv-i5,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 43, 22.3, 178, 52.2, 47.8, 0.6, 22.5,23 +NA,NA,a-curv-i5,2016-17,Pioneer Valley - Northfield Elementary,07500008, 58, 17.2, 188, 49.5, 50.5, 0.0, 20.2,25 +NA,NA,a-curv-i5,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 36, 5.1, 36, 58.3, 41.7, 0.0, 30.6,36.1 +NA,NA,a-curv-i5,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 360, 12.8, 403, 51.4, 48.6, 0.0, 12.2,16.4 +NA,NA,a-curv-i5,2016-17,Pioneer Valley - Warwick Community School,07500009, 37, 7.6, 52, 50.0, 50.0, 0.0, 11.5,34.6 +NA,NA,a-curv-i5,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 256, 16.5, 460, 54.3, 45.4, 2.6, 5.9,13.7 +NA,NA,a-curv-i5,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 387, 12.7, 405, 67.9, 31.9, 0.0, 20.7,21.5 +NA,NA,a-curv-i5,2016-17,Pittsfield - Allendale,02360010, 109, 15.3, 275, 47.6, 52.4, 3.6, 13.1,49.8 +NA,NA,a-curv-i5,2016-17,Pittsfield - Crosby,02360065, 102, 16.5, 468, 41.7, 58.3, 3.6, 41.2,69.4 +NA,NA,a-curv-i5,2016-17,Pittsfield - Egremont,02360035, 121, 18.9, 465, 51.6, 48.4, 7.1, 16.8,41.9 +NA,NA,a-curv-i5,2016-17,Pittsfield - John T Reid Middle,02360305, 363, 15.3, 562, 51.1, 48.9, 3.9, 25.8,51.6 +NA,NA,a-curv-i5,2016-17,Pittsfield - Morningside Community School,02360055, 148, 15.4, 417, 49.9, 50.1, 6.7, 22.1,70.7 +NA,NA,a-curv-i5,2016-17,Pittsfield - Pittsfield High,02360505, 463, 13.4, 835, 48.9, 51.0, 4.2, 26.8,37.6 +NA,NA,a-curv-i5,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 74, 16.1, 223, 53.4, 46.6, 0.0, 20.2,46.2 +NA,NA,a-curv-i5,2016-17,Pittsfield - Silvio O Conte Community,02360105, 147, 14.9, 359, 50.7, 49.3, 9.7, 16.4,80.2 +NA,NA,a-curv-i5,2016-17,Pittsfield - Stearns,02360090, 66, 17.0, 233, 46.4, 53.6, 0.9, 22.7,44.2 +NA,NA,a-curv-i5,2016-17,Pittsfield - Taconic High,02360510, 449, 11.5, 709, 48.7, 51.3, 1.7, 19.2,38.1 +NA,NA,a-curv-i5,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 343, 16.5, 627, 49.6, 50.4, 2.6, 23.0,39.9 +NA,NA,a-curv-i5,2016-17,Pittsfield - Williams,02360100, 91, 17.4, 313, 48.9, 51.1, 5.4, 16.0,27.2 +NA,NA,a-curv-i5,2016-17,Plainville - Anna Ware Jackson,02380010, 102, 18.1, 415, 46.7, 53.3, 5.1, 15.9,13.5 +NA,NA,a-curv-i5,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 75, 19.9, 298, 48.3, 51.7, 3.7, 17.4,13.4 +NA,NA,a-curv-i5,2016-17,Plymouth - Cold Spring,02390005, 158, 19.4, 263, 50.6, 49.4, 5.3, 12.9,32.3 +NA,NA,a-curv-i5,2016-17,Plymouth - Federal Furnace School,02390011, 330, 14.5, 416, 47.1, 52.9, 0.0, 27.2,30.5 +NA,NA,a-curv-i5,2016-17,Plymouth - Hedge,02390010, 139, 19.3, 232, 45.7, 54.3, 11.6, 18.5,49.6 +NA,NA,a-curv-i5,2016-17,Plymouth - Indian Brook,02390012, 322, 21.0, 589, 48.9, 51.1, 0.0, 13.8,18.3 +NA,NA,a-curv-i5,2016-17,Plymouth - Manomet Elementary,02390015, 183, 19.2, 306, 47.1, 52.9, 0.0, 17.3,24.2 +NA,NA,a-curv-i5,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 308, 22.3, 598, 48.5, 51.5, 1.7, 12.5,19.9 +NA,NA,a-curv-i5,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 593, 18.7," 1,015", 45.3, 54.7, 1.6, 23.0,25 +NA,NA,a-curv-i5,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 14, 12.8, 179, 45.3, 54.7, 0.0, 54.2,28.5 +NA,NA,a-curv-i5,2016-17,Plymouth - Plymouth North High,02390505, 874, 16.1," 1,259", 49.3, 50.7, 2.1, 15.6,21 +NA,NA,a-curv-i5,2016-17,Plymouth - Plymouth South High,02390515, 782, 13.8," 1,015", 46.6, 53.4, 0.0, 21.2,14.8 +NA,NA,a-curv-i5,2016-17,Plymouth - Plymouth South Middle,02390305, 472, 19.7, 853, 48.9, 51.1, 0.0, 20.9,17.8 +NA,NA,a-curv-i5,2016-17,Plymouth - South Elementary,02390046, 342, 17.9, 554, 48.6, 51.4, 0.0, 16.4,21.7 +NA,NA,a-curv-i5,2016-17,Plymouth - West Elementary,02390047, 311, 14.2, 393, 45.8, 54.2, 0.3, 19.3,24.4 +NA,NA,a-curv-i5,2016-17,Plympton - Dennett Elementary,02400010, 104, 15.2, 212, 51.4, 48.6, 0.0, 17.0,21.7 +NA,NA,a-curv-i5,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 455, 21.3," 1,141", 48.9, 51.1, 10.3, 15.4,35.5 +NA,NA,a-curv-i5,2016-17,Provincetown - Provincetown Schools,02420020, 112, 11.9, 130, 50.0, 50.0, 16.9, 22.3,41.5 +NA,NA,a-curv-i5,2016-17,Quabbin - Hardwick Elementary,07530005, 70, 18.4, 192, 47.4, 52.6, 0.0, 19.3,41.7 +NA,NA,a-curv-i5,2016-17,Quabbin - Hubbardston Center,07530010, 94, 21.0, 316, 55.4, 44.6, 0.3, 20.3,18.4 +NA,NA,a-curv-i5,2016-17,Quabbin - IB School of Quabbin,07530515, 9, 6.9, 44, 54.5, 45.5, 0.0, 4.5,11.4 +NA,NA,a-curv-i5,2016-17,Quabbin - New Braintree Grade,07530020, 13, 21.3, 109, 47.7, 52.3, 0.0, 32.1,21.1 +NA,NA,a-curv-i5,2016-17,Quabbin - Oakham Center,07530025, 44, 21.4, 150, 54.7, 45.3, 0.0, 19.3,20 +6.846908315565033,5,a-curv-i5,2016-17,Quabbin - Quabbin Regional High School,07530505, 469, 19.9, 693, 50.8, 49.2, 0.1, 14.0,20.6,676 +NA,NA,a-curv-i5,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 149, 21.0, 424, 49.8, 50.2, 0.0, 19.3,24.8 +NA,NA,a-curv-i5,2016-17,Quabbin - Ruggles Lane,07530030, 107, 22.6, 385, 49.1, 50.9, 0.8, 21.8,32.2 +NA,NA,a-curv-i5,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 195, 14.3, 360, 50.8, 48.9, 3.6, 12.8,30.6 +NA,NA,a-curv-i5,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 142, 18.8, 257, 51.4, 48.2, 2.3, 13.6,35.4 +NA,NA,a-curv-i5,2016-17,Quaboag Regional - Warren Elementary,07780005, 157, 21.4, 480, 50.4, 49.6, 2.5, 18.5,45.4 +NA,NA,a-curv-i5,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 107, 21.6, 325, 47.4, 52.6, 1.5, 16.6,26.8 +NA,NA,a-curv-i5,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 34, 13.2, 221, 37.1, 62.9, 0.0, 65.6,35.3 +NA,NA,a-curv-i5,2016-17,Quincy - Atherton Hough,02430040, 164, 13.0, 267, 46.4, 53.6, 10.5, 30.0,27.3 +NA,NA,a-curv-i5,2016-17,Quincy - Atlantic Middle,02430305, 253, 20.0, 482, 52.5, 47.5, 13.3, 12.2,28.6 +NA,NA,a-curv-i5,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 172, 17.1, 353, 51.8, 48.2, 19.0, 9.9,26.6 +NA,NA,a-curv-i5,2016-17,Quincy - Broad Meadows Middle,02430310, 257, 18.0, 381, 47.8, 52.2, 7.1, 30.4,37 +NA,NA,a-curv-i5,2016-17,Quincy - Central Middle,02430315, 385, 20.5, 651, 47.5, 52.5, 6.3, 10.1,23.3 +NA,NA,a-curv-i5,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 163, 17.3, 337, 50.4, 49.6, 11.0, 17.5,19.9 +NA,NA,a-curv-i5,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 264, 17.2, 591, 48.2, 51.8, 21.3, 12.9,43.1 +NA,NA,a-curv-i5,2016-17,Quincy - Francis W Parker,02430075, 146, 17.6, 327, 42.5, 57.5, 38.2, 11.3,45.9 +NA,NA,a-curv-i5,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 217, 18.7, 493, 43.2, 56.8, 31.4, 10.5,44 +NA,NA,a-curv-i5,2016-17,Quincy - Merrymount,02430060, 161, 17.8, 349, 47.6, 52.4, 18.3, 19.2,23.8 +NA,NA,a-curv-i5,2016-17,Quincy - Montclair,02430065, 194, 18.9, 429, 50.6, 49.4, 36.1, 7.2,31.2 +NA,NA,a-curv-i5,2016-17,Quincy - North Quincy High,02430510, 567, 15.6," 1,181", 50.0, 50.0, 12.5, 12.5,30.7 +NA,NA,a-curv-i5,2016-17,Quincy - Point Webster Middle,02430325, 271, 15.1, 352, 45.5, 54.5, 9.7, 16.8,42.6 +NA,NA,a-curv-i5,2016-17,Quincy - Quincy High,02430505, 806, 15.7," 1,495", 47.2, 52.8, 9.2, 18.1,31.8 +NA,NA,a-curv-i5,2016-17,Quincy - Reay E Sterling Middle,02430320, 214, 17.3, 350, 48.0, 52.0, 8.3, 24.6,49.4 +NA,NA,a-curv-i5,2016-17,Quincy - Snug Harbor Community School,02430090, 250, 11.3, 476, 45.4, 54.6, 16.0, 39.9,56.7 +NA,NA,a-curv-i5,2016-17,Quincy - Squantum,02430095, 199, 13.6, 332, 51.2, 48.8, 11.1, 21.4,23.8 +NA,NA,a-curv-i5,2016-17,Quincy - Wollaston School,02430110, 160, 16.0, 321, 50.8, 49.2, 36.8, 9.7,34 +NA,NA,a-curv-i5,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 767, 12.9, 640, 49.2, 50.8, 1.3, 17.0,39.8 +NA,NA,a-curv-i5,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 87, 22.2, 306, 46.4, 53.6, 16.3, 22.2,41.8 +NA,NA,a-curv-i5,2016-17,Randolph - J F Kennedy Elementary,02440018, 185, 15.9, 517, 43.7, 56.3, 10.8, 40.6,50.9 +NA,NA,a-curv-i5,2016-17,Randolph - Margaret L Donovan,02440015, 131, 23.1, 428, 48.1, 51.9, 16.4, 14.3,35.7 +NA,NA,a-curv-i5,2016-17,Randolph - Martin E Young Elementary,02440040, 98, 17.3, 329, 46.8, 53.2, 28.6, 20.7,47.4 +NA,NA,a-curv-i5,2016-17,Randolph - Randolph Community Middle,02440410, 332, 17.6, 641, 48.7, 51.3, 10.9, 21.4,42.1 +NA,NA,a-curv-i5,2016-17,Randolph - Randolph High,02440505, 333, 17.2, 725, 47.0, 53.0, 11.4, 17.7,42.8 +NA,NA,a-curv-i5,2016-17,Reading - Alice M Barrows,02460002, 106, 20.5, 383, 52.0, 48.0, 1.8, 10.7,8.9 +NA,NA,a-curv-i5,2016-17,Reading - Arthur W Coolidge Middle,02460305, 207, 22.3, 466, 45.9, 54.1, 0.2, 21.5,5.6 +NA,NA,a-curv-i5,2016-17,Reading - Birch Meadow,02460005, 90, 21.0, 377, 45.9, 54.1, 0.5, 19.4,6.1 +NA,NA,a-curv-i5,2016-17,Reading - J Warren Killam,02460017, 96, 20.8, 424, 46.0, 54.0, 3.5, 15.1,9.2 +NA,NA,a-curv-i5,2016-17,Reading - Joshua Eaton,02460010, 118, 20.6, 425, 47.5, 52.5, 1.6, 14.4,9.2 +NA,NA,a-curv-i5,2016-17,Reading - RISE PreSchool,02460001, 16, 12.5, 100, 30.0, 70.0, 0.0, 40.0,10 +NA,NA,a-curv-i5,2016-17,Reading - Reading Memorial High,02460505, 623, 17.5," 1,258", 51.1, 48.9, 0.6, 18.3,6.4 +NA,NA,a-curv-i5,2016-17,Reading - Walter S Parker Middle,02460310, 238, 20.6, 575, 48.2, 51.8, 1.0, 15.1,8 +NA,NA,a-curv-i5,2016-17,Reading - Wood End Elementary School,02460020, 82, 21.6, 319, 48.6, 51.4, 1.6, 17.6,6.6 +NA,NA,a-curv-i5,2016-17,Revere - A. C. Whelan Elementary School,02480003, 531, 23.1, 768, 47.5, 52.5, 21.5, 17.3,43.4 +NA,NA,a-curv-i5,2016-17,Revere - Abraham Lincoln,02480025, 509, 18.8, 705, 48.1, 51.9, 29.2, 19.7,42.8 +NA,NA,a-curv-i5,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 339, 16.9, 391, 43.7, 56.3, 28.9, 20.2,43.5 +NA,NA,a-curv-i5,2016-17,Revere - Garfield Elementary School,02480056, 598, 20.6, 847, 49.9, 50.1, 37.8, 16.2,47.8 +NA,NA,a-curv-i5,2016-17,Revere - Garfield Middle School,02480057, 368, 19.5, 558, 50.4, 49.6, 17.9, 8.2,41.2 +NA,NA,a-curv-i5,2016-17,Revere - Paul Revere,02480050, 398, 20.4, 494, 51.8, 48.2, 24.7, 16.8,43.9 +NA,NA,a-curv-i5,2016-17,Revere - Revere High,02480505, 828, 20.4," 1,909", 50.2, 49.8, 17.0, 9.6,39 +NA,NA,a-curv-i5,2016-17,Revere - Rumney Marsh Academy,02480014, 260, 22.7, 600, 45.0, 55.0, 2.5, 21.3,43.3 +NA,NA,a-curv-i5,2016-17,Revere - Seacoast School,02480520, 106, 10.5, 121, 35.5, 64.5, 9.1, 25.6,56.2 +NA,NA,a-curv-i5,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 537, 21.2, 718, 51.1, 48.9, 31.2, 15.0,45.5 +NA,NA,a-curv-i5,2016-17,Revere - Susan B. Anthony Middle School,02480305, 227, 22.9, 571, 54.5, 45.5, 15.8, 12.4,41.3 +NA,NA,a-curv-i5,2016-17,Richmond - Richmond Consolidated,02490005, 122, 17.4, 167, 55.1, 44.9, 0.0, 4.8,18.6 +NA,NA,a-curv-i5,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 328, 18.6, 665, 51.6, 48.4, 0.0, 14.9,7.7 +NA,NA,a-curv-i5,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 116, 15.5, 288, 59.0, 41.0, 0.0, 13.9,5.2 +NA,NA,a-curv-i5,2016-17,Rochester - Rochester Memorial,02500005, 174, 18.3, 463, 46.2, 53.8, 0.4, 18.1,10.6 +NA,NA,a-curv-i5,2016-17,Rockland - Jefferson Elementary School,02510060, 129, 19.7, 343, 51.3, 48.7, 7.0, 12.5,33.8 +NA,NA,a-curv-i5,2016-17,Rockland - John W Rogers Middle,02510305, 376, 20.0, 697, 48.6, 51.4, 3.0, 17.9,30 +NA,NA,a-curv-i5,2016-17,Rockland - Memorial Park,02510020, 109, 18.7, 284, 49.3, 50.7, 7.0, 14.1,31 +NA,NA,a-curv-i5,2016-17,Rockland - R Stewart Esten,02510025, 115, 19.1, 313, 44.1, 55.9, 7.0, 17.6,33.9 +NA,NA,a-curv-i5,2016-17,Rockland - Rockland Senior High,02510505, 279, 17.8, 716, 48.3, 51.7, 2.7, 14.9,24 +NA,NA,a-curv-i5,2016-17,Rockport - Rockport Elementary,02520005, 190, 20.6, 409, 46.5, 53.5, 0.7, 22.5,18.8 +NA,NA,a-curv-i5,2016-17,Rockport - Rockport High,02520510, 192, 12.0, 295, 48.5, 51.5, 0.3, 17.3,15.3 +NA,NA,a-curv-i5,2016-17,Rockport - Rockport Middle,02520305, 253, 14.0, 238, 48.7, 50.8, 0.0, 22.3,16 +NA,NA,a-curv-i5,2016-17,Rowe - Rowe Elementary,02530005, 27, 14.5, 66, 54.5, 45.5, 0.0, 30.3,22.7 +NA,NA,a-curv-i5,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 342, 23.1," 1,257", 50.4, 49.6, 22.4, 17.4,55.8 +NA,NA,a-curv-i5,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 557, 25.3," 1,571", 50.0, 50.0, 5.3, 13.1,35.8 +NA,NA,a-curv-i5,2016-17,Salem - Bates,02580003, 145, 16.9, 339, 49.6, 50.4, 7.7, 25.7,47.5 +NA,NA,a-curv-i5,2016-17,Salem - Carlton,02580015, 108, 17.4, 259, 52.9, 47.1, 6.9, 21.2,44.8 +NA,NA,a-curv-i5,2016-17,Salem - Collins Middle,02580305, 236, 17.9, 563, 47.8, 52.2, 10.1, 21.1,46.9 +NA,NA,a-curv-i5,2016-17,Salem - Horace Mann Laboratory,02580030, 133, 17.4, 291, 48.8, 51.2, 13.7, 14.8,52.6 +NA,NA,a-curv-i5,2016-17,Salem - Nathaniel Bowditch,02580025, 238, 15.2, 436, 47.7, 52.3, 36.5, 13.3,63.1 +NA,NA,a-curv-i5,2016-17,Salem - New Liberty Innovation School,02580510, 13, 13.1, 46, 56.5, 41.3, 8.7, 37.0,58.7 +NA,NA,a-curv-i5,2016-17,Salem - Salem Early Childhood,02580001, 11, 9.4, 103, 45.6, 54.4, 0.0, 55.3,49.5 +NA,NA,a-curv-i5,2016-17,Salem - Salem High,02580505, 477, 13.7, 936, 47.5, 52.5, 14.9, 24.8,42.4 +7.92463768115942,5,a-curv-i5,2016-17,Salem - Salem Prep High School,02580515, 138, 4.6, 30, 46.7, 50.0, 3.3, 93.3,53.3,13 +NA,NA,a-curv-i5,2016-17,Salem - Saltonstall School,02580050, 258, 11.2, 383, 52.5, 47.5, 9.7, 17.8,35.8 +NA,NA,a-curv-i5,2016-17,Salem - Witchcraft Heights,02580070, 194, 18.1, 485, 45.4, 54.6, 7.6, 20.8,35.9 +NA,NA,a-curv-i5,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 233, 18.5, 438, 54.8, 45.2, 10.0, 14.4,28.8 +NA,NA,a-curv-i5,2016-17,Sandwich - Forestdale School,02610002, 267, 19.7, 655, 49.2, 50.8, 2.7, 17.3,20 +NA,NA,a-curv-i5,2016-17,Sandwich - Oak Ridge,02610025, 511, 19.7, 894, 51.1, 48.9, 0.3, 19.7,15.5 +NA,NA,a-curv-i5,2016-17,Sandwich - Sandwich High,02610505, 468, 15.2, 709, 47.7, 52.3, 0.3, 15.8,10 +NA,NA,a-curv-i5,2016-17,Sandwich - Sandwich STEM Academy,02610305, 272, 20.2, 464, 48.5, 51.5, 0.4, 18.5,11.9 +NA,NA,a-curv-i5,2016-17,Saugus - Ballard School,02620001, 48, 15.1, 121, 39.7, 60.3, 0.0, 38.8,17.4 +NA,NA,a-curv-i5,2016-17,Saugus - Belmonte Saugus Middle,02620305, 437, 17.6, 673, 48.0, 52.0, 3.1, 16.5,23.2 +NA,NA,a-curv-i5,2016-17,Saugus - Douglas Waybright,02620067, 92, 18.7, 207, 49.3, 50.7, 4.8, 12.6,29 +NA,NA,a-curv-i5,2016-17,Saugus - Lynnhurst,02620040, 105, 19.0, 244, 52.5, 47.5, 6.1, 18.4,19.7 +NA,NA,a-curv-i5,2016-17,Saugus - Oaklandvale,02620050, 96, 19.3, 229, 45.4, 54.6, 13.1, 14.4,42.8 +NA,NA,a-curv-i5,2016-17,Saugus - Saugus High,02620505, 387, 15.2, 691, 49.6, 50.4, 2.5, 13.2,23 +NA,NA,a-curv-i5,2016-17,Saugus - Veterans Memorial,02620065, 252, 16.5, 526, 45.8, 54.2, 5.7, 21.5,25.7 +NA,NA,a-curv-i5,2016-17,Savoy - Emma L Miller Elementary School,02630010, 37, 7.2, 52, 51.9, 48.1, 0.0, 19.2,53.8 +NA,NA,a-curv-i5,2016-17,Scituate - Cushing Elementary,02640007, 158, 18.1, 362, 45.3, 54.7, 0.6, 10.2,9.9 +NA,NA,a-curv-i5,2016-17,Scituate - Gates Intermediate School,02640305, 418, 19.7, 522, 51.7, 48.3, 0.8, 12.8,10 +NA,NA,a-curv-i5,2016-17,Scituate - Hatherly Elementary,02640010, 136, 18.5, 315, 47.9, 52.1, 1.0, 17.8,7.9 +NA,NA,a-curv-i5,2016-17,Scituate - Jenkins Elementary School,02640015, 190, 19.2, 465, 50.3, 49.7, 0.4, 12.9,13.1 +6.410434782608695,5,a-curv-i5,2016-17,Scituate - Scituate High School,02640505, 460, 18.3, 922, 52.9, 47.1, 0.2, 11.8,11.1,914 +NA,NA,a-curv-i5,2016-17,Scituate - Wampatuck Elementary,02640020, 163, 18.4, 446, 45.1, 54.9, 2.2, 15.9,10.8 +NA,NA,a-curv-i5,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 344, 15.4, 522, 50.2, 49.6, 1.1, 16.9,13.2 +NA,NA,a-curv-i5,2016-17,Seekonk - George R Martin,02650007, 80, 20.3, 443, 49.9, 50.1, 6.5, 16.5,16.5 +NA,NA,a-curv-i5,2016-17,Seekonk - Mildred Aitken School,02650015, 67, 21.3, 424, 49.3, 50.7, 3.3, 16.5,12.7 +NA,NA,a-curv-i5,2016-17,Seekonk - Seekonk High,02650505, 305, 17.1, 587, 53.2, 46.8, 1.4, 15.0,13.8 +NA,NA,a-curv-i5,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 229, 24.2, 661, 47.8, 52.2, 27.8, 15.6,54.6 +NA,NA,a-curv-i5,2016-17,Sharon - Cottage Street,02660005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Sharon - East Elementary,02660010, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Sharon - Heights Elementary,02660015, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Sharon - Sharon High,02660505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Sharon - Sharon Middle,02660305, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +6.611948051948052,5,a-curv-i5,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 770, 16.4," 1,334", 42.7, 57.3, 0.0, 23.3,12.5,1336 +NA,NA,a-curv-i5,2016-17,Sherborn - Pine Hill,02690010, 124, 19.6, 443, 46.7, 53.3, 1.6, 13.5,3.8 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Beal School,02710005, 68, 20.1, 320, 45.3, 54.7, 8.1, 13.1,9.7 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Calvin Coolidge,02710015, 84, 22.0, 410, 49.5, 50.5, 8.8, 14.4,14.9 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Floral Street School,02710020, 163, 23.8, 737, 49.4, 50.6, 7.1, 12.6,9.9 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Oak Middle School,02710030, 468, 24.6," 1,003", 48.7, 51.3, 2.6, 14.5,8.8 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Parker Road Preschool,02710040, 20, 13.8, 263, 43.7, 56.3, 16.0, 31.6,14.1 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Sherwood Middle School,02710305, 617, 22.4, 984, 49.5, 50.5, 2.1, 14.0,9.2 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 910, 18.1," 1,791", 53.0, 46.8, 2.7, 9.0,8.8 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Spring Street,02710035, 90, 22.5, 374, 50.0, 50.0, 2.1, 11.0,6.1 +NA,NA,a-curv-i5,2016-17,Shrewsbury - Walter J Paton,02710025, 77, 21.5, 366, 44.5, 55.5, 1.1, 15.3,4.6 +NA,NA,a-curv-i5,2016-17,Shutesbury - Shutesbury Elementary,02720005, 46, 13.4, 123, 55.3, 44.7, 0.8, 18.7,26.8 +NA,NA,a-curv-i5,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 226, 22.1, 557, 49.2, 50.8, 4.5, 17.6,23.7 +NA,NA,a-curv-i5,2016-17,Silver Lake - Silver Lake Regional High,07600505, 451, 20.2," 1,307", 47.4, 52.6, 0.0, 15.9,15.8 +NA,NA,a-curv-i5,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 312, 18.9, 579, 48.5, 51.5, 0.5, 14.9,14.3 +NA,NA,a-curv-i5,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 392, 12.5, 367, 52.0, 48.0, 0.5, 22.6,30 +NA,NA,a-curv-i5,2016-17,Somerset - Chace Street,02730005, 172, 23.1, 427, 45.9, 54.1, 1.2, 18.3,23.2 +NA,NA,a-curv-i5,2016-17,Somerset - North Elementary,02730008, 255, 21.9, 511, 50.7, 49.3, 0.8, 10.2,21.7 +NA,NA,a-curv-i5,2016-17,Somerset - Somerset Middle School,02730305, 339, 21.4, 620, 46.8, 53.2, 0.5, 13.2,17.6 +NA,NA,a-curv-i5,2016-17,Somerset - South,02730015, 130, 23.3, 280, 51.8, 48.2, 1.8, 10.0,24.6 +6.597909407665506,5,a-curv-i5,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 574, 14.6," 1,014", 53.3, 46.7, 0.2, 9.7,13.4,1006 +NA,NA,a-curv-i5,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 175, 19.2, 562, 49.6, 50.4, 28.1, 15.8,33.3 +NA,NA,a-curv-i5,2016-17,Somerville - Arthur D Healey,02740075, 188, 15.1, 437, 51.0, 49.0, 22.0, 24.9,52.6 +NA,NA,a-curv-i5,2016-17,Somerville - Benjamin G Brown,02740015, 62, 19.3, 228, 50.0, 50.0, 1.8, 10.1,11.8 +NA,NA,a-curv-i5,2016-17,Somerville - Capuano Early Childhood Center,02740005, 57, 13.6, 352, 38.4, 61.6, 40.3, 28.7,33.2 +NA,NA,a-curv-i5,2016-17,Somerville - E Somerville Community,02740111, 217, 19.8, 714, 48.7, 51.3, 28.6, 17.8,44 +5.129411764705883,5,a-curv-i5,2016-17,Somerville - Full Circle High School,02740510, 17, 5.4, 47, 40.4, 59.6, 2.1, 76.6,72.3,61 +NA,NA,a-curv-i5,2016-17,Somerville - John F Kennedy,02740083, 162, 18.4, 461, 45.1, 54.9, 2.6, 28.0,29.5 +NA,NA,a-curv-i5,2016-17,Somerville - Next Wave Junior High,02740410, 6, 5.0, 15, 33.3, 66.7, 0.0, 60.0,66.7 +NA,NA,a-curv-i5,2016-17,Somerville - Somerville High,02740505, 683, 14.5," 1,287", 44.4, 55.6, 17.2, 16.3,38.9 +NA,NA,a-curv-i5,2016-17,Somerville - West Somerville Neighborhood,02740115, 118, 20.2, 375, 46.4, 53.6, 4.3, 17.6,37.1 +NA,NA,a-curv-i5,2016-17,Somerville - Winter Hill Community,02740120, 163, 18.8, 488, 44.1, 55.7, 34.0, 28.3,45.3 +NA,NA,a-curv-i5,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 298, 16.0, 559, 49.9, 50.1, 3.8, 15.6,28.4 +NA,NA,a-curv-i5,2016-17,South Hadley - Mosier,02780020, 80, 21.7, 435, 51.0, 49.0, 6.9, 16.8,26.7 +NA,NA,a-curv-i5,2016-17,South Hadley - Plains Elementary,02780015, 17, 21.1, 358, 49.2, 50.8, 5.9, 23.7,28.2 +NA,NA,a-curv-i5,2016-17,South Hadley - South Hadley High,02780505, 307, 13.2, 592, 49.0, 51.0, 0.7, 12.3,18.4 +6.733774834437085,5,a-curv-i5,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 453, 13.7, 700, 43.4, 56.6, 7.6, 42.1,36.7,717 +NA,NA,a-curv-i5,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 368, 17.5, 757, 49.9, 50.1, 15.3, 15.6,14.8 +NA,NA,a-curv-i5,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 529, 13.4, 620, 32.9, 67.1, 0.0, 30.8,22.4 +NA,NA,a-curv-i5,2016-17,Southampton - William E Norris,02750005, 185, 18.5, 523, 47.8, 52.2, 1.9, 20.8,14 +NA,NA,a-curv-i5,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 58, 18.0, 248, 48.8, 51.2, 6.9, 14.9,5.6 +NA,NA,a-curv-i5,2016-17,Southborough - Margaret A Neary,02760020, 64, 21.5, 298, 48.3, 51.7, 6.4, 13.1,4 +NA,NA,a-curv-i5,2016-17,Southborough - Mary E Finn School,02760008, 72, 15.5, 328, 45.7, 54.3, 7.9, 19.2,6.4 +NA,NA,a-curv-i5,2016-17,Southborough - P Brent Trottier,02760305, 281, 16.3, 462, 49.1, 50.9, 4.8, 12.1,2.6 +NA,NA,a-curv-i5,2016-17,Southbridge - Charlton Street,02770005, 182, 20.9, 445, 48.1, 51.9, 22.9, 17.3,67.4 +NA,NA,a-curv-i5,2016-17,Southbridge - Eastford Road,02770010, 71, 12.3, 263, 52.9, 47.1, 21.7, 24.7,69.6 +6.614965986394557,5,a-curv-i5,2016-17,Southbridge - Southbridge High School,02770515, 294, 16.0, 533, 47.8, 52.2, 20.8, 20.8,60.4,509 +NA,NA,a-curv-i5,2016-17,Southbridge - Southbridge Middle School,02770315, 289, 16.6, 536, 47.0, 53.0, 22.6, 21.8,66.8 +NA,NA,a-curv-i5,2016-17,Southbridge - West Street,02770020, 191, 18.6, 431, 50.1, 49.9, 27.6, 16.9,65.4 +NA,NA,a-curv-i5,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 704, 16.5," 1,413", 48.8, 51.2, 1.6, 19.3,36.5 +NA,NA,a-curv-i5,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 263, 10.1, 295, 49.5, 50.5, 1.0, 18.6,26.1 +NA,NA,a-curv-i5,2016-17,Southern Berkshire - New Marlborough Central,07650018, 79, 12.4, 89, 47.2, 52.8, 0.0, 3.4,22.5 +NA,NA,a-curv-i5,2016-17,Southern Berkshire - South Egremont,07650030, 21, 7.5, 15, 40.0, 60.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Southern Berkshire - Undermountain,07650035, 201, 16.7, 317, 47.6, 52.4, 3.2, 16.1,35 +7.062881177707676,5,a-curv-i5,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 951, 14.0," 1,121", 41.9, 58.1, 0.0, 14.3,25.9,1114 +NA,NA,a-curv-i5,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 52, 10.9, 77, 46.8, 53.2, 0.0, 22.1,16.9 +NA,NA,a-curv-i5,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 198, 17.7, 391, 50.9, 49.1, 4.1, 22.0,24.8 +NA,NA,a-curv-i5,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 510, 13.0, 731, 49.7, 50.3, 0.8, 16.1,17.4 +NA,NA,a-curv-i5,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 161, 16.1, 360, 48.1, 51.9, 2.8, 22.2,27.5 +NA,NA,a-curv-i5,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 254, 13.8, 341, 45.7, 54.3, 0.6, 10.6,29 +NA,NA,a-curv-i5,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 58, 19.9, 252, 44.8, 55.2, 0.4, 30.2,26.6 +NA,NA,a-curv-i5,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 228, 17.2, 424, 44.8, 55.2, 0.5, 20.8,32.5 +NA,NA,a-curv-i5,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 96, 19.9, 478, 49.8, 50.2, 2.3, 22.8,35.6 +NA,NA,a-curv-i5,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 226, 17.0, 417, 53.2, 46.8, 2.4, 5.5,34.3 +NA,NA,a-curv-i5,2016-17,Springfield - Alice B Beal Elementary,02810175, 186, 19.0, 284, 51.8, 48.2, 13.4, 14.1,66.5 +NA,NA,a-curv-i5,2016-17,Springfield - Arthur T Talmadge,02810165, 182, 19.5, 268, 46.3, 53.7, 8.2, 17.5,76.5 +NA,NA,a-curv-i5,2016-17,Springfield - Balliet Middle School,02810360, 50, 10.0, 77, 31.2, 68.8, 10.4, 36.4,89.6 +NA,NA,a-curv-i5,2016-17,Springfield - Brightwood,02810025, 212, 20.4, 336, 47.9, 52.1, 26.8, 17.0,91.1 +NA,NA,a-curv-i5,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 166, 16.3, 314, 47.8, 52.2, 28.7, 28.0,86.6 +NA,NA,a-curv-i5,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 138, 20.7, 350, 51.1, 48.9, 27.4, 21.7,87.4 +NA,NA,a-curv-i5,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 164, 20.2, 285, 56.5, 43.5, 7.0, 20.7,69.8 +NA,NA,a-curv-i5,2016-17,Springfield - Conservatory of the Arts,02810475, 178, 13.6, 322, 75.5, 24.5, 10.6, 16.1,70.2 +NA,NA,a-curv-i5,2016-17,Springfield - Daniel B Brunton,02810035, 288, 20.8, 469, 50.5, 49.5, 14.5, 13.9,70.8 +NA,NA,a-curv-i5,2016-17,Springfield - Early Childhood Education Center,02810001, 19, 10.0, 179, 34.6, 65.4, 8.4, 55.9,79.9 +NA,NA,a-curv-i5,2016-17,Springfield - Edward P. Boland School,02810010, 413, 18.6, 814, 42.8, 57.2, 22.9, 30.5,79.1 +NA,NA,a-curv-i5,2016-17,Springfield - Elias Brookings,02810030, 204, 20.0, 380, 49.2, 50.8, 20.8, 27.9,85.8 +NA,NA,a-curv-i5,2016-17,Springfield - Forest Park Middle,02810325, 395, 15.7, 733, 49.8, 50.2, 23.9, 19.4,79.8 +NA,NA,a-curv-i5,2016-17,Springfield - Frank H Freedman,02810075, 184, 22.5, 329, 43.5, 56.5, 12.2, 19.5,71.1 +NA,NA,a-curv-i5,2016-17,Springfield - Frederick Harris,02810080, 370, 18.9, 607, 47.9, 52.1, 16.3, 19.9,69.4 +NA,NA,a-curv-i5,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 3, 13.0, 23, 69.6, 30.4, 0.0, 0.0,52.2 +NA,NA,a-curv-i5,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 3, 38.0, 56, 64.3, 35.7, 5.4, 5.4,69.6 +NA,NA,a-curv-i5,2016-17,Springfield - German Gerena Community School,02810195, 482, 16.8, 724, 50.8, 49.2, 22.5, 19.1,81.1 +NA,NA,a-curv-i5,2016-17,Springfield - Glenwood,02810065, 194, 21.4, 317, 47.3, 52.7, 13.2, 16.1,73.8 +NA,NA,a-curv-i5,2016-17,Springfield - Glickman Elementary,02810068, 259, 17.5, 364, 50.0, 50.0, 15.9, 31.0,71.2 +6.461538461538462,5,a-curv-i5,2016-17,Springfield - High School Of Commerce,02810510, 650, 14.6," 1,215", 46.8, 53.2, 25.9, 21.8,74,1250 +NA,NA,a-curv-i5,2016-17,Springfield - Hiram L Dorman,02810050, 197, 21.4, 319, 49.5, 50.5, 11.6, 19.4,79 +NA,NA,a-curv-i5,2016-17,Springfield - Homer Street,02810085, 258, 21.2, 428, 48.8, 51.2, 18.2, 16.1,85 +NA,NA,a-curv-i5,2016-17,Springfield - Indian Orchard Elementary,02810100, 387, 19.7, 678, 46.3, 53.7, 11.7, 21.8,77.7 +NA,NA,a-curv-i5,2016-17,Springfield - John F Kennedy Middle,02810328, 64, 17.7, 426, 46.5, 53.5, 15.0, 23.0,82.2 +NA,NA,a-curv-i5,2016-17,Springfield - John J Duggan Middle,02810320, 613, 12.2, 684, 42.5, 57.5, 12.9, 23.8,70.9 +NA,NA,a-curv-i5,2016-17,Springfield - Kensington International School,02810110, 228, 16.9, 301, 49.5, 50.5, 30.2, 15.0,83.7 +NA,NA,a-curv-i5,2016-17,Springfield - Liberty,02810115, 168, 21.2, 284, 52.5, 47.5, 25.0, 12.7,68 +NA,NA,a-curv-i5,2016-17,Springfield - Liberty Preparatory Academy,02810560, 14, 4.0, 16, 12.5, 87.5, 18.8, 37.5,68.8 +NA,NA,a-curv-i5,2016-17,Springfield - Lincoln,02810120, 228, 21.4, 386, 43.5, 56.5, 30.1, 16.8,86.3 +NA,NA,a-curv-i5,2016-17,Springfield - M Marcus Kiley Middle,02810330, 527, 15.0, 690, 47.5, 52.5, 12.2, 23.5,79.3 +NA,NA,a-curv-i5,2016-17,Springfield - Margaret C Ells,02810060, 79, 12.1, 278, 41.0, 59.0, 6.8, 51.8,69.8 +NA,NA,a-curv-i5,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 156, 24.6, 357, 51.5, 48.5, 11.2, 17.9,58.8 +NA,NA,a-curv-i5,2016-17,Springfield - Mary M Lynch,02810140, 167, 20.0, 269, 52.8, 47.2, 8.6, 11.5,83.3 +NA,NA,a-curv-i5,2016-17,Springfield - Mary M Walsh,02810155, 197, 20.1, 313, 43.8, 56.2, 28.4, 16.6,76.7 +NA,NA,a-curv-i5,2016-17,Springfield - Mary O Pottenger,02810145, 228, 25.1, 439, 48.5, 51.5, 15.3, 18.0,67.2 +NA,NA,a-curv-i5,2016-17,Springfield - Milton Bradley School,02810023, 355, 18.4, 575, 47.3, 52.7, 21.0, 23.5,89.9 +NA,NA,a-curv-i5,2016-17,Springfield - Rebecca M Johnson,02810055, 468, 18.4, 815, 49.1, 50.9, 13.3, 28.6,85.3 +NA,NA,a-curv-i5,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 943, 13.3," 1,442", 54.0, 46.0, 9.8, 15.5,65.6 +NA,NA,a-curv-i5,2016-17,Springfield - STEM Middle Academy,02810350, 131, 18.7, 293, 35.2, 64.8, 6.8, 12.3,66.6 +NA,NA,a-curv-i5,2016-17,Springfield - Samuel Bowles,02810020, 228, 19.1, 340, 47.1, 52.9, 15.0, 16.8,67.4 +NA,NA,a-curv-i5,2016-17,Springfield - South End Middle School,02810355, 122, 16.2, 246, 48.8, 51.2, 25.2, 19.9,88.2 +NA,NA,a-curv-i5,2016-17,Springfield - Springfield Central High,02810500, 892, 17.4," 1,968", 48.5, 51.5, 12.4, 15.2,62 +6.602985074626867,5,a-curv-i5,2016-17,Springfield - Springfield High School,02810570, 67, 8.6, 126, 31.7, 68.3, 18.3, 37.3,81,117 +6.577083333333334,5,a-curv-i5,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 768, 17.2," 1,368", 41.7, 58.3, 21.8, 20.6,74.9,1366 +NA,NA,a-curv-i5,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 165, 7.4, 88, 14.8, 85.2, 11.4, 89.8,89.8 +7.272131147540984,5,a-curv-i5,2016-17,Springfield - Springfield Public Day High School,02810550, 122, 5.5, 97, 32.0, 68.0, 11.3, 100.0,82.5,111 +NA,NA,a-curv-i5,2016-17,Springfield - Springfield Public Day Middle School,02810345, 103, 4.1, 57, 12.3, 87.7, 19.3, 100.0,87.7 +NA,NA,a-curv-i5,2016-17,Springfield - Sumner Avenue,02810160, 372, 18.4, 623, 46.9, 53.1, 16.4, 26.6,77 +NA,NA,a-curv-i5,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 328, 16.5, 707, 48.8, 51.2, 2.4, 15.7,46.1 +NA,NA,a-curv-i5,2016-17,Springfield - Thomas M Balliet,02810015, 171, 21.0, 333, 49.2, 50.8, 5.4, 18.0,63.1 +NA,NA,a-curv-i5,2016-17,Springfield - Van Sickle Academy,02810480, 121, 18.9, 369, 47.2, 52.8, 20.1, 19.8,77.8 +NA,NA,a-curv-i5,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 173, 15.2, 364, 43.4, 56.6, 13.7, 27.2,70.9 +NA,NA,a-curv-i5,2016-17,Springfield - Warner,02810180, 191, 17.6, 287, 47.4, 52.6, 9.8, 15.0,70 +NA,NA,a-curv-i5,2016-17,Springfield - Washington,02810185, 263, 19.3, 446, 44.4, 55.6, 20.0, 18.4,73.8 +NA,NA,a-curv-i5,2016-17,Springfield - White Street,02810190, 228, 24.4, 447, 49.9, 50.1, 25.5, 14.1,82.8 +NA,NA,a-curv-i5,2016-17,Springfield - William N. DeBerry,02810045, 176, 19.7, 290, 45.5, 54.5, 23.4, 25.2,88.6 +NA,NA,a-curv-i5,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 31, 25.7, 156, 50.6, 49.4, 24.4, 13.5,64.7 +NA,NA,a-curv-i5,2016-17,Stoneham - Colonial Park,02840005, 86, 21.9, 277, 42.6, 57.4, 3.6, 24.2,13 +NA,NA,a-curv-i5,2016-17,Stoneham - Robin Hood,02840025, 132, 21.0, 382, 47.9, 52.1, 6.8, 23.8,18.8 +NA,NA,a-curv-i5,2016-17,Stoneham - South,02840030, 128, 21.3, 340, 51.8, 48.2, 5.6, 13.2,21.5 +NA,NA,a-curv-i5,2016-17,Stoneham - Stoneham Central Middle School,02840405, 520, 16.2, 711, 49.8, 50.2, 2.7, 18.0,15.5 +NA,NA,a-curv-i5,2016-17,Stoneham - Stoneham High,02840505, 392, 15.5, 685, 50.9, 49.1, 2.6, 13.0,12.3 +NA,NA,a-curv-i5,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9, 13.0, 112, 37.5, 62.5, 0.0, 50.0,22.3 +NA,NA,a-curv-i5,2016-17,Stoughton - Helen Hansen Elementary,02850010, 147, 13.6, 242, 52.1, 47.9, 4.1, 18.6,27.3 +NA,NA,a-curv-i5,2016-17,Stoughton - Joseph H Gibbons,02850025, 178, 16.9, 367, 48.8, 51.2, 3.0, 15.8,26.7 +NA,NA,a-curv-i5,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 187, 16.1, 369, 43.6, 56.4, 4.6, 16.3,27.9 +NA,NA,a-curv-i5,2016-17,Stoughton - O'Donnell Middle School,02850405, 461, 17.0, 813, 48.8, 51.2, 3.3, 13.3,27.9 +NA,NA,a-curv-i5,2016-17,Stoughton - South Elementary,02850015, 115, 18.7, 260, 49.2, 50.8, 4.2, 9.2,18.5 +NA,NA,a-curv-i5,2016-17,Stoughton - Stoughton High,02850505, 680, 17.0," 1,084", 47.7, 52.3, 2.4, 12.9,21.6 +NA,NA,a-curv-i5,2016-17,Stoughton - West Elementary,02850020, 157, 19.7, 402, 49.8, 50.2, 19.4, 11.7,43.8 +NA,NA,a-curv-i5,2016-17,Sturbridge - Burgess Elementary,02870005, 241, 22.6, 923, 43.6, 56.4, 0.3, 13.0,15.2 +NA,NA,a-curv-i5,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 517, 14.1, 809, 58.8, 41.2, 0.1, 12.7,11.2 +NA,NA,a-curv-i5,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 517, 22.5, 982, 48.3, 51.7, 0.7, 16.5,5.2 +NA,NA,a-curv-i5,2016-17,Sudbury - General John Nixon Elementary,02880025, 100, 20.0, 358, 50.0, 50.0, 2.0, 10.1,5.6 +NA,NA,a-curv-i5,2016-17,Sudbury - Israel Loring School,02880015, 126, 20.2, 480, 46.7, 53.3, 1.3, 16.0,7.3 +NA,NA,a-curv-i5,2016-17,Sudbury - Josiah Haynes,02880010, 106, 20.7, 395, 44.8, 55.2, 1.8, 18.0,3.3 +NA,NA,a-curv-i5,2016-17,Sudbury - Peter Noyes,02880030, 138, 21.1, 603, 47.6, 52.4, 2.2, 17.9,3.6 +NA,NA,a-curv-i5,2016-17,Sunderland - Sunderland Elementary,02890005, 169, 18.8, 259, 43.6, 56.4, 6.6, 18.1,29.7 +NA,NA,a-curv-i5,2016-17,Sutton - Sutton Early Learning,02900003, 60, 21.8, 329, 49.2, 50.8, 1.8, 22.5,8.8 +NA,NA,a-curv-i5,2016-17,Sutton - Sutton Elementary,02900005, 110, 24.0, 329, 51.7, 48.3, 1.5, 22.8,9.4 +6.147826086956522,5,a-curv-i5,2016-17,Sutton - Sutton High School,02900510, 184, 16.6, 427, 50.8, 49.2, 0.0, 10.3,9.1,426 +NA,NA,a-curv-i5,2016-17,Sutton - Sutton Middle School,02900305, 156, 23.3, 376, 47.1, 52.9, 0.8, 16.5,8.8 +NA,NA,a-curv-i5,2016-17,Swampscott - Clarke,02910005, 110, 16.6, 204, 51.0, 49.0, 10.8, 18.1,17.6 +NA,NA,a-curv-i5,2016-17,Swampscott - Hadley,02910010, 162, 16.2, 292, 47.3, 52.7, 8.6, 12.3,20.5 +NA,NA,a-curv-i5,2016-17,Swampscott - Stanley,02910020, 135, 19.7, 296, 50.3, 49.7, 5.1, 11.8,5.7 +NA,NA,a-curv-i5,2016-17,Swampscott - Swampscott High,02910505, 403, 14.0, 684, 51.0, 49.0, 1.0, 12.0,13 +NA,NA,a-curv-i5,2016-17,Swampscott - Swampscott Middle,02910305, 615, 16.4, 789, 48.8, 51.2, 1.8, 18.6,13.7 +NA,NA,a-curv-i5,2016-17,Swansea - Elizabeth S Brown,02920006, 239, 20.3, 297, 48.8, 51.2, 0.3, 10.8,18.5 +NA,NA,a-curv-i5,2016-17,Swansea - Gardner,02920015, 108, 19.8, 246, 45.9, 54.1, 0.0, 6.1,20.3 +NA,NA,a-curv-i5,2016-17,Swansea - Joseph Case High,02920505, 274, 14.8, 535, 47.3, 52.7, 0.0, 10.5,19.6 +NA,NA,a-curv-i5,2016-17,Swansea - Joseph Case Jr High,02920305, 234, 17.1, 501, 47.1, 52.9, 1.0, 11.0,19.8 +NA,NA,a-curv-i5,2016-17,Swansea - Joseph G Luther,02920020, 210, 16.4, 226, 48.2, 51.8, 0.0, 13.7,21.2 +NA,NA,a-curv-i5,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 110, 16.8, 278, 45.3, 54.7, 0.4, 21.6,18.3 +NA,NA,a-curv-i5,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 421, 33.2," 1,441", 57.8, 42.1, 2.1, 20.1,37.5 +NA,NA,a-curv-i5,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 344, 20.8, 586, 52.6, 47.4, 0.2, 12.1,17.9 +NA,NA,a-curv-i5,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 787, 12.5," 1,260", 49.2, 50.8, 0.2, 9.6,17.1 +NA,NA,a-curv-i5,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 77, 10.2, 497, 38.4, 61.6, 0.2, 14.3,21.1 +NA,NA,a-curv-i5,2016-17,Taunton - Benjamin Friedman Middle,02930315, 369, 22.2, 833, 49.3, 50.7, 1.7, 18.1,36.5 +NA,NA,a-curv-i5,2016-17,Taunton - East Taunton Elementary,02930010, 256, 18.6, 606, 50.2, 49.8, 2.6, 22.1,34.2 +NA,NA,a-curv-i5,2016-17,Taunton - Edmund Hatch Bennett,02930007, 117, 22.0, 330, 46.1, 53.9, 6.1, 12.1,31.2 +NA,NA,a-curv-i5,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 21, 19.7, 413, 43.8, 56.2, 6.3, 47.0,44.1 +NA,NA,a-curv-i5,2016-17,Taunton - Elizabeth Pole,02930027, 247, 19.8, 618, 49.4, 50.6, 9.4, 18.3,54.5 +NA,NA,a-curv-i5,2016-17,Taunton - H H Galligan,02930057, 101, 19.4, 251, 47.8, 52.2, 15.1, 17.5,64.5 +NA,NA,a-curv-i5,2016-17,Taunton - Hopewell,02930035, 117, 20.2, 304, 52.3, 47.7, 3.6, 20.7,56.3 +NA,NA,a-curv-i5,2016-17,Taunton - John F Parker Middle,02930305, 195, 24.2, 482, 51.2, 48.5, 6.0, 16.4,53.1 +NA,NA,a-curv-i5,2016-17,Taunton - Joseph C Chamberlain,02930008, 226, 18.4, 529, 48.0, 52.0, 2.8, 20.8,34 +NA,NA,a-curv-i5,2016-17,Taunton - Joseph H Martin,02930042, 334, 24.0, 747, 47.3, 52.7, 2.3, 18.1,39.4 +NA,NA,a-curv-i5,2016-17,Taunton - Mulcahey Elementary School,02930015, 171, 22.6, 495, 46.7, 53.3, 9.1, 18.4,51.9 +7.396610169491526,5,a-curv-i5,2016-17,Taunton - Taunton Alternative High School,02930525, 118, 8.9, 133, 42.9, 57.1, 0.8, 36.1,61.7,89 +NA,NA,a-curv-i5,2016-17,Taunton - Taunton High,02930505, 980, 19.9," 2,547", 49.9, 50.0, 3.1, 15.1,35.4 +NA,NA,a-curv-i5,2016-17,Tewksbury - Heath-Brook,02950010, 96, 21.1, 337, 49.9, 50.1, 2.1, 8.6,13.9 +NA,NA,a-curv-i5,2016-17,Tewksbury - John F. Ryan,02950023, 256, 20.9, 537, 46.2, 53.8, 1.3, 19.2,14.3 +NA,NA,a-curv-i5,2016-17,Tewksbury - John W. Wynn Middle,02950305, 273, 21.1, 614, 54.6, 45.4, 1.5, 18.2,11.6 +NA,NA,a-curv-i5,2016-17,Tewksbury - L F Dewing,02950001, 135, 20.8, 593, 46.2, 53.8, 3.5, 22.1,16.5 +NA,NA,a-curv-i5,2016-17,Tewksbury - Louise Davy Trahan,02950025, 108, 20.9, 251, 54.6, 45.4, 1.2, 12.4,12 +NA,NA,a-curv-i5,2016-17,Tewksbury - North Street,02950020, 116, 19.9, 257, 42.4, 57.6, 1.6, 21.8,14.8 +NA,NA,a-curv-i5,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 463, 19.7, 975, 47.4, 52.6, 0.9, 12.2,12.2 +NA,NA,a-curv-i5,2016-17,Tisbury - Tisbury Elementary,02960005, 163, 17.1, 326, 46.6, 53.4, 27.3, 13.8,28.5 +NA,NA,a-curv-i5,2016-17,Topsfield - Proctor Elementary,02980005, 83, 15.3, 242, 53.7, 46.3, 0.0, 20.2,8.3 +NA,NA,a-curv-i5,2016-17,Topsfield - Steward Elementary,02980010, 98, 14.8, 387, 49.1, 50.9, 0.0, 18.1,4.7 +NA,NA,a-curv-i5,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 585, 17.0," 1,003", 44.7, 55.2, 0.3, 27.5,19.5 +NA,NA,a-curv-i5,2016-17,Triton - Newbury Elementary,07730020, 199, 20.8, 474, 45.4, 54.6, 0.4, 16.7,12.7 +NA,NA,a-curv-i5,2016-17,Triton - Pine Grove,07730025, 205, 21.6, 492, 50.0, 50.0, 0.8, 15.2,15 +NA,NA,a-curv-i5,2016-17,Triton - Salisbury Elementary,07730015, 244, 19.8, 514, 49.4, 50.6, 1.6, 14.8,35.6 +6.404456824512534,5,a-curv-i5,2016-17,Triton - Triton Regional High School,07730505, 359, 14.2, 715, 51.7, 48.3, 0.6, 12.6,14.7,716 +NA,NA,a-curv-i5,2016-17,Triton - Triton Regional Middle School,07730405, 209, 19.9, 402, 49.3, 50.7, 0.5, 15.7,18.4 +NA,NA,a-curv-i5,2016-17,Truro - Truro Central,03000005, 87, 13.8, 115, 53.9, 46.1, 0.0, 20.0,20 +NA,NA,a-curv-i5,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 340, 20.3, 805, 46.2, 53.8, 2.7, 18.1,15.4 +6.940992167101828,5,a-curv-i5,2016-17,Tyngsborough - Tyngsborough High School,03010505, 383, 16.3, 513, 50.5, 49.5, 0.8, 8.6,8,507 +NA,NA,a-curv-i5,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 306, 19.2, 425, 50.6, 49.4, 1.4, 16.7,13.4 +NA,NA,a-curv-i5,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 128, 22.4, 456, 45.2, 54.8, 16.9, 19.3,62.9 +NA,NA,a-curv-i5,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 212, 22.5, 749, 50.9, 49.1, 21.8, 20.6,59.9 +NA,NA,a-curv-i5,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 18, 10.9, 43, 44.2, 55.8, 0.0, 20.9,11.6 +NA,NA,a-curv-i5,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 173, 15.9, 345, 44.9, 55.1, 5.5, 29.0,18.6 +NA,NA,a-curv-i5,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 319, 15.4, 690, 38.3, 61.7, 0.0, 15.9,22.5 +NA,NA,a-curv-i5,2016-17,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +NA,NA,a-curv-i5,2016-17,Uxbridge - McCloskey Middle School,03040015, 178, 22.0, 434, 47.2, 52.8, 0.9, 13.4,18.7 +NA,NA,a-curv-i5,2016-17,Uxbridge - Taft Early Learning Center,03040005, 120, 19.2, 490, 44.5, 55.5, 1.6, 18.8,19.4 +NA,NA,a-curv-i5,2016-17,Uxbridge - Uxbridge High,03040505, 273, 15.8, 481, 45.5, 54.5, 1.0, 13.3,15.2 +NA,NA,a-curv-i5,2016-17,Uxbridge - Whitin Elementary School,03040020, 108, 22.6, 407, 47.4, 52.3, 1.5, 12.5,19.4 +NA,NA,a-curv-i5,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 83, 27.7, 308, 49.0, 51.0, 10.7, 20.8,69.2 +NA,NA,a-curv-i5,2016-17,Wachusett - Central Tree Middle,07750310, 216, 17.0, 406, 44.3, 55.7, 0.2, 20.2,9.6 +NA,NA,a-curv-i5,2016-17,Wachusett - Chocksett Middle School,07750315, 184, 18.4, 376, 48.1, 51.9, 0.3, 10.1,8.2 +NA,NA,a-curv-i5,2016-17,Wachusett - Davis Hill Elementary,07750018, 158, 20.7, 466, 48.3, 51.7, 1.9, 11.4,11.8 +NA,NA,a-curv-i5,2016-17,Wachusett - Dawson,07750020, 202, 19.2, 527, 49.0, 51.0, 6.3, 11.8,10.1 +NA,NA,a-curv-i5,2016-17,Wachusett - Early Childhood Center,07750001, 8, 22.3, 178, 44.4, 55.6, 0.0, 46.1,22.5 +NA,NA,a-curv-i5,2016-17,Wachusett - Glenwood Elementary School,07750060, 133, 22.0, 356, 50.8, 49.2, 1.1, 16.3,12.1 +NA,NA,a-curv-i5,2016-17,Wachusett - Houghton Elementary,07750027, 151, 19.0, 385, 46.5, 53.5, 0.5, 17.1,10.4 +NA,NA,a-curv-i5,2016-17,Wachusett - Leroy E.Mayo,07750032, 179, 20.3, 508, 46.7, 53.3, 3.3, 13.0,8.3 +NA,NA,a-curv-i5,2016-17,Wachusett - Mountview Middle,07750305, 352, 21.1, 812, 49.5, 50.5, 1.0, 11.2,8.6 +NA,NA,a-curv-i5,2016-17,Wachusett - Naquag Elementary School,07750005, 124, 19.9, 335, 52.2, 47.8, 3.3, 11.0,13.1 +NA,NA,a-curv-i5,2016-17,Wachusett - Paxton Center,07750040, 213, 17.9, 494, 45.7, 54.3, 3.2, 15.4,13 +NA,NA,a-curv-i5,2016-17,Wachusett - Thomas Prince,07750045, 161, 20.2, 413, 52.5, 47.5, 0.0, 14.3,7 +NA,NA,a-curv-i5,2016-17,Wachusett - Wachusett Regional High,07750505," 1,153", 16.9," 2,140", 52.7, 47.3, 0.5, 12.8,8.5 +NA,NA,a-curv-i5,2016-17,Wakefield - Dolbeare,03050005, 105, 21.1, 443, 50.3, 49.7, 1.8, 14.4,12 +NA,NA,a-curv-i5,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 17, 13.1, 129, 48.8, 51.2, 2.3, 28.7,9.3 +NA,NA,a-curv-i5,2016-17,Wakefield - Galvin Middle School,03050310, 555, 21.0," 1,094", 48.7, 51.3, 0.8, 19.0,13.3 +NA,NA,a-curv-i5,2016-17,Wakefield - Greenwood,03050020, 50, 22.2, 222, 50.9, 49.1, 2.3, 14.9,7.7 +NA,NA,a-curv-i5,2016-17,Wakefield - Wakefield Memorial High,03050505, 537, 14.6," 1,010", 52.3, 47.7, 1.2, 13.3,11.9 +NA,NA,a-curv-i5,2016-17,Wakefield - Walton,03050040, 45, 22.0, 198, 47.0, 53.0, 1.5, 9.1,6.1 +NA,NA,a-curv-i5,2016-17,Wakefield - Woodville School,03050015, 105, 21.0, 440, 46.1, 53.6, 5.9, 16.1,17.7 +NA,NA,a-curv-i5,2016-17,Wales - Wales Elementary,03060005, 39, 20.4, 165, 47.3, 52.7, 0.0, 13.9,28.5 +NA,NA,a-curv-i5,2016-17,Walpole - Bird Middle,03070305, 285, 19.8, 488, 50.2, 49.8, 3.7, 15.4,11.1 +NA,NA,a-curv-i5,2016-17,Walpole - Boyden,03070010, 81, 18.7, 379, 52.2, 47.8, 4.5, 15.3,11.3 +NA,NA,a-curv-i5,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 7, 16.4, 99, 45.5, 54.5, 8.1, 46.5,18.2 +NA,NA,a-curv-i5,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 246, 21.2, 450, 47.8, 52.2, 2.2, 12.7,10.4 +NA,NA,a-curv-i5,2016-17,Walpole - Elm Street School,03070005, 88, 19.8, 437, 44.9, 55.1, 2.1, 11.7,11 +NA,NA,a-curv-i5,2016-17,Walpole - Fisher,03070015, 92, 19.8, 456, 49.1, 50.9, 5.7, 12.1,7.5 +NA,NA,a-curv-i5,2016-17,Walpole - Old Post Road,03070018, 89, 19.9, 446, 49.3, 50.7, 4.0, 9.2,10.5 +NA,NA,a-curv-i5,2016-17,Walpole - Walpole High,03070505, 471, 18.2," 1,142", 51.1, 48.8, 1.1, 11.9,8.8 +NA,NA,a-curv-i5,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 263, 16.6, 423, 45.9, 54.1, 10.9, 16.3,19.4 +NA,NA,a-curv-i5,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 266, 18.4, 460, 49.1, 50.9, 52.2, 10.9,42.4 +NA,NA,a-curv-i5,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 283, 16.6, 452, 53.1, 46.9, 18.4, 14.2,20.1 +NA,NA,a-curv-i5,2016-17,Waltham - John F Kennedy Middle,03080404, 390, 14.0, 535, 47.7, 52.3, 17.9, 18.1,28.6 +NA,NA,a-curv-i5,2016-17,Waltham - John W. McDevitt Middle School,03080415, 356, 17.6, 602, 48.2, 51.8, 6.0, 24.3,28.9 +NA,NA,a-curv-i5,2016-17,Waltham - Northeast Elementary School,03080040, 289, 16.2, 561, 48.0, 52.0, 18.7, 20.3,29.6 +NA,NA,a-curv-i5,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 283, 16.5, 444, 44.6, 55.4, 33.8, 15.5,31.8 +NA,NA,a-curv-i5,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 20, 19.5, 39, 53.8, 46.2, 51.3, 2.6,28.2 +NA,NA,a-curv-i5,2016-17,Waltham - Waltham Sr High,03080505, 749, 17.6," 1,620", 46.1, 53.9, 18.3, 12.5,26.5 +NA,NA,a-curv-i5,2016-17,Waltham - William F. Stanley Elementary School,03080005, 274, 15.5, 461, 45.3, 54.7, 22.8, 26.9,26 +NA,NA,a-curv-i5,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 78, 20.1, 445, 46.1, 53.9, 1.1, 17.1,55.3 +6.248847926267281,5,a-curv-i5,2016-17,Ware - Ware Junior/Senior High School,03090505, 217, 17.6, 487, 48.3, 51.7, 0.8, 16.4,41.3,475 +NA,NA,a-curv-i5,2016-17,Ware - Ware Middle School,03090305, 113, 24.0, 342, 52.0, 48.0, 2.0, 14.9,47.4 +NA,NA,a-curv-i5,2016-17,Wareham - John William Decas,03100003, 343, 17.5, 596, 49.2, 50.8, 1.3, 22.3,52.5 +NA,NA,a-curv-i5,2016-17,Wareham - Minot Forest,03100017, 219, 18.6, 527, 47.4, 52.6, 0.8, 35.1,56.9 +NA,NA,a-curv-i5,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 46, 6.7, 74, 39.2, 60.8, 0.0, 20.3,41.9 +NA,NA,a-curv-i5,2016-17,Wareham - Wareham Middle,03100305, 636, 17.6, 789, 48.0, 52.0, 0.8, 23.2,44.4 +NA,NA,a-curv-i5,2016-17,Wareham - Wareham Senior High,03100505, 436, 11.6, 535, 47.9, 52.1, 1.1, 24.5,40 +NA,NA,a-curv-i5,2016-17,Watertown - Cunniff,03140015, 64, 18.1, 290, 47.2, 52.8, 12.4, 17.2,20.7 +NA,NA,a-curv-i5,2016-17,Watertown - Hosmer,03140020, 130, 17.6, 671, 47.8, 52.2, 14.0, 22.7,21.5 +NA,NA,a-curv-i5,2016-17,Watertown - James Russell Lowell,03140025, 88, 18.3, 407, 49.4, 50.6, 12.8, 18.7,20.6 +NA,NA,a-curv-i5,2016-17,Watertown - Watertown High,03140505, 441, 12.7, 670, 50.3, 49.7, 7.6, 22.2,23.9 +NA,NA,a-curv-i5,2016-17,Watertown - Watertown Middle,03140305, 408, 17.2, 566, 50.4, 49.6, 8.7, 20.1,25.1 +NA,NA,a-curv-i5,2016-17,Wayland - Claypit Hill School,03150005, 123, 22.3, 541, 51.4, 48.6, 3.3, 18.7,5 +NA,NA,a-curv-i5,2016-17,Wayland - Happy Hollow School,03150015, 94, 21.4, 391, 45.8, 54.2, 3.6, 19.9,6.4 +NA,NA,a-curv-i5,2016-17,Wayland - Loker School,03150020, 64, 21.8, 266, 46.6, 53.4, 9.4, 13.9,4.9 +6.437735849056604,5,a-curv-i5,2016-17,Wayland - Wayland High School,03150505, 424, 14.7, 823, 46.7, 53.3, 1.5, 20.9,4.6,828 +NA,NA,a-curv-i5,2016-17,Wayland - Wayland Middle School,03150305, 445, 15.3, 648, 51.4, 48.6, 1.7, 18.1,5.1 +6.547540983606558,5,a-curv-i5,2016-17,Webster - Bartlett High School,03160505, 244, 15.1, 447, 46.5, 53.5, 5.8, 16.8,40.3,443 +NA,NA,a-curv-i5,2016-17,Webster - Park Avenue Elementary,03160015, 205, 23.3, 859, 46.8, 53.2, 8.5, 24.2,55.9 +NA,NA,a-curv-i5,2016-17,Webster - Webster Middle School,03160315, 261, 23.2, 570, 54.4, 45.6, 3.2, 20.5,47.2 +NA,NA,a-curv-i5,2016-17,Wellesley - Ernest F Upham,03170050, 49, 20.7, 227, 45.8, 54.2, 0.9, 22.5,2.6 +NA,NA,a-curv-i5,2016-17,Wellesley - Hunnewell,03170025, 54, 21.3, 256, 51.2, 48.8, 1.2, 16.0,2.3 +NA,NA,a-curv-i5,2016-17,Wellesley - John D Hardy,03170020, 74, 18.8, 301, 52.8, 46.8, 6.0, 12.0,4.7 +NA,NA,a-curv-i5,2016-17,Wellesley - Joseph E Fiske,03170015, 86, 18.5, 456, 49.3, 50.7, 7.0, 21.7,9.6 +NA,NA,a-curv-i5,2016-17,Wellesley - Katharine Lee Bates,03170005, 81, 20.7, 376, 54.8, 45.2, 0.3, 13.0,1.3 +NA,NA,a-curv-i5,2016-17,Wellesley - Schofield,03170045, 81, 20.3, 367, 52.3, 47.7, 0.8, 12.5,7.9 +NA,NA,a-curv-i5,2016-17,Wellesley - Sprague Elementary School,03170048, 84, 22.3, 400, 48.0, 52.0, 3.5, 16.3,4.8 +NA,NA,a-curv-i5,2016-17,Wellesley - Wellesley Middle,03170305, 782, 16.5," 1,149", 48.3, 51.7, 1.6, 15.1,5.2 +NA,NA,a-curv-i5,2016-17,Wellesley - Wellesley Sr High,03170505, 720, 16.0," 1,505", 51.8, 48.2, 0.7, 14.6,6.3 +NA,NA,a-curv-i5,2016-17,Wellfleet - Wellfleet Elementary,03180005, 83, 13.6, 124, 52.4, 47.6, 1.6, 24.2,34.7 +NA,NA,a-curv-i5,2016-17,West Boylston - Major Edwards Elementary,03220005, 198, 19.0, 406, 48.5, 51.5, 3.9, 19.2,18 +NA,NA,a-curv-i5,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 359, 14.3, 509, 52.3, 47.7, 1.0, 12.2,17.7 +NA,NA,a-curv-i5,2016-17,West Bridgewater - Howard School,03230305, 146, 20.3, 278, 49.3, 50.7, 0.0, 10.8,18 +NA,NA,a-curv-i5,2016-17,West Bridgewater - Rose L Macdonald,03230003, 164, 22.3, 266, 53.0, 47.0, 2.3, 9.8,18.8 +NA,NA,a-curv-i5,2016-17,West Bridgewater - Spring Street School,03230005, 57, 19.7, 142, 46.5, 53.5, 1.4, 14.1,14.1 +NA,NA,a-curv-i5,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 455, 16.5, 625, 55.2, 44.8, 0.5, 8.0,13.4 +NA,NA,a-curv-i5,2016-17,West Springfield - 21st Century Skills Academy,03320515, 11, 5.5, 16, 25.0, 75.0, 0.0, 31.3,75 +NA,NA,a-curv-i5,2016-17,West Springfield - Cowing Early Childhood,03320001, 10, 14.1, 141, 48.2, 51.8, 1.4, 50.4,60.3 +NA,NA,a-curv-i5,2016-17,West Springfield - John Ashley,03320005, 48, 19.1, 229, 48.0, 52.0, 2.6, 17.9,42.8 +NA,NA,a-curv-i5,2016-17,West Springfield - John R Fausey,03320010, 134, 17.6, 466, 45.3, 54.7, 1.1, 18.5,32.4 +NA,NA,a-curv-i5,2016-17,West Springfield - Memorial,03320025, 57, 20.8, 231, 46.8, 53.2, 0.4, 16.5,68 +NA,NA,a-curv-i5,2016-17,West Springfield - Mittineague,03320030, 49, 16.2, 162, 54.9, 45.1, 0.0, 13.6,42.6 +NA,NA,a-curv-i5,2016-17,West Springfield - Philip G Coburn,03320007, 102, 18.7, 512, 51.8, 48.2, 52.1, 13.5,66.8 +NA,NA,a-curv-i5,2016-17,West Springfield - Tatham,03320040, 52, 22.2, 225, 52.4, 47.6, 0.9, 10.2,24.4 +NA,NA,a-curv-i5,2016-17,West Springfield - West Springfield High,03320505, 691, 15.5," 1,224", 47.1, 52.9, 7.8, 18.6,38.6 +NA,NA,a-curv-i5,2016-17,West Springfield - West Springfield Middle,03320305, 555, 19.6, 939, 47.4, 52.6, 7.9, 19.2,42.6 +NA,NA,a-curv-i5,2016-17,Westborough - Annie E Fales,03210010, 110, 21.3, 351, 49.3, 50.7, 11.1, 17.4,6.3 +NA,NA,a-curv-i5,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 134, 17.8, 519, 46.4, 53.6, 21.2, 24.9,11.4 +NA,NA,a-curv-i5,2016-17,Westborough - J Harding Armstrong,03210005, 135, 17.8, 399, 49.1, 50.9, 19.0, 16.0,6 +NA,NA,a-curv-i5,2016-17,Westborough - Mill Pond School,03210045, 362, 23.4, 890, 49.3, 50.7, 6.3, 15.1,7.6 +NA,NA,a-curv-i5,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 534, 16.3, 651, 47.2, 52.8, 4.6, 16.6,9.2 +NA,NA,a-curv-i5,2016-17,Westborough - Westborough High,03210505, 618, 14.5," 1,057", 50.8, 49.2, 2.3, 8.9,7.6 +NA,NA,a-curv-i5,2016-17,Westfield - Abner Gibbs,03250020, 110, 20.6, 227, 53.7, 46.3, 1.3, 10.6,46.7 +NA,NA,a-curv-i5,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 19, 11.4, 216, 39.4, 60.6, 0.0, 39.8,48.1 +NA,NA,a-curv-i5,2016-17,Westfield - Franklin Ave,03250015, 120, 20.3, 244, 51.2, 48.8, 1.6, 11.5,62.7 +NA,NA,a-curv-i5,2016-17,Westfield - Highland,03250025, 220, 19.0, 419, 45.6, 54.4, 39.1, 12.4,60.4 +NA,NA,a-curv-i5,2016-17,Westfield - Munger Hill,03250033, 210, 19.5, 409, 47.2, 52.8, 0.2, 18.8,20.3 +NA,NA,a-curv-i5,2016-17,Westfield - North Middle School,03250305, 379, 18.4, 660, 49.8, 50.2, 0.2, 18.2,25.5 +NA,NA,a-curv-i5,2016-17,Westfield - Paper Mill,03250036, 220, 19.4, 425, 48.2, 51.8, 1.4, 12.2,40 +NA,NA,a-curv-i5,2016-17,Westfield - Russell Elementary School,03250055, 100, 18.3, 183, 48.1, 51.9, 0.0, 14.8,25.7 +NA,NA,a-curv-i5,2016-17,Westfield - South Middle School,03250310, 300, 18.9, 606, 47.4, 52.6, 6.9, 21.6,39.4 +NA,NA,a-curv-i5,2016-17,Westfield - Southampton Road,03250040, 230, 19.7, 453, 51.7, 48.3, 2.4, 15.5,32.7 +NA,NA,a-curv-i5,2016-17,Westfield - Westfield High,03250505, 641, 17.7," 1,283", 54.2, 45.7, 3.2, 15.7,27 +NA,NA,a-curv-i5,2016-17,Westfield - Westfield Technical Academy,03250605, 269, 14.3, 521, 35.9, 64.1, 1.0, 27.6,33.6 +NA,NA,a-curv-i5,2016-17,Westford - Abbot Elementary,03260004, 142, 18.6, 352, 52.0, 48.0, 1.4, 15.1,4.8 +NA,NA,a-curv-i5,2016-17,Westford - Blanchard Middle,03260310, 279, 17.5, 625, 49.0, 51.0, 2.1, 13.1,5.1 +NA,NA,a-curv-i5,2016-17,Westford - Col John Robinson,03260025, 90, 20.1, 278, 51.1, 48.9, 5.0, 12.2,5.4 +NA,NA,a-curv-i5,2016-17,Westford - Day Elementary,03260007, 143, 19.0, 364, 50.5, 49.5, 4.1, 17.0,6.9 +NA,NA,a-curv-i5,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 143, 18.3, 346, 49.1, 50.9, 3.5, 15.3,5.5 +NA,NA,a-curv-i5,2016-17,Westford - Millennium Elementary,03260013, 15, 12.1, 136, 39.7, 60.3, 0.0, 49.3,10.3 +NA,NA,a-curv-i5,2016-17,Westford - Nabnasset,03260015, 150, 15.7, 359, 49.9, 50.1, 1.9, 14.2,6.7 +NA,NA,a-curv-i5,2016-17,Westford - Rita E. Miller Elementary School,03260055, 118, 18.7, 332, 50.3, 49.7, 8.7, 16.6,6.3 +NA,NA,a-curv-i5,2016-17,Westford - Stony Brook School,03260330, 350, 19.8, 700, 47.6, 52.4, 0.7, 14.0,5.9 +NA,NA,a-curv-i5,2016-17,Westford - Westford Academy,03260505, 696, 19.9," 1,676", 48.9, 51.1, 0.8, 9.4,3.7 +NA,NA,a-curv-i5,2016-17,Westhampton - Westhampton Elementary School,03270005, 50, 16.9, 135, 49.6, 50.4, 0.7, 21.5,13.3 +NA,NA,a-curv-i5,2016-17,Weston - Country,03300010, 78, 17.7, 294, 52.7, 47.3, 7.5, 15.3,5.4 +NA,NA,a-curv-i5,2016-17,Weston - Field Elementary School,03300012, 81, 21.7, 349, 45.3, 54.7, 4.3, 15.5,3.7 +NA,NA,a-curv-i5,2016-17,Weston - Weston High,03300505, 559, 13.6, 707, 49.4, 50.6, 3.3, 17.3,5.5 +NA,NA,a-curv-i5,2016-17,Weston - Weston Middle,03300305, 330, 18.1, 520, 50.0, 50.0, 3.3, 17.3,3.7 +NA,NA,a-curv-i5,2016-17,Weston - Woodland,03300015, 77, 18.2, 309, 48.9, 51.1, 5.5, 13.9,5.2 +NA,NA,a-curv-i5,2016-17,Westport - Alice A Macomber,03310015, 117, 20.7, 378, 46.8, 53.2, 2.1, 22.5,24.6 +NA,NA,a-curv-i5,2016-17,Westport - Westport Elementary,03310030, 253, 18.4, 496, 44.4, 55.6, 0.6, 19.4,21.4 +6.850872817955112,5,a-curv-i5,2016-17,Westport - Westport Junior/Senior High School,03310515, 401, 14.3, 580, 44.5, 55.5, 0.5, 15.3,21.4,576 +NA,NA,a-curv-i5,2016-17,Westwood - Deerfield School,03350010, 95, 17.9, 233, 44.2, 55.8, 4.3, 15.9,3.9 +NA,NA,a-curv-i5,2016-17,Westwood - Downey,03350012, 94, 19.1, 248, 42.7, 57.3, 1.2, 21.8,5.2 +NA,NA,a-curv-i5,2016-17,Westwood - E W Thurston Middle,03350305, 401, 22.4, 799, 53.3, 46.7, 0.8, 15.6,4.3 +NA,NA,a-curv-i5,2016-17,Westwood - Martha Jones,03350017, 109, 19.6, 294, 48.0, 52.0, 0.0, 10.5,5.8 +NA,NA,a-curv-i5,2016-17,Westwood - Paul Hanlon,03350015, 79, 19.7, 216, 49.5, 50.5, 1.9, 17.6,5.6 +NA,NA,a-curv-i5,2016-17,Westwood - Westwood High,03350505, 492, 15.4," 1,006", 52.4, 47.5, 0.1, 18.6,4.8 +NA,NA,a-curv-i5,2016-17,Westwood - Westwood Integrated Preschool,03350050, 3, 15.7, 47, 27.7, 72.3, 0.0, 59.6,10.6 +NA,NA,a-curv-i5,2016-17,Westwood - William E Sheehan,03350025, 130, 18.9, 339, 46.3, 53.7, 0.9, 15.9,4.1 +NA,NA,a-curv-i5,2016-17,Weymouth - Abigail Adams Middle School,03360310, 632, 22.4, 965, 49.5, 50.5, 1.9, 15.9,29.5 +NA,NA,a-curv-i5,2016-17,Weymouth - Academy Avenue,03360005, 57, 20.2, 327, 45.9, 54.1, 11.0, 16.5,25.4 +NA,NA,a-curv-i5,2016-17,Weymouth - Frederick C Murphy,03360050, 41, 22.1, 245, 49.4, 50.6, 1.6, 20.4,23.3 +NA,NA,a-curv-i5,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 21, 11.6, 243, 42.0, 58.0, 1.6, 50.2,23.9 +NA,NA,a-curv-i5,2016-17,Weymouth - Lawrence W Pingree,03360065, 37, 19.4, 215, 52.1, 47.9, 0.5, 27.4,30.2 +NA,NA,a-curv-i5,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 512, 18.9, 938, 49.1, 50.9, 1.7, 17.2,24.7 +NA,NA,a-curv-i5,2016-17,Weymouth - Ralph Talbot,03360085, 45, 21.7, 281, 48.0, 52.0, 12.5, 18.5,27 +NA,NA,a-curv-i5,2016-17,Weymouth - Thomas V Nash,03360060, 38, 20.6, 228, 56.6, 43.4, 0.4, 12.3,23.2 +NA,NA,a-curv-i5,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 65, 19.1, 347, 52.2, 47.8, 9.5, 15.0,20.7 +NA,NA,a-curv-i5,2016-17,Weymouth - Wessagusset,03360110, 63, 15.6, 280, 47.1, 52.9, 0.0, 15.7,19.6 +6.3725000000000005,5,a-curv-i5,2016-17,Weymouth - Weymouth High School,03360505, 960, 16.3," 1,968", 47.7, 52.3, 2.1, 12.3,23.8,1953 +NA,NA,a-curv-i5,2016-17,Weymouth - William Seach,03360080, 58, 20.2, 326, 50.3, 49.7, 14.4, 13.5,49.4 +NA,NA,a-curv-i5,2016-17,Whately - Whately Elementary,03370005, 101, 18.0, 134, 47.8, 52.2, 0.0, 17.9,22.4 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 188, 20.1, 402, 45.0, 55.0, 0.5, 16.9,15.4 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Indian Head,07800035, 112, 21.8, 349, 49.0, 51.0, 0.0, 19.5,16.9 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - John H Duval,07800030, 155, 21.4, 484, 51.4, 48.6, 1.2, 10.1,23.8 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Louise A Conley,07800010, 176, 21.7, 558, 50.2, 49.8, 1.1, 11.5,18.6 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 112, 20.8, 445, 42.7, 57.3, 0.7, 22.7,13.5 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 447, 21.0," 1,168", 52.1, 47.9, 0.5, 13.4,16.8 +NA,NA,a-curv-i5,2016-17,Whitman-Hanson - Whitman Middle,07800310, 241, 24.7, 605, 46.8, 53.2, 1.0, 13.6,19.2 +NA,NA,a-curv-i5,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 705, 13.5," 1,311", 45.2, 54.8, 0.6, 24.8,26.5 +NA,NA,a-curv-i5,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 82, 16.2, 160, 46.3, 53.8, 1.3, 19.4,15.6 +NA,NA,a-curv-i5,2016-17,Williamstown - Williamstown Elementary,03410010, 192, 16.8, 443, 46.0, 54.0, 0.2, 13.3,17.8 +NA,NA,a-curv-i5,2016-17,Wilmington - Boutwell,03420005, 75, 16.2, 170, 48.2, 51.8, 0.0, 23.5,12.4 +NA,NA,a-curv-i5,2016-17,Wilmington - North Intermediate,03420060, 145, 19.7, 269, 47.2, 52.8, 1.1, 17.8,8.2 +NA,NA,a-curv-i5,2016-17,Wilmington - Shawsheen Elementary,03420025, 200, 18.4, 364, 48.1, 51.9, 2.5, 21.2,9.1 +NA,NA,a-curv-i5,2016-17,Wilmington - West Intermediate,03420080, 135, 20.6, 256, 52.3, 47.7, 0.8, 24.6,10.5 +NA,NA,a-curv-i5,2016-17,Wilmington - Wildwood,03420015, 84, 16.3, 184, 42.4, 57.6, 0.5, 26.6,9.2 +NA,NA,a-curv-i5,2016-17,Wilmington - Wilmington High,03420505, 469, 16.3, 899, 50.5, 49.5, 0.7, 13.0,7.7 +NA,NA,a-curv-i5,2016-17,Wilmington - Wilmington Middle School,03420330, 531, 18.6, 872, 49.4, 50.6, 0.5, 19.5,8.9 +NA,NA,a-curv-i5,2016-17,Wilmington - Woburn Street,03420020, 226, 18.4, 415, 47.5, 52.5, 1.7, 17.3,12.8 +NA,NA,a-curv-i5,2016-17,Winchendon - Memorial,03430040, 96, 19.4, 272, 40.1, 59.9, 1.8, 19.1,48.5 +NA,NA,a-curv-i5,2016-17,Winchendon - Murdock Academy for Success,03430405, 4, 25.3, 34, 50.0, 50.0, 0.0, 35.3,64.7 +6.607228915662651,5,a-curv-i5,2016-17,Winchendon - Murdock High School,03430515, 166, 15.8, 329, 48.3, 51.7, 0.6, 23.7,36.5,289 +NA,NA,a-curv-i5,2016-17,Winchendon - Murdock Middle School,03430315, 141, 17.2, 309, 50.5, 49.5, 1.6, 16.5,35.3 +NA,NA,a-curv-i5,2016-17,Winchendon - Toy Town Elementary,03430050, 130, 20.1, 289, 51.2, 48.8, 1.4, 17.0,40.5 +NA,NA,a-curv-i5,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 7, 12.6, 87, 44.8, 55.2, 0.0, 27.6,46 +NA,NA,a-curv-i5,2016-17,Winchester - Ambrose Elementary,03440045, 267, 19.5, 443, 49.2, 50.8, 2.9, 16.9,1.6 +NA,NA,a-curv-i5,2016-17,Winchester - Lincoln Elementary,03440005, 243, 18.8, 414, 53.9, 46.1, 4.3, 14.3,2.7 +NA,NA,a-curv-i5,2016-17,Winchester - Lynch Elementary,03440020, 289, 18.6, 563, 45.5, 54.5, 11.0, 19.2,9.2 +NA,NA,a-curv-i5,2016-17,Winchester - McCall Middle,03440305, 498, 23.0," 1,128", 50.4, 49.6, 1.2, 18.1,3.8 +NA,NA,a-curv-i5,2016-17,Winchester - Muraco Elementary,03440040, 230, 19.4, 396, 50.5, 49.5, 2.5, 15.9,5.8 +NA,NA,a-curv-i5,2016-17,Winchester - Vinson-Owen Elementary,03440025, 241, 20.5, 420, 49.5, 50.5, 5.7, 15.2,2.1 +6.363870967741936,5,a-curv-i5,2016-17,Winchester - Winchester High School,03440505, 620, 16.2," 1,262", 49.8, 50.2, 1.3, 17.7,5.7,1268 +NA,NA,a-curv-i5,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 95, 24.3, 461, 48.4, 51.6, 8.7, 16.5,27.3 +NA,NA,a-curv-i5,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 111, 20.0, 480, 46.7, 53.3, 14.4, 16.7,27.7 +6.005194805194805,5,a-curv-i5,2016-17,Winthrop - Winthrop High School,03460505, 231, 18.2, 597, 50.3, 49.7, 6.4, 18.1,25.5,576 +NA,NA,a-curv-i5,2016-17,Winthrop - Winthrop Middle School,03460305, 262, 21.5, 477, 48.4, 51.6, 5.9, 17.8,24.1 +NA,NA,a-curv-i5,2016-17,Woburn - Clyde Reeves,03470040, 246, 17.2, 459, 49.0, 51.0, 7.0, 17.6,15.5 +NA,NA,a-curv-i5,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 482, 15.5, 509, 49.9, 50.1, 4.5, 19.8,20.6 +NA,NA,a-curv-i5,2016-17,Woburn - Daniel P Hurld,03470020, 120, 17.1, 205, 52.2, 47.8, 4.9, 8.3,15.1 +NA,NA,a-curv-i5,2016-17,Woburn - Goodyear Elementary School,03470005, 180, 18.4, 332, 44.3, 55.7, 5.4, 15.1,31.6 +NA,NA,a-curv-i5,2016-17,Woburn - John F Kennedy Middle School,03470405, 437, 16.9, 503, 51.3, 48.7, 3.8, 15.7,24.9 +NA,NA,a-curv-i5,2016-17,Woburn - Linscott-Rumford,03470025, 120, 17.8, 214, 54.2, 45.8, 7.0, 12.6,33.2 +NA,NA,a-curv-i5,2016-17,Woburn - Malcolm White,03470055, 170, 19.1, 325, 53.5, 46.5, 9.8, 10.2,29.5 +NA,NA,a-curv-i5,2016-17,Woburn - Mary D Altavesta,03470065, 136, 17.3, 235, 46.8, 53.2, 11.5, 15.3,29.8 +NA,NA,a-curv-i5,2016-17,Woburn - Shamrock,03470043, 164, 14.8, 358, 44.4, 55.6, 15.4, 34.6,34.6 +NA,NA,a-curv-i5,2016-17,Woburn - Woburn High,03470505, 630, 16.0," 1,321", 51.0, 48.9, 5.1, 14.2,22 +NA,NA,a-curv-i5,2016-17,Woburn - Wyman,03470060, 110, 16.5, 182, 54.4, 45.6, 3.3, 11.0,17.6 +NA,NA,a-curv-i5,2016-17,Worcester - Belmont Street Community,03480020, 176, 20.2, 576, 46.5, 53.5, 54.5, 18.1,75.7 +NA,NA,a-curv-i5,2016-17,Worcester - Burncoat Middle School,03480405, 280, 15.6, 592, 48.5, 51.5, 25.8, 22.6,53.2 +NA,NA,a-curv-i5,2016-17,Worcester - Burncoat Senior High,03480503, 520, 14.4," 1,053", 49.2, 50.8, 28.3, 25.0,52.4 +NA,NA,a-curv-i5,2016-17,Worcester - Burncoat Street,03480035, 117, 15.4, 324, 46.6, 53.4, 39.8, 18.8,67 +NA,NA,a-curv-i5,2016-17,Worcester - Canterbury,03480045, 153, 16.6, 410, 43.9, 56.1, 49.3, 17.1,72 +NA,NA,a-curv-i5,2016-17,Worcester - Chandler Elementary Community,03480050, 152, 23.8, 587, 46.2, 53.8, 54.9, 16.2,77 +NA,NA,a-curv-i5,2016-17,Worcester - Chandler Magnet,03480052, 274, 14.6, 493, 51.3, 48.7, 66.7, 17.6,62.1 +NA,NA,a-curv-i5,2016-17,Worcester - City View,03480053, 182, 21.0, 590, 50.3, 49.7, 43.6, 19.7,72.4 +NA,NA,a-curv-i5,2016-17,Worcester - Claremont Academy,03480350, 266, 18.1, 599, 51.3, 48.7, 44.2, 11.4,61.6 +NA,NA,a-curv-i5,2016-17,Worcester - Clark St Community,03480055, 108, 13.1, 217, 45.2, 54.8, 49.3, 24.0,77 +NA,NA,a-curv-i5,2016-17,Worcester - Columbus Park,03480060, 166, 20.9, 589, 43.8, 56.2, 50.4, 19.7,68.3 +NA,NA,a-curv-i5,2016-17,Worcester - Doherty Memorial High,03480512, 793, 13.6," 1,575", 46.2, 53.8, 25.3, 16.2,43.9 +NA,NA,a-curv-i5,2016-17,Worcester - Elm Park Community,03480095, 184, 21.0, 628, 51.6, 48.4, 52.2, 19.1,71 +NA,NA,a-curv-i5,2016-17,Worcester - Flagg Street,03480090, 117, 24.6, 432, 52.3, 47.7, 19.9, 9.7,25.5 +NA,NA,a-curv-i5,2016-17,Worcester - Forest Grove Middle,03480415, 401, 21.4," 1,037", 48.5, 51.5, 25.5, 19.8,45.1 +NA,NA,a-curv-i5,2016-17,Worcester - Francis J McGrath Elementary,03480177, 99, 19.2, 336, 50.0, 50.0, 41.1, 17.6,58.9 +NA,NA,a-curv-i5,2016-17,Worcester - Gates Lane,03480110, 254, 16.4, 676, 41.9, 58.1, 36.4, 30.9,57.2 +NA,NA,a-curv-i5,2016-17,Worcester - Goddard School/Science Technical,03480100, 175, 25.3, 568, 44.5, 55.5, 53.3, 16.5,69.9 +NA,NA,a-curv-i5,2016-17,Worcester - Grafton Street,03480115, 131, 21.0, 440, 46.6, 53.4, 49.3, 18.6,73.9 +NA,NA,a-curv-i5,2016-17,Worcester - Head Start,03480002, 168, 9.5, 485, 46.8, 53.2, 61.9, 13.8,68.9 +NA,NA,a-curv-i5,2016-17,Worcester - Heard Street,03480136, 88, 22.3, 318, 50.6, 49.4, 24.5, 14.2,43.1 +NA,NA,a-curv-i5,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 138, 22.4, 458, 49.8, 50.2, 34.9, 10.9,51.5 +NA,NA,a-curv-i5,2016-17,Worcester - Lake View,03480145, 88, 24.3, 350, 48.0, 52.0, 34.0, 14.0,44.6 +NA,NA,a-curv-i5,2016-17,Worcester - Lincoln Street,03480160, 103, 19.3, 317, 48.3, 51.7, 53.6, 22.4,73.5 +NA,NA,a-curv-i5,2016-17,Worcester - May Street,03480175, 168, 19.8, 353, 49.3, 50.7, 36.0, 11.6,39.9 +NA,NA,a-curv-i5,2016-17,Worcester - Midland Street,03480185, 80, 20.6, 245, 46.9, 53.1, 25.7, 11.0,35.9 +NA,NA,a-curv-i5,2016-17,Worcester - Nelson Place,03480200, 227, 15.1, 534, 45.3, 54.7, 18.9, 22.7,30.9 +NA,NA,a-curv-i5,2016-17,Worcester - Norrback Avenue,03480202, 239, 18.4, 690, 47.2, 52.8, 38.6, 22.9,47.4 +NA,NA,a-curv-i5,2016-17,Worcester - North High,03480515, 646, 15.4," 1,446", 47.0, 53.0, 37.6, 23.5,60.2 +NA,NA,a-curv-i5,2016-17,Worcester - Quinsigamond,03480210, 243, 28.1, 921, 52.3, 47.7, 47.6, 17.3,63 +NA,NA,a-curv-i5,2016-17,Worcester - Rice Square,03480215, 142, 20.9, 453, 46.1, 53.9, 38.9, 18.3,59.8 +NA,NA,a-curv-i5,2016-17,Worcester - Roosevelt,03480220, 235, 19.5, 751, 50.1, 49.9, 29.6, 16.5,44.5 +NA,NA,a-curv-i5,2016-17,Worcester - South High Community,03480520, 569, 16.8," 1,418", 48.4, 51.6, 33.3, 24.0,56.6 +NA,NA,a-curv-i5,2016-17,Worcester - Sullivan Middle,03480423, 401, 18.0, 943, 49.2, 50.8, 31.8, 21.2,56.9 +NA,NA,a-curv-i5,2016-17,Worcester - Tatnuck,03480230, 125, 22.1, 463, 52.1, 47.9, 31.7, 15.1,54.2 +NA,NA,a-curv-i5,2016-17,Worcester - Thorndyke Road,03480235, 102, 25.7, 412, 53.9, 46.1, 26.2, 12.1,42.2 +NA,NA,a-curv-i5,2016-17,Worcester - Union Hill School,03480240, 262, 16.8, 471, 46.3, 53.7, 39.9, 19.7,75.6 +NA,NA,a-curv-i5,2016-17,Worcester - University Pk Campus School,03480285, 115, 19.0, 247, 45.7, 54.3, 25.1, 9.7,56.7 +NA,NA,a-curv-i5,2016-17,Worcester - Vernon Hill School,03480280, 188, 18.8, 593, 47.4, 52.6, 41.3, 20.7,65.3 +NA,NA,a-curv-i5,2016-17,Worcester - Wawecus Road School,03480026, 82, 11.8, 155, 50.3, 49.7, 34.8, 27.1,58.1 +NA,NA,a-curv-i5,2016-17,Worcester - West Tatnuck,03480260, 138, 21.5, 456, 50.0, 50.0, 25.4, 15.6,40.8 +NA,NA,a-curv-i5,2016-17,Worcester - Woodland Academy,03480030, 184, 24.3, 694, 49.0, 51.0, 60.5, 15.1,67.7 +NA,NA,a-curv-i5,2016-17,Worcester - Worcester Arts Magnet School,03480225, 115, 23.7, 472, 53.0, 47.0, 28.6, 10.0,35.2 +NA,NA,a-curv-i5,2016-17,Worcester - Worcester East Middle,03480420, 357, 18.6, 871, 48.9, 51.1, 36.1, 18.5,63.8 +NA,NA,a-curv-i5,2016-17,Worcester - Worcester Technical High,03480605, 665, 16.4," 1,453", 57.1, 42.9, 10.7, 12.5,42.3 +NA,NA,a-curv-i5,2016-17,Worthington - R. H. Conwell,03490010, 50, 6.4, 58, 55.2, 44.8, 0.0, 20.7,32.8 +NA,NA,a-curv-i5,2016-17,Wrentham - Charles E Roderick,03500010, 196, 20.6, 449, 47.0, 53.0, 0.0, 14.5,9.8 +NA,NA,a-curv-i5,2016-17,Wrentham - Delaney,03500003, 225, 19.2, 605, 48.6, 51.4, 2.3, 17.4,11.1 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3B_2_student_by_race_and_gender.csv b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv similarity index 88% rename from data/dashboard/admin_data/dese/archive/june-2023/3B_2_student_by_race_and_gender.csv rename to data/admin_data/dese/3B_2_student_by_race_and_gender.csv index f7b39e6..4e6362d 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/3B_2_student_by_race_and_gender.csv +++ b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,Non-White Teachers %,Non-White Students %,School Name,DESE ID,African American,Asian,Hispanic,White,Native American,Native Hawaiian or Pacific Islander,Multi-Race or Non-Hispanic,Males,Females,Non-Binary,Students of color (%) +NA,NA,a-cure-i1,2023-24,88.1,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 56.8, 3.0, 23.3, 11.9, 0.4, 0.1, 4.6, 45.6, 54.4, 0.0 +NA,NA,a-cure-i1,2023-24,28.200000000000003,Abington - Abington Early Education Program,00010001, 5.1, 7.7, 9.0, 71.8, 1.3, 0.0, 5.1, 61.5, 38.5, 0.0 +NA,NA,a-cure-i1,2023-24,27.599999999999994,Abington - Abington High,00010505, 6.2, 2.1, 17.5, 72.4, 0.0, 0.2, 1.6, 54.9, 44.7, 0.4 +NA,NA,a-cure-i1,2023-24,24.700000000000003,Abington - Abington Middle School,00010405, 6.3, 2.4, 13.1, 75.3, 0.6, 0.0, 2.4, 49.4, 50.3, 0.3 +NA,NA,a-cure-i1,2023-24,29.400000000000006,Abington - Beaver Brook Elementary,00010020, 5.5, 2.8, 16.8, 70.6, 0.4, 0.2, 3.8, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,29.299999999999997,Abington - Woodsdale Elementary School,00010015, 7.1, 2.0, 15.6, 70.7, 0.6, 0.0, 4.0, 48.0, 51.7, 0.3 +NA,NA,a-cure-i1,2023-24,96.1,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 64.3, 0.0, 28.6, 3.9, 0.2, 0.0, 3.0, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,52.9,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 3.2, 37.8, 8.1, 47.1, 0.3, 0.2, 3.3, 52.0, 47.5, 0.5 +NA,NA,a-cure-i1,2023-24,48.5,Acton-Boxborough - Blanchard Memorial School,06000005, 3.2, 29.0, 9.3, 51.5, 0.2, 0.0, 6.9, 50.9, 48.5, 0.6 +NA,NA,a-cure-i1,2023-24,37.6,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 2.5, 14.5, 11.3, 62.4, 0.0, 0.0, 9.3, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,59.6,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 6.4, 36.7, 8.3, 40.4, 0.9, 0.0, 7.3, 64.2, 35.8, 0.0 +NA,NA,a-cure-i1,2023-24,73.6,Acton-Boxborough - Luther Conant School,06000030, 2.9, 56.4, 7.7, 26.4, 0.0, 0.0, 6.5, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,32.2,Acton-Boxborough - McCarthy-Towne School,06000015, 3.4, 10.4, 12.9, 67.8, 0.0, 0.0, 5.4, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,34.900000000000006,Acton-Boxborough - Merriam School,06000010, 2.2, 16.6, 8.2, 65.1, 0.0, 0.0, 7.9, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,71.6,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.7, 56.5, 6.2, 28.4, 0.0, 0.0, 7.3, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,47.6,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.0, 33.5, 7.3, 52.4, 0.0, 0.0, 4.9, 49.4, 50.2, 0.4 +NA,NA,a-cure-i1,2023-24,12.799999999999997,Acushnet - Acushnet Elementary School,00030025, 1.4, 0.4, 7.7, 87.2, 0.8, 0.0, 2.5, 54.9, 45.1, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Acushnet - Albert F Ford Middle School,00030305, 1.0, 1.0, 4.5, 89.3, 0.5, 0.0, 3.8, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,31.5,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.7, 10.6, 11.0, 68.5, 0.1, 0.1, 7.0, 53.0, 46.0, 1.0 +NA,NA,a-cure-i1,2023-24,27.299999999999997,Agawam - Agawam Early Childhood Center,00050003, 3.3, 4.0, 18.0, 72.7, 0.0, 0.0, 2.0, 63.3, 36.7, 0.0 +NA,NA,a-cure-i1,2023-24,21.0,Agawam - Agawam High,00050505, 3.0, 4.0, 11.0, 79.0, 0.0, 0.0, 2.9, 53.9, 45.5, 0.6 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Agawam - Agawam Junior High,00050405, 2.7, 2.4, 10.3, 81.9, 0.2, 0.2, 2.4, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,20.099999999999994,Agawam - Benjamin J Phelps,00050020, 2.6, 4.2, 9.4, 79.9, 0.3, 0.0, 3.6, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,23.5,Agawam - Clifford M Granger,00050010, 0.6, 2.3, 18.1, 76.5, 0.6, 0.0, 2.0, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,25.400000000000006,Agawam - James Clark School,00050030, 2.0, 4.3, 15.8, 74.6, 0.3, 0.0, 3.0, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,20.200000000000003,Agawam - Roberta G. Doering School,00050303, 2.4, 3.6, 11.5, 79.8, 0.0, 0.2, 2.6, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,23.200000000000003,Agawam - William P. Sapelli Elementary,00050025, 2.8, 2.1, 14.7, 76.8, 0.0, 0.0, 3.5, 43.9, 56.1, 0.0 +NA,NA,a-cure-i1,2023-24,80.2,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 14.8, 0.6, 60.1, 19.8, 0.7, 0.0, 4.0, 47.1, 52.9, 0.0 +NA,NA,a-cure-i1,2023-24,19.400000000000006,Amesbury - Amesbury High,00070505, 1.7, 1.9, 11.4, 80.6, 0.2, 0.0, 4.1, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 9.8, 78.4, 0.0, 0.0, 11.8, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,19.5,Amesbury - Amesbury Middle,00070013, 2.2, 1.2, 11.3, 80.5, 0.2, 0.0, 4.6, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,18.799999999999997,Amesbury - Charles C Cashman Elementary,00070010, 2.0, 0.0, 13.3, 81.2, 0.3, 0.3, 3.0, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Amesbury - Shay Elementary,00070005, 2.3, 0.4, 12.5, 81.9, 0.2, 0.0, 2.7, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,52.5,Amherst - Crocker Farm Elementary,00080009, 11.0, 12.3, 20.6, 47.5, 0.0, 0.3, 8.3, 46.6, 51.8, 1.5 +NA,NA,a-cure-i1,2023-24,56.6,Amherst - Fort River Elementary,00080020, 6.6, 10.1, 34.1, 43.4, 0.3, 0.0, 5.5, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,53.7,Amherst - Wildwood Elementary,00080050, 14.5, 13.8, 18.0, 46.3, 0.3, 0.0, 7.1, 48.9, 50.2, 1.0 +NA,NA,a-cure-i1,2023-24,41.5,Amherst-Pelham - Amherst Regional High,06050505, 6.8, 8.6, 18.0, 58.5, 0.0, 0.0, 8.2, 50.4, 47.1, 2.5 +NA,NA,a-cure-i1,2023-24,44.7,Amherst-Pelham - Amherst Regional Middle School,06050405, 10.0, 11.9, 16.8, 55.3, 0.5, 0.3, 5.1, 53.4, 45.5, 1.1 +NA,NA,a-cure-i1,2023-24,37.4,Andover - Andover High,00090505, 3.0, 21.5, 9.3, 62.6, 0.2, 0.1, 3.2, 50.1, 49.8, 0.1 +NA,NA,a-cure-i1,2023-24,33.7,Andover - Andover West Middle,00090310, 2.8, 18.7, 10.1, 66.3, 0.0, 0.0, 2.0, 46.9, 52.9, 0.2 +NA,NA,a-cure-i1,2023-24,25.700000000000003,Andover - Bancroft Elementary,00090003, 1.0, 8.0, 10.3, 74.3, 0.0, 0.0, 6.3, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,19.900000000000006,Andover - Doherty Middle,00090305, 1.7, 8.4, 5.4, 80.1, 0.0, 0.0, 4.3, 51.1, 48.7, 0.2 +NA,NA,a-cure-i1,2023-24,42.5,Andover - Henry C Sanborn Elementary,00090010, 3.3, 22.5, 9.0, 57.5, 0.6, 0.0, 7.2, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,51.7,Andover - High Plain Elementary,00090004, 3.9, 27.0, 13.8, 48.3, 0.0, 0.2, 6.8, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,43.4,Andover - Shawsheen School,00090005, 6.0, 15.7, 12.0, 56.6, 0.0, 0.0, 9.6, 59.0, 41.0, 0.0 +NA,NA,a-cure-i1,2023-24,33.099999999999994,Andover - South Elementary,00090020, 1.2, 18.5, 6.3, 66.9, 0.0, 0.0, 7.2, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,35.900000000000006,Andover - West Elementary,00090025, 4.1, 16.6, 8.8, 64.1, 0.2, 0.0, 6.2, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,51.1,Andover - Wood Hill Middle School,00090350, 3.3, 30.8, 12.4, 48.9, 0.3, 0.0, 4.2, 58.3, 41.7, 0.0 +NA,NA,a-cure-i1,2023-24,49.1,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 14.5, 2.3, 25.6, 50.9, 0.7, 0.2, 5.9, 53.3, 46.3, 0.3 +NA,NA,a-cure-i1,2023-24,29.200000000000003,Arlington - Arlington High,00100505, 3.2, 10.6, 8.8, 70.8, 0.1, 0.1, 6.4, 49.2, 49.0, 1.7 +NA,NA,a-cure-i1,2023-24,32.900000000000006,Arlington - Brackett,00100010, 1.2, 11.1, 5.7, 67.1, 0.0, 0.0, 14.9, 53.7, 46.1, 0.2 +NA,NA,a-cure-i1,2023-24,34.0,Arlington - Cyrus E Dallin,00100025, 1.2, 14.4, 7.1, 66.0, 0.0, 0.0, 11.2, 47.4, 52.3, 0.2 +NA,NA,a-cure-i1,2023-24,31.400000000000006,Arlington - Gibbs School,00100305, 3.2, 10.3, 7.3, 68.6, 0.0, 0.0, 10.7, 46.8, 52.4, 0.9 +NA,NA,a-cure-i1,2023-24,35.5,Arlington - Hardy,00100030, 2.9, 13.8, 6.8, 64.5, 0.0, 0.0, 12.0, 51.2, 48.6, 0.3 +NA,NA,a-cure-i1,2023-24,33.0,Arlington - John A Bishop,00100005, 2.3, 11.3, 6.9, 67.0, 0.0, 0.0, 12.5, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,41.2,Arlington - M Norcross Stratton,00100055, 3.0, 19.7, 7.8, 58.8, 0.0, 0.0, 10.8, 52.6, 46.9, 0.5 +NA,NA,a-cure-i1,2023-24,49.4,Arlington - Menotomy Preschool,00100038, 2.5, 19.0, 8.9, 50.6, 1.3, 0.0, 17.7, 59.5, 40.5, 0.0 +NA,NA,a-cure-i1,2023-24,30.5,Arlington - Ottoson Middle,00100410, 3.3, 14.0, 7.9, 69.5, 0.0, 0.2, 5.1, 49.9, 49.0, 1.1 +NA,NA,a-cure-i1,2023-24,39.1,Arlington - Peirce,00100045, 6.3, 16.1, 10.4, 60.9, 0.0, 0.0, 6.3, 54.9, 44.8, 0.3 +NA,NA,a-cure-i1,2023-24,39.3,Arlington - Thompson,00100050, 5.4, 13.0, 9.0, 60.7, 0.2, 0.0, 11.7, 49.2, 50.6, 0.2 +NA,NA,a-cure-i1,2023-24,12.200000000000003,Ashburnham-Westminster - Briggs Elementary,06100025, 2.0, 0.8, 6.5, 87.8, 0.0, 0.0, 2.8, 48.6, 51.2, 0.2 +NA,NA,a-cure-i1,2023-24,8.700000000000003,Ashburnham-Westminster - Meetinghouse School,06100010, 2.6, 0.0, 4.1, 91.3, 0.0, 0.0, 2.1, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,15.5,Ashburnham-Westminster - Oakmont Regional High School,06100505, 1.4, 1.4, 8.7, 84.5, 0.2, 0.0, 3.8, 51.9, 46.4, 1.7 +NA,NA,a-cure-i1,2023-24,12.5,Ashburnham-Westminster - Overlook Middle School,06100305, 1.1, 0.6, 8.2, 87.5, 0.0, 0.0, 2.6, 49.9, 49.7, 0.4 +NA,NA,a-cure-i1,2023-24,11.5,Ashburnham-Westminster - Westminster Elementary,06100005, 1.5, 0.7, 6.4, 88.5, 0.0, 0.0, 2.9, 48.8, 51.0, 0.2 +NA,NA,a-cure-i1,2023-24,36.7,Ashland - Ashland High,00140505, 2.6, 13.4, 17.1, 63.3, 0.7, 0.0, 2.8, 50.5, 49.4, 0.1 +NA,NA,a-cure-i1,2023-24,43.2,Ashland - Ashland Middle,00140405, 3.4, 16.2, 19.6, 56.8, 0.0, 0.0, 4.0, 51.4, 48.5, 0.1 +NA,NA,a-cure-i1,2023-24,47.2,Ashland - David Mindess,00140015, 3.0, 20.4, 19.6, 52.8, 0.1, 0.1, 3.9, 55.0, 44.8, 0.1 +NA,NA,a-cure-i1,2023-24,49.1,Ashland - Henry E Warren Elementary,00140010, 2.6, 22.9, 19.5, 50.9, 0.2, 0.0, 3.9, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,53.9,Ashland - William Pittaway Elementary,00140005, 1.3, 31.6, 17.1, 46.1, 0.0, 0.0, 3.9, 60.5, 39.5, 0.0 +NA,NA,a-cure-i1,2023-24,36.5,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 2.5, 0.3, 29.9, 63.5, 0.4, 0.0, 3.5, 52.7, 46.9, 0.4 +NA,NA,a-cure-i1,2023-24,21.900000000000006,Athol-Royalston - Athol Community Elementary School,06150020, 2.3, 1.8, 13.0, 78.1, 0.0, 0.0, 4.9, 52.5, 47.3, 0.2 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Athol-Royalston - Athol High,06150505, 4.1, 1.9, 19.6, 72.2, 0.2, 0.0, 1.9, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,22.700000000000003,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.5, 0.6, 16.6, 77.3, 0.0, 0.0, 3.9, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,10.099999999999994,Athol-Royalston - Royalston Community School,06150050, 0.7, 0.0, 6.1, 89.9, 0.0, 0.0, 3.4, 55.4, 44.6, 0.0 +NA,NA,a-cure-i1,2023-24,36.0,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.9, 2.1, 19.5, 64.0, 0.2, 0.1, 7.2, 47.8, 52.1, 0.1 +NA,NA,a-cure-i1,2023-24,34.7,Attleboro - A. Irvin Studley Elementary School,00160001, 7.4, 4.0, 17.5, 65.3, 0.6, 0.3, 4.9, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,41.2,Attleboro - Attleboro Community Academy,00160515, 11.8, 4.4, 14.7, 58.8, 0.0, 0.0, 10.3, 45.6, 52.9, 1.5 +NA,NA,a-cure-i1,2023-24,39.7,Attleboro - Attleboro High,00160505, 10.2, 4.7, 18.0, 60.3, 0.2, 0.1, 6.4, 53.1, 46.5, 0.4 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Attleboro - Attleboro Virtual Academy,00160705, 6.5, 3.2, 9.7, 77.4, 0.0, 0.0, 3.2, 90.3, 9.7, 0.0 +NA,NA,a-cure-i1,2023-24,40.3,Attleboro - Cyril K. Brennan Middle School,00160315, 11.1, 2.6, 19.7, 59.7, 0.3, 0.0, 6.5, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,42.0,Attleboro - Early Learning Center,00160008, 16.4, 3.5, 18.1, 58.0, 0.9, 0.0, 3.1, 58.0, 42.0, 0.0 +NA,NA,a-cure-i1,2023-24,40.4,Attleboro - Hill-Roberts Elementary School,00160045, 8.4, 7.2, 18.4, 59.6, 0.0, 0.0, 6.5, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,41.1,Attleboro - Hyman Fine Elementary School,00160040, 7.4, 3.5, 21.0, 58.9, 0.0, 0.2, 9.0, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,44.3,Attleboro - Peter Thacher Elementary School,00160050, 10.2, 5.2, 22.0, 55.7, 0.5, 0.0, 6.4, 53.4, 46.4, 0.2 +NA,NA,a-cure-i1,2023-24,35.7,Attleboro - Robert J. Coelho Middle School,00160305, 9.0, 5.2, 14.0, 64.3, 0.2, 0.2, 7.1, 55.1, 44.7, 0.2 +NA,NA,a-cure-i1,2023-24,41.0,Attleboro - Thomas Willett Elementary School,00160035, 10.2, 3.2, 19.8, 59.0, 0.5, 0.3, 7.0, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,39.3,Attleboro - Wamsutta Middle School,00160320, 6.9, 5.7, 17.8, 60.7, 0.0, 0.2, 8.8, 49.1, 50.7, 0.2 +NA,NA,a-cure-i1,2023-24,23.5,Auburn - Auburn Middle,00170305, 3.2, 4.3, 12.4, 76.5, 0.0, 0.0, 3.5, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,25.900000000000006,Auburn - Auburn Senior High,00170505, 5.3, 6.9, 11.3, 74.1, 0.0, 0.0, 2.5, 49.3, 50.6, 0.1 +NA,NA,a-cure-i1,2023-24,26.5,Auburn - Bryn Mawr,00170010, 5.1, 4.3, 15.2, 73.5, 0.0, 0.4, 1.6, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,29.5,Auburn - Pakachoag School,00170025, 6.1, 4.1, 15.6, 70.5, 0.8, 0.0, 2.9, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,19.599999999999994,Auburn - Swanson Road Intermediate School,00170030, 1.8, 3.0, 11.8, 80.4, 0.4, 0.2, 2.5, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,66.2,Avon - Avon Middle High School,00180510, 40.9, 4.4, 14.7, 33.8, 0.7, 0.0, 5.4, 52.2, 47.5, 0.2 +NA,NA,a-cure-i1,2023-24,58.6,Avon - Ralph D Butler,00180010, 32.4, 4.0, 14.2, 41.4, 0.3, 0.0, 7.7, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,29.599999999999994,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 6.3, 3.9, 15.5, 70.4, 1.0, 0.5, 2.4, 56.1, 43.4, 0.5 +NA,NA,a-cure-i1,2023-24,28.200000000000003,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 4.5, 3.2, 14.2, 71.8, 0.5, 0.3, 5.5, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Ayer Shirley School District - Lura A. White Elementary School,06160001, 5.9, 2.2, 11.2, 75.8, 0.8, 0.0, 3.9, 55.6, 44.4, 0.0 +NA,NA,a-cure-i1,2023-24,33.900000000000006,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 6.5, 6.1, 12.6, 66.1, 0.4, 0.0, 8.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,70.6,Barnstable - Barnstable Community Innovation School,00200012, 10.0, 1.9, 50.8, 29.4, 0.0, 0.0, 7.8, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,48.5,Barnstable - Barnstable High,00200505, 10.5, 1.8, 29.7, 51.5, 0.6, 0.1, 5.9, 52.7, 46.9, 0.4 +NA,NA,a-cure-i1,2023-24,49.9,Barnstable - Barnstable Intermediate School,00200315, 10.0, 2.7, 29.4, 50.1, 0.0, 0.0, 7.8, 51.5, 48.2, 0.3 +NA,NA,a-cure-i1,2023-24,48.4,Barnstable - Barnstable United Elementary School,00200050, 9.1, 2.1, 28.2, 51.6, 0.6, 0.0, 8.5, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,33.099999999999994,Barnstable - Centerville Elementary,00200010, 6.5, 1.9, 16.2, 66.9, 0.0, 0.0, 8.5, 58.5, 41.2, 0.4 +NA,NA,a-cure-i1,2023-24,61.4,Barnstable - Enoch Cobb Early Learning Center,00200001, 10.5, 4.6, 34.6, 38.6, 0.0, 0.0, 11.8, 62.1, 37.9, 0.0 +NA,NA,a-cure-i1,2023-24,78.1,Barnstable - Hyannis West Elementary,00200025, 13.2, 1.8, 55.0, 21.9, 0.6, 0.0, 7.6, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,41.9,Barnstable - West Barnstable Elementary,00200005, 3.6, 3.2, 20.9, 58.1, 0.0, 0.0, 14.2, 56.9, 43.1, 0.0 +NA,NA,a-cure-i1,2023-24,30.599999999999994,Barnstable - West Villages Elementary School,00200045, 4.3, 1.5, 14.0, 69.4, 0.0, 0.0, 10.8, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,96.9,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 24.4, 0.7, 70.0, 3.1, 0.0, 0.7, 1.0, 48.3, 51.7, 0.0 +NA,NA,a-cure-i1,2023-24,38.7,Bedford - Bedford High,00230505, 7.0, 17.6, 10.2, 61.3, 0.0, 0.0, 3.9, 50.7, 48.8, 0.5 +NA,NA,a-cure-i1,2023-24,43.8,Bedford - John Glenn Middle,00230305, 8.0, 21.6, 6.7, 56.2, 0.0, 0.0, 7.5, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,45.7,Bedford - Lt Eleazer Davis,00230010, 8.0, 22.2, 5.7, 54.3, 0.0, 0.0, 9.8, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,47.3,Bedford - Lt Job Lane School,00230012, 6.3, 25.4, 7.9, 52.7, 0.0, 0.2, 7.5, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,14.799999999999997,Belchertown - Belchertown High,00240505, 1.8, 1.5, 7.6, 85.2, 0.0, 0.3, 3.5, 47.3, 51.8, 0.8 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Belchertown - Chestnut Hill Community School,00240006, 0.6, 1.6, 9.6, 83.6, 0.2, 0.0, 4.3, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,18.5,Belchertown - Cold Spring,00240005, 0.0, 3.2, 11.1, 81.5, 0.0, 0.0, 4.2, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,14.400000000000006,Belchertown - Jabish Middle School,00240025, 2.1, 1.8, 6.6, 85.6, 0.3, 0.0, 3.6, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Belchertown - Swift River Elementary,00240018, 1.1, 1.1, 10.7, 81.4, 0.4, 0.0, 5.3, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,26.599999999999994,Bellingham - Bellingham Early Childhood Center,00250003, 4.6, 7.3, 11.9, 73.4, 0.0, 0.0, 2.8, 59.6, 40.4, 0.0 +NA,NA,a-cure-i1,2023-24,19.900000000000006,Bellingham - Bellingham High School,00250505, 2.3, 3.7, 10.7, 80.1, 0.4, 0.0, 2.8, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Bellingham - Bellingham Memorial School,00250315, 2.2, 2.0, 14.0, 77.7, 0.0, 1.0, 3.0, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,26.200000000000003,Bellingham - Joseph F DiPietro Elementary School,00250020, 3.0, 3.0, 15.6, 73.8, 0.3, 0.0, 4.3, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,7.700000000000003,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 38.5, 61.5, 0.0 +NA,NA,a-cure-i1,2023-24,26.299999999999997,Bellingham - Stall Brook,00250025, 2.3, 1.4, 18.8, 73.7, 0.0, 0.0, 3.8, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,38.9,Belmont - Belmont High,00260505, 3.8, 22.0, 6.0, 61.1, 0.1, 0.1, 6.8, 49.5, 49.8, 0.7 +NA,NA,a-cure-i1,2023-24,41.0,Belmont - Belmont Middle School,00260315, 4.8, 22.4, 3.5, 59.0, 0.2, 0.2, 10.1, 50.3, 48.6, 1.1 +NA,NA,a-cure-i1,2023-24,54.8,Belmont - Daniel Butler,00260015, 2.2, 32.1, 11.2, 45.2, 0.0, 0.0, 9.3, 49.8, 49.8, 0.3 +NA,NA,a-cure-i1,2023-24,38.2,Belmont - Mary Lee Burbank,00260010, 3.4, 24.5, 4.3, 61.8, 0.0, 0.0, 5.9, 49.1, 50.0, 0.9 +NA,NA,a-cure-i1,2023-24,41.0,Belmont - Roger E Wellington,00260035, 7.1, 18.4, 6.1, 59.0, 0.0, 0.0, 9.4, 50.2, 49.4, 0.4 +NA,NA,a-cure-i1,2023-24,45.7,Belmont - Winn Brook,00260005, 4.1, 28.7, 4.3, 54.3, 0.0, 0.0, 8.6, 46.7, 53.3, 0.0 +NA,NA,a-cure-i1,2023-24,41.2,Belmont - Winthrop L Chenery Upper Elementary,00260305, 3.4, 24.8, 3.9, 58.8, 0.0, 0.0, 9.1, 52.7, 46.8, 0.4 +NA,NA,a-cure-i1,2023-24,97.1,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 82.9, 2.6, 6.6, 2.9, 0.0, 0.0, 4.9, 48.6, 51.2, 0.3 +NA,NA,a-cure-i1,2023-24,40.0,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 3.3, 23.1, 6.5, 60.0, 1.0, 0.8, 5.3, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,11.5,Berkley - Berkley Community School,00270010, 1.9, 0.0, 4.0, 88.5, 0.2, 0.0, 5.3, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,7.700000000000003,Berkley - Berkley Middle School,00270305, 0.5, 1.1, 2.2, 92.3, 0.0, 0.3, 3.6, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,30.400000000000006,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 9.6, 0.8, 14.8, 69.6, 0.0, 0.0, 5.2, 49.6, 47.4, 3.0 +NA,NA,a-cure-i1,2023-24,23.099999999999994,Berkshire Hills - Monument Mt Regional High,06180505, 2.0, 2.4, 14.6, 76.9, 0.0, 0.2, 3.8, 55.2, 43.9, 0.9 +NA,NA,a-cure-i1,2023-24,31.799999999999997,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 3.7, 3.2, 17.9, 68.2, 0.0, 0.0, 7.1, 49.7, 50.0, 0.3 +NA,NA,a-cure-i1,2023-24,24.099999999999994,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 2.3, 2.0, 14.1, 75.9, 0.0, 0.0, 5.7, 47.1, 52.0, 0.9 +NA,NA,a-cure-i1,2023-24,16.200000000000003,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, 1.8, 9.9, 83.8, 1.4, 0.0, 2.7, 50.9, 48.6, 0.5 +NA,NA,a-cure-i1,2023-24,21.099999999999994,Berlin-Boylston - Boylston Elementary School,06200010, 1.5, 4.5, 11.6, 78.9, 0.3, 0.0, 3.3, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,20.799999999999997,Berlin-Boylston - Tahanto Regional High,06200505, 2.2, 4.3, 8.5, 79.2, 0.2, 0.2, 5.4, 49.8, 49.8, 0.4 +NA,NA,a-cure-i1,2023-24,17.0,Beverly - Ayers/Ryal Side School,00300055, 2.3, 1.5, 10.3, 83.0, 0.0, 0.0, 2.8, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Beverly - Beverly High,00300505, 3.3, 2.2, 18.7, 72.2, 0.1, 0.1, 3.4, 49.0, 50.6, 0.4 +NA,NA,a-cure-i1,2023-24,27.0,Beverly - Beverly Middle School,00300305, 3.8, 1.8, 17.0, 73.0, 0.0, 0.0, 4.5, 52.6, 47.1, 0.3 +NA,NA,a-cure-i1,2023-24,30.200000000000003,Beverly - Centerville Elementary,00300010, 3.4, 1.9, 16.8, 69.8, 0.0, 0.0, 8.1, 55.5, 44.5, 0.0 +NA,NA,a-cure-i1,2023-24,30.400000000000006,Beverly - Cove Elementary,00300015, 3.0, 1.0, 21.0, 69.6, 0.2, 0.0, 5.2, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Beverly - Hannah Elementary,00300033, 1.6, 3.4, 10.9, 78.4, 0.3, 0.0, 5.3, 50.6, 49.1, 0.3 +NA,NA,a-cure-i1,2023-24,29.099999999999994,Beverly - McKeown School,00300002, 7.3, 4.5, 13.6, 70.9, 0.0, 0.0, 3.6, 60.0, 40.0, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Beverly - North Beverly Elementary,00300040, 3.2, 2.9, 11.2, 78.4, 0.0, 0.3, 4.0, 57.3, 42.7, 0.0 +NA,NA,a-cure-i1,2023-24,33.400000000000006,Billerica - Billerica Memorial High School,00310505, 7.1, 11.0, 11.1, 66.6, 0.4, 0.1, 3.7, 50.9, 48.9, 0.2 +NA,NA,a-cure-i1,2023-24,35.8,Billerica - Frederick J Dutile,00310007, 8.1, 14.5, 7.8, 64.2, 0.0, 0.0, 5.4, 54.7, 44.9, 0.3 +NA,NA,a-cure-i1,2023-24,34.0,Billerica - Hajjar Elementary,00310026, 5.8, 9.4, 14.9, 66.0, 0.5, 0.0, 3.4, 46.1, 53.7, 0.3 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Billerica - John F Kennedy,00310012, 1.2, 5.2, 8.5, 81.4, 1.2, 0.0, 2.4, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,26.0,Billerica - Locke Middle,00310310, 2.6, 9.7, 8.7, 74.0, 0.0, 0.0, 5.0, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,30.700000000000003,Billerica - Marshall Middle School,00310305, 7.0, 9.0, 11.4, 69.3, 0.2, 0.0, 3.2, 46.6, 53.4, 0.0 +NA,NA,a-cure-i1,2023-24,38.5,Billerica - Parker,00310015, 10.5, 16.4, 8.3, 61.5, 1.2, 0.0, 2.1, 45.6, 54.4, 0.0 +NA,NA,a-cure-i1,2023-24,33.599999999999994,Billerica - Thomas Ditson,00310005, 4.5, 14.2, 10.3, 66.4, 0.4, 0.0, 4.2, 50.5, 49.4, 0.2 +NA,NA,a-cure-i1,2023-24,19.200000000000003,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 3.0, 2.0, 11.8, 80.8, 0.0, 0.0, 2.5, 55.3, 43.7, 1.0 +NA,NA,a-cure-i1,2023-24,20.200000000000003,Blackstone-Millville - A F Maloney,06220015, 2.9, 1.3, 12.2, 79.8, 0.0, 0.0, 3.8, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,17.299999999999997,Blackstone-Millville - Blackstone Millville RHS,06220505, 2.1, 1.8, 8.9, 82.7, 0.0, 0.0, 4.5, 52.4, 46.3, 1.3 +NA,NA,a-cure-i1,2023-24,18.5,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.1, 0.5, 11.4, 81.5, 0.0, 0.0, 5.4, 53.1, 46.6, 0.3 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Blackstone-Millville - John F Kennedy Elementary,06220008, 2.6, 0.9, 7.8, 86.1, 0.0, 0.0, 2.6, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,14.900000000000006,Blackstone-Millville - Millville Elementary,06220010, 3.2, 2.3, 5.7, 85.1, 0.0, 0.0, 3.7, 44.8, 55.2, 0.0 +NA,NA,a-cure-i1,2023-24,49.9,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 21.8, 3.3, 17.4, 50.1, 0.7, 0.0, 6.8, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,84.5,Boston - Adams Elementary School,00350302, 4.8, 1.6, 74.9, 15.5, 0.0, 0.0, 3.2, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,64.8,Boston - Alighieri Dante Montessori School,00350066, 2.8, 1.9, 53.7, 35.2, 0.0, 0.0, 6.5, 55.6, 44.4, 0.0 +NA,NA,a-cure-i1,2023-24,96.7,Boston - Another Course To College,00350541, 43.3, 0.0, 49.2, 3.3, 0.8, 0.0, 3.3, 57.9, 41.3, 0.8 +NA,NA,a-cure-i1,2023-24,84.4,Boston - Baldwin Early Learning Pilot Academy,00350003, 12.5, 25.0, 38.0, 15.6, 0.0, 0.0, 8.9, 57.3, 42.7, 0.0 +NA,NA,a-cure-i1,2023-24,55.9,Boston - Bates Elementary School,00350278, 21.9, 3.2, 26.2, 44.1, 0.4, 0.0, 4.3, 58.1, 41.6, 0.4 +NA,NA,a-cure-i1,2023-24,74.0,Boston - Beethoven Elementary School,00350021, 29.8, 3.1, 35.1, 26.0, 0.0, 0.0, 6.1, 51.5, 48.1, 0.4 +NA,NA,a-cure-i1,2023-24,95.9,Boston - Blackstone Elementary School,00350390, 28.4, 2.2, 63.7, 4.1, 0.2, 0.0, 1.4, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,98.4,Boston - Boston Adult Tech Academy,00350548, 38.9, 4.9, 53.5, 1.6, 0.0, 0.0, 1.1, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,86.5,Boston - Boston Arts Academy,00350546, 34.5, 1.7, 45.9, 13.5, 0.2, 0.0, 4.2, 31.1, 66.8, 2.1 +NA,NA,a-cure-i1,2023-24,96.3,Boston - Boston Collaborative High School,00350755, 36.7, 1.4, 55.0, 3.7, 0.5, 0.5, 2.3, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,94.6,Boston - Boston Community Leadership Academy,00350558, 27.9, 3.7, 61.0, 5.4, 0.2, 0.0, 1.8, 49.6, 50.1, 0.4 +NA,NA,a-cure-i1,2023-24,97.7,Boston - Boston International High School & Newcomers Academy,00350507, 29.0, 5.8, 62.1, 2.3, 0.0, 0.2, 0.6, 60.3, 39.7, 0.0 +NA,NA,a-cure-i1,2023-24,76.5,Boston - Boston Latin Academy,00350545, 25.4, 15.7, 30.5, 23.5, 0.2, 0.1, 4.5, 43.2, 56.6, 0.2 +NA,NA,a-cure-i1,2023-24,64.5,Boston - Boston Latin School,00350560, 13.8, 29.6, 16.2, 35.5, 0.1, 0.1, 4.6, 46.5, 53.1, 0.4 +NA,NA,a-cure-i1,2023-24,73.5,Boston - Boston Teachers Union K-8 Pilot,00350012, 25.0, 0.4, 39.0, 26.5, 0.0, 0.4, 8.8, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,59.0,Boston - Bradley Elementary School,00350215, 6.0, 6.7, 42.3, 41.0, 0.0, 0.7, 3.3, 45.7, 54.3, 0.0 +NA,NA,a-cure-i1,2023-24,94.5,Boston - Brighton High School,00350505, 24.5, 2.7, 65.2, 5.5, 0.7, 0.0, 1.4, 52.6, 47.3, 0.2 +NA,NA,a-cure-i1,2023-24,97.0,Boston - Burke High School,00350525, 53.9, 2.5, 37.0, 3.0, 0.8, 0.0, 2.8, 60.0, 40.0, 0.0 +NA,NA,a-cure-i1,2023-24,87.1,Boston - Carter School,00350036, 48.4, 0.0, 35.5, 12.9, 0.0, 3.2, 0.0, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,92.7,Boston - Channing Elementary School,00350360, 41.7, 2.6, 45.3, 7.3, 0.0, 0.0, 3.1, 62.0, 38.0, 0.0 +NA,NA,a-cure-i1,2023-24,93.4,Boston - Charlestown High School,00350515, 22.4, 6.6, 63.1, 6.6, 0.1, 0.0, 1.1, 58.8, 41.1, 0.1 +NA,NA,a-cure-i1,2023-24,94.3,Boston - Chittick Elementary School,00350154, 55.3, 0.9, 33.8, 5.7, 0.0, 0.0, 4.4, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,86.9,Boston - Clap Elementary School,00350298, 33.8, 6.2, 42.3, 13.1, 0.0, 0.0, 4.6, 61.5, 38.5, 0.0 +NA,NA,a-cure-i1,2023-24,97.6,Boston - Community Academy,00350518, 56.1, 0.0, 41.5, 2.4, 0.0, 0.0, 0.0, 63.4, 34.1, 2.4 +NA,NA,a-cure-i1,2023-24,96.8,Boston - Community Academy of Science and Health,00350581, 53.1, 6.7, 33.1, 3.2, 0.0, 0.6, 3.2, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,88.4,Boston - Condon K-8 School,00350146, 31.6, 4.7, 47.4, 11.6, 1.0, 0.5, 3.3, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,80.8,Boston - Conley Elementary School,00350122, 24.5, 0.7, 48.3, 19.2, 1.3, 2.0, 4.0, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,67.0,Boston - Curley K-8 School,00350020, 17.4, 4.4, 37.8, 33.0, 0.0, 0.1, 7.2, 57.6, 42.4, 0.0 +NA,NA,a-cure-i1,2023-24,98.4,Boston - Dearborn 6-12 STEM Academy,00350074, 60.8, 0.5, 33.5, 1.6, 0.0, 0.5, 3.1, 50.8, 49.0, 0.2 +NA,NA,a-cure-i1,2023-24,90.6,Boston - Dever Elementary School,00350268, 19.7, 2.7, 66.5, 9.4, 0.2, 0.2, 1.2, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,75.5,Boston - East Boston Early Education Center,00350009, 5.6, 1.0, 60.7, 24.5, 0.0, 0.5, 7.7, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,89.6,Boston - East Boston High School,00350530, 5.2, 1.3, 82.0, 10.4, 0.0, 0.0, 1.1, 55.5, 44.4, 0.2 +NA,NA,a-cure-i1,2023-24,86.1,Boston - Edison K-8 School,00350375, 16.8, 9.1, 56.5, 13.9, 0.3, 0.2, 3.3, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,36.9,Boston - Eliot K-8 Innovation School,00350096, 6.2, 9.3, 14.6, 63.1, 0.0, 0.1, 6.6, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,95.3,Boston - Ellis Elementary School,00350072, 27.4, 0.3, 65.3, 4.7, 0.0, 0.0, 2.4, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,97.4,Boston - Ellison-Parks Early Education School,00350008, 50.8, 3.2, 38.6, 2.6, 0.0, 0.0, 4.8, 55.6, 44.4, 0.0 +NA,NA,a-cure-i1,2023-24,95.9,Boston - English High School,00350535, 32.0, 1.2, 60.6, 4.1, 0.0, 0.0, 2.2, 55.1, 44.7, 0.1 +NA,NA,a-cure-i1,2023-24,90.6,Boston - Everett Elementary School,00350088, 42.8, 12.2, 32.0, 9.4, 1.1, 0.0, 2.5, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,89.9,Boston - Excel High School,00350522, 32.6, 15.5, 36.2, 10.1, 0.0, 0.3, 5.4, 57.6, 42.1, 0.3 +NA,NA,a-cure-i1,2023-24,95.5,Boston - Fenway High School,00350540, 30.1, 2.7, 61.2, 4.5, 0.0, 0.0, 1.6, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,97.6,Boston - Frederick Pilot Middle School,00350383, 33.3, 4.3, 58.1, 2.4, 0.6, 0.3, 0.9, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,86.3,Boston - Gardner Pilot Academy,00350326, 11.1, 5.4, 65.2, 13.7, 0.0, 0.0, 4.6, 50.7, 49.1, 0.3 +NA,NA,a-cure-i1,2023-24,100.0,Boston - Greater Egleston High School,00350543, 34.2, 3.9, 56.6, 0.0, 0.0, 0.0, 5.3, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,98.3,Boston - Greenwood Sarah K-8 School,00350308, 11.1, 0.3, 85.8, 1.7, 0.3, 0.0, 0.8, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,88.8,Boston - Grew Elementary School,00350135, 38.1, 0.5, 41.1, 11.2, 1.0, 0.0, 8.1, 56.9, 43.1, 0.0 +NA,NA,a-cure-i1,2023-24,88.3,Boston - Guild Elementary School,00350062, 3.6, 0.4, 83.0, 11.7, 0.0, 0.0, 1.2, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,86.7,Boston - Hale Elementary School,00350243, 44.6, 7.8, 27.1, 13.3, 0.0, 0.0, 7.2, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,77.2,Boston - Haley Pilot School,00350077, 40.4, 0.5, 32.3, 22.8, 0.3, 0.0, 3.7, 54.9, 44.9, 0.3 +NA,NA,a-cure-i1,2023-24,61.2,Boston - Harvard-Kent Elementary School,00350200, 14.4, 14.1, 27.9, 38.8, 0.0, 0.0, 4.7, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,96.0,Boston - Haynes Early Education Center,00350010, 46.0, 2.5, 45.5, 4.0, 0.0, 0.0, 2.0, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,84.9,Boston - Henderson K-12 Inclusion School Lower,00350266, 30.3, 14.2, 29.4, 15.1, 0.0, 2.3, 8.7, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,90.8,Boston - Henderson K-12 Inclusion School Upper,00350426, 47.4, 6.6, 31.6, 9.2, 0.3, 0.2, 4.7, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,96.2,Boston - Hennigan K-8 School,00350153, 25.0, 4.0, 65.0, 3.8, 0.0, 0.2, 2.2, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,86.0,Boston - Hernandez K-8 School,00350691, 3.4, 0.0, 79.1, 14.0, 0.0, 0.0, 3.4, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,98.1,Boston - Higginson Inclusion K0-2 School,00350015, 30.6, 1.3, 62.4, 1.9, 0.0, 0.0, 3.8, 58.6, 41.4, 0.0 +NA,NA,a-cure-i1,2023-24,98.8,Boston - Higginson-Lewis K-8 School,00350377, 34.3, 1.2, 57.4, 1.2, 0.0, 0.0, 5.9, 55.6, 44.4, 0.0 +NA,NA,a-cure-i1,2023-24,97.9,Boston - Holmes Elementary School,00350138, 53.7, 1.0, 38.3, 2.1, 0.3, 0.0, 4.5, 57.1, 42.9, 0.0 +NA,NA,a-cure-i1,2023-24,86.3,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 31.5, 8.2, 45.2, 13.7, 0.0, 0.0, 1.4, 71.2, 28.8, 0.0 +NA,NA,a-cure-i1,2023-24,77.7,Boston - Hurley K-8 School,00350182, 4.9, 1.4, 67.9, 22.3, 0.3, 0.0, 3.2, 46.4, 53.3, 0.3 +NA,NA,a-cure-i1,2023-24,84.3,Boston - Kennedy John F Elementary School,00350166, 18.2, 1.3, 58.1, 15.7, 0.3, 0.0, 6.6, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,94.8,Boston - Kennedy Patrick J Elementary School,00350264, 2.2, 1.1, 91.0, 5.2, 0.0, 0.0, 0.4, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,78.7,Boston - Kenny Elementary School,00350328, 32.0, 11.2, 27.8, 21.3, 0.0, 0.0, 7.7, 55.0, 44.7, 0.3 +NA,NA,a-cure-i1,2023-24,53.6,Boston - Kilmer K-8 School,00350190, 18.6, 5.7, 23.7, 46.4, 0.0, 0.0, 5.7, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,95.5,Boston - King Elementary School,00350376, 52.8, 1.1, 38.7, 4.5, 0.4, 0.0, 2.6, 55.5, 44.5, 0.0 +NA,NA,a-cure-i1,2023-24,95.0,Boston - Lee Academy,00350001, 45.0, 1.5, 41.5, 5.0, 0.0, 0.0, 7.0, 56.0, 44.0, 0.0 +NA,NA,a-cure-i1,2023-24,94.9,Boston - Lee K-8 School,00350183, 50.1, 3.2, 36.4, 5.1, 0.8, 0.2, 4.2, 58.1, 41.9, 0.0 +NA,NA,a-cure-i1,2023-24,43.6,Boston - Lyndon K-8 School,00350262, 10.6, 4.9, 22.2, 56.4, 0.2, 0.0, 5.7, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,86.3,Boston - Lyon High School,00350655, 20.6, 5.9, 51.0, 13.7, 0.0, 0.0, 8.8, 53.9, 45.1, 1.0 +NA,NA,a-cure-i1,2023-24,81.7,Boston - Lyon K-8 School,00350004, 22.5, 6.7, 43.3, 18.3, 0.8, 0.0, 8.3, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,97.7,Boston - Madison Park Technical Vocational High School,00350537, 39.5, 1.3, 54.0, 2.3, 0.3, 0.1, 2.6, 59.5, 40.4, 0.2 +NA,NA,a-cure-i1,2023-24,44.4,Boston - Manning Elementary School,00350184, 15.4, 4.1, 16.0, 55.6, 0.0, 0.0, 8.9, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,99.0,Boston - Margarita Muniz Academy,00350549, 6.5, 0.0, 91.6, 1.0, 0.0, 0.3, 0.6, 44.5, 55.5, 0.0 +NA,NA,a-cure-i1,2023-24,97.0,Boston - Mario Umana Academy,00350656, 2.4, 0.5, 92.9, 3.0, 0.2, 0.0, 1.1, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,95.8,Boston - Mason Elementary School,00350304, 55.0, 0.0, 36.0, 4.2, 0.0, 0.0, 4.8, 54.0, 45.5, 0.5 +NA,NA,a-cure-i1,2023-24,94.7,Boston - Mather Elementary School,00350227, 38.3, 31.5, 20.0, 5.3, 0.9, 0.2, 3.7, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,97.9,Boston - Mattahunt Elementary School,00350016, 67.8, 0.8, 25.8, 2.1, 0.2, 0.0, 3.3, 60.0, 40.0, 0.0 +NA,NA,a-cure-i1,2023-24,91.8,Boston - McKay K-8 School,00350080, 3.4, 0.7, 87.0, 8.2, 0.0, 0.0, 0.6, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,92.5,Boston - Melvin H. King South End Academy,00350363, 44.8, 2.2, 41.8, 7.5, 0.7, 0.0, 3.0, 70.9, 29.1, 0.0 +NA,NA,a-cure-i1,2023-24,69.2,Boston - Mendell Elementary School,00350100, 27.6, 3.6, 30.5, 30.8, 0.3, 0.0, 7.1, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,97.1,Boston - Mildred Avenue K-8 School,00350378, 57.3, 0.8, 35.3, 2.9, 0.3, 0.2, 3.2, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,53.4,Boston - Mozart Elementary School,00350237, 22.5, 3.4, 19.1, 46.6, 0.6, 0.0, 7.9, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,88.8,Boston - Murphy K-8 School,00350240, 17.0, 50.1, 17.6, 11.2, 0.4, 0.2, 3.5, 52.2, 47.7, 0.1 +NA,NA,a-cure-i1,2023-24,92.7,Boston - New Mission High School,00350542, 46.9, 3.0, 40.4, 7.3, 0.4, 0.3, 1.6, 53.7, 46.1, 0.1 +NA,NA,a-cure-i1,2023-24,88.2,Boston - O'Bryant School of Math & Science,00350575, 31.5, 17.4, 36.5, 11.8, 0.1, 0.1, 2.5, 49.7, 50.1, 0.2 +NA,NA,a-cure-i1,2023-24,94.9,Boston - O'Donnell Elementary School,00350141, 2.9, 2.2, 89.1, 5.1, 0.0, 0.0, 0.7, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,82.8,Boston - Ohrenberger School,00350258, 33.9, 2.9, 43.1, 17.2, 0.2, 0.0, 2.7, 53.8, 46.0, 0.2 +NA,NA,a-cure-i1,2023-24,97.3,Boston - Orchard Gardens K-8 School,00350257, 54.8, 0.9, 39.1, 2.7, 0.6, 0.6, 1.3, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,79.6,Boston - Otis Elementary School,00350156, 2.2, 1.7, 73.4, 20.4, 0.0, 0.0, 2.2, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,89.9,Boston - Perkins Elementary School,00350231, 33.6, 6.7, 43.6, 10.1, 0.7, 0.0, 5.4, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,36.5,Boston - Perry Elementary School,00350255, 13.8, 5.0, 14.9, 63.5, 0.0, 0.0, 2.8, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,87.1,Boston - Philbrick Elementary School,00350172, 35.6, 3.0, 40.2, 12.9, 0.8, 0.0, 7.6, 44.7, 55.3, 0.0 +NA,NA,a-cure-i1,2023-24,83.1,Boston - Quincy Elementary School,00350286, 13.4, 52.7, 10.0, 16.9, 0.0, 0.0, 7.1, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,93.8,Boston - Quincy Upper School,00350565, 19.0, 49.1, 22.9, 6.2, 0.2, 0.0, 2.6, 49.6, 50.2, 0.2 +NA,NA,a-cure-i1,2023-24,81.9,Boston - Roosevelt K-8 School,00350116, 36.9, 3.3, 35.6, 18.1, 0.3, 0.0, 5.7, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,93.9,Boston - Russell Elementary School,00350366, 32.4, 2.6, 57.5, 6.1, 0.0, 0.6, 0.9, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,98.5,Boston - Shaw Elementary School,00350014, 58.7, 0.0, 35.3, 1.5, 0.5, 0.0, 4.0, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,93.7,Boston - Snowden International High School,00350690, 29.4, 3.4, 58.0, 6.3, 0.0, 0.0, 2.9, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,75.3,Boston - Sumner Elementary School,00350052, 15.5, 2.1, 53.3, 24.7, 0.3, 0.0, 4.1, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,99.4,Boston - Taylor Elementary School,00350054, 77.6, 1.2, 19.2, 0.6, 0.9, 0.0, 0.6, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,97.7,Boston - TechBoston Academy,00350657, 57.6, 1.8, 34.0, 2.3, 0.3, 0.0, 3.9, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,93.3,Boston - Tobin K-8 School,00350229, 25.1, 4.3, 62.1, 6.7, 0.0, 0.0, 1.9, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,96.0,Boston - Trotter Elementary School,00350370, 53.0, 2.0, 35.3, 4.0, 0.3, 1.7, 3.7, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,83.4,Boston - Tynan Elementary School,00350181, 33.7, 6.8, 35.1, 16.6, 0.0, 0.0, 7.8, 59.0, 41.0, 0.0 +NA,NA,a-cure-i1,2023-24,97.5,Boston - UP Academy Holland,00350167, 47.2, 2.3, 43.5, 2.5, 1.2, 0.4, 3.0, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,40.3,Boston - Warren-Prescott K-8 School,00350346, 11.2, 5.6, 19.0, 59.7, 0.0, 0.0, 4.4, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,88.5,Boston - West Zone Early Learning Center,00350006, 24.8, 8.8, 51.3, 11.5, 0.0, 0.0, 3.5, 54.9, 45.1, 0.0 +NA,NA,a-cure-i1,2023-24,70.7,Boston - Winship Elementary School,00350374, 10.4, 17.1, 35.7, 29.3, 0.0, 0.0, 7.5, 47.2, 52.5, 0.3 +NA,NA,a-cure-i1,2023-24,96.7,Boston - Winthrop Elementary School,00350180, 48.5, 2.1, 43.2, 3.3, 0.4, 0.4, 2.1, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,99.4,Boston - Young Achievers K-8 School,00350380, 38.6, 0.4, 56.9, 0.6, 0.6, 0.4, 2.4, 53.0, 46.8, 0.2 +NA,NA,a-cure-i1,2023-24,57.4,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 26.7, 3.5, 22.2, 42.6, 0.0, 0.0, 4.9, 51.0, 48.7, 0.3 +NA,NA,a-cure-i1,2023-24,97.6,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 52.2, 0.3, 43.7, 2.4, 0.7, 0.0, 0.7, 41.0, 58.4, 0.7 +NA,NA,a-cure-i1,2023-24,91.9,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 45.8, 1.5, 40.7, 8.1, 0.7, 0.0, 3.3, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,98.7,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 61.2, 0.3, 31.1, 1.3, 0.4, 0.9, 4.9, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,98.4,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 55.9, 0.0, 39.1, 1.6, 0.0, 0.0, 3.4, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,18.799999999999997,Bourne - Bourne High School,00360505, 2.1, 3.3, 6.0, 81.2, 1.2, 0.0, 6.3, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,22.799999999999997,Bourne - Bourne Intermediate School,00360030, 2.5, 3.1, 8.9, 77.2, 0.6, 0.3, 7.5, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,18.200000000000003,Bourne - Bourne Middle School,00360325, 3.0, 1.1, 6.8, 81.8, 0.7, 0.2, 6.4, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,23.799999999999997,Bourne - Bournedale Elementary School,00360005, 3.5, 1.4, 9.8, 76.2, 0.2, 0.2, 8.6, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,11.599999999999994,Boxford - Harry Lee Cole,00380005, 1.1, 1.1, 4.8, 88.4, 0.0, 0.0, 4.5, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,9.900000000000006,Boxford - Spofford Pond,00380013, 0.2, 2.2, 3.2, 90.1, 0.0, 0.0, 4.2, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,55.2,Braintree - Archie T Morrison,00400033, 9.0, 29.1, 11.0, 44.8, 0.0, 0.3, 5.7, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,42.4,Braintree - Braintree High,00400505, 6.4, 27.2, 6.7, 57.6, 0.1, 0.1, 1.9, 51.0, 48.9, 0.1 +NA,NA,a-cure-i1,2023-24,52.0,Braintree - Donald Ross,00400050, 13.4, 24.0, 11.2, 48.0, 0.6, 0.0, 2.8, 45.8, 54.2, 0.0 +NA,NA,a-cure-i1,2023-24,44.6,Braintree - East Middle School,00400305, 5.9, 27.9, 7.4, 55.4, 0.2, 0.1, 3.1, 52.8, 47.1, 0.1 +NA,NA,a-cure-i1,2023-24,28.900000000000006,Braintree - Highlands,00400015, 1.7, 20.6, 5.4, 71.1, 0.0, 0.0, 1.1, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,45.3,Braintree - Hollis,00400005, 6.2, 27.6, 7.5, 54.7, 0.3, 0.0, 3.7, 50.0, 49.7, 0.3 +NA,NA,a-cure-i1,2023-24,48.5,Braintree - Liberty,00400025, 6.1, 31.4, 6.5, 51.5, 0.3, 0.3, 3.9, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,45.6,Braintree - Mary E Flaherty School,00400020, 2.5, 28.5, 7.5, 54.4, 0.0, 0.0, 7.1, 55.9, 44.1, 0.0 +NA,NA,a-cure-i1,2023-24,51.9,Braintree - Monatiquot Kindergarten Center,00400009, 5.5, 30.6, 10.4, 48.1, 0.0, 0.5, 4.9, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,37.8,Braintree - South Middle School,00400310, 3.3, 26.6, 4.9, 62.2, 0.2, 0.5, 2.4, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.900000000000006,Brewster - Eddy Elementary,00410010, 2.4, 2.0, 12.7, 76.1, 0.0, 0.0, 6.8, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,26.599999999999994,Brewster - Stony Brook Elementary,00410005, 5.2, 1.3, 11.8, 73.4, 0.0, 0.0, 8.3, 46.3, 53.7, 0.0 +NA,NA,a-cure-i1,2023-24,98.8,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 62.6, 1.2, 31.4, 1.2, 0.0, 0.3, 3.3, 47.6, 52.4, 0.0 +NA,NA,a-cure-i1,2023-24,23.099999999999994,Bridgewater-Raynham - Bridgewater Middle School,06250320, 11.7, 1.7, 5.0, 76.9, 0.1, 0.1, 4.6, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,27.0,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 14.3, 2.6, 4.3, 73.0, 0.1, 0.1, 5.5, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Bridgewater-Raynham - Laliberte Elementary School,06250050, 9.4, 3.1, 6.1, 75.8, 0.0, 0.0, 5.5, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,29.299999999999997,Bridgewater-Raynham - Merrill Elementary School,06250020, 10.1, 5.2, 8.7, 70.7, 0.3, 0.3, 4.6, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,28.599999999999994,Bridgewater-Raynham - Mitchell Elementary School,06250002, 10.5, 2.0, 9.5, 71.4, 0.2, 0.1, 6.2, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,22.700000000000003,Bridgewater-Raynham - Raynham Middle School,06250315, 11.4, 2.4, 4.7, 77.3, 0.0, 0.0, 4.2, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,9.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 9.1, 90.9, 0.0, 0.0, 0.0, 36.4, 63.6, 0.0 +NA,NA,a-cure-i1,2023-24,28.400000000000006,Bridgewater-Raynham - Williams Intermediate School,06250300, 11.4, 2.0, 9.6, 71.6, 0.0, 0.1, 5.2, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,8.099999999999994,Brimfield - Brimfield Elementary,00430005, 0.4, 1.1, 3.9, 91.9, 0.7, 0.0, 2.1, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,16.900000000000006,Bristol County Agricultural - Bristol County Agricultural High,09100705, 2.9, 0.0, 12.7, 83.1, 0.7, 0.0, 0.7, 32.4, 67.4, 0.2 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 5.7, 0.8, 7.7, 81.3, 0.3, 0.1, 4.2, 57.2, 42.6, 0.2 +NA,NA,a-cure-i1,2023-24,77.9,Brockton - Ashfield Middle School,00440421, 58.6, 1.9, 14.5, 22.1, 0.4, 0.0, 2.5, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,90.2,Brockton - Barrett Russell Early Childhood Center,00440008, 61.9, 1.9, 22.3, 9.8, 0.4, 0.0, 3.8, 58.9, 41.1, 0.0 +NA,NA,a-cure-i1,2023-24,88.1,Brockton - Brockton High,00440505, 61.4, 2.6, 19.7, 11.9, 0.1, 0.2, 4.1, 55.1, 44.8, 0.1 +NA,NA,a-cure-i1,2023-24,81.8,Brockton - Brockton Virtual Learning Academy,00440705, 51.6, 2.5, 17.0, 18.2, 0.6, 0.0, 10.1, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,80.7,Brockton - Brookfield,00440010, 52.3, 1.1, 20.2, 19.3, 0.9, 0.0, 6.2, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,87.1,Brockton - Downey,00440110, 59.4, 1.7, 18.2, 12.9, 0.5, 0.3, 7.0, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,94.9,Brockton - Dr W Arnone Community School,00440001, 61.3, 0.3, 27.3, 5.1, 0.3, 0.5, 5.2, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,84.5,Brockton - East Middle School,00440405, 63.2, 0.9, 16.7, 15.5, 0.7, 0.0, 3.0, 56.0, 44.0, 0.0 +NA,NA,a-cure-i1,2023-24,90.8,Brockton - Edgar B Davis,00440023, 64.0, 0.5, 19.6, 9.2, 0.5, 0.1, 6.0, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,82.8,Brockton - Edison Day Academy,00440535, 54.6, 0.0, 19.6, 17.2, 0.0, 0.0, 8.6, 51.5, 47.9, 0.6 +NA,NA,a-cure-i1,2023-24,95.5,Brockton - Edison Evening Academy,00440520, 62.1, 2.0, 28.8, 4.5, 0.5, 0.0, 2.0, 56.1, 43.9, 0.0 +NA,NA,a-cure-i1,2023-24,96.3,Brockton - Gilmore Elementary School,00440055, 72.5, 0.0, 20.4, 3.7, 0.5, 0.0, 3.0, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,82.6,Brockton - Hancock,00440045, 51.5, 1.7, 24.9, 17.4, 0.2, 0.2, 4.2, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,80.6,Brockton - Huntington Therapeutic Day School,00440400, 52.8, 0.0, 19.4, 19.4, 0.0, 0.0, 8.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,83.5,Brockton - John F Kennedy,00440017, 55.5, 1.4, 22.5, 16.5, 0.8, 0.0, 3.4, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,84.9,Brockton - Louis F Angelo Elementary,00440065, 53.8, 2.9, 24.0, 15.1, 0.8, 0.0, 3.5, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,92.5,Brockton - Manthala George Jr. School,00440003, 55.3, 0.6, 31.9, 7.5, 0.1, 0.3, 4.4, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,82.6,Brockton - Mary E. Baker School,00440002, 50.7, 1.7, 21.7, 17.4, 0.6, 0.3, 7.7, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,92.6,Brockton - North Middle School,00440410, 72.4, 1.5, 12.1, 7.4, 1.0, 0.2, 5.4, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,94.2,Brockton - Oscar F Raymond,00440078, 77.6, 0.6, 12.6, 5.8, 0.4, 0.4, 2.7, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,90.1,Brockton - Plouffe Middle School,00440422, 39.6, 1.4, 44.7, 9.9, 0.0, 0.0, 4.5, 46.3, 53.7, 0.0 +NA,NA,a-cure-i1,2023-24,89.7,Brockton - PROMISE College and Career Academy,00440525, 59.8, 1.0, 23.7, 10.3, 1.0, 0.0, 4.1, 56.7, 43.3, 0.0 +NA,NA,a-cure-i1,2023-24,87.6,Brockton - South Middle School,00440415, 65.8, 2.1, 15.4, 12.4, 0.4, 0.0, 3.8, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,80.5,Brockton - West Middle School,00440420, 55.9, 1.2, 17.3, 19.5, 0.2, 0.0, 5.9, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,96.1,Brooke Charter School (District) - Brooke Charter School,04280305, 49.5, 1.4, 41.9, 3.9, 0.3, 0.1, 2.8, 48.4, 51.4, 0.2 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Brookfield - Brookfield Elementary,00450005, 2.6, 0.3, 5.6, 86.1, 0.0, 0.0, 5.3, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,54.3,Brookline - Brookline Early Education Program at Beacon,00460001, 4.3, 30.4, 8.7, 45.7, 0.0, 0.0, 10.9, 67.4, 32.6, 0.0 +NA,NA,a-cure-i1,2023-24,69.7,Brookline - Brookline Early Education Program at Clark Road,00460003, 3.0, 21.2, 21.2, 30.3, 0.0, 0.0, 24.2, 42.4, 57.6, 0.0 +NA,NA,a-cure-i1,2023-24,47.6,Brookline - Brookline Early Education Program at Putterham,00460002, 9.5, 23.8, 2.4, 52.4, 0.0, 0.0, 11.9, 64.3, 35.7, 0.0 +NA,NA,a-cure-i1,2023-24,47.1,Brookline - Brookline High,00460505, 6.2, 17.6, 13.3, 52.9, 0.1, 0.0, 9.9, 49.1, 49.9, 1.0 +NA,NA,a-cure-i1,2023-24,57.2,Brookline - Edith C Baker,00460005, 7.0, 29.7, 11.0, 42.8, 0.2, 0.0, 9.3, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,45.7,Brookline - Florida Ruffin Ridley School,00460015, 5.9, 18.0, 11.4, 54.3, 0.0, 0.0, 10.4, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,48.4,Brookline - John D Runkle,00460045, 3.1, 14.1, 15.7, 51.6, 0.0, 0.0, 15.5, 55.3, 44.3, 0.4 +NA,NA,a-cure-i1,2023-24,58.5,Brookline - Lawrence,00460030, 4.6, 33.3, 9.3, 41.5, 0.0, 0.2, 11.2, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,52.0,Brookline - Michael Driscoll,00460020, 5.5, 19.8, 13.1, 48.0, 0.0, 0.0, 13.5, 53.5, 46.3, 0.2 +NA,NA,a-cure-i1,2023-24,55.8,Brookline - Pierce,00460040, 5.8, 26.8, 10.6, 44.2, 0.0, 0.0, 12.6, 49.4, 50.3, 0.3 +NA,NA,a-cure-i1,2023-24,47.7,Brookline - Roland Hayes,00460025, 5.3, 17.7, 12.9, 52.3, 0.0, 0.0, 11.8, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,74.5,Brookline - The Lynch Center,00460060, 20.0, 29.1, 9.1, 25.5, 0.0, 0.0, 16.4, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,63.3,Brookline - William H Lincoln,00460035, 11.4, 26.8, 12.9, 36.7, 0.4, 0.0, 11.8, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,43.9,Burlington - Burlington High,00480505, 8.9, 19.5, 12.7, 56.1, 0.3, 0.0, 2.5, 51.5, 47.8, 0.7 +NA,NA,a-cure-i1,2023-24,34.900000000000006,Burlington - Fox Hill,00480007, 6.2, 15.2, 8.4, 65.1, 0.2, 0.0, 5.1, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,39.3,Burlington - Francis Wyman Elementary,00480035, 10.7, 13.2, 9.7, 60.7, 0.0, 0.0, 5.8, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,41.9,Burlington - Marshall Simonds Middle,00480303, 7.1, 17.9, 11.1, 58.1, 0.3, 0.0, 5.5, 49.4, 50.5, 0.1 +NA,NA,a-cure-i1,2023-24,39.7,Burlington - Memorial,00480015, 4.2, 18.8, 10.4, 60.3, 0.0, 0.0, 6.3, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,41.0,Burlington - Pine Glen Elementary,00480020, 6.6, 22.5, 8.7, 59.0, 0.0, 0.0, 3.3, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,65.6,Cambridge - Amigos School,00490006, 5.0, 3.1, 49.5, 34.4, 0.0, 0.0, 7.9, 49.8, 50.0, 0.2 +NA,NA,a-cure-i1,2023-24,63.0,Cambridge - Cambridge Rindge and Latin,00490506, 25.9, 11.9, 14.5, 37.0, 0.3, 0.0, 10.4, 50.9, 48.2, 0.9 +NA,NA,a-cure-i1,2023-24,62.8,Cambridge - Cambridge Street Upper School,00490305, 29.3, 9.9, 12.5, 37.2, 0.0, 0.0, 11.2, 48.4, 50.3, 1.3 +NA,NA,a-cure-i1,2023-24,57.2,Cambridge - Cambridgeport,00490007, 18.6, 13.3, 11.6, 42.8, 0.0, 0.4, 13.3, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Cambridge - Fletcher/Maynard Academy,00490090, 52.2, 8.8, 20.3, 8.4, 0.4, 0.0, 10.0, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,49.7,Cambridge - Graham and Parks,00490080, 13.9, 21.5, 7.1, 50.3, 0.0, 0.0, 7.3, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,62.4,Cambridge - Haggerty,00490020, 20.5, 22.3, 11.4, 37.6, 0.4, 0.0, 7.9, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,60.1,Cambridge - John M Tobin,00490065, 22.1, 19.0, 8.0, 39.9, 0.0, 0.0, 11.0, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,78.6,Cambridge - Kennedy-Longfellow,00490040, 25.5, 23.2, 22.7, 21.4, 0.0, 0.0, 7.3, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,65.1,Cambridge - King Open,00490035, 25.6, 11.4, 14.2, 34.9, 0.0, 0.0, 14.0, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,42.0,Cambridge - Maria L. Baldwin,00490005, 9.7, 10.8, 8.2, 58.0, 0.0, 0.0, 13.4, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,78.0,Cambridge - Martin Luther King Jr.,00490030, 12.2, 36.0, 3.7, 22.0, 0.0, 0.0, 26.2, 48.2, 51.5, 0.3 +NA,NA,a-cure-i1,2023-24,57.6,Cambridge - Morse,00490045, 23.2, 14.6, 9.6, 42.4, 0.0, 0.0, 10.3, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,56.7,Cambridge - Peabody,00490050, 25.9, 13.1, 7.8, 43.3, 0.0, 0.0, 10.0, 52.0, 47.7, 0.3 +NA,NA,a-cure-i1,2023-24,70.7,Cambridge - Putnam Avenue Upper School,00490310, 27.0, 18.9, 10.0, 29.3, 0.4, 0.0, 14.4, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,50.2,Cambridge - Rindge Avenue Upper School,00490315, 19.7, 8.7, 12.5, 49.8, 0.0, 0.0, 9.3, 45.0, 54.7, 0.3 +NA,NA,a-cure-i1,2023-24,63.2,Cambridge - Vassal Lane Upper School,00490320, 24.0, 17.8, 12.8, 36.8, 0.4, 0.0, 8.1, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,37.9,Canton - Canton High,00500505, 15.6, 11.6, 5.3, 62.1, 0.2, 0.4, 4.8, 45.5, 54.4, 0.1 +NA,NA,a-cure-i1,2023-24,37.3,Canton - Dean S Luce,00500020, 10.7, 10.3, 7.5, 62.7, 0.2, 0.0, 8.6, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,29.299999999999997,Canton - John F Kennedy,00500017, 6.6, 7.9, 5.7, 70.7, 0.0, 0.0, 9.2, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,40.9,Canton - Lt Peter M Hansen,00500012, 11.6, 11.4, 8.4, 59.1, 0.2, 0.2, 9.1, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,43.3,Canton - Rodman Early Childhood Center,00500010, 9.0, 17.9, 10.4, 56.7, 0.0, 0.0, 6.0, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,38.0,Canton - Wm H Galvin Middle,00500305, 12.5, 10.2, 9.3, 62.0, 0.0, 0.1, 5.8, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,12.0,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 3.2, 1.6, 5.2, 88.0, 0.0, 0.0, 2.0, 46.6, 53.4, 0.0 +NA,NA,a-cure-i1,2023-24,21.400000000000006,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 5.7, 0.8, 9.7, 78.6, 0.6, 0.3, 4.4, 62.3, 37.7, 0.0 +NA,NA,a-cure-i1,2023-24,27.0,Carlisle - Carlisle School,00510025, 0.3, 11.5, 6.4, 73.0, 0.0, 0.5, 8.2, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Carver - Carver Elementary School,00520015, 1.7, 0.5, 4.3, 88.9, 0.4, 0.0, 4.3, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,9.0,Carver - Carver Middle/High School,00520405, 2.4, 0.8, 3.5, 91.0, 0.4, 0.0, 1.8, 52.3, 47.5, 0.1 +NA,NA,a-cure-i1,2023-24,12.099999999999994,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 5.5, 87.9, 0.0, 0.0, 6.6, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Central Berkshire - Craneville,06350025, 1.5, 1.1, 9.1, 81.9, 0.2, 0.0, 6.2, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,7.299999999999997,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 4.5, 92.7, 0.0, 0.0, 2.8, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,9.799999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 1.1, 5.0, 90.2, 0.0, 0.0, 3.4, 46.6, 53.1, 0.3 +NA,NA,a-cure-i1,2023-24,10.400000000000006,Central Berkshire - Wahconah Regional High,06350505, 1.0, 0.8, 4.4, 89.6, 0.0, 0.0, 4.1, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,35.5,Chelmsford - Byam School,00560030, 4.0, 14.0, 12.3, 64.5, 0.0, 0.4, 4.9, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,35.2,Chelmsford - Center Elementary School,00560005, 4.3, 21.0, 5.6, 64.8, 0.2, 0.0, 4.1, 51.9, 47.9, 0.2 +NA,NA,a-cure-i1,2023-24,44.0,Chelmsford - Charles D Harrington,00560025, 4.6, 18.9, 15.1, 56.0, 0.6, 0.2, 4.6, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,35.7,Chelmsford - Chelmsford High,00560505, 4.5, 18.9, 8.2, 64.3, 0.1, 0.2, 3.8, 53.6, 45.9, 0.5 +NA,NA,a-cure-i1,2023-24,36.3,Chelmsford - Col Moses Parker School,00560305, 3.1, 21.8, 7.3, 63.7, 0.1, 0.0, 3.9, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,46.0,Chelmsford - Community Education Center,00560001, 5.5, 28.0, 7.0, 54.0, 0.5, 0.5, 4.5, 58.0, 42.0, 0.0 +NA,NA,a-cure-i1,2023-24,35.7,Chelmsford - McCarthy Middle School,00560310, 4.5, 17.0, 9.7, 64.3, 0.1, 0.1, 4.2, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,35.3,Chelmsford - South Row,00560015, 3.2, 17.4, 8.0, 64.7, 0.2, 0.0, 6.5, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,94.9,Chelsea - Chelsea High,00570505, 3.8, 1.1, 89.2, 5.1, 0.2, 0.0, 0.6, 54.3, 45.5, 0.1 +NA,NA,a-cure-i1,2023-24,95.2,Chelsea - Chelsea Opportunity Academy,00570515, 1.6, 1.6, 92.0, 4.8, 0.0, 0.0, 0.0, 62.4, 37.6, 0.0 +NA,NA,a-cure-i1,2023-24,90.0,Chelsea - Chelsea Virtual Learning Academy,00570705, 3.3, 1.7, 83.3, 10.0, 0.0, 0.0, 1.7, 31.7, 68.3, 0.0 +NA,NA,a-cure-i1,2023-24,95.4,Chelsea - Clark Avenue School,00570050, 2.8, 0.0, 91.4, 4.6, 0.1, 0.0, 1.0, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,91.2,Chelsea - Edgar F. Hooks Elementary,00570030, 5.3, 0.7, 84.3, 8.8, 0.4, 0.0, 0.4, 60.5, 39.5, 0.0 +NA,NA,a-cure-i1,2023-24,91.9,Chelsea - Eugene Wright Science and Technology Academy,00570045, 6.5, 0.2, 84.7, 8.1, 0.0, 0.0, 0.5, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,92.8,Chelsea - Frank M Sokolowski Elementary,00570040, 4.4, 0.2, 87.9, 7.2, 0.2, 0.0, 0.0, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,97.3,Chelsea - George F. Kelly Elementary,00570035, 1.0, 0.2, 96.1, 2.7, 0.0, 0.0, 0.0, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,93.8,Chelsea - Joseph A. Browne School,00570055, 7.0, 0.8, 85.4, 6.2, 0.4, 0.0, 0.2, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,92.7,Chelsea - Shurtleff Early Childhood,00570003, 4.6, 1.0, 87.1, 7.3, 0.0, 0.0, 0.0, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,96.1,Chelsea - William A Berkowitz Elementary,00570025, 6.4, 0.9, 88.0, 3.9, 0.5, 0.0, 0.2, 45.3, 54.7, 0.0 +NA,NA,a-cure-i1,2023-24,4.299999999999997,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.4, 0.0, 2.2, 95.7, 0.0, 0.0, 0.7, 57.6, 42.4, 0.0 +NA,NA,a-cure-i1,2023-24,50.8,Chicopee - Barry,00610003, 9.1, 1.4, 36.7, 49.2, 0.0, 0.6, 3.0, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,59.8,Chicopee - Belcher,00610010, 8.7, 0.4, 45.0, 40.2, 0.0, 0.4, 5.2, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,52.6,Chicopee - Bellamy Middle,00610305, 5.6, 1.3, 42.1, 47.4, 0.0, 0.1, 3.4, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,75.8,Chicopee - Bowe,00610015, 4.8, 2.2, 63.6, 24.2, 0.0, 0.0, 5.3, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,40.2,Chicopee - Bowie,00610020, 5.8, 2.7, 27.8, 59.8, 0.0, 0.0, 3.8, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,66.7,Chicopee - Chicopee Academy,00610021, 8.7, 1.4, 50.7, 33.3, 0.0, 0.0, 5.8, 71.0, 29.0, 0.0 +NA,NA,a-cure-i1,2023-24,46.4,Chicopee - Chicopee Comprehensive High School,00610510, 3.2, 1.2, 38.3, 53.6, 0.2, 0.0, 3.5, 59.5, 40.1, 0.4 +NA,NA,a-cure-i1,2023-24,65.2,Chicopee - Chicopee High,00610505, 5.9, 2.9, 52.9, 34.8, 0.1, 0.0, 3.4, 46.2, 53.4, 0.3 +NA,NA,a-cure-i1,2023-24,56.0,Chicopee - Dupont Middle,00610310, 5.0, 1.8, 45.4, 44.0, 0.1, 0.0, 3.7, 52.9, 46.9, 0.1 +NA,NA,a-cure-i1,2023-24,64.4,Chicopee - Fairview Elementary,00610050, 10.7, 1.1, 48.5, 35.6, 0.3, 0.0, 3.8, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,72.4,Chicopee - Gen John J Stefanik,00610090, 5.4, 1.8, 60.9, 27.6, 0.0, 0.0, 4.3, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,46.0,Chicopee - Lambert-Lavoie,00610040, 4.4, 1.8, 34.5, 54.0, 0.0, 0.0, 5.3, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,53.8,Chicopee - Litwin,00610022, 7.3, 1.5, 41.3, 46.2, 0.0, 0.0, 3.8, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,44.6,Chicopee - Streiber Memorial School,00610065, 5.6, 4.3, 32.6, 55.4, 0.0, 0.0, 2.1, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,54.6,Chicopee - Szetela Early Childhood Center,00610001, 6.7, 1.7, 41.7, 45.4, 0.8, 0.0, 3.8, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,56.2,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 10.4, 4.2, 32.6, 43.8, 1.4, 0.0, 7.6, 55.9, 43.4, 0.7 +NA,NA,a-cure-i1,2023-24,97.5,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 68.8, 0.0, 27.6, 2.5, 0.5, 0.0, 0.5, 46.7, 53.3, 0.0 +NA,NA,a-cure-i1,2023-24,5.299999999999997,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 2.9, 94.7, 0.0, 0.0, 1.9, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,48.1,Clinton - Clinton Elementary,00640050, 2.9, 0.8, 41.3, 51.9, 0.1, 0.0, 3.0, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,45.9,Clinton - Clinton Middle School,00640305, 2.5, 0.5, 40.8, 54.1, 0.0, 0.2, 1.9, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,47.5,Clinton - Clinton Senior High,00640505, 3.8, 0.9, 41.5, 52.5, 0.0, 0.2, 1.2, 57.0, 42.7, 0.3 +NA,NA,a-cure-i1,2023-24,100.0,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 69.9, 0.0, 28.0, 0.0, 0.0, 0.0, 2.1, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.099999999999994,Cohasset - Cohasset High School,00650505, 3.2, 1.7, 1.2, 90.9, 0.0, 0.0, 3.0, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,6.900000000000006,Cohasset - Cohasset Middle School,00650305, 3.1, 1.7, 1.0, 93.1, 0.0, 0.0, 1.0, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,10.0,Cohasset - Deer Hill,00650005, 3.1, 0.3, 3.4, 90.0, 0.3, 0.0, 2.8, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,8.700000000000003,Cohasset - Joseph Osgood,00650010, 1.0, 1.0, 2.8, 91.3, 0.0, 0.0, 3.9, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,75.5,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 21.9, 24.4, 23.9, 24.5, 2.3, 0.1, 3.0, 47.0, 52.9, 0.1 +NA,NA,a-cure-i1,2023-24,94.3,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 65.5, 5.0, 18.0, 5.7, 0.0, 0.4, 5.4, 44.1, 55.9, 0.0 +NA,NA,a-cure-i1,2023-24,98.3,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 1.3, 0.3, 95.7, 1.7, 0.3, 0.0, 0.8, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,32.599999999999994,Concord - Alcott,00670005, 10.0, 6.5, 9.3, 67.4, 0.0, 0.0, 6.7, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,28.0,Concord - Concord Middle,00670305, 4.7, 8.0, 8.3, 72.0, 0.2, 0.0, 6.9, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,29.799999999999997,Concord - Thoreau,00670020, 1.6, 10.8, 7.3, 70.2, 0.2, 0.0, 9.9, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,20.799999999999997,Concord - Willard,00670030, 1.8, 6.0, 7.1, 79.2, 0.0, 0.0, 6.0, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,26.5,Concord-Carlisle - Concord Carlisle High,06400505, 3.7, 8.7, 6.3, 73.5, 0.1, 0.2, 7.6, 53.3, 46.4, 0.3 +NA,NA,a-cure-i1,2023-24,95.9,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 49.1, 1.6, 42.3, 4.1, 0.2, 0.0, 2.7, 46.4, 53.6, 0.0 +NA,NA,a-cure-i1,2023-24,6.900000000000006,Conway - Conway Grammar,00680005, 0.0, 0.0, 2.8, 93.1, 0.0, 0.0, 4.2, 54.2, 45.1, 0.7 +NA,NA,a-cure-i1,2023-24,21.900000000000006,Danvers - Danvers High,00710505, 2.9, 2.9, 13.5, 78.1, 0.0, 0.0, 2.6, 49.5, 49.6, 0.9 +NA,NA,a-cure-i1,2023-24,25.700000000000003,Danvers - Great Oak,00710015, 6.7, 1.7, 14.0, 74.3, 0.0, 0.0, 3.3, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,25.0,Danvers - Highlands,00710010, 5.3, 3.4, 15.0, 75.0, 0.3, 0.0, 1.1, 54.7, 45.3, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Danvers - Holten Richmond Middle School,00710305, 3.2, 2.6, 12.7, 78.4, 0.0, 0.0, 3.1, 50.5, 49.3, 0.3 +NA,NA,a-cure-i1,2023-24,20.299999999999997,Danvers - Ivan G Smith,00710032, 5.7, 2.2, 11.1, 79.7, 0.0, 0.0, 1.4, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,17.099999999999994,Danvers - Riverside,00710030, 2.8, 1.9, 12.0, 82.9, 0.0, 0.0, 0.3, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,12.400000000000006,Danvers - Willis E Thorpe,00710045, 1.2, 1.2, 9.5, 87.6, 0.0, 0.0, 0.6, 47.3, 52.7, 0.0 +NA,NA,a-cure-i1,2023-24,19.400000000000006,Dartmouth - Andrew B. Cushman School,00720005, 1.9, 2.6, 7.7, 80.6, 0.0, 0.0, 7.1, 58.1, 41.9, 0.0 +NA,NA,a-cure-i1,2023-24,19.099999999999994,Dartmouth - Dartmouth High,00720505, 2.2, 0.8, 7.6, 80.9, 0.0, 0.1, 8.3, 46.0, 53.8, 0.1 +NA,NA,a-cure-i1,2023-24,13.700000000000003,Dartmouth - Dartmouth Middle,00720050, 1.3, 1.4, 4.7, 86.3, 0.0, 0.1, 6.2, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,16.299999999999997,Dartmouth - George H Potter,00720030, 0.2, 1.2, 8.6, 83.7, 0.0, 0.0, 6.2, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Dartmouth - James M. Quinn School,00720040, 1.4, 2.1, 7.4, 81.9, 0.0, 0.0, 7.2, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,17.799999999999997,Dartmouth - Joseph Demello,00720015, 2.7, 1.2, 6.9, 82.2, 0.3, 0.0, 6.6, 51.1, 48.6, 0.3 +NA,NA,a-cure-i1,2023-24,47.5,Dedham - Avery,00730010, 9.6, 1.6, 30.1, 52.5, 0.0, 0.0, 6.2, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,34.3,Dedham - Dedham High,00730505, 10.7, 3.0, 17.2, 65.7, 0.1, 0.0, 3.3, 52.8, 46.8, 0.4 +NA,NA,a-cure-i1,2023-24,39.4,Dedham - Dedham Middle School,00730305, 11.2, 1.7, 21.0, 60.6, 0.2, 0.0, 5.3, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,35.2,Dedham - Early Childhood Center,00730005, 7.6, 4.7, 18.0, 64.8, 0.0, 0.0, 4.9, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Dedham - Greenlodge,00730025, 2.3, 1.9, 12.3, 75.8, 0.0, 0.0, 7.7, 52.3, 47.4, 0.3 +NA,NA,a-cure-i1,2023-24,28.900000000000006,Dedham - Oakdale,00730030, 8.6, 0.8, 12.9, 71.1, 0.0, 0.0, 6.6, 44.9, 55.1, 0.0 +NA,NA,a-cure-i1,2023-24,31.099999999999994,Dedham - Riverdale,00730045, 6.7, 3.1, 14.5, 68.9, 0.0, 0.0, 6.7, 45.1, 54.9, 0.0 +NA,NA,a-cure-i1,2023-24,12.799999999999997,Deerfield - Deerfield Elementary,00740015, 1.3, 0.6, 5.1, 87.2, 0.0, 0.0, 5.8, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,33.7,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 10.4, 3.5, 14.1, 66.3, 0.4, 0.2, 5.1, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,34.599999999999994,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 11.5, 2.0, 11.7, 65.4, 2.5, 0.9, 6.1, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,38.9,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 14.3, 2.4, 13.1, 61.1, 1.5, 0.1, 7.5, 50.3, 49.3, 0.3 +NA,NA,a-cure-i1,2023-24,40.3,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 14.3, 2.2, 16.0, 59.7, 1.4, 0.3, 6.2, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,37.5,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 14.2, 2.5, 16.4, 62.5, 1.8, 0.0, 2.5, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,35.0,Dennis-Yarmouth - Station Avenue Elementary,06450025, 11.6, 1.2, 15.7, 65.0, 0.9, 0.0, 5.6, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,16.0,Dighton-Rehoboth - Dighton Elementary,06500005, 3.5, 1.9, 6.5, 84.0, 0.0, 0.0, 4.1, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,17.400000000000006,Dighton-Rehoboth - Dighton Middle School,06500305, 2.2, 1.6, 8.2, 82.6, 0.0, 0.0, 5.4, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,14.799999999999997,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.8, 2.2, 6.0, 85.2, 0.2, 0.0, 4.6, 52.3, 47.4, 0.3 +NA,NA,a-cure-i1,2023-24,14.0,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.3, 1.3, 6.5, 86.0, 0.2, 0.0, 4.8, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,11.799999999999997,Dighton-Rehoboth - Palmer River,06500010, 1.7, 1.4, 6.1, 88.2, 0.0, 0.0, 2.7, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,9.599999999999994,Douglas - Douglas Elementary School,00770015, 0.8, 0.3, 5.7, 90.4, 0.0, 0.0, 2.8, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,9.900000000000006,Douglas - Douglas High School,00770505, 1.0, 1.3, 5.6, 90.1, 0.0, 0.0, 2.0, 50.2, 49.5, 0.3 +NA,NA,a-cure-i1,2023-24,15.599999999999994,Douglas - Douglas Middle School,00770305, 1.0, 1.4, 8.0, 84.4, 0.0, 0.0, 5.2, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.5,Douglas - Douglas Primary School,00770005, 1.4, 0.0, 10.2, 86.5, 0.0, 0.0, 1.9, 56.3, 43.7, 0.0 +NA,NA,a-cure-i1,2023-24,26.799999999999997,Dover - Chickering,00780005, 3.0, 12.3, 4.6, 73.2, 0.2, 0.0, 6.6, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,29.200000000000003,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.8, 13.7, 5.7, 70.8, 0.2, 0.0, 6.8, 50.2, 49.5, 0.3 +NA,NA,a-cure-i1,2023-24,27.400000000000006,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 2.8, 11.8, 5.3, 72.6, 0.2, 0.0, 7.2, 51.4, 48.4, 0.2 +NA,NA,a-cure-i1,2023-24,40.8,Dracut - Brookside Elementary,00790035, 10.8, 11.0, 16.6, 59.2, 0.0, 0.0, 2.4, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,36.2,Dracut - Dracut Senior High,00790505, 9.3, 10.5, 14.3, 63.8, 0.1, 0.1, 1.9, 51.0, 48.3, 0.8 +NA,NA,a-cure-i1,2023-24,39.1,Dracut - George H. Englesby Elementary School,00790045, 5.4, 10.8, 19.9, 60.9, 0.2, 0.0, 2.8, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,43.9,Dracut - Greenmont Avenue,00790030, 9.6, 9.1, 21.7, 56.1, 0.0, 0.0, 3.5, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,28.900000000000006,Dracut - Joseph A Campbell Elementary,00790020, 8.7, 9.7, 10.2, 71.1, 0.2, 0.0, 0.2, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,35.400000000000006,Dracut - Justus C. Richardson Middle School,00790410, 8.3, 9.5, 15.7, 64.6, 0.0, 0.0, 2.0, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,97.2,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 60.1, 0.7, 35.8, 2.8, 0.3, 0.0, 0.3, 46.5, 53.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.5,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.2, 0.6, 11.0, 84.5, 0.3, 0.0, 2.4, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,15.599999999999994,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.5, 0.8, 8.5, 84.4, 0.0, 0.2, 4.6, 54.2, 45.6, 0.2 +NA,NA,a-cure-i1,2023-24,24.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 4.2, 0.6, 15.3, 75.1, 0.3, 0.0, 4.5, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,23.0,Dudley-Charlton Reg - Dudley Middle School,06580305, 4.2, 0.9, 15.0, 77.0, 0.0, 0.0, 2.9, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Dudley-Charlton Reg - Heritage School,06580030, 1.6, 0.9, 10.9, 82.8, 0.0, 0.0, 3.8, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.799999999999997,Dudley-Charlton Reg - Mason Road School,06580010, 1.7, 0.9, 18.2, 76.2, 0.0, 0.0, 3.0, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 3.6, 0.9, 10.8, 81.3, 0.1, 0.0, 3.3, 50.7, 49.0, 0.3 +NA,NA,a-cure-i1,2023-24,9.200000000000003,Duxbury - Alden School,00820004, 1.0, 1.4, 2.7, 90.8, 0.0, 0.0, 4.0, 51.9, 48.0, 0.2 +NA,NA,a-cure-i1,2023-24,10.299999999999997,Duxbury - Chandler Elementary,00820006, 0.6, 0.8, 4.6, 89.7, 0.5, 0.0, 3.9, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.700000000000003,Duxbury - Duxbury High,00820505, 0.5, 1.9, 3.0, 90.3, 0.2, 0.0, 4.2, 50.2, 49.5, 0.2 +NA,NA,a-cure-i1,2023-24,7.099999999999994,Duxbury - Duxbury Middle,00820305, 0.8, 0.3, 2.9, 92.9, 0.2, 0.2, 2.7, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,20.0,East Bridgewater - Central,00830005, 6.4, 1.2, 6.2, 80.0, 0.2, 0.0, 6.0, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,18.400000000000006,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 7.2, 0.6, 5.8, 81.6, 0.6, 0.1, 4.1, 55.4, 44.4, 0.2 +NA,NA,a-cure-i1,2023-24,18.0,East Bridgewater - Gordon W. Mitchell School,00830010, 7.1, 0.6, 7.1, 82.0, 0.5, 0.0, 2.6, 47.1, 52.9, 0.0 +NA,NA,a-cure-i1,2023-24,26.400000000000006,East Longmeadow - Birchland Park,00870305, 2.1, 5.9, 13.0, 73.6, 0.3, 0.2, 4.9, 54.2, 45.6, 0.2 +NA,NA,a-cure-i1,2023-24,24.799999999999997,East Longmeadow - East Longmeadow High,00870505, 4.9, 6.4, 10.0, 75.2, 0.1, 0.0, 3.4, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,31.400000000000006,East Longmeadow - Mapleshade,00870010, 5.6, 5.9, 17.1, 68.6, 0.0, 0.0, 2.8, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,30.799999999999997,East Longmeadow - Meadow Brook,00870013, 3.6, 4.3, 17.3, 69.2, 0.0, 0.0, 5.7, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,22.700000000000003,East Longmeadow - Mountain View,00870015, 4.0, 2.9, 12.8, 77.3, 0.0, 0.0, 2.9, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,28.400000000000006,Eastham - Eastham Elementary,00850005, 11.9, 0.0, 5.7, 71.6, 0.0, 0.0, 10.8, 57.4, 42.6, 0.0 +NA,NA,a-cure-i1,2023-24,26.299999999999997,Easthampton - Easthampton High,00860505, 0.8, 4.3, 17.4, 73.7, 0.3, 0.0, 3.5, 49.6, 48.5, 1.9 +NA,NA,a-cure-i1,2023-24,24.299999999999997,Easthampton - Mountain View School,00860415, 1.1, 2.1, 15.3, 75.7, 0.2, 0.3, 5.4, 51.2, 48.5, 0.3 +NA,NA,a-cure-i1,2023-24,31.599999999999994,Easton - Blanche A. Ames Elementary School,00880015, 9.1, 4.1, 12.5, 68.4, 0.0, 0.0, 5.9, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,25.5,Easton - Easton Middle School,00880405, 9.0, 2.8, 8.9, 74.5, 0.6, 0.1, 4.0, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Easton - Oliver Ames High,00880505, 8.1, 3.7, 7.2, 77.4, 0.2, 0.2, 3.3, 50.1, 49.6, 0.3 +NA,NA,a-cure-i1,2023-24,25.799999999999997,Easton - Richardson Olmsted School,00880025, 7.5, 4.2, 9.0, 74.2, 0.0, 0.0, 5.2, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,38.3,Edgartown - Edgartown Elementary,00890005, 4.7, 0.3, 26.7, 61.7, 2.3, 0.0, 4.4, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,97.9,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 38.4, 2.4, 53.6, 2.1, 0.0, 0.3, 3.2, 33.1, 66.9, 0.0 +NA,NA,a-cure-i1,2023-24,13.799999999999997,Erving - Erving Elementary,00910030, 0.0, 0.0, 7.3, 86.2, 0.0, 0.0, 6.5, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,23.799999999999997,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 2.6, 2.1, 15.7, 76.2, 0.1, 0.0, 3.4, 43.6, 56.1, 0.3 +NA,NA,a-cure-i1,2023-24,87.1,Everett - Adams School,00930003, 16.6, 14.1, 54.0, 12.9, 0.6, 0.0, 1.8, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,77.6,Everett - Devens School,00930030, 18.4, 4.1, 53.1, 22.4, 0.0, 0.0, 2.0, 71.4, 26.5, 2.0 +NA,NA,a-cure-i1,2023-24,85.0,Everett - Everett High,00930505, 14.0, 4.8, 64.3, 15.0, 0.2, 0.1, 1.6, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,90.1,Everett - George Keverian School,00930028, 11.5, 3.7, 73.3, 9.9, 0.1, 0.1, 1.5, 49.5, 50.4, 0.1 +NA,NA,a-cure-i1,2023-24,84.6,Everett - Lafayette School,00930038, 14.6, 7.0, 61.6, 15.4, 0.1, 0.0, 1.3, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,85.8,Everett - Madeline English School,00930018, 13.6, 4.1, 66.5, 14.2, 0.1, 0.0, 1.4, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,92.7,Everett - Parlin School,00930058, 9.8, 3.6, 79.0, 7.3, 0.0, 0.0, 0.4, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,89.9,Everett - Sumner G. Whittier School,00930010, 8.4, 2.8, 76.5, 10.1, 0.8, 0.0, 1.5, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,84.7,Everett - Webster Extension,00930001, 13.1, 19.4, 51.4, 15.3, 0.0, 0.0, 0.9, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,80.6,Everett - Webster School,00930015, 11.7, 4.4, 63.6, 19.4, 0.0, 0.0, 0.9, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,88.2,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 4.8, 1.2, 80.2, 11.8, 0.4, 0.4, 1.2, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,20.299999999999997,Fairhaven - East Fairhaven,00940010, 1.3, 1.6, 10.5, 79.7, 0.7, 0.0, 6.2, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,16.200000000000003,Fairhaven - Fairhaven High,00940505, 1.7, 2.4, 8.1, 83.8, 0.3, 0.0, 3.7, 51.8, 48.1, 0.2 +NA,NA,a-cure-i1,2023-24,15.400000000000006,Fairhaven - Hastings Middle,00940305, 3.0, 2.1, 5.6, 84.6, 0.7, 0.0, 4.0, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Fairhaven - Leroy Wood,00940030, 2.3, 2.8, 8.1, 81.3, 0.0, 0.0, 5.5, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,56.1,Fall River - B M C Durfee High,00950505, 11.2, 4.0, 32.2, 43.9, 0.2, 0.0, 8.4, 48.8, 51.0, 0.2 +NA,NA,a-cure-i1,2023-24,63.1,Fall River - Carlton M. Viveiros Elementary School,00950009, 11.0, 2.7, 41.0, 36.9, 0.1, 0.1, 8.0, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,50.5,Fall River - Early Learning Center,00950001, 8.4, 3.2, 29.5, 49.5, 0.0, 0.0, 9.5, 61.1, 38.9, 0.0 +NA,NA,a-cure-i1,2023-24,52.8,Fall River - FRPS Early Learning Center,00950002, 2.8, 3.7, 38.9, 47.2, 0.0, 0.0, 7.4, 60.2, 39.8, 0.0 +NA,NA,a-cure-i1,2023-24,60.9,Fall River - Henry Lord Community School,00950017, 12.0, 1.8, 36.8, 39.1, 0.1, 0.1, 10.0, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,40.2,Fall River - James Tansey,00950140, 7.8, 3.3, 19.0, 59.8, 0.0, 0.0, 10.1, 50.7, 49.0, 0.3 +NA,NA,a-cure-i1,2023-24,60.3,Fall River - John J Doran,00950045, 13.3, 0.2, 34.1, 39.7, 0.0, 0.0, 12.7, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,59.1,Fall River - Letourneau Elementary School,00950013, 10.8, 2.3, 38.3, 40.9, 0.3, 0.3, 7.0, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,68.2,Fall River - Mary Fonseca Elementary School,00950011, 16.1, 1.7, 41.5, 31.8, 0.0, 0.0, 8.9, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,59.1,Fall River - Matthew J Kuss Middle,00950320, 12.2, 4.2, 34.0, 40.9, 0.3, 0.0, 8.4, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,51.3,Fall River - Morton Middle,00950315, 12.5, 2.9, 25.8, 48.7, 0.1, 0.0, 9.9, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,48.0,Fall River - North End Elementary,00950005, 12.2, 1.2, 22.5, 52.0, 0.2, 0.0, 11.9, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,64.1,Fall River - Resiliency Preparatory Academy,00950525, 18.5, 0.5, 34.2, 35.9, 0.0, 0.0, 10.9, 59.8, 40.2, 0.0 +NA,NA,a-cure-i1,2023-24,60.8,Fall River - Samuel Watson,00950145, 17.0, 0.8, 29.4, 39.2, 0.0, 0.4, 13.2, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,49.7,Fall River - Spencer Borden,00950130, 13.3, 5.7, 22.3, 50.3, 0.0, 0.0, 8.3, 55.9, 44.1, 0.0 +NA,NA,a-cure-i1,2023-24,45.2,Fall River - Stone PK-12 School,00950340, 11.3, 0.0, 22.6, 54.8, 1.6, 0.0, 9.7, 74.2, 25.8, 0.0 +NA,NA,a-cure-i1,2023-24,60.1,Fall River - Talbot Innovation School,00950305, 10.4, 2.7, 39.0, 39.9, 0.4, 0.2, 7.5, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,63.2,Fall River - William S Greene,00950065, 10.3, 3.1, 40.2, 36.8, 0.4, 0.3, 8.9, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,30.5,Falmouth - East Falmouth Elementary,00960005, 7.7, 3.0, 9.7, 69.5, 1.0, 0.0, 9.1, 58.1, 41.9, 0.0 +NA,NA,a-cure-i1,2023-24,24.099999999999994,Falmouth - Falmouth High,00960505, 7.0, 1.2, 8.9, 75.9, 1.5, 0.0, 5.4, 51.7, 47.9, 0.4 +NA,NA,a-cure-i1,2023-24,25.299999999999997,Falmouth - Lawrence,00960405, 4.8, 0.9, 10.2, 74.7, 1.7, 0.0, 7.6, 50.3, 49.5, 0.2 +NA,NA,a-cure-i1,2023-24,27.5,Falmouth - Morse Pond School,00960305, 5.8, 1.7, 12.1, 72.5, 0.6, 0.0, 7.3, 51.7, 48.1, 0.2 +NA,NA,a-cure-i1,2023-24,26.900000000000006,Falmouth - Mullen-Hall,00960020, 1.6, 2.7, 13.8, 73.1, 1.1, 0.0, 7.7, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Falmouth - North Falmouth Elementary,00960030, 1.3, 1.3, 7.7, 82.8, 0.7, 0.0, 6.1, 45.8, 54.2, 0.0 +NA,NA,a-cure-i1,2023-24,27.099999999999994,Falmouth - Teaticket,00960015, 5.5, 1.6, 11.0, 72.9, 0.8, 0.0, 8.2, 58.0, 40.8, 1.2 +NA,NA,a-cure-i1,2023-24,6.200000000000003,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 5.4, 93.8, 0.0, 0.0, 0.8, 48.1, 51.9, 0.0 +NA,NA,a-cure-i1,2023-24,76.8,Fitchburg - Arthur M Longsjo Middle School,00970315, 8.5, 4.2, 55.9, 23.2, 0.4, 0.0, 7.8, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,75.0,Fitchburg - Crocker Elementary,00970016, 7.9, 3.2, 56.0, 25.0, 0.3, 0.0, 7.6, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,79.2,Fitchburg - Fitchburg High,00970505, 8.3, 5.6, 58.6, 20.8, 0.1, 0.0, 6.6, 48.6, 50.8, 0.5 +NA,NA,a-cure-i1,2023-24,69.9,Fitchburg - Goodrich Academy,00970510, 5.8, 1.8, 57.5, 30.1, 0.0, 0.0, 4.9, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,81.5,Fitchburg - McKay Elementary School,00970340, 6.0, 4.3, 64.0, 18.5, 0.3, 0.0, 6.8, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,75.5,Fitchburg - Memorial Middle School,00970048, 6.1, 4.1, 57.2, 24.5, 0.0, 0.0, 8.0, 52.6, 47.2, 0.2 +NA,NA,a-cure-i1,2023-24,67.3,Fitchburg - Reingold Elementary,00970043, 4.2, 4.7, 53.3, 32.7, 0.0, 0.0, 5.1, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,75.7,Fitchburg - South Street Early Learning Center,00970060, 7.1, 5.0, 57.4, 24.3, 0.0, 0.2, 6.1, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,1.2000000000000028,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,13.599999999999994,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 1.4, 0.9, 7.0, 86.4, 0.0, 0.0, 4.2, 50.0, 47.2, 2.8 +NA,NA,a-cure-i1,2023-24,21.400000000000006,Foxborough - Charles Taylor Elementary,00990050, 5.4, 5.0, 6.1, 78.6, 0.0, 0.0, 5.0, 58.9, 41.1, 0.0 +NA,NA,a-cure-i1,2023-24,25.599999999999994,Foxborough - Foxborough High,00990505, 10.0, 4.2, 8.5, 74.4, 0.3, 0.0, 2.6, 51.1, 48.7, 0.1 +NA,NA,a-cure-i1,2023-24,29.700000000000003,Foxborough - John J Ahern,00990405, 8.2, 7.0, 8.9, 70.3, 0.3, 0.1, 5.2, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,26.299999999999997,Foxborough - Mabelle M Burrell,00990015, 6.9, 5.7, 9.1, 73.7, 0.0, 0.0, 4.5, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,31.200000000000003,Foxborough - Vincent M Igo Elementary,00990020, 9.4, 7.8, 9.9, 68.8, 0.0, 0.0, 4.0, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,85.3,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 70.3, 5.5, 4.8, 14.7, 0.4, 0.1, 4.2, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,86.2,Framingham - Barbieri Elementary,01000035, 1.5, 0.2, 80.7, 13.8, 0.0, 0.0, 3.8, 47.3, 52.7, 0.0 +NA,NA,a-cure-i1,2023-24,74.8,Framingham - Brophy,01000006, 5.7, 4.3, 59.6, 25.2, 0.2, 0.0, 5.1, 53.3, 46.5, 0.2 +NA,NA,a-cure-i1,2023-24,55.9,Framingham - Cameron Middle School,01000302, 8.2, 2.7, 40.8, 44.1, 0.0, 0.0, 4.3, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,51.8,Framingham - Charlotte A Dunning,01000007, 5.7, 7.8, 32.6, 48.2, 0.0, 0.0, 5.7, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,58.3,Framingham - Framingham High School,01000515, 6.5, 4.4, 43.5, 41.7, 0.0, 0.0, 3.9, 50.1, 49.3, 0.6 +NA,NA,a-cure-i1,2023-24,69.7,Framingham - Fuller Middle,01000305, 6.7, 1.8, 56.7, 30.3, 0.0, 0.0, 4.4, 49.3, 50.5, 0.2 +NA,NA,a-cure-i1,2023-24,87.1,Framingham - Harmony Grove Elementary,01000055, 7.8, 0.8, 76.5, 12.9, 0.0, 0.0, 1.9, 53.5, 46.3, 0.2 +NA,NA,a-cure-i1,2023-24,53.7,Framingham - Hemenway,01000015, 6.3, 10.0, 28.0, 46.3, 0.0, 0.0, 9.4, 52.6, 47.2, 0.2 +NA,NA,a-cure-i1,2023-24,56.7,Framingham - Juniper Hill School,01000001, 3.2, 5.8, 39.7, 43.3, 0.0, 0.0, 7.9, 60.6, 39.4, 0.0 +NA,NA,a-cure-i1,2023-24,57.0,Framingham - King Elementary School,01000005, 4.9, 7.6, 37.9, 43.0, 0.0, 0.0, 6.6, 49.6, 49.6, 0.7 +NA,NA,a-cure-i1,2023-24,70.9,Framingham - Mary E Stapleton Elementary,01000045, 9.0, 4.2, 52.8, 29.1, 0.0, 0.0, 4.8, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,72.8,Framingham - Miriam F McCarthy School,01000050, 7.9, 2.0, 55.8, 27.2, 0.0, 0.0, 7.1, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,67.3,Framingham - Potter Road,01000039, 4.3, 1.5, 57.0, 32.7, 0.0, 0.0, 4.5, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,58.1,Framingham - Walsh Middle,01000310, 5.4, 4.1, 43.6, 41.9, 0.0, 0.0, 5.0, 47.8, 51.7, 0.5 +NA,NA,a-cure-i1,2023-24,14.099999999999994,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.4, 1.9, 4.6, 85.9, 0.0, 0.0, 5.1, 43.8, 50.3, 5.9 +NA,NA,a-cure-i1,2023-24,18.299999999999997,Franklin - Annie Sullivan Middle School,01010040, 5.6, 3.4, 5.9, 81.7, 0.0, 0.6, 2.8, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,42.8,Franklin - Franklin Early Childhood Development Center,01010003, 5.9, 26.3, 5.3, 57.2, 2.0, 1.3, 2.0, 61.8, 38.2, 0.0 +NA,NA,a-cure-i1,2023-24,21.900000000000006,Franklin - Franklin High,01010505, 3.4, 8.8, 6.8, 78.1, 0.1, 0.3, 2.5, 51.5, 48.0, 0.5 +NA,NA,a-cure-i1,2023-24,17.400000000000006,Franklin - Helen Keller Elementary,01010012, 3.4, 5.0, 7.0, 82.6, 0.0, 0.4, 1.6, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,17.099999999999994,Franklin - Horace Mann,01010405, 1.3, 8.3, 4.9, 82.9, 0.3, 0.5, 1.8, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,19.299999999999997,Franklin - J F Kennedy Memorial,01010013, 1.2, 10.6, 4.2, 80.7, 0.0, 0.6, 2.7, 55.9, 43.8, 0.3 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Franklin - Jefferson Elementary,01010010, 2.1, 5.7, 7.8, 78.4, 0.0, 0.3, 5.7, 55.3, 44.1, 0.6 +NA,NA,a-cure-i1,2023-24,23.599999999999994,Franklin - Oak Street Elementary,01010030, 3.6, 8.0, 7.8, 76.4, 0.3, 0.5, 3.4, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,27.5,Franklin - Parmenter,01010032, 5.2, 7.2, 12.0, 72.5, 0.7, 0.3, 2.1, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,27.599999999999994,Franklin - Remington Middle,01010310, 6.8, 7.1, 9.4, 72.4, 0.0, 0.9, 3.4, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,10.599999999999994,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.6, 0.2, 6.1, 89.4, 0.2, 0.3, 3.2, 56.5, 43.0, 0.5 +NA,NA,a-cure-i1,2023-24,7.299999999999997,Freetown-Lakeville - Apponequet Regional High,06650505, 2.0, 1.2, 2.3, 92.7, 0.0, 0.0, 1.8, 47.6, 52.0, 0.4 +NA,NA,a-cure-i1,2023-24,11.700000000000003,Freetown-Lakeville - Assawompset Elementary School,06650002, 4.1, 1.3, 3.0, 88.3, 0.0, 0.2, 3.2, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,9.200000000000003,Freetown-Lakeville - Freetown Elementary School,06650001, 0.8, 1.1, 3.4, 90.8, 0.3, 0.0, 3.7, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,11.200000000000003,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 3.8, 1.1, 3.5, 88.8, 0.0, 0.0, 2.7, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,11.400000000000006,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.9, 0.4, 5.2, 88.6, 0.0, 0.0, 3.9, 53.0, 46.8, 0.2 +NA,NA,a-cure-i1,2023-24,19.799999999999997,Frontier - Frontier Regional,06700505, 2.0, 3.5, 7.3, 80.2, 0.0, 0.0, 7.1, 51.7, 47.3, 1.0 +NA,NA,a-cure-i1,2023-24,37.8,Gardner - Gardner Academy for Learning and Technology,01030515, 7.9, 0.8, 20.5, 62.2, 0.0, 0.0, 8.7, 43.3, 55.9, 0.8 +NA,NA,a-cure-i1,2023-24,43.1,Gardner - Gardner Elementary School,01030001, 3.7, 1.1, 31.1, 56.9, 0.3, 0.0, 6.8, 54.0, 45.9, 0.1 +NA,NA,a-cure-i1,2023-24,41.0,Gardner - Gardner High,01030505, 4.7, 1.7, 26.8, 59.0, 0.2, 0.0, 7.5, 50.3, 48.2, 1.5 +NA,NA,a-cure-i1,2023-24,41.4,Gardner - Gardner Middle School,01030405, 4.1, 1.2, 29.0, 58.6, 0.4, 0.0, 6.6, 50.7, 48.9, 0.4 +NA,NA,a-cure-i1,2023-24,3.4000000000000057,Gateway - Chester Elementary,06720059, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,12.299999999999997,Gateway - Gateway Regional High,06720505, 1.9, 0.0, 9.3, 87.7, 0.6, 0.0, 0.6, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,8.200000000000003,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 5.1, 91.8, 0.0, 0.0, 2.6, 52.0, 47.4, 0.5 +NA,NA,a-cure-i1,2023-24,8.700000000000003,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 5.8, 91.3, 0.0, 0.4, 2.5, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,14.200000000000003,Georgetown - Georgetown High School,01050505, 1.0, 1.0, 10.0, 85.8, 0.0, 0.7, 1.4, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,8.5,Georgetown - Georgetown Middle School,01050305, 1.6, 1.1, 3.7, 91.5, 0.0, 0.0, 2.1, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,7.5,Georgetown - Penn Brook,01050010, 0.4, 0.7, 3.7, 92.5, 0.0, 0.0, 2.6, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,4.5,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.1, 95.5, 0.0, 0.0, 3.4, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,15.799999999999997,Gill-Montague - Gill Elementary,06740005, 0.9, 0.9, 7.0, 84.2, 0.0, 0.0, 7.0, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,20.299999999999997,Gill-Montague - Great Falls Middle,06740310, 0.8, 0.0, 14.3, 79.7, 0.0, 0.4, 4.6, 56.5, 42.2, 1.3 +NA,NA,a-cure-i1,2023-24,29.900000000000006,Gill-Montague - Hillcrest Elementary School,06740015, 0.7, 1.5, 19.7, 70.1, 0.7, 0.0, 7.3, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,30.700000000000003,Gill-Montague - Sheffield Elementary School,06740050, 1.9, 0.5, 20.8, 69.3, 0.0, 0.0, 7.5, 57.1, 42.9, 0.0 +NA,NA,a-cure-i1,2023-24,31.700000000000003,Gill-Montague - Turners Fall High,06740505, 2.0, 0.5, 18.8, 68.3, 0.5, 0.0, 9.9, 52.5, 47.0, 0.5 +NA,NA,a-cure-i1,2023-24,67.1,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 13.7, 1.2, 47.8, 32.9, 0.2, 0.0, 4.2, 46.6, 53.4, 0.0 +NA,NA,a-cure-i1,2023-24,30.299999999999997,Gloucester - Beeman Memorial,01070010, 2.4, 1.0, 23.0, 69.7, 0.0, 0.0, 3.8, 46.7, 53.3, 0.0 +NA,NA,a-cure-i1,2023-24,33.8,Gloucester - East Veterans Elementary School,01070030, 2.7, 2.9, 22.4, 66.2, 0.0, 0.4, 5.3, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,21.099999999999994,Gloucester - Gloucester High,01070505, 1.1, 1.7, 15.1, 78.9, 0.6, 0.1, 2.4, 52.3, 47.2, 0.5 +NA,NA,a-cure-i1,2023-24,20.200000000000003,Gloucester - Gloucester PreSchool,01070025, 1.8, 3.5, 11.4, 79.8, 0.0, 0.0, 3.5, 57.0, 43.0, 0.0 +NA,NA,a-cure-i1,2023-24,13.5,Gloucester - Plum Cove School,01070042, 1.9, 0.0, 4.8, 86.5, 0.0, 0.0, 6.7, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,22.5,Gloucester - Ralph B O'Maley Middle,01070305, 1.9, 0.6, 15.2, 77.5, 0.2, 0.3, 4.3, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,15.099999999999994,Gloucester - West Parish,01070050, 0.8, 0.8, 7.8, 84.9, 0.3, 0.8, 4.6, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,100.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-cure-i1,2023-24,24.5,Grafton - Grafton High School,01100505, 2.4, 10.5, 8.6, 75.5, 0.4, 0.1, 2.4, 51.1, 48.7, 0.2 +NA,NA,a-cure-i1,2023-24,27.200000000000003,Grafton - Grafton Middle,01100305, 2.2, 13.5, 6.8, 72.8, 0.4, 0.2, 4.1, 53.6, 46.2, 0.2 +NA,NA,a-cure-i1,2023-24,29.700000000000003,Grafton - Millbury Street Elementary School,01100200, 2.7, 15.4, 8.5, 70.3, 0.5, 0.0, 2.5, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,34.5,Grafton - North Grafton Elementary,01100025, 4.0, 17.9, 7.9, 65.5, 1.2, 0.0, 3.6, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,29.799999999999997,Grafton - North Street Elementary School,01100030, 3.5, 16.4, 6.5, 70.2, 0.7, 0.0, 2.6, 50.4, 49.5, 0.2 +NA,NA,a-cure-i1,2023-24,31.599999999999994,Grafton - South Grafton Elementary,01100005, 2.4, 17.5, 7.2, 68.4, 1.0, 0.0, 3.4, 50.2, 49.5, 0.3 +NA,NA,a-cure-i1,2023-24,18.200000000000003,Granby - East Meadow,01110004, 0.7, 2.5, 10.0, 81.8, 0.2, 0.0, 4.7, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Granby - Granby Jr Sr High School,01110505, 0.0, 1.7, 13.4, 81.4, 0.3, 0.0, 3.1, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,48.1,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 7.6, 5.9, 26.3, 51.9, 0.1, 0.3, 8.0, 45.0, 53.8, 1.2 +NA,NA,a-cure-i1,2023-24,30.0,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.9, 2.5, 17.2, 70.0, 0.3, 0.0, 6.2, 57.3, 42.0, 0.7 +NA,NA,a-cure-i1,2023-24,84.8,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.8, 0.8, 81.6, 15.2, 0.0, 0.0, 0.6, 46.7, 53.1, 0.2 +NA,NA,a-cure-i1,2023-24,65.0,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 7.6, 20.0, 33.4, 35.0, 0.2, 0.0, 3.8, 50.6, 48.4, 1.0 +NA,NA,a-cure-i1,2023-24,45.7,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 9.5, 0.7, 29.2, 54.3, 0.3, 0.1, 6.0, 51.2, 48.7, 0.1 +NA,NA,a-cure-i1,2023-24,15.200000000000003,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 11.9, 84.8, 0.0, 0.0, 3.3, 57.1, 42.9, 0.0 +NA,NA,a-cure-i1,2023-24,33.5,Greenfield - Federal Street School,01140010, 2.7, 1.1, 24.7, 66.5, 0.0, 0.0, 4.9, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,36.2,Greenfield - Greenfield High,01140505, 4.5, 2.0, 24.1, 63.8, 0.0, 0.0, 5.6, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,32.2,Greenfield - Greenfield Middle,01140305, 3.7, 2.3, 20.3, 67.8, 0.3, 0.0, 5.6, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,42.6,Greenfield - Newton School,01140035, 6.0, 0.0, 31.1, 57.4, 0.0, 1.1, 4.4, 46.4, 53.6, 0.0 +NA,NA,a-cure-i1,2023-24,28.900000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 2.2, 1.1, 17.8, 71.1, 0.0, 0.0, 7.8, 55.6, 44.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.299999999999997,Groton-Dunstable - Boutwell School,06730001, 4.0, 2.7, 2.7, 86.7, 0.0, 0.0, 4.0, 61.3, 38.7, 0.0 +NA,NA,a-cure-i1,2023-24,21.299999999999997,Groton-Dunstable - Florence Roche School,06730010, 2.0, 9.4, 4.1, 78.7, 0.4, 0.2, 5.1, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,14.700000000000003,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.7, 7.7, 2.8, 85.3, 0.1, 0.1, 2.2, 50.2, 49.3, 0.4 +NA,NA,a-cure-i1,2023-24,19.099999999999994,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 2.2, 8.0, 3.9, 80.9, 0.4, 0.1, 4.3, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,17.799999999999997,Groton-Dunstable - Swallow/Union School,06730005, 0.6, 7.2, 6.9, 82.2, 0.0, 0.0, 3.1, 56.3, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,21.200000000000003,Hadley - Hadley Elementary,01170015, 3.4, 5.5, 9.6, 78.8, 0.0, 0.0, 2.7, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,28.0,Hadley - Hopkins Academy,01170505, 4.3, 4.7, 12.8, 72.0, 0.5, 2.4, 3.3, 55.5, 44.5, 0.0 +NA,NA,a-cure-i1,2023-24,8.700000000000003,Halifax - Halifax Elementary,01180005, 1.5, 0.0, 5.3, 91.3, 0.2, 0.0, 1.8, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,15.799999999999997,Hamilton-Wenham - Bessie Buker Elementary,06750007, 1.2, 4.2, 8.9, 84.2, 0.0, 0.0, 1.5, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.799999999999997,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.2, 6.3, 90.2, 0.0, 0.0, 2.4, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,13.099999999999994,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.7, 4.5, 4.1, 86.9, 0.0, 0.7, 3.2, 46.8, 52.9, 0.2 +NA,NA,a-cure-i1,2023-24,13.5,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 4.8, 5.0, 86.5, 0.0, 0.0, 3.7, 43.7, 56.3, 0.0 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Hamilton-Wenham - Winthrop School,06750015, 0.9, 4.8, 5.7, 86.1, 0.0, 0.0, 2.4, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,76.7,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 26.8, 4.0, 42.0, 23.3, 0.5, 0.2, 3.3, 53.9, 45.8, 0.4 +NA,NA,a-cure-i1,2023-24,52.3,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 12.7, 2.8, 34.5, 47.7, 0.5, 0.0, 1.8, 57.1, 42.9, 0.0 +NA,NA,a-cure-i1,2023-24,17.0,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.5, 0.4, 9.8, 83.0, 0.0, 0.0, 4.3, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Hampden-Wilbraham - Mile Tree Elementary,06800025, 5.0, 0.8, 5.6, 82.8, 0.3, 0.0, 5.6, 56.9, 43.1, 0.0 +NA,NA,a-cure-i1,2023-24,24.400000000000006,Hampden-Wilbraham - Minnechaug Regional High,06800505, 4.3, 3.3, 11.6, 75.6, 0.1, 0.0, 5.1, 49.1, 50.8, 0.1 +NA,NA,a-cure-i1,2023-24,19.200000000000003,Hampden-Wilbraham - Soule Road,06800030, 3.1, 2.5, 8.0, 80.8, 0.0, 0.6, 5.0, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,15.799999999999997,Hampden-Wilbraham - Stony Hill School,06800050, 2.7, 1.7, 7.9, 84.2, 0.0, 0.0, 3.4, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,19.299999999999997,Hampden-Wilbraham - Wilbraham Middle,06800310, 3.1, 2.8, 10.2, 80.7, 0.0, 0.0, 3.1, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,9.700000000000003,Hampshire - Hampshire Regional High,06830505, 0.7, 1.3, 4.5, 90.3, 0.1, 0.0, 3.0, 47.4, 51.6, 1.0 +NA,NA,a-cure-i1,2023-24,15.5,Hancock - Hancock Elementary,01210005, 1.7, 3.4, 8.6, 84.5, 0.0, 0.0, 1.7, 31.0, 69.0, 0.0 +NA,NA,a-cure-i1,2023-24,9.799999999999997,Hanover - Cedar Elementary,01220004, 1.6, 1.8, 3.1, 90.2, 0.0, 0.0, 3.3, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,8.099999999999994,Hanover - Center Elementary,01220005, 1.9, 1.6, 3.2, 91.9, 0.2, 0.0, 1.3, 48.6, 51.3, 0.2 +NA,NA,a-cure-i1,2023-24,7.599999999999994,Hanover - Hanover High,01220505, 1.8, 2.3, 2.5, 92.4, 0.0, 0.0, 1.0, 50.1, 49.7, 0.1 +NA,NA,a-cure-i1,2023-24,7.0,Hanover - Hanover Middle,01220305, 0.4, 2.3, 2.9, 93.0, 0.0, 0.0, 1.5, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,31.700000000000003,Harvard - Hildreth Elementary School,01250005, 2.7, 15.2, 5.2, 68.3, 0.2, 0.0, 8.4, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,25.200000000000003,Harvard - The Bromfield High School,01250505, 1.8, 14.5, 4.3, 74.8, 0.0, 0.0, 4.6, 46.5, 53.2, 0.3 +NA,NA,a-cure-i1,2023-24,27.400000000000006,Harvard - The Bromfield Middle School,01250305, 4.4, 14.3, 4.0, 72.6, 0.0, 0.0, 4.8, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,8.700000000000003,Hatfield - Hatfield Elementary,01270005, 0.5, 1.0, 2.0, 91.3, 0.0, 0.0, 5.1, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,4.0,Hatfield - Smith Academy,01270505, 0.0, 0.8, 1.6, 96.0, 0.0, 0.0, 1.6, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,65.9,Haverhill - Bartlett School and Assessment Center,01280073, 12.2, 2.4, 48.8, 34.1, 0.0, 0.0, 2.4, 78.0, 22.0, 0.0 +NA,NA,a-cure-i1,2023-24,56.8,Haverhill - Bradford Elementary,01280008, 5.2, 1.5, 48.4, 43.2, 0.0, 0.0, 1.7, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,40.1,Haverhill - Caleb Dustin Hunking School,01280030, 5.1, 2.0, 30.2, 59.9, 0.0, 0.0, 2.9, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,66.3,Haverhill - Consentino Middle School,01280100, 5.0, 1.6, 57.1, 33.7, 0.0, 0.0, 2.7, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,62.5,Haverhill - Dr Paul Nettle,01280050, 3.8, 2.3, 53.3, 37.5, 0.0, 0.0, 3.2, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,51.5,Haverhill - Gateway Academy,01280515, 1.0, 1.0, 48.5, 48.5, 0.0, 0.0, 1.0, 50.5, 47.6, 1.9 +NA,NA,a-cure-i1,2023-24,54.2,Haverhill - Golden Hill,01280026, 5.3, 1.3, 45.2, 45.8, 0.2, 0.0, 2.3, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,61.8,Haverhill - Greenleaf Academy,01280033, 11.8, 0.0, 47.1, 38.2, 0.0, 0.0, 2.9, 73.5, 26.5, 0.0 +NA,NA,a-cure-i1,2023-24,51.5,Haverhill - Haverhill High,01280505, 5.7, 1.8, 41.7, 48.5, 0.3, 0.2, 1.9, 51.9, 47.9, 0.3 +NA,NA,a-cure-i1,2023-24,58.0,Haverhill - John G Whittier,01280085, 7.0, 1.0, 46.2, 42.0, 0.6, 0.0, 3.2, 50.0, 49.8, 0.2 +NA,NA,a-cure-i1,2023-24,63.4,Haverhill - Moody,01280045, 8.5, 3.3, 49.7, 36.6, 0.7, 0.7, 0.7, 59.5, 40.5, 0.0 +NA,NA,a-cure-i1,2023-24,68.2,Haverhill - Moody Preschool Extension,01280001, 8.1, 0.7, 57.4, 31.8, 0.7, 0.0, 1.4, 57.4, 42.6, 0.0 +NA,NA,a-cure-i1,2023-24,62.9,Haverhill - Pentucket Lake Elementary,01280054, 7.8, 0.6, 51.5, 37.1, 0.4, 0.2, 2.4, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,69.6,Haverhill - Silver Hill Elementary School,01280067, 8.2, 2.3, 56.9, 30.4, 0.0, 0.0, 2.3, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,72.9,Haverhill - Tilton,01280075, 4.5, 0.4, 64.6, 27.1, 0.2, 0.4, 2.7, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,46.3,Haverhill - Walnut Square,01280080, 8.5, 1.2, 34.8, 53.7, 0.0, 0.0, 1.8, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,7.099999999999994,Hawlemont - Hawlemont Regional,06850005, 0.0, 1.8, 1.8, 92.9, 1.8, 0.0, 1.8, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,100.0,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 72.6, 0.0, 24.2, 0.0, 0.0, 0.0, 3.2, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,52.6,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 6.9, 0.0, 38.5, 47.4, 0.0, 0.0, 7.2, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 7.3, 80.3, 0.0, 0.0, 9.6, 54.1, 43.1, 2.8 +NA,NA,a-cure-i1,2023-24,7.5,Hingham - East Elementary School,01310005, 1.5, 1.5, 1.7, 92.5, 0.2, 0.0, 2.5, 54.7, 45.3, 0.0 +NA,NA,a-cure-i1,2023-24,13.099999999999994,Hingham - Hingham High,01310505, 2.2, 3.1, 4.5, 86.9, 0.1, 0.0, 3.2, 50.7, 48.6, 0.6 +NA,NA,a-cure-i1,2023-24,14.299999999999997,Hingham - Hingham Middle School,01310410, 1.2, 3.1, 5.2, 85.7, 0.0, 0.0, 4.8, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.0,Hingham - Plymouth River,01310019, 3.9, 1.7, 5.9, 86.0, 0.0, 0.0, 2.5, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.900000000000006,Hingham - South Elementary,01310020, 2.4, 4.9, 1.4, 90.1, 0.0, 0.0, 1.2, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,12.799999999999997,Hingham - Wm L Foster Elementary,01310010, 1.0, 2.3, 2.8, 87.2, 0.0, 0.3, 6.4, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,60.6,Holbrook - Holbrook Middle High School,01330505, 27.7, 8.0, 17.5, 39.4, 0.3, 0.0, 7.2, 53.4, 46.3, 0.3 +NA,NA,a-cure-i1,2023-24,54.7,Holbrook - John F Kennedy,01330018, 22.9, 4.6, 18.1, 45.3, 0.6, 0.1, 8.4, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,12.400000000000006,Holland - Holland Elementary,01350005, 1.3, 1.3, 7.1, 87.6, 0.4, 0.0, 2.2, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,21.5,Holliston - Holliston High,01360505, 0.7, 8.7, 8.5, 78.5, 0.1, 0.2, 3.2, 49.3, 49.7, 1.0 +NA,NA,a-cure-i1,2023-24,24.700000000000003,Holliston - Miller School,01360007, 1.7, 9.5, 7.8, 75.3, 0.0, 0.0, 5.7, 53.6, 46.2, 0.2 +NA,NA,a-cure-i1,2023-24,27.700000000000003,Holliston - Placentino Elementary,01360010, 1.3, 8.0, 10.1, 72.3, 0.3, 0.0, 8.0, 53.6, 46.1, 0.3 +NA,NA,a-cure-i1,2023-24,23.200000000000003,Holliston - Robert H. Adams Middle School,01360305, 0.8, 9.0, 7.5, 76.8, 0.2, 0.2, 5.6, 50.7, 48.9, 0.5 +NA,NA,a-cure-i1,2023-24,75.8,Holyoke - E N White Elementary,01370045, 1.6, 0.2, 71.2, 24.2, 0.0, 0.0, 2.9, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,92.2,Holyoke - H.B. Lawrence School,01370070, 6.0, 0.3, 84.1, 7.8, 0.0, 0.0, 1.8, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,87.8,Holyoke - Holyoke High,01370505, 3.4, 0.6, 82.3, 12.2, 0.0, 0.0, 1.4, 52.6, 47.3, 0.1 +NA,NA,a-cure-i1,2023-24,90.5,Holyoke - Holyoke STEM Academy,01370320, 6.3, 1.0, 80.9, 9.5, 0.0, 0.0, 2.3, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,90.2,Holyoke - Joseph Metcalf School,01370003, 3.9, 1.5, 83.4, 9.8, 0.0, 0.0, 1.5, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,94.3,Holyoke - Kelly Elementary,01370040, 3.5, 0.0, 90.2, 5.7, 0.0, 0.0, 0.7, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,88.7,Holyoke - Lt Clayre Sullivan Elementary,01370055, 4.5, 0.6, 82.0, 11.3, 0.0, 0.0, 1.6, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,78.9,Holyoke - Lt Elmer J McMahon Elementary,01370015, 4.5, 1.2, 69.8, 21.1, 0.0, 0.0, 3.3, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,87.4,Holyoke - Maurice A Donahue Elementary,01370060, 4.9, 0.5, 79.5, 12.6, 0.0, 0.2, 2.3, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,94.4,Holyoke - Morgan Full Service Community School,01370025, 5.3, 0.0, 86.4, 5.6, 0.0, 0.0, 2.8, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,95.4,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.3, 0.6, 92.3, 4.6, 0.0, 0.0, 1.2, 45.7, 54.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.599999999999994,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 2.4, 1.4, 5.4, 85.4, 0.0, 0.3, 5.1, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.700000000000003,Hoosac Valley Regional - Hoosac Valley High School,06030505, 6.0, 0.0, 5.4, 86.3, 0.7, 0.0, 1.7, 45.2, 54.8, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 1.6, 0.3, 5.2, 89.3, 0.0, 0.0, 3.6, 55.0, 45.0, 0.0 +NA,NA,a-cure-i1,2023-24,20.599999999999994,Hopedale - Hopedale Jr Sr High,01380505, 1.8, 1.6, 14.1, 79.4, 0.2, 0.2, 2.7, 51.0, 48.8, 0.2 +NA,NA,a-cure-i1,2023-24,23.0,Hopedale - Memorial,01380010, 0.7, 2.2, 13.3, 77.0, 0.5, 0.0, 6.2, 53.6, 46.2, 0.2 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Hopedale - Park Street School,01380003, 0.0, 3.8, 12.3, 77.4, 0.0, 0.0, 6.6, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,46.0,Hopkinton - Elmwood,01390010, 0.6, 32.6, 5.8, 54.0, 0.3, 0.0, 6.7, 55.7, 44.1, 0.2 +NA,NA,a-cure-i1,2023-24,46.8,Hopkinton - Hopkins Elementary School,01390015, 0.6, 34.0, 5.5, 53.2, 0.1, 0.0, 6.6, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,34.599999999999994,Hopkinton - Hopkinton High,01390505, 0.9, 23.1, 5.8, 65.4, 0.3, 0.0, 4.5, 51.6, 48.0, 0.4 +NA,NA,a-cure-i1,2023-24,42.2,Hopkinton - Hopkinton Middle School,01390305, 0.4, 32.8, 4.7, 57.8, 0.2, 0.0, 4.1, 49.5, 50.4, 0.1 +NA,NA,a-cure-i1,2023-24,55.2,Hopkinton - Hopkinton Pre-School,01390003, 1.0, 37.5, 8.3, 44.8, 0.0, 0.0, 8.3, 62.5, 37.5, 0.0 +NA,NA,a-cure-i1,2023-24,47.4,Hopkinton - Marathon Elementary School,01390005, 1.4, 32.6, 5.4, 52.6, 0.2, 0.0, 7.8, 50.2, 49.7, 0.2 +NA,NA,a-cure-i1,2023-24,35.5,Hudson - C A Farley,01410030, 4.1, 0.9, 27.8, 64.5, 0.0, 0.0, 2.7, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,30.200000000000003,Hudson - David J. Quinn Middle School,01410410, 3.1, 1.2, 22.5, 69.8, 0.0, 0.0, 3.3, 49.6, 50.3, 0.2 +NA,NA,a-cure-i1,2023-24,28.0,Hudson - Forest Avenue Elementary,01410015, 3.2, 1.1, 21.1, 72.0, 0.4, 0.0, 2.2, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,26.200000000000003,Hudson - Hudson High,01410505, 3.2, 1.9, 18.7, 73.8, 0.0, 0.0, 2.5, 47.5, 52.4, 0.1 +NA,NA,a-cure-i1,2023-24,28.299999999999997,Hudson - Mulready Elementary,01410007, 4.2, 0.8, 20.3, 71.7, 0.0, 0.0, 3.0, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.0,Hull - Hull High,01420505, 1.7, 1.3, 3.9, 91.0, 0.0, 0.0, 2.1, 52.4, 46.8, 0.9 +NA,NA,a-cure-i1,2023-24,11.799999999999997,Hull - Lillian M Jacobs,01420015, 2.6, 1.4, 3.6, 88.2, 0.2, 0.0, 3.8, 56.0, 44.0, 0.0 +NA,NA,a-cure-i1,2023-24,11.299999999999997,Hull - Memorial Middle,01420305, 1.9, 2.8, 4.7, 88.7, 0.9, 0.0, 0.9, 46.2, 53.8, 0.0 +NA,NA,a-cure-i1,2023-24,39.3,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 8.4, 8.8, 15.4, 60.7, 0.6, 0.0, 6.2, 47.5, 51.9, 0.6 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Ipswich - Ipswich High,01440505, 1.5, 2.7, 8.5, 83.6, 0.2, 0.0, 3.5, 46.3, 53.7, 0.0 +NA,NA,a-cure-i1,2023-24,15.400000000000006,Ipswich - Ipswich Middle School,01440305, 1.3, 0.3, 9.7, 84.6, 0.3, 0.0, 3.9, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,15.400000000000006,Ipswich - Paul F Doyon Memorial,01440007, 0.5, 0.8, 9.2, 84.6, 0.3, 0.0, 4.6, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Ipswich - Winthrop,01440015, 0.8, 2.2, 10.6, 81.3, 0.3, 0.0, 4.9, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,17.799999999999997,King Philip - King Philip Middle School,06900510, 3.4, 2.4, 6.9, 82.2, 0.3, 0.0, 4.8, 52.6, 46.7, 0.7 +NA,NA,a-cure-i1,2023-24,15.900000000000006,King Philip - King Philip Regional High,06900505, 3.0, 3.9, 5.3, 84.1, 0.3, 0.0, 3.5, 51.1, 48.5, 0.4 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Kingston - Kingston Elementary,01450005, 3.5, 0.6, 4.5, 88.9, 0.8, 0.2, 1.5, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,9.799999999999997,Kingston - Kingston Intermediate,01450020, 1.6, 0.8, 5.4, 90.2, 0.2, 0.0, 1.8, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,99.3,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 59.9, 0.2, 36.5, 0.7, 0.8, 0.0, 1.9, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,95.1,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 15.5, 4.0, 72.9, 4.9, 0.3, 0.1, 2.2, 49.1, 50.8, 0.1 +NA,NA,a-cure-i1,2023-24,98.6,Lawrence - Alexander B Bruce,01490015, 2.4, 0.7, 95.0, 1.4, 0.0, 0.0, 0.5, 51.9, 47.6, 0.5 +NA,NA,a-cure-i1,2023-24,98.4,Lawrence - Arlington Elementary,01490009, 0.5, 0.0, 97.5, 1.6, 0.2, 0.2, 0.0, 53.2, 46.2, 0.5 +NA,NA,a-cure-i1,2023-24,98.3,Lawrence - Arlington Middle School,01490017, 0.3, 0.0, 97.4, 1.7, 0.0, 0.0, 0.5, 50.0, 49.8, 0.2 +NA,NA,a-cure-i1,2023-24,96.5,Lawrence - Edward F. Parthum,01490053, 2.2, 0.3, 93.4, 3.5, 0.0, 0.0, 0.6, 52.7, 47.1, 0.1 +NA,NA,a-cure-i1,2023-24,97.8,Lawrence - Emily G Wetherbee,01490080, 0.8, 1.6, 95.2, 2.2, 0.0, 0.0, 0.2, 49.3, 50.5, 0.2 +NA,NA,a-cure-i1,2023-24,99.0,Lawrence - Francis M Leahy,01490040, 1.5, 0.0, 97.5, 1.0, 0.0, 0.0, 0.0, 57.3, 42.7, 0.0 +NA,NA,a-cure-i1,2023-24,94.5,Lawrence - Frost Middle School,01490525, 2.0, 2.8, 88.6, 5.5, 0.0, 0.0, 1.0, 50.3, 49.3, 0.4 +NA,NA,a-cure-i1,2023-24,97.1,Lawrence - Gerard A. Guilmette,01490022, 1.0, 1.0, 93.9, 2.9, 0.2, 0.4, 0.4, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,98.5,Lawrence - Guilmette Middle School,01490025, 1.9, 1.5, 94.8, 1.5, 0.0, 0.0, 0.2, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,99.0,Lawrence - High School Learning Center,01490536, 1.0, 0.5, 97.4, 1.0, 0.0, 0.0, 0.0, 54.9, 44.6, 0.5 +NA,NA,a-cure-i1,2023-24,94.7,Lawrence - James F Hennessey,01490020, 3.2, 0.4, 90.8, 5.3, 0.0, 0.0, 0.4, 57.8, 42.2, 0.0 +NA,NA,a-cure-i1,2023-24,96.1,Lawrence - John Breen School,01490003, 2.7, 0.8, 92.6, 3.9, 0.0, 0.0, 0.0, 59.3, 40.7, 0.0 +NA,NA,a-cure-i1,2023-24,97.1,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 96.7, 2.9, 0.0, 0.0, 0.4, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,98.5,Lawrence - Lawlor Early Childhood Center,01490002, 1.5, 0.5, 96.1, 1.5, 0.0, 0.5, 0.0, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,96.9,Lawrence - Lawrence Family Public Academy,01490011, 1.6, 0.5, 94.8, 3.1, 0.0, 0.0, 0.0, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,97.8,Lawrence - Lawrence High School,01490515, 1.4, 1.3, 94.9, 2.2, 0.0, 0.0, 0.1, 53.0, 46.6, 0.4 +NA,NA,a-cure-i1,2023-24,99.4,Lawrence - Leonard Middle School,01490090, 1.9, 0.0, 97.5, 0.6, 0.0, 0.0, 0.0, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,98.3,Lawrence - Oliver Elementary School,01490048, 1.5, 0.2, 96.1, 1.7, 0.0, 0.0, 0.4, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,98.3,Lawrence - Oliver Middle School,01490049, 1.4, 0.6, 96.2, 1.7, 0.0, 0.0, 0.0, 50.3, 49.4, 0.3 +NA,NA,a-cure-i1,2023-24,96.8,Lawrence - Parthum Middle School,01490027, 1.4, 0.3, 94.9, 3.2, 0.0, 0.0, 0.2, 54.7, 45.3, 0.0 +NA,NA,a-cure-i1,2023-24,98.5,Lawrence - RISE Academy,01490615, 0.0, 0.0, 97.0, 1.5, 0.0, 0.0, 1.5, 76.1, 23.9, 0.0 +NA,NA,a-cure-i1,2023-24,92.9,Lawrence - Robert Frost,01490018, 1.5, 3.5, 86.8, 7.1, 0.0, 0.2, 0.9, 51.5, 48.4, 0.2 +NA,NA,a-cure-i1,2023-24,96.1,Lawrence - Rollins Early Childhood Center,01490001, 1.3, 0.0, 94.1, 3.9, 0.7, 0.0, 0.0, 58.8, 41.2, 0.0 +NA,NA,a-cure-i1,2023-24,95.4,Lawrence - School for Exceptional Studies,01490537, 4.6, 0.0, 90.7, 4.6, 0.0, 0.0, 0.0, 83.3, 16.7, 0.0 +NA,NA,a-cure-i1,2023-24,97.3,Lawrence - South Lawrence East Elementary School,01490004, 1.7, 2.0, 93.2, 2.7, 0.0, 0.0, 0.5, 49.5, 50.3, 0.2 +NA,NA,a-cure-i1,2023-24,96.6,Lawrence - Spark Academy,01490085, 1.1, 0.7, 94.8, 3.4, 0.0, 0.0, 0.0, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,99.1,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, 0.0, 98.3, 0.9, 0.0, 0.0, 0.0, 43.6, 56.4, 0.0 +NA,NA,a-cure-i1,2023-24,94.3,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 46.0, 1.0, 45.4, 5.7, 0.1, 0.0, 1.6, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,17.5,Lee - Lee Elementary,01500025, 1.2, 2.7, 10.7, 82.5, 0.0, 0.3, 2.7, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,19.5,Lee - Lee Middle/High School,01500505, 1.0, 3.6, 11.7, 80.5, 0.3, 0.0, 2.9, 52.6, 47.1, 0.3 +NA,NA,a-cure-i1,2023-24,37.9,Leicester - Leicester Elementary,01510005, 6.6, 3.8, 23.2, 62.1, 0.0, 0.0, 4.3, 48.1, 51.9, 0.0 +NA,NA,a-cure-i1,2023-24,32.7,Leicester - Leicester High,01510505, 6.3, 3.3, 19.9, 67.3, 0.0, 0.0, 3.3, 55.4, 44.6, 0.0 +NA,NA,a-cure-i1,2023-24,26.5,Leicester - Leicester Integrated Preschool,01510001, 10.2, 2.0, 10.2, 73.5, 0.0, 0.0, 4.1, 69.4, 30.6, 0.0 +NA,NA,a-cure-i1,2023-24,30.0,Leicester - Leicester Middle,01510015, 5.7, 3.7, 17.2, 70.0, 0.5, 0.0, 3.0, 52.0, 47.8, 0.2 +NA,NA,a-cure-i1,2023-24,19.5,Lenox - Lenox Memorial High,01520505, 0.7, 4.9, 9.4, 80.5, 0.0, 0.0, 4.5, 51.8, 48.0, 0.2 +NA,NA,a-cure-i1,2023-24,26.400000000000006,Lenox - Morris,01520015, 1.8, 7.1, 10.7, 73.6, 0.0, 0.9, 5.9, 54.9, 45.1, 0.0 +NA,NA,a-cure-i1,2023-24,51.7,Leominster - Bennett,01530003, 10.1, 2.2, 31.5, 48.3, 0.0, 0.0, 7.9, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,56.3,Leominster - Center For Technical Education Innovation,01530605, 9.0, 2.7, 41.0, 43.7, 0.0, 0.1, 3.3, 63.7, 36.2, 0.1 +NA,NA,a-cure-i1,2023-24,50.8,Leominster - Fall Brook,01530007, 8.7, 2.7, 34.3, 49.2, 0.0, 0.0, 5.1, 54.9, 44.9, 0.2 +NA,NA,a-cure-i1,2023-24,64.5,Leominster - Frances Drake School,01530010, 9.9, 3.7, 46.6, 35.5, 0.0, 0.0, 4.3, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,54.8,Leominster - Johnny Appleseed,01530025, 10.8, 3.2, 36.0, 45.2, 0.0, 0.0, 4.7, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,43.1,Leominster - Leominster Center for Excellence,01530515, 4.6, 0.0, 35.4, 56.9, 0.0, 0.0, 3.1, 43.1, 49.2, 7.7 +NA,NA,a-cure-i1,2023-24,57.9,Leominster - Leominster High School,01530505, 9.1, 3.9, 41.0, 42.1, 0.2, 0.0, 3.6, 44.0, 55.5, 0.5 +NA,NA,a-cure-i1,2023-24,81.2,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 6.3, 0.0, 62.5, 18.8, 0.0, 0.0, 12.5, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,70.0,Leominster - Lincoln School,01530005, 7.5, 5.0, 47.5, 30.0, 0.0, 0.0, 10.0, 72.5, 27.5, 0.0 +NA,NA,a-cure-i1,2023-24,66.2,Leominster - Northwest,01530030, 9.1, 3.6, 49.6, 33.8, 0.0, 0.0, 3.9, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,69.1,Leominster - Priest Street,01530040, 16.5, 5.0, 40.3, 30.9, 0.7, 0.0, 6.5, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,57.3,Leominster - Samoset School,01530045, 8.8, 2.8, 40.2, 42.7, 0.0, 0.0, 5.6, 58.3, 41.7, 0.0 +NA,NA,a-cure-i1,2023-24,64.0,Leominster - Sky View Middle School,01530320, 10.0, 2.2, 46.5, 36.0, 0.2, 0.0, 5.1, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,14.799999999999997,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 2.8, 85.2, 0.0, 0.0, 11.3, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,63.6,Lexington - Bowman,01550008, 3.7, 43.7, 5.1, 36.4, 0.0, 0.0, 11.0, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,74.8,Lexington - Bridge,01550006, 5.8, 49.3, 9.0, 25.2, 0.0, 0.0, 10.7, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,57.3,Lexington - Fiske,01550015, 3.6, 39.4, 5.4, 42.7, 0.3, 0.0, 8.7, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,66.7,Lexington - Harrington,01550030, 7.7, 46.3, 4.8, 33.3, 0.0, 0.0, 7.9, 44.4, 55.6, 0.0 +NA,NA,a-cure-i1,2023-24,59.4,Lexington - Jonas Clarke Middle,01550305, 4.6, 42.3, 5.6, 40.6, 0.0, 0.0, 6.9, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,68.2,Lexington - Joseph Estabrook,01550010, 4.3, 47.3, 6.0, 31.8, 0.0, 0.0, 10.6, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,73.7,Lexington - Lexington Children's Place,01550001, 5.3, 53.9, 11.8, 26.3, 0.0, 0.0, 2.6, 57.9, 42.1, 0.0 +NA,NA,a-cure-i1,2023-24,61.6,Lexington - Lexington High,01550505, 4.3, 46.1, 4.1, 38.4, 0.0, 0.0, 7.0, 49.5, 50.3, 0.2 +NA,NA,a-cure-i1,2023-24,69.3,Lexington - Maria Hastings,01550035, 3.0, 49.4, 8.1, 30.7, 0.0, 0.0, 8.7, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,62.5,Lexington - Wm Diamond Middle,01550310, 3.3, 44.2, 6.0, 37.5, 0.0, 0.1, 8.7, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,96.7,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 12.1, 1.0, 80.3, 3.3, 0.2, 0.0, 3.1, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,46.6,Lincoln - Hanscom School,01570305, 5.1, 4.0, 24.9, 53.4, 0.4, 0.2, 11.9, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,43.8,Lincoln - Lincoln School,01570025, 9.3, 8.9, 12.4, 56.2, 0.0, 0.0, 13.2, 49.7, 49.9, 0.4 +NA,NA,a-cure-i1,2023-24,29.5,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.3, 9.0, 6.8, 70.5, 0.1, 0.2, 8.1, 50.5, 49.0, 0.5 +NA,NA,a-cure-i1,2023-24,23.400000000000006,Littleton - Littleton High School,01580505, 2.3, 14.0, 4.3, 76.6, 0.2, 0.2, 2.5, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Littleton - Littleton Middle School,01580305, 0.5, 13.9, 5.2, 78.4, 0.0, 0.5, 1.5, 45.4, 54.1, 0.5 +NA,NA,a-cure-i1,2023-24,23.599999999999994,Littleton - Russell St Elementary,01580015, 0.8, 18.0, 2.0, 76.4, 0.0, 0.8, 2.0, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,25.700000000000003,Littleton - Shaker Lane Elementary,01580005, 1.1, 15.6, 4.5, 74.3, 0.0, 0.2, 4.3, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,29.299999999999997,Longmeadow - Blueberry Hill,01590005, 2.7, 14.1, 5.9, 70.7, 0.0, 0.0, 6.7, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,20.0,Longmeadow - Center,01590010, 3.9, 4.2, 8.3, 80.0, 0.0, 0.0, 3.7, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,28.099999999999994,Longmeadow - Glenbrook Middle,01590017, 5.6, 9.7, 6.9, 71.9, 0.0, 0.0, 5.9, 54.7, 45.3, 0.0 +NA,NA,a-cure-i1,2023-24,27.599999999999994,Longmeadow - Longmeadow High,01590505, 3.5, 11.3, 8.8, 72.4, 0.0, 0.3, 3.6, 51.0, 48.4, 0.5 +NA,NA,a-cure-i1,2023-24,28.700000000000003,Longmeadow - Williams Middle,01590305, 2.3, 11.9, 8.1, 71.3, 0.0, 0.0, 6.5, 52.9, 46.8, 0.3 +NA,NA,a-cure-i1,2023-24,27.0,Longmeadow - Wolf Swamp Road,01590025, 4.2, 10.9, 8.0, 73.0, 0.0, 0.0, 3.8, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,88.1,Lowell - Abraham Lincoln,01600020, 5.1, 39.9, 37.8, 11.9, 0.2, 0.2, 4.9, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,81.2,Lowell - B.F. Butler Middle School,01600310, 7.9, 30.7, 39.0, 18.8, 0.0, 0.0, 3.6, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,86.5,Lowell - Bartlett Community Partnership,01600090, 10.4, 34.0, 37.9, 13.5, 0.4, 0.0, 3.8, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,87.5,Lowell - Cardinal O'Connell Early Learning Center,01600001, 18.3, 22.1, 40.4, 12.5, 0.0, 0.0, 6.7, 63.5, 36.5, 0.0 +NA,NA,a-cure-i1,2023-24,88.3,Lowell - Charles W Morey,01600030, 5.6, 56.9, 20.3, 11.7, 0.6, 0.2, 4.6, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,86.2,Lowell - Charlotte M Murkland Elementary,01600080, 9.2, 24.1, 48.2, 13.8, 0.5, 0.5, 3.9, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,73.7,Lowell - Dr An Wang School,01600345, 7.6, 22.5, 39.4, 26.3, 0.0, 0.0, 4.3, 52.9, 47.0, 0.2 +NA,NA,a-cure-i1,2023-24,77.2,Lowell - Dr Gertrude Bailey,01600002, 5.9, 38.1, 27.5, 22.8, 0.0, 0.0, 5.6, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,69.0,Lowell - Dr. Janice Adie Day School,01600605, 12.1, 13.8, 36.2, 31.0, 1.7, 0.0, 5.2, 75.9, 24.1, 0.0 +NA,NA,a-cure-i1,2023-24,83.4,Lowell - Greenhalge,01600015, 12.0, 10.1, 57.8, 16.6, 0.0, 0.0, 3.5, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,76.9,Lowell - Henry J Robinson Middle,01600330, 8.3, 9.8, 55.2, 23.1, 0.3, 0.0, 3.2, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,78.7,Lowell - James S Daley Middle School,01600315, 5.1, 50.6, 18.7, 21.3, 0.0, 0.0, 4.3, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,70.3,Lowell - James Sullivan Middle School,01600340, 5.3, 12.6, 49.1, 29.7, 0.2, 0.2, 2.9, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,80.6,Lowell - John J Shaughnessy,01600050, 5.8, 25.2, 44.3, 19.4, 0.2, 0.0, 5.1, 55.4, 44.6, 0.0 +NA,NA,a-cure-i1,2023-24,77.6,Lowell - Joseph McAvinnue,01600010, 9.1, 15.2, 48.5, 22.4, 0.0, 0.2, 4.7, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,86.6,Lowell - Kathryn P. Stoklosa Middle School,01600360, 5.0, 41.6, 37.0, 13.4, 0.3, 0.3, 2.4, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,75.0,Lowell - Laura Lee Therapeutic Day School,01600085, 6.3, 6.3, 43.8, 25.0, 0.0, 0.0, 18.8, 87.5, 12.5, 0.0 +NA,NA,a-cure-i1,2023-24,66.7,Lowell - Leblanc Therapeutic Day School,01600320, 11.1, 2.8, 41.7, 33.3, 0.0, 0.0, 11.1, 72.2, 27.8, 0.0 +NA,NA,a-cure-i1,2023-24,81.5,Lowell - Lowell High,01600505, 8.6, 28.5, 40.5, 18.5, 0.1, 0.0, 3.8, 53.6, 46.2, 0.1 +NA,NA,a-cure-i1,2023-24,71.8,Lowell - Moody Elementary,01600027, 7.3, 8.5, 52.4, 28.2, 0.4, 0.8, 2.4, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,69.9,Lowell - Pawtucketville Memorial,01600036, 8.2, 25.0, 31.2, 30.1, 0.0, 0.0, 5.5, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,56.8,Lowell - Peter W Reilly,01600040, 4.8, 9.8, 35.8, 43.2, 0.2, 0.0, 6.3, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,64.7,Lowell - Pyne Arts,01600018, 4.5, 16.4, 39.2, 35.3, 0.0, 0.0, 4.5, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,81.4,Lowell - Rogers STEM Academy,01600005, 8.0, 19.6, 49.5, 18.6, 0.6, 0.1, 3.5, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,73.7,Lowell - S Christa McAuliffe Elementary,01600075, 7.9, 9.3, 53.3, 26.3, 0.2, 0.0, 2.9, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,77.2,Lowell - The Career Academy,01600515, 7.6, 14.1, 50.0, 22.8, 0.0, 0.0, 5.4, 62.0, 38.0, 0.0 +NA,NA,a-cure-i1,2023-24,82.2,Lowell - Washington,01600055, 5.4, 40.1, 27.3, 17.8, 0.0, 0.4, 9.1, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,93.1,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.3, 16.5, 47.1, 6.9, 0.1, 0.0, 4.0, 48.5, 51.4, 0.1 +NA,NA,a-cure-i1,2023-24,71.7,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 2.8, 7.5, 56.6, 28.3, 0.0, 0.0, 4.7, 39.6, 59.4, 0.9 +NA,NA,a-cure-i1,2023-24,25.099999999999994,Ludlow - East Street Elementary School,01610010, 1.7, 3.3, 16.2, 74.9, 0.0, 0.0, 3.9, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,25.099999999999994,Ludlow - Harris Brook Elementary School,01610665, 2.1, 2.3, 16.5, 74.9, 0.0, 0.0, 4.2, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,17.5,Ludlow - Ludlow Senior High,01610505, 1.6, 0.5, 13.2, 82.5, 0.0, 0.0, 2.1, 50.8, 49.1, 0.1 +NA,NA,a-cure-i1,2023-24,24.799999999999997,Ludlow - Paul R Baird Middle,01610305, 2.1, 1.3, 19.4, 75.2, 0.0, 0.0, 2.1, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.299999999999997,Lunenburg - Advanced Community Experience Program,01620605, 14.3, 0.0, 0.0, 85.7, 0.0, 0.0, 0.0, 42.9, 57.1, 0.0 +NA,NA,a-cure-i1,2023-24,17.799999999999997,Lunenburg - Lunenburg High,01620505, 2.0, 1.1, 9.1, 82.2, 0.4, 0.7, 4.5, 50.8, 49.0, 0.2 +NA,NA,a-cure-i1,2023-24,22.900000000000006,Lunenburg - Lunenburg Middle School,01620305, 3.3, 2.8, 12.9, 77.1, 0.0, 0.0, 3.9, 50.1, 49.6, 0.3 +NA,NA,a-cure-i1,2023-24,24.299999999999997,Lunenburg - Lunenburg Primary School,01620010, 4.6, 0.8, 14.3, 75.7, 0.0, 0.5, 4.1, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,15.900000000000006,Lunenburg - Turkey Hill Elementary School,01620025, 4.3, 0.5, 8.6, 84.1, 0.0, 0.3, 2.2, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,92.9,Lynn - A Drewicz Elementary,01630016, 4.1, 6.9, 79.7, 7.1, 0.6, 0.0, 1.6, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,70.6,Lynn - Aborn,01630011, 6.1, 11.0, 47.4, 29.4, 0.4, 0.4, 5.3, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,91.3,Lynn - Breed Middle School,01630405, 7.3, 7.9, 73.3, 8.7, 0.1, 0.0, 2.7, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,91.2,Lynn - Brickett Elementary,01630020, 7.6, 8.5, 70.3, 8.8, 0.6, 0.0, 4.1, 55.5, 44.5, 0.0 +NA,NA,a-cure-i1,2023-24,67.5,Lynn - Capt William G Shoemaker,01630090, 12.4, 7.1, 42.9, 32.5, 0.3, 0.0, 4.7, 61.2, 38.8, 0.0 +NA,NA,a-cure-i1,2023-24,88.3,Lynn - Classical High,01630505, 7.2, 7.3, 71.2, 11.7, 0.2, 0.0, 2.2, 54.8, 45.0, 0.1 +NA,NA,a-cure-i1,2023-24,97.4,Lynn - Cobbet Elementary,01630035, 7.2, 3.0, 85.1, 2.6, 0.5, 0.0, 1.6, 55.5, 44.5, 0.0 +NA,NA,a-cure-i1,2023-24,90.9,Lynn - E J Harrington,01630045, 8.2, 3.6, 76.7, 9.1, 0.3, 0.0, 2.1, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,74.2,Lynn - Edward A Sisson,01630095, 6.3, 9.6, 54.3, 25.8, 0.5, 0.0, 3.5, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,78.4,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 4.5, 1.1, 68.2, 21.6, 2.3, 0.0, 2.3, 59.1, 38.6, 2.3 +NA,NA,a-cure-i1,2023-24,94.3,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.6, 4.5, 78.3, 5.7, 0.0, 0.0, 3.8, 49.0, 50.3, 0.6 +NA,NA,a-cure-i1,2023-24,92.5,Lynn - Hood,01630055, 6.7, 8.4, 75.2, 7.5, 0.6, 0.0, 1.6, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,94.8,Lynn - Ingalls,01630060, 7.4, 4.9, 81.1, 5.2, 0.6, 0.0, 0.9, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,87.6,Lynn - Julia F Callahan,01630030, 10.4, 7.9, 66.2, 12.4, 0.0, 0.0, 3.0, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,81.5,Lynn - Lincoln-Thomson,01630070, 4.2, 10.2, 62.0, 18.5, 0.9, 0.0, 4.2, 46.8, 53.2, 0.0 +NA,NA,a-cure-i1,2023-24,93.1,Lynn - Lynn English High,01630510, 8.7, 6.9, 74.5, 6.9, 0.5, 0.0, 2.5, 51.9, 47.9, 0.2 +NA,NA,a-cure-i1,2023-24,88.6,Lynn - Lynn Vocational Technical Institute,01630605, 5.7, 4.0, 75.8, 11.4, 0.4, 0.0, 2.6, 52.1, 47.8, 0.1 +NA,NA,a-cure-i1,2023-24,57.8,Lynn - Lynn Woods,01630075, 1.9, 5.0, 47.2, 42.2, 0.6, 0.0, 3.1, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,79.0,Lynn - Pickering Middle,01630420, 4.8, 11.8, 56.7, 21.0, 0.7, 0.0, 5.0, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,94.5,Lynn - Robert L Ford,01630050, 8.6, 3.6, 80.1, 5.5, 0.5, 0.0, 1.7, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,83.4,Lynn - Sewell-Anderson,01630085, 9.2, 4.8, 63.1, 16.6, 1.5, 0.0, 4.8, 42.4, 57.6, 0.0 +NA,NA,a-cure-i1,2023-24,91.5,Lynn - Thurgood Marshall Mid,01630305, 8.4, 6.7, 73.7, 8.5, 0.5, 0.0, 2.2, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,96.8,Lynn - Tracy,01630100, 3.4, 3.2, 88.9, 3.2, 0.5, 0.0, 0.8, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,81.5,Lynn - Virginia Barton Early Childhood Center,01630004, 14.8, 8.6, 55.6, 18.5, 0.0, 0.0, 2.5, 70.4, 29.6, 0.0 +NA,NA,a-cure-i1,2023-24,94.6,Lynn - Washington Elementary School,01630005, 16.1, 3.4, 73.4, 5.4, 0.0, 0.0, 1.8, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,87.5,Lynn - William R Fallon,01630080, 20.8, 4.2, 45.8, 12.5, 0.0, 0.0, 16.7, 79.2, 20.8, 0.0 +NA,NA,a-cure-i1,2023-24,96.6,Lynn - Wm P Connery,01630040, 5.6, 6.3, 82.5, 3.4, 0.4, 0.0, 1.8, 46.0, 54.0, 0.0 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Lynnfield - Huckleberry Hill,01640010, 3.1, 11.1, 7.6, 72.2, 0.0, 0.0, 6.0, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,21.900000000000006,Lynnfield - Lynnfield High,01640505, 1.8, 8.2, 9.1, 78.1, 0.0, 0.0, 2.8, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,20.900000000000006,Lynnfield - Lynnfield Middle School,01640405, 2.3, 7.6, 6.6, 79.1, 0.0, 0.0, 4.4, 50.4, 49.5, 0.1 +NA,NA,a-cure-i1,2023-24,23.099999999999994,Lynnfield - Lynnfield Preschool,01640005, 2.6, 5.1, 7.7, 76.9, 0.0, 0.0, 7.7, 61.5, 38.5, 0.0 +NA,NA,a-cure-i1,2023-24,13.400000000000006,Lynnfield - Summer Street,01640020, 1.2, 4.3, 2.9, 86.6, 0.0, 0.0, 5.0, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,69.1,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 4.1, 59.8, 4.1, 30.9, 0.0, 1.0, 0.0, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,74.0,Malden - Beebe,01650003, 12.4, 31.6, 23.5, 26.0, 0.9, 0.2, 5.3, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,79.3,Malden - Ferryway,01650013, 18.3, 19.1, 37.9, 20.7, 0.7, 0.1, 3.2, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,62.9,Malden - Forestdale,01650027, 14.9, 13.3, 25.8, 37.1, 0.2, 0.0, 8.7, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,76.7,Malden - Linden,01650047, 20.4, 25.3, 25.3, 23.3, 0.7, 0.2, 4.7, 52.4, 47.5, 0.1 +NA,NA,a-cure-i1,2023-24,65.3,Malden - Malden Early Learning Center,01650049, 17.9, 33.9, 11.6, 34.7, 0.0, 0.0, 2.0, 60.6, 39.4, 0.0 +NA,NA,a-cure-i1,2023-24,77.0,Malden - Malden High,01650505, 21.2, 20.4, 31.3, 23.0, 0.2, 0.0, 3.9, 49.9, 50.0, 0.1 +NA,NA,a-cure-i1,2023-24,81.8,Malden - Salemwood,01650057, 21.8, 13.0, 43.4, 18.2, 0.5, 0.0, 3.1, 50.1, 49.8, 0.1 +NA,NA,a-cure-i1,2023-24,4.799999999999997,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 3.9, 95.2, 0.0, 0.0, 0.9, 45.4, 54.6, 0.0 +NA,NA,a-cure-i1,2023-24,4.700000000000003,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.0, 2.5, 95.3, 0.0, 0.0, 1.3, 50.3, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,3.5999999999999943,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.7, 2.2, 96.4, 0.0, 0.0, 0.7, 46.7, 53.3, 0.0 +NA,NA,a-cure-i1,2023-24,6.400000000000006,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.7, 1.7, 93.6, 0.0, 0.0, 3.0, 45.8, 54.2, 0.0 +NA,NA,a-cure-i1,2023-24,23.900000000000006,Mansfield - Everett W Robinson,01670007, 4.2, 7.6, 7.2, 76.1, 0.1, 0.0, 4.8, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,27.599999999999994,Mansfield - Harold L Qualters Middle,01670035, 5.2, 9.5, 6.6, 72.4, 0.1, 0.0, 6.1, 52.8, 47.1, 0.1 +NA,NA,a-cure-i1,2023-24,25.700000000000003,Mansfield - Jordan/Jackson Elementary,01670014, 4.7, 7.7, 7.9, 74.3, 0.3, 0.1, 5.0, 50.0, 49.9, 0.1 +NA,NA,a-cure-i1,2023-24,23.400000000000006,Mansfield - Mansfield High,01670505, 6.1, 8.2, 6.0, 76.6, 0.1, 0.0, 3.0, 54.0, 45.8, 0.2 +NA,NA,a-cure-i1,2023-24,34.0,Mansfield - Roland Green School,01670003, 7.0, 10.0, 9.0, 66.0, 0.0, 0.0, 8.0, 61.0, 39.0, 0.0 +NA,NA,a-cure-i1,2023-24,25.299999999999997,Map Academy Charter School (District) - Map Academy Charter School,35170505, 4.0, 0.7, 10.5, 74.7, 1.1, 0.4, 8.7, 53.8, 42.6, 3.6 +NA,NA,a-cure-i1,2023-24,17.400000000000006,Marblehead - Glover,01680020, 1.6, 1.2, 8.7, 82.6, 0.0, 0.0, 5.9, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,16.5,Marblehead - Lucretia and Joseph Brown School,01680030, 0.2, 1.1, 9.5, 83.5, 0.0, 0.0, 5.7, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,16.5,Marblehead - Marblehead High,01680505, 3.4, 1.3, 8.6, 83.5, 0.1, 0.0, 3.1, 50.9, 48.2, 0.9 +NA,NA,a-cure-i1,2023-24,16.700000000000003,Marblehead - Marblehead Veterans Middle School,01680300, 2.7, 1.4, 8.1, 83.3, 0.0, 0.0, 4.5, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,16.900000000000006,Marblehead - Village School,01680016, 3.5, 1.7, 7.3, 83.1, 0.0, 0.0, 4.5, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,32.0,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 6.9, 2.3, 16.6, 68.0, 0.0, 0.6, 5.7, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,18.299999999999997,Marion - Sippican,01690005, 3.6, 1.8, 5.7, 81.7, 0.3, 0.0, 6.9, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,73.0,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 4.8, 1.2, 64.7, 27.0, 0.0, 0.0, 2.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,62.3,Marlborough - Charles Jaworek School,01700030, 4.6, 1.2, 52.1, 37.7, 0.0, 0.0, 4.4, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,47.6,Marlborough - Early Childhood Center,01700006, 7.8, 2.2, 27.7, 52.4, 0.0, 0.0, 10.0, 55.8, 43.7, 0.4 +NA,NA,a-cure-i1,2023-24,58.2,Marlborough - Francis J Kane,01700008, 6.3, 0.4, 46.5, 41.8, 0.2, 0.0, 4.9, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,64.8,Marlborough - Goodnow Brothers Elementary School,01700020, 4.4, 0.5, 56.4, 35.2, 0.0, 0.0, 3.5, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,72.6,Marlborough - Marlborough High,01700505, 5.0, 1.0, 62.8, 27.4, 0.0, 0.0, 3.8, 54.1, 45.7, 0.2 +NA,NA,a-cure-i1,2023-24,74.6,Marlborough - Richer,01700025, 3.8, 1.6, 62.5, 25.4, 0.0, 0.0, 6.7, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Marshfield - Daniel Webster,01710015, 3.0, 1.1, 3.3, 89.3, 0.0, 1.8, 1.5, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,5.299999999999997,Marshfield - Eames Way School,01710005, 0.0, 0.0, 3.5, 94.7, 0.0, 0.0, 1.8, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,10.400000000000006,Marshfield - Furnace Brook Middle,01710310, 1.2, 1.3, 4.5, 89.6, 0.4, 0.4, 2.7, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,6.200000000000003,Marshfield - Gov Edward Winslow,01710020, 0.3, 0.6, 3.4, 93.8, 0.0, 0.0, 2.0, 58.6, 41.4, 0.0 +NA,NA,a-cure-i1,2023-24,9.099999999999994,Marshfield - Marshfield High,01710505, 1.2, 1.0, 4.5, 90.9, 0.3, 0.1, 2.0, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,11.700000000000003,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 5.0, 0.0, 2.5, 88.3, 0.0, 0.0, 4.2, 59.2, 40.8, 0.0 +NA,NA,a-cure-i1,2023-24,12.400000000000006,Marshfield - Martinson Elementary,01710025, 3.8, 0.9, 4.6, 87.6, 0.0, 0.0, 3.1, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,4.799999999999997,Marshfield - South River,01710010, 1.2, 1.2, 0.4, 95.2, 0.0, 0.0, 2.0, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,36.3,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.0, 0.4, 26.1, 63.7, 1.5, 0.0, 4.3, 49.0, 50.8, 0.1 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 3.4, 0.6, 8.0, 77.7, 1.1, 0.0, 9.1, 39.4, 60.6, 0.0 +NA,NA,a-cure-i1,2023-24,98.9,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 28.4, 1.7, 65.7, 1.1, 1.1, 0.0, 2.0, 48.3, 51.7, 0.0 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Masconomet - Masconomet Regional High School,07050505, 0.8, 3.5, 4.1, 88.9, 0.1, 0.1, 2.5, 46.6, 53.3, 0.1 +NA,NA,a-cure-i1,2023-24,12.099999999999994,Masconomet - Masconomet Regional Middle School,07050405, 0.9, 2.7, 5.0, 87.9, 0.2, 0.0, 3.4, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,30.599999999999994,Mashpee - Kenneth Coombs School,01720005, 2.2, 0.7, 11.4, 69.4, 3.2, 0.0, 12.9, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,30.599999999999994,Mashpee - Mashpee Middle-High School,01720505, 4.7, 1.8, 9.2, 69.4, 6.0, 0.0, 9.0, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,36.0,Mashpee - Quashnet School,01720035, 4.4, 2.2, 10.0, 64.0, 4.2, 0.5, 14.7, 56.1, 43.9, 0.0 +NA,NA,a-cure-i1,2023-24,98.3,Match Charter Public School (District) - Match Charter Public School,04690505, 48.7, 0.3, 47.3, 1.7, 0.2, 0.2, 1.7, 50.4, 49.5, 0.1 +NA,NA,a-cure-i1,2023-24,10.900000000000006,Mattapoisett - Center,01730005, 1.3, 0.9, 5.7, 89.1, 0.0, 0.0, 3.0, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,15.900000000000006,Mattapoisett - Old Hammondtown,01730010, 0.6, 1.2, 7.1, 84.1, 0.0, 0.0, 7.1, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,23.299999999999997,Maynard - Fowler School,01740305, 2.5, 0.8, 15.8, 76.7, 0.0, 0.0, 4.2, 51.1, 48.5, 0.4 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Maynard - Green Meadow,01740010, 4.0, 2.8, 15.0, 72.2, 0.5, 0.0, 5.6, 49.5, 50.2, 0.2 +NA,NA,a-cure-i1,2023-24,22.900000000000006,Maynard - Maynard High,01740505, 2.7, 2.4, 14.5, 77.1, 0.0, 0.0, 3.4, 46.1, 52.5, 1.3 +NA,NA,a-cure-i1,2023-24,11.900000000000006,Medfield - Dale Street,01750005, 1.0, 4.2, 3.2, 88.1, 0.2, 0.0, 3.2, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.700000000000003,Medfield - Medfield Senior High,01750505, 1.1, 3.5, 6.1, 84.3, 0.6, 0.0, 4.4, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,14.099999999999994,Medfield - Memorial School,01750003, 2.2, 3.4, 4.4, 85.9, 0.0, 0.0, 4.1, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,13.299999999999997,Medfield - Ralph Wheelock School,01750007, 2.0, 3.3, 4.5, 86.7, 0.3, 0.0, 3.3, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,16.599999999999994,Medfield - Thomas Blake Middle,01750305, 2.6, 4.6, 5.6, 83.4, 0.0, 0.0, 3.8, 50.9, 48.9, 0.2 +NA,NA,a-cure-i1,2023-24,23.799999999999997,Medford - Brooks School,01760130, 4.5, 4.7, 6.7, 76.2, 0.4, 0.0, 7.6, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,46.7,Medford - Curtis-Tufts,01760510, 13.3, 0.0, 26.7, 53.3, 0.0, 0.0, 6.7, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,60.5,Medford - John J McGlynn Elementary School,01760068, 13.4, 16.8, 26.9, 39.5, 0.4, 0.0, 3.0, 51.1, 48.7, 0.2 +NA,NA,a-cure-i1,2023-24,45.8,Medford - John J. McGlynn Middle School,01760320, 13.0, 10.0, 16.9, 54.2, 0.5, 0.0, 5.6, 54.6, 44.9, 0.5 +NA,NA,a-cure-i1,2023-24,37.4,Medford - Madeleine Dugger Andrews,01760315, 10.2, 7.5, 11.7, 62.6, 1.3, 0.2, 6.4, 48.5, 51.1, 0.4 +NA,NA,a-cure-i1,2023-24,44.9,Medford - Medford High,01760505, 14.3, 9.5, 16.0, 55.1, 0.3, 0.1, 4.8, 53.1, 46.1, 0.8 +NA,NA,a-cure-i1,2023-24,38.4,Medford - Milton Fuller Roberts,01760150, 7.4, 10.5, 12.4, 61.6, 0.7, 0.0, 7.4, 48.5, 51.3, 0.2 +NA,NA,a-cure-i1,2023-24,41.0,Medford - Missituk Elementary School,01760140, 8.9, 7.6, 16.7, 59.0, 0.7, 0.0, 7.1, 49.7, 49.7, 0.7 +NA,NA,a-cure-i1,2023-24,21.200000000000003,Medway - Burke/Memorial Elementary School,01770015, 1.8, 5.7, 10.0, 78.8, 0.0, 0.0, 3.7, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,23.900000000000006,Medway - John D Mc Govern Elementary,01770013, 2.1, 4.5, 10.9, 76.1, 0.3, 0.0, 6.1, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,19.599999999999994,Medway - Medway High,01770505, 2.5, 4.0, 9.2, 80.4, 0.3, 0.3, 3.3, 48.4, 50.9, 0.7 +NA,NA,a-cure-i1,2023-24,16.5,Medway - Medway Middle,01770305, 2.6, 4.1, 7.7, 83.5, 0.2, 0.2, 2.0, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,23.299999999999997,Melrose - Early Childhood Center,01780003, 2.3, 10.9, 4.3, 76.7, 0.8, 0.0, 5.0, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,26.099999999999994,Melrose - Herbert Clark Hoover,01780017, 6.4, 7.8, 8.1, 73.9, 0.0, 0.0, 3.9, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,15.400000000000006,Melrose - Horace Mann,01780025, 3.4, 1.1, 5.6, 84.6, 0.0, 0.0, 5.3, 50.8, 48.9, 0.4 +NA,NA,a-cure-i1,2023-24,40.5,Melrose - Lincoln,01780020, 7.3, 15.5, 8.0, 59.5, 0.2, 0.0, 9.5, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,27.200000000000003,Melrose - Melrose High,01780505, 9.4, 6.3, 6.9, 72.8, 0.1, 0.1, 4.5, 47.7, 51.9, 0.4 +NA,NA,a-cure-i1,2023-24,25.599999999999994,Melrose - Melrose Middle,01780305, 5.5, 5.8, 7.1, 74.4, 0.0, 0.0, 7.1, 50.1, 49.7, 0.2 +NA,NA,a-cure-i1,2023-24,17.599999999999994,Melrose - Roosevelt,01780035, 2.7, 4.2, 3.7, 82.4, 0.2, 0.0, 6.7, 50.1, 49.1, 0.7 +NA,NA,a-cure-i1,2023-24,17.0,Melrose - Winthrop,01780050, 3.0, 3.7, 4.2, 83.0, 0.0, 0.0, 6.0, 49.1, 50.1, 0.7 +NA,NA,a-cure-i1,2023-24,10.599999999999994,Mendon-Upton - Henry P Clough,07100179, 0.8, 1.3, 7.7, 89.4, 0.3, 0.0, 0.5, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,17.400000000000006,Mendon-Upton - Memorial School,07100001, 1.8, 4.6, 8.4, 82.6, 0.0, 0.0, 2.6, 46.5, 53.5, 0.0 +NA,NA,a-cure-i1,2023-24,12.299999999999997,Mendon-Upton - Miscoe Hill School,07100015, 1.1, 3.1, 6.0, 87.7, 0.0, 0.0, 2.0, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,13.400000000000006,Mendon-Upton - Nipmuc Regional High,07100510, 0.9, 2.0, 7.7, 86.6, 0.0, 0.0, 2.9, 47.9, 51.7, 0.4 +NA,NA,a-cure-i1,2023-24,63.6,Methuen - Comprehensive Grammar School,01810050, 8.9, 3.8, 49.0, 36.4, 0.0, 0.0, 1.9, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,67.9,Methuen - Donald P Timony Grammar,01810060, 7.0, 2.9, 56.0, 32.1, 0.2, 0.1, 1.8, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,76.2,Methuen - Early Childhood Center,01810001, 9.1, 3.5, 58.7, 23.8, 0.0, 0.0, 4.9, 67.1, 32.9, 0.0 +NA,NA,a-cure-i1,2023-24,54.6,Methuen - Marsh Grammar School,01810030, 6.0, 2.5, 42.3, 45.4, 0.1, 0.1, 3.6, 55.9, 44.1, 0.0 +NA,NA,a-cure-i1,2023-24,62.3,Methuen - Methuen High,01810505, 6.3, 4.0, 50.2, 37.7, 0.0, 0.0, 1.9, 52.6, 47.2, 0.2 +NA,NA,a-cure-i1,2023-24,73.9,Methuen - Tenney Grammar School,01810055, 4.3, 2.4, 64.8, 26.1, 0.0, 0.1, 2.4, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,16.599999999999994,Middleborough - Henry B. Burkland Elementary School,01820008, 3.4, 1.4, 5.3, 83.4, 0.5, 0.5, 5.5, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Middleborough - John T. Nichols Middle,01820305, 4.2, 1.6, 3.9, 82.8, 0.3, 0.0, 7.2, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,17.5,Middleborough - Mary K. Goode Elementary School,01820010, 3.6, 1.8, 5.4, 82.5, 0.7, 0.0, 6.1, 48.3, 51.6, 0.2 +NA,NA,a-cure-i1,2023-24,21.700000000000003,Middleborough - Memorial Early Childhood Center,01820011, 6.4, 0.4, 8.6, 78.3, 0.4, 0.0, 6.0, 53.9, 45.3, 0.7 +NA,NA,a-cure-i1,2023-24,16.599999999999994,Middleborough - Middleborough High,01820505, 5.3, 1.0, 3.5, 83.4, 0.8, 0.1, 5.8, 49.5, 50.1, 0.5 +NA,NA,a-cure-i1,2023-24,13.299999999999997,Middleton - Fuller Meadow,01840003, 1.1, 2.1, 6.0, 86.7, 0.4, 0.4, 3.5, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,16.5,Middleton - Howe-Manning,01840005, 1.1, 5.5, 5.3, 83.5, 1.4, 0.0, 3.2, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,51.3,Milford - Brookside,01850065, 3.5, 0.9, 42.7, 48.7, 1.2, 0.0, 3.0, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,47.7,Milford - Memorial,01850010, 3.2, 2.0, 38.7, 52.3, 1.1, 0.0, 2.7, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,47.3,Milford - Milford High,01850505, 3.9, 1.5, 35.6, 52.7, 2.5, 0.1, 3.5, 54.7, 45.3, 0.1 +NA,NA,a-cure-i1,2023-24,51.3,Milford - Shining Star Early Childhood Center,01850075, 7.1, 5.8, 31.8, 48.7, 2.6, 0.6, 3.2, 60.4, 39.6, 0.0 +NA,NA,a-cure-i1,2023-24,43.6,Milford - Stacy Middle,01850305, 4.0, 1.1, 34.4, 56.4, 0.7, 0.3, 3.0, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,44.4,Milford - Woodland,01850090, 3.9, 1.8, 35.1, 55.6, 1.3, 0.0, 2.2, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,27.5,Millbury - Elmwood Street,01860017, 6.7, 5.4, 9.7, 72.5, 0.2, 0.0, 5.4, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,28.400000000000006,Millbury - Millbury Junior/Senior High,01860505, 4.7, 4.4, 12.6, 71.6, 0.0, 0.1, 6.5, 54.6, 44.4, 1.0 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Millbury - Raymond E. Shaw Elementary,01860025, 4.3, 4.1, 8.4, 77.7, 0.0, 0.0, 5.6, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,23.700000000000003,Millis - Clyde F Brown,01870005, 1.7, 3.5, 12.4, 76.3, 0.5, 0.0, 5.5, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,19.599999999999994,Millis - Millis High School,01870505, 0.6, 3.2, 10.4, 80.4, 0.3, 0.0, 5.0, 49.2, 50.5, 0.3 +NA,NA,a-cure-i1,2023-24,19.400000000000006,Millis - Millis Middle,01870020, 1.1, 2.2, 10.8, 80.6, 0.4, 0.4, 4.5, 46.6, 53.4, 0.0 +NA,NA,a-cure-i1,2023-24,16.700000000000003,Millis - TIES,01870515, 16.7, 0.0, 0.0, 83.3, 0.0, 0.0, 0.0, 16.7, 83.3, 0.0 +NA,NA,a-cure-i1,2023-24,35.5,Milton - Charles S Pierce Middle,01890410, 14.1, 9.3, 5.9, 64.5, 0.1, 0.0, 6.1, 48.5, 51.4, 0.1 +NA,NA,a-cure-i1,2023-24,25.799999999999997,Milton - Collicot,01890005, 3.2, 12.6, 3.9, 74.2, 0.0, 0.0, 6.0, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,29.0,Milton - Cunningham School,01890007, 4.4, 10.3, 6.7, 71.0, 0.0, 0.3, 7.2, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,22.0,Milton - Glover,01890010, 5.3, 4.8, 5.6, 78.0, 0.5, 0.0, 5.8, 46.1, 53.9, 0.0 +NA,NA,a-cure-i1,2023-24,33.599999999999994,Milton - Milton High,01890505, 14.7, 7.1, 7.4, 66.4, 0.2, 0.0, 4.3, 52.3, 47.1, 0.6 +NA,NA,a-cure-i1,2023-24,65.3,Milton - Tucker,01890020, 33.4, 8.2, 10.9, 34.7, 0.0, 0.0, 12.7, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,27.400000000000006,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 5.0, 4.0, 11.7, 72.6, 0.1, 0.0, 6.6, 62.7, 35.1, 2.2 +NA,NA,a-cure-i1,2023-24,12.799999999999997,Mohawk Trail - Buckland-Shelburne Regional,07170005, 1.1, 0.4, 6.8, 87.2, 0.0, 0.0, 4.5, 44.7, 54.9, 0.4 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Mohawk Trail - Colrain Central,07170010, 2.9, 0.0, 5.8, 89.3, 0.0, 0.0, 1.9, 60.2, 39.8, 0.0 +NA,NA,a-cure-i1,2023-24,10.400000000000006,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.7, 0.7, 5.0, 89.6, 0.0, 0.0, 4.0, 47.2, 51.8, 1.0 +NA,NA,a-cure-i1,2023-24,5.099999999999994,Mohawk Trail - Sanderson Academy,07170020, 2.9, 0.0, 1.4, 94.9, 0.7, 0.0, 0.0, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,34.2,Monomoy Regional School District - Chatham Elementary School,07120001, 6.7, 0.7, 16.8, 65.8, 0.7, 0.0, 9.4, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,26.5,Monomoy Regional School District - Harwich Elementary School,07120002, 6.5, 3.2, 9.1, 73.5, 0.2, 0.2, 7.3, 56.7, 43.3, 0.0 +NA,NA,a-cure-i1,2023-24,25.0,Monomoy Regional School District - Monomoy Regional High School,07120515, 8.1, 1.5, 9.9, 75.0, 0.8, 0.1, 4.6, 48.1, 51.3, 0.6 +NA,NA,a-cure-i1,2023-24,24.599999999999994,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 5.8, 1.0, 10.6, 75.4, 0.5, 0.2, 6.5, 53.9, 45.9, 0.2 +NA,NA,a-cure-i1,2023-24,14.5,Monson - Granite Valley School,01910030, 1.0, 1.6, 9.3, 85.5, 0.5, 0.0, 2.1, 47.0, 53.0, 0.0 +NA,NA,a-cure-i1,2023-24,17.299999999999997,Monson - Monson High School,01910505, 1.7, 1.0, 9.5, 82.7, 0.3, 0.3, 4.4, 46.8, 52.5, 0.7 +NA,NA,a-cure-i1,2023-24,8.799999999999997,Monson - Quarry Hill Community School,01910010, 1.6, 0.8, 5.6, 91.2, 0.0, 0.0, 0.8, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,26.700000000000003,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 3.0, 1.3, 17.5, 73.3, 0.0, 0.1, 4.8, 52.2, 46.8, 1.0 +NA,NA,a-cure-i1,2023-24,14.799999999999997,Mount Greylock - Lanesborough Elementary,07150005, 2.2, 3.1, 7.4, 85.2, 0.0, 0.4, 1.7, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.5,Mount Greylock - Mt Greylock Regional High,07150505, 2.7, 1.3, 6.7, 85.5, 0.0, 0.0, 3.8, 49.9, 49.2, 0.9 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Mount Greylock - Williamstown Elementary,07150010, 4.6, 3.7, 7.0, 77.7, 0.0, 0.0, 7.0, 53.4, 45.9, 0.7 +NA,NA,a-cure-i1,2023-24,66.2,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.9, 31.0, 12.6, 33.8, 0.2, 0.1, 4.4, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,15.400000000000006,Nahant - Johnson,01960010, 0.0, 0.7, 11.4, 84.6, 0.0, 0.0, 3.4, 59.1, 40.9, 0.0 +NA,NA,a-cure-i1,2023-24,55.8,Nantucket - Cyrus Peirce,01970010, 8.5, 0.6, 41.1, 44.2, 0.0, 0.0, 5.7, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,64.2,Nantucket - Nantucket Elementary,01970005, 9.3, 1.5, 46.9, 35.8, 0.0, 0.0, 6.5, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,55.8,Nantucket - Nantucket High,01970505, 9.6, 2.4, 40.1, 44.2, 0.0, 0.0, 3.7, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,58.5,Nantucket - Nantucket Intermediate School,01970020, 5.6, 0.9, 47.4, 41.5, 0.0, 0.0, 4.7, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,13.099999999999994,Narragansett - Narragansett Middle,07200305, 0.5, 1.1, 8.5, 86.9, 0.0, 0.0, 3.0, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,16.799999999999997,Narragansett - Narragansett Regional High,07200505, 1.3, 1.1, 9.9, 83.2, 0.2, 0.2, 4.2, 55.4, 43.4, 1.3 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Narragansett - Templeton Elementary School,07200020, 2.1, 0.7, 11.1, 81.9, 0.0, 0.0, 4.2, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,21.400000000000006,Nashoba - Center School,07250020, 0.8, 5.8, 8.0, 78.6, 0.0, 0.0, 6.8, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Nashoba - Florence Sawyer School,07250025, 1.2, 4.3, 5.8, 83.6, 0.0, 0.1, 5.0, 50.9, 49.0, 0.1 +NA,NA,a-cure-i1,2023-24,16.900000000000006,Nashoba - Hale,07250310, 0.8, 4.2, 5.9, 83.1, 0.0, 0.0, 5.9, 46.4, 53.2, 0.4 +NA,NA,a-cure-i1,2023-24,22.099999999999994,Nashoba - Luther Burbank Middle School,07250305, 1.2, 0.8, 14.5, 77.9, 0.4, 0.0, 5.2, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Nashoba - Mary Rowlandson Elementary,07250010, 1.7, 2.6, 14.8, 77.7, 0.0, 0.0, 3.3, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Nashoba - Nashoba Regional,07250505, 2.5, 4.9, 7.7, 81.3, 0.0, 0.1, 3.4, 47.3, 52.2, 0.5 +NA,NA,a-cure-i1,2023-24,21.099999999999994,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.3, 1.2, 13.1, 78.9, 0.1, 0.0, 4.4, 60.3, 37.1, 2.6 +NA,NA,a-cure-i1,2023-24,32.400000000000006,Natick - Bennett-Hemenway,01980005, 1.8, 14.3, 10.0, 67.6, 0.0, 0.0, 6.1, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,46.9,Natick - Brown,01980010, 3.3, 23.4, 14.6, 53.1, 0.0, 0.0, 5.5, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,28.799999999999997,Natick - J F Kennedy Middle School,01980305, 1.9, 11.3, 9.0, 71.2, 0.3, 0.0, 6.3, 53.2, 46.7, 0.1 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Natick - Johnson,01980031, 2.0, 7.8, 9.8, 78.4, 0.0, 0.0, 2.0, 58.8, 41.2, 0.0 +NA,NA,a-cure-i1,2023-24,34.900000000000006,Natick - Lilja Elementary,01980035, 2.2, 11.7, 13.2, 65.1, 0.2, 0.0, 7.6, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,23.400000000000006,Natick - Memorial,01980043, 1.4, 7.2, 6.8, 76.6, 0.0, 0.0, 8.1, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,26.299999999999997,Natick - Natick High,01980505, 3.6, 9.5, 8.0, 73.7, 0.1, 0.1, 5.0, 53.8, 45.4, 0.7 +NA,NA,a-cure-i1,2023-24,29.5,Natick - Wilson Middle,01980310, 4.0, 9.2, 8.2, 70.5, 0.1, 0.0, 8.0, 49.7, 50.1, 0.1 +NA,NA,a-cure-i1,2023-24,16.5,Nauset - Nauset Regional High,06600505, 5.3, 2.0, 5.6, 83.5, 0.1, 0.0, 3.5, 45.8, 53.7, 0.5 +NA,NA,a-cure-i1,2023-24,20.599999999999994,Nauset - Nauset Regional Middle,06600305, 5.2, 1.0, 7.6, 79.4, 0.0, 0.0, 6.8, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,32.2,Needham - Broadmeadow,01990005, 2.1, 14.9, 5.9, 67.8, 0.0, 0.0, 9.2, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,26.799999999999997,Needham - High Rock School,01990410, 3.4, 12.5, 5.4, 73.2, 0.0, 0.0, 5.6, 50.8, 49.0, 0.2 +NA,NA,a-cure-i1,2023-24,43.3,Needham - John Eliot,01990020, 4.7, 19.4, 9.2, 56.7, 0.0, 0.0, 10.0, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Needham - Needham High,01990505, 2.5, 9.0, 7.9, 75.8, 0.0, 0.1, 4.7, 48.1, 51.0, 0.9 +NA,NA,a-cure-i1,2023-24,28.700000000000003,Needham - Newman Elementary,01990050, 3.4, 11.9, 7.2, 71.3, 0.0, 0.1, 6.0, 54.9, 45.1, 0.0 +NA,NA,a-cure-i1,2023-24,29.400000000000006,Needham - Pollard Middle,01990405, 3.9, 11.4, 8.0, 70.6, 0.0, 0.0, 6.3, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,29.400000000000006,Needham - Sunita L. Williams Elementary,01990035, 4.3, 11.1, 6.0, 70.6, 0.2, 0.2, 7.5, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.700000000000003,Needham - William Mitchell,01990040, 3.0, 10.5, 4.6, 76.3, 0.0, 0.0, 5.7, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,90.9,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 51.8, 2.5, 29.6, 9.1, 0.2, 0.0, 6.9, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,68.6,New Bedford - Abraham Lincoln,02010095, 12.4, 0.9, 47.9, 31.4, 0.3, 0.0, 7.1, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,88.2,New Bedford - Alfred J Gomes,02010063, 14.1, 0.5, 70.2, 11.8, 0.3, 0.0, 3.1, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,42.3,New Bedford - Betsey B Winslow,02010140, 10.3, 2.1, 21.4, 57.7, 0.4, 0.0, 8.1, 52.6, 47.0, 0.4 +NA,NA,a-cure-i1,2023-24,76.4,New Bedford - Carlos Pacheco,02010105, 15.4, 1.2, 52.4, 23.6, 0.4, 0.0, 7.1, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,36.6,New Bedford - Casimir Pulaski,02010123, 7.3, 1.1, 23.0, 63.4, 0.5, 0.2, 4.5, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,50.0,New Bedford - Charles S Ashley,02010010, 7.6, 1.1, 32.8, 50.0, 0.0, 0.0, 8.4, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,55.7,New Bedford - Elizabeth Carter Brooks,02010015, 14.0, 0.8, 34.5, 44.3, 0.4, 0.0, 6.1, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,65.3,New Bedford - Ellen R Hathaway,02010075, 18.8, 2.0, 40.8, 34.7, 0.0, 0.0, 3.7, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,56.8,New Bedford - Elwyn G Campbell,02010020, 12.9, 1.1, 38.1, 43.2, 0.0, 0.0, 4.7, 60.8, 39.2, 0.0 +NA,NA,a-cure-i1,2023-24,83.6,New Bedford - Hayden/McFadden,02010078, 13.2, 0.7, 65.8, 16.4, 0.4, 0.0, 3.5, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,74.7,New Bedford - Irwin M. Jacobs Elementary School,02010070, 9.7, 0.5, 59.0, 25.3, 0.3, 0.3, 5.0, 48.3, 51.4, 0.3 +NA,NA,a-cure-i1,2023-24,60.1,New Bedford - James B Congdon,02010040, 15.0, 0.7, 39.9, 39.9, 0.7, 0.0, 4.0, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,48.0,New Bedford - Jireh Swift,02010130, 9.5, 1.8, 30.3, 52.0, 1.4, 0.0, 5.0, 45.7, 54.3, 0.0 +NA,NA,a-cure-i1,2023-24,72.0,New Bedford - John Avery Parker,02010115, 18.6, 0.4, 44.7, 28.0, 0.0, 0.0, 8.3, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,74.3,New Bedford - John B Devalles,02010050, 18.5, 0.3, 49.0, 25.7, 0.3, 0.0, 6.2, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,63.3,New Bedford - Keith Middle School,02010405, 17.4, 0.7, 37.0, 36.7, 0.5, 0.0, 7.7, 50.3, 49.5, 0.1 +NA,NA,a-cure-i1,2023-24,69.4,New Bedford - New Bedford High,02010505, 15.6, 0.7, 47.3, 30.6, 0.4, 0.1, 5.4, 53.9, 45.8, 0.3 +NA,NA,a-cure-i1,2023-24,56.0,New Bedford - Normandin Middle School,02010410, 9.3, 1.4, 40.5, 44.0, 0.5, 0.2, 4.0, 53.0, 46.9, 0.1 +NA,NA,a-cure-i1,2023-24,71.4,New Bedford - Roosevelt Middle School,02010415, 17.1, 0.1, 50.3, 28.6, 0.0, 0.0, 3.9, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,71.5,New Bedford - Sgt Wm H Carney Academy,02010045, 20.9, 0.7, 40.9, 28.5, 0.2, 0.0, 8.8, 59.1, 40.9, 0.0 +NA,NA,a-cure-i1,2023-24,58.5,New Bedford - Thomas R Rodman,02010125, 11.2, 1.5, 40.0, 41.5, 0.0, 0.0, 5.9, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,51.2,New Bedford - Trinity Day Academy,02010510, 10.5, 0.0, 33.7, 48.8, 0.0, 0.0, 7.0, 65.1, 33.7, 1.2 +NA,NA,a-cure-i1,2023-24,75.4,New Bedford - Whaling City Junior/Senior High School,02010515, 15.6, 0.6, 49.2, 24.6, 0.0, 0.0, 10.1, 61.5, 38.5, 0.0 +NA,NA,a-cure-i1,2023-24,42.5,New Bedford - William H Taylor,02010135, 8.8, 0.4, 23.4, 57.5, 0.0, 0.0, 10.0, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,99.0,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 86.8, 0.4, 7.3, 1.0, 0.1, 0.1, 4.2, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,12.400000000000006,New Salem-Wendell - Swift River,07280015, 0.0, 1.5, 5.8, 87.6, 0.0, 0.0, 5.1, 54.7, 45.3, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.7, 4.0, 89.3, 0.0, 0.0, 4.0, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,11.599999999999994,Newburyport - Francis T Bresnahan Elementary,02040005, 0.8, 1.5, 6.6, 88.4, 0.2, 0.0, 2.5, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,10.299999999999997,Newburyport - Newburyport High,02040505, 1.4, 3.3, 3.4, 89.7, 0.3, 0.0, 1.9, 48.3, 51.7, 0.0 +NA,NA,a-cure-i1,2023-24,11.0,Newburyport - Rupert A Nock Middle,02040305, 1.1, 1.9, 7.0, 89.0, 0.0, 0.0, 1.1, 48.4, 51.4, 0.2 +NA,NA,a-cure-i1,2023-24,38.0,Newton - A E Angier,02070005, 3.9, 16.9, 4.9, 62.0, 0.0, 0.0, 12.2, 47.4, 51.3, 1.3 +NA,NA,a-cure-i1,2023-24,44.7,Newton - Bigelow Middle,02070305, 5.1, 15.9, 14.7, 55.3, 0.0, 0.2, 8.7, 45.9, 53.4, 0.7 +NA,NA,a-cure-i1,2023-24,57.2,Newton - Bowen,02070015, 2.5, 30.7, 14.1, 42.8, 0.0, 0.0, 9.9, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,54.6,Newton - C C Burr,02070020, 5.4, 23.9, 15.2, 45.4, 0.0, 0.0, 10.1, 49.0, 49.6, 1.4 +NA,NA,a-cure-i1,2023-24,48.6,Newton - Cabot,02070025, 4.4, 17.5, 12.6, 51.4, 0.0, 0.0, 14.0, 51.2, 48.4, 0.5 +NA,NA,a-cure-i1,2023-24,41.3,Newton - Charles E Brown Middle,02070310, 3.7, 23.2, 7.8, 58.7, 0.0, 0.0, 6.6, 51.4, 47.8, 0.8 +NA,NA,a-cure-i1,2023-24,50.3,Newton - Countryside,02070040, 6.1, 26.1, 8.3, 49.7, 0.0, 0.0, 9.7, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,41.4,Newton - F A Day Middle,02070315, 5.2, 16.5, 8.5, 58.6, 0.1, 0.3, 10.7, 48.4, 51.3, 0.3 +NA,NA,a-cure-i1,2023-24,40.4,Newton - Franklin,02070055, 3.2, 17.5, 10.6, 59.6, 0.0, 0.0, 9.2, 45.8, 53.3, 0.9 +NA,NA,a-cure-i1,2023-24,42.5,Newton - Horace Mann,02070075, 5.3, 15.6, 10.0, 57.5, 0.0, 0.0, 11.7, 54.2, 45.6, 0.3 +NA,NA,a-cure-i1,2023-24,35.400000000000006,Newton - John Ward,02070120, 1.4, 16.5, 7.1, 64.6, 0.0, 0.0, 10.4, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,59.8,Newton - Lincoln-Eliot,02070070, 6.1, 24.4, 19.8, 40.2, 0.0, 0.0, 9.5, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,40.4,Newton - Mason-Rice,02070080, 1.8, 22.2, 6.3, 59.6, 0.0, 0.6, 9.6, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,44.4,Newton - Memorial Spaulding,02070105, 4.6, 23.8, 8.4, 55.6, 0.0, 0.0, 7.6, 43.4, 56.6, 0.0 +NA,NA,a-cure-i1,2023-24,60.5,Newton - Newton Early Childhood Program,02070108, 7.0, 28.6, 11.9, 39.5, 0.0, 0.0, 13.0, 62.2, 37.8, 0.0 +NA,NA,a-cure-i1,2023-24,40.3,Newton - Newton North High,02070505, 5.2, 16.2, 11.6, 59.7, 0.0, 0.2, 7.0, 49.9, 49.4, 0.7 +NA,NA,a-cure-i1,2023-24,43.5,Newton - Newton South High,02070510, 3.5, 24.7, 8.5, 56.5, 0.3, 0.1, 6.4, 51.2, 48.2, 0.6 +NA,NA,a-cure-i1,2023-24,52.5,Newton - Oak Hill Middle,02070320, 6.2, 27.0, 12.5, 47.5, 0.0, 0.0, 6.8, 52.2, 47.7, 0.2 +NA,NA,a-cure-i1,2023-24,41.5,Newton - Peirce,02070100, 4.2, 16.1, 11.9, 58.5, 0.0, 0.0, 9.3, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,55.8,Newton - Underwood,02070115, 6.6, 22.7, 15.3, 44.2, 0.4, 0.0, 10.7, 45.0, 54.5, 0.4 +NA,NA,a-cure-i1,2023-24,54.4,Newton - Williams,02070125, 2.3, 36.7, 8.8, 45.6, 0.0, 0.0, 6.5, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,56.4,Newton - Zervas,02070130, 7.8, 25.8, 10.3, 43.6, 0.5, 0.5, 11.5, 49.6, 50.1, 0.3 +NA,NA,a-cure-i1,2023-24,11.599999999999994,Norfolk - Freeman-Kennedy School,02080005, 2.0, 2.7, 3.3, 88.4, 0.2, 0.0, 3.4, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,9.400000000000006,Norfolk - H Olive Day,02080015, 1.6, 2.7, 2.5, 90.6, 0.0, 0.0, 2.7, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.5,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.5, 0.5, 7.2, 85.5, 0.7, 0.0, 4.6, 28.0, 69.8, 2.2 +NA,NA,a-cure-i1,2023-24,22.0,North Adams - Brayton,02090035, 0.9, 1.4, 10.1, 78.0, 0.0, 0.0, 9.6, 60.1, 39.9, 0.0 +NA,NA,a-cure-i1,2023-24,22.400000000000006,North Adams - Colegrove Park Elementary,02090008, 4.3, 0.4, 6.3, 77.6, 0.8, 0.0, 10.6, 56.3, 43.3, 0.4 +NA,NA,a-cure-i1,2023-24,21.900000000000006,North Adams - Drury High,02090505, 3.4, 0.9, 8.0, 78.1, 0.4, 0.4, 8.8, 47.5, 52.0, 0.4 +NA,NA,a-cure-i1,2023-24,22.200000000000003,North Adams - Greylock,02090015, 0.7, 0.0, 8.9, 77.8, 0.0, 0.4, 12.2, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,32.0,North Andover - Anne Bradstreet Early Childhood Center,02110005, 3.6, 8.0, 16.9, 68.0, 0.0, 0.2, 3.1, 55.4, 44.6, 0.0 +NA,NA,a-cure-i1,2023-24,20.5,North Andover - Annie L Sargent School,02110018, 1.1, 7.9, 6.8, 79.5, 0.2, 0.0, 4.5, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,45.9,North Andover - Atkinson,02110001, 6.0, 4.9, 31.2, 54.1, 0.4, 0.0, 3.4, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,26.099999999999994,North Andover - Franklin,02110010, 3.4, 8.4, 9.2, 73.9, 0.0, 0.0, 5.0, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,20.700000000000003,North Andover - Kittredge,02110015, 1.8, 2.3, 13.1, 79.3, 0.0, 0.0, 3.6, 53.6, 45.9, 0.5 +NA,NA,a-cure-i1,2023-24,31.0,North Andover - North Andover High,02110505, 3.6, 7.5, 15.9, 69.0, 0.2, 0.0, 3.8, 50.9, 48.8, 0.3 +NA,NA,a-cure-i1,2023-24,30.599999999999994,North Andover - North Andover Middle,02110305, 2.9, 7.4, 16.5, 69.4, 0.1, 0.1, 3.6, 52.5, 47.2, 0.3 +NA,NA,a-cure-i1,2023-24,35.3,North Andover - Thomson,02110020, 2.5, 6.9, 23.3, 64.7, 0.0, 0.0, 2.5, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,37.1,North Attleborough - Amvet Boulevard,02120007, 4.9, 18.9, 7.4, 62.9, 0.5, 0.7, 4.7, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,39.9,North Attleborough - Community,02120030, 11.5, 7.3, 13.5, 60.1, 0.3, 0.3, 6.9, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,22.900000000000006,North Attleborough - Falls,02120010, 5.0, 5.4, 4.6, 77.1, 0.4, 0.0, 7.5, 56.3, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,North Attleborough - Joseph W Martin Jr Elementary,02120013, 4.8, 4.4, 5.9, 81.3, 0.0, 0.0, 3.5, 56.2, 43.6, 0.2 +NA,NA,a-cure-i1,2023-24,26.299999999999997,North Attleborough - North Attleboro High,02120505, 5.9, 8.5, 7.5, 73.7, 0.2, 0.4, 3.8, 49.2, 50.3, 0.5 +NA,NA,a-cure-i1,2023-24,35.099999999999994,North Attleborough - North Attleborough Early Learning Center,02120020, 9.5, 11.5, 9.5, 64.9, 0.0, 0.0, 4.7, 58.1, 41.9, 0.0 +NA,NA,a-cure-i1,2023-24,26.299999999999997,North Attleborough - North Attleborough Middle,02120305, 5.8, 8.5, 7.1, 73.7, 0.1, 0.1, 4.8, 53.6, 46.2, 0.2 +NA,NA,a-cure-i1,2023-24,24.5,North Attleborough - Roosevelt Avenue,02120015, 7.5, 9.9, 5.1, 75.5, 0.0, 0.0, 2.0, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,16.099999999999994,North Brookfield - North Brookfield Elementary,02150015, 2.6, 0.7, 9.5, 83.9, 0.0, 0.0, 3.3, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,18.799999999999997,North Brookfield - North Brookfield High,02150505, 3.0, 0.8, 12.0, 81.2, 0.0, 0.0, 3.0, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,14.599999999999994,North Middlesex - Ashby Elementary,07350010, 0.7, 0.7, 10.6, 85.4, 0.0, 0.0, 2.6, 57.0, 43.0, 0.0 +NA,NA,a-cure-i1,2023-24,14.400000000000006,North Middlesex - Hawthorne Brook,07350030, 2.4, 1.3, 7.3, 85.6, 0.0, 0.0, 3.3, 45.4, 54.6, 0.0 +NA,NA,a-cure-i1,2023-24,24.700000000000003,North Middlesex - Nissitissit Middle School,07350310, 3.5, 2.9, 12.1, 75.3, 0.2, 0.0, 6.0, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,16.900000000000006,North Middlesex - North Middlesex Regional,07350505, 2.0, 2.9, 8.2, 83.1, 0.0, 0.1, 3.7, 51.4, 48.3, 0.3 +NA,NA,a-cure-i1,2023-24,16.0,North Middlesex - Spaulding Memorial,07350005, 3.5, 1.4, 8.1, 84.0, 0.0, 0.0, 3.0, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,18.900000000000006,North Middlesex - Squannacook Early Childhood Center,07350002, 3.8, 2.8, 9.4, 81.1, 0.0, 0.0, 2.8, 67.0, 33.0, 0.0 +NA,NA,a-cure-i1,2023-24,19.299999999999997,North Middlesex - Varnum Brook,07350035, 3.1, 3.8, 8.8, 80.7, 0.3, 0.0, 3.3, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,18.0,North Reading - E Ethel Little School,02170003, 0.7, 5.1, 6.5, 82.0, 0.0, 0.0, 5.8, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,16.599999999999994,North Reading - J Turner Hood,02170010, 0.5, 5.9, 6.6, 83.4, 0.0, 0.0, 3.7, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,11.299999999999997,North Reading - L D Batchelder,02170005, 0.9, 4.2, 2.4, 88.7, 0.0, 0.0, 3.8, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,14.200000000000003,North Reading - North Reading High,02170505, 0.5, 6.0, 5.2, 85.8, 0.0, 0.0, 2.6, 47.9, 51.5, 0.6 +NA,NA,a-cure-i1,2023-24,16.0,North Reading - North Reading Middle,02170305, 0.4, 5.7, 4.2, 84.0, 0.0, 0.2, 5.5, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,46.7,Northampton - Bridge Street,02100005, 4.2, 2.3, 32.4, 53.3, 0.0, 0.0, 7.7, 49.8, 49.8, 0.4 +NA,NA,a-cure-i1,2023-24,33.3,Northampton - Jackson Street,02100020, 3.6, 4.0, 18.5, 66.7, 0.0, 0.0, 7.2, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,35.2,Northampton - John F Kennedy Middle School,02100410, 4.1, 2.6, 20.3, 64.8, 0.2, 0.0, 8.1, 51.1, 48.5, 0.4 +NA,NA,a-cure-i1,2023-24,27.0,Northampton - Leeds,02100025, 1.1, 2.5, 16.9, 73.0, 0.4, 0.0, 6.1, 55.8, 43.5, 0.7 +NA,NA,a-cure-i1,2023-24,29.099999999999994,Northampton - Northampton High,02100505, 3.3, 3.0, 14.7, 70.9, 0.0, 0.0, 8.2, 49.6, 48.3, 2.1 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Northampton - R. K. Finn Ryan Road,02100029, 2.1, 1.3, 12.0, 80.3, 0.0, 0.0, 4.3, 51.9, 47.6, 0.4 +NA,NA,a-cure-i1,2023-24,17.900000000000006,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.2, 0.7, 12.7, 82.1, 0.5, 0.2, 2.6, 58.9, 39.7, 1.4 +NA,NA,a-cure-i1,2023-24,32.3,Northboro-Southboro - Algonquin Regional High,07300505, 2.0, 15.7, 9.9, 67.7, 0.0, 0.3, 4.4, 47.5, 52.0, 0.5 +NA,NA,a-cure-i1,2023-24,42.1,Northborough - Fannie E Proctor,02130015, 6.5, 16.6, 12.6, 57.9, 0.8, 0.0, 5.7, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,28.400000000000006,Northborough - Lincoln Street,02130003, 1.8, 12.4, 8.5, 71.6, 0.0, 0.4, 5.3, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,44.5,Northborough - Marguerite E Peaslee,02130014, 2.1, 13.9, 16.4, 55.5, 0.0, 3.9, 8.2, 52.3, 47.3, 0.4 +NA,NA,a-cure-i1,2023-24,39.6,Northborough - Marion E Zeh,02130020, 2.0, 19.2, 14.5, 60.4, 0.0, 0.0, 3.9, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,30.400000000000006,Northborough - Robert E. Melican Middle School,02130305, 2.8, 10.7, 9.8, 69.6, 0.5, 2.3, 4.2, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Northbridge - Northbridge Elementary School,02140001, 2.0, 0.3, 14.4, 81.4, 0.0, 0.0, 2.0, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Northbridge - Northbridge High,02140505, 2.1, 1.5, 12.1, 81.4, 0.0, 0.0, 3.0, 51.6, 48.2, 0.2 +NA,NA,a-cure-i1,2023-24,16.900000000000006,Northbridge - Northbridge Middle,02140305, 0.5, 1.6, 12.5, 83.1, 0.2, 0.0, 2.1, 50.7, 49.1, 0.2 +NA,NA,a-cure-i1,2023-24,53.5,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 4.7, 1.3, 45.7, 46.5, 0.4, 0.1, 1.4, 53.5, 45.8, 0.7 +NA,NA,a-cure-i1,2023-24,4.799999999999997,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 1.3, 0.4, 1.5, 95.2, 0.0, 0.4, 1.2, 62.3, 37.5, 0.2 +NA,NA,a-cure-i1,2023-24,16.5,Norton - Henri A. Yelle,02180060, 5.7, 0.9, 5.4, 83.5, 0.0, 0.0, 4.5, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,16.700000000000003,Norton - J C Solmonese,02180015, 4.9, 3.0, 2.9, 83.3, 0.0, 0.0, 5.9, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Norton - L G Nourse Elementary,02180010, 6.9, 3.0, 3.3, 82.8, 0.0, 0.0, 4.0, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,14.200000000000003,Norton - Norton High,02180505, 4.1, 2.6, 3.9, 85.8, 0.4, 0.0, 3.1, 47.7, 52.1, 0.1 +NA,NA,a-cure-i1,2023-24,14.0,Norton - Norton Middle,02180305, 3.9, 1.1, 4.5, 86.0, 0.0, 0.0, 4.5, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,13.099999999999994,Norwell - Grace Farrar Cole,02190005, 1.1, 3.9, 1.5, 86.9, 0.0, 0.0, 6.7, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,8.400000000000006,Norwell - Norwell High,02190505, 0.2, 2.9, 1.7, 91.6, 0.2, 0.0, 3.5, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,8.799999999999997,Norwell - Norwell Middle School,02190405, 1.2, 2.6, 1.0, 91.2, 0.0, 0.2, 3.8, 54.2, 45.6, 0.2 +NA,NA,a-cure-i1,2023-24,8.599999999999994,Norwell - William G Vinal,02190020, 0.4, 2.2, 1.3, 91.4, 0.0, 0.0, 4.7, 50.7, 49.1, 0.2 +NA,NA,a-cure-i1,2023-24,64.4,Norwood - Balch,02200005, 13.4, 6.5, 40.5, 35.6, 0.3, 2.6, 1.0, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,60.0,Norwood - Charles J Prescott,02200025, 15.6, 23.6, 14.4, 40.0, 1.2, 0.8, 4.4, 45.2, 54.8, 0.0 +NA,NA,a-cure-i1,2023-24,44.0,Norwood - Cornelius M Callahan,02200010, 12.0, 6.0, 19.2, 56.0, 0.4, 1.7, 4.7, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,44.2,Norwood - Dr. Philip O. Coakley Middle School,02200305, 15.3, 5.7, 19.6, 55.8, 0.0, 0.6, 3.0, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,33.8,Norwood - F A Cleveland,02200015, 8.8, 3.8, 14.5, 66.2, 0.0, 0.6, 6.0, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,50.7,Norwood - George F. Willett,02200075, 11.4, 12.8, 19.7, 49.3, 0.5, 1.4, 5.0, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,34.7,Norwood - John P Oldham,02200020, 12.8, 4.7, 11.7, 65.3, 0.4, 1.8, 3.3, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,41.7,Norwood - Norwood High,02200505, 13.1, 5.0, 20.2, 58.3, 0.5, 0.3, 2.5, 48.1, 51.4, 0.5 +NA,NA,a-cure-i1,2023-24,47.5,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.1, 1.9, 37.2, 52.5, 0.5, 0.0, 4.8, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,9.799999999999997,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 1.1, 1.1, 3.3, 90.2, 0.4, 0.2, 3.8, 61.6, 37.3, 1.1 +NA,NA,a-cure-i1,2023-24,11.5,Old Rochester - Old Rochester Regional High,07400505, 2.5, 1.3, 3.1, 88.5, 0.2, 0.0, 4.4, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,12.099999999999994,Old Rochester - Old Rochester Regional Jr High,07400405, 2.1, 0.7, 3.5, 87.9, 0.0, 0.0, 5.8, 52.4, 47.3, 0.2 +NA,NA,a-cure-i1,2023-24,34.8,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 4.0, 0.3, 27.3, 65.2, 0.3, 0.3, 2.6, 57.5, 42.5, 0.0 +NA,NA,a-cure-i1,2023-24,17.0,Orange - Fisher Hill School,02230010, 0.6, 1.5, 9.4, 83.0, 0.2, 0.2, 5.2, 53.7, 46.1, 0.2 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Orleans - Orleans Elementary,02240005, 3.5, 2.1, 9.2, 80.3, 1.4, 0.0, 3.5, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,31.200000000000003,Oxford - Alfred M Chaffee,02260010, 3.7, 1.2, 20.1, 68.8, 0.3, 0.0, 5.9, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,25.200000000000003,Oxford - Clara Barton,02260005, 1.2, 1.6, 18.1, 74.8, 0.6, 0.0, 3.7, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,33.3,Oxford - Oxford High,02260505, 5.2, 1.9, 19.9, 66.7, 0.0, 0.0, 6.3, 51.0, 48.6, 0.4 +NA,NA,a-cure-i1,2023-24,24.700000000000003,Oxford - Oxford Middle,02260405, 3.4, 0.5, 16.4, 75.3, 0.0, 0.0, 4.4, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,25.200000000000003,Palmer - Old Mill Pond,02270008, 2.1, 1.4, 17.2, 74.8, 0.0, 0.0, 4.5, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,28.700000000000003,Palmer - Palmer High,02270505, 2.0, 3.3, 17.5, 71.3, 0.2, 0.0, 5.7, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,16.5,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.6, 0.6, 10.7, 83.5, 0.0, 0.2, 3.4, 59.4, 40.0, 0.6 +NA,NA,a-cure-i1,2023-24,35.099999999999994,Peabody - Captain Samuel Brown,02290005, 4.5, 4.5, 22.3, 64.9, 0.0, 0.3, 3.5, 54.5, 45.2, 0.3 +NA,NA,a-cure-i1,2023-24,50.7,Peabody - Center,02290015, 10.9, 2.6, 34.4, 49.3, 0.3, 0.0, 2.6, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,32.3,Peabody - J Henry Higgins Middle,02290305, 4.3, 1.9, 23.9, 67.7, 0.2, 0.1, 2.0, 49.9, 50.0, 0.1 +NA,NA,a-cure-i1,2023-24,20.299999999999997,Peabody - John E Burke,02290007, 3.1, 0.0, 14.9, 79.7, 0.0, 0.0, 2.4, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,40.4,Peabody - John E. McCarthy,02290016, 9.1, 2.9, 22.1, 59.6, 0.8, 0.5, 4.9, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,37.8,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 4.1, 4.1, 27.6, 62.2, 1.0, 0.0, 1.0, 46.9, 52.0, 1.0 +NA,NA,a-cure-i1,2023-24,37.0,Peabody - Peabody Veterans Memorial High,02290510, 6.3, 2.0, 26.1, 63.0, 0.2, 0.0, 2.5, 51.2, 48.7, 0.1 +NA,NA,a-cure-i1,2023-24,27.599999999999994,Peabody - South Memorial,02290035, 3.2, 3.2, 17.1, 72.4, 0.4, 0.0, 3.8, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,45.3,Peabody - Thomas Carroll,02290010, 4.7, 2.2, 34.9, 54.7, 0.5, 0.3, 2.6, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,15.200000000000003,Peabody - West Memorial,02290045, 0.7, 1.4, 9.0, 84.8, 0.0, 0.0, 4.0, 46.2, 53.8, 0.0 +NA,NA,a-cure-i1,2023-24,64.3,Peabody - William A Welch Sr,02290027, 3.7, 1.7, 55.2, 35.7, 1.0, 0.3, 2.4, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,31.799999999999997,Pelham - Pelham Elementary,02300005, 6.2, 3.1, 15.5, 68.2, 2.3, 0.0, 4.7, 58.9, 39.5, 1.6 +NA,NA,a-cure-i1,2023-24,10.0,Pembroke - Bryantville Elementary,02310003, 0.5, 0.0, 3.2, 90.0, 0.2, 0.0, 6.1, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,9.299999999999997,Pembroke - Hobomock Elementary,02310010, 0.3, 1.8, 3.3, 90.7, 0.0, 0.0, 4.0, 51.3, 48.7, 0.0 +NA,NA,a-cure-i1,2023-24,11.900000000000006,Pembroke - North Pembroke Elementary,02310015, 0.2, 0.4, 5.3, 88.1, 0.2, 0.0, 5.7, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,7.200000000000003,Pembroke - Pembroke Community Middle School,02310305, 0.6, 0.8, 1.9, 92.8, 0.6, 0.0, 3.3, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,5.700000000000003,Pembroke - Pembroke High School,02310505, 0.6, 0.7, 1.4, 94.3, 0.0, 0.0, 3.1, 56.4, 43.6, 0.0 +NA,NA,a-cure-i1,2023-24,13.0,Pentucket - Dr Frederick N Sweetsir,07450020, 1.3, 1.3, 6.5, 87.0, 0.4, 0.0, 3.5, 55.4, 44.6, 0.0 +NA,NA,a-cure-i1,2023-24,10.099999999999994,Pentucket - Dr John C Page School,07450015, 0.3, 1.2, 6.1, 89.9, 0.0, 0.0, 2.5, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,13.299999999999997,Pentucket - Elmer S Bagnall,07450005, 0.2, 0.4, 9.5, 86.7, 0.0, 0.0, 3.3, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,13.5,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 10.6, 86.5, 0.0, 0.0, 2.4, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,11.200000000000003,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.3, 8.5, 88.8, 0.0, 0.0, 2.4, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,11.799999999999997,Pentucket - Pentucket Regional Sr High,07450505, 0.5, 1.6, 7.7, 88.2, 0.2, 0.2, 1.7, 47.9, 51.4, 0.7 +NA,NA,a-cure-i1,2023-24,11.299999999999997,Petersham - Petersham Center,02340005, 2.3, 0.0, 7.5, 88.7, 0.0, 0.0, 1.5, 48.1, 51.9, 0.0 +NA,NA,a-cure-i1,2023-24,97.4,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 7.2, 0.0, 87.6, 2.6, 1.5, 0.0, 1.0, 50.0, 49.5, 0.5 +NA,NA,a-cure-i1,2023-24,86.0,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 5.3, 0.0, 78.1, 14.0, 0.9, 0.9, 0.9, 50.9, 48.2, 0.9 +NA,NA,a-cure-i1,2023-24,96.9,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 15.7, 0.0, 74.8, 3.1, 2.5, 0.0, 3.8, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,61.0,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 22.1, 8.1, 27.1, 39.0, 0.5, 0.0, 3.2, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,77.0,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 29.5, 17.5, 26.0, 23.0, 0.4, 0.0, 3.7, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,6.799999999999997,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 2.9, 93.2, 0.0, 0.5, 3.4, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,6.5,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 2.4, 93.5, 0.0, 0.0, 4.2, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,6.599999999999994,Pioneer Valley - Pioneer Valley Regional,07500505, 0.4, 0.8, 1.7, 93.4, 0.0, 0.0, 3.7, 50.2, 48.1, 1.7 +NA,NA,a-cure-i1,2023-24,50.9,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 8.3, 18.5, 8.7, 49.1, 0.0, 0.0, 15.4, 52.7, 46.7, 0.5 +NA,NA,a-cure-i1,2023-24,40.9,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.3, 1.3, 24.1, 59.1, 0.3, 0.0, 7.0, 32.8, 64.7, 2.5 +NA,NA,a-cure-i1,2023-24,51.8,Pittsfield - Allendale,02360010, 16.3, 1.6, 22.3, 48.2, 0.4, 0.0, 11.2, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,60.3,Pittsfield - Crosby,02360065, 11.7, 0.0, 34.0, 39.7, 0.0, 0.0, 14.6, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,52.4,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 38.1, 47.6, 0.0, 0.0, 14.3, 76.2, 23.8, 0.0 +NA,NA,a-cure-i1,2023-24,40.0,Pittsfield - Eagle Education Academy,02360525, 13.3, 0.0, 23.3, 60.0, 0.0, 0.0, 3.3, 70.0, 30.0, 0.0 +NA,NA,a-cure-i1,2023-24,42.0,Pittsfield - Egremont,02360035, 7.8, 1.6, 23.1, 58.0, 0.3, 0.0, 9.3, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,47.7,Pittsfield - John T Reid Middle,02360305, 11.8, 0.2, 21.3, 52.3, 0.0, 0.0, 14.5, 47.7, 51.8, 0.5 +NA,NA,a-cure-i1,2023-24,61.9,Pittsfield - Morningside Community School,02360055, 15.2, 0.6, 32.9, 38.1, 0.3, 0.0, 13.0, 46.1, 53.9, 0.0 +NA,NA,a-cure-i1,2023-24,39.9,Pittsfield - Pittsfield High,02360505, 12.2, 1.9, 18.8, 60.1, 0.1, 0.0, 6.9, 51.5, 48.1, 0.4 +NA,NA,a-cure-i1,2023-24,36.2,Pittsfield - Robert T. Capeless Elementary School,02360045, 6.4, 0.0, 17.0, 63.8, 1.6, 0.0, 11.2, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,65.5,Pittsfield - Silvio O Conte Community,02360105, 22.7, 0.6, 28.7, 34.5, 0.6, 0.0, 12.9, 48.3, 51.7, 0.0 +NA,NA,a-cure-i1,2023-24,28.599999999999994,Pittsfield - Stearns,02360090, 5.7, 2.4, 9.0, 71.4, 0.5, 0.0, 11.0, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,39.2,Pittsfield - Taconic High,02360510, 11.0, 1.4, 17.3, 60.8, 0.3, 0.0, 9.3, 53.9, 45.6, 0.5 +NA,NA,a-cure-i1,2023-24,41.1,Pittsfield - Theodore Herberg Middle,02360310, 11.1, 1.7, 17.3, 58.9, 0.6, 0.2, 10.2, 52.9, 46.5, 0.6 +NA,NA,a-cure-i1,2023-24,33.3,Pittsfield - Williams,02360100, 8.4, 4.2, 13.0, 66.7, 0.0, 0.0, 7.7, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,25.200000000000003,Plainville - Anna Ware Jackson,02380010, 5.3, 2.5, 12.5, 74.8, 0.3, 0.0, 4.7, 56.7, 43.3, 0.0 +NA,NA,a-cure-i1,2023-24,21.299999999999997,Plainville - Beatrice H Wood Elementary,02380005, 5.4, 3.8, 8.0, 78.7, 0.3, 0.0, 3.8, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,33.599999999999994,Plymouth - Cold Spring,02390005, 4.5, 0.5, 25.0, 66.4, 0.0, 0.0, 3.6, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,21.099999999999994,Plymouth - Federal Furnace School,02390011, 4.7, 0.5, 8.6, 78.9, 0.0, 0.0, 7.3, 55.9, 44.1, 0.0 +NA,NA,a-cure-i1,2023-24,54.1,Plymouth - Hedge,02390010, 5.5, 0.5, 40.4, 45.9, 0.0, 0.0, 7.8, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,10.299999999999997,Plymouth - Indian Brook,02390012, 0.7, 0.4, 5.7, 89.7, 0.0, 0.2, 3.3, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,15.0,Plymouth - Manomet Elementary,02390015, 1.8, 0.7, 4.8, 85.0, 0.0, 0.0, 7.7, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,19.299999999999997,Plymouth - Nathaniel Morton Elementary,02390030, 1.8, 1.0, 11.8, 80.7, 0.2, 0.0, 4.6, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,22.299999999999997,Plymouth - Plymouth Commun Intermediate,02390405, 3.0, 1.1, 12.3, 77.7, 0.0, 0.0, 5.9, 49.3, 50.5, 0.2 +NA,NA,a-cure-i1,2023-24,20.5,Plymouth - Plymouth Early Childhood Center,02390003, 0.9, 0.5, 14.2, 79.5, 0.0, 0.0, 5.0, 59.4, 40.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.0,Plymouth - Plymouth North High,02390505, 2.8, 1.5, 13.6, 77.0, 0.0, 0.1, 5.0, 50.8, 48.8, 0.3 +NA,NA,a-cure-i1,2023-24,10.099999999999994,Plymouth - Plymouth South High,02390515, 1.6, 0.3, 5.2, 89.9, 0.1, 0.0, 2.9, 52.5, 47.4, 0.1 +NA,NA,a-cure-i1,2023-24,10.599999999999994,Plymouth - Plymouth South Middle,02390305, 0.8, 0.0, 5.1, 89.4, 0.5, 0.5, 3.6, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,13.5,Plymouth - South Elementary,02390046, 1.4, 1.1, 7.0, 86.5, 0.2, 0.2, 3.7, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,20.099999999999994,Plymouth - West Elementary,02390047, 2.9, 2.0, 8.2, 79.9, 0.0, 0.0, 7.0, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,4.0,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 3.2, 96.0, 0.0, 0.0, 0.8, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,90.2,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 56.4, 6.7, 22.1, 9.8, 0.2, 0.2, 4.6, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,48.2,Provincetown - Provincetown Schools,02420020, 22.6, 0.7, 14.6, 51.8, 0.0, 0.0, 10.2, 46.0, 53.3, 0.7 +NA,NA,a-cure-i1,2023-24,13.200000000000003,Quabbin - Hardwick Elementary,07530005, 1.1, 0.0, 8.5, 86.8, 0.0, 0.0, 3.7, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,10.200000000000003,Quabbin - Hubbardston Center,07530010, 0.3, 1.6, 6.7, 89.8, 0.3, 0.0, 1.3, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,5.700000000000003,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 62.9, 37.1, 0.0 +NA,NA,a-cure-i1,2023-24,14.700000000000003,Quabbin - Oakham Center,07530025, 3.8, 0.6, 7.7, 85.3, 0.0, 0.0, 2.6, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,11.299999999999997,Quabbin - Quabbin Regional High School,07530505, 0.5, 1.4, 7.4, 88.7, 0.2, 0.0, 1.8, 46.2, 53.8, 0.0 +NA,NA,a-cure-i1,2023-24,15.700000000000003,Quabbin - Quabbin Regional Middle School,07530405, 3.2, 1.1, 7.8, 84.3, 0.2, 0.0, 3.4, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,11.0,Quabbin - Ruggles Lane,07530030, 2.4, 0.3, 5.2, 89.0, 0.0, 0.3, 2.9, 57.0, 43.0, 0.0 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Quaboag Regional - Quaboag Integrated Preschool,07780001, 1.9, 0.0, 20.8, 77.4, 0.0, 0.0, 0.0, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.400000000000006,Quaboag Regional - Quaboag Regional High,07780505, 1.2, 0.0, 6.1, 86.6, 0.6, 0.0, 5.5, 47.1, 51.5, 1.5 +NA,NA,a-cure-i1,2023-24,19.400000000000006,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.6, 12.9, 80.6, 0.0, 0.0, 5.9, 55.3, 44.1, 0.6 +NA,NA,a-cure-i1,2023-24,17.900000000000006,Quaboag Regional - Warren Elementary,07780005, 2.3, 0.3, 11.1, 82.1, 0.3, 0.0, 3.9, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.200000000000003,Quaboag Regional - West Brookfield Elementary,07780010, 1.2, 2.0, 8.6, 84.8, 0.0, 0.0, 3.3, 50.0, 49.6, 0.4 +NA,NA,a-cure-i1,2023-24,74.1,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.9, 42.4, 10.0, 25.9, 0.0, 0.0, 8.8, 60.0, 40.0, 0.0 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Quincy - Atherton Hough,02430040, 5.2, 8.9, 6.9, 72.2, 0.0, 0.4, 6.5, 61.7, 38.3, 0.0 +NA,NA,a-cure-i1,2023-24,70.9,Quincy - Atlantic Middle,02430305, 2.5, 59.8, 6.1, 29.1, 0.0, 0.0, 2.5, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,72.0,Quincy - Beechwood Knoll Elementary,02430020, 2.7, 59.3, 6.8, 28.0, 0.0, 0.0, 3.2, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,45.9,Quincy - Broad Meadows Middle,02430310, 8.8, 23.3, 10.4, 54.1, 0.0, 0.0, 3.5, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,60.1,Quincy - Central Middle,02430315, 3.0, 48.4, 5.1, 39.9, 0.0, 0.4, 3.3, 56.0, 43.4, 0.6 +NA,NA,a-cure-i1,2023-24,42.5,Quincy - Charles A Bernazzani Elementary,02430025, 3.9, 24.9, 6.0, 57.5, 0.0, 0.0, 7.8, 46.7, 53.3, 0.0 +NA,NA,a-cure-i1,2023-24,74.9,Quincy - Clifford H Marshall Elementary,02430055, 15.5, 37.8, 15.5, 25.1, 0.2, 0.0, 5.9, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,79.2,Quincy - Francis W Parker,02430075, 7.4, 59.8, 6.5, 20.8, 0.0, 0.0, 5.4, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,67.2,Quincy - Lincoln-Hancock Community School,02430035, 14.3, 31.0, 12.5, 32.8, 0.5, 0.0, 8.8, 50.4, 49.4, 0.2 +NA,NA,a-cure-i1,2023-24,36.1,Quincy - Merrymount,02430060, 4.1, 17.2, 8.2, 63.9, 0.0, 0.0, 6.6, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,79.5,Quincy - Montclair,02430065, 4.4, 64.3, 6.1, 20.5, 0.0, 0.0, 4.6, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,66.0,Quincy - North Quincy High,02430510, 3.4, 54.2, 4.6, 34.0, 0.3, 0.5, 3.1, 52.5, 47.5, 0.1 +NA,NA,a-cure-i1,2023-24,75.0,Quincy - Point Webster Middle,02430325, 20.1, 34.6, 16.9, 25.0, 0.0, 0.0, 3.4, 45.6, 54.2, 0.2 +NA,NA,a-cure-i1,2023-24,55.7,Quincy - Quincy High,02430505, 14.2, 22.3, 13.5, 44.3, 0.2, 0.7, 4.8, 51.8, 47.8, 0.4 +NA,NA,a-cure-i1,2023-24,70.4,Quincy - Snug Harbor Community School,02430090, 15.2, 30.3, 16.5, 29.6, 0.5, 0.0, 8.0, 58.9, 41.1, 0.0 +NA,NA,a-cure-i1,2023-24,70.0,Quincy - South West Middle School,02430320, 16.9, 29.6, 14.2, 30.0, 0.9, 0.5, 7.9, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,45.6,Quincy - Squantum,02430095, 4.7, 28.3, 6.4, 54.4, 0.6, 0.0, 5.6, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,70.5,Quincy - Wollaston School,02430110, 3.2, 60.3, 3.8, 29.5, 0.0, 0.0, 3.2, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.700000000000003,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.8, 0.8, 9.1, 84.3, 0.0, 0.0, 4.0, 53.0, 45.8, 1.2 +NA,NA,a-cure-i1,2023-24,81.2,Randolph - Elizabeth G Lyons Elementary,02440020, 43.3, 15.3, 15.7, 18.8, 0.0, 0.8, 6.1, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,87.8,Randolph - J F Kennedy Elementary,02440018, 55.2, 13.7, 13.5, 12.2, 0.0, 0.2, 5.3, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,89.7,Randolph - Margaret L Donovan,02440015, 47.3, 20.6, 17.2, 10.3, 0.5, 0.0, 4.2, 48.3, 51.5, 0.2 +NA,NA,a-cure-i1,2023-24,86.5,Randolph - Martin E Young Elementary,02440040, 56.0, 6.9, 19.6, 13.5, 0.7, 0.0, 3.3, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,89.7,Randolph - Randolph Community Middle,02440410, 49.0, 18.6, 16.1, 10.3, 1.0, 0.2, 4.8, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Randolph - Randolph High,02440505, 52.7, 19.4, 16.3, 8.4, 0.2, 0.2, 2.9, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,12.900000000000006,Reading - Alice M Barrows,02460002, 2.0, 3.7, 4.5, 87.1, 0.0, 0.0, 2.8, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,12.900000000000006,Reading - Arthur W Coolidge Middle,02460305, 2.7, 5.2, 3.2, 87.1, 0.0, 0.0, 1.7, 53.1, 46.7, 0.2 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Reading - Birch Meadow,02460005, 3.5, 4.9, 3.5, 83.6, 0.0, 0.0, 4.6, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,19.0,Reading - J Warren Killam,02460017, 4.8, 7.6, 5.5, 81.0, 0.0, 0.0, 1.2, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,20.700000000000003,Reading - Joshua Eaton,02460010, 1.8, 6.1, 9.7, 79.3, 0.0, 0.0, 3.1, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.0,Reading - Reading Memorial High,02460505, 4.5, 4.6, 3.8, 85.0, 0.3, 0.1, 1.7, 53.5, 46.1, 0.4 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Reading - RISE PreSchool,02460001, 0.0, 6.4, 3.6, 83.6, 0.0, 0.0, 6.4, 58.2, 41.8, 0.0 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Reading - Walter S Parker Middle,02460310, 3.8, 4.7, 4.4, 81.4, 0.2, 0.0, 5.5, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.299999999999997,Reading - Wood End Elementary School,02460020, 2.0, 6.0, 4.0, 84.7, 0.0, 0.0, 3.2, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,66.7,Revere - A. C. Whelan Elementary School,02480003, 1.3, 3.4, 59.8, 33.3, 0.3, 0.0, 1.9, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,65.4,Revere - Abraham Lincoln,02480025, 3.0, 4.5, 55.5, 34.6, 0.8, 0.0, 1.7, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,69.1,Revere - Beachmont Veterans Memorial School,02480013, 4.9, 2.4, 59.9, 30.9, 0.3, 0.3, 1.2, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,73.4,Revere - CityLab Innovation High School,02480520, 1.8, 2.8, 64.2, 26.6, 0.0, 0.0, 4.6, 50.5, 48.6, 0.9 +NA,NA,a-cure-i1,2023-24,79.1,Revere - Garfield Elementary School,02480056, 3.0, 4.6, 69.9, 20.9, 0.4, 0.0, 1.2, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,76.1,Revere - Garfield Middle School,02480057, 3.0, 2.8, 67.8, 23.9, 0.4, 0.0, 2.1, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,68.5,Revere - Paul Revere,02480050, 3.0, 3.9, 57.4, 31.5, 1.7, 0.2, 2.4, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,75.4,Revere - Revere High,02480505, 4.2, 3.7, 66.0, 24.6, 0.4, 0.0, 1.1, 52.9, 46.9, 0.1 +NA,NA,a-cure-i1,2023-24,70.6,Revere - Rumney Marsh Academy,02480014, 3.5, 4.0, 62.0, 29.4, 0.2, 0.0, 1.0, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,78.5,Revere - Staff Sargent James J. Hill Elementary School,02480035, 4.0, 3.4, 70.1, 21.5, 0.0, 0.0, 1.1, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,73.9,Revere - Susan B. Anthony Middle School,02480305, 3.5, 4.0, 65.0, 26.1, 0.4, 0.0, 1.1, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Richmond - Richmond Consolidated,02490005, 1.3, 0.0, 6.3, 86.1, 0.0, 0.0, 6.3, 48.1, 51.9, 0.0 +NA,NA,a-cure-i1,2023-24,18.900000000000006,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.7, 2.1, 5.3, 81.1, 0.5, 0.0, 8.3, 48.2, 51.2, 0.6 +NA,NA,a-cure-i1,2023-24,13.200000000000003,River Valley Charter (District) - River Valley Charter School,04820050, 1.0, 0.3, 6.9, 86.8, 0.0, 0.0, 4.9, 47.6, 52.1, 0.3 +NA,NA,a-cure-i1,2023-24,8.5,Rochester - Rochester Memorial,02500005, 0.6, 0.4, 4.5, 91.5, 0.2, 0.0, 2.8, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,33.7,Rockland - John W Rogers Middle,02510305, 6.3, 1.7, 19.9, 66.3, 1.0, 0.0, 4.7, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,36.1,Rockland - Phelps Elementary School,02510060, 5.5, 2.3, 24.4, 63.9, 0.5, 0.0, 3.4, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,31.900000000000006,Rockland - R Stewart Esten Early Childhood Center,02510025, 6.2, 1.8, 19.0, 68.1, 0.0, 0.0, 4.9, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,32.2,Rockland - Rockland Senior High,02510505, 6.4, 1.9, 20.1, 67.8, 1.4, 0.2, 2.3, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,9.599999999999994,Rockport - Rockport Elementary,02520005, 1.1, 1.5, 3.7, 90.4, 0.0, 0.0, 3.3, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,10.200000000000003,Rockport - Rockport High,02520510, 1.3, 2.7, 3.5, 89.8, 0.0, 0.0, 2.7, 59.7, 39.8, 0.4 +NA,NA,a-cure-i1,2023-24,6.400000000000006,Rockport - Rockport Middle,02520305, 0.6, 0.6, 3.5, 93.6, 0.0, 0.6, 1.2, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Rowe - Rowe Elementary,02530005, 1.6, 0.0, 3.3, 80.3, 0.0, 0.0, 14.8, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,98.7,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 53.8, 0.7, 40.8, 1.3, 1.4, 0.1, 1.9, 56.1, 43.9, 0.0 +NA,NA,a-cure-i1,2023-24,52.6,Salem - Bates,02580003, 7.3, 0.5, 38.3, 47.4, 1.3, 0.5, 4.8, 49.1, 50.6, 0.3 +NA,NA,a-cure-i1,2023-24,90.0,Salem - Bentley Academy Innovation School,02580010, 9.6, 1.1, 78.1, 10.0, 0.0, 0.0, 1.1, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,42.5,Salem - Carlton,02580015, 5.1, 2.0, 31.1, 57.5, 0.0, 0.0, 4.3, 49.2, 50.4, 0.4 +NA,NA,a-cure-i1,2023-24,59.4,Salem - Collins Middle,02580305, 7.7, 2.2, 44.6, 40.6, 0.0, 0.3, 4.5, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,66.1,Salem - Horace Mann Laboratory,02580030, 9.8, 3.9, 49.2, 33.9, 0.0, 0.0, 3.3, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,66.7,Salem - New Liberty Innovation School,02580510, 4.4, 0.0, 53.3, 33.3, 0.0, 0.0, 8.9, 37.8, 60.0, 2.2 +NA,NA,a-cure-i1,2023-24,61.6,Salem - Salem Early Childhood,02580001, 8.9, 5.4, 39.3, 38.4, 0.9, 0.9, 6.3, 58.0, 42.0, 0.0 +NA,NA,a-cure-i1,2023-24,65.3,Salem - Salem High,02580505, 8.2, 3.1, 49.7, 34.7, 0.1, 0.2, 4.0, 52.8, 46.8, 0.3 +NA,NA,a-cure-i1,2023-24,47.1,Salem - Salem Prep High School,02580515, 5.9, 0.0, 41.2, 52.9, 0.0, 0.0, 0.0, 47.1, 52.9, 0.0 +NA,NA,a-cure-i1,2023-24,60.5,Salem - Saltonstall School,02580050, 4.9, 0.3, 50.8, 39.5, 0.3, 0.0, 4.4, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,55.6,Salem - Witchcraft Heights,02580070, 7.4, 4.5, 39.7, 44.4, 0.2, 0.2, 3.6, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,70.3,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 9.4, 4.3, 54.3, 29.7, 0.0, 0.0, 2.3, 48.8, 50.8, 0.4 +NA,NA,a-cure-i1,2023-24,12.200000000000003,Sandwich - Forestdale School,02610002, 0.6, 3.1, 5.2, 87.8, 0.2, 0.0, 3.1, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Sandwich - Oak Ridge,02610025, 1.6, 2.8, 5.3, 86.1, 0.6, 0.3, 3.3, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,12.299999999999997,Sandwich - Sandwich Middle High School,02610505, 1.9, 2.7, 5.6, 87.7, 0.1, 0.2, 1.8, 51.9, 47.5, 0.7 +NA,NA,a-cure-i1,2023-24,49.2,Saugus - Belmonte STEAM Academy,02620060, 7.1, 6.4, 30.9, 50.8, 0.6, 0.1, 4.1, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,51.2,Saugus - Saugus High,02620505, 7.3, 5.1, 36.0, 48.8, 0.8, 0.6, 1.4, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,46.0,Saugus - Saugus Middle School,02620305, 4.9, 7.9, 29.8, 54.0, 0.6, 0.2, 2.6, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,49.8,Saugus - Veterans Early Learning Center,02620065, 5.4, 8.2, 32.4, 50.2, 0.2, 0.0, 3.6, 57.3, 42.7, 0.0 +NA,NA,a-cure-i1,2023-24,8.5,Savoy - Emma L Miller Elementary School,02630010, 2.1, 0.0, 6.4, 91.5, 0.0, 0.0, 0.0, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,8.200000000000003,Scituate - Cushing Elementary,02640007, 0.3, 0.8, 3.5, 91.8, 0.0, 0.3, 3.3, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,8.299999999999997,Scituate - Gates Middle School,02640305, 2.3, 0.5, 2.8, 91.7, 0.0, 0.0, 2.8, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,8.0,Scituate - Hatherly Elementary,02640010, 2.8, 0.0, 2.4, 92.0, 0.0, 0.0, 2.8, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,11.599999999999994,Scituate - Jenkins Elementary School,02640015, 3.3, 0.0, 3.3, 88.4, 0.0, 0.0, 5.1, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Scituate - Scituate High School,02640505, 3.2, 0.8, 3.1, 89.3, 0.1, 0.0, 3.5, 49.7, 49.7, 0.7 +NA,NA,a-cure-i1,2023-24,7.700000000000003,Scituate - Wampatuck Elementary,02640020, 1.9, 0.0, 2.8, 92.3, 0.0, 0.0, 3.0, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,17.900000000000006,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 3.3, 3.7, 7.4, 82.1, 0.0, 0.0, 3.5, 48.4, 51.4, 0.2 +NA,NA,a-cure-i1,2023-24,18.599999999999994,Seekonk - George R Martin,02650007, 3.1, 5.2, 7.6, 81.4, 0.0, 0.0, 2.7, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,16.5,Seekonk - Mildred Aitken School,02650015, 2.1, 3.8, 5.7, 83.5, 0.2, 0.0, 4.7, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,16.700000000000003,Seekonk - Seekonk High,02650505, 2.9, 4.0, 6.2, 83.3, 0.0, 0.0, 3.7, 50.8, 48.7, 0.6 +NA,NA,a-cure-i1,2023-24,16.700000000000003,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 16.7, 0.0, 83.3, 0.0, 0.0, 0.0, 66.7, 33.3, 0.0 +NA,NA,a-cure-i1,2023-24,51.3,Sharon - Cottage Street,02660005, 6.6, 21.0, 11.8, 48.7, 0.0, 0.0, 11.8, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,49.5,Sharon - East Elementary,02660010, 4.3, 29.3, 7.2, 50.5, 0.0, 0.0, 8.7, 51.8, 48.0, 0.2 +NA,NA,a-cure-i1,2023-24,48.7,Sharon - Heights Elementary,02660015, 5.0, 31.9, 4.6, 51.3, 0.4, 0.0, 6.8, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,61.3,Sharon - Sharon Early Childhood Center,02660001, 0.0, 29.0, 25.8, 38.7, 0.0, 0.0, 6.5, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,49.2,Sharon - Sharon High,02660505, 5.2, 32.1, 5.6, 50.8, 0.2, 0.1, 6.1, 52.1, 47.8, 0.1 +NA,NA,a-cure-i1,2023-24,52.0,Sharon - Sharon Middle,02660305, 6.3, 32.6, 5.6, 48.0, 0.2, 0.0, 7.3, 48.9, 50.8, 0.2 +NA,NA,a-cure-i1,2023-24,15.200000000000003,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.7, 0.8, 9.0, 84.8, 0.4, 0.0, 3.3, 61.8, 37.6, 0.6 +NA,NA,a-cure-i1,2023-24,24.400000000000006,Sherborn - Pine Hill,02690010, 4.5, 9.2, 5.0, 75.6, 0.0, 0.0, 5.7, 49.9, 50.1, 0.0 +NA,NA,a-cure-i1,2023-24,64.2,Shrewsbury - Calvin Coolidge School,02710015, 4.9, 31.6, 22.2, 35.8, 0.3, 0.0, 5.2, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,69.7,Shrewsbury - Floral Street School,02710020, 6.1, 48.2, 8.1, 30.3, 1.1, 0.0, 6.3, 56.8, 43.2, 0.0 +NA,NA,a-cure-i1,2023-24,60.9,Shrewsbury - Major Howard W. Beal School,02710005, 4.1, 38.7, 10.9, 39.1, 0.8, 0.2, 6.3, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,56.0,Shrewsbury - Oak Middle School,02710030, 5.0, 35.3, 10.7, 44.0, 0.4, 0.0, 4.6, 52.0, 47.9, 0.1 +NA,NA,a-cure-i1,2023-24,64.8,Shrewsbury - Parker Road Preschool,02710040, 8.0, 40.2, 12.1, 35.2, 1.5, 0.0, 3.0, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,55.7,Shrewsbury - Sherwood Middle School,02710305, 4.7, 34.8, 9.3, 44.3, 0.9, 0.0, 6.1, 52.2, 47.5, 0.2 +NA,NA,a-cure-i1,2023-24,50.9,Shrewsbury - Shrewsbury High School,02710505, 4.1, 30.2, 11.0, 49.1, 0.4, 0.0, 5.2, 50.2, 49.7, 0.2 +NA,NA,a-cure-i1,2023-24,45.5,Shrewsbury - Spring Street School,02710035, 3.6, 29.2, 6.9, 54.5, 0.0, 0.0, 5.8, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,34.099999999999994,Shrewsbury - Walter J. Paton School,02710025, 1.9, 15.6, 8.9, 65.9, 0.4, 0.0, 7.4, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,16.200000000000003,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.0, 9.0, 83.8, 0.9, 0.0, 5.4, 44.1, 55.0, 0.9 +NA,NA,a-cure-i1,2023-24,10.0,Silver Lake - Silver Lake Regional High,07600505, 1.9, 1.0, 5.0, 90.0, 0.5, 0.0, 1.8, 50.8, 49.1, 0.1 +NA,NA,a-cure-i1,2023-24,5.900000000000006,Silver Lake - Silver Lake Regional Middle School,07600405, 1.2, 0.2, 3.0, 94.1, 0.5, 0.2, 0.7, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,39.1,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 8.6, 1.3, 24.8, 60.9, 0.3, 0.3, 3.6, 48.0, 51.0, 1.0 +NA,NA,a-cure-i1,2023-24,13.400000000000006,Somerset - Chace Street,02730005, 1.3, 2.0, 6.6, 86.6, 0.3, 0.0, 3.3, 45.9, 54.1, 0.0 +NA,NA,a-cure-i1,2023-24,14.700000000000003,Somerset - North Elementary,02730008, 1.7, 1.9, 5.8, 85.3, 0.0, 0.2, 5.0, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,11.299999999999997,Somerset - Somerset Middle School,02730305, 0.9, 2.1, 5.5, 88.7, 0.2, 0.0, 2.7, 54.1, 45.9, 0.0 +NA,NA,a-cure-i1,2023-24,19.099999999999994,Somerset - South,02730015, 2.7, 1.9, 7.6, 80.9, 1.1, 0.0, 5.7, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,12.599999999999994,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 2.1, 1.7, 6.4, 87.4, 0.4, 0.0, 2.1, 49.2, 50.7, 0.1 +NA,NA,a-cure-i1,2023-24,55.9,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.0, 7.4, 34.6, 44.1, 0.4, 0.2, 8.3, 53.2, 46.6, 0.2 +NA,NA,a-cure-i1,2023-24,72.6,Somerville - Arthur D Healey,02740075, 13.8, 2.7, 51.0, 27.4, 0.4, 0.2, 4.5, 48.8, 50.8, 0.4 +NA,NA,a-cure-i1,2023-24,39.6,Somerville - Benjamin G Brown,02740015, 6.7, 8.0, 6.7, 60.4, 0.0, 0.0, 18.2, 43.1, 56.9, 0.0 +NA,NA,a-cure-i1,2023-24,67.0,Somerville - Capuano Early Childhood Center,02740005, 8.7, 11.7, 38.3, 33.0, 0.0, 0.0, 8.3, 60.4, 39.6, 0.0 +NA,NA,a-cure-i1,2023-24,80.2,Somerville - E Somerville Community,02740111, 5.9, 5.7, 65.5, 19.8, 0.0, 0.1, 3.0, 54.8, 45.1, 0.1 +NA,NA,a-cure-i1,2023-24,78.1,Somerville - Full Circle High School,02740510, 18.8, 0.0, 57.8, 21.9, 0.0, 0.0, 1.6, 56.3, 42.2, 1.6 +NA,NA,a-cure-i1,2023-24,32.400000000000006,Somerville - John F Kennedy,02740083, 4.2, 6.3, 13.4, 67.6, 0.2, 0.2, 8.0, 52.7, 47.1, 0.2 +NA,NA,a-cure-i1,2023-24,61.5,Somerville - Next Wave Junior High,02740410, 7.7, 0.0, 46.2, 38.5, 0.0, 0.0, 7.7, 84.6, 15.4, 0.0 +NA,NA,a-cure-i1,2023-24,65.5,Somerville - Somerville High,02740505, 9.5, 5.8, 46.3, 34.5, 0.1, 0.1, 3.7, 53.0, 45.7, 1.3 +NA,NA,a-cure-i1,2023-24,39.7,Somerville - West Somerville Neighborhood,02740115, 10.1, 6.1, 9.8, 60.3, 0.0, 0.5, 13.2, 51.1, 48.4, 0.5 +NA,NA,a-cure-i1,2023-24,63.5,Somerville - Winter Hill Community,02740120, 9.2, 5.0, 45.4, 36.5, 0.0, 0.2, 3.7, 56.1, 43.4, 0.5 +NA,NA,a-cure-i1,2023-24,21.5,South Hadley - Michael E. Smith Middle School,02780305, 1.0, 1.4, 16.4, 78.5, 0.0, 0.0, 2.7, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,26.900000000000006,South Hadley - Mosier,02780020, 2.5, 1.1, 19.4, 73.1, 0.3, 0.0, 3.6, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,29.799999999999997,South Hadley - Plains Elementary,02780015, 1.5, 2.6, 18.5, 70.2, 0.8, 0.0, 6.4, 57.0, 43.0, 0.0 +NA,NA,a-cure-i1,2023-24,23.200000000000003,South Hadley - South Hadley High,02780505, 2.8, 2.0, 16.9, 76.8, 0.2, 0.0, 1.4, 51.0, 48.0, 1.0 +NA,NA,a-cure-i1,2023-24,53.8,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 4.7, 1.5, 41.8, 46.2, 1.7, 0.0, 4.1, 55.7, 42.9, 1.4 +NA,NA,a-cure-i1,2023-24,61.4,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 36.8, 8.2, 8.2, 38.6, 0.9, 0.3, 6.9, 50.6, 48.9, 0.5 +NA,NA,a-cure-i1,2023-24,13.900000000000006,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 3.3, 0.1, 8.7, 86.1, 0.0, 0.0, 1.8, 66.0, 33.0, 1.0 +NA,NA,a-cure-i1,2023-24,11.5,Southampton - William E Norris,02750005, 0.0, 0.4, 7.9, 88.5, 0.0, 0.0, 3.2, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,36.4,Southborough - Albert S. Woodward Memorial School,02760050, 0.8, 27.5, 5.7, 63.6, 0.0, 0.4, 2.0, 48.2, 51.8, 0.0 +NA,NA,a-cure-i1,2023-24,32.3,Southborough - Margaret A Neary,02760020, 1.4, 20.7, 5.3, 67.7, 0.0, 0.0, 4.9, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,47.1,Southborough - Mary E Finn School,02760008, 2.2, 28.2, 6.8, 52.9, 0.3, 0.0, 9.6, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,31.900000000000006,Southborough - P Brent Trottier,02760305, 0.7, 18.9, 5.4, 68.1, 0.2, 0.0, 6.6, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,71.0,Southbridge - Charlton Street,02770005, 2.5, 2.1, 64.3, 29.0, 0.4, 0.0, 1.8, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,74.5,Southbridge - Eastford Road,02770010, 4.6, 0.6, 65.5, 25.5, 0.9, 0.0, 2.9, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,58.3,Southbridge - Southbridge Academy,02770525, 2.8, 0.0, 52.8, 41.7, 0.0, 0.0, 2.8, 66.7, 33.3, 0.0 +NA,NA,a-cure-i1,2023-24,71.8,Southbridge - Southbridge High School,02770515, 2.6, 1.5, 66.5, 28.2, 0.4, 0.2, 0.6, 57.0, 42.4, 0.6 +NA,NA,a-cure-i1,2023-24,68.9,Southbridge - Southbridge Middle School,02770315, 2.1, 1.4, 62.6, 31.1, 0.7, 0.0, 2.1, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,79.9,Southbridge - West Street,02770020, 3.7, 0.3, 73.5, 20.1, 0.3, 0.3, 1.8, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,62.5,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 40.8, 1.4, 15.4, 37.5, 0.0, 0.0, 4.9, 46.7, 52.2, 1.1 +NA,NA,a-cure-i1,2023-24,20.599999999999994,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.7, 11.0, 79.4, 0.7, 0.0, 7.5, 50.9, 48.8, 0.4 +NA,NA,a-cure-i1,2023-24,7.700000000000003,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 4.6, 92.3, 0.0, 0.0, 3.1, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,27.299999999999997,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 9.1, 72.7, 0.0, 0.0, 18.2, 27.3, 72.7, 0.0 +NA,NA,a-cure-i1,2023-24,21.799999999999997,Southern Berkshire - Undermountain,07650035, 0.4, 1.2, 14.4, 78.2, 0.4, 0.0, 5.4, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,19.0,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 1.2, 1.0, 13.7, 81.0, 0.0, 0.0, 3.1, 56.0, 44.0, 0.0 +NA,NA,a-cure-i1,2023-24,13.900000000000006,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.3, 1.6, 7.9, 86.1, 0.3, 0.0, 2.9, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.3, 1.0, 5.9, 88.9, 0.2, 0.0, 2.8, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,13.700000000000003,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.6, 2.2, 7.5, 86.3, 0.3, 0.0, 3.1, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,29.0,Spencer-E Brookfield - David Prouty High,07670505, 3.3, 2.4, 17.8, 71.0, 0.6, 0.0, 4.8, 53.5, 45.9, 0.6 +NA,NA,a-cure-i1,2023-24,21.099999999999994,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.8, 1.6, 11.7, 78.9, 0.8, 0.0, 4.0, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,31.099999999999994,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.8, 0.5, 24.7, 68.9, 0.0, 0.0, 3.1, 53.5, 46.3, 0.3 +NA,NA,a-cure-i1,2023-24,32.2,Spencer-E Brookfield - Wire Village School,07670040, 3.5, 2.2, 22.8, 67.8, 0.2, 0.2, 3.1, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,84.5,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 18.8, 0.0, 57.6, 15.5, 0.0, 0.0, 8.0, 44.9, 55.1, 0.0 +NA,NA,a-cure-i1,2023-24,85.9,Springfield - Alice B Beal Elementary,02810175, 17.4, 7.6, 55.9, 14.1, 0.3, 0.0, 4.6, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,90.2,Springfield - Arthur T Talmadge,02810165, 17.0, 3.1, 64.3, 9.8, 0.0, 0.0, 5.8, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,90.8,Springfield - Balliet Preschool,02810003, 17.6, 1.5, 68.7, 9.2, 0.0, 0.0, 3.1, 58.8, 41.2, 0.0 +NA,NA,a-cure-i1,2023-24,97.0,Springfield - Benjamin Swan Elementary,02810085, 22.2, 0.8, 68.3, 3.0, 0.2, 0.0, 5.4, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,96.2,Springfield - Brightwood,02810025, 7.5, 0.2, 87.7, 3.8, 0.0, 0.0, 0.8, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,88.2,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 22.8, 3.1, 59.1, 11.8, 0.0, 0.0, 3.1, 55.9, 44.1, 0.0 +NA,NA,a-cure-i1,2023-24,90.8,Springfield - Conservatory of the Arts,02810475, 19.5, 0.3, 69.6, 9.2, 0.0, 0.0, 1.3, 33.3, 66.3, 0.3 +NA,NA,a-cure-i1,2023-24,78.6,Springfield - Daniel B Brunton,02810035, 15.3, 2.0, 54.6, 21.4, 0.0, 0.3, 6.4, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,97.9,Springfield - Early Childhood Education Center,02810001, 19.1, 0.5, 70.7, 2.1, 0.0, 0.0, 7.4, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,94.9,Springfield - Edward P. Boland School,02810010, 10.6, 1.4, 80.0, 5.1, 0.0, 0.2, 2.7, 57.0, 42.6, 0.4 +NA,NA,a-cure-i1,2023-24,97.9,Springfield - Elias Brookings,02810030, 21.8, 0.3, 73.4, 2.1, 0.0, 0.0, 2.4, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,90.9,Springfield - Emergence Academy,02810318, 19.9, 0.4, 67.1, 9.1, 0.0, 0.0, 3.5, 50.6, 48.9, 0.4 +NA,NA,a-cure-i1,2023-24,94.0,Springfield - Forest Park Middle,02810325, 19.4, 2.8, 68.7, 6.0, 0.0, 0.0, 3.2, 48.6, 51.1, 0.4 +NA,NA,a-cure-i1,2023-24,89.5,Springfield - Frank H Freedman,02810075, 18.0, 2.6, 62.2, 10.5, 0.4, 0.0, 6.4, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,84.0,Springfield - Frederick Harris,02810080, 18.9, 4.3, 53.7, 16.0, 0.6, 0.2, 6.3, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,92.9,Springfield - Gateway to College at Holyoke Community College,02810575, 25.0, 3.6, 64.3, 7.1, 0.0, 0.0, 0.0, 25.0, 75.0, 0.0 +NA,NA,a-cure-i1,2023-24,100.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 32.0, 0.0, 68.0, 0.0, 0.0, 0.0, 0.0, 24.0, 76.0, 0.0 +NA,NA,a-cure-i1,2023-24,97.3,Springfield - German Gerena Community School,02810195, 14.4, 0.6, 77.5, 2.7, 0.3, 0.0, 4.3, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,91.9,Springfield - Glenwood,02810065, 9.5, 1.0, 78.4, 8.1, 0.0, 0.0, 3.0, 51.0, 48.6, 0.3 +NA,NA,a-cure-i1,2023-24,87.6,Springfield - Glickman Elementary,02810068, 14.0, 2.2, 65.1, 12.4, 0.3, 0.0, 6.0, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Springfield - High School Of Commerce,02810510, 15.9, 1.1, 72.4, 8.4, 0.0, 0.0, 2.2, 51.0, 48.7, 0.3 +NA,NA,a-cure-i1,2023-24,92.8,Springfield - Hiram L Dorman,02810050, 13.7, 1.8, 72.9, 7.2, 0.0, 0.0, 4.3, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,95.5,Springfield - Impact Prep at Chestnut,02810366, 12.4, 0.0, 80.2, 4.5, 0.5, 0.0, 2.5, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,91.3,Springfield - Indian Orchard Elementary,02810100, 18.9, 0.7, 66.0, 8.7, 0.2, 0.0, 5.5, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,92.9,Springfield - John F Kennedy Middle,02810328, 21.5, 0.5, 67.3, 7.1, 0.0, 0.0, 3.5, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,89.0,Springfield - John J Duggan Academy,02810320, 24.9, 2.3, 59.0, 11.0, 0.1, 0.0, 2.8, 53.9, 45.8, 0.2 +NA,NA,a-cure-i1,2023-24,95.4,Springfield - Kensington International School,02810110, 15.6, 1.1, 74.4, 4.6, 0.0, 0.0, 4.2, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,90.9,Springfield - Kiley Academy,02810316, 24.7, 1.7, 60.6, 9.1, 0.0, 0.0, 3.8, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,90.5,Springfield - Kiley Prep,02810315, 22.8, 1.9, 63.9, 9.5, 0.0, 0.0, 1.9, 51.0, 48.7, 0.4 +NA,NA,a-cure-i1,2023-24,90.7,Springfield - Liberty,02810115, 9.8, 0.4, 78.9, 9.3, 0.4, 0.0, 1.2, 54.9, 45.1, 0.0 +NA,NA,a-cure-i1,2023-24,28.599999999999994,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 28.6, 71.4, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 +NA,NA,a-cure-i1,2023-24,96.0,Springfield - Lincoln,02810120, 9.9, 0.2, 84.4, 4.0, 0.0, 0.0, 1.5, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,92.0,Springfield - Margaret C Ells,02810060, 15.2, 1.4, 68.8, 8.0, 0.0, 0.0, 6.5, 55.1, 44.9, 0.0 +NA,NA,a-cure-i1,2023-24,84.5,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 15.5, 7.6, 56.2, 15.5, 0.3, 0.0, 4.8, 47.6, 52.4, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Springfield - Mary M Lynch,02810140, 22.6, 0.9, 62.4, 8.4, 0.0, 0.0, 5.8, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,82.7,Springfield - Mary M Walsh,02810155, 16.1, 0.0, 62.2, 17.3, 0.0, 0.0, 4.4, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,93.4,Springfield - Mary O Pottenger,02810145, 11.5, 1.4, 77.6, 6.6, 0.0, 0.0, 3.0, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,96.9,Springfield - Milton Bradley School,02810023, 16.6, 0.3, 73.1, 3.1, 0.3, 0.0, 6.6, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,97.1,Springfield - Rebecca M Johnson,02810055, 20.7, 0.0, 74.8, 2.9, 0.2, 0.0, 1.5, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,92.6,Springfield - Rise Academy at Van Sickle,02810480, 20.8, 0.9, 68.1, 7.4, 0.0, 0.0, 2.8, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,93.2,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 16.3, 2.5, 72.3, 6.8, 0.1, 0.0, 2.0, 44.7, 55.1, 0.2 +NA,NA,a-cure-i1,2023-24,88.1,Springfield - Samuel Bowles,02810020, 14.5, 1.0, 68.7, 11.9, 0.6, 0.3, 2.9, 51.0, 48.7, 0.3 +NA,NA,a-cure-i1,2023-24,93.1,Springfield - South End Middle School,02810355, 19.6, 0.0, 69.8, 6.9, 0.0, 0.0, 3.7, 45.5, 54.5, 0.0 +NA,NA,a-cure-i1,2023-24,92.4,Springfield - Springfield Central High,02810500, 21.3, 2.4, 65.7, 7.6, 0.0, 0.0, 2.9, 55.8, 44.1, 0.1 +NA,NA,a-cure-i1,2023-24,91.0,Springfield - Springfield High School,02810570, 17.6, 0.0, 71.0, 9.0, 0.0, 0.0, 2.3, 56.6, 43.0, 0.5 +NA,NA,a-cure-i1,2023-24,94.3,Springfield - Springfield High School of Science and Technology,02810530, 19.0, 1.0, 71.4, 5.7, 0.0, 0.1, 2.9, 56.8, 43.0, 0.2 +NA,NA,a-cure-i1,2023-24,87.5,Springfield - Springfield International Academy at Johnson,02810215, 40.6, 0.0, 40.6, 12.5, 0.0, 0.0, 6.3, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,98.6,Springfield - Springfield International Academy at Sci-Tech,02810700, 9.7, 2.8, 84.7, 1.4, 0.0, 0.0, 1.4, 65.3, 34.7, 0.0 +NA,NA,a-cure-i1,2023-24,98.6,Springfield - Springfield Legacy Academy,02810317, 7.3, 0.6, 89.9, 1.4, 0.0, 0.0, 0.8, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,85.7,Springfield - Springfield Middle School,02810360, 14.3, 0.0, 64.3, 14.3, 0.0, 0.0, 7.1, 71.4, 28.6, 0.0 +NA,NA,a-cure-i1,2023-24,97.3,Springfield - Springfield Public Day Elementary School,02810005, 24.3, 0.0, 67.6, 2.7, 2.7, 0.0, 2.7, 78.4, 21.6, 0.0 +NA,NA,a-cure-i1,2023-24,83.3,Springfield - Springfield Public Day High School,02810550, 11.5, 0.0, 70.5, 16.7, 0.0, 0.0, 1.3, 69.2, 30.8, 0.0 +NA,NA,a-cure-i1,2023-24,91.8,Springfield - Springfield Public Day Middle School,02810345, 21.3, 0.0, 67.2, 8.2, 0.0, 0.0, 3.3, 78.7, 21.3, 0.0 +NA,NA,a-cure-i1,2023-24,98.0,Springfield - Springfield Realization Academy,02810335, 21.6, 4.5, 68.8, 2.0, 0.0, 0.0, 3.0, 46.2, 53.8, 0.0 +NA,NA,a-cure-i1,2023-24,86.1,Springfield - Springfield Transition Academy,02810675, 16.5, 2.6, 67.0, 13.9, 0.0, 0.0, 0.0, 67.8, 32.2, 0.0 +NA,NA,a-cure-i1,2023-24,89.5,Springfield - STEM Middle Academy,02810350, 9.1, 3.8, 72.5, 10.5, 0.7, 0.0, 3.5, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Springfield - Sumner Avenue,02810160, 18.4, 3.1, 65.8, 8.4, 0.0, 0.0, 4.3, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,88.3,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 20.0, 2.5, 63.7, 11.7, 0.0, 0.0, 2.1, 46.0, 54.0, 0.0 +NA,NA,a-cure-i1,2023-24,92.8,Springfield - The Springfield Virtual School,02810705, 14.5, 0.3, 75.0, 7.2, 0.0, 0.0, 3.0, 49.0, 50.7, 0.3 +NA,NA,a-cure-i1,2023-24,91.7,Springfield - Thomas M Balliet,02810015, 19.4, 3.6, 62.6, 8.3, 0.0, 0.0, 6.1, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,91.7,Springfield - Van Sickle Academy,02810485, 9.9, 2.8, 77.8, 8.3, 0.4, 0.0, 0.8, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,94.1,Springfield - Warner,02810180, 24.4, 0.8, 66.0, 5.9, 0.0, 0.0, 2.9, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,92.2,Springfield - Washington,02810185, 17.9, 4.3, 64.5, 7.8, 0.0, 0.0, 5.5, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,96.2,Springfield - White Street,02810190, 18.9, 2.8, 71.9, 3.8, 0.3, 0.0, 2.3, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,96.5,Springfield - William N. DeBerry,02810045, 21.0, 0.0, 71.5, 3.5, 0.0, 0.0, 4.0, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,87.0,Springfield International Charter (District) - Springfield International Charter School,04410505, 28.1, 3.1, 49.7, 13.0, 0.1, 0.0, 6.0, 50.6, 49.3, 0.1 +NA,NA,a-cure-i1,2023-24,95.3,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 20.5, 2.5, 70.8, 4.7, 0.0, 0.0, 1.4, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,21.799999999999997,Stoneham - Colonial Park,02840005, 2.7, 8.2, 7.4, 78.2, 0.8, 0.0, 2.7, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,26.5,Stoneham - Robin Hood,02840025, 2.0, 4.8, 12.0, 73.5, 0.8, 0.0, 6.9, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,34.2,Stoneham - South,02840030, 4.5, 7.6, 15.5, 65.8, 0.6, 0.3, 5.6, 52.3, 47.5, 0.3 +NA,NA,a-cure-i1,2023-24,25.599999999999994,Stoneham - Stoneham Central Middle School,02840405, 2.9, 5.1, 13.1, 74.4, 0.3, 0.0, 4.1, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,22.400000000000006,Stoneham - Stoneham High,02840505, 2.2, 6.3, 11.1, 77.6, 0.0, 0.0, 2.7, 49.6, 49.7, 0.7 +NA,NA,a-cure-i1,2023-24,69.9,Stoughton - Edwin A Jones Early Childhood Center,02850012, 32.7, 14.2, 12.4, 30.1, 0.0, 0.9, 9.7, 60.2, 39.8, 0.0 +NA,NA,a-cure-i1,2023-24,48.4,Stoughton - Helen Hansen Elementary,02850010, 20.2, 6.3, 12.7, 51.6, 0.4, 0.8, 7.9, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,51.6,Stoughton - Joseph H Gibbons,02850025, 23.1, 4.0, 16.8, 48.4, 0.3, 0.3, 7.2, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,51.9,Stoughton - Joseph R Dawe Jr Elementary,02850014, 25.2, 5.9, 15.9, 48.1, 0.3, 0.0, 4.6, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,58.0,Stoughton - O'Donnell Middle School,02850405, 28.9, 5.3, 17.4, 42.0, 0.4, 0.1, 5.9, 51.5, 48.4, 0.1 +NA,NA,a-cure-i1,2023-24,58.3,Stoughton - Richard L. Wilkins Elementary School,02850020, 21.0, 4.5, 24.9, 41.7, 0.3, 0.9, 6.6, 47.1, 52.9, 0.0 +NA,NA,a-cure-i1,2023-24,52.2,Stoughton - South Elementary,02850015, 20.8, 9.2, 13.3, 47.8, 0.0, 0.3, 8.5, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,56.1,Stoughton - Stoughton High,02850505, 28.8, 6.7, 15.0, 43.9, 0.2, 0.6, 4.7, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,22.200000000000003,Sturbridge - Burgess Elementary,02870005, 1.4, 1.7, 13.7, 77.8, 0.0, 0.0, 5.3, 48.2, 51.6, 0.2 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.7, 3.6, 6.1, 82.8, 0.0, 0.1, 4.7, 40.4, 58.2, 1.3 +NA,NA,a-cure-i1,2023-24,26.099999999999994,Sudbury - Ephraim Curtis Middle,02880305, 4.0, 9.8, 4.8, 73.9, 0.1, 0.1, 7.2, 51.9, 47.9, 0.1 +NA,NA,a-cure-i1,2023-24,28.099999999999994,Sudbury - General John Nixon Elementary,02880025, 2.1, 9.3, 5.4, 71.9, 0.0, 0.0, 11.4, 47.6, 52.1, 0.3 +NA,NA,a-cure-i1,2023-24,29.299999999999997,Sudbury - Israel Loring School,02880015, 2.4, 10.1, 10.8, 70.7, 0.0, 0.0, 6.0, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,25.400000000000006,Sudbury - Josiah Haynes,02880010, 3.6, 10.8, 5.9, 74.6, 0.3, 0.0, 4.9, 53.2, 46.3, 0.5 +NA,NA,a-cure-i1,2023-24,29.400000000000006,Sudbury - Peter Noyes,02880030, 1.9, 10.2, 7.5, 70.6, 0.2, 0.0, 9.6, 50.3, 49.4, 0.4 +NA,NA,a-cure-i1,2023-24,33.3,Sunderland - Sunderland Elementary,02890005, 2.7, 9.8, 13.1, 66.7, 0.0, 0.0, 7.7, 53.6, 45.9, 0.5 +NA,NA,a-cure-i1,2023-24,17.400000000000006,Sutton - Sutton Early Learning,02900003, 4.1, 1.8, 6.8, 82.6, 0.3, 0.0, 4.4, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,11.5,Sutton - Sutton Elementary,02900005, 3.5, 0.6, 4.8, 88.5, 0.0, 0.0, 2.6, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,16.799999999999997,Sutton - Sutton High School,02900510, 3.3, 2.8, 5.8, 83.2, 0.0, 0.0, 5.0, 46.3, 53.4, 0.3 +NA,NA,a-cure-i1,2023-24,10.799999999999997,Sutton - Sutton Middle School,02900305, 0.7, 2.4, 5.1, 89.2, 0.0, 0.0, 2.7, 46.8, 53.2, 0.0 +NA,NA,a-cure-i1,2023-24,26.200000000000003,Swampscott - Clarke,02910005, 2.4, 2.9, 17.0, 73.8, 0.5, 0.0, 3.4, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,30.099999999999994,Swampscott - Hadley,02910010, 3.9, 2.0, 18.8, 69.9, 0.8, 0.6, 3.9, 51.4, 48.6, 0.0 +NA,NA,a-cure-i1,2023-24,16.0,Swampscott - Stanley,02910020, 3.7, 3.7, 5.5, 84.0, 0.0, 0.0, 3.1, 55.8, 44.2, 0.0 +NA,NA,a-cure-i1,2023-24,26.599999999999994,Swampscott - Swampscott High,02910505, 5.1, 3.6, 14.9, 73.4, 0.3, 0.2, 2.6, 51.1, 48.6, 0.3 +NA,NA,a-cure-i1,2023-24,23.0,Swampscott - Swampscott Middle,02910305, 3.8, 3.3, 12.7, 77.0, 0.3, 0.0, 2.9, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,9.099999999999994,Swansea - Elizabeth S Brown,02920006, 2.2, 1.1, 2.9, 90.9, 0.7, 0.0, 2.2, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,7.0,Swansea - Gardner,02920015, 2.2, 0.7, 1.1, 93.0, 0.4, 0.0, 2.6, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,7.299999999999997,Swansea - Joseph Case High,02920505, 1.2, 1.0, 2.6, 92.7, 0.5, 0.0, 1.9, 49.3, 50.5, 0.2 +NA,NA,a-cure-i1,2023-24,6.900000000000006,Swansea - Joseph Case Jr High,02920305, 1.2, 1.0, 2.2, 93.1, 0.0, 0.0, 2.4, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,9.5,Swansea - Joseph G Luther,02920020, 2.8, 1.1, 2.8, 90.5, 0.0, 0.0, 2.8, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,8.200000000000003,Swansea - Mark G Hoyle Elementary,02920017, 0.8, 1.6, 1.9, 91.8, 0.4, 0.0, 3.5, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,15.0,Tantasqua - Tantasqua Regional Jr High,07700405, 1.4, 1.3, 8.2, 85.0, 0.0, 0.0, 4.1, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,14.900000000000006,Tantasqua - Tantasqua Regional Sr High,07700505, 1.4, 1.2, 10.1, 85.1, 0.2, 0.0, 2.1, 48.7, 50.8, 0.5 +NA,NA,a-cure-i1,2023-24,16.400000000000006,Tantasqua - Tantasqua Regional Vocational,07700605, 2.6, 1.1, 7.1, 83.6, 0.2, 0.0, 5.4, 62.7, 36.9, 0.4 +NA,NA,a-cure-i1,2023-24,39.5,Taunton - Benjamin Friedman Middle,02930315, 18.9, 1.0, 14.2, 60.5, 0.6, 0.0, 4.8, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,38.1,Taunton - East Taunton Elementary,02930010, 20.0, 0.6, 10.3, 61.9, 0.0, 0.0, 7.3, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,38.3,Taunton - Edmund Hatch Bennett,02930007, 17.3, 1.4, 14.6, 61.7, 0.0, 0.0, 5.1, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,38.3,Taunton - Edward F. Leddy Preschool,02930005, 22.2, 2.7, 10.3, 61.7, 0.4, 0.4, 2.3, 59.4, 40.6, 0.0 +NA,NA,a-cure-i1,2023-24,54.3,Taunton - Elizabeth Pole,02930027, 28.2, 1.5, 15.8, 45.7, 0.7, 0.3, 7.8, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,65.9,Taunton - H H Galligan,02930057, 30.8, 0.4, 26.9, 34.1, 0.4, 0.4, 7.2, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,56.1,Taunton - James L. Mulcahey Elementary School,02930015, 28.3, 0.8, 18.4, 43.9, 0.3, 0.3, 7.9, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,59.0,Taunton - John F Parker Middle,02930305, 33.7, 0.4, 15.9, 41.0, 0.0, 0.4, 8.6, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,36.3,Taunton - Joseph C Chamberlain,02930008, 14.7, 1.2, 13.2, 63.7, 0.2, 0.0, 6.9, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,42.1,Taunton - Joseph H Martin,02930042, 24.2, 1.1, 10.8, 57.9, 0.6, 0.2, 5.2, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,51.8,Taunton - Taunton Alternative High School,02930525, 22.4, 0.0, 18.8, 48.2, 1.2, 0.0, 9.4, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,45.0,Taunton - Taunton High,02930505, 23.8, 0.9, 14.1, 55.0, 0.3, 0.3, 5.5, 52.0, 47.9, 0.1 +NA,NA,a-cure-i1,2023-24,38.3,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 14.9, 0.0, 17.0, 61.7, 0.0, 2.1, 4.3, 31.9, 68.1, 0.0 +NA,NA,a-cure-i1,2023-24,47.5,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 10.8, 3.2, 25.5, 52.5, 0.4, 0.2, 7.4, 42.8, 56.8, 0.4 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Tewksbury - Center Elementary School,02950030, 4.8, 5.7, 8.5, 77.4, 0.0, 0.0, 3.5, 51.1, 48.9, 0.0 +NA,NA,a-cure-i1,2023-24,20.599999999999994,Tewksbury - Heath-Brook,02950010, 5.2, 4.2, 8.4, 79.4, 0.0, 0.0, 2.9, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Tewksbury - John F. Ryan,02950023, 5.0, 4.4, 9.1, 80.3, 0.2, 0.0, 1.0, 48.3, 51.7, 0.0 +NA,NA,a-cure-i1,2023-24,19.799999999999997,Tewksbury - John W. Wynn Middle,02950305, 4.6, 4.4, 9.2, 80.2, 0.0, 0.0, 1.5, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,29.599999999999994,Tewksbury - L F Dewing,02950001, 7.4, 8.4, 8.9, 70.4, 0.0, 0.0, 4.8, 46.4, 53.6, 0.0 +NA,NA,a-cure-i1,2023-24,21.799999999999997,Tewksbury - Tewksbury Memorial High,02950505, 5.7, 5.6, 9.3, 78.2, 0.1, 0.0, 1.1, 48.4, 51.5, 0.1 +NA,NA,a-cure-i1,2023-24,53.5,Tisbury - Tisbury Elementary,02960005, 5.5, 0.0, 40.6, 46.5, 2.2, 0.0, 5.2, 49.8, 50.2, 0.0 +NA,NA,a-cure-i1,2023-24,9.400000000000006,Topsfield - Proctor Elementary,02980005, 0.4, 1.2, 4.7, 90.6, 0.8, 0.0, 2.4, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,10.900000000000006,Topsfield - Steward Elementary,02980010, 0.3, 2.2, 5.6, 89.1, 0.0, 0.0, 2.8, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,19.799999999999997,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 2.5, 0.8, 12.1, 80.2, 0.1, 0.1, 4.1, 57.7, 41.2, 1.1 +NA,NA,a-cure-i1,2023-24,8.5,Triton - Newbury Elementary,07730020, 0.7, 0.9, 3.5, 91.5, 0.2, 0.0, 3.1, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,8.099999999999994,Triton - Pine Grove,07730025, 0.9, 0.9, 4.3, 91.9, 0.4, 0.0, 1.6, 49.7, 50.1, 0.2 +NA,NA,a-cure-i1,2023-24,19.0,Triton - Salisbury Elementary,07730015, 3.7, 1.7, 10.2, 81.0, 0.2, 0.0, 3.0, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,12.200000000000003,Triton - Triton Regional High School,07730505, 1.1, 3.2, 6.3, 87.8, 0.0, 0.2, 1.4, 53.8, 45.9, 0.4 +NA,NA,a-cure-i1,2023-24,13.700000000000003,Triton - Triton Regional Middle School,07730405, 2.5, 1.9, 5.7, 86.3, 0.0, 0.3, 3.2, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,35.2,Truro - Truro Central,03000005, 6.6, 0.0, 9.9, 64.8, 0.0, 0.0, 18.7, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,35.599999999999994,Tyngsborough - Tyngsborough Elementary,03010020, 5.6, 13.0, 11.8, 64.4, 0.1, 0.0, 5.0, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,27.400000000000006,Tyngsborough - Tyngsborough High School,03010505, 4.8, 10.5, 6.0, 72.6, 0.0, 0.0, 6.2, 53.3, 46.7, 0.0 +NA,NA,a-cure-i1,2023-24,29.5,Tyngsborough - Tyngsborough Middle,03010305, 6.2, 7.0, 10.8, 70.5, 0.3, 0.0, 5.1, 55.0, 44.7, 0.3 +NA,NA,a-cure-i1,2023-24,96.4,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 47.0, 3.0, 44.6, 3.6, 0.0, 0.0, 1.8, 48.8, 51.2, 0.0 +NA,NA,a-cure-i1,2023-24,98.8,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 51.7, 1.6, 42.9, 1.2, 0.2, 0.2, 2.2, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,13.700000000000003,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 2.7, 0.0, 86.3, 1.4, 0.0, 9.6, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,29.799999999999997,Up-Island Regional - West Tisbury Elementary,07740020, 1.8, 0.0, 17.5, 70.2, 4.3, 0.0, 6.2, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,18.900000000000006,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 2.2, 0.8, 7.9, 81.1, 0.7, 0.1, 7.1, 59.6, 39.8, 0.6 +NA,NA,a-cure-i1,2023-24,36.6,Uxbridge - Gateway to College,03040515, 4.9, 2.4, 22.0, 63.4, 0.0, 2.4, 4.9, 41.5, 56.1, 2.4 +NA,NA,a-cure-i1,2023-24,12.599999999999994,Uxbridge - Taft Early Learning Center,03040005, 0.9, 1.9, 7.3, 87.4, 0.0, 0.2, 2.3, 53.8, 46.2, 0.0 +NA,NA,a-cure-i1,2023-24,15.099999999999994,Uxbridge - Uxbridge High,03040505, 0.9, 2.6, 8.4, 84.9, 0.5, 0.0, 2.7, 58.4, 41.6, 0.0 +NA,NA,a-cure-i1,2023-24,14.900000000000006,Uxbridge - Whitin Intermediate,03040405, 1.3, 1.3, 8.8, 85.1, 0.4, 0.2, 2.9, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,95.3,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 19.2, 1.0, 70.7, 4.7, 0.5, 0.2, 3.7, 46.3, 53.3, 0.3 +NA,NA,a-cure-i1,2023-24,16.299999999999997,Wachusett - Central Tree Middle,07750310, 3.7, 1.8, 8.4, 83.7, 0.3, 0.0, 2.1, 47.4, 52.6, 0.0 +NA,NA,a-cure-i1,2023-24,17.599999999999994,Wachusett - Chocksett Middle School,07750315, 3.7, 2.9, 9.2, 82.4, 0.0, 0.0, 1.8, 52.0, 48.0, 0.0 +NA,NA,a-cure-i1,2023-24,17.5,Wachusett - Davis Hill Elementary,07750018, 4.6, 1.3, 8.8, 82.5, 0.2, 0.2, 2.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,20.5,Wachusett - Dawson,07750020, 3.1, 4.5, 7.8, 79.5, 0.2, 0.2, 4.7, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,23.599999999999994,Wachusett - Early Childhood Center,07750001, 6.4, 6.4, 9.3, 76.4, 0.0, 0.0, 1.4, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,17.5,Wachusett - Glenwood Elementary School,07750060, 5.2, 1.7, 6.3, 82.5, 0.0, 0.0, 4.3, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Wachusett - Houghton Elementary,07750027, 2.2, 3.1, 14.8, 75.8, 0.0, 0.0, 4.1, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,17.700000000000003,Wachusett - Leroy E.Mayo,07750032, 4.2, 2.9, 8.4, 82.3, 0.0, 0.0, 2.3, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,18.400000000000006,Wachusett - Mountview Middle,07750305, 3.6, 3.9, 7.7, 81.6, 0.1, 0.0, 3.1, 50.1, 49.8, 0.1 +NA,NA,a-cure-i1,2023-24,19.599999999999994,Wachusett - Naquag Elementary School,07750005, 4.5, 1.9, 10.3, 80.4, 0.0, 0.0, 2.9, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,15.299999999999997,Wachusett - Paxton Center,07750040, 1.6, 2.3, 7.2, 84.7, 0.0, 0.2, 3.9, 47.0, 53.0, 0.0 +NA,NA,a-cure-i1,2023-24,8.799999999999997,Wachusett - Thomas Prince,07750045, 1.7, 0.3, 5.1, 91.2, 0.0, 0.3, 1.4, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,16.900000000000006,Wachusett - Wachusett Regional High,07750505, 3.5, 3.7, 7.1, 83.1, 0.1, 0.1, 2.4, 47.3, 52.6, 0.1 +NA,NA,a-cure-i1,2023-24,16.299999999999997,Wakefield - Dolbeare,03050005, 0.9, 4.3, 8.7, 83.7, 0.0, 0.0, 2.5, 49.2, 50.8, 0.0 +NA,NA,a-cure-i1,2023-24,19.299999999999997,Wakefield - Early Childhood Center at the Doyle School,03050001, 2.2, 5.9, 5.9, 80.7, 0.0, 1.5, 3.7, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,21.799999999999997,Wakefield - Galvin Middle School,03050310, 2.6, 4.8, 9.8, 78.2, 0.3, 0.5, 3.9, 52.0, 47.8, 0.2 +NA,NA,a-cure-i1,2023-24,14.5,Wakefield - Greenwood,03050020, 1.8, 0.4, 5.7, 85.5, 0.0, 0.9, 5.7, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,20.5,Wakefield - Wakefield Memorial High,03050505, 3.5, 3.8, 9.8, 79.5, 0.2, 0.1, 3.1, 47.5, 52.1, 0.4 +NA,NA,a-cure-i1,2023-24,19.200000000000003,Wakefield - Walton,03050040, 2.8, 2.3, 11.3, 80.8, 0.0, 0.0, 2.8, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,24.900000000000006,Wakefield - Woodville School,03050015, 3.1, 4.9, 12.4, 75.1, 0.0, 0.7, 3.8, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,10.799999999999997,Wales - Wales Elementary,03060005, 2.2, 0.0, 7.5, 89.2, 1.1, 0.0, 0.0, 60.2, 39.8, 0.0 +NA,NA,a-cure-i1,2023-24,24.700000000000003,Walpole - Bird Middle,03070305, 8.0, 3.5, 8.5, 75.3, 0.8, 0.0, 4.0, 47.0, 52.8, 0.3 +NA,NA,a-cure-i1,2023-24,24.200000000000003,Walpole - Boyden,03070010, 7.7, 2.7, 10.4, 75.8, 0.5, 0.0, 3.0, 56.5, 43.5, 0.0 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Walpole - Daniel Feeney Preschool Center,03070002, 2.5, 8.9, 6.3, 72.2, 0.0, 0.0, 10.1, 63.3, 36.7, 0.0 +NA,NA,a-cure-i1,2023-24,25.5,Walpole - Eleanor N Johnson Middle,03070310, 4.1, 9.9, 8.4, 74.5, 0.2, 0.0, 2.9, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,22.0,Walpole - Elm Street School,03070005, 4.3, 8.5, 5.2, 78.0, 0.0, 0.0, 4.0, 46.2, 53.6, 0.2 +NA,NA,a-cure-i1,2023-24,28.799999999999997,Walpole - Fisher,03070015, 1.5, 14.2, 8.9, 71.2, 0.2, 0.4, 3.6, 48.4, 51.4, 0.2 +NA,NA,a-cure-i1,2023-24,22.200000000000003,Walpole - Old Post Road,03070018, 2.8, 3.8, 9.6, 77.8, 0.6, 0.0, 5.3, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,22.599999999999994,Walpole - Walpole High,03070505, 4.3, 7.8, 7.3, 77.4, 0.2, 0.0, 3.0, 50.2, 49.6, 0.2 +NA,NA,a-cure-i1,2023-24,40.0,Waltham - Douglas MacArthur Elementary School,03080032, 4.8, 10.3, 20.4, 60.0, 0.0, 0.2, 4.2, 46.3, 53.3, 0.4 +NA,NA,a-cure-i1,2023-24,80.3,Waltham - Dual Language School,03080001, 3.7, 0.9, 70.6, 19.7, 0.0, 0.0, 5.0, 53.2, 46.8, 0.0 +NA,NA,a-cure-i1,2023-24,87.3,Waltham - Henry Whittemore Elementary School,03080065, 5.7, 3.6, 76.7, 12.7, 0.0, 0.0, 1.3, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,45.8,Waltham - James Fitzgerald Elementary School,03080060, 2.8, 6.2, 31.4, 54.2, 0.0, 0.0, 5.4, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,52.7,Waltham - John F Kennedy Middle,03080404, 8.9, 4.8, 34.1, 47.3, 0.2, 0.0, 4.8, 54.3, 45.5, 0.2 +NA,NA,a-cure-i1,2023-24,75.3,Waltham - John W. McDevitt Middle School,03080415, 7.1, 2.8, 61.9, 24.7, 0.0, 0.3, 3.1, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,64.2,Waltham - Northeast Elementary School,03080040, 8.8, 7.8, 44.2, 35.8, 0.2, 0.2, 3.0, 47.2, 52.8, 0.0 +NA,NA,a-cure-i1,2023-24,62.5,Waltham - Thomas R Plympton Elementary School,03080050, 15.3, 4.8, 38.1, 37.5, 0.0, 0.0, 4.3, 54.3, 45.7, 0.0 +NA,NA,a-cure-i1,2023-24,66.8,Waltham - Waltham Sr High,03080505, 8.4, 3.9, 52.4, 33.2, 0.0, 0.0, 2.1, 54.4, 45.5, 0.1 +NA,NA,a-cure-i1,2023-24,65.4,Waltham - William F. Stanley Elementary School,03080005, 12.2, 8.8, 41.8, 34.6, 0.3, 0.3, 2.1, 56.9, 43.1, 0.0 +NA,NA,a-cure-i1,2023-24,30.599999999999994,Ware - Stanley M Koziol Elementary School,03090020, 3.3, 0.3, 19.0, 69.4, 0.5, 0.0, 7.5, 51.2, 48.3, 0.5 +NA,NA,a-cure-i1,2023-24,20.400000000000006,Ware - Ware Junior/Senior High School,03090505, 1.9, 0.2, 11.9, 79.6, 0.2, 0.4, 5.7, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,19.700000000000003,Ware - Ware Middle School,03090305, 3.8, 0.4, 11.0, 80.3, 0.8, 0.0, 3.8, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,26.700000000000003,Wareham - Wareham Cooperative Alternative School,03100315, 6.7, 0.0, 3.3, 73.3, 3.3, 0.0, 13.3, 40.0, 60.0, 0.0 +NA,NA,a-cure-i1,2023-24,25.599999999999994,Wareham - Wareham Elementary School,03100017, 6.0, 0.5, 8.4, 74.4, 0.9, 0.1, 9.8, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,39.4,Wareham - Wareham Middle,03100305, 9.2, 1.2, 11.4, 60.6, 1.5, 0.2, 15.8, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,36.4,Wareham - Wareham Senior High,03100505, 11.3, 0.2, 9.3, 63.6, 1.2, 0.2, 14.2, 51.3, 48.2, 0.5 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Warwick - Warwick Community School,03120020, 0.0, 0.0, 3.7, 88.9, 0.0, 0.0, 7.4, 74.1, 25.9, 0.0 +NA,NA,a-cure-i1,2023-24,43.2,Watertown - Cunniff,03140015, 2.9, 5.8, 23.5, 56.8, 0.3, 0.0, 10.6, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,44.6,Watertown - Hosmer,03140020, 5.0, 9.7, 21.1, 55.4, 0.0, 0.1, 8.6, 53.9, 46.0, 0.1 +NA,NA,a-cure-i1,2023-24,46.0,Watertown - James Russell Lowell,03140025, 2.7, 9.8, 21.8, 54.0, 0.0, 0.0, 11.7, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,44.3,Watertown - Watertown High,03140505, 3.9, 7.2, 25.8, 55.7, 0.3, 0.0, 7.1, 53.3, 46.2, 0.5 +NA,NA,a-cure-i1,2023-24,42.6,Watertown - Watertown Middle,03140305, 4.2, 7.4, 23.2, 57.4, 0.2, 0.0, 7.6, 49.2, 50.3, 0.5 +NA,NA,a-cure-i1,2023-24,29.200000000000003,Wayland - Claypit Hill School,03150005, 4.3, 11.2, 5.3, 70.8, 0.0, 0.0, 8.4, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,32.5,Wayland - Happy Hollow School,03150015, 2.6, 15.9, 5.5, 67.5, 0.0, 0.0, 8.4, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,34.7,Wayland - Loker School,03150020, 2.1, 14.9, 10.1, 65.3, 0.3, 0.0, 7.4, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,36.2,Wayland - The Children's Way Preschool,03150025, 2.1, 23.4, 6.4, 63.8, 0.0, 0.0, 4.3, 61.7, 38.3, 0.0 +NA,NA,a-cure-i1,2023-24,35.099999999999994,Wayland - Wayland High School,03150505, 5.9, 17.6, 4.9, 64.9, 0.0, 0.1, 6.7, 49.5, 50.4, 0.1 +NA,NA,a-cure-i1,2023-24,28.5,Wayland - Wayland Middle School,03150305, 4.5, 13.9, 4.5, 71.5, 0.0, 0.1, 5.4, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,58.4,Webster - Bartlett High School,03160505, 7.8, 2.9, 42.6, 41.6, 0.3, 0.3, 4.6, 57.6, 41.6, 0.8 +NA,NA,a-cure-i1,2023-24,53.1,Webster - Park Avenue Elementary,03160015, 7.1, 1.4, 39.9, 46.9, 0.0, 0.0, 4.8, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,54.1,Webster - Webster Middle School,03160315, 6.9, 2.0, 39.4, 45.9, 0.2, 0.0, 5.6, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,34.8,Wellesley - Ernest F Upham,03170050, 5.7, 12.1, 7.8, 65.2, 0.7, 0.0, 8.5, 56.0, 44.0, 0.0 +NA,NA,a-cure-i1,2023-24,19.5,Wellesley - Hunnewell,03170025, 1.5, 7.0, 6.0, 80.5, 0.0, 0.0, 5.0, 50.5, 49.5, 0.0 +NA,NA,a-cure-i1,2023-24,48.4,Wellesley - John D Hardy,03170020, 2.2, 31.6, 8.4, 51.6, 0.0, 0.0, 6.2, 51.6, 48.4, 0.0 +NA,NA,a-cure-i1,2023-24,43.7,Wellesley - Joseph E Fiske,03170015, 4.4, 25.9, 7.0, 56.3, 0.0, 0.0, 6.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,25.299999999999997,Wellesley - Katharine Lee Bates,03170005, 1.6, 7.9, 6.7, 74.7, 0.0, 0.0, 9.1, 52.2, 47.8, 0.0 +NA,NA,a-cure-i1,2023-24,43.3,Wellesley - Preschool at Wellesley Schools,03170001, 4.1, 20.6, 7.2, 56.7, 1.0, 0.0, 10.3, 62.9, 37.1, 0.0 +NA,NA,a-cure-i1,2023-24,33.099999999999994,Wellesley - Schofield,03170045, 3.3, 16.4, 8.4, 66.9, 0.0, 0.3, 4.7, 44.8, 55.2, 0.0 +NA,NA,a-cure-i1,2023-24,46.4,Wellesley - Sprague Elementary School,03170048, 3.1, 19.8, 9.9, 53.6, 0.0, 0.0, 13.7, 57.7, 42.3, 0.0 +NA,NA,a-cure-i1,2023-24,39.8,Wellesley - Wellesley Middle,03170305, 4.4, 19.0, 6.7, 60.2, 0.0, 0.0, 9.7, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,34.0,Wellesley - Wellesley Sr High,03170505, 4.8, 16.4, 7.1, 66.0, 0.0, 0.0, 5.7, 46.2, 53.5, 0.3 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Wellfleet - Wellfleet Elementary,03180005, 2.2, 1.1, 5.5, 81.3, 0.0, 0.0, 9.9, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,25.099999999999994,West Boylston - Major Edwards Elementary,03220005, 4.6, 2.6, 11.4, 74.9, 0.2, 0.2, 5.9, 52.1, 47.9, 0.0 +NA,NA,a-cure-i1,2023-24,23.700000000000003,West Boylston - West Boylston Junior/Senior High,03220505, 3.3, 3.6, 13.2, 76.3, 0.0, 0.2, 3.3, 48.7, 51.3, 0.0 +NA,NA,a-cure-i1,2023-24,24.599999999999994,West Bridgewater - Howard School,03230305, 7.8, 0.6, 8.4, 75.4, 0.0, 0.0, 7.8, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.900000000000006,West Bridgewater - Rose L Macdonald,03230003, 9.2, 1.2, 9.5, 76.1, 0.6, 0.0, 3.4, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,20.900000000000006,West Bridgewater - Spring Street School,03230005, 6.1, 2.7, 9.5, 79.1, 0.7, 0.0, 2.0, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,23.900000000000006,West Bridgewater - West Bridgewater Junior/Senior,03230505, 10.2, 1.1, 7.3, 76.1, 0.2, 0.2, 5.0, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,46.1,West Springfield - John Ashley,03320005, 7.8, 6.9, 25.5, 53.9, 0.0, 0.0, 5.9, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,37.1,West Springfield - John R Fausey,03320010, 3.4, 6.1, 22.0, 62.9, 0.0, 0.0, 5.6, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,65.9,West Springfield - Memorial,03320025, 6.3, 8.2, 45.2, 34.1, 0.0, 0.0, 6.3, 56.7, 43.3, 0.0 +NA,NA,a-cure-i1,2023-24,37.1,West Springfield - Mittineague,03320030, 0.7, 3.6, 28.6, 62.9, 0.0, 0.0, 4.3, 47.1, 52.9, 0.0 +NA,NA,a-cure-i1,2023-24,50.1,West Springfield - Philip G Coburn,03320007, 6.1, 9.2, 26.9, 49.9, 0.2, 0.2, 7.5, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,30.200000000000003,West Springfield - Tatham,03320040, 7.6, 3.8, 14.5, 69.8, 0.0, 0.0, 4.2, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,37.9,West Springfield - West Springfield High,03320505, 4.9, 7.9, 20.7, 62.1, 0.0, 0.1, 4.4, 52.4, 46.7, 0.9 +NA,NA,a-cure-i1,2023-24,39.6,West Springfield - West Springfield Middle,03320305, 4.9, 7.0, 22.1, 60.4, 0.0, 0.1, 5.5, 47.6, 52.2, 0.2 +NA,NA,a-cure-i1,2023-24,50.9,Westborough - Annie E Fales,03210010, 2.4, 37.0, 7.9, 49.1, 0.0, 0.0, 3.6, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,60.5,Westborough - Elsie A Hastings Elementary,03210025, 3.9, 33.6, 17.9, 39.5, 0.6, 0.0, 4.5, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,54.0,Westborough - J Harding Armstrong,03210005, 4.1, 31.3, 12.4, 46.0, 0.8, 0.0, 5.4, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,56.2,Westborough - Mill Pond School,03210045, 3.5, 39.4, 10.2, 43.8, 0.1, 0.1, 2.9, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,53.1,Westborough - Sarah W Gibbons Middle,03210305, 3.3, 34.3, 11.6, 46.9, 0.2, 0.0, 3.7, 50.9, 49.1, 0.0 +NA,NA,a-cure-i1,2023-24,47.9,Westborough - Westborough High,03210505, 3.1, 33.2, 8.8, 52.1, 0.2, 0.0, 2.7, 48.6, 51.0, 0.4 +NA,NA,a-cure-i1,2023-24,34.599999999999994,Westfield - Abner Gibbs,03250020, 0.0, 6.5, 25.4, 65.4, 0.0, 0.0, 2.7, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,24.5,Westfield - Fort Meadow Early Childhood Center,03250003, 1.4, 4.1, 14.3, 75.5, 0.0, 0.0, 4.8, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,58.0,Westfield - Franklin Ave,03250015, 3.4, 1.7, 44.3, 42.0, 0.0, 0.0, 8.6, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,19.900000000000006,Westfield - Highland,03250025, 0.6, 2.6, 11.5, 80.1, 0.0, 0.0, 5.2, 47.0, 53.0, 0.0 +NA,NA,a-cure-i1,2023-24,23.200000000000003,Westfield - Munger Hill,03250033, 2.1, 3.7, 12.5, 76.8, 0.0, 0.0, 4.9, 55.2, 44.8, 0.0 +NA,NA,a-cure-i1,2023-24,34.5,Westfield - Paper Mill,03250036, 1.9, 2.5, 22.5, 65.5, 0.0, 0.0, 7.6, 53.5, 46.5, 0.0 +NA,NA,a-cure-i1,2023-24,31.099999999999994,Westfield - Southampton Road,03250040, 1.6, 2.6, 21.3, 68.9, 0.0, 0.0, 5.6, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,29.599999999999994,Westfield - Westfield High,03250505, 2.2, 3.1, 20.1, 70.4, 0.2, 0.0, 4.1, 46.5, 53.4, 0.1 +NA,NA,a-cure-i1,2023-24,31.400000000000006,Westfield - Westfield Intermediate School,03250075, 2.0, 3.5, 21.9, 68.6, 0.1, 0.0, 3.8, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,27.099999999999994,Westfield - Westfield Middle School,03250310, 2.5, 2.3, 18.8, 72.9, 0.0, 0.1, 3.3, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,20.299999999999997,Westfield - Westfield Technical Academy,03250605, 1.6, 1.3, 15.5, 79.7, 0.0, 0.0, 1.8, 68.6, 30.8, 0.5 +NA,NA,a-cure-i1,2023-24,41.9,Westfield - Westfield Virtual School,03250705, 3.2, 1.6, 32.3, 58.1, 0.0, 0.0, 4.8, 51.6, 46.8, 1.6 +NA,NA,a-cure-i1,2023-24,23.900000000000006,Westford - Abbot Elementary,03260004, 0.3, 21.2, 1.3, 76.1, 0.3, 0.0, 0.8, 48.9, 51.1, 0.0 +NA,NA,a-cure-i1,2023-24,44.7,Westford - Blanchard Middle,03260310, 1.3, 35.3, 6.5, 55.3, 0.2, 0.0, 1.3, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,42.6,Westford - Col John Robinson,03260025, 3.3, 28.5, 6.6, 57.4, 0.0, 0.0, 4.3, 48.5, 51.5, 0.0 +NA,NA,a-cure-i1,2023-24,49.0,Westford - Day Elementary,03260007, 2.4, 36.1, 8.4, 51.0, 0.0, 0.7, 1.4, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,43.6,Westford - John A. Crisafulli Elementary School,03260045, 2.1, 35.8, 3.3, 56.4, 0.3, 0.0, 2.1, 54.5, 45.2, 0.3 +NA,NA,a-cure-i1,2023-24,28.900000000000006,Westford - Nabnasset,03260015, 1.0, 22.3, 3.9, 71.1, 0.3, 0.0, 1.3, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,58.6,Westford - Rita E. Miller Elementary School,03260055, 4.7, 44.6, 9.4, 41.4, 0.0, 0.0, 0.0, 61.2, 38.8, 0.0 +NA,NA,a-cure-i1,2023-24,37.7,Westford - Stony Brook School,03260330, 1.0, 31.2, 3.2, 62.3, 0.2, 0.2, 1.9, 51.4, 48.5, 0.2 +NA,NA,a-cure-i1,2023-24,39.2,Westford - Westford Academy,03260505, 2.4, 32.8, 3.3, 60.8, 0.5, 0.1, 0.1, 48.3, 51.4, 0.3 +NA,NA,a-cure-i1,2023-24,7.700000000000003,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 6.7, 92.3, 0.0, 0.0, 1.0, 57.7, 42.3, 0.0 +NA,NA,a-cure-i1,2023-24,39.9,Weston - Country,03300010, 3.8, 21.1, 8.8, 60.1, 0.0, 0.0, 6.3, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,35.2,Weston - Field Elementary School,03300012, 6.3, 16.1, 6.3, 64.8, 0.0, 0.0, 6.6, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,41.7,Weston - Weston High,03300505, 5.6, 23.1, 6.2, 58.3, 0.0, 0.0, 6.8, 54.1, 45.8, 0.2 +NA,NA,a-cure-i1,2023-24,45.6,Weston - Weston Middle,03300305, 6.3, 23.1, 9.3, 54.4, 0.0, 0.2, 6.5, 51.6, 48.1, 0.2 +NA,NA,a-cure-i1,2023-24,36.4,Weston - Woodland,03300015, 5.2, 18.2, 7.4, 63.6, 0.0, 0.0, 5.6, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,10.099999999999994,Westport - Alice A Macomber,03310015, 1.1, 0.0, 5.6, 89.9, 0.0, 0.0, 3.4, 45.5, 54.5, 0.0 +NA,NA,a-cure-i1,2023-24,10.700000000000003,Westport - Westport Elementary,03310030, 0.4, 0.9, 6.3, 89.3, 0.0, 0.2, 2.9, 46.9, 53.1, 0.0 +NA,NA,a-cure-i1,2023-24,10.0,Westport - Westport Middle-High School,03310515, 1.4, 0.7, 4.4, 90.0, 0.2, 0.0, 3.3, 53.1, 46.8, 0.1 +NA,NA,a-cure-i1,2023-24,34.400000000000006,Westwood - Downey,03350012, 0.0, 22.9, 5.1, 65.6, 0.0, 0.3, 6.1, 56.1, 43.9, 0.0 +NA,NA,a-cure-i1,2023-24,29.700000000000003,Westwood - E W Thurston Middle,03350305, 2.3, 13.8, 6.1, 70.3, 0.2, 0.2, 7.3, 52.6, 47.4, 0.0 +NA,NA,a-cure-i1,2023-24,22.200000000000003,Westwood - Martha Jones,03350017, 0.0, 10.5, 4.0, 77.8, 0.0, 0.0, 7.6, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,36.1,Westwood - Pine Hill Elementary School,03350030, 4.0, 14.3, 11.2, 63.9, 0.0, 0.0, 6.7, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,25.400000000000006,Westwood - Westwood High,03350505, 2.4, 12.9, 7.2, 74.6, 0.0, 0.1, 2.7, 51.7, 48.1, 0.2 +NA,NA,a-cure-i1,2023-24,30.599999999999994,Westwood - Westwood Integrated Preschool,03350050, 0.0, 16.7, 2.8, 69.4, 0.0, 0.0, 11.1, 58.3, 41.7, 0.0 +NA,NA,a-cure-i1,2023-24,20.700000000000003,Westwood - William E Sheehan,03350025, 0.3, 8.3, 4.7, 79.3, 0.0, 0.0, 7.3, 57.0, 43.0, 0.0 +NA,NA,a-cure-i1,2023-24,33.099999999999994,Weymouth - Academy Avenue,03360005, 8.9, 5.0, 12.4, 66.9, 0.0, 0.6, 6.2, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,37.5,Weymouth - Frederick C Murphy,03360050, 7.1, 6.0, 18.4, 62.5, 0.0, 0.0, 6.0, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,36.3,Weymouth - Johnson Early Childhood Center,03360003, 7.4, 13.7, 6.4, 63.7, 0.0, 0.0, 8.8, 57.4, 42.6, 0.0 +NA,NA,a-cure-i1,2023-24,30.099999999999994,Weymouth - Lawrence W Pingree,03360065, 5.6, 4.9, 12.8, 69.9, 0.4, 0.0, 6.4, 44.0, 56.0, 0.0 +NA,NA,a-cure-i1,2023-24,35.5,Weymouth - Maria Weston Chapman Middle School,03360020, 8.2, 5.8, 16.2, 64.5, 0.1, 0.0, 5.2, 48.8, 51.1, 0.1 +NA,NA,a-cure-i1,2023-24,34.7,Weymouth - Ralph Talbot,03360085, 10.1, 6.1, 13.5, 65.3, 0.0, 0.3, 4.7, 54.5, 45.5, 0.0 +NA,NA,a-cure-i1,2023-24,28.200000000000003,Weymouth - Thomas V Nash,03360060, 3.2, 7.1, 9.9, 71.8, 0.0, 0.0, 7.9, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,33.3,Weymouth - Thomas W. Hamilton Primary School,03360105, 4.0, 11.7, 11.4, 66.7, 0.3, 0.0, 6.0, 53.0, 47.0, 0.0 +NA,NA,a-cure-i1,2023-24,32.0,Weymouth - Wessagusset,03360110, 9.5, 9.8, 6.1, 68.0, 0.3, 0.0, 6.4, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,33.900000000000006,Weymouth - Weymouth High School,03360505, 8.9, 5.9, 14.7, 66.1, 0.3, 0.2, 4.0, 46.9, 52.8, 0.2 +NA,NA,a-cure-i1,2023-24,57.6,Weymouth - William Seach,03360080, 17.7, 6.0, 27.3, 42.4, 0.3, 0.0, 6.3, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,7.200000000000003,Whately - Whately Elementary,03370005, 0.8, 0.0, 4.8, 92.8, 0.0, 0.0, 1.6, 53.6, 46.4, 0.0 +NA,NA,a-cure-i1,2023-24,11.099999999999994,Whitman-Hanson - Hanson Middle School,07800315, 1.4, 1.7, 5.2, 88.9, 0.5, 0.2, 2.1, 51.2, 48.8, 0.0 +NA,NA,a-cure-i1,2023-24,13.5,Whitman-Hanson - Indian Head,07800035, 3.0, 1.0, 5.0, 86.5, 0.2, 0.2, 4.0, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,30.299999999999997,Whitman-Hanson - John H Duval,07800030, 6.2, 1.4, 17.2, 69.7, 0.9, 0.0, 4.6, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,23.599999999999994,Whitman-Hanson - Louise A Conley,07800010, 6.7, 2.9, 9.3, 76.4, 0.0, 0.0, 4.6, 48.6, 51.4, 0.0 +NA,NA,a-cure-i1,2023-24,22.900000000000006,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 5.7, 1.9, 10.5, 77.1, 0.0, 0.0, 4.8, 60.0, 40.0, 0.0 +NA,NA,a-cure-i1,2023-24,21.799999999999997,Whitman-Hanson - Whitman Hanson Regional,07800505, 6.2, 2.0, 9.8, 78.2, 0.9, 0.2, 2.7, 47.8, 52.2, 0.0 +NA,NA,a-cure-i1,2023-24,22.900000000000006,Whitman-Hanson - Whitman Middle,07800310, 6.7, 2.0, 10.3, 77.1, 1.0, 0.0, 3.0, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,38.8,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 3.6, 1.9, 28.6, 61.2, 0.1, 0.1, 4.5, 56.8, 42.1, 1.1 +NA,NA,a-cure-i1,2023-24,5.700000000000003,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.8, 4.9, 94.3, 0.0, 0.0, 0.0, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,25.0,Wilmington - Boutwell,03420005, 2.1, 6.9, 9.0, 75.0, 0.0, 0.0, 6.9, 47.9, 52.1, 0.0 +NA,NA,a-cure-i1,2023-24,20.5,Wilmington - North Intermediate,03420060, 1.2, 6.4, 7.6, 79.5, 0.4, 0.0, 4.8, 56.6, 43.4, 0.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Wilmington - Shawsheen Elementary,03420025, 1.8, 7.3, 4.7, 81.3, 0.0, 0.0, 5.0, 49.7, 50.3, 0.0 +NA,NA,a-cure-i1,2023-24,21.599999999999994,Wilmington - West Intermediate,03420080, 1.1, 9.5, 6.6, 78.4, 0.0, 0.0, 4.4, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,20.900000000000006,Wilmington - Wilmington High,03420505, 1.3, 7.8, 7.5, 79.1, 0.2, 0.0, 4.1, 49.6, 50.1, 0.3 +NA,NA,a-cure-i1,2023-24,17.200000000000003,Wilmington - Wilmington Middle School,03420330, 1.5, 6.9, 5.4, 82.8, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 +NA,NA,a-cure-i1,2023-24,19.799999999999997,Wilmington - Woburn Street,03420020, 2.8, 5.0, 6.4, 80.2, 0.3, 0.0, 5.3, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,18.900000000000006,Winchendon - Memorial,03430040, 1.3, 1.0, 11.6, 81.1, 0.3, 0.3, 4.3, 51.0, 49.0, 0.0 +NA,NA,a-cure-i1,2023-24,20.0,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 15.0, 80.0, 0.0, 0.0, 5.0, 60.0, 35.0, 5.0 +NA,NA,a-cure-i1,2023-24,18.700000000000003,Winchendon - Murdock High School,03430515, 2.0, 2.4, 11.5, 81.3, 0.0, 0.4, 2.4, 52.4, 46.8, 0.8 +NA,NA,a-cure-i1,2023-24,19.299999999999997,Winchendon - Murdock Middle School,03430315, 2.1, 1.7, 12.4, 80.7, 0.0, 0.3, 2.8, 59.3, 40.3, 0.3 +NA,NA,a-cure-i1,2023-24,14.900000000000006,Winchendon - Toy Town Elementary,03430050, 2.5, 0.7, 7.2, 85.1, 0.0, 0.0, 4.3, 52.5, 47.5, 0.0 +NA,NA,a-cure-i1,2023-24,24.099999999999994,Winchendon - Winchendon PreSchool Program,03430010, 2.5, 0.0, 13.9, 75.9, 0.0, 0.0, 7.6, 63.3, 36.7, 0.0 +NA,NA,a-cure-i1,2023-24,17.799999999999997,Winchester - Ambrose Elementary,03440045, 0.5, 8.6, 2.1, 82.2, 0.0, 0.0, 6.5, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,25.799999999999997,Winchester - Lincoln Elementary,03440005, 0.6, 13.2, 3.4, 74.2, 0.0, 0.0, 8.6, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,45.6,Winchester - Lynch Elementary,03440020, 1.4, 30.8, 4.7, 54.4, 0.0, 0.0, 8.7, 56.2, 43.8, 0.0 +NA,NA,a-cure-i1,2023-24,32.8,Winchester - McCall Middle,03440305, 1.5, 19.2, 3.6, 67.2, 0.1, 0.0, 8.5, 50.9, 49.0, 0.1 +NA,NA,a-cure-i1,2023-24,38.5,Winchester - Muraco Elementary,03440040, 0.9, 25.1, 5.3, 61.5, 0.3, 0.0, 6.8, 46.7, 53.0, 0.3 +NA,NA,a-cure-i1,2023-24,34.400000000000006,Winchester - Vinson-Owen Elementary,03440025, 0.5, 23.5, 1.9, 65.6, 0.0, 0.0, 8.5, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,32.900000000000006,Winchester - Winchester High School,03440505, 2.3, 19.8, 4.5, 67.1, 0.2, 0.0, 6.0, 48.3, 51.6, 0.1 +NA,NA,a-cure-i1,2023-24,27.799999999999997,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.8, 0.2, 24.4, 72.2, 0.0, 0.0, 1.4, 44.5, 55.5, 0.0 +NA,NA,a-cure-i1,2023-24,29.200000000000003,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.6, 0.6, 23.8, 70.8, 0.0, 0.0, 3.2, 52.4, 47.6, 0.0 +NA,NA,a-cure-i1,2023-24,28.400000000000006,Winthrop - Winthrop High School,03460505, 1.8, 1.2, 22.7, 71.6, 1.0, 0.2, 1.5, 49.4, 50.4, 0.2 +NA,NA,a-cure-i1,2023-24,26.5,Winthrop - Winthrop Middle School,03460305, 2.1, 0.0, 22.5, 73.5, 0.5, 0.0, 1.4, 49.4, 50.6, 0.0 +NA,NA,a-cure-i1,2023-24,34.0,Woburn - Clyde Reeves,03470040, 7.9, 8.8, 11.5, 66.0, 2.3, 0.0, 3.6, 53.2, 46.6, 0.2 +NA,NA,a-cure-i1,2023-24,32.400000000000006,Woburn - Daniel L Joyce Middle School,03470410, 8.3, 4.3, 15.0, 67.6, 1.1, 0.0, 3.7, 48.3, 51.5, 0.2 +NA,NA,a-cure-i1,2023-24,45.3,Woburn - Goodyear Elementary School,03470005, 8.5, 7.4, 24.9, 54.7, 1.1, 0.3, 3.1, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,26.5,Woburn - Hurld-Wyman Elementary School,03470020, 4.1, 4.1, 13.7, 73.5, 0.7, 0.2, 3.6, 53.7, 46.3, 0.0 +NA,NA,a-cure-i1,2023-24,36.4,Woburn - John F Kennedy Middle School,03470405, 8.4, 6.5, 16.0, 63.6, 2.0, 0.2, 3.3, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,43.4,Woburn - Linscott-Rumford,03470025, 9.7, 15.3, 13.3, 56.6, 1.0, 0.5, 3.6, 54.6, 45.4, 0.0 +NA,NA,a-cure-i1,2023-24,43.5,Woburn - Malcolm White,03470055, 7.1, 5.0, 22.8, 56.5, 3.8, 0.0, 4.7, 44.7, 54.7, 0.6 +NA,NA,a-cure-i1,2023-24,52.5,Woburn - Mary D Altavesta,03470065, 18.6, 9.8, 18.6, 47.5, 2.9, 0.0, 2.5, 47.5, 52.5, 0.0 +NA,NA,a-cure-i1,2023-24,49.8,Woburn - Shamrock,03470043, 15.3, 6.2, 22.5, 50.2, 1.5, 0.0, 4.4, 54.2, 45.8, 0.0 +NA,NA,a-cure-i1,2023-24,37.6,Woburn - Woburn High,03470505, 9.5, 5.8, 18.0, 62.4, 0.9, 0.2, 3.2, 47.4, 52.2, 0.4 +NA,NA,a-cure-i1,2023-24,80.6,Worcester - Belmont Street Community,03480020, 18.7, 5.8, 51.5, 19.4, 0.3, 0.0, 4.3, 52.3, 47.7, 0.0 +NA,NA,a-cure-i1,2023-24,71.3,Worcester - Burncoat Middle School,03480405, 15.9, 5.0, 46.2, 28.7, 0.0, 0.0, 4.2, 47.1, 52.8, 0.1 +NA,NA,a-cure-i1,2023-24,70.5,Worcester - Burncoat Senior High,03480503, 21.4, 5.0, 39.5, 29.5, 0.1, 0.1, 4.4, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,74.9,Worcester - Burncoat Street,03480035, 12.6, 3.5, 54.5, 25.1, 0.0, 0.0, 4.3, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,84.2,Worcester - Canterbury,03480045, 11.6, 10.1, 60.0, 15.8, 0.0, 0.0, 2.4, 52.8, 47.2, 0.0 +NA,NA,a-cure-i1,2023-24,85.4,Worcester - Chandler Elementary Community,03480050, 11.2, 9.7, 60.8, 14.6, 0.5, 0.0, 3.2, 54.0, 46.0, 0.0 +NA,NA,a-cure-i1,2023-24,86.1,Worcester - Chandler Magnet,03480052, 4.7, 0.9, 78.1, 13.9, 0.2, 0.0, 2.2, 46.0, 54.0, 0.0 +NA,NA,a-cure-i1,2023-24,80.6,Worcester - City View,03480053, 18.5, 2.8, 54.0, 19.4, 0.5, 0.0, 4.8, 50.1, 49.9, 0.0 +NA,NA,a-cure-i1,2023-24,93.5,Worcester - Claremont Academy,03480350, 10.7, 5.6, 75.5, 6.5, 0.2, 0.0, 1.5, 51.5, 48.5, 0.0 +NA,NA,a-cure-i1,2023-24,84.7,Worcester - Clark St Community,03480055, 19.9, 7.7, 53.3, 15.3, 0.4, 0.0, 3.4, 49.0, 51.0, 0.0 +NA,NA,a-cure-i1,2023-24,80.3,Worcester - Columbus Park,03480060, 10.7, 6.1, 59.2, 19.7, 0.8, 0.0, 3.5, 53.1, 46.9, 0.0 +NA,NA,a-cure-i1,2023-24,62.4,Worcester - Doherty Memorial High,03480512, 15.3, 6.0, 35.5, 37.6, 0.3, 0.0, 5.3, 53.2, 46.6, 0.1 +NA,NA,a-cure-i1,2023-24,81.6,Worcester - Elm Park Community,03480095, 13.9, 5.2, 59.8, 18.4, 0.0, 0.0, 2.7, 53.9, 46.1, 0.0 +NA,NA,a-cure-i1,2023-24,30.200000000000003,Worcester - Flagg Street,03480090, 5.4, 4.1, 16.0, 69.8, 0.3, 0.0, 4.4, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,65.9,Worcester - Forest Grove Middle,03480415, 13.5, 5.7, 41.7, 34.1, 0.1, 0.0, 4.8, 49.6, 50.4, 0.0 +NA,NA,a-cure-i1,2023-24,75.0,Worcester - Francis J McGrath Elementary,03480177, 18.3, 3.8, 47.6, 25.0, 0.0, 0.5, 4.8, 50.0, 50.0, 0.0 +NA,NA,a-cure-i1,2023-24,76.1,Worcester - Gates Lane,03480110, 13.2, 13.5, 41.9, 23.9, 0.2, 0.4, 6.9, 58.3, 41.7, 0.0 +NA,NA,a-cure-i1,2023-24,89.7,Worcester - Goddard School/Science Technical,03480100, 13.8, 8.2, 64.6, 10.3, 1.1, 0.0, 2.1, 53.4, 46.6, 0.0 +NA,NA,a-cure-i1,2023-24,76.6,Worcester - Grafton Street,03480115, 18.6, 2.8, 51.0, 23.4, 0.3, 0.0, 4.0, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,80.9,Worcester - Head Start,03480002, 21.8, 4.5, 54.0, 19.1, 0.3, 0.0, 0.3, 46.3, 53.7, 0.0 +NA,NA,a-cure-i1,2023-24,58.6,Worcester - Heard Street,03480136, 15.9, 8.8, 29.5, 41.4, 0.0, 0.0, 4.4, 50.6, 49.4, 0.0 +NA,NA,a-cure-i1,2023-24,86.1,Worcester - Jacob Hiatt Magnet,03480140, 31.5, 4.5, 46.2, 13.9, 0.3, 0.0, 3.7, 49.3, 50.7, 0.0 +NA,NA,a-cure-i1,2023-24,64.3,Worcester - Lake View,03480145, 20.3, 9.4, 29.4, 35.7, 0.3, 0.3, 4.5, 50.7, 49.3, 0.0 +NA,NA,a-cure-i1,2023-24,82.3,Worcester - Lincoln Street,03480160, 24.7, 6.0, 45.6, 17.7, 0.0, 0.0, 6.0, 54.4, 45.6, 0.0 +NA,NA,a-cure-i1,2023-24,60.5,Worcester - May Street,03480175, 13.9, 8.2, 27.6, 39.5, 0.0, 0.0, 10.9, 51.7, 48.3, 0.0 +NA,NA,a-cure-i1,2023-24,47.5,Worcester - Midland Street,03480185, 9.7, 10.9, 19.7, 52.5, 0.0, 0.0, 7.1, 53.4, 46.2, 0.4 +NA,NA,a-cure-i1,2023-24,54.1,Worcester - Nelson Place,03480200, 16.3, 7.5, 24.6, 45.9, 0.0, 0.0, 5.8, 58.1, 41.9, 0.0 +NA,NA,a-cure-i1,2023-24,70.7,Worcester - Norrback Avenue,03480202, 29.1, 3.3, 33.2, 29.3, 0.4, 0.0, 4.7, 54.8, 45.2, 0.0 +NA,NA,a-cure-i1,2023-24,82.8,Worcester - North High,03480515, 21.3, 4.6, 52.7, 17.2, 0.2, 0.1, 3.9, 51.8, 47.8, 0.4 +NA,NA,a-cure-i1,2023-24,75.5,Worcester - Quinsigamond,03480210, 15.4, 5.5, 51.3, 24.5, 0.4, 0.0, 2.9, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,76.4,Worcester - Rice Square,03480215, 21.3, 8.9, 41.7, 23.6, 0.7, 0.0, 3.7, 47.7, 52.3, 0.0 +NA,NA,a-cure-i1,2023-24,69.5,Worcester - Roosevelt,03480220, 26.5, 5.0, 33.4, 30.5, 0.0, 0.5, 4.0, 57.6, 42.4, 0.0 +NA,NA,a-cure-i1,2023-24,75.8,Worcester - South High Community,03480520, 18.8, 10.8, 42.0, 24.2, 0.0, 0.0, 4.2, 52.7, 47.3, 0.0 +NA,NA,a-cure-i1,2023-24,75.0,Worcester - Sullivan Middle,03480423, 14.1, 8.1, 47.9, 25.0, 0.2, 0.0, 4.7, 50.8, 49.2, 0.0 +NA,NA,a-cure-i1,2023-24,58.7,Worcester - Tatnuck,03480230, 17.6, 5.0, 29.7, 41.3, 0.3, 0.0, 6.1, 51.8, 48.2, 0.0 +NA,NA,a-cure-i1,2023-24,65.1,Worcester - Thorndyke Road,03480235, 16.2, 5.4, 40.3, 34.9, 0.0, 0.0, 3.1, 49.1, 50.9, 0.0 +NA,NA,a-cure-i1,2023-24,85.9,Worcester - Union Hill School,03480240, 16.3, 3.0, 64.2, 14.1, 0.0, 0.0, 2.4, 50.4, 49.6, 0.0 +NA,NA,a-cure-i1,2023-24,89.8,Worcester - University Pk Campus School,03480285, 13.9, 10.7, 61.5, 10.2, 0.0, 0.0, 3.7, 55.3, 44.7, 0.0 +NA,NA,a-cure-i1,2023-24,82.0,Worcester - Vernon Hill School,03480280, 20.1, 3.7, 55.3, 18.0, 0.0, 0.0, 2.9, 52.9, 47.1, 0.0 +NA,NA,a-cure-i1,2023-24,68.7,Worcester - Wawecus Road School,03480026, 14.0, 4.7, 40.7, 31.3, 0.0, 0.0, 9.3, 48.0, 52.0, 0.0 +NA,NA,a-cure-i1,2023-24,52.7,Worcester - West Tatnuck,03480260, 14.8, 7.7, 21.6, 47.3, 0.3, 0.0, 8.5, 55.7, 44.3, 0.0 +NA,NA,a-cure-i1,2023-24,91.6,Worcester - Woodland Academy,03480030, 10.8, 4.7, 73.0, 8.4, 0.2, 0.2, 2.7, 49.5, 50.5, 0.0 +NA,NA,a-cure-i1,2023-24,61.6,Worcester - Worcester Arts Magnet School,03480225, 23.9, 8.1, 27.6, 38.4, 0.2, 0.0, 1.7, 50.2, 49.8, 0.0 +NA,NA,a-cure-i1,2023-24,82.9,Worcester - Worcester East Middle,03480420, 21.3, 5.3, 53.2, 17.1, 0.3, 0.0, 2.7, 51.9, 48.1, 0.0 +NA,NA,a-cure-i1,2023-24,71.9,Worcester - Worcester Technical High,03480605, 18.8, 6.3, 42.6, 28.1, 0.3, 0.1, 3.8, 45.9, 54.1, 0.0 +NA,NA,a-cure-i1,2023-24,77.2,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 24.3, 0.0, 47.8, 22.8, 0.7, 0.0, 4.4, 45.6, 53.7, 0.7 +NA,NA,a-cure-i1,2023-24,9.599999999999994,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 5.5, 90.4, 0.0, 0.0, 4.1, 63.0, 35.6, 1.4 +NA,NA,a-cure-i1,2023-24,18.099999999999994,Wrentham - Charles E Roderick,03500010, 1.9, 2.7, 7.8, 81.9, 0.5, 0.0, 5.1, 48.4, 51.6, 0.0 +NA,NA,a-cure-i1,2023-24,19.599999999999994,Wrentham - Delaney,03500003, 2.5, 4.1, 6.7, 80.4, 0.8, 0.3, 5.2, 52.4, 47.6, 0.0 1.2882147024504085,1.29,a-cure-i1,2022-23,6.9,85.7,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 55.4, 2.9, 21.6, 14.3, 0.4, 0.1, 5.3, 46.6, 53.4, 0.0 1,1,a-cure-i1,2022-23,0.0,25.299999999999997,Abington - Abington Early Education Program,00010001, 9.2, 5.7, 8.0, 74.7, 1.1, 0.0, 1.1, 64.4, 35.6, 0.0 1,1,a-cure-i1,2022-23,2.6,23.400000000000006,Abington - Abington High,00010505, 5.3, 2.2, 14.4, 76.6, 0.4, 0.0, 1.1, 51.5, 48.0, 0.5 @@ -1831,6 +3658,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,Non-White Teac 1,1,a-cure-i1,2022-23,0.0,7.900000000000006,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 3.9, 92.1, 0.0, 0.0, 3.9, 53.9, 44.7, 1.3 1,1,a-cure-i1,2022-23,0.0,16.799999999999997,Wrentham - Charles E Roderick,03500010, 2.7, 2.4, 7.0, 83.2, 0.3, 0.0, 4.3, 50.1, 49.9, 0.0 1,1,a-cure-i1,2022-23,1.2,17.200000000000003,Wrentham - Delaney,03500003, 1.5, 3.3, 6.5, 82.8, 0.5, 0.3, 5.0, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2022-23,0.0,100.0,Tewksbury - Center Elementary School,02950030, , , , , , , , , , 1.2952380952380953,1.3,a-cure-i1,2021-22,6.8,84.0,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 54.6, 3.0, 20.5, 16.0, 0.5, 0.1, 5.3, 46.1, 53.9, 0.0 1,1,a-cure-i1,2021-22,0.0,30.299999999999997,Abington - Abington Early Education Program,00010001, 10.5, 9.2, 10.5, 69.7, 0.0, 0.0, 0.0, 63.2, 36.8, 0.0 4.153846153846155,4.15,a-cure-i1,2021-22,5.4,20.799999999999997,Abington - Abington High,00010505, 4.9, 2.9, 11.8, 79.2, 0.0, 0.0, 1.2, 52.6, 47.1, 0.3 diff --git a/data/dashboard/admin_data/dese/3B_2_teacher_by_race_and_gender.csv b/data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv similarity index 100% rename from data/dashboard/admin_data/dese/3B_2_teacher_by_race_and_gender.csv rename to data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/4A_1_grade_nine_course_pass.csv b/data/admin_data/dese/4A_1_grade_nine_course_pass.csv similarity index 82% rename from data/dashboard/admin_data/dese/archive/june-2023/4A_1_grade_nine_course_pass.csv rename to data/admin_data/dese/4A_1_grade_nine_course_pass.csv index faa58c6..0e887e9 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/4A_1_grade_nine_course_pass.csv +++ b/data/admin_data/dese/4A_1_grade_nine_course_pass.csv @@ -1,4 +1,409 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade Nine Students,# Passing All Courses,% Passing All Courses +3.4063157894736844,3.41,a-ovpe-i1,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 89, 72, 80.9 +3.263157894736842,3.26,a-ovpe-i1,2022-23,Abington-Abington High,00010505, 138, 107, 77.5 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 64, 59, 92.2 +4.109473684210526,4.11,a-ovpe-i1,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 418, 408, 97.6 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 137, 129, 94.2 +3.216842105263158,3.22,a-ovpe-i1,2022-23,Agawam-Agawam High,00050505, 314, 240, 76.4 +3.6042105263157893,3.6,a-ovpe-i1,2022-23,Amesbury-Amesbury High,00070505, 125, 107, 85.6 +1.296842105263158,1.3,a-ovpe-i1,2022-23,Amesbury-Amesbury Innovation High School,00070515, 13, 4, 30.8 +3.528421052631579,3.53,a-ovpe-i1,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 229, 192, 83.8 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Andover-Andover High,00090505, 411, 394, 95.9 +2.6989473684210523,2.7,a-ovpe-i1,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 92, 59, 64.1 +4.025263157894736,4.03,a-ovpe-i1,2022-23,Arlington-Arlington High,00100505, 383, 366, 95.6 +3.9157894736842107,3.92,a-ovpe-i1,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 172, 160, 93.0 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Ashland-Ashland High,00140505, 230, 213, 92.6 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 302, 272, 90.1 +2.7578947368421054,2.76,a-ovpe-i1,2022-23,Athol-Royalston-Athol High,06150505, 113, 74, 65.5 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 82, 63, 76.8 +NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Community Academy,00160515, 2,"","" +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Attleboro-Attleboro High,00160505, 515, 466, 90.5 +NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 3,"","" +3.7263157894736842,3.73,a-ovpe-i1,2022-23,Auburn-Auburn Senior High,00170505, 191, 169, 88.5 +3.2757894736842106,3.28,a-ovpe-i1,2022-23,Avon-Avon Middle High School,00180510, 54, 42, 77.8 +3.877894736842105,3.88,a-ovpe-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 101, 93, 92.1 +3.1073684210526316,3.11,a-ovpe-i1,2022-23,Barnstable-Barnstable High,00200505, 359, 265, 73.8 +3.8063157894736843,3.81,a-ovpe-i1,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 52, 47, 90.4 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Bedford-Bedford High,00230505, 225, 216, 96.0 +3.6378947368421053,3.64,a-ovpe-i1,2022-23,Belchertown-Belchertown High,00240505, 147, 127, 86.4 +3.6842105263157894,3.68,a-ovpe-i1,2022-23,Bellingham-Bellingham High School,00250505, 160, 140, 87.5 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Bellingham-Keough Memorial Academy,00250510, 8, 4, 50.0 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Belmont-Belmont High,00260505, 360, 351, 97.5 +2.778947368421053,2.78,a-ovpe-i1,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 50, 33, 66.0 +3.6294736842105264,3.63,a-ovpe-i1,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 123, 106, 86.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 74, 74, 100.0 +3.3557894736842107,3.36,a-ovpe-i1,2022-23,Beverly-Beverly High,00300505, 340, 271, 79.7 +3.528421052631579,3.53,a-ovpe-i1,2022-23,Billerica-Billerica Memorial High School,00310505, 327, 274, 83.8 +3.9789473684210526,3.98,a-ovpe-i1,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 307, 290, 94.5 +3.8947368421052633,3.89,a-ovpe-i1,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 107, 99, 92.5 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 241, 235, 97.5 +2.7621052631578946,2.76,a-ovpe-i1,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 96, 63, 65.6 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 58, 58, 100.0 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 82, 63, 76.8 +3.873684210526316,3.87,a-ovpe-i1,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 125, 115, 92.0 +2.143157894736842,2.14,a-ovpe-i1,2022-23,Boston-Another Course To College,00350541, 53, 27, 50.9 +2.8968421052631577,2.9,a-ovpe-i1,2022-23,Boston-Boston Arts Academy,00350546, 141, 97, 68.8 +NA,NA,a-ovpe-i1,2022-23,Boston-Boston Collaborative High School,00350755, 2,"","" +3.191578947368421,3.19,a-ovpe-i1,2022-23,Boston-Boston Community Leadership Academy,00350558, 124, 94, 75.8 +2.778947368421053,2.78,a-ovpe-i1,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 215, 142, 66.0 +3.663157894736842,3.66,a-ovpe-i1,2022-23,Boston-Boston Latin Academy,00350545, 323, 281, 87.0 +3.9747368421052633,3.97,a-ovpe-i1,2022-23,Boston-Boston Latin School,00350560, 412, 389, 94.4 +2.7705263157894735,2.77,a-ovpe-i1,2022-23,Boston-Brighton High School,00350505, 117, 77, 65.8 +3.3263157894736843,3.33,a-ovpe-i1,2022-23,Boston-Burke High School,00350525, 81, 64, 79.0 +NA,NA,a-ovpe-i1,2022-23,Boston-Carter School,00350036, 4,"","" +2.517894736842105,2.52,a-ovpe-i1,2022-23,Boston-Charlestown High School,00350515, 174, 104, 59.8 +NA,NA,a-ovpe-i1,2022-23,Boston-Community Academy,00350518, 3,"","" +1.8778947368421053,1.88,a-ovpe-i1,2022-23,Boston-Community Academy of Science and Health,00350581, 74, 33, 44.6 +2.0336842105263155,2.03,a-ovpe-i1,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 89, 43, 48.3 +3.8610526315789473,3.86,a-ovpe-i1,2022-23,Boston-East Boston High School,00350530, 228, 209, 91.7 +1.8526315789473684,1.85,a-ovpe-i1,2022-23,Boston-English High School,00350535, 141, 62, 44.0 +2.210526315789474,2.21,a-ovpe-i1,2022-23,Boston-Excel High School,00350522, 99, 52, 52.5 +3.002105263157895,3.0,a-ovpe-i1,2022-23,Boston-Fenway High School,00350540, 94, 67, 71.3 +NA,NA,a-ovpe-i1,2022-23,Boston-Greater Egleston High School,00350543, 2,"","" +1.7473684210526317,1.75,a-ovpe-i1,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 65, 27, 41.5 +NA,NA,a-ovpe-i1,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"","" +3.9115789473684215,3.91,a-ovpe-i1,2022-23,Boston-Lyon High School,00350655, 28, 26, 92.9 +0.7663157894736842,1,a-ovpe-i1,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 269, 49, 18.2 +2.64,2.64,a-ovpe-i1,2022-23,Boston-Margarita Muniz Academy,00350549, 83, 52, 62.7 +1.7347368421052634,1.73,a-ovpe-i1,2022-23,Boston-McKinley Schools,00350363, 17, 7, 41.2 +3.2042105263157894,3.2,a-ovpe-i1,2022-23,Boston-New Mission High School,00350542, 134, 102, 76.1 +3.5199999999999996,3.52,a-ovpe-i1,2022-23,Boston-O'Bryant School of Math & Science,00350575, 323, 270, 83.6 +2.526315789473684,2.53,a-ovpe-i1,2022-23,Boston-Quincy Upper School,00350565, 70, 42, 60.0 +1.7726315789473686,1.77,a-ovpe-i1,2022-23,Boston-Snowden International High School,00350690, 121, 51, 42.1 +2.6315789473684212,2.63,a-ovpe-i1,2022-23,Boston-TechBoston Academy,00350657, 160, 100, 62.5 +3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bourne-Bourne High School,00360505, 85, 72, 84.7 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Braintree-Braintree High,00400505, 408, 408, 100.0 +3.8273684210526318,3.83,a-ovpe-i1,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 361, 328, 90.9 +NA,NA,a-ovpe-i1,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 1,"","" +3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 170, 144, 84.7 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 346, 336, 97.1 +1.376842105263158,1.38,a-ovpe-i1,2022-23,Brockton-Brockton Champion High School,00440515, 52, 17, 32.7 +1.8736842105263158,1.87,a-ovpe-i1,2022-23,Brockton-Brockton High,00440505," 1,172", 521, 44.5 +0.648421052631579,1,a-ovpe-i1,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 26, 4, 15.4 +2.2610526315789476,2.26,a-ovpe-i1,2022-23,Brockton-Edison Academy,00440520, 41, 22, 53.7 +NA,NA,a-ovpe-i1,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 4,"","" +3.7557894736842106,3.76,a-ovpe-i1,2022-23,Brockton-PROMISE College and Career Academy,00440525, 37, 33, 89.2 +3.477894736842105,3.48,a-ovpe-i1,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 155, 128, 82.6 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Brookline-Brookline High,00460505, 515, 475, 92.2 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Burlington-Burlington High,00480505, 226, 213, 94.2 +3.7263157894736842,3.73,a-ovpe-i1,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 497, 440, 88.5 +4.067368421052631,4.07,a-ovpe-i1,2022-23,Canton-Canton High,00500505, 261, 252, 96.6 +3.6757894736842105,3.68,a-ovpe-i1,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 181, 158, 87.3 +3.389473684210526,3.39,a-ovpe-i1,2022-23,Carver-Carver Middle/High School,00520405, 82, 66, 80.5 +3.6042105263157893,3.6,a-ovpe-i1,2022-23,Central Berkshire-Wahconah Regional High,06350505, 111, 95, 85.6 +4.0,4.0,a-ovpe-i1,2022-23,Chelmsford-Chelmsford High,00560505, 361, 343, 95.0 +2.0589473684210526,2.06,a-ovpe-i1,2022-23,Chelsea-Chelsea High,00570505, 554, 271, 48.9 +NA,NA,a-ovpe-i1,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 4,"","" +NA,NA,a-ovpe-i1,2022-23,Chicopee-Chicopee Academy,00610021, 9, 0, .0 +3.1789473684210527,3.18,a-ovpe-i1,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 330, 249, 75.5 +2.2778947368421054,2.28,a-ovpe-i1,2022-23,Chicopee-Chicopee High,00610505, 266, 144, 54.1 +2.4463157894736844,2.45,a-ovpe-i1,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 43, 25, 58.1 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Clinton-Clinton Senior High,00640505, 174, 143, 82.2 +2.9221052631578948,2.92,a-ovpe-i1,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 36, 25, 69.4 +4.172631578947368,4.17,a-ovpe-i1,2022-23,Cohasset-Cohasset High School,00650505, 114, 113, 99.1 +2.4210526315789473,2.42,a-ovpe-i1,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 73, 42, 57.5 +3.9621052631578944,3.96,a-ovpe-i1,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 34, 32, 94.1 +4.197894736842105,4.2,a-ovpe-i1,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 323, 322, 99.7 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Danvers-Danvers High,00710505, 181, 163, 90.1 +3.3473684210526318,3.35,a-ovpe-i1,2022-23,Dartmouth-Dartmouth High,00720505, 244, 194, 79.5 +3.7473684210526317,3.75,a-ovpe-i1,2022-23,Dedham-Dedham High,00730505, 182, 162, 89.0 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 195, 140, 71.8 +3.3010526315789477,3.3,a-ovpe-i1,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 162, 127, 78.4 +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Douglas-Douglas High School,00770505, 74, 67, 90.5 +4.189473684210526,4.19,a-ovpe-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 184, 183, 99.5 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,Dracut-Dracut Senior High,00790505, 240, 184, 76.7 +3.3810526315789473,3.38,a-ovpe-i1,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 289, 232, 80.3 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Duxbury-Duxbury High,00820505, 226, 223, 98.7 +3.663157894736842,3.66,a-ovpe-i1,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 154, 134, 87.0 +3.76,3.76,a-ovpe-i1,2022-23,East Longmeadow-East Longmeadow High,00870505, 205, 183, 89.3 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,Easthampton-Easthampton High,00860505, 90, 69, 76.7 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Easton-Oliver Ames High,00880505, 243, 233, 95.9 +2.6357894736842105,2.64,a-ovpe-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 107, 67, 62.6 +3.953684210526316,3.95,a-ovpe-i1,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 446, 419, 93.9 +NA,NA,a-ovpe-i1,2022-23,Everett-Devens School,00930030, 4,"","" +2.3073684210526313,2.31,a-ovpe-i1,2022-23,Everett-Everett High,00930505, 637, 349, 54.8 +3.945263157894737,3.95,a-ovpe-i1,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 175, 164, 93.7 +3.3305263157894736,3.33,a-ovpe-i1,2022-23,Fairhaven-Fairhaven High,00940505, 158, 125, 79.1 +1.9157894736842105,1.92,a-ovpe-i1,2022-23,Fall River-B M C Durfee High,00950505, 708, 322, 45.5 +4.054736842105263,4.05,a-ovpe-i1,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 27, 26, 96.3 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Fall River-Stone PK-12 School,00950340, 12, 12, 100.0 +3.0694736842105264,3.07,a-ovpe-i1,2022-23,Falmouth-Falmouth High,00960505, 177, 129, 72.9 +2.610526315789474,2.61,a-ovpe-i1,2022-23,Fitchburg-Fitchburg High,00970505, 321, 199, 62.0 +1.6378947368421053,1.64,a-ovpe-i1,2022-23,Fitchburg-Goodrich Academy,00970510, 18, 7, 38.9 +3.6757894736842105,3.68,a-ovpe-i1,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 102, 89, 87.3 +3.6378947368421053,3.64,a-ovpe-i1,2022-23,Foxborough-Foxborough High,00990505, 206, 178, 86.4 +2.383157894736842,2.38,a-ovpe-i1,2022-23,Framingham-Framingham High School,01000515, 742, 420, 56.6 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 66, 66, 100.0 +4.16,4.16,a-ovpe-i1,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 161, 159, 98.8 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Franklin-Franklin High,01010505, 392, 376, 95.9 +3.68,3.68,a-ovpe-i1,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 174, 152, 87.4 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Frontier-Frontier Regional,06700505, 92, 85, 92.4 +1.806315789473684,1.81,a-ovpe-i1,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 7, 3, 42.9 +2.9894736842105263,2.99,a-ovpe-i1,2022-23,Gardner-Gardner High,01030505, 169, 120, 71.0 +3.313684210526316,3.31,a-ovpe-i1,2022-23,Gateway-Gateway Regional High,06720505, 47, 37, 78.7 +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Georgetown-Georgetown High School,01050505, 82, 74, 90.2 +3.705263157894737,3.71,a-ovpe-i1,2022-23,Gill-Montague-Turners Fall High,06740505, 50, 44, 88.0 +3.4526315789473685,3.45,a-ovpe-i1,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 50, 41, 82.0 +2.858947368421053,2.86,a-ovpe-i1,2022-23,Gloucester-Gloucester High,01070505, 212, 144, 67.9 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Grafton-Grafton High School,01100505, 213, 192, 90.1 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Granby-Granby Jr Sr High School,01110505, 50, 48, 96.0 +1.2505263157894737,1.25,a-ovpe-i1,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 165, 49, 29.7 +3.9747368421052633,3.97,a-ovpe-i1,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 377, 356, 94.4 +3.654736842105263,3.65,a-ovpe-i1,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 438, 380, 86.8 +4.016842105263158,4.02,a-ovpe-i1,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 587, 560, 95.4 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 560, 522, 93.2 +2.8547368421052632,2.85,a-ovpe-i1,2022-23,Greenfield-Greenfield High,01140505, 90, 61, 67.8 +4.134736842105263,4.13,a-ovpe-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 164, 161, 98.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hadley-Hopkins Academy,01170505, 31, 31, 100.0 +4.168421052631579,4.17,a-ovpe-i1,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 104, 103, 99.0 +3.473684210526316,3.47,a-ovpe-i1,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 80, 66, 82.5 +3.2926315789473684,3.29,a-ovpe-i1,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 55, 43, 78.2 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 267, 255, 95.5 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Hampshire-Hampshire Regional High,06830505, 103, 101, 98.1 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Hanover-Hanover High,01220505, 150, 148, 98.7 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Harvard-Bromfield,01250505, 84, 80, 95.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hatfield-Smith Academy,01270505, 21, 21, 100.0 +NA,NA,a-ovpe-i1,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 2,"","" +0.3831578947368421,1,a-ovpe-i1,2022-23,Haverhill-Gateway Academy,01280515, 11, 1, 9.1 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Haverhill-Greenleaf Academy,01280033, 6, 3, 50.0 +2.113684210526316,2.11,a-ovpe-i1,2022-23,Haverhill-Haverhill High,01280505, 611, 307, 50.2 +4.016842105263158,4.02,a-ovpe-i1,2022-23,Hingham-Hingham High,01310505, 284, 271, 95.4 +3.1578947368421053,3.16,a-ovpe-i1,2022-23,Holbrook-Holbrook Middle High School,01330505, 72, 54, 75.0 +3.734736842105263,3.73,a-ovpe-i1,2022-23,Holliston-Holliston High,01360505, 213, 189, 88.7 +2.4210526315789473,2.42,a-ovpe-i1,2022-23,Holyoke-Holyoke High,01370505, 393, 226, 57.5 +2.656842105263158,2.66,a-ovpe-i1,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 84, 53, 63.1 +4.143157894736842,4.14,a-ovpe-i1,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 62, 61, 98.4 +4.117894736842105,4.12,a-ovpe-i1,2022-23,Hopkinton-Hopkinton High,01390505, 316, 309, 97.8 +3.166315789473684,3.17,a-ovpe-i1,2022-23,Hudson-Hudson High,01410505, 165, 124, 75.2 +3.823157894736842,3.82,a-ovpe-i1,2022-23,Hull-Hull High,01420505, 65, 59, 90.8 +3.0189473684210526,3.02,a-ovpe-i1,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 106, 76, 71.7 +3.776842105263158,3.78,a-ovpe-i1,2022-23,Ipswich-Ipswich High,01440505, 116, 104, 89.7 +3.823157894736842,3.82,a-ovpe-i1,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 131, 119, 90.8 +4.029473684210527,4.03,a-ovpe-i1,2022-23,King Philip-King Philip Regional High,06900505, 301, 288, 95.7 +2.8126315789473684,2.81,a-ovpe-i1,2022-23,Lawrence-Lawrence High School,01490515, 960, 641, 66.8 +NA,NA,a-ovpe-i1,2022-23,Lawrence-School for Exceptional Studies,01490537, 5,"","" +3.2842105263157895,3.28,a-ovpe-i1,2022-23,Lee-Lee Middle/High School,01500505, 41, 32, 78.0 +3.3010526315789477,3.3,a-ovpe-i1,2022-23,Leicester-Leicester High,01510505, 116, 91, 78.4 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Lenox-Lenox Memorial High,01520505, 63, 60, 95.2 +3.3305263157894736,3.33,a-ovpe-i1,2022-23,Leominster-Center For Technical Education Innovation,01530605, 292, 231, 79.1 +3.886315789473684,3.89,a-ovpe-i1,2022-23,Leominster-Leominster Center for Excellence,01530515, 13, 12, 92.3 +3.389473684210526,3.39,a-ovpe-i1,2022-23,Leominster-Leominster High School,01530505, 154, 124, 80.5 +4.143157894736842,4.14,a-ovpe-i1,2022-23,Lexington-Lexington High,01550505, 608, 598, 98.4 +3.9326315789473685,3.93,a-ovpe-i1,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 76, 71, 93.4 +4.0,4.0,a-ovpe-i1,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 379, 360, 95.0 +3.8526315789473684,3.85,a-ovpe-i1,2022-23,Littleton-Littleton High School,01580505, 129, 118, 91.5 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Longmeadow-Longmeadow High,01590505, 239, 232, 97.1 +0.7536842105263157,1,a-ovpe-i1,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 28, 5, 17.9 +1.9157894736842105,1.92,a-ovpe-i1,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 11, 5, 45.5 +2.1178947368421053,2.12,a-ovpe-i1,2022-23,Lowell-Lowell High,01600505," 1,003", 505, 50.3 +0.13473684210526315,1,a-ovpe-i1,2022-23,Lowell-The Career Academy,01600515, 31, 1, 3.2 +3.246315789473684,3.25,a-ovpe-i1,2022-23,Ludlow-Ludlow Senior High,01610505, 218, 168, 77.1 +3.6168421052631583,3.62,a-ovpe-i1,2022-23,Lunenburg-Lunenburg High,01620505, 128, 110, 85.9 +2.7157894736842105,2.72,a-ovpe-i1,2022-23,Lynn-Classical High,01630505, 581, 375, 64.5 +2.2273684210526317,2.23,a-ovpe-i1,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 17, 9, 52.9 +2.749473684210526,2.75,a-ovpe-i1,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 72, 47, 65.3 +2.3789473684210525,2.38,a-ovpe-i1,2022-23,Lynn-Lynn English High,01630510, 621, 351, 56.5 +3.1242105263157898,3.12,a-ovpe-i1,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 287, 213, 74.2 +4.08421052631579,4.08,a-ovpe-i1,2022-23,Lynnfield-Lynnfield High,01640505, 133, 129, 97.0 +2.6189473684210527,2.62,a-ovpe-i1,2022-23,Malden-Malden High,01650505, 519, 323, 62.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 93, 93, 100.0 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,Mansfield-Mansfield High,01670505, 263, 246, 93.5 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 47, 47, 100.0 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Marblehead-Marblehead High,01680505, 197, 193, 98.0 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Marlborough-Marlborough High,01700505, 272, 209, 76.8 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Marshfield-Marshfield High,01710505, 291, 269, 92.4 +3.928421052631579,3.93,a-ovpe-i1,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 15, 14, 93.3 +3.663157894736842,3.66,a-ovpe-i1,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 215, 187, 87.0 +4.050526315789474,4.05,a-ovpe-i1,2022-23,Masconomet-Masconomet Regional High School,07050505, 265, 255, 96.2 +3.5873684210526315,3.59,a-ovpe-i1,2022-23,Mashpee-Mashpee Middle-High School,01720505, 108, 92, 85.2 +2.808421052631579,2.81,a-ovpe-i1,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 75, 50, 66.7 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Maynard-Maynard High,01740505, 81, 75, 92.6 +3.928421052631579,3.93,a-ovpe-i1,2022-23,Medfield-Medfield Senior High,01750505, 178, 166, 93.3 +NA,NA,a-ovpe-i1,2022-23,Medford-Curtis-Tufts,01760510, 2,"","" +3.208421052631579,3.21,a-ovpe-i1,2022-23,Medford-Medford High,01760505, 349, 266, 76.2 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Medway-Medway High,01770505, 148, 138, 93.2 +3.9789473684210526,3.98,a-ovpe-i1,2022-23,Melrose-Melrose High,01780505, 235, 222, 94.5 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 135, 125, 92.6 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Methuen-Methuen High,01810505, 525, 377, 71.8 +3.094736842105263,3.09,a-ovpe-i1,2022-23,Middleborough-Middleborough High,01820505, 230, 169, 73.5 +3.0442105263157893,3.04,a-ovpe-i1,2022-23,Milford-Milford High,01850505, 400, 289, 72.3 +3.76,3.76,a-ovpe-i1,2022-23,Millbury-Millbury Junior/Senior High,01860505, 112, 100, 89.3 +3.957894736842105,3.96,a-ovpe-i1,2022-23,Millis-Millis High School,01870505, 67, 63, 94.0 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Milton-Milton High,01890505, 246, 239, 97.2 +1.9326315789473683,1.93,a-ovpe-i1,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 183, 84, 45.9 +2.606315789473684,2.61,a-ovpe-i1,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 42, 26, 61.9 +3.612631578947368,3.61,a-ovpe-i1,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 141, 121, 85.8 +3.427368421052632,3.43,a-ovpe-i1,2022-23,Monson-Monson High School,01910505, 43, 35, 81.4 +4.00421052631579,4.0,a-ovpe-i1,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 366, 348, 95.1 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 73, 68, 93.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 103, 103, 100.0 +3.418947368421053,3.42,a-ovpe-i1,2022-23,Nantucket-Nantucket High,01970505, 170, 138, 81.2 +3.0989473684210522,3.1,a-ovpe-i1,2022-23,Narragansett-Narragansett Regional High,07200505, 106, 78, 73.6 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 214, 208, 97.2 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Nashoba-Nashoba Regional,07250505, 202, 193, 95.5 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,Natick-Natick High,01980505, 429, 401, 93.5 +3.76,3.76,a-ovpe-i1,2022-23,Nauset-Nauset Regional High,06600505, 169, 151, 89.3 +4.109473684210526,4.11,a-ovpe-i1,2022-23,Needham-Needham High,01990505, 415, 405, 97.6 +2.24,2.24,a-ovpe-i1,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 79, 42, 53.2 +2.025263157894737,2.03,a-ovpe-i1,2022-23,New Bedford-New Bedford High,02010505, 807, 388, 48.1 +1.8694736842105262,1.87,a-ovpe-i1,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 8, 44.4 +1.3473684210526315,1.35,a-ovpe-i1,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 25, 8, 32.0 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 116, 89, 76.7 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Newburyport-Newburyport High,02040505, 193, 178, 92.2 +3.983157894736842,3.98,a-ovpe-i1,2022-23,Newton-Newton North High,02070505, 514, 486, 94.6 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Newton-Newton South High,02070510, 467, 458, 98.1 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 155, 152, 98.1 +2.8421052631578947,2.84,a-ovpe-i1,2022-23,North Adams-Drury High,02090505, 80, 54, 67.5 +3.7136842105263157,3.71,a-ovpe-i1,2022-23,North Andover-North Andover High,02110505, 348, 307, 88.2 +3.823157894736842,3.82,a-ovpe-i1,2022-23,North Attleborough-North Attleboro High,02120505, 239, 217, 90.8 +1.8863157894736842,1.89,a-ovpe-i1,2022-23,North Brookfield-North Brookfield High,02150505, 29, 13, 44.8 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,North Middlesex-North Middlesex Regional,07350505, 185, 173, 93.5 +4.185263157894737,4.19,a-ovpe-i1,2022-23,North Reading-North Reading High,02170505, 175, 174, 99.4 +4.054736842105263,4.05,a-ovpe-i1,2022-23,Northampton-Northampton High,02100505, 218, 210, 96.3 +3.7431578947368425,3.74,a-ovpe-i1,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 153, 136, 88.9 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 277, 270, 97.5 +3.317894736842105,3.32,a-ovpe-i1,2022-23,Northbridge-Northbridge High,02140505, 156, 123, 78.8 +3.4947368421052634,3.49,a-ovpe-i1,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 358, 297, 83.0 +3.2884210526315787,3.29,a-ovpe-i1,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 146, 114, 78.1 +3.848421052631579,3.85,a-ovpe-i1,2022-23,Norton-Norton High,02180505, 185, 169, 91.4 +4.181052631578948,4.18,a-ovpe-i1,2022-23,Norwell-Norwell High,02190505, 145, 144, 99.3 +3.5747368421052634,3.57,a-ovpe-i1,2022-23,Norwood-Norwood High,02200505, 218, 185, 84.9 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 138, 134, 97.1 +3.873684210526316,3.87,a-ovpe-i1,2022-23,Old Rochester-Old Rochester Regional High,07400505, 150, 138, 92.0 +2.8968421052631577,2.9,a-ovpe-i1,2022-23,Oxford-Oxford High,02260505, 109, 75, 68.8 +2.3410526315789473,2.34,a-ovpe-i1,2022-23,Palmer-Palmer High,02270505, 63, 35, 55.6 +3.4357894736842103,3.44,a-ovpe-i1,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 179, 146, 81.6 +1.4778947368421054,1.48,a-ovpe-i1,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 57, 20, 35.1 +1.6842105263157894,1.68,a-ovpe-i1,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 10, 4, 40.0 +2.454736842105263,2.45,a-ovpe-i1,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 367, 214, 58.3 +4.08421052631579,4.08,a-ovpe-i1,2022-23,Pembroke-Pembroke High School,02310505, 168, 163, 97.0 +4.08,4.08,a-ovpe-i1,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 130, 126, 96.9 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 9, 9, 100.0 +0.11368421052631579,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 75, 2, 2.7 +0.14736842105263157,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 85, 3, 3.5 +3.877894736842105,3.88,a-ovpe-i1,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 63, 58, 92.1 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 73, 60, 82.2 +3.6715789473684213,3.67,a-ovpe-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 39, 34, 87.2 +3.667368421052631,3.67,a-ovpe-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 70, 61, 87.1 +3.8273684210526318,3.83,a-ovpe-i1,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 22, 20, 90.9 +NA,NA,a-ovpe-i1,2022-23,Pittsfield-Eagle Education Academy,02360525, 3,"","" +3.431578947368421,3.43,a-ovpe-i1,2022-23,Pittsfield-Pittsfield High,02360505, 151, 123, 81.5 +2.4042105263157896,2.4,a-ovpe-i1,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 7, 4, 57.1 +2.425263157894737,2.43,a-ovpe-i1,2022-23,Pittsfield-Taconic High,02360510, 250, 144, 57.6 +2.9810526315789474,2.98,a-ovpe-i1,2022-23,Plymouth-Plymouth North High,02390505, 322, 228, 70.8 +3.76,3.76,a-ovpe-i1,2022-23,Plymouth-Plymouth South High,02390515, 261, 233, 89.3 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 82, 63, 76.8 +2.008421052631579,2.01,a-ovpe-i1,2022-23,Quabbin-Quabbin Regional High School,07530505, 172, 82, 47.7 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 90, 74, 82.2 +3.705263157894737,3.71,a-ovpe-i1,2022-23,Quincy-North Quincy High,02430510, 384, 338, 88.0 +3.1789473684210527,3.18,a-ovpe-i1,2022-23,Quincy-Quincy High,02430505, 372, 281, 75.5 +2.383157894736842,2.38,a-ovpe-i1,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 113, 64, 56.6 +2.1347368421052635,2.13,a-ovpe-i1,2022-23,Randolph-Randolph High,02440505, 219, 111, 50.7 +4.029473684210527,4.03,a-ovpe-i1,2022-23,Reading-Reading Memorial High,02460505, 258, 247, 95.7 +1.305263157894737,1.31,a-ovpe-i1,2022-23,Revere-CityLab Innovation High School,02480520, 42, 13, 31.0 +2.096842105263158,2.1,a-ovpe-i1,2022-23,Revere-Revere High,02480505, 621, 309, 49.8 +3.322105263157895,3.32,a-ovpe-i1,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 76, 60, 78.9 +3.1747368421052635,3.17,a-ovpe-i1,2022-23,Rockland-Rockland Senior High,02510505, 175, 132, 75.4 +4.134736842105263,4.13,a-ovpe-i1,2022-23,Rockport-Rockport High,02520510, 55, 54, 98.2 +3.8147368421052628,3.81,a-ovpe-i1,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 160, 145, 90.6 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 71, 69, 97.2 +NA,NA,a-ovpe-i1,2022-23,Salem-New Liberty Innovation School,02580510, 3,"","" +2.522105263157895,2.52,a-ovpe-i1,2022-23,Salem-Salem High,02580505, 262, 157, 59.9 +NA,NA,a-ovpe-i1,2022-23,Salem-Salem Prep High School,02580515, 2,"","" +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Sandwich-Sandwich Middle High School,02610505, 132, 119, 90.2 +3.082105263157895,3.08,a-ovpe-i1,2022-23,Saugus-Saugus High,02620505, 194, 142, 73.2 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Scituate-Scituate High School,02640505, 159, 157, 98.7 +3.5789473684210527,3.58,a-ovpe-i1,2022-23,Seekonk-Seekonk High,02650505, 120, 102, 85.0 +3.9157894736842107,3.92,a-ovpe-i1,2022-23,Sharon-Sharon High,02660505, 300, 279, 93.0 +3.9326315789473685,3.93,a-ovpe-i1,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 334, 312, 93.4 +3.8610526315789473,3.86,a-ovpe-i1,2022-23,Shrewsbury-Shrewsbury High School,02710505, 496, 455, 91.7 +3.595789473684211,3.6,a-ovpe-i1,2022-23,Silver Lake-Silver Lake Regional High,07600505, 261, 223, 85.4 +3.418947368421053,3.42,a-ovpe-i1,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 69, 56, 81.2 +3.427368421052632,3.43,a-ovpe-i1,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 264, 215, 81.4 +NA,NA,a-ovpe-i1,2022-23,Somerville-Full Circle High School,02740510, 12, 0, .0 +3.4021052631578947,3.4,a-ovpe-i1,2022-23,Somerville-Somerville High,02740505, 354, 286, 80.8 +3.351578947368421,3.35,a-ovpe-i1,2022-23,South Hadley-South Hadley High,02780505, 108, 86, 79.6 +3.7010526315789476,3.7,a-ovpe-i1,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 240, 211, 87.9 +3.9705263157894737,3.97,a-ovpe-i1,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 87, 82, 94.3 +4.058947368421053,4.06,a-ovpe-i1,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 165, 159, 96.4 +2.6315789473684212,2.63,a-ovpe-i1,2022-23,Southbridge-Southbridge Academy,02770525, 8, 5, 62.5 +2.471578947368421,2.47,a-ovpe-i1,2022-23,Southbridge-Southbridge High School,02770515, 138, 81, 58.7 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 415, 395, 95.2 +3.545263157894737,3.55,a-ovpe-i1,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 38, 32, 84.2 +3.351578947368421,3.35,a-ovpe-i1,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 318, 253, 79.6 +3.8694736842105266,3.87,a-ovpe-i1,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 111, 102, 91.9 +2.008421052631579,2.01,a-ovpe-i1,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 107, 51, 47.7 +2.808421052631579,2.81,a-ovpe-i1,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 111, 74, 66.7 +3.6842105263157894,3.68,a-ovpe-i1,2022-23,Springfield-Conservatory of the Arts,02810475, 48, 42, 87.5 +3.709473684210526,3.71,a-ovpe-i1,2022-23,Springfield-Emergence Academy,02810318, 59, 52, 88.1 +NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 1,"","" +NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 1,"","" +2.130526315789474,2.13,a-ovpe-i1,2022-23,Springfield-High School Of Commerce,02810510, 257, 130, 50.6 +2.4,2.4,a-ovpe-i1,2022-23,Springfield-John J Duggan Academy,02810320, 79, 45, 57.0 +NA,NA,a-ovpe-i1,2022-23,Springfield-Liberty Preparatory Academy,02810560, 1,"","" +3.221052631578947,3.22,a-ovpe-i1,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 366, 280, 76.5 +1.545263157894737,1.55,a-ovpe-i1,2022-23,Springfield-Springfield Central High,02810500, 645, 237, 36.7 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Springfield-Springfield High School,02810570, 12, 6, 50.0 +1.806315789473684,1.81,a-ovpe-i1,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 331, 142, 42.9 +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 41, 37, 90.2 +1.6842105263157894,1.68,a-ovpe-i1,2022-23,Springfield-Springfield Public Day High School,02810550, 10, 4, 40.0 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 92, 85, 92.4 +1.3389473684210527,1.34,a-ovpe-i1,2022-23,Springfield-The Springfield Virtual School,02810705, 44, 14, 31.8 +4.063157894736842,4.06,a-ovpe-i1,2022-23,Stoneham-Stoneham High,02840505, 171, 165, 96.5 +2.6442105263157893,2.64,a-ovpe-i1,2022-23,Stoughton-Stoughton High,02850505, 290, 182, 62.8 +4.113684210526316,4.11,a-ovpe-i1,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 215, 210, 97.7 +4.16421052631579,4.16,a-ovpe-i1,2022-23,Sutton-Sutton High School,02900510, 91, 90, 98.9 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Swampscott-Swampscott High,02910505, 172, 162, 94.2 +3.3684210526315788,3.37,a-ovpe-i1,2022-23,Swansea-Joseph Case High,02920505, 145, 116, 80.0 +1.654736842105263,1.65,a-ovpe-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 499, 196, 39.3 +3.789473684210526,3.79,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 160, 144, 90.0 +3.334736842105263,3.33,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 144, 114, 79.2 +2.8294736842105266,2.83,a-ovpe-i1,2022-23,Taunton-Taunton High,02930505, 573, 385, 67.2 +3.987368421052632,3.99,a-ovpe-i1,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 188, 178, 94.7 +3.642105263157895,3.64,a-ovpe-i1,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 275, 238, 86.5 +3.4652631578947366,3.47,a-ovpe-i1,2022-23,Triton-Triton Regional High School,07730505, 158, 130, 82.3 +3.9621052631578944,3.96,a-ovpe-i1,2022-23,Tyngsborough-Tyngsborough High School,03010505, 119, 112, 94.1 +4.172631578947368,4.17,a-ovpe-i1,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 219, 217, 99.1 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Uxbridge-Uxbridge High,03040505, 105, 97, 92.4 +NA,NA,a-ovpe-i1,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 90, 0, .0 +3.8947368421052633,3.89,a-ovpe-i1,2022-23,Wachusett-Wachusett Regional High,07750505, 451, 417, 92.5 +3.3642105263157895,3.36,a-ovpe-i1,2022-23,Wakefield-Wakefield Memorial High,03050505, 224, 179, 79.9 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Walpole-Walpole High,03070505, 236, 218, 92.4 +2.863157894736842,2.86,a-ovpe-i1,2022-23,Waltham-Waltham Sr High,03080505, 535, 364, 68.0 +2.218947368421053,2.22,a-ovpe-i1,2022-23,Ware-Ware Junior/Senior High School,03090505, 91, 48, 52.7 +NA,NA,a-ovpe-i1,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 2,"","" +2.0631578947368423,2.06,a-ovpe-i1,2022-23,Wareham-Wareham Senior High,03100505, 143, 70, 49.0 +3.1157894736842104,3.12,a-ovpe-i1,2022-23,Watertown-Watertown High,03140505, 215, 159, 74.0 +4.147368421052631,4.15,a-ovpe-i1,2022-23,Wayland-Wayland High School,03150505, 204, 201, 98.5 +1.9663157894736842,1.97,a-ovpe-i1,2022-23,Webster-Bartlett High School,03160505, 105, 49, 46.7 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Wellesley-Wellesley Sr High,03170505, 358, 351, 98.0 +3.945263157894737,3.95,a-ovpe-i1,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 63, 59, 93.7 +3.6884210526315786,3.69,a-ovpe-i1,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 113, 99, 87.6 +2.7663157894736843,2.77,a-ovpe-i1,2022-23,West Springfield-West Springfield High,03320505, 344, 226, 65.7 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Westborough-Westborough High,03210505, 301, 289, 96.0 +3.0442105263157893,3.04,a-ovpe-i1,2022-23,Westfield-Westfield High,03250505, 253, 183, 72.3 +4.0,4.0,a-ovpe-i1,2022-23,Westfield-Westfield Technical Academy,03250605, 140, 133, 95.0 +3.608421052631579,3.61,a-ovpe-i1,2022-23,Westfield-Westfield Virtual School,03250705, 7, 6, 85.7 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Westford-Westford Academy,03260505, 353, 346, 98.0 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Weston-Weston High,03300505, 159, 159, 100.0 +3.3936842105263154,3.39,a-ovpe-i1,2022-23,Westport-Westport Middle-High School,03310515, 72, 58, 80.6 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Westwood-Westwood High,03350505, 202, 193, 95.5 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Weymouth-Weymouth High School,03360505, 507, 364, 71.8 +3.4652631578947366,3.47,a-ovpe-i1,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 260, 214, 82.3 +3.8442105263157895,3.84,a-ovpe-i1,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 322, 294, 91.3 +3.8442105263157895,3.84,a-ovpe-i1,2022-23,Wilmington-Wilmington High,03420505, 160, 146, 91.3 +NA,NA,a-ovpe-i1,2022-23,Winchendon-Murdock Academy for Success,03430405, 2,"","" +3.216842105263158,3.22,a-ovpe-i1,2022-23,Winchendon-Murdock High School,03430515, 89, 68, 76.4 +4.16421052631579,4.16,a-ovpe-i1,2022-23,Winchester-Winchester High School,03440505, 361, 357, 98.9 +3.0610526315789475,3.06,a-ovpe-i1,2022-23,Winthrop-Winthrop High School,03460505, 172, 125, 72.7 +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Woburn-Woburn High,03470505, 294, 266, 90.5 +3.191578947368421,3.19,a-ovpe-i1,2022-23,Worcester-Burncoat Senior High,03480503, 318, 241, 75.8 +3.246315789473684,3.25,a-ovpe-i1,2022-23,Worcester-Claremont Academy,03480350, 70, 54, 77.1 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Worcester-Doherty Memorial High,03480512, 381, 359, 94.2 +2.9557894736842107,2.96,a-ovpe-i1,2022-23,Worcester-North High,03480515, 359, 252, 70.2 +3.9494736842105262,3.95,a-ovpe-i1,2022-23,Worcester-South High Community,03480520, 468, 439, 93.8 +3.8694736842105266,3.87,a-ovpe-i1,2022-23,Worcester-University Pk Campus School,03480285, 37, 34, 91.9 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Worcester-Worcester Technical High,03480605, 378, 350, 92.6 3.7010526315789476,3.7,a-ovpe-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 91, 80, 87.9 3.250526315789474,3.25,a-ovpe-i1,2021-22,Abington-Abington High,00010505, 136, 105, 77.2 3.4989473684210526,3.5,a-ovpe-i1,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 71, 59, 83.1 diff --git a/data/dashboard/admin_data/dese/4B_2_five_year_grad.csv b/data/admin_data/dese/4B_2_five_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/4B_2_five_year_grad.csv rename to data/admin_data/dese/4B_2_five_year_grad.csv diff --git a/data/dashboard/admin_data/dese/4B_2_four_year_grad.csv b/data/admin_data/dese/4B_2_four_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/4B_2_four_year_grad.csv rename to data/admin_data/dese/4B_2_four_year_grad.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/4B_2_retention.csv b/data/admin_data/dese/4B_2_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/4B_2_retention.csv rename to data/admin_data/dese/4B_2_retention.csv index cd98c2e..66f24fc 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/4B_2_retention.csv +++ b/data/admin_data/dese/4B_2_retention.csv @@ -1,143 +1,142 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Enrolled,# Retained,% Retained,01,02,03,04,05,06,07,08,09,10,11,12 7.6,5,a-degr-i2,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105," 1,302", 2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Abington-Woodsdale Elementary School,00010015, 335, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Abington-Abington Middle School,00010405, 647, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Abington-Beaver Brook Elementary,00010020, 361, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Abington-Abington Middle School,00010405, 647, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Abington-Abington High,00010505, 541, 2, 0.4,"","","","","","","","", 0.7, 0.0, 0.0, 0.8 7.2,5,a-degr-i2,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 467, 2, 0.4,"","","","", 2.8, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505," 1,682", 4, 0.2,"","","","","","","","", 0.2, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Raymond J Grey Junior High,06000405, 825, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Luther Conant School,06000030, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 323, 2, 0.6, 1.6, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-McCarthy-Towne School,06000015, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Merriam School,06000010, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Blanchard Memorial School,06000005, 448, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Luther Conant School,06000030, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Paul P Gates Elementary School,06000025, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Merriam School,06000010, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.6,5,a-degr-i2,2022-23,Acushnet-Acushnet Elementary School,00030025, 406, 5, 1.2, 2.3, 2.8, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Acushnet-Albert F Ford Middle School,00030305, 407, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 966, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7 -5.0,5.0,a-degr-i2,2022-23,Agawam-Agawam High,00050505," 1,047", 16, 1.5,"","","","","","","","", 4.8, 0.0, 0.4, 0.0 -7.2,5,a-degr-i2,2022-23,Agawam-Clifford M Granger,00050010, 278, 1, 0.4, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Agawam-Benjamin J Phelps,00050020, 242, 1, 0.4, 0.0, 0.0, 1.5, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Agawam-Robinson Park,00050025, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Agawam-Benjamin J Phelps,00050020, 242, 1, 0.4, 0.0, 0.0, 1.5, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Agawam-Clifford M Granger,00050010, 278, 1, 0.4, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" 5.6,5,a-degr-i2,2022-23,Agawam-James Clark School,00050030, 242, 3, 1.2, 1.5, 0.0, 3.8, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Agawam-Roberta G. Doering School,00050303, 512, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +5.0,5.0,a-degr-i2,2022-23,Agawam-Agawam High,00050505," 1,047", 16, 1.5,"","","","","","","","", 4.8, 0.0, 0.4, 0.0 7.6,5,a-degr-i2,2022-23,Agawam-Agawam Junior High,00050405, 518, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2022-23,Agawam-Roberta G. Doering School,00050303, 512, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 936, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Elementary,00070005, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Middle,00070013, 584, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Elementary,00070005, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Amesbury-Amesbury High,00070505, 448, 2, 0.4,"","","","","","","","", 0.0, 1.0, 0.0, 0.9 8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Innovation High School,00070515, 45, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Amherst-Crocker Farm Elementary,00080009, 254, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Amherst-Wildwood Elementary,00080050, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Amherst-Fort River Elementary,00080020, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Amherst-Wildwood Elementary,00080050, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Amherst-Pelham-Amherst Regional Middle School,06050405, 372, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 855, 5, 0.6,"","","","","","","","", 0.0, 0.5, 1.4, 0.5 -6.8,5,a-degr-i2,2022-23,Andover-Andover High,00090505," 1,663", 10, 0.6,"","","","","","","","", 0.5, 0.2, 0.5, 1.2 -8.0,5,a-degr-i2,2022-23,Andover-West Elementary,00090025, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Andover-South Elementary,00090020, 388, 2, 0.5, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Andover-Henry C Sanborn Elementary,00090010, 279, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Andover-High Plain Elementary,00090004, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Andover-Bancroft Elementary,00090003, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-High Plain Elementary,00090004, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Andover-Henry C Sanborn Elementary,00090010, 279, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Andover-South Elementary,00090020, 388, 2, 0.5, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-West Elementary,00090025, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-Doherty Middle,00090305, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Andover-Andover West Middle,00090310, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Andover-Wood Hill Middle School,00090350, 338, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Andover-Doherty Middle,00090305, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Andover-Andover High,00090505," 1,663", 10, 0.6,"","","","","","","","", 0.5, 0.2, 0.5, 1.2 -1.8000000000000007,1,a-degr-i2,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 553, 27, 4.9,"","","","","", 1.0, 0.0, 2.1, 15.6, 7.4, 8.0, 2.0 -8.0,5,a-degr-i2,2022-23,Arlington-Peirce,00100045, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-M Norcross Stratton,00100055, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Gibbs School,00100305, 511, 0, 0.0,"","","","","", 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Ottoson Middle,00100410, 922, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Arlington-John A Bishop,00100005, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Brackett,00100010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Cyrus E Dallin,00100025, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Arlington-Hardy,00100030, 326, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Arlington-Thompson,00100050, 414, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-M Norcross Stratton,00100055, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Ottoson Middle,00100410, 922, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Gibbs School,00100305, 511, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Peirce,00100045, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Arlington-Arlington High,00100505," 1,527", 4, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 +7.4,5,a-degr-i2,2022-23,Arlington-Hardy,00100030, 326, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Cyrus E Dallin,00100025, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Brackett,00100010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-John A Bishop,00100005, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005, 389, 2, 0.5,"", 1.1, 0.0, 0.9, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 650, 3, 0.5,"","","","","","","","", 1.2, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Overlook Middle School,06100305, 549, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 397, 2, 0.5, 0.0, 1.4, 1.4, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005, 389, 2, 0.5,"", 1.1, 0.0, 0.9, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Meetinghouse School,06100010, 83, 0, 0.0, 0.0,"","","","","","","","","","","" +7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 397, 2, 0.5, 0.0, 1.4, 1.4, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Ashland-David Mindess,00140015, 644, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Ashland-Henry E Warren Elementary,00140010, 467, 1, 0.2, 0.0, 0.4,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Ashland-Ashland Middle,00140405, 682, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Ashland-Ashland High,00140505, 840, 2, 0.2,"","","","","","","","", 0.4, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Ashland-Ashland Middle,00140405, 682, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605," 1,128", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 -7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 420, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol-Royalston Middle School,06150305, 429, 1, 0.2,"","","","", 1.0, 0.0, 0.0, 0.0,"","","","" --1.4000000000000004,1,a-degr-i2,2022-23,Athol-Royalston-Athol High,06150505, 402, 19, 4.7,"","","","","","","","", 9.6, 4.5, 1.0, 2.6 +7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 420, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Athol-Royalston-Royalston Community School,06150050, 116, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-1.4000000000000004,1,a-degr-i2,2022-23,Athol-Royalston-Athol High,06150505, 402, 19, 4.7,"","","","","","","","", 9.6, 4.5, 1.0, 2.6 7.2,5,a-degr-i2,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550," 1,173", 5, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 1.2, 1.6, 0.0 +8.0,5,a-degr-i2,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,Attleboro-Thomas Willett Elementary School,00160035, 298, 2, 0.7, 1.4, 0.0, 1.4, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 348, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 40, 0, 0.0,"","","","","","","","","", 0.0, 0.0, 0.0 -6.199999999999999,1,a-degr-i2,2022-23,Attleboro-Attleboro Community Academy,00160515, 56, 4, 7.1,"","","","","","","","","", 16.7, 9.1, 3.7 5.0,5.0,a-degr-i2,2022-23,Attleboro-Attleboro High,00160505," 1,830", 28, 1.5,"","","","","","","","", 1.8, 1.4, 0.7, 2.3 8.0,5,a-degr-i2,2022-23,Attleboro-Wamsutta Middle School,00160320, 576, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Attleboro-Cyril K. Brennan Middle School,00160315, 623, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.6,"","","","" 8.0,5,a-degr-i2,2022-23,Attleboro-Robert J. Coelho Middle School,00160305, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 348, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,Attleboro-A. Irvin Studley Elementary School,00160001, 278, 2, 0.7, 1.3, 1.7, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Auburn Middle,00170305, 652, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Bryn Mawr,00170010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Pakachoag School,00170025, 165, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Auburn-Swanson Road Intermediate School,00170030, 554, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Auburn Middle,00170305, 652, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Auburn-Auburn Senior High,00170505, 722, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Avon-Ralph D Butler,00180010, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Pakachoag School,00170025, 165, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Bryn Mawr,00170010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 5.6,5,a-degr-i2,2022-23,Avon-Avon Middle High School,00180510, 334, 4, 1.2,"","","","","","", 1.5, 0.0, 1.9, 3.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Avon-Ralph D Butler,00180010, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 379, 2, 0.5, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 287, 3, 1.0, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 394, 3, 0.8,"","","","","","","","", 3.1, 0.0, 0.0, 0.0 7.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 367, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Centerville Elementary,00200010, 186, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 394, 3, 0.8,"","","","","","","","", 3.1, 0.0, 0.0, 0.0 +6.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 287, 3, 1.0, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 0.40000000000000036,1,a-degr-i2,2022-23,Barnstable-Barnstable High,00200505," 1,762", 67, 3.8,"","","","","","","", 0.0, 8.0, 1.1, 3.6, 6.5 8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Intermediate School,00200315, 651, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Hyannis West Elementary,00200025, 249, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable United Elementary School,00200050, 735, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 211, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Barnstable-West Villages Elementary School,00200045, 309, 1, 0.3, 0.0, 0.9, 0.0,"","","","","","","","","" 7.0,5,a-degr-i2,2022-23,Barnstable-West Barnstable Elementary,00200005, 193, 1, 0.5, 1.5, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Hyannis West Elementary,00200025, 249, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 211, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Centerville Elementary,00200010, 186, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 402, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Bedford-Lt Eleazer Davis,00230010, 329, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Bedford-Lt Job Lane School,00230012, 587, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Bedford-John Glenn Middle,00230305, 597, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Bedford-Bedford High,00230505, 841, 3, 0.4,"","","","","","","","", 0.9, 0.4, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Bedford-John Glenn Middle,00230305, 597, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Bedford-Lt Job Lane School,00230012, 587, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Bedford-Lt Eleazer Davis,00230010, 329, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Belchertown-Chestnut Hill Community School,00240006, 482, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 0.20000000000000018,1,a-degr-i2,2022-23,Belchertown-Belchertown High,00240505, 635, 25, 3.9,"","","","","","","","", 7.4, 5.1, 3.2, 0.6 8.0,5,a-degr-i2,2022-23,Belchertown-Jabish Middle School,00240025, 338, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Belchertown-Swift River Elementary,00240018, 474, 2, 0.4, 0.6, 0.0, 0.7,"","","","","","","","","" -7.2,5,a-degr-i2,2022-23,Bellingham-Bellingham High School,00250505, 740, 3, 0.4,"","","","","","","", 0.0, 1.9, 0.0, 0.0, 0.0 -7.4,5,a-degr-i2,2022-23,Bellingham-Bellingham Memorial School,00250315, 587, 2, 0.3,"","","", 0.0, 0.0, 0.6, 0.7,"","","","","" 6.8,5,a-degr-i2,2022-23,Bellingham-Stall Brook,00250025, 181, 1, 0.6, 0.0, 1.7, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Bellingham-Joseph F DiPietro Elementary School,00250020, 223, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -6.199999999999999,1,a-degr-i2,2022-23,Bellingham-Keough Memorial Academy,00250510, 28, 2, 7.1,"","","","","","","","", 0.0,"","", 14.3 -7.2,5,a-degr-i2,2022-23,Belmont-Belmont High,00260505," 1,364", 5, 0.4,"","","","","","","","", 0.0, 0.6, 0.6, 0.3 -8.0,5,a-degr-i2,2022-23,Belmont-Winthrop L Chenery Middle,00260305," 1,371", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Belmont-Daniel Butler,00260015, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Belmont-Mary Lee Burbank,00260010, 283, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Bellingham-Bellingham High School,00250505, 740, 3, 0.4,"","","","","","","", 0.0, 1.9, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2022-23,Bellingham-Bellingham Memorial School,00250315, 587, 2, 0.3,"","","", 0.0, 0.0, 0.6, 0.7,"","","","","" 8.0,5,a-degr-i2,2022-23,Belmont-Winn Brook,00260005, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Belmont-Mary Lee Burbank,00260010, 283, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Belmont-Roger E Wellington,00260035, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Belmont-Winthrop L Chenery Middle,00260305," 1,371", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Belmont-Belmont High,00260505," 1,364", 5, 0.4,"","","","","","","","", 0.0, 0.6, 0.6, 0.3 +8.0,5,a-degr-i2,2022-23,Belmont-Daniel Butler,00260015, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 268, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 767, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Berkley-Berkley Community School,00270010, 335, 1, 0.3, 0.0, 0.0, 1.1, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Berkley-Berkley Middle School,00270305, 373, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 5.4,5,a-degr-i2,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 316, 4, 1.3,"","","","","", 0.0, 0.0, 1.5, 6.4, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -5.4,5,a-degr-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 470, 6, 1.3,"","","","","","","","", 0.0, 0.7, 1.9, 2.7 8.0,5,a-degr-i2,2022-23,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 325, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 260, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 470, 6, 1.3,"","","","","","","","", 0.0, 0.7, 1.9, 2.7 8.0,5,a-degr-i2,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 515, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 260, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Berlin-Boylston-Berlin Memorial School,06200005, 160, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Beverly-Beverly Middle School,00300305," 1,367", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Beverly-Ayers/Ryal Side School,00300055, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Beverly-North Beverly Elementary,00300040, 283, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Beverly-Hannah Elementary,00300033, 268, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Beverly-North Beverly Elementary,00300040, 283, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Beverly-Ayers/Ryal Side School,00300055, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +2.2,2.2,a-degr-i2,2022-23,Beverly-Beverly High,00300505," 1,279", 37, 2.9,"","","","","","","","", 5.6, 2.9, 1.0, 1.8 +8.0,5,a-degr-i2,2022-23,Beverly-Beverly Middle School,00300305," 1,367", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Beverly-Cove Elementary,00300015, 340, 5, 1.5, 2.5, 3.3, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Beverly-Centerville Elementary,00300010, 241, 2, 0.8, 3.8, 0.0, 0.0, 0.0,"","","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Beverly-Beverly High,00300505," 1,279", 37, 2.9,"","","","","","","","", 5.6, 2.9, 1.0, 1.8 -5.8,5,a-degr-i2,2022-23,Billerica-Billerica Memorial High School,00310505," 1,535", 17, 1.1,"","","","","","","", 0.0, 3.7, 1.7, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Billerica-Thomas Ditson,00310005, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Frederick J Dutile,00310007, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Billerica-John F Kennedy,00310012, 254, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" @@ -145,16 +144,24 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.6,5,a-degr-i2,2022-23,Billerica-Hajjar Elementary,00310026, 301, 2, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Marshall Middle School,00310305, 604, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Locke Middle,00310310, 549, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +5.8,5,a-degr-i2,2022-23,Billerica-Billerica Memorial High School,00310505," 1,535", 17, 1.1,"","","","","","","", 0.0, 3.7, 1.7, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605," 1,230", 3, 0.2,"","","","","","","","", 0.6, 0.0, 0.3, 0.0 -7.2,5,a-degr-i2,2022-23,Blackstone-Millville-A F Maloney,06220015, 256, 1, 0.4,"","","", 0.8, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Millville Elementary,06220010, 195, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008, 109, 0, 0.0,"","", 0.0,"","","","","","","","","" 7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 390, 2, 0.5,"","","","","","","","", 0.9, 1.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008, 109, 0, 0.0,"","", 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Millville Elementary,06220010, 195, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Blackstone-Millville-A F Maloney,06220015, 256, 1, 0.4,"","","", 0.8, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 343, 1, 0.3,"","","","","", 0.0, 0.0, 0.9,"","","","" 7.6,5,a-degr-i2,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 920, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.5 6.0,5,a-degr-i2,2022-23,Boston-Lee Academy,00350001, 97, 1, 1.0, 0.0, 2.9, 0.0,"","","","","","","","","" 3.0,3.0,a-degr-i2,2022-23,Boston-Baldwin Early Learning Pilot Academy,00350003, 40, 1, 2.5, 2.5,"","","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Boston-Lyon K-8 School,00350004, 115, 2, 1.7, 0.0, 0.0, 8.3, 0.0, 0.0, 0.0, 6.7, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Boston-Hennigan K-8 School,00350153, 473, 2, 0.4, 0.0, 0.0, 0.0, 1.4, 0.0, 1.3, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Boston-Chittick Elementary School,00350154, 153, 3, 2.0, 0.0, 6.9, 3.7, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Boston-Otis Elementary School,00350156, 315, 3, 1.0, 3.2, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Boston-Kennedy John F Elementary School,00350166, 304, 3, 1.0, 3.6, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Boston-UP Academy Holland,00350167, 493, 6, 1.2, 2.6, 3.2, 0.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Philbrick Elementary School,00350172, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.6,4.6,a-degr-i2,2022-23,Boston-Winthrop Elementary School,00350180, 176, 3, 1.7, 5.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Kilmer K-8 School,00350190, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Harvard-Kent Elementary School,00350200, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Bradley Elementary School,00350215, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -163,50 +170,24 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Boston-Perkins Elementary School,00350231, 129, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Boston-Mozart Elementary School,00350237, 128, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 4.8, 0.0,"","","","","","" 7.4,5,a-degr-i2,2022-23,Boston-Murphy K-8 School,00350240, 734, 2, 0.3, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Hale Elementary School,00350243, 132, 1, 0.8, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Perry Elementary School,00350255, 123, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Orchard Gardens K-8 School,00350257, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Boston-Ohrenberger School,00350258, 451, 3, 0.7,"","", 0.0, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Lyndon K-8 School,00350262, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Kennedy Patrick J Elementary School,00350264, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --2.0,1,a-degr-i2,2022-23,Boston-Henderson K-12 Inclusion School Lower,00350266, 60, 3, 5.0, 5.0,"","","","","","","","","","","" -7.4,5,a-degr-i2,2022-23,Boston-Dever Elementary School,00350268, 299, 1, 0.3, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Bates Elementary School,00350278, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -3.4000000000000004,3.4,a-degr-i2,2022-23,Boston-Quincy Elementary School,00350286, 559, 13, 2.3, 2.6, 5.0, 1.8, 2.5, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Clap Elementary School,00350298, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-2.0,1,a-degr-i2,2022-23,Boston-Brighton High School,00350505, 520, 26, 5.0,"","","","","","", 0.0, 5.3, 7.2, 4.6, 3.3, 6.0 +-6.800000000000001,1,a-degr-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 471, 35, 7.4,"","","","","","","","", 14.7, 4.5, 2.0, 3.9 +-15.600000000000001,1,a-degr-i2,2022-23,Boston-Charlestown High School,00350515, 736, 87, 11.8,"","","","","","", 0.0, 0.0, 9.4, 9.8, 17.1, 15.3 +-3.0,1,a-degr-i2,2022-23,Boston-Community Academy,00350518, 55, 3, 5.5,"","","","","","","","","", 0.0, 6.3, 0.0 +-19.2,1,a-degr-i2,2022-23,Boston-Excel High School,00350522, 434, 59, 13.6,"","","","","","","","", 11.4, 16.5, 7.4, 20.0 +3.2,3.2,a-degr-i2,2022-23,Boston-Burke High School,00350525, 411, 10, 2.4,"","","","","","", 0.0, 0.0, 8.8, 1.2, 1.2, 1.0 6.8,5,a-degr-i2,2022-23,Boston-East Boston High School,00350530," 1,260", 7, 0.6,"","","","","","", 1.7, 0.0, 0.5, 0.0, 0.7, 0.8 -2.0,1,a-degr-i2,2022-23,Boston-English High School,00350535, 642, 32, 5.0,"","","","","","", 0.0, 6.7, 15.2, 0.8, 1.6, 2.5 --2.4000000000000004,1,a-degr-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537," 1,057", 55, 5.2,"","","","","","","","", 3.5, 3.4, 7.4, 7.2 -4.8,4.8,a-degr-i2,2022-23,Boston-Fenway High School,00350540, 376, 6, 1.6,"","","","","","","","", 2.1, 1.0, 1.1, 2.2 --7.6,1,a-degr-i2,2022-23,Boston-Another Course To College,00350541, 230, 18, 7.8,"","","","","","","","", 10.2, 12.3, 5.2, 3.4 -6.6,5,a-degr-i2,2022-23,Boston-New Mission High School,00350542, 614, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.8, 0.0, 2.9 --78.6,1,a-degr-i2,2022-23,Boston-Greater Egleston High School,00350543, 90, 39, 43.3,"","","","","","","","","", 55.6, 20.8, 52.7 -5.6,5,a-degr-i2,2022-23,Boston-Boston Latin Academy,00350545," 1,723", 21, 1.2,"","","","","","", 1.1, 0.8, 1.9, 2.1, 0.7, 0.6 -0.5999999999999996,1,a-degr-i2,2022-23,Boston-Boston Arts Academy,00350546, 493, 18, 3.7,"","","","","","","","", 2.8, 3.4, 5.7, 2.8 --48.2,1,a-degr-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 121, 34, 28.1,"","","","","","","","","","", 21.2, 30.7 -5.4,5,a-degr-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 314, 4, 1.3,"","","","","","","","", 3.5, 0.0, 0.0, 1.3 -4.2,4.2,a-degr-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 573, 11, 1.9,"","","","","","", 4.5, 3.4, 0.9, 1.8, 0.9, 1.9 -6.6,5,a-degr-i2,2022-23,Boston-Boston Latin School,00350560," 2,422", 16, 0.7,"","","","","","", 2.1, 0.5, 1.0, 0.0, 0.3, 0.0 -6.8,5,a-degr-i2,2022-23,Boston-Quincy Upper School,00350565, 524, 3, 0.6,"","","","","", 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 6.1 -8.0,5,a-degr-i2,2022-23,Boston-Eliot K-8 Innovation School,00350096, 670, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Mendell Elementary School,00350100, 242, 2, 0.8, 2.4, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Roosevelt K-8 School,00350116, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Conley Elementary School,00350122, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.8,5,a-degr-i2,2022-23,Boston-Grew Elementary School,00350135, 168, 1, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Holmes Elementary School,00350138, 224, 1, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-O'Donnell Elementary School,00350141, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Condon K-8 School,00350146, 529, 2, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Boston-Hennigan K-8 School,00350153, 473, 2, 0.4, 0.0, 0.0, 0.0, 1.4, 0.0, 1.3, 0.0, 0.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Boston-Chittick Elementary School,00350154, 153, 3, 2.0, 0.0, 6.9, 3.7, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Boston-Otis Elementary School,00350156, 315, 3, 1.0, 3.2, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Boston-Kennedy John F Elementary School,00350166, 304, 3, 1.0, 3.6, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Boston-UP Academy Holland,00350167, 493, 6, 1.2, 2.6, 3.2, 0.9, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Philbrick Elementary School,00350172, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.6,4.6,a-degr-i2,2022-23,Boston-Winthrop Elementary School,00350180, 176, 3, 1.7, 5.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Tynan Elementary School,00350181, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Boston-Hurley K-8 School,00350182, 281, 2, 0.7, 2.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-Lee K-8 School,00350183, 426, 13, 3.1, 10.7, 1.8, 0.0, 3.3, 0.0, 0.0, 7.0, 1.9,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Manning Elementary School,00350184, 128, 1, 0.8, 0.0, 4.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-West Zone Early Learning Center,00350006, 32, 1, 3.1, 3.1,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Ellison-Parks Early Education School,00350008, 99, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-East Boston Early Education Center,00350009, 44, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Haynes Early Education Center,00350010, 74, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Shaw Elementary School,00350014, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 61, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Mattahunt Elementary School,00350016, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Curley K-8 School,00350020, 745, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Boston-Beethoven Elementary School,00350021, 156, 1, 0.6, 0.0, 1.2,"","","","","","","","","","" 5.0,5.0,a-degr-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575," 1,567", 23, 1.5,"","","","","","", 1.8, 3.5, 1.2, 1.0, 2.7, 0.0 -15.2,1,a-degr-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 319, 37, 11.6,"","","","","","","","", 15.6, 2.3, 17.3, 10.5 1.2000000000000002,1.2,a-degr-i2,2022-23,Boston-Lyon High School,00350655, 116, 4, 3.4,"","","","","","","","", 9.4, 4.0, 0.0, 0.0 @@ -215,15 +196,44 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -4.6,1,a-degr-i2,2022-23,Boston-Snowden International High School,00350690, 463, 29, 6.3,"","","","","","","","", 9.3, 6.8, 1.8, 6.6 7.4,5,a-degr-i2,2022-23,Boston-Hernandez K-8 School,00350691, 330, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 55, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" --66.2,1,a-degr-i2,2022-23,Boston-Boston Collaborative High School,00350755, 178, 66, 37.1,"","","","","","","","","", 25.0, 31.1, 41.5 -8.0,5,a-degr-i2,2022-23,Boston-Adams Elementary School,00350302, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Mason Elementary School,00350304, 140, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 277, 3, 1.1, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Boston-Gardner Pilot Academy,00350326, 322, 3, 0.9, 0.0, 2.5, 0.0, 2.4, 0.0, 0.0, 2.6, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Kenny Elementary School,00350328, 253, 2, 0.8, 0.0, 2.4, 2.2, 0.0, 0.0, 0.0,"","","","","","" 4.0,4.0,a-degr-i2,2022-23,Boston-Warren-Prescott K-8 School,00350346, 391, 8, 2.0, 6.7, 0.0, 4.0, 0.0, 1.9, 0.0, 0.0, 2.6,"","","","" 6.4,5,a-degr-i2,2022-23,Boston-Channing Elementary School,00350360, 119, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 6.3, 0.0,"","","","","","" -26.0,1,a-degr-i2,2022-23,Boston-McKinley Schools,00350363, 147, 25, 17.0,"","","","", 0.0, 0.0, 0.0, 0.0, 28.6, 25.0, 32.0, 18.2 +-14.2,1,a-degr-i2,2022-23,Boston-Carter School,00350036, 18, 2, 11.1,"","","","","","","","","","","", 33.3 +7.0,5,a-degr-i2,2022-23,Boston-Sumner Elementary School,00350052, 400, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Taylor Elementary School,00350054, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2022-23,Boston-Guild Elementary School,00350062, 191, 1, 0.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Alighieri Dante Montessori School,00350066, 68, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Ellis Elementary School,00350072, 238, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Eliot K-8 Innovation School,00350096, 670, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Mendell Elementary School,00350100, 242, 2, 0.8, 2.4, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Roosevelt K-8 School,00350116, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Conley Elementary School,00350122, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2022-23,Boston-Grew Elementary School,00350135, 168, 1, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Holmes Elementary School,00350138, 224, 1, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-O'Donnell Elementary School,00350141, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Condon K-8 School,00350146, 529, 2, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Hale Elementary School,00350243, 132, 1, 0.8, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Perry Elementary School,00350255, 123, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Orchard Gardens K-8 School,00350257, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Tynan Elementary School,00350181, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2022-23,Boston-Ohrenberger School,00350258, 451, 3, 0.7,"","", 0.0, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Lyndon K-8 School,00350262, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Kennedy Patrick J Elementary School,00350264, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-2.0,1,a-degr-i2,2022-23,Boston-Henderson K-12 Inclusion School Lower,00350266, 60, 3, 5.0, 5.0,"","","","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Boston-Dever Elementary School,00350268, 299, 1, 0.3, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Bates Elementary School,00350278, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.4000000000000004,3.4,a-degr-i2,2022-23,Boston-Quincy Elementary School,00350286, 559, 13, 2.3, 2.6, 5.0, 1.8, 2.5, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Clap Elementary School,00350298, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.0,2.0,a-degr-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 541, 16, 3.0,"","","","","", 0.0, 1.1, 4.7, 3.4, 5.6, 3.6, 0.0 +5.4,5,a-degr-i2,2022-23,Boston-Haley Pilot School,00350077, 312, 4, 1.3, 7.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-McKay K-8 School,00350080, 611, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2022-23,Boston-Everett Elementary School,00350088, 219, 1, 0.5, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","" +-2.4000000000000004,1,a-degr-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537," 1,057", 55, 5.2,"","","","","","","","", 3.5, 3.4, 7.4, 7.2 +6.6,5,a-degr-i2,2022-23,Boston-Hurley K-8 School,00350182, 281, 2, 0.7, 2.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-Lee K-8 School,00350183, 426, 13, 3.1, 10.7, 1.8, 0.0, 3.3, 0.0, 0.0, 7.0, 1.9,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Manning Elementary School,00350184, 128, 1, 0.8, 0.0, 4.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-66.2,1,a-degr-i2,2022-23,Boston-Boston Collaborative High School,00350755, 178, 66, 37.1,"","","","","","","","","", 25.0, 31.1, 41.5 8.0,5,a-degr-i2,2022-23,Boston-Russell Elementary School,00350366, 244, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Trotter Elementary School,00350370, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Winship Elementary School,00350374, 244, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -235,32 +245,22 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.2,4.2,a-degr-i2,2022-23,Boston-Frederick Pilot Middle School,00350383, 323, 6, 1.9,"","","","","", 0.0, 0.0, 4.3,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Blackstone Elementary School,00350390, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 653, 5, 0.8,"", 0.0, 1.9, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.7, 3.2, 0.0 -1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-West Zone Early Learning Center,00350006, 32, 1, 3.1, 3.1,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Ellison-Parks Early Education School,00350008, 99, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-East Boston Early Education Center,00350009, 44, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Haynes Early Education Center,00350010, 74, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Shaw Elementary School,00350014, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 61, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Mattahunt Elementary School,00350016, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Curley K-8 School,00350020, 745, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Boston-Beethoven Elementary School,00350021, 156, 1, 0.6, 0.0, 1.2,"","","","","","","","","","" --14.2,1,a-degr-i2,2022-23,Boston-Carter School,00350036, 18, 2, 11.1,"","","","","","","","","","","", 33.3 -7.0,5,a-degr-i2,2022-23,Boston-Sumner Elementary School,00350052, 400, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Taylor Elementary School,00350054, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2022-23,Boston-Guild Elementary School,00350062, 191, 1, 0.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Alighieri Dante Montessori School,00350066, 68, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Ellis Elementary School,00350072, 238, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -2.0,2.0,a-degr-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 541, 16, 3.0,"","","","","", 0.0, 1.1, 4.7, 3.4, 5.6, 3.6, 0.0 -5.4,5,a-degr-i2,2022-23,Boston-Haley Pilot School,00350077, 312, 4, 1.3, 7.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-McKay K-8 School,00350080, 611, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2022-23,Boston-Everett Elementary School,00350088, 219, 1, 0.5, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","" --2.0,1,a-degr-i2,2022-23,Boston-Brighton High School,00350505, 520, 26, 5.0,"","","","","","", 0.0, 5.3, 7.2, 4.6, 3.3, 6.0 --6.800000000000001,1,a-degr-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 471, 35, 7.4,"","","","","","","","", 14.7, 4.5, 2.0, 3.9 --15.600000000000001,1,a-degr-i2,2022-23,Boston-Charlestown High School,00350515, 736, 87, 11.8,"","","","","","", 0.0, 0.0, 9.4, 9.8, 17.1, 15.3 --3.0,1,a-degr-i2,2022-23,Boston-Community Academy,00350518, 55, 3, 5.5,"","","","","","","","","", 0.0, 6.3, 0.0 --19.2,1,a-degr-i2,2022-23,Boston-Excel High School,00350522, 434, 59, 13.6,"","","","","","","","", 11.4, 16.5, 7.4, 20.0 -3.2,3.2,a-degr-i2,2022-23,Boston-Burke High School,00350525, 411, 10, 2.4,"","","","","","", 0.0, 0.0, 8.8, 1.2, 1.2, 1.0 +8.0,5,a-degr-i2,2022-23,Boston-Adams Elementary School,00350302, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Mason Elementary School,00350304, 140, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 277, 3, 1.1, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Boston-Gardner Pilot Academy,00350326, 322, 3, 0.9, 0.0, 2.5, 0.0, 2.4, 0.0, 0.0, 2.6, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Kenny Elementary School,00350328, 253, 2, 0.8, 0.0, 2.4, 2.2, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2022-23,Boston-Fenway High School,00350540, 376, 6, 1.6,"","","","","","","","", 2.1, 1.0, 1.1, 2.2 +-7.6,1,a-degr-i2,2022-23,Boston-Another Course To College,00350541, 230, 18, 7.8,"","","","","","","","", 10.2, 12.3, 5.2, 3.4 +6.6,5,a-degr-i2,2022-23,Boston-New Mission High School,00350542, 614, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.8, 0.0, 2.9 +-78.6,1,a-degr-i2,2022-23,Boston-Greater Egleston High School,00350543, 90, 39, 43.3,"","","","","","","","","", 55.6, 20.8, 52.7 +5.6,5,a-degr-i2,2022-23,Boston-Boston Latin Academy,00350545," 1,723", 21, 1.2,"","","","","","", 1.1, 0.8, 1.9, 2.1, 0.7, 0.6 +0.5999999999999996,1,a-degr-i2,2022-23,Boston-Boston Arts Academy,00350546, 493, 18, 3.7,"","","","","","","","", 2.8, 3.4, 5.7, 2.8 +-48.2,1,a-degr-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 121, 34, 28.1,"","","","","","","","","","", 21.2, 30.7 +5.4,5,a-degr-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 314, 4, 1.3,"","","","","","","","", 3.5, 0.0, 0.0, 1.3 +4.2,4.2,a-degr-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 573, 11, 1.9,"","","","","","", 4.5, 3.4, 0.9, 1.8, 0.9, 1.9 +6.6,5,a-degr-i2,2022-23,Boston-Boston Latin School,00350560," 2,422", 16, 0.7,"","","","","","", 2.1, 0.5, 1.0, 0.0, 0.3, 0.0 +6.8,5,a-degr-i2,2022-23,Boston-Quincy Upper School,00350565, 524, 3, 0.6,"","","","","", 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 6.1 2.5999999999999996,2.6,a-degr-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 698, 19, 2.7,"","","","", 0.0, 0.0, 1.2, 1.1, 6.7, 4.5, 2.9, 6.3 -96.6,1,a-degr-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 321, 168, 52.3,"","","","","","","","", 70.3, 36.4,"", 50.5 5.8,5,a-degr-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 463, 5, 1.1,"","","","","", 0.0, 0.0, 1.6, 3.6, 0.0, 0.0, 1.5 @@ -272,341 +272,341 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Bourne-Bourne Middle School,00360325, 431, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Boxford-Harry Lee Cole,00380005, 213, 2, 0.9, 1.0, 0.9,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Boxford-Spofford Pond,00380013, 384, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Braintree-Archie T Morrison,00400033, 278, 2, 0.7, 2.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Braintree-South Middle School,00400310, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -4.6,4.6,a-degr-i2,2022-23,Braintree-Hollis,00400005, 292, 5, 1.7, 1.7, 4.8, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Braintree-Braintree High,00400505," 1,612", 6, 0.4,"","","","","","","","", 0.0, 0.2, 1.1, 0.2 -6.4,5,a-degr-i2,2022-23,Braintree-Liberty,00400025, 371, 3, 0.8, 3.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Braintree-East Middle School,00400305, 971, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Braintree-Highlands,00400015, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Braintree-Mary E Flaherty School,00400020, 268, 2, 0.7, 1.2, 0.0, 0.0, 1.6,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Braintree-Donald Ross,00400050, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Brewster-Eddy Elementary,00410010, 201, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Braintree-East Middle School,00400305, 971, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.6,4.6,a-degr-i2,2022-23,Braintree-Hollis,00400005, 292, 5, 1.7, 1.7, 4.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Braintree-Highlands,00400015, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Braintree-Archie T Morrison,00400033, 278, 2, 0.7, 2.8, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2022-23,Braintree-Liberty,00400025, 371, 3, 0.8, 3.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Braintree-Braintree High,00400505," 1,612", 6, 0.4,"","","","","","","","", 0.0, 0.2, 1.1, 0.2 +8.0,5,a-degr-i2,2022-23,Braintree-South Middle School,00400310, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Brewster-Stony Brook Elementary,00410005, 131, 2, 1.5, 1.5, 1.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Brewster-Eddy Elementary,00410010, 201, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 266, 3, 1.1, 2.7, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 552, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -5.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 174, 2, 1.1, 1.1,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050, 501, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 5.6,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505," 1,377", 17, 1.2,"","","","","","","","", 1.1, 1.3, 1.8, 0.6 -6.199999999999999,1,a-degr-i2,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 14, 1, 7.1,"","","","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320, 742, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050, 501, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 174, 2, 1.1, 1.1,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 552, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Williams Intermediate School,06250300, 801, 1, 0.1,"","", 0.4, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Raynham Middle School,06250315, 725, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320, 742, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Brimfield-Brimfield Elementary,00430005, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 549, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605," 1,310", 2, 0.2,"","","","","","","","", 0.0, 0.3, 0.0, 0.3 +7.2,5,a-degr-i2,2022-23,Brockton-Downey,00440110, 455, 2, 0.4, 1.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Brockton-Oscar F Raymond,00440078, 615, 3, 0.5, 0.8, 0.0, 0.0, 1.7, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Brockton-Edgar B Davis,00440023, 838, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Brockton-Hancock,00440045, 484, 4, 0.8, 1.0, 1.8, 0.0, 0.0, 1.1,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Brockton-Gilmore Elementary School,00440055, 343, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Brockton-Louis F Angelo Elementary,00440065, 693, 1, 0.1, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Brockton-John F Kennedy,00440017, 416, 2, 0.5, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Brockton-Brookfield,00440010, 340, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Brockton-Manthala George Jr. School,00440003, 579, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Brockton-Mary E. Baker School,00440002, 565, 2, 0.4, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Brockton-Dr W Arnone Community School,00440001, 569, 3, 0.5, 0.8, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -19.8,1,a-degr-i2,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 173, 24, 13.9,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 54.3, 18.8, 10.5, 0.0 -8.0,5,a-degr-i2,2022-23,Brockton-PROMISE College and Career Academy,00440525, 38, 0, 0.0,"","","","","","","","", 0.0,"","","" --36.0,1,a-degr-i2,2022-23,Brockton-Edison Academy,00440520, 241, 53, 22.0,"","","","","","","","", 17.6, 36.1, 15.8, 22.7 --48.6,1,a-degr-i2,2022-23,Brockton-Brockton Champion High School,00440515, 138, 39, 28.3,"","","","","","","","", 64.7, 8.7, 8.7, 0.0 --14.2,1,a-degr-i2,2022-23,Brockton-Brockton High,00440505," 3,617", 401, 11.1,"","","","","","","","", 25.1, 7.4, 4.8, 0.1 -7.6,5,a-degr-i2,2022-23,Brockton-Plouffe Middle School,00440422, 652, 1, 0.2,"","","","","", 0.0, 0.0, 0.4,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-Ashfield Middle School,00440421, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-West Middle School,00440420, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-South Middle School,00440415, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-North Middle School,00440410, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Brockton-East Middle School,00440405, 452, 1, 0.2,"","","","","", 0.6, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Brockton-Edgar B Davis,00440023, 838, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Brockton-Hancock,00440045, 484, 4, 0.8, 1.0, 1.8, 0.0, 0.0, 1.1,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Brockton-Gilmore Elementary School,00440055, 343, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Brockton-Louis F Angelo Elementary,00440065, 693, 1, 0.1, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Brockton-Oscar F Raymond,00440078, 615, 3, 0.5, 0.8, 0.0, 0.0, 1.7, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Brockton-Downey,00440110, 455, 2, 0.4, 1.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" -0.1999999999999993,1,a-degr-i2,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 49, 2, 4.1,"","","","","","","", 0.0, 12.5, 7.7, 0.0,"" +7.6,5,a-degr-i2,2022-23,Brockton-East Middle School,00440405, 452, 1, 0.2,"","","","","", 0.6, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-North Middle School,00440410, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-South Middle School,00440415, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-West Middle School,00440420, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-Ashfield Middle School,00440421, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Brockton-Plouffe Middle School,00440422, 652, 1, 0.2,"","","","","", 0.0, 0.0, 0.4,"","","","" +-14.2,1,a-degr-i2,2022-23,Brockton-Brockton High,00440505," 3,617", 401, 11.1,"","","","","","","","", 25.1, 7.4, 4.8, 0.1 +-48.6,1,a-degr-i2,2022-23,Brockton-Brockton Champion High School,00440515, 138, 39, 28.3,"","","","","","","","", 64.7, 8.7, 8.7, 0.0 +-36.0,1,a-degr-i2,2022-23,Brockton-Edison Academy,00440520, 241, 53, 22.0,"","","","","","","","", 17.6, 36.1, 15.8, 22.7 +8.0,5,a-degr-i2,2022-23,Brockton-PROMISE College and Career Academy,00440525, 38, 0, 0.0,"","","","","","","","", 0.0,"","","" 3.0,3.0,a-degr-i2,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305," 2,033", 51, 2.5, 7.7, 4.7, 2.6, 2.1, 4.1, 1.1, 1.7, 0.0, 1.9, 0.7, 0.8, 0.0 6.2,5,a-degr-i2,2022-23,Brookfield-Brookfield Elementary,00450005, 231, 2, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2022-23,Brookline-Pierce,00460040, 632, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brookline-Edith C Baker,00460005, 604, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Brookline-Lawrence,00460030, 540, 1, 0.2, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Brookline-Heath,00460025, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brookline-Michael Driscoll,00460020, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 732, 1, 0.1, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brookline-John D Runkle,00460045, 444, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Brookline-Brookline High,00460505," 2,066", 13, 0.6,"","","","","","","","", 0.4, 0.0, 0.2, 2.0 +8.0,5,a-degr-i2,2022-23,Brookline-Edith C Baker,00460005, 604, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Brookline-William H Lincoln,00460035, 431, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brookline-John D Runkle,00460045, 444, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brookline-Michael Driscoll,00460020, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Brookline-Brookline High,00460505," 2,066", 13, 0.6,"","","","","","","","", 0.4, 0.0, 0.2, 2.0 +7.6,5,a-degr-i2,2022-23,Brookline-Lawrence,00460030, 540, 1, 0.2, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Brookline-Pierce,00460040, 632, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 732, 1, 0.1, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Fox Hill,00480007, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Burlington-Memorial,00480015, 345, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Burlington-Burlington High,00480505, 879, 7, 0.8,"","","","","","","","", 0.5, 1.3, 0.5, 0.9 8.0,5,a-degr-i2,2022-23,Burlington-Francis Wyman Elementary,00480035, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Marshall Simonds Middle,00480303, 817, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Pine Glen Elementary,00480020, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Cambridge-Peabody,00490050, 229, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Haggerty,00490020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Cambridge-Cambridgeport,00490007, 192, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Cambridge Street Upper School,00490305, 293, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.8,5,a-degr-i2,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 184, 2, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Cambridge-Graham and Parks,00490080, 277, 1, 0.4, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Cambridge-John M Tobin,00490065, 174, 1, 0.6, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Amigos School,00490006, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Maria L. Baldwin,00490005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.0,4.0,a-degr-i2,2022-23,Cambridge-Cambridge Rindge and Latin,00490506," 1,848", 37, 2.0,"","","","","","","","", 2.5, 1.9, 1.4, 2.2 8.0,5,a-degr-i2,2022-23,Cambridge-Vassal Lane Upper School,00490320, 273, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-Rindge Avenue Upper School,00490315, 274, 1, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Maria L. Baldwin,00490005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Amigos School,00490006, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2022-23,Cambridge-Putnam Avenue Upper School,00490310, 251, 2, 0.8,"","","","","", 2.3, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Haggerty,00490020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Cambridge Street Upper School,00490305, 293, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-Martin Luther King Jr.,00490030, 238, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.2,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-King Open,00490035, 269, 1, 0.4, 0.0, 0.0, 0.0, 2.1, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Cambridge-Kennedy-Longfellow,00490040, 149, 1, 0.7, 4.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Cambridge-Morse,00490045, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Cambridge-Peabody,00490050, 229, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Canton-Lt Peter M Hansen,00500012, 461, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Canton-John F Kennedy,00500017, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Cambridge-John M Tobin,00490065, 174, 1, 0.6, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Cambridge-Graham and Parks,00490080, 277, 1, 0.4, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 184, 2, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Canton-Dean S Luce,00500020, 378, 2, 0.5, 1.4, 0.0, 0.0, 0.0, 1.4,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Canton-Wm H Galvin Middle,00500305, 753, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Canton-John F Kennedy,00500017, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Canton-Lt Peter M Hansen,00500012, 461, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Canton-Canton High,00500505, 895, 10, 1.1,"","","","","","","","", 1.2, 1.8, 1.4, 0.0 +8.0,5,a-degr-i2,2022-23,Canton-Wm H Galvin Middle,00500305, 753, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 250, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 666, 3, 0.5,"","","","","","","","", 0.0, 0.0, 0.6, 1.2 7.6,5,a-degr-i2,2022-23,Carlisle-Carlisle School,00510025, 526, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Carver-Carver Middle/High School,00520405, 749, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 7.4,5,a-degr-i2,2022-23,Carver-Carver Elementary School,00520015, 595, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 2.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Carver-Carver Middle/High School,00520405, 749, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 1.5999999999999996,1.6,a-degr-i2,2022-23,Central Berkshire-Becket Washington School,06350005, 63, 2, 3.2, 8.3, 12.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Central Berkshire-Craneville,06350025, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,Central Berkshire-Kittredge,06350035, 107, 1, 0.9, 0.0, 0.0, 4.8, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305, 345, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 4.2,4.2,a-degr-i2,2022-23,Central Berkshire-Wahconah Regional High,06350505, 485, 9, 1.9,"","","","","","","","", 4.3, 2.3, 0.8, 0.0 -8.0,5,a-degr-i2,2022-23,Chelmsford-Byam School,00560030, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305, 345, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Central Berkshire-Kittredge,06350035, 107, 1, 0.9, 0.0, 0.0, 4.8, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Chelmsford-Center Elementary School,00560005, 403, 1, 0.2, 0.0, 1.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-Charles D Harrington,00560025, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-South Row,00560015, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Chelmsford-Chelmsford High,00560505," 1,367", 5, 0.4,"","","","","","","","", 0.0, 0.3, 0.0, 1.3 7.8,5,a-degr-i2,2022-23,Chelmsford-McCarthy Middle School,00560310, 844, 1, 0.1,"","","","", 0.5, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Chelmsford-Col Moses Parker School,00560305, 723, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chelmsford-Charles D Harrington,00560025, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Chelmsford-South Row,00560015, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Chelmsford-Center Elementary School,00560005, 403, 1, 0.2, 0.0, 1.0, 0.0, 0.0,"","","","","","","","" --58.0,1,a-degr-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 115, 38, 33.0,"","","","","","","","","", 55.6, 0.0, 50.0 -8.0,5,a-degr-i2,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 103, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Chelsea-William A Berkowitz Elementary,00570025, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Chelsea-Edgar A Hooks Elementary,00570030, 498, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-Byam School,00560030, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.8,5,a-degr-i2,2022-23,Chelsea-George F. Kelly Elementary,00570035, 478, 3, 0.6, 0.9, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" --13.2,1,a-degr-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 47, 5, 10.6,"","","","","","","","","", 11.1, 9.1, 12.5 -8.0,5,a-degr-i2,2022-23,Chelsea-Joseph A. Browne School,00570055, 511, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -0.5999999999999996,1,a-degr-i2,2022-23,Chelsea-Chelsea High,00570505," 1,605", 60, 3.7,"","","","","","","","", 6.9, 4.3, 0.9, 0.9 -7.4,5,a-degr-i2,2022-23,Chelsea-Clark Avenue School,00570050, 671, 2, 0.3,"","","","", 0.6, 0.0, 0.6, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045, 451, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Chelsea-Frank M Sokolowski Elementary,00570040, 495, 1, 0.2, 0.0, 0.7, 0.0, 0.0,"","","","","","","","" +-13.2,1,a-degr-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 47, 5, 10.6,"","","","","","","","","", 11.1, 9.1, 12.5 +7.6,5,a-degr-i2,2022-23,Chelsea-Edgar A Hooks Elementary,00570030, 498, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-William A Berkowitz Elementary,00570025, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 103, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045, 451, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Chelsea-Clark Avenue School,00570050, 671, 2, 0.3,"","","","", 0.6, 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-Joseph A. Browne School,00570055, 511, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-58.0,1,a-degr-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 115, 38, 33.0,"","","","","","","","","", 55.6, 0.0, 50.0 +0.5999999999999996,1,a-degr-i2,2022-23,Chelsea-Chelsea High,00570505," 1,605", 60, 3.7,"","","","","","","","", 6.9, 4.3, 0.9, 0.9 8.0,5,a-degr-i2,2022-23,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 103, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Litwin,00610022, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Lambert-Lavoie,00610040, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2022-23,Chicopee-Fairview Elementary,00610050, 284, 2, 0.7, 1.8, 1.7, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Chicopee-Streiber Memorial School,00610065, 179, 1, 0.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Chicopee-Gen John J Stefanik,00610090, 339, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Chicopee-Bellamy Middle,00610305, 776, 2, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Dupont Middle,00610310, 696, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Chicopee-Chicopee High,00610505, 914, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +7.4,5,a-degr-i2,2022-23,Chicopee-Gen John J Stefanik,00610090, 339, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Chicopee-Chicopee Comprehensive High School,00610510," 1,206", 5, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.8 +6.6,5,a-degr-i2,2022-23,Chicopee-Fairview Elementary,00610050, 284, 2, 0.7, 1.8, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Chicopee-Lambert-Lavoie,00610040, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Chicopee-Streiber Memorial School,00610065, 179, 1, 0.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Chicopee-Barry,00610003, 301, 1, 0.3, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Chicopee-Belcher,00610010, 137, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Chicopee-Bowe,00610015, 349, 6, 1.7, 6.3, 2.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Chicopee-Bowie,00610020, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -1.1999999999999993,1,a-degr-i2,2022-23,Chicopee-Chicopee Academy,00610021, 87, 4, 4.6,"","","","","","", 0.0, 0.0, 0.0, 4.8, 6.3, 11.1 +8.0,5,a-degr-i2,2022-23,Chicopee-Litwin,00610022, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Chicopee-Dupont Middle,00610310, 696, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,Chicopee-Chicopee High,00610505, 914, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 8.0,5,a-degr-i2,2022-23,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305, 329, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -1.8000000000000007,1,a-degr-i2,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 183, 9, 4.9,"","","","","","","","", 10.8, 1.7, 4.2, 5.1 8.0,5,a-degr-i2,2022-23,Clarksburg-Clarksburg Elementary,00630010, 159, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Clinton-Clinton Senior High,00640505, 563, 11, 2.0,"","","","","","","","", 4.5, 1.6, 0.7, 0.0 8.0,5,a-degr-i2,2022-23,Clinton-Clinton Middle School,00640305, 545, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Clinton-Clinton Senior High,00640505, 563, 11, 2.0,"","","","","","","","", 4.5, 1.6, 0.7, 0.0 7.6,5,a-degr-i2,2022-23,Clinton-Clinton Elementary,00640050, 621, 1, 0.2, 0.6, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset Middle School,00650305, 295, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset High School,00650505, 431, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -6.2,5,a-degr-i2,2022-23,Cohasset-Joseph Osgood,00650010, 235, 2, 0.9, 0.8, 0.9,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset Middle School,00650305, 295, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cohasset-Deer Hill,00650005, 304, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Cohasset-Joseph Osgood,00650010, 235, 2, 0.9, 0.8, 0.9,"","","","","","","","","","" 7.2,5,a-degr-i2,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205," 1,086", 4, 0.4, 2.4, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.4,5,a-degr-i2,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 253, 2, 0.8,"","","","","", 0.0, 0.0, 0.0, 6.5, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 957, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Concord-Thoreau,00670020, 361, 1, 0.3, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Concord-Willard,00670030, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Concord-Alcott,00670005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Concord-Concord Middle,00670305, 650, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Concord-Thoreau,00670020, 361, 1, 0.3, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Concord-Alcott,00670005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Concord-Willard,00670030, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Concord-Carlisle-Concord Carlisle High,06400505," 1,303", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 5.8,5,a-degr-i2,2022-23,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 355, 4, 1.1, 2.0, 1.9, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Conway-Conway Grammar,00680005, 101, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Danvers-Riverside,00710030, 227, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" -6.2,5,a-degr-i2,2022-23,Danvers-Danvers High,00710505, 769, 7, 0.9,"","","","","","","","", 0.6, 0.6, 0.0, 2.5 -8.0,5,a-degr-i2,2022-23,Danvers-Holten Richmond Middle School,00710305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Danvers-Great Oak,00710015, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Danvers-Ivan G Smith,00710032, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Danvers-Willis E Thorpe,00710045, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Danvers-Danvers High,00710505, 769, 7, 0.9,"","","","","","","","", 0.6, 0.6, 0.0, 2.5 7.4,5,a-degr-i2,2022-23,Danvers-Highlands,00710010, 329, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Danvers-Great Oak,00710015, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Danvers-Riverside,00710030, 227, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Danvers-Willis E Thorpe,00710045, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Danvers-Holten Richmond Middle School,00710305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Dartmouth-Joseph Demello,00720015, 351, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dartmouth-James M. Quinn School,00720040, 588, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dartmouth-George H Potter,00720030, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dartmouth-Dartmouth Middle,00720050, 804, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dartmouth-James M. Quinn School,00720040, 588, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Dartmouth-Dartmouth High,00720505, 979, 17, 1.7,"","","","","","","","", 0.8, 2.8, 1.5, 1.7 -8.0,5,a-degr-i2,2022-23,Dedham-Greenlodge,00730025, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Dedham-Oakdale,00730030, 245, 3, 1.2, 1.9, 4.3, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Dedham-Riverdale,00730045, 174, 2, 1.1, 2.4, 0.0, 0.0, 2.3, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dedham-Dedham Middle School,00730305, 540, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.8,5,a-degr-i2,2022-23,Dedham-Dedham High,00730505, 710, 8, 1.1,"","","","","","","","", 2.3, 0.0, 1.8, 0.6 +8.0,5,a-degr-i2,2022-23,Dartmouth-George H Potter,00720030, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Dedham-Avery,00730010, 297, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Dedham-Dedham High,00730505, 710, 8, 1.1,"","","","","","","","", 2.3, 0.0, 1.8, 0.6 +8.0,5,a-degr-i2,2022-23,Dedham-Dedham Middle School,00730305, 540, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2022-23,Dedham-Riverdale,00730045, 174, 2, 1.1, 2.4, 0.0, 0.0, 2.3, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2022-23,Dedham-Oakdale,00730030, 245, 3, 1.2, 1.9, 4.3, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Dedham-Greenlodge,00730025, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Deerfield-Deerfield Elementary,00740015, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 454, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 888, 24, 2.7,"","","","","","","", 0.0, 4.8, 1.1, 1.3, 6.6 +7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 476, 1, 0.2,"","","","","", 0.4, 0.0,"","","","","" 6.2,5,a-degr-i2,2022-23,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 215, 2, 0.9, 0.0, 3.2, 0.0,"","","","","","","","","" 6.8,5,a-degr-i2,2022-23,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 167, 1, 0.6, 1.7, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Dennis-Yarmouth-Station Avenue Elementary,06450025, 301, 1, 0.3, 0.0, 0.0, 1.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 476, 1, 0.2,"","","","","", 0.4, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 454, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 667, 18, 2.7,"","","","","","","","", 4.3, 1.2, 2.3, 3.1 -7.6,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 446, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" 8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Middle School,06500305, 366, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Palmer River,06500010, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Douglas-Douglas Middle School,00770305, 298, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 446, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" 6.8,5,a-degr-i2,2022-23,Douglas-Douglas High School,00770505, 323, 2, 0.6,"","","","","","","","", 0.0, 0.0, 0.0, 2.3 +8.0,5,a-degr-i2,2022-23,Douglas-Douglas Middle School,00770305, 298, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Douglas-Douglas Elementary School,00770015, 344, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Douglas-Douglas Primary School,00770005, 85, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Dover-Chickering,00780005, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 669, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 482, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -2.5999999999999996,2.6,a-degr-i2,2022-23,Dracut-Dracut Senior High,00790505, 841, 23, 2.7,"","","","","","","","", 3.4, 3.7, 2.0, 1.6 +7.8,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 669, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Dracut-Justus C. Richardson Middle School,00790410, 848, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Dracut-Dracut Senior High,00790505, 841, 23, 2.7,"","","","","","","","", 3.4, 3.7, 2.0, 1.6 +7.2,5,a-degr-i2,2022-23,Dracut-George H. Englesby Elementary School,00790045, 463, 2, 0.4, 0.0, 0.0, 1.0, 1.1, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Dracut-Brookside Elementary,00790035, 398, 2, 0.5, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dracut-Greenmont Avenue,00790030, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2022-23,Dracut-Joseph A Campbell Elementary,00790020, 490, 7, 1.4, 4.3, 2.0, 0.0, 0.0, 1.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Dracut-George H. Englesby Elementary School,00790045, 463, 2, 0.4, 0.0, 0.0, 1.0, 1.1, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Elementary,06580005, 343, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Heritage School,06580030, 453, 3, 0.7,"", 0.0, 0.6, 1.3,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305, 547, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Elementary,06580020, 142, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 105, 0, 0.0, 0.0,"","","","","","","","","","","" 2.2,2.2,a-degr-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 918, 27, 2.9,"","","","","","","","", 6.1, 2.4, 2.2, 0.0 8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Middle School,06580310, 592, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305, 547, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Heritage School,06580030, 453, 3, 0.7,"", 0.0, 0.6, 1.3,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 105, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Elementary,06580005, 343, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Elementary,06580020, 142, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Duxbury-Alden School,00820004, 603, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Duxbury-Chandler Elementary,00820006, 401, 4, 1.0, 1.6, 0.5,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Duxbury-Duxbury High,00820505, 924, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -7.8,5,a-degr-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 902, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 -8.0,5,a-degr-i2,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010, 633, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Duxbury-Chandler Elementary,00820006, 401, 4, 1.0, 1.6, 0.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Duxbury-Alden School,00820004, 603, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,East Bridgewater-Central,00830005, 299, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.4,5,a-degr-i2,2022-23,East Longmeadow-Birchland Park,00870305, 598, 2, 0.3,"","","","","", 0.0, 0.5, 0.5,"","","","" -8.0,5,a-degr-i2,2022-23,East Longmeadow-Mountain View,00870015, 269, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,East Longmeadow-Meadow Brook,00870013, 341, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010, 633, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 902, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,East Longmeadow-Mapleshade,00870010, 292, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,East Longmeadow-Meadow Brook,00870013, 341, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,East Longmeadow-Mountain View,00870015, 269, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,East Longmeadow-Birchland Park,00870305, 598, 2, 0.3,"","","","","", 0.0, 0.5, 0.5,"","","","" 8.0,5,a-degr-i2,2022-23,East Longmeadow-East Longmeadow High,00870505, 812, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Eastham-Eastham Elementary,00850005, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Easthampton-Mountain View School,00860415, 911, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Easthampton-Easthampton High,00860505, 367, 10, 2.7,"","","","","","","","", 2.4, 3.9, 1.2, 3.2 -7.6,5,a-degr-i2,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 464, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" -7.2,5,a-degr-i2,2022-23,Easton-Richardson Olmsted School,00880025, 760, 3, 0.4,"","", 0.4, 0.8, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Easton-Easton Middle School,00880405, 821, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Easton-Oliver Ames High,00880505," 1,070", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2022-23,Easton-Richardson Olmsted School,00880025, 760, 3, 0.4,"","", 0.4, 0.8, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 464, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Easton-Easton Middle School,00880405, 821, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Edgartown-Edgartown Elementary,00890005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 3.5999999999999996,3.6,a-degr-i2,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 364, 8, 2.2,"","","","","","","","", 5.1, 0.0, 3.2, 0.0 8.0,5,a-degr-i2,2022-23,Erving-Erving Elementary,00910030, 94, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.8,5,a-degr-i2,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505," 1,694", 2, 0.1,"","","","","","","","", 0.0, 0.2, 0.2, 0.0 -7.4,5,a-degr-i2,2022-23,Everett-Parlin School,00930058, 914, 3, 0.3, 0.0, 0.0, 0.8, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Everett-George Keverian School,00930028, 838, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Everett-Lafayette School,00930038, 932, 3, 0.3, 1.1, 0.0, 0.9, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","" 3.5999999999999996,3.6,a-degr-i2,2022-23,Everett-Devens School,00930030, 45, 1, 2.2,"","","","", 0.0,"","","","", 16.7, 0.0,"" --0.40000000000000036,1,a-degr-i2,2022-23,Everett-Everett High,00930505," 2,231", 94, 4.2,"","","","","","","","", 2.8, 3.7, 7.1, 3.1 +7.4,5,a-degr-i2,2022-23,Everett-Parlin School,00930058, 914, 3, 0.3, 0.0, 0.0, 0.8, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Everett-Madeline English School,00930018, 690, 2, 0.3, 1.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 1.4000000000000004,1.4,a-degr-i2,2022-23,Everett-Webster School,00930015, 276, 9, 3.3, 4.6, 5.6, 3.3, 2.0, 0.0,"","","","","","","" +-0.40000000000000036,1,a-degr-i2,2022-23,Everett-Everett High,00930505," 2,231", 94, 4.2,"","","","","","","","", 2.8, 3.7, 7.1, 3.1 +8.0,5,a-degr-i2,2022-23,Everett-George Keverian School,00930028, 838, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Everett-Sumner G. Whittier School,00930010, 573, 4, 0.7, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205," 1,362", 3, 0.2,"","","","", 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 7.2,5,a-degr-i2,2022-23,Fairhaven-East Fairhaven,00940010, 247, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Fairhaven-Leroy Wood,00940030, 363, 3, 0.8, 3.1, 0.0, 1.3, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Fairhaven-Hastings Middle,00940305, 438, 2, 0.5,"","","","","", 0.0, 0.0, 1.3,"","","","" 3.8,3.8,a-degr-i2,2022-23,Fairhaven-Fairhaven High,00940505, 632, 13, 2.1,"","","","","","","","", 3.8, 3.2, 1.4, 0.0 -8.0,5,a-degr-i2,2022-23,Fall River-Stone PK-12 School,00950340, 74, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -7.8,5,a-degr-i2,2022-23,Fall River-Matthew J Kuss Middle,00950320, 682, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" --3.1999999999999993,1,a-degr-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 197, 11, 5.6,"","","","","","", 0.0, 0.0, 0.0, 10.0, 5.1, 10.8 -5.4,5,a-degr-i2,2022-23,Fall River-B M C Durfee High,00950505," 2,458", 31, 1.3,"","","","","","","","", 0.0, 0.0, 0.6, 4.9 -7.2,5,a-degr-i2,2022-23,Fall River-Morton Middle,00950315, 690, 3, 0.4,"","","","","", 0.0, 0.9, 0.5,"","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Talbot Innovation School,00950305, 533, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" -8.0,5,a-degr-i2,2022-23,Fall River-Samuel Watson,00950145, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Fall River-James Tansey,00950140, 231, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2022-23,Fairhaven-Leroy Wood,00940030, 363, 3, 0.8, 3.1, 0.0, 1.3, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Fall River-Henry Lord Community School,00950017, 690, 4, 0.6, 0.0, 2.2, 0.0, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Letourneau Elementary School,00950013, 480, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 602, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Fall River-North End Elementary,00950005, 529, 2, 0.4, 0.0, 1.0, 0.8, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Fall River-Spencer Borden,00950130, 470, 2, 0.4, 1.1, 1.1, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Fall River-William S Greene,00950065, 579, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Fall River-John J Doran,00950045, 434, 3, 0.7, 3.6, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Fall River-North End Elementary,00950005, 529, 2, 0.4, 0.0, 1.0, 0.8, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 602, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Letourneau Elementary School,00950013, 480, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Fall River-Henry Lord Community School,00950017, 690, 4, 0.6, 0.0, 2.2, 0.0, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","" -1.2000000000000002,1.2,a-degr-i2,2022-23,Falmouth-Falmouth High,00960505, 762, 26, 3.4,"","","","","","","","", 6.0, 5.3, 2.2, 0.0 -7.6,5,a-degr-i2,2022-23,Falmouth-Lawrence,00960405, 477, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +-3.1999999999999993,1,a-degr-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 197, 11, 5.6,"","","","","","", 0.0, 0.0, 0.0, 10.0, 5.1, 10.8 +7.2,5,a-degr-i2,2022-23,Fall River-James Tansey,00950140, 231, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Samuel Watson,00950145, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Talbot Innovation School,00950305, 533, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +7.2,5,a-degr-i2,2022-23,Fall River-Morton Middle,00950315, 690, 3, 0.4,"","","","","", 0.0, 0.9, 0.5,"","","","" +7.8,5,a-degr-i2,2022-23,Fall River-Matthew J Kuss Middle,00950320, 682, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Stone PK-12 School,00950340, 74, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.4,5,a-degr-i2,2022-23,Fall River-B M C Durfee High,00950505," 2,458", 31, 1.3,"","","","","","","","", 0.0, 0.0, 0.6, 4.9 8.0,5,a-degr-i2,2022-23,Falmouth-Morse Pond School,00960305, 482, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-East Falmouth Elementary,00960005, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-Teaticket,00960015, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-Mullen-Hall,00960020, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Falmouth-North Falmouth Elementary,00960030, 263, 1, 0.4, 0.0, 1.9, 0.0, 0.0,"","","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2022-23,Falmouth-Falmouth High,00960505, 762, 26, 3.4,"","","","","","","","", 6.0, 5.3, 2.2, 0.0 +7.6,5,a-degr-i2,2022-23,Falmouth-Lawrence,00960405, 477, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Farmington River Reg-Farmington River Elementary,06620020, 90, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --20.6,1,a-degr-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 182, 26, 14.3,"","","","","","","","", 69.2, 29.4, 4.1, 9.7 -8.0,5,a-degr-i2,2022-23,Fitchburg-Fitchburg High,00970505," 1,243", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -7.8,5,a-degr-i2,2022-23,Fitchburg-McKay Elementary School,00970340, 727, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Fitchburg-Arthur M Longsjo Middle School,00970315, 588, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Fitchburg-Memorial Middle School,00970048, 581, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Fitchburg-Reingold Elementary,00970043, 651, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.7,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Fitchburg-Crocker Elementary,00970016, 616, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fitchburg-Reingold Elementary,00970043, 651, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.7,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fitchburg-Memorial Middle School,00970048, 581, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-20.6,1,a-degr-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 182, 26, 14.3,"","","","","","","","", 69.2, 29.4, 4.1, 9.7 +7.8,5,a-degr-i2,2022-23,Fitchburg-McKay Elementary School,00970340, 727, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fitchburg-Fitchburg High,00970505," 1,243", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Fitchburg-Arthur M Longsjo Middle School,00970315, 588, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Florida-Abbott Memorial,00980005, 75, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 219, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Foxborough-Mabelle M Burrell,00990015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Foxborough-Vincent M Igo Elementary,00990020, 290, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Foxborough-Mabelle M Burrell,00990015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Foxborough-Foxborough High,00990505, 776, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 8.0,5,a-degr-i2,2022-23,Foxborough-Charles Taylor Elementary,00990050, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Foxborough-John J Ahern,00990405, 733, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Foxborough-Foxborough High,00990505, 776, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 8.0,5,a-degr-i2,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550," 1,429", 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 --1.5999999999999996,1,a-degr-i2,2022-23,Framingham-Framingham High School,01000515," 2,566", 123, 4.8,"","","","","","","","", 8.7, 6.6, 1.7, 1.0 8.0,5,a-degr-i2,2022-23,Framingham-Walsh Middle,01000310, 789, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Fuller Middle,01000305, 616, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Framingham-Cameron Middle School,01000302, 553, 2, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Harmony Grove Elementary,01000055, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Miriam F McCarthy School,01000050, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Framingham-Potter Road,01000039, 459, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.5999999999999996,1,a-degr-i2,2022-23,Framingham-Framingham High School,01000515," 2,566", 123, 4.8,"","","","","","","","", 8.7, 6.6, 1.7, 1.0 8.0,5,a-degr-i2,2022-23,Framingham-King Elementary School,01000005, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Brophy,01000006, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Charlotte A Dunning,01000007, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Hemenway,01000015, 461, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Barbieri Elementary,01000035, 583, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Framingham-Potter Road,01000039, 459, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Fuller Middle,01000305, 616, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Framingham-Cameron Middle School,01000302, 553, 2, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Harmony Grove Elementary,01000055, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Miriam F McCarthy School,01000050, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Mary E Stapleton Elementary,01000045, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Barbieri Elementary,01000035, 583, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 388, 1, 0.3,"","","","","","", 0.0, 1.4, 0.0, 0.0, 0.0, 0.0 -7.6,5,a-degr-i2,2022-23,Franklin-Franklin High,01010505," 1,614", 4, 0.2,"","","","","","","","", 0.5, 0.5, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Franklin-Horace Mann,01010405, 376, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Franklin-Remington Middle,01010310, 367, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Franklin-Franklin High,01010505," 1,614", 4, 0.2,"","","","","","","","", 0.5, 0.5, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Franklin-Annie Sullivan Middle School,01010040, 318, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Franklin-Parmenter,01010032, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Franklin-Oak Street Elementary,01010030, 307, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Franklin-Remington Middle,01010310, 367, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Franklin-J F Kennedy Memorial,01010013, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Franklin-Jefferson Elementary,01010010, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Franklin-Helen Keller Elementary,01010012, 449, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Franklin-Jefferson Elementary,01010010, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Franklin-Oak Street Elementary,01010030, 307, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 602, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 675, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.4000000000000004,3.4,a-degr-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 726, 17, 2.3,"","","","","","","","", 5.1, 3.3, 1.1, 0.0 6.6,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown Elementary School,06650001, 298, 2, 0.7, 1.0, 1.1, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Assawompset Elementary School,06650002, 379, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-George R Austin Intermediate School,06650015, 453, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 675, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -3.4000000000000004,3.4,a-degr-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 726, 17, 2.3,"","","","","","","","", 5.1, 3.3, 1.1, 0.0 7.6,5,a-degr-i2,2022-23,Frontier-Frontier Regional,06700505, 599, 1, 0.2,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 +8.0,5,a-degr-i2,2022-23,Gardner-Gardner Middle School,01030405, 489, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +4.0,4.0,a-degr-i2,2022-23,Gardner-Gardner High,01030505, 799, 16, 2.0,"","","","","","","", 0.0, 8.1, 0.0, 1.4, 0.0 7.8,5,a-degr-i2,2022-23,Gardner-Gardner Elementary School,01030001, 711, 1, 0.1, 0.0, 0.5, 0.0, 0.0,"","","","","","","","" -68.0,1,a-degr-i2,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 108, 41, 38.0,"","","","","","","","", 50.0, 26.3, 38.1, 40.5 -4.0,4.0,a-degr-i2,2022-23,Gardner-Gardner High,01030505, 799, 16, 2.0,"","","","","","","", 0.0, 8.1, 0.0, 1.4, 0.0 -8.0,5,a-degr-i2,2022-23,Gardner-Gardner Middle School,01030405, 489, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -4.2,4.2,a-degr-i2,2022-23,Gateway-Gateway Regional High,06720505, 161, 3, 1.9,"","","","","","","","", 2.3, 6.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Gateway-Gateway Regional Middle School,06720405, 188, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Gateway-Littleville Elementary School,06720143, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gateway-Chester Elementary,06720059, 76, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Georgetown-Georgetown Middle School,01050305, 186, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2022-23,Gateway-Gateway Regional High,06720505, 161, 3, 1.9,"","","","","","","","", 2.3, 6.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Georgetown-Penn Brook,01050010, 597, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2022-23,Georgetown-Georgetown High School,01050505, 299, 2, 0.7,"","","","","","","","", 1.2, 1.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 189, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Georgetown-Georgetown Middle School,01050305, 186, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 5.8,5,a-degr-i2,2022-23,Gill-Montague-Gill Elementary,06740005, 95, 1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 8.3,"","","","","","" 8.0,5,a-degr-i2,2022-23,Gill-Montague-Hillcrest Elementary School,06740015, 59, 0, 0.0, 0.0,"","","","","","","","","","","" -6.2,5,a-degr-i2,2022-23,Gill-Montague-Sheffield Elementary School,06740050, 211, 2, 0.9,"", 0.0, 2.2, 1.8, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 189, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.0,5,a-degr-i2,2022-23,Gill-Montague-Great Falls Middle,06740310, 207, 1, 0.5,"","","","","", 0.0, 1.2, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Gill-Montague-Sheffield Elementary School,06740050, 211, 2, 0.9,"", 0.0, 2.2, 1.8, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 499, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Gloucester-West Parish,01070050, 316, 2, 0.6, 0.0, 0.0, 0.0, 0.0, 2.7,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Gloucester-Ralph B O'Maley Middle,01070305, 622, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -11.600000000000001,1,a-degr-i2,2022-23,Gloucester-Gloucester High,01070505, 796, 78, 9.8,"","","","","","","","", 12.6, 20.3, 4.0, 0.6 -8.0,5,a-degr-i2,2022-23,Gloucester-Veterans Memorial,01070045, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gloucester-Plum Cove School,01070042, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Gloucester-East Gloucester Elementary,01070020, 151, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Gloucester-Veterans Memorial,01070045, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gloucester-Beeman Memorial,01070010, 258, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Grafton-Grafton High School,01100505, 868, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Grafton-Grafton Middle,01100305, 524, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Grafton-North Street Elementary School,01100030, 548, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Grafton-North Grafton Elementary,01100025, 114, 1, 0.9, 0.9,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Gloucester-East Gloucester Elementary,01070020, 151, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Grafton-South Grafton Elementary,01100005, 125, 0, 0.0, 0.0,"","","","","","","","","","","" +6.2,5,a-degr-i2,2022-23,Grafton-North Grafton Elementary,01100025, 114, 1, 0.9, 0.9,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Grafton-North Street Elementary School,01100030, 548, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Grafton-Grafton Middle,01100305, 524, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Grafton-Millbury Street Elementary School,01100200, 595, 1, 0.2,"", 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Grafton-Grafton High School,01100505, 868, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Granby-Granby Jr Sr High School,01110505, 311, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Granby-East Meadow,01110004, 339, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -9.600000000000001,1,a-degr-i2,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900," 1,125", 99, 8.8, 4.9, 2.3, 0.0, 0.0, 1.7, 1.3, 3.9, 2.7, 24.1, 16.6, 9.8, 8.3 @@ -614,56 +614,56 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605," 1,692", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 2,282", 4, 0.2,"","","","","","","","", 0.2, 0.0, 0.3, 0.2 5.0,5.0,a-degr-i2,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605," 2,095", 31, 1.5,"","","","","","","","", 1.1, 2.8, 1.7, 0.0 -5.8,5,a-degr-i2,2022-23,Greenfield-Greenfield High,01140505, 445, 5, 1.1,"","","","","","","", 0.0, 2.2, 3.0, 0.0, 0.0 6.6,5,a-degr-i2,2022-23,Greenfield-Federal Street School,01140010, 145, 1, 0.7, 2.6, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Greenfield-Discovery School at Four Corners,01140025, 179, 2, 1.1, 2.2, 2.0, 0.0, 0.0,"","","","","","","","" -5.6,5,a-degr-i2,2022-23,Greenfield-Newton School,01140035, 161, 2, 1.2, 5.3, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Greenfield-Greenfield Middle,01140305, 300, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +5.8,5,a-degr-i2,2022-23,Greenfield-Greenfield High,01140505, 445, 5, 1.1,"","","","","","","", 0.0, 2.2, 3.0, 0.0, 0.0 +5.6,5,a-degr-i2,2022-23,Greenfield-Newton School,01140035, 161, 2, 1.2, 5.3, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Groton-Dunstable-Swallow/Union School,06730005, 260, 1, 0.4, 0.0, 1.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Florence Roche School,06730010, 446, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 675, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 723, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Florence Roche School,06730010, 446, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hadley-Hopkins Academy,01170505, 223, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Hadley-Hadley Elementary,01170015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Halifax-Halifax Elementary,01180005, 492, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 450, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Miles River Middle,06750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Winthrop School,06750015, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Cutler School,06750010, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Miles River Middle,06750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Bessie Buker Elementary,06750007, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Cutler School,06750010, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.4,4.4,a-degr-i2,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 549, 10, 1.8,"","","","","", 0.0, 3.4, 0.0, 3.9, 2.5, 1.6, 1.5 3.0,3.0,a-degr-i2,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 367, 9, 2.5,"","","","","", 8.5, 0.0, 3.3, 1.9, 1.8, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Soule Road,06800030, 310, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Mile Tree Elementary,06800025, 141, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 252, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Stony Hill School,06800050, 303, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310, 599, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 984, 7, 0.7,"","","","","","","","", 1.5, 0.8, 0.4, 0.0 +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310, 599, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Stony Hill School,06800050, 303, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 252, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Hampshire-Hampshire Regional High,06830505, 658, 1, 0.2,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 8.0,5,a-degr-i2,2022-23,Hancock-Hancock Elementary,01210005, 40, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Hanover-Center Elementary,01220005, 641, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hanover-Cedar Elementary,01220004, 185, 0, 0.0, 0.0,"","","","","","","","","","","" -7.8,5,a-degr-i2,2022-23,Hanover-Hanover Middle,01220305, 801, 1, 0.1,"","","","", 0.0, 0.0, 0.0, 0.5,"","","","" 7.4,5,a-degr-i2,2022-23,Hanover-Hanover High,01220505, 667, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.5, 0.6 -8.0,5,a-degr-i2,2022-23,Harvard-Bromfield,01250505, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2022-23,Hanover-Hanover Middle,01220305, 801, 1, 0.1,"","","","", 0.0, 0.0, 0.0, 0.5,"","","","" +8.0,5,a-degr-i2,2022-23,Hanover-Cedar Elementary,01220004, 185, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Hanover-Center Elementary,01220005, 641, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Harvard-Hildreth Elementary School,01250005, 364, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Harvard-Bromfield,01250505, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Hatfield-Hatfield Elementary,01270005, 163, 1, 0.6, 0.0, 5.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Hatfield-Smith Academy,01270505, 133, 1, 0.8,"","","","","","", 0.0, 3.2, 0.0, 0.0, 0.0, 0.0 --7.4,1,a-degr-i2,2022-23,Haverhill-Haverhill High,01280505," 1,914", 148, 7.7,"","","","","","","","", 16.5, 6.2, 4.0, 1.0 -7.6,5,a-degr-i2,2022-23,Haverhill-Bradford Elementary,01280008, 412, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" -6.4,5,a-degr-i2,2022-23,Haverhill-Golden Hill,01280026, 380, 3, 0.8, 1.0, 1.2, 1.0, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 990, 1, 0.1, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Haverhill-Tilton Upper Middle School,01280105, 171, 1, 0.6,"","","", 0.0, 1.4,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Haverhill-Consentino Middle School,01280100, 700, 1, 0.1,"","","","", 0.0, 0.5, 0.0, 0.0,"","","","" +5.6,5,a-degr-i2,2022-23,Haverhill-Gateway Academy,01280515, 81, 1, 1.2,"","","","","","", 0.0, 0.0, 0.0, 3.7, 0.0, 0.0 -4.6,1,a-degr-i2,2022-23,Haverhill-Greenleaf Academy,01280033, 32, 2, 6.3,"","","","","","","", 11.1,"","", 0.0,"" +7.8,5,a-degr-i2,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 990, 1, 0.1, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Haverhill-Golden Hill,01280026, 380, 3, 0.8, 1.0, 1.2, 1.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Haverhill-Bradford Elementary,01280008, 412, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Haverhill-Walnut Square,01280080, 79, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Haverhill-John G Whittier,01280085, 484, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-7.4,1,a-degr-i2,2022-23,Haverhill-Haverhill High,01280505," 1,914", 148, 7.7,"","","","","","","","", 16.5, 6.2, 4.0, 1.0 8.0,5,a-degr-i2,2022-23,Haverhill-Dr Paul Nettle,01280050, 570, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Haverhill-Pentucket Lake Elementary,01280054, 447, 1, 0.2, 0.0, 1.2, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Haverhill-Silver Hill Elementary School,01280067, 392, 1, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 29, 0, 0.0,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Haverhill-Tilton,01280075, 240, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Haverhill-Walnut Square,01280080, 79, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Haverhill-John G Whittier,01280085, 484, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Haverhill-Consentino Middle School,01280100, 700, 1, 0.1,"","","","", 0.0, 0.5, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Haverhill-Tilton Upper Middle School,01280105, 171, 1, 0.6,"","","", 0.0, 1.4,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Haverhill-Gateway Academy,01280515, 81, 1, 1.2,"","","","","","", 0.0, 0.0, 0.0, 3.7, 0.0, 0.0 5.0,5.0,a-degr-i2,2022-23,Hawlemont-Hawlemont Regional,06850005, 65, 1, 1.5, 0.0, 8.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" 2.8,2.8,a-degr-i2,2022-23,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 114, 3, 2.6,"","","","","", 3.1, 2.9, 2.1,"","","","" 8.0,5,a-degr-i2,2022-23,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" @@ -674,36 +674,36 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.8,5,a-degr-i2,2022-23,Hingham-Hingham High,01310505," 1,166", 7, 0.6,"","","","","","","","", 0.7, 0.7, 0.3, 0.6 8.0,5,a-degr-i2,2022-23,Hingham-East Elementary School,01310005, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hingham-Wm L Foster Elementary,01310010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Holbrook-John F Kennedy,01330018, 523, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" 6.2,5,a-degr-i2,2022-23,Holbrook-Holbrook Middle High School,01330505, 633, 6, 0.9,"","","","","", 0.0, 0.9, 1.0, 1.4, 2.8, 1.3, 0.0 +7.6,5,a-degr-i2,2022-23,Holbrook-John F Kennedy,01330018, 523, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holland-Holland Elementary,01350005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holliston-Placentino Elementary,01360010, 426, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Holliston-Miller School,01360007, 604, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Holliston-Holliston High,01360505, 806, 5, 0.6,"","","","","","","","", 1.4, 0.0, 0.0, 1.0 -2.2,2.2,a-degr-i2,2022-23,Holyoke-Holyoke High,01370505," 1,515", 44, 2.9,"","","","","","","","", 0.0, 0.0, 0.0, 11.0 -4.8,4.8,a-degr-i2,2022-23,Holyoke-H.B. Lawrence School,01370070, 124, 2, 1.6, 0.0, 3.7, 0.0,"","","","","","","","","" -6.6,5,a-degr-i2,2022-23,Holyoke-Holyoke Middle School,01370325, 281, 2, 0.7,"","","","","", 1.2, 1.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Holyoke-Holyoke STEM Academy,01370320, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Holyoke-Joseph Metcalf School,01370003, 300, 6, 2.0, 2.4, 9.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Lt Elmer J McMahon Elementary,01370015, 291, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Holyoke-Joseph Metcalf School,01370003, 300, 6, 2.0, 2.4, 9.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Morgan Full Service Community School,01370025, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-William R. Peck School,01370030, 192, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Kelly Elementary,01370040, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-E N White Elementary,01370045, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Holyoke-Lt Clayre Sullivan Elementary,01370055, 334, 1, 0.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 5.8,5,a-degr-i2,2022-23,Holyoke-Maurice A Donahue Elementary,01370060, 282, 3, 1.1, 5.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.8,4.8,a-degr-i2,2022-23,Holyoke-H.B. Lawrence School,01370070, 124, 2, 1.6, 0.0, 3.7, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Holyoke-Holyoke STEM Academy,01370320, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.0,"","","","" +6.6,5,a-degr-i2,2022-23,Holyoke-Holyoke Middle School,01370325, 281, 2, 0.7,"","","","","", 1.2, 1.0, 0.0,"","","","" +2.2,2.2,a-degr-i2,2022-23,Holyoke-Holyoke High,01370505," 1,515", 44, 2.9,"","","","","","","","", 0.0, 0.0, 0.0, 11.0 2.0,2.0,a-degr-i2,2022-23,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 607, 18, 3.0, 2.7, 7.0, 7.1, 2.3, 1.3, 2.3, 1.3, 0.0,"","","","" 0.5999999999999996,1,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 323, 12, 3.7,"","","","","","","", 0.0, 9.8, 8.2, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 257, 6, 2.3, 4.1, 1.5, 1.1,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 288, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2022-23,Hopedale-Memorial,01380010, 474, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 436, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2022-23,Hopkinton-Hopkinton High,01390505," 1,229", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.4, 0.3 7.4,5,a-degr-i2,2022-23,Hopkinton-Marathon Elementary School,01390005, 295, 1, 0.3, 0.3,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Elmwood,01390010, 627, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Hopkins Elementary School,01390015, 639, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Hopkinton Middle School,01390305, 972, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Hopkinton-Hopkinton High,01390505," 1,229", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.4, 0.3 7.0,5,a-degr-i2,2022-23,Hudson-Mulready Elementary,01410007, 183, 1, 0.5, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hudson-Forest Avenue Elementary,01410015, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hudson-C A Farley,01410030, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" @@ -714,128 +714,121 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Hull-Memorial Middle,01420305, 172, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 793, 7, 0.9,"","","","", 0.0, 0.0, 0.0, 0.0, 1.9, 0.9, 1.1, 3.5 8.0,5,a-degr-i2,2022-23,Ipswich-Winthrop,01440015, 291, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Ipswich-Ipswich High,01440505, 496, 3, 0.6,"","","","","","","","", 1.8, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Ipswich-Paul F Doyon Memorial,01440007, 290, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Ipswich-Ipswich High,01440505, 496, 3, 0.6,"","","","","","","","", 1.8, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Ipswich-Ipswich Middle School,01440305, 362, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 511, 3, 0.6, 0.0, 0.0, 1.4, 1.4, 0.0, 0.0, 0.0, 1.9,"","","","" 7.2,5,a-degr-i2,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010," 1,487", 6, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 0.8, 0.0 -6.8,5,a-degr-i2,2022-23,King Philip-King Philip Regional High,06900505," 1,136", 7, 0.6,"","","","","","","","", 0.3, 0.7, 1.0, 0.4 8.0,5,a-degr-i2,2022-23,King Philip-King Philip Middle School,06900510, 670, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,King Philip-King Philip Regional High,06900505," 1,136", 7, 0.6,"","","","","","","","", 0.3, 0.7, 1.0, 0.4 8.0,5,a-degr-i2,2022-23,Kingston-Kingston Elementary,01450005, 318, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Kingston-Kingston Intermediate,01450020, 593, 1, 0.2,"","", 0.0, 0.7, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Lawrence-James F Hennessey,01490020, 146, 1, 0.7, 1.4, 0.0,"","","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Lawrence-Alexander B Bruce,01490015, 409, 1, 0.2,"","", 1.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Gerard A. Guilmette,01490022, 481, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Guilmette Middle School,01490025, 459, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Parthum Middle School,01490027, 568, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Lawrence-Francis M Leahy,01490040, 380, 1, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Lawrence-Oliver Elementary School,01490048, 433, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lawrence-Oliver Middle School,01490049, 351, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.2,5,a-degr-i2,2022-23,Lawrence-Edward F. Parthum,01490053, 571, 8, 1.4, 3.3, 1.4, 0.7, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-John K Tarbox,01490075, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lawrence-Emily G Wetherbee,01490080, 457, 1, 0.2, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Spark Academy,01490085, 437, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Lawrence-Leonard Middle School,01490090, 327, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Lawrence-Lawrence High School,01490515," 3,061", 23, 0.8,"","","","","","","","", 2.2, 0.2, 0.0, 0.1 -8.0,5,a-degr-i2,2022-23,Lawrence-Frost Middle School,01490525, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" --32.8,1,a-degr-i2,2022-23,Lawrence-High School Learning Center,01490536, 309, 63, 20.4,"","","","","","","","","", 16.7, 0.0, 27.7 -8.0,5,a-degr-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 91, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"" +8.0,5,a-degr-i2,2022-23,Lawrence-Guilmette Middle School,01490025, 459, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Gerard A. Guilmette,01490022, 481, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Lawrence-James F Hennessey,01490020, 146, 1, 0.7, 1.4, 0.0,"","","","","","","","","","" -24.200000000000003,1,a-degr-i2,2022-23,Lawrence-RISE Academy,01490615, 56, 9, 16.1,"","","","","","","","","", 0.0, 5.3, 36.4 -7.2,5,a-degr-i2,2022-23,Lawrence-Robert Frost,01490018, 474, 2, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Middle School,01490017, 575, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 91, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"" +-32.8,1,a-degr-i2,2022-23,Lawrence-High School Learning Center,01490536, 309, 63, 20.4,"","","","","","","","","", 16.7, 0.0, 27.7 +8.0,5,a-degr-i2,2022-23,Lawrence-Frost Middle School,01490525, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Lawrence-Lawrence High School,01490515," 3,061", 23, 0.8,"","","","","","","","", 2.2, 0.2, 0.0, 0.1 +7.4,5,a-degr-i2,2022-23,Lawrence-Leonard Middle School,01490090, 327, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Spark Academy,01490085, 437, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Lawrence-Emily G Wetherbee,01490080, 457, 1, 0.2, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-John K Tarbox,01490075, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2022-23,Lawrence-Edward F. Parthum,01490053, 571, 8, 1.4, 3.3, 1.4, 0.7, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Lawrence-South Lawrence East Elementary School,01490004, 653, 3, 0.5, 1.6, 0.0, 0.8, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Elementary,01490009, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Lawrence-Alexander B Bruce,01490015, 409, 1, 0.2,"","", 1.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Middle School,01490017, 575, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Lawrence-Robert Frost,01490018, 474, 2, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Lawrence-Oliver Elementary School,01490048, 433, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Parthum Middle School,01490027, 568, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 650, 3, 0.5, 1.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 592, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lee-Lee Elementary,01500025, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Lee-Lee Middle/High School,01500505, 320, 2, 0.6,"","","","","","", 1.8, 0.0, 2.4, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Lee-Lee Elementary,01500025, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Leicester-Leicester High,01510505, 414, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,Leicester-Leicester Elementary,01510005, 402, 4, 1.0, 1.8, 1.1, 0.0, 1.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Leicester-Leicester Middle,01510015, 409, 1, 0.2,"","","","", 0.0, 0.0, 1.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Leicester-Leicester High,01510505, 414, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Lenox-Lenox Memorial High,01520505, 428, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0 8.0,5,a-degr-i2,2022-23,Lenox-Morris,01520015, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-16.0,1,a-degr-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 50, 6, 12.0,"","","","","","","","", 0.0, 36.4, 6.7, 10.0 +8.0,5,a-degr-i2,2022-23,Leominster-Samoset School,01530045, 504, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Leominster-Sky View Middle School,01530320, 886, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Leominster-Northwest,01530030, 688, 3, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Leominster-Fall Brook,01530007, 551, 1, 0.2, 0.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Leominster-Leominster High School,01530505," 1,034", 9, 0.9,"","","","","","","","", 2.2, 0.7, 0.7, 0.7 7.4,5,a-degr-i2,2022-23,Leominster-Center For Technical Education Innovation,01530605, 788, 2, 0.3,"","","","","","","","", 0.3, 0.0, 0.0, 0.7 7.4,5,a-degr-i2,2022-23,Leominster-Frances Drake School,01530010, 400, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Leominster-Johnny Appleseed,01530025, 576, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Leominster-Northwest,01530030, 688, 3, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Leominster-Samoset School,01530045, 504, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Leominster-Sky View Middle School,01530320, 886, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Leominster-Leominster High School,01530505," 1,034", 9, 0.9,"","","","","","","","", 2.2, 0.7, 0.7, 0.7 --16.0,1,a-degr-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 50, 6, 12.0,"","","","","","","","", 0.0, 36.4, 6.7, 10.0 8.0,5,a-degr-i2,2022-23,Leverett-Leverett Elementary,01540005, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Lexington High,01550505," 2,303", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Lexington-Bridge,01550006, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Bowman,01550008, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Joseph Estabrook,01550010, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Harrington,01550030, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Maria Hastings,01550035, 531, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Jonas Clarke Middle,01550305, 823, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Bridge,01550006, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Bowman,01550008, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Wm Diamond Middle,01550310, 942, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Lexington High,01550505," 2,303", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Lexington-Joseph Estabrook,01550010, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 411, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","" +8.0,5,a-degr-i2,2022-23,Lincoln-Lincoln School,01570025, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Lincoln-Hanscom Middle,01570305, 224, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Lincoln-Hanscom Primary,01570006, 147, 1, 0.7, 1.9, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lincoln-Lincoln School,01570025, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505," 1,479", 4, 0.3,"","","","","","","","", 0.5, 0.3, 0.3, 0.0 -8.0,5,a-degr-i2,2022-23,Littleton-Littleton Middle School,01580305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Littleton-Littleton High School,01580505, 476, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.0, 0.9 8.0,5,a-degr-i2,2022-23,Littleton-Shaker Lane Elementary,01580005, 248, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Littleton-Littleton High School,01580505, 476, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.0, 0.9 7.4,5,a-degr-i2,2022-23,Littleton-Russell St Elementary,01580015, 389, 1, 0.3,"","", 0.8, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Longmeadow-Blueberry Hill,01590005, 331, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Longmeadow-Center,01590010, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Longmeadow-Wolf Swamp Road,01590025, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Littleton-Littleton Middle School,01580305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Longmeadow-Williams Middle,01590305, 282, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Longmeadow-Longmeadow High,01590505, 904, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.4 +8.0,5,a-degr-i2,2022-23,Longmeadow-Wolf Swamp Road,01590025, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Longmeadow-Glenbrook Middle,01590017, 332, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Longmeadow-Center,01590010, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Longmeadow-Blueberry Hill,01590005, 331, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085, 14, 0, 0.0,"","","","","","","","","","","","" +-69.2,1,a-degr-i2,2022-23,Lowell-The Career Academy,01600515, 88, 34, 38.6,"","","","","","","","", 48.4, 10.0, 23.1, 44.1 +4.2,4.2,a-degr-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 54, 1, 1.9,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360, 633, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.1,"","","","" +6.2,5,a-degr-i2,2022-23,Lowell-Dr An Wang School,01600345, 659, 6, 0.9,"","","","", 0.0, 1.2, 1.9, 0.6,"","","","" +6.8,5,a-degr-i2,2022-23,Lowell-Abraham Lincoln,01600020, 363, 2, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Lowell-Moody Elementary,01600027, 178, 2, 1.1, 0.0, 0.0, 2.3, 2.3,"","","","","","","","" +6.8,5,a-degr-i2,2022-23,Lowell-Charles W Morey,01600030, 350, 2, 0.6, 0.0, 1.2, 1.2, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Lowell-Pyne Arts,01600018, 427, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Greenhalge,01600015, 351, 1, 0.3, 0.0, 0.0, 1.2, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-James Sullivan Middle School,01600340, 592, 2, 0.3,"","","","", 0.8, 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2022-23,Lowell-Henry J Robinson Middle,01600330, 603, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Pawtucketville Memorial,01600036, 348, 1, 0.3, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Lowell-Peter W Reilly,01600040, 372, 4, 1.1, 2.1, 2.2, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lowell-John J Shaughnessy,01600050, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Lowell-Washington,01600055, 174, 2, 1.1, 2.6, 0.0, 2.4, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lowell-S Christa McAuliffe Elementary,01600075, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 3.2,3.2,a-degr-i2,2022-23,Lowell-Charlotte M Murkland Elementary,01600080, 332, 8, 2.4, 1.2, 7.5, 1.3, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085, 14, 0, 0.0,"","","","","","","","","","","","" +-2.1999999999999993,1,a-degr-i2,2022-23,Lowell-Lowell High,01600505," 3,142", 159, 5.1,"","","","","","","","", 10.1, 4.0, 1.9, 2.4 7.6,5,a-degr-i2,2022-23,Lowell-Bartlett Community Partnership,01600090, 410, 1, 0.2, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Lowell-B.F. Butler Middle School,01600310, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Lowell-James S Daley Middle School,01600315, 674, 3, 0.4,"","","","", 0.0, 0.6, 0.0, 1.1,"","","","" -10.2,1,a-degr-i2,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 33, 3, 9.1,"","","","","","","","", 16.7, 0.0,"", 16.7 --69.2,1,a-degr-i2,2022-23,Lowell-The Career Academy,01600515, 88, 34, 38.6,"","","","","","","","", 48.4, 10.0, 23.1, 44.1 --2.1999999999999993,1,a-degr-i2,2022-23,Lowell-Lowell High,01600505," 3,142", 159, 5.1,"","","","","","","","", 10.1, 4.0, 1.9, 2.4 -7.4,5,a-degr-i2,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360, 633, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2022-23,Lowell-Henry J Robinson Middle,01600330, 603, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Lowell-James Sullivan Middle School,01600340, 592, 2, 0.3,"","","","", 0.8, 0.0, 0.0, 0.6,"","","","" -5.8,5,a-degr-i2,2022-23,Lowell-Peter W Reilly,01600040, 372, 4, 1.1, 2.1, 2.2, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Pawtucketville Memorial,01600036, 348, 1, 0.3, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Lowell-Charles W Morey,01600030, 350, 2, 0.6, 0.0, 1.2, 1.2, 0.0,"","","","","","","","" -6.2,5,a-degr-i2,2022-23,Lowell-Dr An Wang School,01600345, 659, 6, 0.9,"","","","", 0.0, 1.2, 1.9, 0.6,"","","","" -6.8,5,a-degr-i2,2022-23,Lowell-Abraham Lincoln,01600020, 363, 2, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Lowell-Pyne Arts,01600018, 427, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Greenhalge,01600015, 351, 1, 0.3, 0.0, 0.0, 1.2, 0.0,"","","","","","","","" -6.2,5,a-degr-i2,2022-23,Lowell-Joseph McAvinnue,01600010, 332, 3, 0.9, 1.2, 1.2, 0.0, 1.1,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Rogers STEM Academy,01600005, 773, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Lowell-Dr Gertrude Bailey,01600002, 344, 2, 0.6, 2.4, 0.0, 0.0, 0.0,"","","","","","","","" -4.2,4.2,a-degr-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 54, 1, 1.9,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" -5.8,5,a-degr-i2,2022-23,Lowell-Moody Elementary,01600027, 178, 2, 1.1, 0.0, 0.0, 2.3, 2.3,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Rogers STEM Academy,01600005, 773, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Lowell-Joseph McAvinnue,01600010, 332, 3, 0.9, 1.2, 1.2, 0.0, 1.1,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 674, 2, 0.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -25.799999999999997,1,a-degr-i2,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 83, 14, 16.9,"","","","","","","","", 76.9, 6.7, 13.6, 0.0 1.7999999999999998,1.8,a-degr-i2,2022-23,Ludlow-Ludlow Senior High,01610505, 794, 25, 3.1,"","","","","","","","", 8.8, 2.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Ludlow-Paul R Baird Middle,01610305, 516, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Ludlow-East Street Elementary School,01610010, 134, 0, 0.0, 0.0,"","","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Ludlow-Harris Brook Elementary School,01610665, 642, 1, 0.2,"", 0.0, 0.6, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Ludlow-East Street Elementary School,01610010, 134, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Ludlow-Paul R Baird Middle,01610305, 516, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Primary School,01620010, 236, 1, 0.4, 0.8, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lunenburg-Turkey Hill Elementary School,01620025, 353, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Middle School,01620305, 380, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Lunenburg-Lunenburg High,01620505, 440, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 1.0 +7.4,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Middle School,01620305, 380, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Lynn-Washington Elementary School,01630005, 362, 2, 0.6, 0.0, 0.0, 1.3, 0.0, 1.4,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynn-Aborn,01630011, 186, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605," 1,402", 3, 0.2,"","","","","","","", 0.0, 0.0, 0.3, 0.4, 0.4 -8.0,5,a-degr-i2,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 73, 0, 0.0,"","","","","","","","", 0.0,"","","" -2.8,2.8,a-degr-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 78, 2, 2.6,"","","","","","", 0.0, 0.0, 5.9, 0.0, 0.0, 4.8 7.4,5,a-degr-i2,2022-23,Lynn-A Drewicz Elementary,01630016, 383, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynn-Brickett Elementary,01630020, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Lynn-Julia F Callahan,01630030, 273, 2, 0.7, 1.9, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-Cobbet Elementary,01630035, 503, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Lynn-Wm P Connery,01630040, 436, 6, 1.4, 0.0, 1.3, 2.4, 3.8, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-E J Harrington,01630045, 462, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Lynn-Robert L Ford,01630050, 404, 6, 1.5, 2.7, 2.6, 1.3, 1.3, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Lynn-Hood,01630055, 372, 2, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Lynn-Ingalls,01630060, 524, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" 5.4,5,a-degr-i2,2022-23,Lynn-Lincoln-Thomson,01630070, 158, 2, 1.3, 0.0, 5.9, 0.0, 0.0, 0.0,"","","","","","","" @@ -850,97 +843,104 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.6,5,a-degr-i2,2022-23,Lynn-Pickering Middle,01630420, 552, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 4.6,4.6,a-degr-i2,2022-23,Lynn-Classical High,01630505," 1,818", 30, 1.7,"","","","","","","","", 2.5, 2.1, 1.7, 0.0 -4.4,1,a-degr-i2,2022-23,Lynn-Lynn English High,01630510," 2,175", 135, 6.2,"","","","","","","","", 5.2, 8.8, 7.4, 1.2 -7.8,5,a-degr-i2,2022-23,Lynnfield-Lynnfield Middle School,01640405, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" +2.8,2.8,a-degr-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 78, 2, 2.6,"","","","","","", 0.0, 0.0, 5.9, 0.0, 0.0, 4.8 +7.6,5,a-degr-i2,2022-23,Lynn-Cobbet Elementary,01630035, 503, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 73, 0, 0.0,"","","","","","","","", 0.0,"","","" +7.6,5,a-degr-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605," 1,402", 3, 0.2,"","","","","","","", 0.0, 0.0, 0.3, 0.4, 0.4 +5.2,5,a-degr-i2,2022-23,Lynn-Wm P Connery,01630040, 436, 6, 1.4, 0.0, 1.3, 2.4, 3.8, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Lynn-E J Harrington,01630045, 462, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Lynn-Robert L Ford,01630050, 404, 6, 1.5, 2.7, 2.6, 1.3, 1.3, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynnfield-Summer Street,01640020, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Lynnfield-Huckleberry Hill,01640010, 374, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynnfield-Lynnfield High,01640505, 565, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2022-23,Lynnfield-Lynnfield Middle School,01640405, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 100, 0, 0.0,"","","","","","","","","","", 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Malden-Forestdale,01650027, 533, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Malden-Linden,01650047, 738, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Malden-Beebe,01650003, 789, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Malden-Ferryway,01650013, 795, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Malden-Salemwood,01650057, 928, 2, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","" -2.0,1,a-degr-i2,2022-23,Malden-Malden High,01650505," 1,844", 93, 5.0,"","","","","","","","", 6.0, 4.9, 5.9, 3.1 -8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 283, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Linden,01650047, 738, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Forestdale,01650027, 533, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Ferryway,01650013, 795, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Beebe,01650003, 789, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Malden-Salemwood,01650057, 928, 2, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Essex Elementary,06980020, 197, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 416, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Mansfield-Jordan/Jackson Elementary,01670014, 704, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Mansfield-Harold L Qualters Middle,01670035, 790, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Mansfield-Mansfield High,01670505," 1,086", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 283, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Mansfield-Everett W Robinson,01670007, 518, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Mansfield-Harold L Qualters Middle,01670035, 790, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Mansfield-Jordan/Jackson Elementary,01670014, 704, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Mansfield-Mansfield High,01670505," 1,086", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 -74.0,1,a-degr-i2,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 251, 103, 41.0,"","","","","","","","", 36.1, 41.8, 43.2, 40.0 8.0,5,a-degr-i2,2022-23,Marblehead-Glover,01680020, 215, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Marblehead-Marblehead High,01680505, 877, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Marblehead-Marblehead Veterans Middle School,01680300, 418, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Marblehead-Lucretia and Joseph Brown School,01680030, 314, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Marblehead-Marblehead Veterans Middle School,01680300, 418, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Marblehead-Marblehead High,01680505, 877, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Marblehead-Village School,01680016, 555, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 6.2,5,a-degr-i2,2022-23,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 224, 2, 0.9,"","","", 0.0, 0.0, 2.0, 2.8, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Marion-Sippican,01690005, 331, 3, 0.9, 0.0, 3.8, 1.9, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Marlborough-Marlborough High,01700505," 1,060", 11, 1.0,"","","","","","","","", 0.9, 1.0, 1.2, 1.0 -8.0,5,a-degr-i2,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045," 1,044", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Marlborough-Charles Jaworek School,01700030, 548, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Marlborough-Richer,01700025, 453, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marlborough-Goodnow Brothers Elementary School,01700020, 663, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marlborough-Francis J Kane,01700008, 412, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Marshfield-Marshfield High,01710505," 1,187", 6, 0.5,"","","","","","","","", 1.0, 0.3, 0.4, 0.3 -7.0,5,a-degr-i2,2022-23,Marshfield-South River,01710010, 204, 1, 0.5, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Marlborough-Richer,01700025, 453, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Marlborough-Charles Jaworek School,01700030, 548, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045," 1,044", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Marshfield-Daniel Webster,01710015, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Marshfield-South River,01710010, 204, 1, 0.5, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marshfield-Gov Edward Winslow,01710020, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Marshfield-Martinson Elementary,01710025, 388, 2, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Marshfield-Marshfield High,01710505," 1,187", 6, 0.5,"","","","","","","","", 1.0, 0.3, 0.4, 0.3 8.0,5,a-degr-i2,2022-23,Marshfield-Furnace Brook Middle,01710310, 868, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 753, 8, 1.1,"","","","","","","","", 2.9, 0.0, 0.0, 1.1 5.6,5,a-degr-i2,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 170, 2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 10.0, 11.1 6.6,5,a-degr-i2,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 298, 2, 0.7, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional Middle School,07050405, 559, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional High School,07050505, 990, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Mashpee-Quashnet School,01720035, 398, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional Middle School,07050405, 559, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 5.6,5,a-degr-i2,2022-23,Mashpee-Mashpee Middle-High School,01720505, 655, 8, 1.2,"","","","","","", 0.0, 0.0, 1.9, 1.7, 2.2, 1.8 7.0,5,a-degr-i2,2022-23,Mashpee-Kenneth Coombs School,01720005, 204, 1, 0.5, 1.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Mashpee-Quashnet School,01720035, 398, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505," 1,044", 10, 1.0, 2.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 3.9, 1.4, 2.9 8.0,5,a-degr-i2,2022-23,Mattapoisett-Center,01730005, 159, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Mattapoisett-Old Hammondtown,01730010, 192, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Maynard-Green Meadow,01740010, 272, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Maynard-Maynard High,01740505, 315, 1, 0.3,"","","","","","","","", 1.2, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Maynard-Fowler School,01740305, 459, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Medfield-Memorial School,01750003, 205, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Dale Street,01750005, 389, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Ralph Wheelock School,01750007, 380, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Thomas Blake Middle,01750305, 582, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Medfield-Medfield Senior High,01750505, 740, 3, 0.4,"","","","","","","","", 1.1, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Medford-John J McGlynn Elementary School,01760068, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Medford-Brooks School,01760130, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Medford-Missituk Elementary School,01760140, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Medford-Milton Fuller Roberts,01760150, 435, 5, 1.1, 2.9, 0.0, 1.3, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medfield-Memorial School,01750003, 205, 0, 0.0, 0.0,"","","","","","","","","","","" +-47.6,1,a-degr-i2,2022-23,Medford-Curtis-Tufts,01760510, 18, 5, 27.8,"","","","","","","","","","","", 50.0 7.6,5,a-degr-i2,2022-23,Medford-Madeleine Dugger Andrews,01760315, 456, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 8.0,5,a-degr-i2,2022-23,Medford-John J. McGlynn Middle School,01760320, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" --47.6,1,a-degr-i2,2022-23,Medford-Curtis-Tufts,01760510, 18, 5, 27.8,"","","","","","","","","","","", 50.0 3.5999999999999996,3.6,a-degr-i2,2022-23,Medford-Medford High,01760505," 1,250", 27, 2.2,"","","","","","","","", 2.6, 3.0, 2.7, 0.3 -8.0,5,a-degr-i2,2022-23,Medway-John D Mc Govern Elementary,01770013, 153, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Medway-Medway Middle,01770305, 653, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2022-23,Medford-Milton Fuller Roberts,01760150, 435, 5, 1.1, 2.9, 0.0, 1.3, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-Missituk Elementary School,01760140, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-Brooks School,01760130, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-John J McGlynn Elementary School,01760068, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Medway-Burke/Memorial Elementary School,01770015, 484, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Medway-Medway High,01770505, 613, 3, 0.5,"","","","","","","","", 1.4, 0.0, 0.7, 0.0 -8.0,5,a-degr-i2,2022-23,Melrose-Herbert Clark Hoover,01780017, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Melrose-Lincoln,01780020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Melrose-Melrose High,01780505, 921, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Melrose-Melrose Middle,01780305, 869, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Melrose-Winthrop,01780050, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medway-John D Mc Govern Elementary,01770013, 153, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Medway-Medway Middle,01770305, 653, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Melrose-Roosevelt,01780035, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Melrose-Horace Mann,01780025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Mendon-Upton-Memorial School,07100001, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Winthrop,01780050, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Melrose Middle,01780305, 869, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Lincoln,01780020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Herbert Clark Hoover,01780017, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Melrose-Melrose High,01780505, 921, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 6.0,5,a-degr-i2,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 595, 6, 1.0,"","","","","","","","", 1.5, 0.6, 1.9, 0.0 -6.6,5,a-degr-i2,2022-23,Mendon-Upton-Henry P Clough,07100179, 272, 2, 0.7, 1.2, 1.5, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Mendon-Upton-Miscoe Hill School,07100015, 635, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Methuen-Donald P Timony Grammar,01810060," 1,091", 2, 0.2, 0.7, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Mendon-Upton-Memorial School,07100001, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Mendon-Upton-Henry P Clough,07100179, 272, 2, 0.7, 1.2, 1.5, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Methuen-Marsh Grammar School,01810030, 936, 1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Methuen-Comprehensive Grammar School,01810050, 831, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -3.8,3.8,a-degr-i2,2022-23,Methuen-Methuen High,01810505," 1,911", 41, 2.1,"","","","","","","","", 2.6, 3.5, 2.0, 0.2 7.8,5,a-degr-i2,2022-23,Methuen-Tenney Grammar School,01810055," 1,116", 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008, 569, 4, 0.7, 2.6, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Methuen-Donald P Timony Grammar,01810060," 1,091", 2, 0.2, 0.7, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","" +3.8,3.8,a-degr-i2,2022-23,Methuen-Methuen High,01810505," 1,911", 41, 2.1,"","","","","","","","", 2.6, 3.5, 2.0, 0.2 7.0,5,a-degr-i2,2022-23,Middleborough-Mary K. Goode Elementary School,01820010, 627, 3, 0.5, 0.8, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Middleborough-John T. Nichols Middle,01820305, 708, 3, 0.4,"","","","","", 0.4, 0.0, 0.8,"","","","" +6.6,5,a-degr-i2,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008, 569, 4, 0.7, 2.6, 0.9, 0.0, 0.0, 0.0,"","","","","","","" -5.4,1,a-degr-i2,2022-23,Middleborough-Middleborough High,01820505, 847, 57, 6.7,"","","","","","","","", 15.6, 4.0, 2.6, 2.5 +7.2,5,a-degr-i2,2022-23,Middleborough-John T. Nichols Middle,01820305, 708, 3, 0.4,"","","","","", 0.4, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Middleton-Howe-Manning,01840005, 371, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Middleton-Fuller Meadow,01840003, 191, 1, 0.5, 1.0, 0.0,"","","","","","","","","","" 3.2,3.2,a-degr-i2,2022-23,Milford-Milford High,01850505," 1,324", 32, 2.4,"","","","","","","","", 4.8, 1.2, 2.7, 0.6 @@ -948,68 +948,82 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Milford-Woodland,01850090, 943, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Milford-Brookside,01850065, 337, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Milford-Memorial,01850010, 340, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -5.6,5,a-degr-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 737, 9, 1.2,"","","","","","", 0.0, 0.0, 4.5, 2.3, 0.0, 0.8 4.6,4.6,a-degr-i2,2022-23,Millbury-Elmwood Street,01860017, 233, 4, 1.7, 3.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Millbury-Raymond E. Shaw Elementary,01860025, 458, 1, 0.2,"","", 0.8, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 737, 9, 1.2,"","","","","","", 0.0, 0.0, 4.5, 2.3, 0.0, 0.8 6.0,5,a-degr-i2,2022-23,Millis-Millis High School,01870505, 313, 3, 1.0,"","","","","","","","", 3.0, 0.0, 1.1, 0.0 8.0,5,a-degr-i2,2022-23,Millis-Millis Middle,01870020, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Millis-Clyde F Brown,01870005, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Milton-Collicot,01890005, 482, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Milton-Charles S Pierce Middle,01890410, 956, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Milton-Tucker,01890020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Milton-Collicot,01890005, 482, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Milton-Cunningham School,01890007, 447, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Milton-Glover,01890010, 546, 1, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Milton-Milton High,01890505," 1,055", 8, 0.8,"","","","","","","","", 0.4, 1.1, 0.4, 1.1 +8.0,5,a-degr-i2,2022-23,Milton-Charles S Pierce Middle,01890410, 956, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 691, 5, 0.7,"","","","","","","","", 0.0, 0.5, 1.8, 0.7 7.0,5,a-degr-i2,2022-23,Mohawk Trail-Buckland-Shelburne Regional,07170005, 217, 1, 0.5, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","" 0.5999999999999996,1,a-degr-i2,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 270, 10, 3.7,"","","","","","", 1.4, 0.0, 18.4, 3.0, 2.9, 0.0 -8.0,5,a-degr-i2,2022-23,Mohawk Trail-Sanderson Academy,07170020, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Mohawk Trail-Colrain Central,07170010, 74, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Chatham Elementary School,07120001, 124, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 696, 4, 0.6,"","","","","","","", 0.6, 0.7, 0.0, 0.9, 0.8 -8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 439, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2022-23,Mohawk Trail-Sanderson Academy,07170020, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.4,5,a-degr-i2,2022-23,Monomoy Regional School District-Harwich Elementary School,07120002, 353, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Chatham Elementary School,07120001, 124, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 439, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +6.8,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 696, 4, 0.6,"","","","","","","", 0.6, 0.7, 0.0, 0.9, 0.8 7.0,5,a-degr-i2,2022-23,Monson-Granite Valley School,01910030, 396, 2, 0.5, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.2,5,a-degr-i2,2022-23,Monson-Monson High School,01910505, 291, 4, 1.4,"","","","","","", 0.0, 0.0, 9.5, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605," 1,409", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Mount Greylock-Williamstown Elementary,07150010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Mount Greylock-Lanesborough Elementary,07150005, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Mount Greylock-Williamstown Elementary,07150010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 535, 1, 0.2,"","","","","","", 0.0, 0.0, 1.4, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105," 1,442", 14, 1.0, 1.9, 1.3, 0.7, 0.7, 0.0, 2.6, 2.7, 0.9, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Nahant-Johnson,01960010, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Nantucket-Cyrus Peirce,01970010, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 0.40000000000000036,1,a-degr-i2,2022-23,Nantucket-Nantucket High,01970505, 582, 22, 3.8,"","","","","","","","", 6.7, 2.9, 3.3, 1.4 +8.0,5,a-degr-i2,2022-23,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Nantucket-Cyrus Peirce,01970010, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.6,5,a-degr-i2,2022-23,Nantucket-Nantucket Elementary,01970005, 249, 3, 1.2, 1.5, 0.8,"","","","","","","","","","" -7.0,5,a-degr-i2,2022-23,Narragansett-Templeton Elementary School,07200020, 444, 2, 0.5, 1.1, 0.9, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Narragansett-Narragansett Middle,07200305, 359, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 3.8,3.8,a-degr-i2,2022-23,Narragansett-Narragansett Regional High,07200505, 466, 10, 2.1,"","","","","","","", 0.0, 6.5, 3.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Narragansett-Narragansett Middle,07200305, 359, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +7.0,5,a-degr-i2,2022-23,Narragansett-Templeton Elementary School,07200020, 444, 2, 0.5, 1.1, 0.9, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Hale,07250310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Center School,07250020, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Nashoba-Luther Burbank Middle School,07250305, 243, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Nashoba-Florence Sawyer School,07250025, 639, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Center School,07250020, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Hale,07250310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Nashoba-Nashoba Regional,07250505, 824, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 750, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Natick-Johnson,01980031, 136, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Wilson Middle,01980310, 778, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Natick-Natick High,01980505," 1,589", 5, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.3 -7.0,5,a-degr-i2,2022-23,Natick-Bennett-Hemenway,01980005, 407, 2, 0.5, 0.0, 2.2, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Brown,01980010, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Lilja Elementary,01980035, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Memorial,01980043, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Natick-J F Kennedy Middle School,01980305, 884, 1, 0.1,"","","","", 0.0, 0.4, 0.0, 0.0,"","","","" -6.0,5,a-degr-i2,2022-23,Nauset-Nauset Regional High,06600505, 776, 8, 1.0,"","","","","","","","", 1.1, 1.4, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Natick-Memorial,01980043, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Lilja Elementary,01980035, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Johnson,01980031, 136, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Brown,01980010, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Natick-Bennett-Hemenway,01980005, 407, 2, 0.5, 0.0, 2.2, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Wilson Middle,01980310, 778, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Nauset-Nauset Regional Middle,06600305, 528, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Needham-John Eliot,01990020, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Needham-Broadmeadow,01990005, 432, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Needham-Sunita L. Williams Elementary,01990035, 441, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Needham-William Mitchell,01990040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Needham-Needham High,01990505," 1,645", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Needham-Pollard Middle,01990405, 818, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Nauset-Nauset Regional High,06600505, 776, 8, 1.0,"","","","","","","","", 1.1, 1.4, 0.0, 1.5 8.0,5,a-degr-i2,2022-23,Needham-High Rock School,01990410, 446, 0, 0.0,"","","","","", 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Needham-Newman Elementary,01990050, 513, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-William Mitchell,01990040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Needham-Sunita L. Williams Elementary,01990035, 441, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-John Eliot,01990020, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-Broadmeadow,01990005, 432, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-Needham High,01990505," 1,645", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Needham-Pollard Middle,01990405, 818, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 2.0,2.0,a-degr-i2,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 689, 21, 3.0, 2.4, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.4, 6.6, 9.9, 6.6, 0.0 +7.0,5,a-degr-i2,2022-23,New Bedford-Alfred J Gomes,02010063, 395, 2, 0.5, 0.0, 1.3, 0.0, 1.2, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 299, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,New Bedford-Ellen R Hathaway,02010075, 174, 2, 1.1, 0.0, 5.7, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,New Bedford-Hayden/McFadden,02010078, 502, 2, 0.4, 0.8, 0.0, 1.4, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,New Bedford-Abraham Lincoln,02010095, 531, 6, 1.1, 4.1, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 464, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-John B Devalles,02010050, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,New Bedford-Carlos Pacheco,02010105, 243, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2022-23,New Bedford-Charles S Ashley,02010010, 229, 2, 0.9, 0.0, 2.1, 0.0, 1.9, 0.0,"","","","","","","" +4.0,4.0,a-degr-i2,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 244, 5, 2.0, 4.8, 3.6, 2.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Elwyn G Campbell,02010020, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,New Bedford-James B Congdon,02010040, 276, 2, 0.7, 0.0, 0.0, 4.3, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-John Avery Parker,02010115, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Casimir Pulaski,02010123, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,New Bedford-Renaissance Community Innovation School,02010124, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2022-23,New Bedford-Thomas R Rodman,02010125, 176, 1, 0.6, 0.0, 0.0, 3.3, 0.0, 0.0,"","","","","","","" 2.4000000000000004,2.4,a-degr-i2,2022-23,New Bedford-Jireh Swift,02010130, 142, 4, 2.8, 5.6, 6.9, 0.0, 0.0, 0.0,"","","","","","","" @@ -1018,30 +1032,22 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.4,5,a-degr-i2,2022-23,New Bedford-Keith Middle School,02010405, 870, 7, 0.8,"","","","","", 0.0, 2.2, 0.3,"","","","" 7.8,5,a-degr-i2,2022-23,New Bedford-Normandin Middle School,02010410," 1,051", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,New Bedford-Roosevelt Middle School,02010415, 778, 2, 0.3,"","","","","", 0.0, 0.8, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 464, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,New Bedford-New Bedford High,02010505," 2,898", 37, 1.3,"","","","","","","","", 1.2, 0.4, 0.6, 3.2 3.2,3.2,a-degr-i2,2022-23,New Bedford-Trinity Day Academy,02010510, 83, 2, 2.4,"","","","", 0.0,"", 0.0, 0.0, 6.3, 0.0, 0.0, 8.3 -12.8,1,a-degr-i2,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 135, 14, 10.4,"","","","","","","","", 50.0, 0.0, 8.3, 0.0 -8.0,5,a-degr-i2,2022-23,New Bedford-Casimir Pulaski,02010123, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-John Avery Parker,02010115, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,New Bedford-Carlos Pacheco,02010105, 243, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,New Bedford-Abraham Lincoln,02010095, 531, 6, 1.1, 4.1, 2.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,New Bedford-Hayden/McFadden,02010078, 502, 2, 0.4, 0.8, 0.0, 1.4, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,New Bedford-Ellen R Hathaway,02010075, 174, 2, 1.1, 0.0, 5.7, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 299, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,New Bedford-Alfred J Gomes,02010063, 395, 2, 0.5, 0.0, 1.3, 0.0, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-John B Devalles,02010050, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.4,5,a-degr-i2,2022-23,New Bedford-New Bedford High,02010505," 2,898", 37, 1.3,"","","","","","","","", 1.2, 0.4, 0.6, 3.2 -6.6,5,a-degr-i2,2022-23,New Bedford-James B Congdon,02010040, 276, 2, 0.7, 0.0, 0.0, 4.3, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-Elwyn G Campbell,02010020, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.0,4.0,a-degr-i2,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 244, 5, 2.0, 4.8, 3.6, 2.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,New Bedford-Charles S Ashley,02010010, 229, 2, 0.9, 0.0, 2.1, 0.0, 1.9, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 741, 3, 0.4,"","","","","", 0.0, 0.0, 0.9, 1.7, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,New Salem-Wendell-Swift River,07280015, 101, 1, 1.0, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 419, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Newburyport-Edward G. Molin Elementary School,02040030, 279, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newburyport-Rupert A Nock Middle,02040305, 481, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Newburyport-Edward G. Molin Elementary School,02040030, 279, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 419, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Newburyport-Newburyport High,02040505, 816, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 7.2,5,a-degr-i2,2022-23,Newton-Newton South High,02070510," 1,832", 7, 0.4,"","","","","","","","", 0.0, 0.0, 0.5, 1.0 +7.4,5,a-degr-i2,2022-23,Newton-A E Angier,02070005, 333, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Bowen,02070015, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-C C Burr,02070020, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Cabot,02070025, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Countryside,02070040, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Franklin,02070055, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Lincoln-Eliot,02070070, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Horace Mann,02070075, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Mason-Rice,02070080, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1056,53 +1062,47 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Newton-F A Day Middle,02070315, 920, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Newton-Oak Hill Middle,02070320, 657, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Newton-Newton North High,02070505," 2,063", 14, 0.7,"","","","","","","","", 0.8, 0.7, 0.0, 1.2 -7.4,5,a-degr-i2,2022-23,Newton-A E Angier,02070005, 333, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Bowen,02070015, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-C C Burr,02070020, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Cabot,02070025, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Countryside,02070040, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Franklin,02070055, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Norfolk-H Olive Day,02080015, 303, 1, 0.3, 0.7, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Norfolk-Freeman-Kennedy School,02080005, 527, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 580, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.7, 0.0 -4.8,4.8,a-degr-i2,2022-23,North Adams-Drury High,02090505, 488, 8, 1.6,"","","","","","", 0.0, 2.2, 3.6, 3.2, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,North Adams-Brayton,02090035, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,North Adams-Greylock,02090015, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,North Adams-Colegrove Park Elementary,02090008, 177, 1, 0.6, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.8,5,a-degr-i2,2022-23,North Andover-North Andover High,02110505," 1,336", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +4.8,4.8,a-degr-i2,2022-23,North Adams-Drury High,02090505, 488, 8, 1.6,"","","","","","", 0.0, 2.2, 3.6, 3.2, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,North Adams-Brayton,02090035, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,North Andover-North Andover Middle,02110305," 1,035", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,North Andover-North Andover High,02110505," 1,336", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,North Andover-Thomson,02110020, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,North Andover-Annie L Sargent School,02110018, 467, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Andover-Kittredge,02110015, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,North Andover-Franklin,02110010, 381, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,North Andover-Atkinson,02110001, 274, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.4,4.4,a-degr-i2,2022-23,North Attleborough-North Attleboro High,02120505," 1,107", 20, 1.8,"","","","","","","","", 0.9, 0.3, 0.3, 5.7 7.8,5,a-degr-i2,2022-23,North Attleborough-North Attleborough Middle,02120305, 956, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,North Attleborough-Community,02120030, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,North Attleborough-Roosevelt Avenue,02120015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 456, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Attleborough-Falls,02120010, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 456, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,North Attleborough-Roosevelt Avenue,02120015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,North Attleborough-Community,02120030, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,North Attleborough-Amvet Boulevard,02120007, 359, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2022-23,North Attleborough-North Attleboro High,02120505," 1,107", 20, 1.8,"","","","","","","","", 0.9, 0.3, 0.3, 5.7 7.2,5,a-degr-i2,2022-23,North Brookfield-North Brookfield Elementary,02150015, 247, 1, 0.4, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0,"","","","","","" 2.2,2.2,a-degr-i2,2022-23,North Brookfield-North Brookfield High,02150505, 136, 4, 2.9,"","","","","","", 0.0, 0.0, 4.2, 0.0, 0.0, 15.8 -7.6,5,a-degr-i2,2022-23,North Middlesex-Varnum Brook,07350035, 508, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,North Middlesex-Hawthorne Brook,07350030, 464, 1, 0.2,"","","","", 0.0, 0.0, 0.9, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,North Middlesex-Ashby Elementary,07350010, 119, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,North Middlesex-Spaulding Memorial,07350005, 348, 1, 0.3, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" --17.0,1,a-degr-i2,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 8, 1, 12.5,"","","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,North Middlesex-Nissitissit Middle School,07350310, 481, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.0,5,a-degr-i2,2022-23,North Middlesex-North Middlesex Regional,07350505, 769, 8, 1.0,"","","","","","","","", 2.6, 0.5, 0.0, 1.1 -8.0,5,a-degr-i2,2022-23,North Reading-L D Batchelder,02170005, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,North Reading-J Turner Hood,02170010, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,North Middlesex-Varnum Brook,07350035, 508, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,North Middlesex-Hawthorne Brook,07350030, 464, 1, 0.2,"","","","", 0.0, 0.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,North Middlesex-Nissitissit Middle School,07350310, 481, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-17.0,1,a-degr-i2,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 8, 1, 12.5,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,North Reading-North Reading Middle,02170305, 541, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,North Reading-North Reading High,02170505, 643, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2022-23,North Reading-J Turner Hood,02170010, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Reading-E Ethel Little School,02170003, 235, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Northampton-Northampton High,02100505, 892, 4, 0.4,"","","","","","","","", 0.5, 0.0, 1.0, 0.4 -8.0,5,a-degr-i2,2022-23,Northampton-John F Kennedy Middle School,02100410, 583, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Northampton-Leeds,02100025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Northampton-Jackson Street,02100020, 239, 1, 0.4, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,North Reading-L D Batchelder,02170005, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Northampton-Bridge Street,02100005, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-John F Kennedy Middle School,02100410, 583, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Northampton-Northampton High,02100505, 892, 4, 0.4,"","","","","","","","", 0.5, 0.0, 1.0, 0.4 +7.2,5,a-degr-i2,2022-23,Northampton-Jackson Street,02100020, 239, 1, 0.4, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-Leeds,02100025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 566, 1, 0.2,"","","","","","","","", 0.7, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Northboro-Southboro-Algonquin Regional High,07300505," 1,201", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Northborough-Lincoln Street,02130003, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1110,27 +1110,27 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.0,5,a-degr-i2,2022-23,Northborough-Fannie E Proctor,02130015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Northborough-Marion E Zeh,02130020, 212, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Northborough-Robert E. Melican Middle School,02130305, 537, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Northbridge-Northbridge Middle,02140305, 481, 3, 0.6,"","","","","", 0.0, 0.6, 1.2,"","","","" -0.5999999999999996,1,a-degr-i2,2022-23,Northbridge-Northbridge High,02140505, 513, 22, 4.3,"","","","","","","","", 5.7, 5.6, 3.7, 1.6 +6.8,5,a-degr-i2,2022-23,Northbridge-Northbridge Middle,02140305, 481, 3, 0.6,"","","","","", 0.0, 0.6, 1.2,"","","","" 6.6,5,a-degr-i2,2022-23,Northbridge-Northbridge Elementary School,02140001, 709, 5, 0.7, 1.3, 0.6, 1.4, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605," 1,292", 3, 0.2,"","","","","","","","", 0.0, 0.6, 0.3, 0.0 7.6,5,a-degr-i2,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 537, 1, 0.2,"","","","","","","","", 0.7, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Norton-J C Solmonese,02180015, 311, 2, 0.6, 2.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Norton-Norton Middle,02180305, 553, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Norton-Norton High,02180505, 675, 2, 0.3,"","","","","","","","", 0.6, 0.6, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Norton-L G Nourse Elementary,02180010, 226, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Norwell-Norwell High,02190505, 602, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Norwell-William G Vinal,02190020, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Norton-Norton Middle,02180305, 553, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Norton-J C Solmonese,02180015, 311, 2, 0.6, 2.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Norton-Norton High,02180505, 675, 2, 0.3,"","","","","","","","", 0.6, 0.6, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Norwell-Norwell Middle School,02190405, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Norwell-Grace Farrar Cole,02190005, 431, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Norwell-William G Vinal,02190020, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Norwell-Norwell High,02190505, 602, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +6.2,5,a-degr-i2,2022-23,Norwood-Norwood High,02200505, 937, 8, 0.9,"","","","","","","","", 0.5, 2.1, 0.4, 0.4 +8.0,5,a-degr-i2,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305, 776, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Charles J Prescott,02200025, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Norwood-John P Oldham,02200020, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-F A Cleveland,02200015, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Cornelius M Callahan,02200010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Balch,02200005, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305, 776, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Norwood-Norwood High,02200505, 937, 8, 0.9,"","","","","","","","", 0.5, 2.1, 0.4, 0.4 +8.0,5,a-degr-i2,2022-23,Norwood-John P Oldham,02200020, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Oak Bluffs-Oak Bluffs Elementary,02210005, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 561, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Old Rochester-Old Rochester Regional Jr High,07400405, 424, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" @@ -1139,89 +1139,89 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Orange-Dexter Park,02230010, 294, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Orange-Fisher Hill,02230015, 127, 1, 0.8, 1.3, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Orleans-Orleans Elementary,02240005, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Oxford-Clara Barton,02260005, 218, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Oxford-Oxford High,02260505, 378, 4, 1.1,"","","","","","","","", 0.0, 0.0, 4.4, 0.0 8.0,5,a-degr-i2,2022-23,Oxford-Oxford Middle,02260405, 504, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Oxford-Clara Barton,02260005, 218, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Oxford-Alfred M Chaffee,02260010, 188, 1, 0.5, 0.0, 1.2,"","","","","","","","","","" -7.2,5,a-degr-i2,2022-23,Palmer-Old Mill Pond,02270008, 462, 2, 0.4, 0.0, 1.0, 1.4, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Palmer-Palmer High,02270505, 532, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0 +7.2,5,a-degr-i2,2022-23,Palmer-Old Mill Pond,02270008, 462, 2, 0.4, 0.0, 1.0, 1.4, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 640, 7, 1.1,"","","","","","","","", 1.6, 1.8, 0.0, 0.8 -30.4,1,a-degr-i2,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 261, 50, 19.2,"","","","","","","","", 12.8, 35.5, 12.5, 12.2 --0.5999999999999996,1,a-degr-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 93, 4, 4.3,"", 0.0,"", 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 30.8 -4.8,4.8,a-degr-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510," 1,465", 24, 1.6,"","","","","","","","", 0.3, 0.0, 0.3, 5.7 -8.0,5,a-degr-i2,2022-23,Peabody-J Henry Higgins Middle,02290305," 1,346", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Peabody-South Memorial,02290035, 340, 2, 0.6, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-West Memorial,02290045, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-William A Welch Sr,02290027, 157, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-John E. McCarthy,02290016, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-Center,02290015, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Peabody-Thomas Carroll,02290010, 504, 1, 0.2, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Peabody-John E Burke,02290007, 214, 1, 0.5, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Peabody-Thomas Carroll,02290010, 504, 1, 0.2, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-West Memorial,02290045, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-John E. McCarthy,02290016, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-William A Welch Sr,02290027, 157, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Peabody-Captain Samuel Brown,02290005, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-J Henry Higgins Middle,02290305," 1,346", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.8,4.8,a-degr-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510," 1,465", 24, 1.6,"","","","","","","","", 0.3, 0.0, 0.3, 5.7 +-0.5999999999999996,1,a-degr-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 93, 4, 4.3,"", 0.0,"", 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 30.8 +8.0,5,a-degr-i2,2022-23,Peabody-Center,02290015, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Peabody-South Memorial,02290035, 340, 2, 0.6, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pelham-Pelham Elementary,02300005, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pembroke-Bryantville Elementary,02310003, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pembroke-Hobomock Elementary,02310010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.0,5.0,a-degr-i2,2022-23,Pembroke-Pembroke High School,02310505, 724, 11, 1.5,"","","","","","","","", 1.2, 3.1, 1.7, 0.0 -8.0,5,a-degr-i2,2022-23,Pembroke-Pembroke Community Middle School,02310305, 405, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Pembroke-North Pembroke Elementary,02310015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Middle,07450405, 358, 1, 0.3,"","","","","","", 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Pembroke-Pembroke Community Middle School,02310305, 405, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2022-23,Pembroke-Pembroke High School,02310505, 724, 11, 1.5,"","","","","","","","", 1.2, 3.1, 1.7, 0.0 +8.0,5,a-degr-i2,2022-23,Pembroke-Hobomock Elementary,02310010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Pembroke-Bryantville Elementary,02310003, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 591, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.7, 0.6 +7.4,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Middle,07450405, 358, 1, 0.3,"","","","","","", 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 121, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Pentucket-Dr John C Page School,07450015, 250, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pentucket-Elmer S Bagnall,07450005, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pentucket-Helen R Donaghue School,07450010, 250, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Pentucket-Dr John C Page School,07450015, 250, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 121, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 6.2,5,a-degr-i2,2022-23,Petersham-Petersham Center,02340005, 109, 1, 0.9, 0.0, 0.0, 0.0, 0.0, 8.3, 0.0,"","","","","","" -70.8,1,a-degr-i2,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 203, 80, 39.4,"","","","","","","","", 46.7,"", 15.4, 40.0 -112.0,1,a-degr-i2,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 125, 75, 60.0,"","","","","","","","", 58.5,"", 65.7,"" -94.4,1,a-degr-i2,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 166, 85, 51.2,"","","","","","","","", 68.8,"", 27.1, 33.3 6.8,5,a-degr-i2,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 720, 4, 0.6, 1.6, 3.1, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 5.6,5,a-degr-i2,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 422, 5, 1.2, 0.0, 0.0,"","","","", 0.0, 2.7, 2.8, 1.9, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 256, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -6.8,5,a-degr-i2,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 155, 1, 0.6, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pioneer Valley-Northfield Elementary,07500008, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 155, 1, 0.6, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 256, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 7.2,5,a-degr-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 505, 2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0 7.0,5,a-degr-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 390, 2, 0.5,"","","","","","", 0.0, 0.0, 1.4, 0.0, 0.0, 1.7 -8.0,5,a-degr-i2,2022-23,Pittsfield-Egremont,02360035, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 131, 2, 1.5, 0.0, 4.3, 0.0, 0.0, 3.1,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby Educational Academy,02360030, 17, 0, 0.0,"","","","", 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Pittsfield-Allendale,02360010, 209, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Pittsfield-Theodore Herberg Middle,02360310, 496, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -3.5999999999999996,1,a-degr-i2,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 104, 6, 5.8,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 16.7, 25.0, 7.1, 0.0 --44.2,1,a-degr-i2,2022-23,Pittsfield-Eagle Education Academy,02360525, 23, 6, 26.1,"","","","","","","","","", 50.0,"","" --1.8000000000000007,1,a-degr-i2,2022-23,Pittsfield-Taconic High,02360510, 860, 42, 4.9,"","","","","","","","", 8.6, 4.2, 4.4, 1.1 -0.7999999999999998,1,a-degr-i2,2022-23,Pittsfield-Pittsfield High,02360505, 639, 23, 3.6,"","","","","","","","", 9.4, 3.6, 1.1, 0.7 -8.0,5,a-degr-i2,2022-23,Pittsfield-John T Reid Middle,02360305, 450, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Pittsfield-Silvio O Conte Community,02360105, 270, 4, 1.5, 3.6, 1.9, 2.3, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pittsfield-Williams,02360100, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Pittsfield-Stearns,02360090, 183, 2, 1.1, 0.0, 0.0, 0.0, 4.5, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby,02360065, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Pittsfield-Morningside Community School,02360055, 273, 2, 0.7, 3.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-John T Reid Middle,02360305, 450, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +0.7999999999999998,1,a-degr-i2,2022-23,Pittsfield-Pittsfield High,02360505, 639, 23, 3.6,"","","","","","","","", 9.4, 3.6, 1.1, 0.7 +-1.8000000000000007,1,a-degr-i2,2022-23,Pittsfield-Taconic High,02360510, 860, 42, 4.9,"","","","","","","","", 8.6, 4.2, 4.4, 1.1 +-44.2,1,a-degr-i2,2022-23,Pittsfield-Eagle Education Academy,02360525, 23, 6, 26.1,"","","","","","","","","", 50.0,"","" +7.0,5,a-degr-i2,2022-23,Pittsfield-Allendale,02360010, 209, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby Educational Academy,02360030, 17, 0, 0.0,"","","","", 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-Egremont,02360035, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 131, 2, 1.5, 0.0, 4.3, 0.0, 0.0, 3.1,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plainville-Beatrice H Wood Elementary,02380005, 355, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Plainville-Anna Ware Jackson,02380010, 148, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Plymouth-Plymouth Commun Intermediate,02390405, 878, 2, 0.2,"","","","","", 0.0, 0.4, 0.3,"","","","" -7.2,5,a-degr-i2,2022-23,Plymouth-West Elementary,02390047, 277, 1, 0.4, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -3.5999999999999996,3.6,a-degr-i2,2022-23,Plymouth-Plymouth North High,02390505," 1,301", 28, 2.2,"","","","","","","","", 4.8, 1.9, 1.3, 0.3 -8.0,5,a-degr-i2,2022-23,Plymouth-Manomet Elementary,02390015, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.4,5,a-degr-i2,2022-23,Plymouth-Plymouth South High,02390515," 1,028", 13, 1.3,"","","","","","","","", 2.3, 2.3, 0.4, 0.0 -8.0,5,a-degr-i2,2022-23,Plymouth-Cold Spring,02390005, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plymouth-Plymouth South Middle,02390305, 620, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-South Elementary,02390046, 526, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-Indian Brook,02390012, 484, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Plymouth-West Elementary,02390047, 277, 1, 0.4, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Plymouth-Federal Furnace School,02390011, 337, 1, 0.3, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plymouth-Hedge,02390010, 169, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Cold Spring,02390005, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-South Elementary,02390046, 526, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Manomet Elementary,02390015, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Indian Brook,02390012, 484, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Plymouth-Plymouth South High,02390515," 1,028", 13, 1.3,"","","","","","","","", 2.3, 2.3, 0.4, 0.0 +3.5999999999999996,3.6,a-degr-i2,2022-23,Plymouth-Plymouth North High,02390505," 1,301", 28, 2.2,"","","","","","","","", 4.8, 1.9, 1.3, 0.3 8.0,5,a-degr-i2,2022-23,Plympton-Dennett Elementary,02400010, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 901, 9, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.8, 1.4, 6.0, 1.4 6.2,5,a-degr-i2,2022-23,Provincetown-Provincetown Schools,02420020, 107, 1, 0.9, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Quabbin-Quabbin Regional Middle School,07530405, 517, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Hardwick Elementary,07530005, 144, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Hubbardston Center,07530010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Oakham Center,07530025, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --8.0,1,a-degr-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 566, 45, 8.0,"","","","","","","","", 18.6, 6.1, 0.8, 2.2 7.4,5,a-degr-i2,2022-23,Quabbin-Ruggles Lane,07530030, 287, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-8.0,1,a-degr-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 566, 45, 8.0,"","","","","","","","", 18.6, 6.1, 0.8, 2.2 +7.6,5,a-degr-i2,2022-23,Quabbin-Quabbin Regional Middle School,07530405, 517, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 228, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 4.6,4.6,a-degr-i2,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 354, 6, 1.7,"","","","","","","","", 4.3, 0.0, 2.3, 0.0 8.0,5,a-degr-i2,2022-23,Quaboag Regional-Warren Elementary,07780005, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 228, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 203, 1, 0.5,"","","","","","", 1.1, 0.0,"","","","" 5.2,5,a-degr-i2,2022-23,Quincy-North Quincy High,02430510," 1,450", 21, 1.4,"","","","","","","","", 2.4, 1.7, 0.3, 1.5 8.0,5,a-degr-i2,2022-23,Quincy-Beechwood Knoll Elementary,02430020, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1242,21 +1242,20 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.4,5,a-degr-i2,2022-23,Quincy-Montclair,02430065, 363, 3, 0.8, 1.6, 1.4, 0.0, 1.2, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Quincy-Francis W Parker,02430075, 274, 1, 0.4, 0.0, 0.0, 0.0, 1.6, 0.0,"","","","","","","" -3.0,1,a-degr-i2,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 523, 29, 5.5,"","","","","","", 1.1, 1.0, 13.4, 2.5, 11.7, 1.5 +5.2,5,a-degr-i2,2022-23,Randolph-Martin E Young Elementary,02440040, 210, 3, 1.4, 1.9, 4.9, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Randolph-Margaret L Donovan,02440015, 356, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.8,4.8,a-degr-i2,2022-23,Randolph-Elizabeth G Lyons Elementary,02440020, 246, 4, 1.6, 3.8, 4.5, 0.0, 0.0, 0.0,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2022-23,Randolph-J F Kennedy Elementary,02440018, 257, 8, 3.1, 3.4, 4.5, 3.8, 3.8, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Randolph-Randolph Community Middle,02440410, 566, 2, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" -16.4,1,a-degr-i2,2022-23,Randolph-Randolph High,02440505, 617, 75, 12.2,"","","","","","","","", 20.8, 9.7, 9.4, 3.4 -7.4,5,a-degr-i2,2022-23,Randolph-Margaret L Donovan,02440015, 356, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -1.7999999999999998,1.8,a-degr-i2,2022-23,Randolph-J F Kennedy Elementary,02440018, 257, 8, 3.1, 3.4, 4.5, 3.8, 3.8, 0.0,"","","","","","","" -4.8,4.8,a-degr-i2,2022-23,Randolph-Elizabeth G Lyons Elementary,02440020, 246, 4, 1.6, 3.8, 4.5, 0.0, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Randolph-Martin E Young Elementary,02440040, 210, 3, 1.4, 1.9, 4.9, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Reading-Reading Memorial High,02460505," 1,096", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 -7.2,5,a-degr-i2,2022-23,Reading-Walter S Parker Middle,02460310, 464, 2, 0.4,"","","","","", 0.0, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2022-23,Reading-Arthur W Coolidge Middle,02460305, 429, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Reading-Wood End Elementary School,02460020, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Reading-Alice M Barrows,02460002, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Reading-Birch Meadow,02460005, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Reading-J Warren Killam,02460017, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Wood End Elementary School,02460020, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Reading-Joshua Eaton,02460010, 328, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" --42.6,1,a-degr-i2,2022-23,Revere-CityLab Innovation High School,02480520, 95, 24, 25.3,"","","","","","","","", 31.9, 29.4, 21.4, 5.9 +8.0,5,a-degr-i2,2022-23,Reading-Birch Meadow,02460005, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Alice M Barrows,02460002, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Arthur W Coolidge Middle,02460305, 429, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Reading-Walter S Parker Middle,02460310, 464, 2, 0.4,"","","","","", 0.0, 0.0, 1.1,"","","","" +7.8,5,a-degr-i2,2022-23,Reading-Reading Memorial High,02460505," 1,096", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 -3.5999999999999996,1,a-degr-i2,2022-23,Revere-Revere High,02480505," 2,069", 121, 5.8,"","","","","","","","", 10.0, 5.8, 5.9, 0.0 8.0,5,a-degr-i2,2022-23,Revere-Susan B. Anthony Middle School,02480305, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Revere-Garfield Middle School,02480057, 546, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" @@ -1267,109 +1266,110 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Revere-Beachmont Veterans Memorial School,02480013, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Revere-A. C. Whelan Elementary School,02480003, 625, 2, 0.3, 1.1, 0.7, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Revere-Paul Revere,02480050, 379, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-42.6,1,a-degr-i2,2022-23,Revere-CityLab Innovation High School,02480520, 95, 24, 25.3,"","","","","","","","", 31.9, 29.4, 21.4, 5.9 8.0,5,a-degr-i2,2022-23,Richmond-Richmond Consolidated,02490005, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 634, 3, 0.5,"","","","", 0.0, 0.0, 0.0, 0.0, 2.6, 1.4, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,River Valley Charter (District)-River Valley Charter School,04820050, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rochester-Rochester Memorial,02500005, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -1.0,1.0,a-degr-i2,2022-23,Rockland-Rockland Senior High,02510505, 576, 20, 3.5,"","","","","","","","", 8.6, 3.0, 0.0, 0.7 -8.0,5,a-degr-i2,2022-23,Rockland-Memorial Park,02510020, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2022-23,Rockland-John W Rogers Middle,02510305, 715, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Rockland-Jefferson Elementary School,02510060, 195, 1, 0.5, 0.0, 2.1, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Rockland-R Stewart Esten,02510025, 271, 3, 1.1, 2.7, 0.0, 1.4, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2022-23,Rockland-John W Rogers Middle,02510305, 715, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Rockland-Memorial Park,02510020, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +1.0,1.0,a-degr-i2,2022-23,Rockland-Rockland Senior High,02510505, 576, 20, 3.5,"","","","","","","","", 8.6, 3.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Rockport-Rockport High,02520510, 231, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Rockport-Rockport Middle,02520305, 195, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rockport-Rockport Elementary,02520005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Rockport-Rockport Middle,02520305, 195, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rowe-Rowe Elementary,02530005, 52, 0, 0.0,"", 0.0, 0.0,"", 0.0, 0.0,"","","","","","" 2.8,2.8,a-degr-i2,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505," 1,295", 34, 2.6,"","","","", 2.7, 1.1, 2.3, 0.9, 6.7, 3.5, 2.5, 1.8 -8.0,5,a-degr-i2,2022-23,Salem-Bates,02580003, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --6.199999999999999,1,a-degr-i2,2022-23,Salem-Salem Prep High School,02580515, 14, 1, 7.1,"","","","","","","","","","","", 16.7 -0.7999999999999998,1,a-degr-i2,2022-23,Salem-New Liberty Innovation School,02580510, 56, 2, 3.6,"","","","","","","","","", 0.0, 0.0, 7.7 -2.5999999999999996,2.6,a-degr-i2,2022-23,Salem-Salem High,02580505, 882, 24, 2.7,"","","","","","","","", 4.1, 4.0, 1.0, 1.4 7.6,5,a-degr-i2,2022-23,Salem-Collins Middle,02580305, 612, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Salem-Salem High,02580505, 882, 24, 2.7,"","","","","","","","", 4.1, 4.0, 1.0, 1.4 8.0,5,a-degr-i2,2022-23,Salem-Witchcraft Heights,02580070, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Salem-Saltonstall School,02580050, 356, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Salem-Horace Mann Laboratory,02580030, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2022-23,Salem-Carlton,02580015, 204, 2, 1.0, 0.0, 4.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Salem-Bentley Academy Innovation School,02580010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Salem-Bates,02580003, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-6.199999999999999,1,a-degr-i2,2022-23,Salem-Salem Prep High School,02580515, 14, 1, 7.1,"","","","","","","","","","","", 16.7 +0.7999999999999998,1,a-degr-i2,2022-23,Salem-New Liberty Innovation School,02580510, 56, 2, 3.6,"","","","","","","","","", 0.0, 0.0, 7.7 8.0,5,a-degr-i2,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 489, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Sandwich-Forestdale School,02610002, 310, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Sandwich-Oak Ridge,02610025, 674, 1, 0.1,"","", 0.7, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Sandwich-Forestdale School,02610002, 310, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Sandwich-Sandwich Middle High School,02610505, 928, 3, 0.3,"","","","","","", 0.0, 0.0, 0.8, 0.0, 0.0, 1.3 -3.2,3.2,a-degr-i2,2022-23,Saugus-Veterans Early Learning Center,02620065, 170, 4, 2.4, 2.4,"","","","","","","","","","","" -6.4,5,a-degr-i2,2022-23,Saugus-Saugus High,02620505, 709, 6, 0.8,"","","","","","","","", 1.1, 0.0, 2.2, 0.0 7.6,5,a-degr-i2,2022-23,Saugus-Saugus Middle School,02620305, 598, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +6.4,5,a-degr-i2,2022-23,Saugus-Saugus High,02620505, 709, 6, 0.8,"","","","","","","","", 1.1, 0.0, 2.2, 0.0 5.4,5,a-degr-i2,2022-23,Saugus-Belmonte STEAM Academy,02620060, 780, 10, 1.3,"", 2.4, 1.1, 1.0, 0.5,"","","","","","","" +3.2,3.2,a-degr-i2,2022-23,Saugus-Veterans Early Learning Center,02620065, 170, 4, 2.4, 2.4,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Savoy-Emma L Miller Elementary School,02630010, 31, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Scituate-Cushing Elementary,02640007, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Scituate-Hatherly Elementary,02640010, 211, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Scituate-Scituate High School,02640505, 762, 11, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.6 7.4,5,a-degr-i2,2022-23,Scituate-Wampatuck Elementary,02640020, 304, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Scituate-Gates Middle School,02640305, 605, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +5.2,5,a-degr-i2,2022-23,Scituate-Scituate High School,02640505, 762, 11, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.6 +7.0,5,a-degr-i2,2022-23,Scituate-Hatherly Elementary,02640010, 211, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Scituate-Jenkins Elementary School,02640015, 276, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Scituate-Cushing Elementary,02640007, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Seekonk-George R Martin,02650007, 386, 2, 0.5, 1.4, 0.0, 1.2, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Seekonk-Seekonk High,02650505, 533, 9, 1.7,"","","","","","","","", 4.2, 1.9, 0.8, 0.0 8.0,5,a-degr-i2,2022-23,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 490, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Seekonk-Mildred Aitken School,02650015, 439, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sharon-Heights Elementary,02660015, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sharon-East Elementary,02660010, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sharon-Cottage Street,02660005, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Sharon-Sharon Middle,02660305, 845, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Sharon-Heights Elementary,02660015, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Sharon-East Elementary,02660010, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2022-23,Sharon-Sharon High,02660505," 1,143", 16, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.3 7.6,5,a-degr-i2,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605," 1,292", 2, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 7.4,5,a-degr-i2,2022-23,Sherborn-Pine Hill,02690010, 334, 1, 0.3, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Shrewsbury-Floral Street School,02710020, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 199, 1, 0.5, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 488, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Shrewsbury-Walter J. Paton School,02710025, 241, 1, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Shrewsbury-Shrewsbury High School,02710505," 1,821", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.2, 0.0 8.0,5,a-degr-i2,2022-23,Shrewsbury-Sherwood Middle School,02710305, 948, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Shrewsbury-Spring Street School,02710035, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Shrewsbury-Oak Middle School,02710030, 944, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Shrewsbury-Walter J. Paton School,02710025, 241, 1, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Shrewsbury-Floral Street School,02710020, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 199, 1, 0.5, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 488, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Shutesbury-Shutesbury Elementary,02720005, 94, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Silver Lake-Silver Lake Regional Middle School,07600405, 528, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Silver Lake-Silver Lake Regional High,07600505," 1,037", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.4, 0.0 8.0,5,a-degr-i2,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 344, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Somerset-North Elementary,02730008, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Somerset-Chace Street,02730005, 283, 1, 0.4, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Somerset-Somerset Middle School,02730305, 575, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Somerset-South,02730015, 220, 2, 0.9, 2.2, 2.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Somerset-North Elementary,02730008, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 994, 4, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.7 -8.0,5,a-degr-i2,2022-23,Somerville-E Somerville Community,02740111, 656, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Somerville-Winter Hill Community,02740120, 368, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Somerville-Next Wave Junior High,02740410, 15, 0, 0.0,"","","","","","","", 0.0,"","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Somerville-Somerville High,02740505," 1,296", 35, 2.7,"","","","","","","","", 3.5, 2.1, 1.6, 3.6 8.0,5,a-degr-i2,2022-23,Somerville-Full Circle High School,02740510, 53, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 471, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-John F Kennedy,02740083, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-Arthur D Healey,02740075, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Somerville-Benjamin G Brown,02740015, 168, 1, 0.6, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Somerville-Next Wave Junior High,02740410, 15, 0, 0.0,"","","","","","","", 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Somerville-Winter Hill Community,02740120, 368, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 471, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Somerville-E Somerville Community,02740111, 656, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-Capuano Early Childhood Center,02740005, 9, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Somerville-West Somerville Neighborhood,02740115, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,South Hadley-South Hadley High,02780505, 495, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,South Hadley-Michael E. Smith Middle School,02780305, 526, 1, 0.2,"","","","", 0.8, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,South Hadley-South Hadley High,02780505, 495, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,South Hadley-Mosier,02780020, 345, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,South Hadley-Plains Elementary,02780015, 142, 1, 0.7, 0.7,"","","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 842, 14, 1.7,"","","","","","","","", 1.7, 0.5, 3.3, 1.1 7.0,5,a-degr-i2,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 980, 5, 0.5, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2, 1.1, 1.4, 0.0 8.0,5,a-degr-i2,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 653, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Southampton-William E Norris,02750005, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Southborough-P Brent Trottier,02760305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Southborough-Mary E Finn School,02760008, 118, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Southborough-Margaret A Neary,02760020, 267, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Southborough-Albert S. Woodward Memorial School,02760050, 268, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Southborough-P Brent Trottier,02760305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Southborough-Margaret A Neary,02760020, 267, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Southborough-Mary E Finn School,02760008, 118, 0, 0.0, 0.0,"","","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Southbridge-West Street,02770020, 335, 1, 0.3,"", 0.0, 0.0, 0.0, 1.1,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Southbridge-Southbridge Middle School,02770315, 405, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Southbridge-Charlton Street,02770005, 249, 1, 0.4,"", 1.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Southbridge-Eastford Road,02770010, 141, 0, 0.0, 0.0,"","","","","","","","","","","" -28.4,1,a-degr-i2,2022-23,Southbridge-Southbridge Academy,02770525, 33, 6, 18.2,"","","","","","","","", 36.4, 33.3,"","" -2.5999999999999996,1,a-degr-i2,2022-23,Southbridge-Southbridge High School,02770515, 457, 24, 5.3,"","","","","","","","", 13.0, 1.7, 3.7, 0.0 +8.0,5,a-degr-i2,2022-23,Southbridge-Southbridge Middle School,02770315, 405, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605," 1,558", 5, 0.3,"","","","","","","","", 0.2, 0.8, 0.3, 0.0 -7.4,5,a-degr-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 294, 1, 0.3,"","","","","", 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Southern Berkshire-New Marlborough Central,07650018, 40, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Southern Berkshire-Undermountain,07650035, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Southern Berkshire-New Marlborough Central,07650018, 40, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 294, 1, 0.3,"","","","","", 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605," 1,185", 2, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 624, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 176, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 624, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 384, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Spencer-E Brookfield-East Brookfield Elementary,07670008, 112, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 352, 2, 0.6,"","","","","","","","", 0.0, 1.1, 0.0, 1.4 @@ -1378,19 +1378,12 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.8,5,a-degr-i2,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620," 1,360", 2, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 88, 2, 2.3,"","","","","","","","", 6.1, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-The Springfield Virtual School,02810705, 430, 10, 2.3, 0.0, 0.0, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 11.6, 7.0, 3.0, 0.0 -8.0,5,a-degr-i2,2022-23,Springfield-Impact Prep at Chestnut,02810366, 206, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.4,5,a-degr-i2,2022-23,Springfield-Homer Street,02810085, 302, 4, 1.3, 4.0, 0.0, 1.8, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -1.0,1.0,a-degr-i2,2022-23,Springfield-Indian Orchard Elementary,02810100, 372, 13, 3.5, 6.6, 4.5, 5.6, 0.0, 0.0,"","","","","","","" -1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Kensington International School,02810110, 178, 6, 3.4, 10.0, 7.4, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Liberty,02810115, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Springfield-Lincoln,02810120, 345, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 208, 6, 2.9, 4.5, 10.5, 0.0, 0.0, 0.0,"","","","","","","" --0.5999999999999996,1,a-degr-i2,2022-23,Springfield-Mary M Lynch,02810140, 164, 7, 4.3, 12.1, 0.0, 6.7, 3.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,Springfield-Mary O Pottenger,02810145, 316, 3, 0.9, 5.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Springfield-Mary M Walsh,02810155, 200, 3, 1.5, 5.3, 2.8, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Springfield-Sumner Avenue,02810160, 334, 5, 1.5, 4.9, 1.5, 0.0, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Arthur T Talmadge,02810165, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2022-23,Springfield-Thomas M Balliet,02810015, 199, 2, 1.0, 1.9, 2.1, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Springfield-Samuel Bowles,02810020, 180, 1, 0.6, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","","","","" +1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Milton Bradley School,02810023, 372, 12, 3.2, 4.4, 5.7, 5.6, 1.3, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2022-23,Springfield-Brightwood,02810025, 354, 3, 0.8, 1.5, 1.3, 1.5, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Springfield-Elias Brookings,02810030, 200, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Daniel B Brunton,02810035, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-Alice B Beal Elementary,02810175, 214, 5, 2.3, 4.3, 4.3, 0.0, 1.9, 0.0,"","","","","","","" -2.0,1,a-degr-i2,2022-23,Springfield-Warner,02810180, 160, 8, 5.0, 10.3, 5.9, 7.9, 0.0, 0.0,"","","","","","","" 1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Washington,02810185, 295, 10, 3.4, 8.0, 6.1, 1.7, 0.0, 0.0,"","","","","","","" @@ -1398,6 +1391,14 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.2,4.2,a-degr-i2,2022-23,Springfield-German Gerena Community School,02810195, 419, 8, 1.9, 6.4, 3.2, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 631, 1, 0.2,"","","","","", 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0 1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Springfield International Academy at Johnson,02810215, 31, 1, 3.2,"","", 0.0, 0.0, 9.1,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 274, 3, 1.1,"","","","","", 0.0, 1.1, 1.9,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2022-23,Springfield-Rise Academy at Van Sickle,02810480, 241, 1, 0.4,"","","","","", 0.0, 0.0, 1.3,"","","","" +7.2,5,a-degr-i2,2022-23,Springfield-Van Sickle Academy,02810485, 256, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Springfield-Mary O Pottenger,02810145, 316, 3, 0.9, 5.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Springfield-Mary M Walsh,02810155, 200, 3, 1.5, 5.3, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Springfield-Sumner Avenue,02810160, 334, 5, 1.5, 4.9, 1.5, 0.0, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Arthur T Talmadge,02810165, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Kiley Prep,02810315, 266, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 4.8,4.8,a-degr-i2,2022-23,Springfield-Kiley Academy,02810316, 315, 5, 1.6,"","","","","", 3.4, 0.9, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Springfield Legacy Academy,02810317, 321, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" @@ -1407,28 +1408,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.4,5,a-degr-i2,2022-23,Springfield-John F Kennedy Middle,02810328, 390, 5, 1.3,"","","","","", 0.0, 3.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Springfield Realization Academy,02810335, 133, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" 4.0,4.0,a-degr-i2,2022-23,Springfield-Springfield Public Day Middle School,02810345, 51, 1, 2.0,"","","","","", 0.0, 9.1, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Springfield-STEM Middle Academy,02810350, 297, 2, 0.7,"","","","","", 1.0, 1.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Springfield-South End Middle School,02810355, 187, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" --22.0,1,a-degr-i2,2022-23,Springfield-Springfield Middle School,02810360, 20, 3, 15.0,"","","","","","", 0.0, 10.0,"","","","" --10.8,1,a-degr-i2,2022-23,Springfield-Springfield Public Day Elementary School,02810005, 32, 3, 9.4,"","","", 0.0, 6.3,"","","","","","","" -0.20000000000000018,1,a-degr-i2,2022-23,Springfield-Edward P. Boland School,02810010, 357, 14, 3.9, 9.2, 8.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Springfield-Thomas M Balliet,02810015, 199, 2, 1.0, 1.9, 2.1, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Springfield-Samuel Bowles,02810020, 180, 1, 0.6, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","","","","" -1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Milton Bradley School,02810023, 372, 12, 3.2, 4.4, 5.7, 5.6, 1.3, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Springfield-Brightwood,02810025, 354, 3, 0.8, 1.5, 1.3, 1.5, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Springfield-Elias Brookings,02810030, 200, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Daniel B Brunton,02810035, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.0,4.0,a-degr-i2,2022-23,Springfield-William N. DeBerry,02810045, 200, 4, 2.0, 4.7, 2.7, 2.3, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Springfield-Hiram L Dorman,02810050, 208, 3, 1.4, 4.3, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Springfield-Rebecca M Johnson,02810055, 421, 5, 1.2, 2.1, 3.8, 0.0, 0.0, 0.0,"","","","","","","" -4.4,4.4,a-degr-i2,2022-23,Springfield-Glenwood,02810065, 224, 4, 1.8, 2.0, 9.1, 0.0, 0.0, 0.0,"","","","","","","" -3.0,3.0,a-degr-i2,2022-23,Springfield-Glickman Elementary,02810068, 239, 6, 2.5, 7.7, 7.9, 0.0, 0.0, 0.0,"","","","","","","" -3.2,3.2,a-degr-i2,2022-23,Springfield-Frank H Freedman,02810075, 206, 5, 2.4, 8.0, 0.0, 2.4, 0.0, 0.0,"","","","","","","" -4.2,4.2,a-degr-i2,2022-23,Springfield-Frederick Harris,02810080, 431, 8, 1.9, 3.7, 4.9, 0.0, 1.1, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 274, 3, 1.1,"","","","","", 0.0, 1.1, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -7.2,5,a-degr-i2,2022-23,Springfield-Rise Academy at Van Sickle,02810480, 241, 1, 0.4,"","","","","", 0.0, 0.0, 1.3,"","","","" -7.2,5,a-degr-i2,2022-23,Springfield-Van Sickle Academy,02810485, 256, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" -9.399999999999999,1,a-degr-i2,2022-23,Springfield-Springfield Central High,02810500," 2,095", 183, 8.7,"","","","","","","","", 18.4, 9.2, 0.0, 2.0 6.4,5,a-degr-i2,2022-23,Springfield-High School Of Commerce,02810510," 1,103", 9, 0.8,"","","","","","","","", 0.4, 1.2, 0.8, 0.8 -7.0,1,a-degr-i2,2022-23,Springfield-Springfield High School of Science and Technology,02810530," 1,087", 82, 7.5,"","","","","","","","", 16.3, 8.4, 0.0, 0.0 @@ -1437,288 +1416,279 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -39.2,1,a-degr-i2,2022-23,Springfield-Springfield High School,02810570, 203, 48, 23.6,"","","","","","","","", 0.0, 6.9, 7.5, 36.8 -38.2,1,a-degr-i2,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 26, 6, 23.1,"","","","","","","","","", 14.3, 44.4, 0.0 -58.599999999999994,1,a-degr-i2,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 30, 10, 33.3,"","","","","","","","","", 16.7, 53.8, 12.5 +4.0,4.0,a-degr-i2,2022-23,Springfield-William N. DeBerry,02810045, 200, 4, 2.0, 4.7, 2.7, 2.3, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2022-23,Springfield-Hiram L Dorman,02810050, 208, 3, 1.4, 4.3, 2.5, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2022-23,Springfield-Rebecca M Johnson,02810055, 421, 5, 1.2, 2.1, 3.8, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2022-23,Springfield-Glenwood,02810065, 224, 4, 1.8, 2.0, 9.1, 0.0, 0.0, 0.0,"","","","","","","" +3.0,3.0,a-degr-i2,2022-23,Springfield-Glickman Elementary,02810068, 239, 6, 2.5, 7.7, 7.9, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2022-23,Springfield-Frank H Freedman,02810075, 206, 5, 2.4, 8.0, 0.0, 2.4, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2022-23,Springfield-Frederick Harris,02810080, 431, 8, 1.9, 3.7, 4.9, 0.0, 1.1, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Springfield-Homer Street,02810085, 302, 4, 1.3, 4.0, 0.0, 1.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +1.0,1.0,a-degr-i2,2022-23,Springfield-Indian Orchard Elementary,02810100, 372, 13, 3.5, 6.6, 4.5, 5.6, 0.0, 0.0,"","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Kensington International School,02810110, 178, 6, 3.4, 10.0, 7.4, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Liberty,02810115, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Springfield-Lincoln,02810120, 345, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.2,2.2,a-degr-i2,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 208, 6, 2.9, 4.5, 10.5, 0.0, 0.0, 0.0,"","","","","","","" +-0.5999999999999996,1,a-degr-i2,2022-23,Springfield-Mary M Lynch,02810140, 164, 7, 4.3, 12.1, 0.0, 6.7, 3.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Springfield-STEM Middle Academy,02810350, 297, 2, 0.7,"","","","","", 1.0, 1.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-South End Middle School,02810355, 187, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-22.0,1,a-degr-i2,2022-23,Springfield-Springfield Middle School,02810360, 20, 3, 15.0,"","","","","","", 0.0, 10.0,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Impact Prep at Chestnut,02810366, 206, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-10.8,1,a-degr-i2,2022-23,Springfield-Springfield Public Day Elementary School,02810005, 32, 3, 9.4,"","","", 0.0, 6.3,"","","","","","","" +0.20000000000000018,1,a-degr-i2,2022-23,Springfield-Edward P. Boland School,02810010, 357, 14, 3.9, 9.2, 8.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505," 1,425", 10, 0.7, 1.9, 0.9, 1.5, 0.8, 0.6, 0.8, 0.0, 0.6, 0.9, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 433, 10, 2.3, 5.6, 3.6, 1.9, 3.7, 0.0, 1.9, 0.0, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Stoneham-Colonial Park,02840005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Stoneham-Robin Hood,02840025, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Stoneham-South,02840030, 246, 2, 0.8, 1.5, 0.0, 1.9, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoneham-Robin Hood,02840025, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoneham-Colonial Park,02840005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Stoneham-Stoneham Central Middle School,02840405, 678, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Stoneham-Stoneham High,02840505, 614, 3, 0.5,"","","","","","","","", 0.6, 0.7, 0.7, 0.0 -8.0,5,a-degr-i2,2022-23,Stoughton-Helen Hansen Elementary,02850010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 308, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoughton-O'Donnell Middle School,02850405, 815, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 1.0,1.0,a-degr-i2,2022-23,Stoughton-Stoughton High,02850505," 1,069", 37, 3.5,"","","","","","","","", 7.9, 3.0, 2.2, 0.0 8.0,5,a-degr-i2,2022-23,Stoughton-South Elementary,02850015, 234, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoughton-Helen Hansen Elementary,02850010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 308, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Stoughton-Richard L. Wilkins Elementary School,02850020, 225, 6, 2.7, 6.1, 4.8, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Stoughton-Joseph H Gibbons,02850025, 295, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Stoughton-O'Donnell Middle School,02850405, 815, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Sturbridge-Burgess Elementary,02870005, 705, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.6,5,a-degr-i2,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 830, 10, 1.2,"","","","","","","","", 2.3, 1.4, 1.0, 0.0 -8.0,5,a-degr-i2,2022-23,Sudbury-Josiah Haynes,02880010, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Sudbury-Israel Loring School,02880015, 346, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sudbury-General John Nixon Elementary,02880025, 273, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sudbury-Peter Noyes,02880030, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sudbury-Ephraim Curtis Middle,02880305, 850, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Sudbury-General John Nixon Elementary,02880025, 273, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Sudbury-Israel Loring School,02880015, 346, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Sudbury-Josiah Haynes,02880010, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Sunderland-Sunderland Elementary,02890005, 129, 1, 0.8, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Sutton-Sutton High School,02900510, 369, 1, 0.3,"","","","","","","","", 0.0, 0.0, 1.0, 0.0 +7.4,5,a-degr-i2,2022-23,Sutton-Sutton Middle School,02900305, 296, 1, 0.3,"","","","","", 0.0, 1.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Sutton-Sutton Early Learning,02900003, 185, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Sutton-Sutton Elementary,02900005, 304, 1, 0.3,"","", 0.0, 0.9, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Sutton-Sutton Middle School,02900305, 296, 1, 0.3,"","","","","", 0.0, 1.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Sutton-Sutton High School,02900510, 369, 1, 0.3,"","","","","","","","", 0.0, 0.0, 1.0, 0.0 -7.4,5,a-degr-i2,2022-23,Swampscott-Swampscott High,02910505, 636, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.6, 0.7 +6.8,5,a-degr-i2,2022-23,Swampscott-Clarke,02910005, 162, 1, 0.6, 0.0, 2.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swampscott-Hadley,02910010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Swampscott-Swampscott Middle,02910305, 618, 1, 0.2,"","","","", 0.0, 0.7, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Swampscott-Stanley,02910020, 161, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Swampscott-Hadley,02910010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Swampscott-Clarke,02910005, 162, 1, 0.6, 0.0, 2.6, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Joseph Case Jr High,02920305, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Joseph G Luther,02920020, 178, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -6.8,5,a-degr-i2,2022-23,Swansea-Gardner,02920015, 173, 1, 0.6, 1.1, 0.0,"","","","","","","","","","" --0.1999999999999993,1,a-degr-i2,2022-23,Swansea-Joseph Case High,02920505, 533, 22, 4.1,"","","","","","","","", 7.0, 8.6, 0.6, 0.0 +7.4,5,a-degr-i2,2022-23,Swampscott-Swampscott High,02910505, 636, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.6, 0.7 8.0,5,a-degr-i2,2022-23,Swansea-Elizabeth S Brown,02920006, 289, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Swansea-Gardner,02920015, 173, 1, 0.6, 1.1, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Joseph G Luther,02920020, 178, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Joseph Case Jr High,02920305, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-0.1999999999999993,1,a-degr-i2,2022-23,Swansea-Joseph Case High,02920505, 533, 22, 4.1,"","","","","","","","", 7.0, 8.6, 0.6, 0.0 -13.399999999999999,1,a-degr-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900," 2,872", 308, 10.7, 0.0, 1.4, 2.2, 1.9, 1.4, 1.2, 2.6, 2.6, 24.5, 18.7, 14.7, 7.7 8.0,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Jr High,07700405, 551, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 6.0,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 667, 7, 1.0,"","","","","","","","", 0.6, 0.6, 2.4, 0.6 7.6,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 524, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.8, 0.0 +8.0,5,a-degr-i2,2022-23,Taunton-Edmund Hatch Bennett,02930007, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-29.6,1,a-degr-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 69, 13, 18.8,"","","","","","","","","","", 0.0, 36.1 8.0,5,a-degr-i2,2022-23,Taunton-Taunton High,02930505," 2,751", 1, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.2 7.2,5,a-degr-i2,2022-23,Taunton-Benjamin Friedman Middle,02930315, 730, 3, 0.4,"","","","", 0.0, 0.4, 0.8,"","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-John F Parker Middle,02930305, 494, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Taunton-Edmund Hatch Bennett,02930007, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Taunton-Joseph C Chamberlain,02930008, 360, 2, 0.6, 0.0, 0.0, 2.1, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Taunton-East Taunton Elementary,02930010, 402, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" --29.6,1,a-degr-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 69, 13, 18.8,"","","","","","","","","","", 0.0, 36.1 -7.2,5,a-degr-i2,2022-23,Taunton-Elizabeth Pole,02930027, 464, 2, 0.4, 0.0, 1.7, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 646, 3, 0.5, 0.0, 0.0, 1.9, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-H H Galligan,02930057, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-Joseph H Martin,02930042, 642, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -5.4,5,a-degr-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 748, 10, 1.3,"","","","","","","","", 1.1, 2.2, 0.5, 1.6 -7.6,5,a-degr-i2,2022-23,Tewksbury-John W. Wynn Middle,02950305, 496, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" -7.6,5,a-degr-i2,2022-23,Tewksbury-John F. Ryan,02950023, 510, 1, 0.2,"","","","", 0.4, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Taunton-Elizabeth Pole,02930027, 464, 2, 0.4, 0.0, 1.7, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 646, 3, 0.5, 0.0, 0.0, 1.9, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Taunton-East Taunton Elementary,02930010, 402, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2022-23,Taunton-Joseph C Chamberlain,02930008, 360, 2, 0.6, 0.0, 0.0, 2.1, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Tewksbury-Louise Davy Trahan,02950025, 216, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Tewksbury-North Street,02950020, 283, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +5.4,5,a-degr-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 748, 10, 1.3,"","","","","","","","", 1.1, 2.2, 0.5, 1.6 8.0,5,a-degr-i2,2022-23,Tewksbury-Heath-Brook,02950010, 193, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 6.0,5,a-degr-i2,2022-23,Tewksbury-L F Dewing,02950001, 298, 3, 1.0, 1.4, 0.6,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Tewksbury-North Street,02950020, 283, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Tewksbury-John F. Ryan,02950023, 510, 1, 0.2,"","","","", 0.4, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Tewksbury-John W. Wynn Middle,02950305, 496, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Tisbury-Tisbury Elementary,02960005, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Topsfield-Proctor Elementary,02980005, 259, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.2,5,a-degr-i2,2022-23,Topsfield-Steward Elementary,02980010, 253, 1, 0.4, 0.0, 1.2, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Topsfield-Proctor Elementary,02980005, 259, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 957, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -6.8,5,a-degr-i2,2022-23,Triton-Salisbury Elementary,07730015, 330, 2, 0.6, 0.0, 0.0, 3.2, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Triton-Newbury Elementary,07730020, 295, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 4.0,4.0,a-degr-i2,2022-23,Triton-Triton Regional High School,07730505, 647, 13, 2.0,"","","","","","","","", 3.8, 2.4, 1.4, 0.6 8.0,5,a-degr-i2,2022-23,Triton-Pine Grove,07730025, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Triton-Triton Regional Middle School,07730405, 320, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Triton-Salisbury Elementary,07730015, 330, 2, 0.6, 0.0, 0.0, 3.2, 0.0, 0.0, 0.0,"","","","","","" 5.0,5.0,a-degr-i2,2022-23,Truro-Truro Central,03000005, 67, 1, 1.5, 0.0, 0.0, 7.7, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Middle,03010305, 400, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Elementary,03010020, 589, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Middle,03010305, 400, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough High School,03010505, 414, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 2.4000000000000004,2.4,a-degr-i2,2022-23,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 213, 6, 2.8,"","","","","", 3.3, 2.7, 2.5,"","","","" 2.8,2.8,a-degr-i2,2022-23,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 497, 13, 2.6, 7.6, 7.5, 3.0, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Up-Island Regional-West Tisbury Elementary,07740020, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 769, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 -5.0,5.0,a-degr-i2,2022-23,Uxbridge-Uxbridge High,03040505, 589, 9, 1.5,"","","","","","","", 0.0, 5.9, 2.6, 0.0, 0.0 -55.2,1,a-degr-i2,2022-23,Uxbridge-Gateway to College,03040515, 38, 12, 31.6,"","","","","","","","","", 50.0, 36.4, 21.1 -8.0,5,a-degr-i2,2022-23,Uxbridge-Taft Early Learning Center,03040005, 357, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Uxbridge-Uxbridge High,03040505, 589, 9, 1.5,"","","","","","","", 0.0, 5.9, 2.6, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Uxbridge-Whitin Intermediate,03040405, 495, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2022-23,Uxbridge-Taft Early Learning Center,03040005, 357, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 501, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Naquag Elementary School,07750005, 264, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.8,5,a-degr-i2,2022-23,Wachusett-Wachusett Regional High,07750505," 1,912", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 +7.2,5,a-degr-i2,2022-23,Wachusett-Houghton Elementary,07750027, 267, 1, 0.4, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Chocksett Middle School,07750315, 279, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Davis Hill Elementary,07750018, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Dawson,07750020, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Central Tree Middle,07750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Mountview Middle,07750305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Wachusett-Glenwood Elementary School,07750060, 333, 1, 0.3,"","", 0.9, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Thomas Prince,07750045, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Davis Hill Elementary,07750018, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Dawson,07750020, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Wachusett-Houghton Elementary,07750027, 267, 1, 0.4, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" -6.6,5,a-degr-i2,2022-23,Wachusett-Leroy E.Mayo,07750032, 413, 3, 0.7, 0.0, 1.0, 0.0, 1.2, 1.2,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Paxton Center,07750040, 401, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Wakefield-Woodville School,03050015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Wachusett-Leroy E.Mayo,07750032, 413, 3, 0.7, 0.0, 1.0, 0.0, 1.2, 1.2,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Naquag Elementary School,07750005, 264, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Wachusett-Wachusett Regional High,07750505," 1,912", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Wakefield-Walton,03050040, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Wakefield-Galvin Middle School,03050310," 1,065", 2, 0.2,"","","","", 0.4, 0.0, 0.0, 0.4,"","","","" -7.8,5,a-degr-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 822, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Wakefield-Greenwood,03050020, 176, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 822, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2022-23,Wakefield-Galvin Middle School,03050310," 1,065", 2, 0.2,"","","","", 0.4, 0.0, 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Wakefield-Dolbeare,03050005, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Wakefield-Woodville School,03050015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Wales-Wales Elementary,03060005, 75, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Eleanor N Johnson Middle,03070310, 417, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Walpole-Walpole High,03070505, 983, 8, 0.8,"","","","","","","","", 0.0, 0.4, 1.6, 1.2 +8.0,5,a-degr-i2,2022-23,Walpole-Bird Middle,03070305, 377, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Old Post Road,03070018, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Fisher,03070015, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Walpole-Boyden,03070010, 327, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Walpole-Elm Street School,03070005, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Bird Middle,03070305, 377, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Walpole-Walpole High,03070505, 983, 8, 0.8,"","","","","","","","", 0.0, 0.4, 1.6, 1.2 -8.0,5,a-degr-i2,2022-23,Walpole-Fisher,03070015, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Old Post Road,03070018, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Eleanor N Johnson Middle,03070310, 417, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Waltham-Northeast Elementary School,03080040, 371, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 391, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Waltham-William F. Stanley Elementary School,03080005, 274, 2, 0.7, 1.7, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-John W. McDevitt Middle School,03080415, 595, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 2.4000000000000004,2.4,a-degr-i2,2022-23,Waltham-Waltham Sr High,03080505," 1,747", 49, 2.8,"","","","","","","","", 5.0, 1.7, 1.8, 2.5 7.6,5,a-degr-i2,2022-23,Waltham-John F Kennedy Middle,03080404, 600, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" -8.0,5,a-degr-i2,2022-23,Waltham-John W. McDevitt Middle School,03080415, 595, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Waltham-Henry Whittemore Elementary School,03080065, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2022-23,Waltham-William F. Stanley Elementary School,03080005, 274, 2, 0.7, 1.7, 1.7, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 391, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Waltham-Northeast Elementary School,03080040, 371, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Ware-Ware Middle School,03090305, 248, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Ware-Stanley M Koziol Elementary School,03090020, 237, 2, 0.8, 2.7, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Ware-Ware Middle School,03090305, 248, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -1.0,1,a-degr-i2,2022-23,Ware-Ware Junior/Senior High School,03090505, 491, 22, 4.5,"","","","","","", 0.0, 0.0, 17.9, 5.4, 1.5, 1.8 -10.600000000000001,1,a-degr-i2,2022-23,Wareham-Wareham Senior High,03100505, 614, 57, 9.3,"","","","","","","", 14.4, 13.1, 6.1, 4.2, 0.0 -28.4,1,a-degr-i2,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 33, 6, 18.2,"","","","","","","","","", 12.5, 11.1, 16.7 -6.2,5,a-degr-i2,2022-23,Wareham-Wareham Elementary School,03100017, 670, 6, 0.9, 1.1, 1.9, 0.5, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Wareham-Wareham Middle,03100305, 437, 1, 0.2,"","","","", 0.6, 0.0, 0.0,"","","","","" -7.2,5,a-degr-i2,2022-23,Watertown-Cunniff,03140015, 279, 1, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Wareham-Wareham Elementary School,03100017, 670, 6, 0.9, 1.1, 1.9, 0.5, 0.0,"","","","","","","","" 6.2,5,a-degr-i2,2022-23,Watertown-Hosmer,03140020, 469, 4, 0.9, 1.7, 2.4, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Watertown-Cunniff,03140015, 279, 1, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Watertown-James Russell Lowell,03140025, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Watertown-Watertown Middle,03140305, 532, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 3.8,3.8,a-degr-i2,2022-23,Watertown-Watertown High,03140505, 729, 15, 2.1,"","","","","","","","", 2.0, 2.9, 2.4, 0.7 -7.6,5,a-degr-i2,2022-23,Wayland-Claypit Hill School,03150005, 425, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Happy Hollow School,03150015, 319, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wayland-Loker School,03150020, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Wayland Middle School,03150305, 621, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Wayland High School,03150505, 824, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Wayland-Loker School,03150020, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Wayland-Claypit Hill School,03150005, 425, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2022-23,Webster-Webster Middle School,03160315, 590, 6, 1.0,"","","","", 0.0, 0.6, 1.3, 1.9,"","","","" -7.0,1,a-degr-i2,2022-23,Webster-Bartlett High School,03160505, 359, 27, 7.5,"","","","","","","","", 16.7, 6.1, 5.3, 0.0 6.6,5,a-degr-i2,2022-23,Webster-Park Avenue Elementary,03160015, 557, 4, 0.7, 0.8, 1.5, 0.6, 0.0,"","","","","","","","" -6.0,5,a-degr-i2,2022-23,Webster-Webster Middle School,03160315, 590, 6, 1.0,"","","","", 0.0, 0.6, 1.3, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Schofield,03170045, 288, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Sprague Elementary School,03170048, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Ernest F Upham,03170050, 139, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Wellesley-Wellesley Middle,03170305, 922, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" 7.6,5,a-degr-i2,2022-23,Wellesley-Wellesley Sr High,03170505," 1,412", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Wellesley-Katharine Lee Bates,03170005, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Wellesley-Hunnewell,03170025, 172, 1, 0.6, 0.0, 0.0, 3.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-John D Hardy,03170020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Ernest F Upham,03170050, 139, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wellesley-Joseph E Fiske,03170015, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Wellesley-Wellesley Middle,03170305, 922, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-John D Hardy,03170020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Wellesley-Hunnewell,03170025, 172, 1, 0.6, 0.0, 0.0, 3.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Schofield,03170045, 288, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Sprague Elementary School,03170048, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wellfleet-Wellfleet Elementary,03180005, 85, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,West Boylston-Major Edwards Elementary,03220005, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 433, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,West Bridgewater-Howard School,03230305, 311, 2, 0.6,"","","", 0.0, 1.0, 0.9,"","","","","","" 4.2,4.2,a-degr-i2,2022-23,West Bridgewater-Rose L Macdonald,03230003, 311, 6, 1.9, 4.9, 0.0, 1.1,"","","","","","","","","" 7.6,5,a-degr-i2,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 625, 1, 0.2,"","","","","","", 0.0, 0.0, 0.9, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,West Springfield-Mittineague,03320030, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,West Springfield-Tatham,03320040, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.0,5.0,a-degr-i2,2022-23,West Springfield-West Springfield High,03320505," 1,174", 18, 1.5,"","","","","","","","", 4.6, 0.3, 0.4, 0.3 +8.0,5,a-degr-i2,2022-23,West Springfield-Tatham,03320040, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,West Springfield-West Springfield Middle,03320305, 897, 4, 0.4,"","","","","", 0.6, 0.3, 0.3,"","","","" 5.0,5.0,a-degr-i2,2022-23,West Springfield-Memorial,03320025, 198, 3, 1.5, 5.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,West Springfield-John R Fausey,03320010, 411, 7, 1.7, 3.8, 3.4, 0.0, 1.3, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,West Springfield-Philip G Coburn,03320007, 442, 2, 0.5, 1.1, 0.0, 0.0, 0.0, 1.1,"","","","","","","" -7.2,5,a-degr-i2,2022-23,West Springfield-West Springfield Middle,03320305, 897, 4, 0.4,"","","","","", 0.6, 0.3, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 259, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,West Springfield-Mittineague,03320030, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westborough-Annie E Fales,03210010, 258, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westborough-J Harding Armstrong,03210005, 303, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 259, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westborough-Mill Pond School,03210045, 865, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Westborough-Sarah W Gibbons Middle,03210305, 590, 1, 0.2,"","","","","","", 0.0, 0.3,"","","","" 7.4,5,a-degr-i2,2022-23,Westborough-Westborough High,03210505," 1,167", 4, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.5 -8.0,5,a-degr-i2,2022-23,Westborough-Mill Pond School,03210045, 865, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2022-23,Westfield-Westfield High,03250505," 1,017", 5, 0.5,"","","","","","","","", 0.0, 0.0, 0.4, 1.7 -6.6,5,a-degr-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 543, 4, 0.7,"","","","","","","","", 0.0, 2.7, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Westborough-J Harding Armstrong,03210005, 303, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 5.4,5,a-degr-i2,2022-23,Westfield-Westfield Virtual School,03250705, 79, 1, 1.3,"", 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0 -6.6,5,a-degr-i2,2022-23,Westfield-Franklin Ave,03250015, 140, 1, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westfield-Abner Gibbs,03250020, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Westfield-Highland,03250025, 305, 1, 0.3, 0.0, 0.0, 1.4, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Westfield-Munger Hill,03250033, 287, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Westfield-Paper Mill,03250036, 259, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" -5.6,5,a-degr-i2,2022-23,Westfield-Southampton Road,03250040, 242, 3, 1.2, 0.0, 1.7, 3.5, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westfield-Westfield Intermediate School,03250075, 668, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 543, 4, 0.7,"","","","","","","","", 0.0, 2.7, 0.0, 0.0 +7.0,5,a-degr-i2,2022-23,Westfield-Westfield High,03250505," 1,017", 5, 0.5,"","","","","","","","", 0.0, 0.0, 0.4, 1.7 7.8,5,a-degr-i2,2022-23,Westfield-Westfield Middle School,03250310, 691, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,Westford-Abbot Elementary,03260004, 360, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Westford-Day Elementary,03260007, 327, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Westford-Westford Academy,03260505," 1,523", 2, 0.1,"","","","","","","","", 0.3, 0.3, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Westford-Stony Brook School,03260330, 612, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Westfield-Westfield Intermediate School,03250075, 668, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Westfield-Southampton Road,03250040, 242, 3, 1.2, 0.0, 1.7, 3.5, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Westfield-Paper Mill,03250036, 259, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Westfield-Munger Hill,03250033, 287, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Westfield-Highland,03250025, 305, 1, 0.3, 0.0, 0.0, 1.4, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westfield-Abner Gibbs,03250020, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Westfield-Franklin Ave,03250015, 140, 1, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Blanchard Middle,03260310, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Westford-Rita E. Miller Elementary School,03260055, 184, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westford-John A. Crisafulli Elementary School,03260045, 335, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Stony Brook School,03260330, 612, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Westford-Day Elementary,03260007, 327, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Abbot Elementary,03260004, 360, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Nabnasset,03260015, 236, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Col John Robinson,03260025, 207, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-John A. Crisafulli Elementary School,03260045, 335, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Rita E. Miller Elementary School,03260055, 184, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Westford-Westford Academy,03260505," 1,523", 2, 0.1,"","","","","","","","", 0.3, 0.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Westhampton-Westhampton Elementary School,03270005, 80, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2022-23,Weston-Weston High,03300505, 639, 3, 0.5,"","","","","","","","", 0.0, 0.0, 1.3, 0.6 +8.0,5,a-degr-i2,2022-23,Weston-Woodland,03300015, 219, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Field Elementary School,03300012, 266, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Country,03300010, 222, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Weston Middle,03300305, 444, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Weston-Woodland,03300015, 219, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.0,5,a-degr-i2,2022-23,Weston-Weston High,03300505, 639, 3, 0.5,"","","","","","","","", 0.0, 0.0, 1.3, 0.6 -7.6,5,a-degr-i2,2022-23,Westport-Westport Elementary,03310030, 441, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Westport-Westport Middle-High School,03310515, 829, 7, 0.8,"","","","", 1.7, 0.8, 0.0, 0.0, 1.4, 0.0, 2.4, 1.5 -8.0,5,a-degr-i2,2022-23,Westwood-Downey,03350012, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Westwood-Deerfield School,03350010, 162, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Westwood-Westwood High,03350505, 902, 4, 0.4,"","","","","","","","", 0.0, 0.5, 0.9, 0.4 +7.6,5,a-degr-i2,2022-23,Westport-Westport Elementary,03310030, 441, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-E W Thurston Middle,03350305, 661, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Westwood-Westwood High,03350505, 902, 4, 0.4,"","","","","","","","", 0.0, 0.5, 0.9, 0.4 8.0,5,a-degr-i2,2022-23,Westwood-William E Sheehan,03350025, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-Martha Jones,03350017, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-Paul Hanlon,03350015, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westwood-Downey,03350012, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westwood-Deerfield School,03350010, 162, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Weymouth-Ralph Talbot,03360085, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Thomas W. Hamilton Primary School,03360105, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Wessagusset,03360110, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Weymouth-Ralph Talbot,03360085, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Weymouth-William Seach,03360080, 289, 3, 1.0, 1.7, 1.9, 0.0, 1.7, 0.0,"","","","","","","" +-2.5999999999999996,1,a-degr-i2,2022-23,Weymouth-Weymouth High School,03360505," 1,792", 95, 5.3,"","","","","","","","", 11.4, 5.5, 1.4, 1.7 +7.8,5,a-degr-i2,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020," 1,195", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Lawrence W Pingree,03360065, 216, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Weymouth-Thomas V Nash,03360060, 192, 1, 0.5, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Frederick C Murphy,03360050, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --2.5999999999999996,1,a-degr-i2,2022-23,Weymouth-Weymouth High School,03360505," 1,792", 95, 5.3,"","","","","","","","", 11.4, 5.5, 1.4, 1.7 7.2,5,a-degr-i2,2022-23,Weymouth-Academy Avenue,03360005, 279, 1, 0.4, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020," 1,195", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Weymouth-William Seach,03360080, 289, 3, 1.0, 1.7, 1.9, 0.0, 1.7, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Whately-Whately Elementary,03370005, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Indian Head,07800035, 392, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Whitman-Hanson-Whitman Middle,07800310, 504, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" -4.8,4.8,a-degr-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,081", 17, 1.6,"","","","","","","","", 0.0, 0.0, 0.0, 5.4 8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Louise A Conley,07800010, 412, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Whitman-Hanson-John H Duval,07800030, 375, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Whitman-Hanson-Whitman Middle,07800310, 504, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Indian Head,07800035, 392, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Hanson Middle School,07800315, 449, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.8,4.8,a-degr-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,081", 17, 1.6,"","","","","","","","", 0.0, 0.0, 0.0, 5.4 +7.4,5,a-degr-i2,2022-23,Whitman-Hanson-John H Duval,07800030, 375, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605," 1,277", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Williamsburg-Anne T. Dunphy School,03400020, 104, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Wilmington-Wilmington High,03420505, 656, 7, 1.1,"","","","","","","","", 2.6, 1.4, 0.6, 0.0 -7.6,5,a-degr-i2,2022-23,Wilmington-Wilmington Middle School,03420330, 631, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -7.2,5,a-degr-i2,2022-23,Wilmington-West Intermediate,03420080, 230, 1, 0.4,"","","", 0.9, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wilmington-North Intermediate,03420060, 252, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wilmington-Shawsheen Elementary,03420025, 329, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Wilmington-North Intermediate,03420060, 252, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Wilmington-Woburn Street,03420020, 368, 1, 0.3, 0.8, 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Wilmington-West Intermediate,03420080, 230, 1, 0.4,"","","", 0.9, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Wilmington-Wilmington Middle School,03420330, 631, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +5.8,5,a-degr-i2,2022-23,Wilmington-Wilmington High,03420505, 656, 7, 1.1,"","","","","","","","", 2.6, 1.4, 0.6, 0.0 +8.0,5,a-degr-i2,2022-23,Winchendon-Murdock Middle School,03430315, 269, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -4.199999999999999,1,a-degr-i2,2022-23,Winchendon-Murdock High School,03430515, 263, 16, 6.1,"","","","","","","","", 8.0, 2.6, 2.0, 12.0 -73.8,1,a-degr-i2,2022-23,Winchendon-Murdock Academy for Success,03430405, 22, 9, 40.9,"","","","","","","","","","", 25.0, 16.7 -8.0,5,a-degr-i2,2022-23,Winchendon-Murdock Middle School,03430315, 269, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Winchendon-Toy Town Elementary,03430050, 294, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Winchendon-Memorial,03430040, 205, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-McCall Middle,03440305," 1,037", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Ambrose Elementary,03440045, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Muraco Elementary,03440040, 278, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Vinson-Owen Elementary,03440025, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Lynch Elementary,03440020, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Winchester-Lincoln Elementary,03440005, 281, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.6,5,a-degr-i2,2022-23,Winchester-Winchester High School,03440505," 1,383", 16, 1.2,"","","","","","","","", 0.0, 0.0, 0.0, 4.5 -8.0,5,a-degr-i2,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 292, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Winthrop-Winthrop High School,03460505, 587, 17, 2.9,"","","","","","","","", 6.1, 3.3, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Winchester-Muraco Elementary,03440040, 278, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Winchester-Ambrose Elementary,03440045, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Winchester-McCall Middle,03440305," 1,037", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Winchester-Vinson-Owen Elementary,03440025, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Winchester-Lincoln Elementary,03440005, 281, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Winchester-Lynch Elementary,03440020, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Winthrop-Winthrop Middle School,03460305, 425, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Winthrop-Arthur T. Cummings Elementary School,03460020, 431, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Daniel L Joyce Middle School,03470410, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Woburn-John F Kennedy Middle School,03470405, 514, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +2.2,2.2,a-degr-i2,2022-23,Winthrop-Winthrop High School,03460505, 587, 17, 2.9,"","","","","","","","", 6.1, 3.3, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 292, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Mary D Altavesta,03470065, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Malcolm White,03470055, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Woburn-Woburn High,03470505," 1,173", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2022-23,Woburn-Shamrock,03470043, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Woburn-Clyde Reeves,03470040, 240, 1, 0.4, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Linscott-Rumford,03470025, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Woburn-John F Kennedy Middle School,03470405, 514, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Hurld-Wyman Elementary School,03470020, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Woburn-Goodyear Elementary School,03470005, 274, 2, 0.7, 1.5, 0.0, 1.6, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Shamrock,03470043, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.5999999999999996,2.6,a-degr-i2,2022-23,Worcester-Grafton Street,03480115, 371, 10, 2.7, 9.5, 5.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -3.0,3.0,a-degr-i2,2022-23,Worcester-Heard Street,03480136, 204, 5, 2.5, 6.5, 6.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 261, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.4,5,a-degr-i2,2022-23,Worcester-Lake View,03480145, 262, 2, 0.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --0.5999999999999996,1,a-degr-i2,2022-23,Worcester-Lincoln Street,03480160, 188, 8, 4.3, 12.2, 4.2, 3.0, 0.0, 0.0, 0.0,"","","","","","" -4.8,4.8,a-degr-i2,2022-23,Worcester-May Street,03480175, 246, 4, 1.6, 6.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -3.4000000000000004,3.4,a-degr-i2,2022-23,Worcester-Gates Lane,03480110, 400, 9, 2.3, 9.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Goddard School/Science Technical,03480100, 315, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Elm Park Community,03480095, 351, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Flagg Street,03480090, 292, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -2.8,2.8,a-degr-i2,2022-23,Worcester-Columbus Park,03480060, 313, 8, 2.6, 2.0, 10.0, 3.1, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Clark St Community,03480055, 207, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Worcester-City View,03480053, 357, 4, 1.1, 1.4, 5.4, 0.0, 1.7, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Chandler Magnet,03480052, 319, 1, 0.3, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.2,4.2,a-degr-i2,2022-23,Worcester-Chandler Elementary Community,03480050, 368, 7, 1.9, 9.7, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Burncoat Street,03480035, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.0,4.0,a-degr-i2,2022-23,Worcester-Canterbury,03480045, 199, 4, 2.0, 5.4, 7.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Worcester-Belmont Street Community,03480020, 458, 4, 0.9, 4.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-La Familia Dual Language School,03480025, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Worcester-Wawecus Road School,03480026, 114, 1, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Worcester-Woodland Academy,03480030, 424, 3, 0.7, 0.0, 4.1, 1.4, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Worcester-Francis J McGrath Elementary,03480177, 166, 2, 1.2, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Worcester-Midland Street,03480185, 170, 2, 1.2, 2.6, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Worcester-Nelson Place,03480200, 463, 5, 1.1, 4.9, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Norrback Avenue,03480202, 398, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Worcester-Quinsigamond,03480210, 590, 6, 1.0, 2.7, 2.1, 0.9, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Rice Square,03480215, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.2,5,a-degr-i2,2022-23,Worcester-Roosevelt,03480220, 414, 6, 1.4, 7.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Worcester Arts Magnet School,03480225, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Worcester-Tatnuck,03480230, 301, 3, 1.0, 2.1, 2.0, 1.9, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Woburn-Woburn High,03470505," 1,173", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2022-23,Woburn-Daniel L Joyce Middle School,03470410, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Woburn-Linscott-Rumford,03470025, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2022-23,Worcester-Thorndyke Road,03480235, 305, 3, 1.0, 1.7, 2.3, 0.0, 2.1, 0.0, 0.0,"","","","","","" 3.8,3.8,a-degr-i2,2022-23,Worcester-Union Hill School,03480240, 337, 7, 2.1, 3.4, 6.5, 0.0, 0.0, 0.0, 1.8,"","","","","","" 8.0,5,a-degr-i2,2022-23,Worcester-West Tatnuck,03480260, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -1727,13 +1697,43 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Worcester-Claremont Academy,03480350, 484, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Worcester-Burncoat Middle School,03480405, 712, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" 8.0,5,a-degr-i2,2022-23,Worcester-Forest Grove Middle,03480415, 897, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Worcester-Burncoat Street,03480035, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.0,4.0,a-degr-i2,2022-23,Worcester-Canterbury,03480045, 199, 4, 2.0, 5.4, 7.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.2,4.2,a-degr-i2,2022-23,Worcester-Chandler Elementary Community,03480050, 368, 7, 1.9, 9.7, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Chandler Magnet,03480052, 319, 1, 0.3, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2022-23,Worcester-City View,03480053, 357, 4, 1.1, 1.4, 5.4, 0.0, 1.7, 0.0, 0.0,"","","","","","" 5.8,5,a-degr-i2,2022-23,Worcester-Worcester East Middle,03480420, 740, 8, 1.1,"","","","","","", 0.3, 1.8,"","","","" 7.6,5,a-degr-i2,2022-23,Worcester-Sullivan Middle,03480423, 827, 2, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" -0.40000000000000036,1,a-degr-i2,2022-23,Worcester-Burncoat Senior High,03480503," 1,165", 49, 4.2,"","","","","","","","", 9.8, 3.4, 1.7, 1.1 +6.2,5,a-degr-i2,2022-23,Worcester-Belmont Street Community,03480020, 458, 4, 0.9, 4.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Worcester-Francis J McGrath Elementary,03480177, 166, 2, 1.2, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Worcester-Midland Street,03480185, 170, 2, 1.2, 2.6, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2022-23,Worcester-Nelson Place,03480200, 463, 5, 1.1, 4.9, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Norrback Avenue,03480202, 398, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Worcester-Quinsigamond,03480210, 590, 6, 1.0, 2.7, 2.1, 0.9, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2022-23,Worcester-Worcester Technical High,03480605," 1,460", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.3 +6.0,5,a-degr-i2,2022-23,Worcester-Tatnuck,03480230, 301, 3, 1.0, 2.1, 2.0, 1.9, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Worcester Arts Magnet School,03480225, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2022-23,Worcester-Roosevelt,03480220, 414, 6, 1.4, 7.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Worcester-Rice Square,03480215, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2022-23,Worcester-Woodland Academy,03480030, 424, 3, 0.7, 0.0, 4.1, 1.4, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2022-23,Worcester-Wawecus Road School,03480026, 114, 1, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Worcester-La Familia Dual Language School,03480025, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.2,3.2,a-degr-i2,2022-23,Worcester-South High Community,03480520," 1,655", 40, 2.4,"","","","","","","","", 3.5, 2.0, 0.9, 3.2 +4.8,4.8,a-degr-i2,2022-23,Worcester-May Street,03480175, 246, 4, 1.6, 6.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" 3.0,3.0,a-degr-i2,2022-23,Worcester-Doherty Memorial High,03480512," 1,335", 34, 2.5,"","","","","","","","", 5.3, 3.3, 0.6, 0.3 0.0,1,a-degr-i2,2022-23,Worcester-North High,03480515," 1,352", 54, 4.0,"","","","","","","","", 5.6, 4.6, 3.3, 1.8 -3.2,3.2,a-degr-i2,2022-23,Worcester-South High Community,03480520," 1,655", 40, 2.4,"","","","","","","","", 3.5, 2.0, 0.9, 3.2 -7.8,5,a-degr-i2,2022-23,Worcester-Worcester Technical High,03480605," 1,460", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.3 +8.0,5,a-degr-i2,2022-23,Worcester-Clark St Community,03480055, 207, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.8,2.8,a-degr-i2,2022-23,Worcester-Columbus Park,03480060, 313, 8, 2.6, 2.0, 10.0, 3.1, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Flagg Street,03480090, 292, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Elm Park Community,03480095, 351, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Goddard School/Science Technical,03480100, 315, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.4000000000000004,3.4,a-degr-i2,2022-23,Worcester-Gates Lane,03480110, 400, 9, 2.3, 9.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Worcester-Grafton Street,03480115, 371, 10, 2.7, 9.5, 5.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.0,3.0,a-degr-i2,2022-23,Worcester-Heard Street,03480136, 204, 5, 2.5, 6.5, 6.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 261, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2022-23,Worcester-Lake View,03480145, 262, 2, 0.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-0.5999999999999996,1,a-degr-i2,2022-23,Worcester-Lincoln Street,03480160, 188, 8, 4.3, 12.2, 4.2, 3.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Worthington-R. H. Conwell,03490010, 46, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Wrentham-Charles E Roderick,03500010, 369, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Wrentham-Delaney,03500003, 366, 2, 0.5, 0.8, 0.0, 0.9,"","","","","","","","","" diff --git a/data/dashboard/admin_data/dese/archive/june-2023/4D_1_plans_of_grads.csv b/data/admin_data/dese/4D_1_plans_of_grads.csv similarity index 85% rename from data/dashboard/admin_data/dese/archive/june-2023/4D_1_plans_of_grads.csv rename to data/admin_data/dese/4D_1_plans_of_grads.csv index d15ae76..158e78f 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/4D_1_plans_of_grads.csv +++ b/data/admin_data/dese/4D_1_plans_of_grads.csv @@ -2382,3 +2382,409 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.045333333333334,5,a-cgpr-i1,2021-22,Worcester - South High Community,03480520, 15.6, 18.6, 0.0, 28.7, 5.4, 0.6, 25.7, 2.1, 1.2, 2.1, 334 5.007999999999999,5,a-cgpr-i1,2021-22,Worcester - University Pk Campus School,03480285, 21.2, 39.4, 0.0, 18.2, 0.0, 3.0, 12.1, 3.0, 3.0, 0.0, 33 4.848,4.85,a-cgpr-i1,2021-22,Worcester - Worcester Technical High,03480605, 11.4, 36.1, 0.0, 19.3, 2.8, 1.4, 19.9, 2.3, 0.0, 6.8, 352 +5.157333333333334,5,a-cgpr-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 23.9, 55.7, 0.0, 11.4, 3.4, 0.0, 2.3, 0.0, 3.4, 0.0, 88 +4.458666666666667,4.46,a-cgpr-i1,2022-23,Abington - Abington High,00010505, 28.6, 48.9, 0.0, 3.8, 1.5, 0.8, 0.0, 1.5, 0.0, 15.0, 133 +5.327999999999999,5,a-cgpr-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 34.6, 40.4, 3.8, 9.6, 0.0, 9.6, 1.9, 0.0, 0.0, 0.0, 52 +5.061333333333334,5,a-cgpr-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 45.2, 47.2, 0.0, 1.6, 0.0, 0.2, 0.7, 0.0, 0.9, 4.3, 445 +5.290666666666667,5,a-cgpr-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 46.4, 47.1, 0.0, 3.6, 0.7, 0.0, 1.4, 0.7, 0.0, 0.0, 138 +5.130666666666667,5,a-cgpr-i1,2022-23,Agawam - Agawam High,00050505, 28.1, 31.5, 0.0, 18.7, 0.4, 0.9, 16.6, 1.3, 0.0, 2.6, 235 +4.928,4.93,a-cgpr-i1,2022-23,Amesbury - Amesbury High,00070505, 27.9, 38.5, 0.0, 12.5, 4.8, 1.0, 7.7, 1.0, 5.8, 1.0, 104 +0.0,1,a-cgpr-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515,"","","","","","","","","","", 3 +4.384,4.38,a-cgpr-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 36.6, 29.7, 0.5, 9.4, 2.5, 0.5, 3.0, 0.0, 0.5, 17.3, 202 +5.12,5,a-cgpr-i1,2022-23,Andover - Andover High,00090505, 48.3, 38.8, 0.0, 5.5, 0.5, 0.0, 2.9, 0.0, 1.4, 2.6, 420 +5.210666666666667,5,a-cgpr-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 20.9, 0.0, 60.5, 0.0, 0.0, 16.3, 2.3, 0.0, 0.0, 43 +5.002666666666666,5,a-cgpr-i1,2022-23,Arlington - Arlington High,00100505, 43.2, 41.0, 0.0, 3.3, 1.4, 1.1, 3.8, 0.0, 5.4, 0.8, 368 +5.168,5,a-cgpr-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 28.8, 43.6, 0.0, 10.4, 1.8, 0.0, 12.3, 1.8, 0.0, 1.2, 163 +5.215999999999999,5,a-cgpr-i1,2022-23,Ashland - Ashland High,00140505, 34.3, 48.3, 0.0, 9.6, 1.1, 0.6, 3.9, 0.6, 1.1, 0.6, 178 +5.104,5,a-cgpr-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 19.1, 15.6, 0.0, 7.8, 1.2, 0.0, 52.0, 2.3, 0.4, 1.6, 256 +5.114666666666667,5,a-cgpr-i1,2022-23,Athol-Royalston - Athol High,06150505, 5.5, 16.4, 0.0, 17.8, 0.0, 0.0, 56.2, 4.1, 0.0, 0.0, 73 +5.061333333333334,5,a-cgpr-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 15.6, 32.5, 0.0, 29.9, 6.5, 3.9, 6.5, 1.3, 0.0, 3.9, 77 +4.421333333333334,4.42,a-cgpr-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 2.4, 0.0, 12.2, 4.9, 4.9, 58.5, 2.4, 9.8, 4.9, 41 +5.0986666666666665,5,a-cgpr-i1,2022-23,Attleboro - Attleboro High,00160505, 25.6, 26.9, 0.0, 17.8, 4.7, 0.0, 20.6, 2.9, 1.0, 0.5, 383 +2.6666666666666665,2.67,a-cgpr-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 8.3, 0.0, 0.0, 41.7, 8.3, 41.7, 0.0, 12 +5.024,5,a-cgpr-i1,2022-23,Auburn - Auburn Senior High,00170505, 22.9, 47.9, 0.0, 10.9, 2.6, 0.0, 9.9, 1.0, 0.5, 4.2, 192 +4.976,4.98,a-cgpr-i1,2022-23,Avon - Avon Middle High School,00180510, 2.2, 48.9, 0.0, 22.2, 0.0, 0.0, 20.0, 2.2, 2.2, 2.2, 45 +4.842666666666666,4.84,a-cgpr-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 27.9, 44.2, 0.0, 10.5, 1.2, 1.2, 5.8, 5.8, 1.2, 2.3, 86 +2.1279999999999997,2.13,a-cgpr-i1,2022-23,Barnstable - Barnstable High,00200505, 13.1, 16.2, 1.2, 6.7, 0.9, 0.0, 1.8, 0.9, 0.6, 58.5, 328 +4.992,4.99,a-cgpr-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 48.9, 6.4, 0.0, 29.8, 8.5, 0.0, 0.0, 6.4, 0.0, 0.0, 47 +5.061333333333334,5,a-cgpr-i1,2022-23,Bedford - Bedford High,00230505, 38.7, 47.2, 0.0, 7.0, 0.0, 0.0, 2.0, 0.0, 4.5, 0.5, 199 +5.050666666666666,5,a-cgpr-i1,2022-23,Belchertown - Belchertown High,00240505, 32.4, 26.5, 0.0, 22.9, 3.5, 1.2, 8.2, 0.6, 1.2, 3.5, 170 +4.602666666666667,4.6,a-cgpr-i1,2022-23,Bellingham - Bellingham High School,00250505, 26.5, 41.0, 0.9, 3.4, 3.4, 0.0, 11.1, 3.4, 0.0, 10.3, 117 +0.0,1,a-cgpr-i1,2022-23,Bellingham - Keough Memorial Academy,00250510,"","","","","","","","","","", 5 +5.061333333333334,5,a-cgpr-i1,2022-23,Belmont - Belmont High,00260505, 57.6, 33.1, 0.0, 1.3, 1.0, 0.0, 1.9, 0.3, 4.1, 0.6, 314 +4.954666666666665,4.95,a-cgpr-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28.6, 50.0, 3.6, 7.1, 3.6, 0.0, 0.0, 0.0, 0.0, 7.1, 28 +4.992,4.99,a-cgpr-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 33.9, 29.4, 0.0, 9.2, 3.7, 0.0, 17.4, 1.8, 4.6, 0.0, 109 +5.066666666666666,5,a-cgpr-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 41.7, 38.3, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0, 5.0, 0.0, 60 +4.357333333333333,4.36,a-cgpr-i1,2022-23,Beverly - Beverly High,00300505, 28.1, 39.4, 0.6, 5.0, 0.0, 1.3, 7.3, 0.6, 5.0, 12.6, 317 +5.157333333333335,5,a-cgpr-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 34.7, 37.6, 0.0, 11.3, 4.7, 0.7, 7.7, 1.1, 1.5, 0.7, 274 +5.082666666666668,5,a-cgpr-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 40.5, 32.7, 0.0, 4.4, 1.4, 5.4, 10.9, 2.0, 2.7, 0.0, 294 +5.002666666666667,5,a-cgpr-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 34.7, 22.1, 1.1, 8.4, 5.3, 1.1, 21.1, 1.1, 5.3, 0.0, 95 +4.949333333333334,4.95,a-cgpr-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 26.2, 27.2, 1.0, 15.5, 1.5, 0.0, 21.4, 2.4, 0.0, 4.9, 206 +4.688000000000001,4.69,a-cgpr-i1,2022-23,Boston - Another Course To College,00350541, 15.5, 29.3, 1.7, 29.3, 5.2, 0.0, 6.9, 1.7, 3.4, 6.9, 58 +2.538666666666667,2.54,a-cgpr-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 7.6, 1.9, 21.9, 7.6, 0.0, 8.6, 4.8, 1.0, 46.7, 105 +4.730666666666667,4.73,a-cgpr-i1,2022-23,Boston - Boston Arts Academy,00350546, 29.6, 35.7, 0.0, 15.3, 2.0, 0.0, 6.1, 0.0, 4.1, 7.1, 98 +1.4453333333333334,1.45,a-cgpr-i1,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 2.4, 0.0, 5.9, 4.7, 1.2, 12.9, 0.0, 2.4, 70.6, 85 +4.096,4.1,a-cgpr-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 20.5, 19.6, 0.9, 25.9, 3.6, 0.0, 6.3, 1.8, 3.6, 17.9, 112 +4.1226666666666665,4.12,a-cgpr-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 18.7, 13.3, 4.0, 17.3, 2.7, 0.0, 21.3, 2.7, 1.3, 18.7, 75 +5.034666666666667,5,a-cgpr-i1,2022-23,Boston - Boston Latin Academy,00350545, 48.7, 38.0, 0.0, 3.7, 1.3, 1.0, 1.7, 0.7, 0.7, 4.3, 300 +5.136000000000001,5,a-cgpr-i1,2022-23,Boston - Boston Latin School,00350560, 58.3, 34.1, 0.2, 0.7, 2.0, 0.0, 1.0, 0.2, 1.0, 2.4, 410 +4.191999999999999,4.19,a-cgpr-i1,2022-23,Boston - Brighton High School,00350505, 6.5, 18.7, 1.9, 29.0, 1.9, 1.9, 18.7, 0.9, 5.6, 15.0, 107 +4.101333333333334,4.1,a-cgpr-i1,2022-23,Boston - Burke High School,00350525, 6.4, 37.2, 0.0, 12.8, 3.8, 2.6, 14.1, 6.4, 3.8, 12.8, 78 +3.6533333333333333,3.65,a-cgpr-i1,2022-23,Boston - Charlestown High School,00350515, 10.2, 19.7, 0.0, 16.8, 5.8, 0.7, 15.3, 2.2, 5.1, 24.1, 137 +2.970666666666667,2.97,a-cgpr-i1,2022-23,Boston - Community Academy,00350518, 5.6, 11.1, 0.0, 0.0, 5.6, 5.6, 27.8, 0.0, 5.6, 38.9, 18 +3.7920000000000003,3.79,a-cgpr-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 4.4, 20.0, 2.2, 31.1, 6.7, 0.0, 6.7, 0.0, 2.2, 26.7, 45 +4.453333333333333,4.45,a-cgpr-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 8.2, 20.5, 1.4, 24.7, 6.8, 2.7, 19.2, 0.0, 0.0, 16.4, 73 +3.9519999999999995,3.95,a-cgpr-i1,2022-23,Boston - East Boston High School,00350530, 13.5, 14.8, 1.7, 12.2, 6.6, 1.3, 24.0, 0.9, 5.2, 19.7, 229 +4.698666666666666,4.7,a-cgpr-i1,2022-23,Boston - English High School,00350535, 9.5, 24.6, 1.6, 38.9, 2.4, 0.8, 10.3, 1.6, 2.4, 7.9, 126 +3.7813333333333334,3.78,a-cgpr-i1,2022-23,Boston - Excel High School,00350522, 9.3, 18.6, 2.3, 15.1, 5.8, 3.5, 16.3, 4.7, 4.7, 19.8, 86 +4.426666666666667,4.43,a-cgpr-i1,2022-23,Boston - Fenway High School,00350540, 31.3, 24.1, 0.0, 9.6, 8.4, 0.0, 9.6, 0.0, 0.0, 16.9, 83 +1.7226666666666668,1.72,a-cgpr-i1,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 8.8, 0.0, 11.8, 8.8, 0.0, 2.9, 2.9, 0.0, 64.7, 34 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 16.9, 27.7, 4.6, 24.6, 9.2, 0.0, 6.2, 1.5, 0.0, 9.2, 65 +0.0,1,a-cgpr-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750,"","","","","","","","","","", 2 +3.936,3.94,a-cgpr-i1,2022-23,Boston - Lyon High School,00350655, 13.0, 30.4, 0.0, 17.4, 4.3, 0.0, 8.7, 0.0, 0.0, 26.1, 23 +4.1706666666666665,4.17,a-cgpr-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 6.6, 9.8, 1.1, 19.7, 2.2, 4.4, 34.4, 2.7, 4.4, 14.8, 183 +4.181333333333334,4.18,a-cgpr-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 12.3, 41.5, 1.5, 15.4, 1.5, 0.0, 6.2, 3.1, 1.5, 16.9, 65 +2.464,2.46,a-cgpr-i1,2022-23,Boston - McKinley Schools,00350363, 0.0, 7.7, 0.0, 15.4, 0.0, 0.0, 23.1, 0.0, 0.0, 53.8, 13 +5.114666666666667,5,a-cgpr-i1,2022-23,Boston - New Mission High School,00350542, 37.1, 25.8, 0.0, 15.5, 10.3, 0.0, 7.2, 0.0, 1.0, 3.1, 97 +5.109333333333334,5,a-cgpr-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 43.4, 33.0, 0.3, 9.7, 6.9, 0.0, 2.5, 1.3, 0.9, 1.9, 318 +4.997333333333334,5.0,a-cgpr-i1,2022-23,Boston - Quincy Upper School,00350565, 22.6, 35.5, 6.5, 12.9, 9.7, 6.5, 0.0, 0.0, 3.2, 3.2, 31 +4.117333333333334,4.12,a-cgpr-i1,2022-23,Boston - Snowden International High School,00350690, 18.5, 30.4, 1.1, 12.0, 6.5, 0.0, 8.7, 0.0, 3.3, 19.6, 92 +4.634666666666667,4.63,a-cgpr-i1,2022-23,Boston - TechBoston Academy,00350657, 16.4, 18.8, 1.6, 25.0, 6.3, 4.7, 14.1, 1.6, 3.1, 8.6, 128 +4.906666666666666,4.91,a-cgpr-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 36.8, 44.7, 0.0, 1.3, 0.0, 3.9, 5.3, 0.0, 7.9, 0.0, 76 +5.008,5,a-cgpr-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 4.1, 8.2, 0.0, 36.7, 10.2, 16.3, 18.4, 0.0, 6.1, 0.0, 49 +4.586666666666666,4.59,a-cgpr-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 33.3, 24.6, 1.8, 10.5, 15.8, 0.0, 0.0, 0.0, 1.8, 12.3, 57 +5.093333333333334,5,a-cgpr-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.2, 53.6, 4.3, 13.0, 0.0, 0.0, 1.4, 0.0, 0.0, 4.3, 69 +4.421333333333334,4.42,a-cgpr-i1,2022-23,Bourne - Bourne High School,00360505, 22.7, 38.6, 0.0, 11.4, 0.0, 0.0, 10.2, 3.4, 0.0, 13.6, 88 +5.28,5,a-cgpr-i1,2022-23,Braintree - Braintree High,00400505, 39.1, 37.3, 0.0, 6.8, 5.5, 0.0, 10.3, 0.5, 0.0, 0.5, 399 +4.618666666666666,4.62,a-cgpr-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 34.6, 34.9, 2.2, 7.3, 1.0, 0.6, 6.0, 3.8, 0.0, 9.5, 315 +0.0,1,a-cgpr-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415,"","","","","","","","","","", 1 +5.12,5,a-cgpr-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 18.6, 30.4, 0.0, 17.6, 1.0, 0.0, 28.4, 2.0, 2.0, 0.0, 102 +4.816,4.82,a-cgpr-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 11.9, 20.3, 0.6, 8.7, 6.4, 9.6, 32.8, 2.9, 0.3, 6.4, 311 +4.266666666666667,4.27,a-cgpr-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 8.0, 0.0, 28.0, 20.0, 0.0, 24.0, 8.0, 0.0, 12.0, 25 +4.656,4.66,a-cgpr-i1,2022-23,Brockton - Brockton High,00440505, 14.7, 25.5, 0.3, 27.1, 7.9, 0.1, 11.7, 2.9, 1.6, 8.2, 760 +4.367999999999999,4.37,a-cgpr-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 36.4, 0.0, 18.2, 9.1, 0.0, 18.2, 0.0, 9.1, 9.1, 11 +4.250666666666667,4.25,a-cgpr-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 1.3, 0.0, 30.7, 21.6, 0.0, 26.1, 5.2, 0.0, 15.0, 153 +0.0,1,a-cgpr-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400,"","","","","","","","","","", 1 +4.901333333333333,4.9,a-cgpr-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 30.6, 43.9, 0.0, 11.2, 0.0, 3.1, 3.1, 0.0, 0.0, 8.2, 98 +5.12,5,a-cgpr-i1,2022-23,Brookline - Brookline High,00460505, 51.7, 33.3, 0.6, 6.9, 0.2, 0.2, 3.1, 0.0, 3.6, 0.4, 478 +4.992000000000001,4.99,a-cgpr-i1,2022-23,Burlington - Burlington High,00480505, 34.1, 44.7, 0.0, 12.0, 2.8, 0.0, 0.0, 0.5, 6.0, 0.0, 217 +5.077333333333333,5,a-cgpr-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 47.3, 29.7, 0.0, 9.5, 2.6, 1.1, 5.0, 0.2, 2.2, 2.4, 461 +5.258666666666667,5,a-cgpr-i1,2022-23,Canton - Canton High,00500505, 41.0, 48.8, 1.0, 0.0, 0.5, 0.0, 7.3, 1.0, 0.0, 0.5, 205 +2.672,2.67,a-cgpr-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 7.7, 10.3, 0.0, 7.1, 1.9, 0.0, 23.1, 1.9, 4.5, 43.6, 156 +5.029333333333333,5,a-cgpr-i1,2022-23,Carver - Carver Middle/High School,00520405, 25.0, 28.4, 1.1, 11.4, 9.1, 0.0, 19.3, 3.4, 0.0, 2.3, 88 +5.290666666666667,5,a-cgpr-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 27.3, 37.3, 0.9, 15.5, 6.4, 0.0, 11.8, 0.9, 0.0, 0.0, 110 +4.501333333333333,4.5,a-cgpr-i1,2022-23,Chelmsford - Chelmsford High,00560505, 45.6, 30.1, 0.6, 2.6, 0.3, 0.0, 5.2, 1.3, 0.3, 13.9, 309 +5.2,5,a-cgpr-i1,2022-23,Chelsea - Chelsea High,00570505, 14.0, 16.6, 0.0, 30.3, 5.2, 3.0, 28.4, 0.7, 0.7, 1.1, 271 +5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 3.0, 3.0, 45.5, 9.1, 3.0, 36.4, 0.0, 0.0, 0.0, 33 +5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 13.3, 0.0, 13.3, 0.0, 6.7, 66.7, 0.0, 0.0, 0.0, 15 +3.6693333333333333,3.67,a-cgpr-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 43.8, 0.0, 0.0, 31.3, 16 +3.76,3.76,a-cgpr-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 11.5, 19.8, 0.0, 24.5, 2.8, 1.6, 10.3, 2.0, 4.7, 22.9, 253 +4.490666666666666,4.49,a-cgpr-i1,2022-23,Chicopee - Chicopee High,00610505, 20.5, 14.6, 0.0, 32.4, 1.6, 0.0, 15.1, 2.7, 0.0, 13.0, 185 +5.3279999999999985,5,a-cgpr-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 17.1, 25.7, 0.0, 31.4, 0.0, 8.6, 17.1, 0.0, 0.0, 0.0, 35 +5.290666666666666,5,a-cgpr-i1,2022-23,Clinton - Clinton Senior High,00640505, 31.3, 27.7, 2.7, 9.8, 1.8, 0.0, 25.9, 0.0, 0.0, 0.9, 112 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 25.9, 44.4, 0.0, 11.1, 7.4, 0.0, 3.7, 3.7, 0.0, 3.7, 27 +5.008,5,a-cgpr-i1,2022-23,Cohasset - Cohasset High School,00650505, 57.0, 36.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9, 0.9, 4.4, 114 +4.5440000000000005,4.54,a-cgpr-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 22.2, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7, 11.1, 27 +5.136000000000001,5,a-cgpr-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 25.9, 51.9, 0.0, 7.4, 3.7, 0.0, 7.4, 0.0, 3.7, 0.0, 27 +5.205333333333334,5,a-cgpr-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 61.3, 32.1, 0.0, 2.4, 0.3, 0.0, 1.5, 0.0, 0.6, 1.8, 336 +5.248000000000001,5,a-cgpr-i1,2022-23,Danvers - Danvers High,00710505, 40.0, 34.2, 0.0, 7.4, 0.0, 7.9, 8.9, 0.5, 1.1, 0.0, 190 +4.842666666666667,4.84,a-cgpr-i1,2022-23,Dartmouth - Dartmouth High,00720505, 22.8, 40.9, 0.4, 17.7, 3.0, 0.0, 6.0, 2.6, 3.9, 2.6, 232 +4.368,4.37,a-cgpr-i1,2022-23,Dedham - Dedham High,00730505, 22.7, 47.1, 0.0, 8.7, 1.7, 0.0, 1.7, 1.2, 0.0, 16.9, 172 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 25.7, 28.4, 0.0, 18.9, 2.0, 0.7, 16.9, 3.4, 0.7, 3.4, 148 +5.269333333333334,5,a-cgpr-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 20.3, 38.6, 0.7, 14.4, 2.6, 0.0, 22.2, 1.3, 0.0, 0.0, 153 +5.077333333333333,5,a-cgpr-i1,2022-23,Douglas - Douglas High School,00770505, 25.6, 29.3, 0.0, 9.8, 6.1, 0.0, 24.4, 1.2, 0.0, 3.7, 82 +5.301333333333334,5,a-cgpr-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 62.4, 32.9, 0.0, 0.7, 0.7, 0.0, 2.7, 0.0, 0.7, 0.0, 149 +4.912000000000001,4.91,a-cgpr-i1,2022-23,Dracut - Dracut Senior High,00790505, 23.4, 38.8, 1.1, 17.6, 5.3, 0.0, 5.9, 1.6, 4.8, 1.6, 188 +4.922666666666666,4.92,a-cgpr-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 35.8, 29.2, 0.0, 11.3, 4.2, 0.0, 11.8, 2.4, 0.9, 4.2, 212 +5.328000000000001,5,a-cgpr-i1,2022-23,Duxbury - Duxbury High,00820505, 56.6, 36.7, 0.0, 0.9, 1.3, 0.0, 4.4, 0.0, 0.0, 0.0, 226 +5.093333333333334,5,a-cgpr-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 29.7, 40.5, 0.0, 5.7, 8.2, 0.0, 11.4, 0.6, 3.2, 0.6, 158 +4.922666666666665,4.92,a-cgpr-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 28.4, 26.5, 1.4, 20.9, 3.3, 0.0, 11.8, 2.4, 5.2, 0.0, 211 +4.986666666666666,4.99,a-cgpr-i1,2022-23,Easthampton - Easthampton High,00860505, 4.3, 50.5, 0.0, 12.9, 0.0, 0.0, 25.8, 1.1, 4.3, 1.1, 93 +4.8,4.8,a-cgpr-i1,2022-23,Easton - Oliver Ames High,00880505, 39.3, 43.7, 0.0, 3.3, 3.7, 0.0, 0.0, 1.5, 7.8, 0.7, 270 +5.072,5,a-cgpr-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 21.7, 34.9, 1.2, 26.5, 4.8, 3.6, 2.4, 0.0, 2.4, 2.4, 83 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 22.6, 38.4, 0.0, 8.7, 0.0, 0.0, 22.9, 0.8, 6.1, 0.5, 393 +0.0,1,a-cgpr-i1,2022-23,Everett - Devens School,00930030,"","","","","","","","","","", 2 +3.9573333333333336,3.96,a-cgpr-i1,2022-23,Everett - Everett High,00930505, 14.9, 27.5, 0.0, 9.6, 0.0, 7.8, 14.4, 0.0, 0.0, 25.7, 436 +5.168,5,a-cgpr-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 37.9, 19.9, 1.2, 16.8, 9.9, 1.9, 9.3, 2.5, 0.0, 0.6, 161 +5.034666666666667,5,a-cgpr-i1,2022-23,Fairhaven - Fairhaven High,00940505, 20.9, 46.6, 1.2, 14.7, 0.6, 0.0, 10.4, 0.6, 4.9, 0.0, 163 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Fall River - B M C Durfee High,00950505, 9.3, 16.1, 2.3, 31.3, 2.3, 0.6, 30.6, 2.5, 1.2, 3.7, 483 +4.32,4.32,a-cgpr-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 35.1, 5.4, 5.4, 35.1, 0.0, 2.7, 16.2, 37 +0.0,1,a-cgpr-i1,2022-23,Fall River - Stone PK-12 School,00950340,"","","","","","","","","","", 5 +5.141333333333334,5,a-cgpr-i1,2022-23,Falmouth - Falmouth High,00960505, 31.1, 42.6, 0.0, 7.9, 3.2, 0.0, 11.6, 2.1, 1.6, 0.0, 190 +5.189333333333334,5,a-cgpr-i1,2022-23,Fitchburg - Fitchburg High,00970505, 8.8, 39.1, 0.4, 29.1, 1.9, 0.0, 18.0, 1.5, 0.0, 1.1, 261 +5.247999999999999,5,a-cgpr-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 8.1, 0.0, 20.7, 1.5, 0.0, 68.1, 0.0, 0.7, 0.7, 135 +5.024,5,a-cgpr-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 32.4, 32.4, 0.0, 23.5, 5.9, 0.0, 0.0, 0.0, 0.0, 5.9, 34 +5.061333333333334,5,a-cgpr-i1,2022-23,Foxborough - Foxborough High,00990505, 41.8, 43.5, 0.0, 4.5, 1.7, 0.0, 3.4, 0.6, 1.7, 2.8, 177 +5.093333333333334,5,a-cgpr-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 46.5, 38.4, 0.0, 4.7, 4.7, 0.0, 1.2, 1.2, 0.0, 3.5, 86 +5.237333333333334,5,a-cgpr-i1,2022-23,Framingham - Framingham High School,01000515, 20.4, 37.2, 0.2, 11.6, 4.8, 0.0, 24.0, 1.1, 0.6, 0.2, 545 +5.242666666666666,5,a-cgpr-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 50.0, 37.1, 0.0, 1.6, 4.8, 0.0, 4.8, 0.0, 1.6, 0.0, 62 +5.087999999999999,5,a-cgpr-i1,2022-23,Franklin - Franklin High,01010505, 42.0, 46.1, 0.0, 3.8, 0.7, 0.7, 2.1, 0.5, 3.1, 1.0, 421 +4.725333333333333,4.73,a-cgpr-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 4.8, 4.8, 1.6, 12.1, 0.0, 0.0, 65.3, 5.6, 5.6, 0.0, 124 +5.333333333333332,5,a-cgpr-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 27.2, 38.6, 0.0, 16.3, 3.3, 1.6, 13.0, 0.0, 0.0, 0.0, 184 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Frontier - Frontier Regional,06700505, 31.8, 28.4, 1.1, 18.2, 2.3, 0.0, 11.4, 3.4, 1.1, 2.3, 88 +5.333333333333333,5,a-cgpr-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 3.6, 23.6, 0.0, 25.5, 0.0, 0.0, 47.3, 0.0, 0.0, 0.0, 55 +4.485333333333334,4.49,a-cgpr-i1,2022-23,Gardner - Gardner High,01030505, 7.9, 32.5, 0.0, 27.0, 4.0, 0.0, 12.7, 2.4, 4.8, 8.7, 126 +5.082666666666666,5,a-cgpr-i1,2022-23,Gateway - Gateway Regional High,06720505, 22.0, 22.0, 0.0, 17.1, 4.9, 0.0, 29.3, 4.9, 0.0, 0.0, 41 +4.714666666666667,4.71,a-cgpr-i1,2022-23,Georgetown - Georgetown High School,01050505, 28.2, 42.3, 0.0, 6.4, 0.0, 0.0, 11.5, 0.0, 2.6, 9.0, 78 +5.1626666666666665,5,a-cgpr-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 32.3, 9.7, 0.0, 25.8, 0.0, 0.0, 29.0, 3.2, 0.0, 0.0, 31 +5.210666666666666,5,a-cgpr-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 9.3, 30.2, 0.0, 32.6, 0.0, 0.0, 25.6, 2.3, 0.0, 0.0, 43 +4.768000000000001,4.77,a-cgpr-i1,2022-23,Gloucester - Gloucester High,01070505, 29.8, 21.0, 0.0, 7.7, 11.0, 0.0, 19.9, 1.7, 1.7, 7.2, 181 +5.216,5,a-cgpr-i1,2022-23,Grafton - Grafton High School,01100505, 33.8, 42.1, 0.0, 7.0, 0.9, 0.0, 14.0, 0.4, 0.4, 1.3, 228 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 35.7, 12.5, 0.0, 19.6, 5.4, 3.6, 16.1, 0.0, 0.0, 7.1, 56 +4.0,4.0,a-cgpr-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 13.6, 18.2, 0.0, 16.7, 4.5, 0.0, 22.0, 1.5, 6.8, 16.7, 132 +4.672,4.67,a-cgpr-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 6.0, 23.2, 0.3, 15.2, 1.9, 14.0, 27.0, 4.1, 0.0, 8.3, 315 +5.1786666666666665,5,a-cgpr-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 12.2, 16.2, 0.0, 20.4, 1.7, 19.7, 26.9, 1.5, 0.2, 1.2, 402 +4.522666666666667,4.52,a-cgpr-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 7.2, 20.6, 0.4, 22.1, 4.0, 0.0, 30.5, 3.0, 11.8, 0.4, 525 +5.258666666666667,5,a-cgpr-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 4.9, 29.9, 0.0, 20.5, 2.5, 0.0, 40.8, 1.3, 0.0, 0.0, 448 +5.178666666666667,5,a-cgpr-i1,2022-23,Greenfield - Greenfield High,01140505, 19.1, 8.8, 1.5, 41.2, 0.0, 0.0, 26.5, 1.5, 1.5, 0.0, 68 +5.082666666666667,5,a-cgpr-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 38.1, 45.2, 0.0, 5.4, 3.0, 0.0, 3.6, 1.2, 1.2, 2.4, 168 +5.184,5,a-cgpr-i1,2022-23,Hadley - Hopkins Academy,01170505, 43.2, 32.4, 0.0, 13.5, 5.4, 0.0, 2.7, 0.0, 2.7, 0.0, 37 +5.200000000000001,5,a-cgpr-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 55.1, 31.4, 0.0, 5.9, 1.7, 0.0, 3.4, 0.0, 0.0, 2.5, 118 +5.253333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 54.7, 31.3, 0.0, 10.9, 0.0, 0.0, 1.6, 1.6, 0.0, 0.0, 64 +5.333333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 68.0, 8.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25 +5.077333333333335,5,a-cgpr-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 36.7, 26.7, 0.5, 18.1, 1.4, 1.4, 10.4, 0.9, 2.3, 1.8, 221 +4.896,4.9,a-cgpr-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 33.7, 21.4, 0.0, 26.5, 2.0, 0.0, 8.2, 3.1, 4.1, 1.0, 98 +5.013333333333333,5,a-cgpr-i1,2022-23,Hanover - Hanover High,01220505, 44.3, 39.5, 0.6, 3.0, 1.8, 0.0, 4.8, 2.4, 3.0, 0.6, 167 +4.981333333333334,4.98,a-cgpr-i1,2022-23,Harvard - Bromfield,01250505, 44.7, 48.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.6, 76 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Hatfield - Smith Academy,01270505, 29.2, 20.8, 0.0, 33.3, 0.0, 0.0, 4.2, 0.0, 0.0, 12.5, 24 +5.333333333333333,5,a-cgpr-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 30.0, 20.0, 0.0, 50.0, 0.0, 0.0, 0.0, 10 +5.109333333333334,5,a-cgpr-i1,2022-23,Haverhill - Haverhill High,01280505, 13.3, 17.5, 0.0, 35.1, 8.9, 0.0, 21.0, 2.2, 1.7, 0.2, 405 +5.04,5,a-cgpr-i1,2022-23,Hingham - Hingham High,01310505, 51.1, 39.4, 0.6, 0.0, 0.9, 0.9, 1.6, 0.0, 0.9, 4.4, 317 +5.1946666666666665,5,a-cgpr-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 14.1, 42.3, 1.3, 5.1, 12.8, 0.0, 21.8, 1.3, 1.3, 0.0, 78 +5.221333333333332,5,a-cgpr-i1,2022-23,Holliston - Holliston High,01360505, 47.9, 42.3, 0.0, 1.0, 2.6, 0.0, 4.1, 0.0, 0.0, 2.1, 194 +4.928,4.93,a-cgpr-i1,2022-23,Holyoke - Holyoke High,01370505, 10.1, 14.8, 0.9, 31.1, 7.2, 0.6, 27.7, 2.5, 0.0, 5.0, 318 +4.458666666666667,4.46,a-cgpr-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 22.4, 34.7, 2.0, 6.1, 4.1, 0.0, 14.3, 2.0, 2.0, 12.2, 49 +4.218666666666667,4.22,a-cgpr-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 45.2, 27.4, 0.0, 6.5, 0.0, 0.0, 0.0, 4.8, 16.1, 0.0, 62 +4.986666666666666,4.99,a-cgpr-i1,2022-23,Hopkinton - Hopkinton High,01390505, 45.2, 46.1, 0.0, 0.6, 0.6, 0.0, 1.0, 1.0, 4.5, 1.0, 310 +5.269333333333332,5,a-cgpr-i1,2022-23,Hudson - Hudson High,01410505, 35.3, 28.8, 0.0, 11.1, 0.7, 0.0, 22.9, 0.7, 0.7, 0.0, 153 +5.248,5,a-cgpr-i1,2022-23,Hull - Hull High,01420505, 26.7, 45.0, 0.0, 8.3, 10.0, 1.7, 6.7, 0.0, 0.0, 1.7, 60 +5.008,5,a-cgpr-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 33.7, 36.1, 0.0, 10.8, 0.0, 0.0, 13.3, 1.2, 4.8, 0.0, 83 +5.072,5,a-cgpr-i1,2022-23,Ipswich - Ipswich High,01440505, 36.7, 44.2, 0.0, 10.8, 1.7, 0.0, 1.7, 1.7, 0.0, 3.3, 120 +5.237333333333334,5,a-cgpr-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 34.6, 44.9, 0.0, 4.7, 14.0, 0.0, 0.0, 0.0, 0.9, 0.9, 107 +4.794666666666666,4.79,a-cgpr-i1,2022-23,King Philip - King Philip Regional High,06900505, 39.6, 44.9, 0.0, 2.3, 0.8, 0.0, 2.3, 0.8, 0.8, 8.7, 265 +2.6453333333333333,2.65,a-cgpr-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.9, 7.5, 0.0, 15.0, 10.3, 0.0, 15.9, 0.9, 2.8, 46.7, 107 +4.469333333333334,4.47,a-cgpr-i1,2022-23,Lawrence - Lawrence High School,01490515, 9.3, 21.1, 0.2, 26.3, 19.2, 0.2, 7.5, 1.4, 4.4, 10.5, 589 +0.0,1,a-cgpr-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 11 +0.0,1,a-cgpr-i1,2022-23,Lawrence - School for Exceptional Studies,01490537,"","","","","","","","","","", 2 +5.237333333333333,5,a-cgpr-i1,2022-23,Lee - Lee Middle/High School,01500505, 13.8, 34.5, 1.7, 13.8, 10.3, 0.0, 24.1, 0.0, 1.7, 0.0, 58 +5.168,5,a-cgpr-i1,2022-23,Leicester - Leicester High,01510505, 32.0, 23.7, 0.0, 15.5, 1.0, 0.0, 24.7, 3.1, 0.0, 0.0, 97 +4.656000000000001,4.66,a-cgpr-i1,2022-23,Lenox - Lenox Memorial High,01520505, 71.4, 0.0, 0.0, 15.9, 0.0, 0.0, 0.0, 0.0, 0.0, 12.7, 63 +4.848,4.85,a-cgpr-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 8.5, 25.4, 0.0, 16.2, 0.0, 8.5, 32.3, 5.4, 3.8, 0.0, 130 +3.2,3.2,a-cgpr-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 10.0, 10.0, 0.0, 10.0, 30.0, 0.0, 40.0, 0.0, 10 +4.736,4.74,a-cgpr-i1,2022-23,Leominster - Leominster High School,01530505, 14.2, 44.3, 0.0, 15.2, 1.0, 0.3, 13.8, 2.4, 8.7, 0.0, 289 +5.162666666666667,5,a-cgpr-i1,2022-23,Lexington - Lexington High,01550505, 58.0, 36.0, 0.0, 1.7, 0.2, 0.0, 0.9, 0.5, 1.6, 1.0, 572 +5.274666666666667,5,a-cgpr-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 58.4, 34.9, 0.0, 2.8, 0.8, 0.3, 1.7, 0.3, 0.8, 0.0, 358 +5.338666666666668,5,a-cgpr-i1,2022-23,Littleton - Littleton High School,01580505, 44.8, 46.7, 0.0, 2.9, 0.0, 0.0, 5.7, 0.0, 0.0, 0.0, 105 +4.650666666666668,4.65,a-cgpr-i1,2022-23,Longmeadow - Longmeadow High,01590505, 51.2, 25.1, 0.0, 9.0, 1.4, 0.0, 0.5, 1.4, 2.8, 8.5, 211 +0.0,1,a-cgpr-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320,"","","","","","","","","","", 4 +5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - Lowell High,01600505, 13.3, 28.7, 0.2, 27.7, 7.5, 3.8, 14.7, 2.1, 1.0, 1.0, 585 +5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.9, 2.0, 0.0, 2.0, 49 +2.9226666666666667,2.92,a-cgpr-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 16.1, 0.0, 0.0, 38.7, 0.0, 3.2, 41.9, 31 +4.778666666666667,4.78,a-cgpr-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 30.9, 25.7, 0.0, 20.9, 4.2, 0.0, 7.9, 5.8, 4.7, 0.0, 191 +5.168,5,a-cgpr-i1,2022-23,Lunenburg - Lunenburg High,01620505, 20.6, 53.6, 0.0, 10.3, 0.0, 0.0, 12.4, 1.0, 0.0, 2.1, 97 +5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Classical High,01630505, 13.0, 24.6, 0.2, 24.9, 9.2, 0.2, 24.4, 1.0, 1.4, 1.0, 414 +5.056,5,a-cgpr-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 5.3, 5.3, 0.0, 36.8, 0.0, 0.0, 47.4, 0.0, 0.0, 5.3, 19 +4.368,4.37,a-cgpr-i1,2022-23,Lynn - Lynn English High,01630510, 16.4, 20.8, 0.8, 21.9, 1.6, 0.3, 20.1, 0.0, 6.8, 11.5, 384 +5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 10.0, 15.1, 0.0, 23.5, 4.4, 7.6, 35.9, 2.8, 0.4, 0.4, 251 +5.253333333333333,5,a-cgpr-i1,2022-23,Lynnfield - Lynnfield High,01640505, 48.5, 44.8, 0.0, 1.5, 1.5, 0.0, 2.2, 0.0, 0.7, 0.7, 134 +5.333333333333333,5,a-cgpr-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50 +4.794666666666667,4.79,a-cgpr-i1,2022-23,Malden - Malden High,01650505, 18.5, 34.4, 0.5, 17.0, 3.5, 1.0, 15.0, 0.5, 4.7, 5.0, 401 +5.029333333333333,5,a-cgpr-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 46.3, 40.7, 0.8, 0.8, 0.8, 0.0, 4.9, 0.8, 0.8, 4.1, 123 +5.2266666666666675,5,a-cgpr-i1,2022-23,Mansfield - Mansfield High,01670505, 36.2, 44.5, 0.0, 5.2, 4.5, 1.4, 6.2, 0.3, 0.3, 1.4, 290 +5.135999999999999,5,a-cgpr-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.9, 0.0, 0.0, 33.3, 31.5, 0.0, 29.6, 1.9, 1.9, 0.0, 54 +4.8693333333333335,4.87,a-cgpr-i1,2022-23,Marblehead - Marblehead High,01680505, 44.5, 39.5, 0.0, 3.2, 1.8, 0.0, 2.3, 0.5, 0.5, 7.7, 220 +4.810666666666666,4.81,a-cgpr-i1,2022-23,Marlborough - Marlborough High,01700505, 16.7, 29.7, 2.7, 16.7, 0.0, 0.8, 23.6, 1.9, 0.4, 7.6, 263 +4.597333333333333,4.6,a-cgpr-i1,2022-23,Marshfield - Marshfield High,01710505, 45.8, 30.3, 1.7, 1.3, 0.7, 2.4, 4.0, 2.4, 1.7, 9.8, 297 +4.981333333333334,4.98,a-cgpr-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 33.0, 33.0, 0.0, 5.0, 2.8, 0.0, 19.6, 1.1, 2.8, 2.8, 179 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 55.6, 11.1, 0.0, 0.0, 0.0, 0.0, 22.2, 0.0, 11.1, 0.0, 9 +5.157333333333334,5,a-cgpr-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 54.9, 33.1, 0.4, 5.3, 1.5, 0.0, 1.5, 0.8, 0.8, 1.9, 266 +4.997333333333333,5.0,a-cgpr-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 25.7, 41.3, 0.0, 13.8, 0.0, 2.8, 10.1, 3.7, 2.8, 0.0, 109 +5.157333333333335,5,a-cgpr-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 45.8, 44.1, 0.0, 3.4, 0.0, 0.0, 3.4, 0.0, 3.4, 0.0, 59 +4.373333333333333,4.37,a-cgpr-i1,2022-23,Maynard - Maynard High,01740505, 26.4, 37.5, 0.0, 5.6, 0.0, 0.0, 12.5, 0.0, 8.3, 9.7, 72 +5.114666666666667,5,a-cgpr-i1,2022-23,Medfield - Medfield Senior High,01750505, 50.5, 43.4, 0.0, 1.5, 0.5, 0.0, 0.0, 0.0, 3.0, 1.0, 198 +0.0,1,a-cgpr-i1,2022-23,Medford - Curtis-Tufts,01760510,"","","","","","","","","","", 2 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Medford - Medford High,01760505, 26.4, 31.6, 0.0, 12.1, 4.2, 0.7, 18.2, 1.0, 3.9, 2.0, 307 +5.135999999999999,5,a-cgpr-i1,2022-23,Medway - Medway High,01770505, 44.1, 38.5, 0.6, 2.5, 2.5, 0.0, 8.1, 0.6, 0.0, 3.1, 161 +4.773333333333334,4.77,a-cgpr-i1,2022-23,Melrose - Melrose High,01780505, 46.8, 37.6, 0.0, 3.7, 1.4, 0.0, 0.0, 0.5, 6.4, 3.7, 218 +4.650666666666666,4.65,a-cgpr-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 37.9, 40.7, 0.0, 3.6, 0.0, 0.7, 4.3, 0.7, 5.0, 7.1, 140 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Methuen - Methuen High,01810505, 18.2, 23.8, 0.6, 22.5, 8.4, 0.0, 15.4, 2.2, 0.0, 8.9, 462 +4.4479999999999995,4.45,a-cgpr-i1,2022-23,Middleborough - Middleborough High,01820505, 28.4, 34.5, 1.0, 8.2, 7.2, 0.0, 4.1, 0.5, 15.5, 0.5, 194 +3.6373333333333333,3.64,a-cgpr-i1,2022-23,Milford - Milford High,01850505, 22.6, 30.7, 0.0, 8.7, 4.5, 1.4, 0.3, 0.7, 1.4, 29.6, 287 +4.256,4.26,a-cgpr-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 26.6, 36.3, 0.0, 14.5, 2.4, 0.0, 0.0, 1.6, 17.7, 0.8, 124 +4.672,4.67,a-cgpr-i1,2022-23,Millis - Millis High School,01870505, 49.3, 34.2, 0.0, 0.0, 0.0, 0.0, 4.1, 0.0, 4.1, 8.2, 73 +0.0,1,a-cgpr-i1,2022-23,Millis - TIES,01870515,"","","","","","","","","","", 1 +5.029333333333333,5,a-cgpr-i1,2022-23,Milton - Milton High,01890505, 45.5, 38.7, 0.0, 5.6, 1.1, 1.5, 1.9, 0.8, 3.0, 1.9, 266 +3.8880000000000003,3.89,a-cgpr-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 20.9, 23.6, 0.0, 14.2, 3.4, 10.8, 0.0, 3.4, 6.1, 17.6, 148 +4.48,4.48,a-cgpr-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 20.0, 16.0, 0.0, 44.0, 0.0, 4.0, 0.0, 0.0, 12.0, 4.0, 25 +5.0133333333333345,5,a-cgpr-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 42.4, 18.6, 0.0, 22.9, 4.2, 0.0, 5.9, 4.2, 1.7, 0.0, 118 +3.9626666666666672,3.96,a-cgpr-i1,2022-23,Monson - Monson High School,01910505, 14.3, 22.9, 0.0, 37.1, 0.0, 0.0, 0.0, 5.7, 17.1, 2.9, 35 +4.538666666666666,4.54,a-cgpr-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 12.3, 25.9, 0.9, 15.1, 0.3, 0.3, 30.3, 2.2, 3.8, 8.8, 317 +5.136000000000001,5,a-cgpr-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 56.1, 25.6, 0.0, 7.3, 2.4, 0.0, 4.9, 1.2, 2.4, 0.0, 82 +5.333333333333333,5,a-cgpr-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 45.8, 54.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72 +5.04,5,a-cgpr-i1,2022-23,Nantucket - Nantucket High,01970505, 26.9, 33.8, 2.8, 6.2, 3.4, 0.0, 21.4, 2.1, 3.4, 0.0, 145 +4.725333333333333,4.73,a-cgpr-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 16.1, 30.6, 0.0, 16.1, 11.3, 0.0, 14.5, 1.6, 1.6, 8.1, 62 +5.056,5,a-cgpr-i1,2022-23,Nashoba - Nashoba Regional,07250505, 43.8, 41.1, 0.0, 5.2, 1.6, 0.0, 3.1, 0.0, 4.2, 1.0, 192 +5.103999999999999,5,a-cgpr-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 15.6, 22.5, 1.3, 11.9, 6.3, 10.0, 28.1, 0.0, 0.0, 4.4, 160 +5.173333333333333,5,a-cgpr-i1,2022-23,Natick - Natick High,01980505, 41.4, 45.6, 0.0, 4.2, 0.5, 1.3, 4.0, 0.8, 1.9, 0.3, 377 +4.927999999999999,4.93,a-cgpr-i1,2022-23,Nauset - Nauset Regional High,06600505, 38.9, 34.8, 1.0, 7.6, 0.5, 0.0, 9.6, 1.0, 5.6, 1.0, 198 +5.077333333333333,5,a-cgpr-i1,2022-23,Needham - Needham High,01990505, 53.6, 38.1, 0.3, 1.6, 0.3, 0.5, 0.8, 0.3, 1.3, 3.2, 375 +4.943999999999999,4.94,a-cgpr-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 10.9, 36.4, 1.8, 10.9, 23.6, 0.0, 9.1, 0.0, 0.0, 7.3, 55 +4.826666666666667,4.83,a-cgpr-i1,2022-23,New Bedford - New Bedford High,02010505, 6.8, 18.6, 0.0, 30.4, 7.5, 0.2, 27.0, 2.3, 2.6, 4.6, 570 +5.333333333333333,5,a-cgpr-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 66.7, 0.0, 0.0, 33.3, 0.0, 0.0, 0.0, 9 +5.2,5,a-cgpr-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 17.1, 0.0, 26.8, 2.4, 0.0, 51.2, 0.0, 0.0, 2.4, 41 +5.333333333333333,5,a-cgpr-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 62.5, 0.0, 37.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80 +4.949333333333334,4.95,a-cgpr-i1,2022-23,Newburyport - Newburyport High,02040505, 41.1, 40.6, 0.0, 6.3, 0.5, 0.0, 4.3, 1.4, 4.8, 1.0, 207 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Newton - Newton North High,02070505, 54.0, 34.2, 0.2, 2.6, 0.0, 0.0, 2.2, 0.4, 3.3, 3.1, 491 +4.746666666666666,4.75,a-cgpr-i1,2022-23,Newton - Newton South High,02070510, 59.6, 25.7, 1.1, 1.5, 0.0, 0.0, 1.1, 0.8, 5.3, 5.1, 475 +5.013333333333334,5,a-cgpr-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 22.0, 41.7, 0.0, 9.8, 0.0, 2.3, 18.2, 3.0, 0.8, 2.3, 132 +4.373333333333333,4.37,a-cgpr-i1,2022-23,North Adams - Drury High,02090505, 19.7, 23.0, 1.6, 3.3, 9.8, 0.0, 24.6, 3.3, 9.8, 4.9, 61 +5.050666666666666,5,a-cgpr-i1,2022-23,North Andover - North Andover High,02110505, 35.4, 45.7, 0.3, 5.0, 2.3, 0.0, 6.0, 1.0, 1.7, 2.6, 302 +4.959999999999999,4.96,a-cgpr-i1,2022-23,North Attleborough - North Attleboro High,02120505, 32.3, 44.4, 0.0, 6.6, 0.8, 0.0, 8.9, 1.2, 0.0, 5.8, 257 +4.1066666666666665,4.11,a-cgpr-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 46.2, 0.0, 30.8, 0.0, 0.0, 0.0, 0.0, 0.0, 23.1, 13 +4.96,4.96,a-cgpr-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 22.2, 43.3, 0.0, 11.1, 4.7, 0.0, 11.7, 1.8, 0.0, 5.3, 171 +5.2426666666666675,5,a-cgpr-i1,2022-23,North Reading - North Reading High,02170505, 45.7, 41.6, 0.0, 3.5, 2.3, 0.0, 5.2, 0.6, 0.6, 0.6, 173 +4.896,4.9,a-cgpr-i1,2022-23,Northampton - Northampton High,02100505, 39.9, 29.2, 0.0, 12.0, 1.3, 0.0, 9.4, 0.4, 5.6, 2.1, 233 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 8.6, 11.7, 0.8, 8.6, 3.1, 0.0, 54.7, 5.5, 0.8, 6.3, 128 +5.296,5,a-cgpr-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 53.2, 34.3, 0.3, 2.2, 0.6, 0.0, 8.7, 0.3, 0.3, 0.0, 312 +5.290666666666667,5,a-cgpr-i1,2022-23,Northbridge - Northbridge High,02140505, 16.0, 35.2, 0.0, 19.2, 8.0, 0.0, 20.8, 0.8, 0.0, 0.0, 125 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 17.8, 15.7, 0.4, 9.6, 4.3, 1.4, 43.4, 1.1, 0.4, 6.0, 281 +5.034666666666667,5,a-cgpr-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 16.3, 29.3, 0.0, 10.6, 1.6, 0.8, 35.8, 4.9, 0.0, 0.8, 123 +4.8053333333333335,4.81,a-cgpr-i1,2022-23,Norton - Norton High,02180505, 36.8, 33.7, 0.0, 6.7, 4.3, 0.0, 8.6, 1.8, 4.9, 3.1, 163 +5.088000000000001,5,a-cgpr-i1,2022-23,Norwell - Norwell High,02190505, 53.7, 35.6, 0.7, 2.7, 2.0, 0.0, 0.7, 1.3, 2.0, 1.3, 149 +5.184,5,a-cgpr-i1,2022-23,Norwood - Norwood High,02200505, 35.4, 33.9, 0.0, 8.9, 8.9, 0.0, 10.1, 1.9, 0.8, 0.0, 257 +5.173333333333333,5,a-cgpr-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 16.4, 32.1, 1.4, 12.1, 0.0, 0.0, 35.0, 1.4, 1.4, 0.0, 140 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 37.7, 35.3, 1.8, 5.4, 2.4, 1.8, 4.8, 1.2, 3.6, 6.0, 167 +4.613333333333332,4.61,a-cgpr-i1,2022-23,Oxford - Oxford High,02260505, 27.5, 18.8, 0.0, 26.3, 1.3, 1.3, 11.3, 1.3, 2.5, 10.0, 80 +5.253333333333333,5,a-cgpr-i1,2022-23,Palmer - Palmer High,02270505, 14.8, 19.7, 0.0, 27.9, 6.6, 0.0, 29.5, 1.6, 0.0, 0.0, 61 +4.224,4.22,a-cgpr-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 15.2, 12.0, 0.0, 16.0, 0.0, 5.6, 30.4, 2.4, 0.0, 18.4, 125 +4.874666666666666,4.87,a-cgpr-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 23.4, 10.6, 0.0, 53.2, 0.0, 2.1, 2.1, 2.1, 6.4, 0.0, 47 +5.333333333333333,5,a-cgpr-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 25.0, 0.0, 0.0, 33.3, 0.0, 0.0, 41.7, 0.0, 0.0, 0.0, 12 +5.114666666666667,5,a-cgpr-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 28.6, 30.3, 0.0, 14.2, 4.6, 2.0, 16.2, 1.4, 0.0, 2.6, 346 +4.213333333333333,4.21,a-cgpr-i1,2022-23,Pembroke - Pembroke High School,02310505, 44.1, 31.3, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 195 +4.810666666666667,4.81,a-cgpr-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 41.6, 34.4, 0.0, 8.4, 1.3, 0.0, 4.5, 3.2, 3.2, 3.2, 154 +5.333333333333333,5,a-cgpr-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 28.6, 0.0, 14.3, 0.0, 0.0, 57.1, 0.0, 0.0, 0.0, 7 +4.885333333333333,4.89,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 8.3, 8.3, 0.0, 75.0, 0.0, 8.3, 0.0, 12 +3.5519999999999996,3.55,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 33.3, 0.0, 22.2, 0.0, 0.0, 11.1, 11.1, 22.2, 0.0, 9 +5.205333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 54.5, 38.6, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 44 +5.333333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 47.8, 41.3, 0.0, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46 +4.890666666666667,4.89,a-cgpr-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 16.3, 26.5, 0.0, 30.6, 6.1, 0.0, 12.2, 0.0, 8.2, 0.0, 49 +5.338666666666668,5,a-cgpr-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.2, 31.6, 0.0, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19 +5.242666666666667,5,a-cgpr-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 49.1, 14.0, 0.0, 15.8, 8.8, 1.8, 8.8, 0.0, 1.8, 0.0, 57 +0.0,1,a-cgpr-i1,2022-23,Pittsfield - Eagle Education Academy,02360525,"","","","","","","","","","", 2 +5.0666666666666655,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield High,02360505, 25.9, 30.2, 0.0, 21.6, 2.2, 0.0, 15.1, 2.2, 0.0, 2.9, 139 +5.327999999999999,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 8.3, 25.0, 0.0, 8.3, 8.3, 0.0, 50.0, 0.0, 0.0, 0.0, 12 +5.0986666666666665,5,a-cgpr-i1,2022-23,Pittsfield - Taconic High,02360510, 16.9, 15.7, 0.6, 28.7, 8.4, 1.1, 24.2, 1.7, 0.0, 2.8, 178 +5.264000000000001,5,a-cgpr-i1,2022-23,Plymouth - Plymouth North High,02390505, 23.3, 34.6, 0.0, 7.9, 8.2, 0.0, 24.7, 1.4, 0.0, 0.0, 292 +5.013333333333334,5,a-cgpr-i1,2022-23,Plymouth - Plymouth South High,02390515, 25.6, 29.4, 0.0, 9.2, 4.6, 0.4, 24.8, 5.5, 0.4, 0.0, 238 +4.591999999999999,4.59,a-cgpr-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 25.0, 42.2, 1.6, 14.1, 1.6, 0.0, 1.6, 0.0, 1.6, 12.5, 64 +4.112,4.11,a-cgpr-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 26.8, 22.0, 0.0, 17.3, 0.0, 0.0, 11.0, 2.4, 18.1, 2.4, 127 +4.768,4.77,a-cgpr-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 24.5, 26.6, 0.0, 14.9, 1.1, 0.0, 22.3, 0.0, 0.0, 10.6, 94 +5.007999999999999,5,a-cgpr-i1,2022-23,Quincy - North Quincy High,02430510, 37.0, 43.1, 0.3, 7.5, 1.5, 0.0, 4.5, 0.9, 2.1, 3.0, 332 +4.266666666666667,4.27,a-cgpr-i1,2022-23,Quincy - Quincy High,02430505, 22.2, 29.8, 0.0, 9.0, 0.8, 5.5, 12.7, 5.0, 0.0, 15.0, 379 +4.298666666666667,4.3,a-cgpr-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 18.2, 22.1, 0.0, 16.9, 0.0, 0.0, 23.4, 5.2, 0.0, 14.3, 77 +4.704,4.7,a-cgpr-i1,2022-23,Randolph - Randolph High,02440505, 15.6, 25.8, 3.9, 14.8, 0.0, 0.0, 28.1, 4.7, 4.7, 2.3, 128 +5.152000000000001,5,a-cgpr-i1,2022-23,Reading - Reading Memorial High,02460505, 42.9, 43.5, 0.0, 4.4, 2.4, 0.0, 3.4, 0.7, 1.4, 1.4, 294 +4.944,4.94,a-cgpr-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 7.1, 21.4, 7.1, 57.1, 0.0, 7.1, 0.0, 14 +4.890666666666666,4.89,a-cgpr-i1,2022-23,Revere - Revere High,02480505, 21.2, 22.6, 1.6, 22.9, 2.3, 0.5, 20.6, 0.9, 0.9, 6.5, 433 +4.997333333333333,5.0,a-cgpr-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 48.4, 29.7, 0.0, 7.8, 3.1, 0.0, 4.7, 1.6, 1.6, 3.1, 64 +4.810666666666667,4.81,a-cgpr-i1,2022-23,Rockland - Rockland Senior High,02510505, 25.6, 30.8, 0.8, 10.5, 6.0, 0.0, 16.5, 3.0, 5.3, 1.5, 133 +4.549333333333332,4.55,a-cgpr-i1,2022-23,Rockport - Rockport High,02520510, 32.8, 44.3, 0.0, 1.6, 0.0, 0.0, 6.6, 0.0, 9.8, 4.9, 61 +5.136,5,a-cgpr-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 38.3, 39.3, 7.5, 11.2, 0.0, 0.0, 0.0, 0.9, 2.8, 0.0, 107 +4.517333333333333,4.52,a-cgpr-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 38.5, 30.8, 0.0, 15.4, 0.0, 7.7, 7.7, 13 +3.3493333333333335,3.35,a-cgpr-i1,2022-23,Salem - Salem High,02580505, 11.0, 25.2, 0.5, 19.7, 3.2, 2.3, 0.9, 1.8, 16.1, 19.3, 218 +0.8906666666666666,1,a-cgpr-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0, 16.7, 66.7, 6 +5.242666666666667,5,a-cgpr-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 41.5, 53.8, 0.0, 0.0, 1.5, 0.0, 1.5, 1.5, 0.0, 0.0, 65 +4.992000000000001,4.99,a-cgpr-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 36.3, 40.1, 0.0, 3.8, 6.4, 0.0, 7.0, 1.3, 0.0, 5.1, 157 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Saugus - Saugus High,02620505, 26.7, 29.1, 0.0, 14.0, 9.3, 0.0, 13.4, 2.9, 2.3, 2.3, 172 +4.9866666666666655,4.99,a-cgpr-i1,2022-23,Scituate - Scituate High School,02640505, 46.0, 40.6, 0.0, 0.5, 2.1, 0.0, 4.3, 1.1, 1.1, 4.3, 187 +5.050666666666666,5,a-cgpr-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 34.3, 0.0, 41.0, 6.7, 0.0, 12.7, 0.7, 4.5, 0.0, 134 +4.144,4.14,a-cgpr-i1,2022-23,Sharon - Sharon High,02660505, 39.4, 37.0, 0.0, 1.0, 0.0, 0.0, 0.3, 0.3, 0.0, 21.8, 289 +5.338666666666667,5,a-cgpr-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 16.6, 21.6, 0.4, 12.4, 4.2, 1.8, 43.1, 0.0, 0.0, 0.0, 283 +4.9866666666666655,4.99,a-cgpr-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 84.3, 0.0, 7.0, 0.0, 1.1, 1.1, 0.5, 2.0, 3.9, 440 +4.922666666666665,4.92,a-cgpr-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 38.3, 32.0, 0.8, 4.3, 1.2, 1.6, 14.1, 1.6, 6.3, 0.0, 256 +4.917333333333333,4.92,a-cgpr-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 15.8, 23.7, 0.0, 31.6, 0.0, 0.0, 21.1, 2.6, 5.3, 0.0, 38 +5.077333333333334,5,a-cgpr-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 28.8, 36.3, 0.0, 11.5, 6.2, 0.0, 12.4, 0.9, 1.8, 2.2, 226 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 37.5, 0.0, 0.0, 12.5, 8 +4.6240000000000006,4.62,a-cgpr-i1,2022-23,Somerville - Somerville High,02740505, 25.9, 23.3, 0.0, 18.0, 8.6, 0.0, 10.9, 0.8, 7.9, 4.5, 266 +4.778666666666667,4.78,a-cgpr-i1,2022-23,South Hadley - South Hadley High,02780505, 20.0, 30.4, 0.0, 20.8, 3.2, 0.0, 15.2, 3.2, 0.8, 6.4, 125 +4.970666666666667,4.97,a-cgpr-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 10.3, 14.3, 0.6, 32.6, 1.7, 0.0, 33.7, 2.3, 0.0, 4.6, 175 +5.269333333333334,5,a-cgpr-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 27.3, 49.4, 0.0, 3.9, 0.0, 1.3, 16.9, 0.0, 1.3, 0.0, 77 +5.12,5,a-cgpr-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 11.7, 17.5, 0.0, 2.6, 1.9, 0.6, 61.7, 3.2, 0.6, 0.0, 154 +0.0,1,a-cgpr-i1,2022-23,Southbridge - Southbridge Academy,02770525,"","","","","","","","","","", 1 +3.6053333333333337,3.61,a-cgpr-i1,2022-23,Southbridge - Southbridge High School,02770515, 5.7, 14.9, 0.0, 33.3, 5.7, 1.1, 6.9, 4.6, 8.0, 19.5, 87 +5.168,5,a-cgpr-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 20.3, 25.0, 0.5, 13.5, 4.9, 2.5, 30.2, 2.2, 0.5, 0.3, 364 +5.104000000000001,5,a-cgpr-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 34.8, 32.6, 0.0, 8.7, 2.2, 0.0, 17.4, 2.2, 2.2, 0.0, 46 +4.794666666666667,4.79,a-cgpr-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 16.5, 18.0, 0.7, 13.9, 4.5, 0.0, 36.3, 3.0, 0.0, 7.1, 267 +4.501333333333334,4.5,a-cgpr-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 25.6, 30.0, 0.0, 12.2, 2.2, 0.0, 14.4, 3.3, 0.0, 12.2, 90 +5.173333333333333,5,a-cgpr-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 16.4, 22.4, 0.0, 13.4, 0.0, 3.0, 41.8, 0.0, 1.5, 1.5, 67 +4.6080000000000005,4.61,a-cgpr-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 24.3, 24.3, 0.0, 10.8, 8.1, 0.0, 18.9, 2.7, 0.0, 10.8, 37 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 53.3, 0.0, 0.0, 46.7, 0.0, 0.0, 0.0, 15 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 10.5, 0.0, 52.6, 5.3, 0.0, 31.6, 0.0, 0.0, 0.0, 19 +4.650666666666667,4.65,a-cgpr-i1,2022-23,Springfield - High School Of Commerce,02810510, 12.8, 15.9, 1.5, 31.8, 6.2, 0.0, 19.0, 1.5, 6.7, 4.6, 195 +5.136,5,a-cgpr-i1,2022-23,Springfield - John J Duggan Academy,02810320, 27.2, 11.1, 3.7, 42.0, 0.0, 0.0, 12.3, 2.5, 0.0, 1.2, 81 +0.0,1,a-cgpr-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560,"","","","","","","","","","", 5 +5.056000000000001,5,a-cgpr-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 20.1, 10.5, 1.0, 33.2, 1.6, 0.0, 28.4, 1.6, 1.0, 2.6, 313 +4.24,4.24,a-cgpr-i1,2022-23,Springfield - Springfield Central High,02810500, 17.6, 8.2, 1.7, 24.9, 2.8, 0.0, 24.3, 2.2, 2.8, 15.5, 465 +4.698666666666667,4.7,a-cgpr-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 2.9, 2.9, 17.6, 0.0, 0.0, 64.7, 0.0, 2.9, 8.8, 34 +4.341333333333334,4.34,a-cgpr-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 8.9, 5.7, 0.4, 25.1, 5.7, 0.0, 35.6, 2.0, 0.0, 16.6, 247 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 13 +4.362666666666667,4.36,a-cgpr-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 54.5, 0.0, 27.3, 0.0, 0.0, 18.2, 11 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 27.8, 19.4, 0.0, 25.0, 12.5, 0.0, 15.3, 0.0, 0.0, 0.0, 72 +4.8,4.8,a-cgpr-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 15.0, 0.0, 0.0, 20.0, 0.0, 0.0, 55.0, 0.0, 5.0, 5.0, 20 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 36.9, 25.0, 1.2, 28.6, 0.0, 0.0, 1.2, 2.4, 0.0, 4.8, 84 +4.352,4.35,a-cgpr-i1,2022-23,Stoneham - Stoneham High,02840505, 27.7, 50.4, 0.0, 1.4, 1.4, 0.0, 0.7, 1.4, 0.0, 17.0, 141 +4.8213333333333335,4.82,a-cgpr-i1,2022-23,Stoughton - Stoughton High,02850505, 32.3, 32.3, 0.9, 12.9, 0.0, 0.9, 11.1, 1.4, 0.5, 7.8, 217 +5.066666666666666,5,a-cgpr-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 47.3, 35.7, 0.0, 7.2, 0.5, 0.0, 4.3, 0.5, 2.4, 1.9, 207 +5.333333333333333,5,a-cgpr-i1,2022-23,Sutton - Sutton High School,02900510, 41.6, 44.9, 1.1, 3.4, 1.1, 0.0, 7.9, 0.0, 0.0, 0.0, 89 +4.976,4.98,a-cgpr-i1,2022-23,Swampscott - Swampscott High,02910505, 50.0, 34.0, 0.0, 3.3, 2.0, 0.0, 4.0, 0.7, 2.7, 3.3, 150 +4.320000000000001,4.32,a-cgpr-i1,2022-23,Swansea - Joseph Case High,02920505, 22.6, 24.5, 0.0, 19.8, 4.7, 0.0, 9.4, 0.9, 0.0, 17.9, 106 +3.6533333333333333,3.65,a-cgpr-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.3, 36.9, 0.0, 12.1, 7.1, 1.5, 10.6, 0.9, 14.2, 16.5, 339 +4.784,4.78,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 23.0, 39.4, 0.0, 18.2, 1.2, 0.0, 7.9, 1.2, 3.6, 5.5, 165 +4.917333333333334,4.92,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 14.9, 13.9, 0.0, 22.8, 6.9, 0.0, 33.7, 1.0, 3.0, 4.0, 101 +5.333333333333333,5,a-cgpr-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 5.9, 0.0, 26.5, 0.0, 0.0, 67.6, 0.0, 0.0, 0.0, 34 +5.290666666666667,5,a-cgpr-i1,2022-23,Taunton - Taunton High,02930505, 16.2, 33.2, 0.0, 19.4, 1.1, 0.0, 29.3, 0.9, 0.0, 0.0, 458 +4.9706666666666655,4.97,a-cgpr-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 42.9, 32.8, 0.0, 6.3, 1.1, 0.0, 10.1, 2.1, 3.7, 1.1, 189 +5.263999999999999,5,a-cgpr-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 19.0, 20.9, 0.0, 9.5, 2.8, 0.5, 46.0, 0.5, 0.0, 0.9, 211 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Triton - Triton Regional High School,07730505, 28.4, 33.7, 0.6, 8.9, 5.9, 0.6, 14.8, 1.2, 5.9, 0.0, 169 +5.2266666666666675,5,a-cgpr-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 29.1, 39.8, 1.0, 18.4, 1.9, 0.0, 7.8, 0.0, 0.0, 1.9, 103 +4.842666666666667,4.84,a-cgpr-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 13.8, 16.4, 1.3, 7.9, 0.7, 4.6, 46.1, 7.2, 0.7, 1.3, 152 +5.327999999999999,5,a-cgpr-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 44.4, 0.0, 44.4, 0.0, 0.0, 11.1, 0.0, 0.0, 0.0, 9 +5.189333333333334,5,a-cgpr-i1,2022-23,Uxbridge - Uxbridge High,03040505, 29.4, 33.0, 0.9, 9.2, 3.7, 0.0, 21.1, 2.8, 0.0, 0.0, 109 +5.173333333333334,5,a-cgpr-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 38.5, 40.9, 0.0, 9.9, 1.7, 0.4, 5.6, 1.3, 1.3, 0.4, 467 +4.687999999999999,4.69,a-cgpr-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 41.4, 33.3, 0.0, 5.1, 0.5, 1.5, 6.1, 0.5, 0.5, 11.1, 198 +4.922666666666667,4.92,a-cgpr-i1,2022-23,Walpole - Walpole High,03070505, 42.2, 40.2, 0.0, 4.1, 2.9, 2.9, 0.0, 1.2, 3.3, 3.3, 244 +5.184,5,a-cgpr-i1,2022-23,Waltham - Waltham Sr High,03080505, 29.8, 25.1, 0.6, 12.7, 2.2, 0.6, 26.2, 1.4, 0.6, 1.1, 363 +5.328,5,a-cgpr-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 22.2, 37.0, 0.0, 11.1, 0.0, 0.0, 29.6, 0.0, 0.0, 0.0, 54 +2.224,2.22,a-cgpr-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 41.7, 0.0, 58.3, 0.0, 12 +5.136000000000001,5,a-cgpr-i1,2022-23,Wareham - Wareham Senior High,03100505, 13.6, 48.1, 0.0, 3.7, 7.4, 0.0, 23.5, 1.2, 0.0, 2.5, 81 +4.581333333333333,4.58,a-cgpr-i1,2022-23,Watertown - Watertown High,03140505, 36.2, 38.9, 0.0, 7.4, 0.0, 0.0, 3.4, 0.7, 0.7, 12.8, 149 +5.216,5,a-cgpr-i1,2022-23,Wayland - Wayland High School,03150505, 47.6, 48.1, 0.0, 0.0, 1.6, 0.0, 0.5, 0.0, 0.5, 1.6, 187 +5.1306666666666665,5,a-cgpr-i1,2022-23,Webster - Bartlett High School,03160505, 28.2, 30.8, 0.0, 14.1, 0.0, 0.0, 23.1, 0.0, 2.6, 1.3, 78 +5.226666666666666,5,a-cgpr-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 67.0, 28.2, 0.0, 0.6, 1.1, 0.0, 1.1, 0.0, 0.9, 1.1, 351 +4.976,4.98,a-cgpr-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 76.7, 0.0, 10.0, 3.3, 0.0, 3.3, 0.0, 3.3, 3.3, 60 +5.167999999999998,5,a-cgpr-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 33.3, 43.4, 0.0, 6.1, 4.0, 0.0, 10.1, 0.0, 2.0, 1.0, 99 +5.269333333333334,5,a-cgpr-i1,2022-23,West Springfield - West Springfield High,03320505, 22.7, 22.3, 0.0, 29.7, 7.4, 0.0, 16.7, 1.1, 0.0, 0.0, 269 +5.093333333333334,5,a-cgpr-i1,2022-23,Westborough - Westborough High,03210505, 42.1, 45.2, 0.0, 3.5, 0.0, 0.8, 3.9, 0.8, 2.3, 1.5, 259 +5.007999999999999,5,a-cgpr-i1,2022-23,Westfield - Westfield High,03250505, 23.7, 27.9, 0.9, 26.5, 2.8, 0.0, 12.1, 2.8, 1.4, 1.9, 215 +4.784,4.78,a-cgpr-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 4.8, 17.5, 0.0, 12.7, 6.3, 0.0, 48.4, 4.8, 4.0, 1.6, 126 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 22.2, 0.0, 0.0, 66.7, 0.0, 0.0, 11.1, 9 +5.173333333333333,5,a-cgpr-i1,2022-23,Westford - Westford Academy,03260505, 43.8, 47.4, 0.0, 2.2, 1.0, 0.7, 1.9, 0.0, 0.5, 2.6, 418 +5.301333333333333,5,a-cgpr-i1,2022-23,Weston - Weston High,03300505, 63.0, 31.2, 0.0, 2.6, 1.3, 0.0, 1.3, 0.0, 0.6, 0.0, 154 +5.247999999999999,5,a-cgpr-i1,2022-23,Westport - Westport Middle-High School,03310515, 20.0, 29.2, 1.5, 16.9, 3.1, 0.0, 27.7, 1.5, 0.0, 0.0, 65 +5.178666666666667,5,a-cgpr-i1,2022-23,Westwood - Westwood High,03350505, 53.6, 41.1, 0.4, 1.6, 0.0, 0.0, 0.4, 0.0, 2.8, 0.0, 248 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Weymouth - Weymouth High School,03360505, 28.4, 24.9, 0.0, 11.7, 3.4, 1.5, 19.3, 4.9, 3.2, 2.7, 409 +5.200000000000001,5,a-cgpr-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 28.4, 30.5, 0.0, 13.1, 6.7, 3.9, 14.9, 2.1, 0.0, 0.4, 282 +4.88,4.88,a-cgpr-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 13.5, 18.5, 0.0, 23.5, 2.5, 0.0, 33.5, 2.5, 6.0, 0.0, 319 +5.221333333333333,5,a-cgpr-i1,2022-23,Wilmington - Wilmington High,03420505, 46.1, 33.5, 0.5, 10.5, 2.1, 0.0, 5.2, 1.0, 0.5, 0.5, 191 +4.8,4.8,a-cgpr-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 10.0, 0.0, 10 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Winchendon - Murdock High School,03430515, 13.3, 33.3, 0.0, 24.4, 0.0, 0.0, 22.2, 0.0, 6.7, 0.0, 45 +5.210666666666666,5,a-cgpr-i1,2022-23,Winchester - Winchester High School,03440505, 44.8, 47.8, 0.6, 2.4, 0.6, 0.0, 1.5, 0.0, 1.5, 0.9, 337 +4.5440000000000005,4.54,a-cgpr-i1,2022-23,Winthrop - Winthrop High School,03460505, 38.3, 26.6, 0.8, 7.0, 2.3, 0.0, 10.2, 2.3, 0.8, 11.7, 128 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Woburn - Woburn High,03470505, 31.1, 33.7, 0.0, 9.5, 7.2, 0.0, 11.7, 2.3, 0.0, 4.5, 264 +4.746666666666667,4.75,a-cgpr-i1,2022-23,Worcester - Burncoat Senior High,03480503, 12.1, 20.4, 0.0, 31.7, 7.9, 1.1, 15.8, 0.8, 1.1, 9.1, 265 +5.1146666666666665,5,a-cgpr-i1,2022-23,Worcester - Claremont Academy,03480350, 5.5, 24.7, 0.0, 27.4, 12.3, 0.0, 26.0, 0.0, 1.4, 2.7, 73 +4.933333333333333,4.93,a-cgpr-i1,2022-23,Worcester - Doherty Memorial High,03480512, 22.8, 20.7, 0.3, 26.9, 8.5, 0.0, 13.3, 2.0, 1.7, 3.7, 294 +4.938666666666667,4.94,a-cgpr-i1,2022-23,Worcester - North High,03480515, 12.1, 18.0, 0.0, 33.1, 8.8, 0.4, 20.2, 2.9, 1.1, 3.3, 272 +4.8,4.8,a-cgpr-i1,2022-23,Worcester - South High Community,03480520, 12.3, 25.5, 0.3, 18.9, 13.5, 0.0, 19.5, 2.8, 0.6, 6.6, 318 +5.2,5,a-cgpr-i1,2022-23,Worcester - University Pk Campus School,03480285, 23.1, 51.3, 0.0, 7.7, 2.6, 0.0, 12.8, 0.0, 0.0, 2.6, 39 +5.029333333333333,5,a-cgpr-i1,2022-23,Worcester - Worcester Technical High,03480605, 19.9, 37.8, 0.6, 13.8, 0.3, 1.4, 20.5, 1.7, 0.6, 3.5, 347 diff --git a/data/dashboard/admin_data/dese/archive/june-2023/5C_1_art_course.csv b/data/admin_data/dese/5C_1_art_course.csv similarity index 83% rename from data/dashboard/admin_data/dese/archive/june-2023/5C_1_art_course.csv rename to data/admin_data/dese/5C_1_art_course.csv index 3fdd1b4..0aa35ef 100644 --- a/data/dashboard/admin_data/dese/archive/june-2023/5C_1_art_course.csv +++ b/data/admin_data/dese/5C_1_art_course.csv @@ -1,4 +1,1762 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,K,01,02,03,04,05,06,07,08,09,10,11,12,All Grades,Total Students +4.856774193548387,4.86,a-picp-i1,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 100.0, 100.0, 100.0, 100.0, 100.0, 99.2, 100.0, 100.0, 99.1, 100.0, 96.3, 45.6, 65.9, 94.1," 1,419" +2.565161290322581,2.57,a-picp-i1,2022-23,Abington-Abington High,00010505,"","","","","","","","","", 58.0, 62.4, 30.9, 49.6, 49.7, 553 +5.037419354838709,5,a-picp-i1,2022-23,Abington-Abington Middle School,00010405,"","","","","", 100.0, 99.4, 93.3, 97.2,"","","","", 97.6, 662 +5.161290322580645,5,a-picp-i1,2022-23,Abington-Beaver Brook Elementary,00010020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 530 +5.161290322580645,5,a-picp-i1,2022-23,Abington-Woodsdale Elementary School,00010015,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 343 +4.985806451612903,4.99,a-picp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530,"","","","","", 100.0, 100.0, 100.0, 98.6, 96.9, 98.3, 96.9, 81.1, 96.6, 467 +2.4929032258064514,2.49,a-picp-i1,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505,"","","","","","","","","", 69.4, 62.3, 28.9, 34.1, 48.3," 1,687" +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Blanchard Memorial School,06000005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 504 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Luther Conant School,06000030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 408 +5.150967741935483,5,a-picp-i1,2022-23,Acton-Boxborough-McCarthy-Towne School,06000015, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Merriam School,06000010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 445 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Paul P Gates Elementary School,06000025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 346 +4.763870967741935,4.76,a-picp-i1,2022-23,Acton-Boxborough-Raymond J Grey Junior High,06000405,"","","","","","","", 91.3, 93.4,"","","","", 92.3, 835 +5.016774193548387,5,a-picp-i1,2022-23,Acushnet-Acushnet Elementary School,00030025, 100.0, 83.3, 100.0, 100.0, 100.0,"","","","","","","","", 97.2, 496 +0.9754838709677419,1,a-picp-i1,2022-23,Acushnet-Albert F Ford Middle School,00030305,"","","","","", 26.2, 22.1, 15.7, 12.6,"","","","", 18.9, 408 +4.08258064516129,4.08,a-picp-i1,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305,"","","","","","", 97.2, 99.3, 100.0, 88.3, 53.1, 40.6, 69.8, 79.1, 957 +2.771612903225807,2.77,a-picp-i1,2022-23,Agawam-Agawam High,00050505,"","","","","","","","","", 60.8, 46.2, 44.9, 61.0, 53.7," 1,049" +4.836129032258064,4.84,a-picp-i1,2022-23,Agawam-Agawam Junior High,00050405,"","","","","","","", 94.8, 92.6,"","","","", 93.7, 537 +5.161290322580645,5,a-picp-i1,2022-23,Agawam-Benjamin J Phelps,00050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 305 +5.130322580645162,5,a-picp-i1,2022-23,Agawam-Clifford M Granger,00050010, 100.0, 98.7, 100.0, 100.0, 98.4,"","","","","","","","", 99.4, 336 +5.161290322580645,5,a-picp-i1,2022-23,Agawam-James Clark School,00050030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 314 +5.083870967741936,5,a-picp-i1,2022-23,Agawam-Roberta G. Doering School,00050303,"","","","","", 97.5, 99.3,"","","","","","", 98.5, 531 +5.145806451612903,5,a-picp-i1,2022-23,Agawam-Robinson Park,00050025, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 289 +5.135483870967742,5,a-picp-i1,2022-23,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 100.0, 99.0, 100.0, 100.0, 100.0, 99.0, 98.7, 99.3, 100.0,"","","","", 99.5," 1,034" +5.161290322580645,5,a-picp-i1,2022-23,Amesbury-Amesbury Elementary,00070005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 307 +3.958709677419355,3.96,a-picp-i1,2022-23,Amesbury-Amesbury High,00070505,"","","","","","","","","", 69.6, 69.9, 78.4, 89.7, 76.7, 446 +2.8541935483870966,2.85,a-picp-i1,2022-23,Amesbury-Amesbury Innovation High School,00070515,"","","","","","","","","", 46.2, 57.1, 72.7, 44.4, 55.3, 47 +5.047741935483871,5,a-picp-i1,2022-23,Amesbury-Amesbury Middle,00070013,"","","","","", 97.8, 98.5, 99.4, 95.7,"","","","", 97.8, 588 +5.161290322580645,5,a-picp-i1,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 358 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Crocker Farm Elementary,00080009, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Fort River Elementary,00080020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 374 +4.356129032258065,4.36,a-picp-i1,2022-23,Amherst-Pelham-Amherst Regional High,06050505,"","","","","","","","","", 85.2, 79.5, 85.5, 87.3, 84.4, 867 +5.052903225806452,5,a-picp-i1,2022-23,Amherst-Pelham-Amherst Regional Middle School,06050405,"","","","","","","", 99.0, 96.8,"","","","", 97.9, 386 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Wildwood Elementary,00080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 316 +3.7316129032258063,3.73,a-picp-i1,2022-23,Andover-Andover High,00090505,"","","","","","","","","", 79.8, 76.0, 54.9, 78.5, 72.3," 1,668" +5.161290322580645,5,a-picp-i1,2022-23,Andover-Andover West Middle,00090310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 523 +5.161290322580645,5,a-picp-i1,2022-23,Andover-Bancroft Elementary,00090003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 545 +5.114838709677419,5,a-picp-i1,2022-23,Andover-Doherty Middle,00090305,"","","","","","", 99.3, 98.2, 100.0,"","","","", 99.1, 462 +5.161290322580645,5,a-picp-i1,2022-23,Andover-Henry C Sanborn Elementary,00090010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 347 +5.161290322580645,5,a-picp-i1,2022-23,Andover-High Plain Elementary,00090004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 535 +5.161290322580645,5,a-picp-i1,2022-23,Andover-South Elementary,00090020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 454 +5.161290322580645,5,a-picp-i1,2022-23,Andover-West Elementary,00090025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 560 +5.130322580645162,5,a-picp-i1,2022-23,Andover-Wood Hill Middle School,00090350,"","","","","","", 99.0, 100.0, 99.2,"","","","", 99.4, 344 +3.91741935483871,3.92,a-picp-i1,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305,"","","","","","", 100.0, 100.0, 99.0, 31.5, 80.0, 59.6, 25.5, 75.9, 543 +2.590967741935484,2.59,a-picp-i1,2022-23,Arlington-Arlington High,00100505,"","","","","","","","","", 57.4, 51.9, 40.9, 50.7, 50.2," 1,542" +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Brackett,00100010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 421 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Cyrus E Dallin,00100025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 416 +5.130322580645162,5,a-picp-i1,2022-23,Arlington-Gibbs School,00100305,"","","","","","", 99.4,"","","","","","", 99.4, 514 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Hardy,00100030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 391 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-John A Bishop,00100005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 397 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-M Norcross Stratton,00100055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 443 +5.140645161290323,5,a-picp-i1,2022-23,Arlington-Ottoson Middle,00100410,"","","","","","","", 100.0, 99.2,"","","","", 99.6, 933 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Peirce,00100045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 361 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Thompson,00100050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 513 +5.150967741935483,5,a-picp-i1,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 98.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 472 +5.161290322580645,5,a-picp-i1,2022-23,Ashburnham-Westminster-Meetinghouse School,06100010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 163 +2.141935483870968,2.14,a-picp-i1,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505,"","","","","","","","","", 37.8, 43.9, 31.2, 53.1, 41.5, 648 +5.1251612903225805,5,a-picp-i1,2022-23,Ashburnham-Westminster-Overlook Middle School,06100305,"","","","","","", 98.8, 98.9, 100.0,"","","","", 99.3, 540 +5.161290322580645,5,a-picp-i1,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 387 +3.6129032258064515,3.61,a-picp-i1,2022-23,Ashland-Ashland High,00140505,"","","","","","","","","", 83.9, 73.5, 56.8, 63.7, 70.0, 859 +5.140645161290323,5,a-picp-i1,2022-23,Ashland-Ashland Middle,00140405,"","","","","","", 99.5, 99.6, 99.6,"","","","", 99.6, 699 +5.161290322580645,5,a-picp-i1,2022-23,Ashland-David Mindess,00140015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 650 +5.150967741935483,5,a-picp-i1,2022-23,Ashland-Henry E Warren Elementary,00140010, 100.0, 100.0, 99.6,"","","","","","","","","","", 99.8, 632 +1.9716129032258065,1.97,a-picp-i1,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605,"","","","","","","","","", 33.8, 35.1, 44.6, 39.9, 38.2," 1,118" +5.161290322580645,5,a-picp-i1,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 540 +2.7096774193548385,2.71,a-picp-i1,2022-23,Athol-Royalston-Athol High,06150505,"","","","","","","","","", 53.1, 63.7, 44.4, 45.6, 52.5, 404 +5.047741935483871,5,a-picp-i1,2022-23,Athol-Royalston-Athol-Royalston Middle School,06150305,"","","","","", 98.0, 96.5, 99.2, 97.2,"","","","", 97.8, 445 +5.161290322580645,5,a-picp-i1,2022-23,Athol-Royalston-Royalston Community School,06150050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 129 +4.629677419354839,4.63,a-picp-i1,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2, 100.0, 35.4, 69.4, 46.0, 75.3, 89.7," 1,296" +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-A. Irvin Studley Elementary School,00160001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 346 +3.163870967741935,3.16,a-picp-i1,2022-23,Attleboro-Attleboro Community Academy,00160515,"","","","","","","","","", 50.0, 87.5, 92.3, 46.2, 61.3, 62 +3.4374193548387093,3.44,a-picp-i1,2022-23,Attleboro-Attleboro High,00160505,"","","","","","","","","", 74.4, 83.2, 66.8, 35.0, 66.6," 1,853" +4.629677419354839,4.63,a-picp-i1,2022-23,Attleboro-Attleboro Virtual Academy,00160705,"","","","","","","","","", 100.0, 100.0, 83.3, 91.7, 89.7, 39 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Cyril K. Brennan Middle School,00160315,"","","","","", 100.0, 100.0, 100.0, 99.4,"","","","", 99.8, 639 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 411 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 457 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 442 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Robert J. Coelho Middle School,00160305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 583 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Thomas Willett Elementary School,00160035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 374 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Wamsutta Middle School,00160320,"","","","","", 99.3, 100.0, 100.0, 100.0,"","","","", 99.8, 591 +4.980645161290322,4.98,a-picp-i1,2022-23,Auburn-Auburn Middle,00170305,"","","","","","", 95.2, 96.2, 98.1,"","","","", 96.5, 652 +3.5458064516129033,3.55,a-picp-i1,2022-23,Auburn-Auburn Senior High,00170505,"","","","","","","","","", 45.0, 78.3, 72.7, 79.7, 68.7, 734 +5.161290322580645,5,a-picp-i1,2022-23,Auburn-Bryn Mawr,00170010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 264 +5.140645161290323,5,a-picp-i1,2022-23,Auburn-Pakachoag School,00170025, 98.7, 100.0, 100.0,"","","","","","","","","","", 99.6, 243 +5.114838709677419,5,a-picp-i1,2022-23,Auburn-Swanson Road Intermediate School,00170030,"","","", 100.0, 98.5, 98.8,"","","","","","","", 99.1, 551 +4.190967741935484,4.19,a-picp-i1,2022-23,Avon-Avon Middle High School,00180510,"","","","","","","", 100.0, 100.0, 57.4, 69.4, 59.6, 95.6, 81.2, 335 +5.161290322580645,5,a-picp-i1,2022-23,Avon-Ralph D Butler,00180010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 371 +4.8,4.8,a-picp-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505,"","","","","","","","","", 98.0, 94.9, 90.3, 87.8, 93.0, 402 +5.109677419354838,5,a-picp-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305,"","","","","","", 99.2, 98.3, 99.2,"","","","", 99.0, 382 +5.161290322580645,5,a-picp-i1,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 336 +5.161290322580645,5,a-picp-i1,2022-23,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 286 +2.80258064516129,2.8,a-picp-i1,2022-23,Barnstable-Barnstable High,00200505,"","","","","","","","", 73.0, 60.4, 51.1, 47.4, 36.8, 54.3," 1,739" +5.078709677419355,5,a-picp-i1,2022-23,Barnstable-Barnstable Intermediate School,00200315,"","","","","","", 100.0, 96.9,"","","","","", 98.4, 682 +5.145806451612903,5,a-picp-i1,2022-23,Barnstable-Barnstable United Elementary School,00200050,"","","","", 100.0, 99.4,"","","","","","","", 99.7, 735 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Centerville Elementary,00200010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 257 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Hyannis West Elementary,00200025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 334 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-West Barnstable Elementary,00200005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-West Villages Elementary School,00200045, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 394 +3.59741935483871,3.6,a-picp-i1,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405,"","","","","","", 92.7, 92.5, 95.8, 96.2, 0.0, 0.0, 93.9, 69.7, 399 +3.5045161290322584,3.5,a-picp-i1,2022-23,Bedford-Bedford High,00230505,"","","","","","","","","", 92.0, 66.4, 49.0, 60.5, 67.9, 837 +4.95483870967742,4.95,a-picp-i1,2022-23,Bedford-John Glenn Middle,00230305,"","","","","","", 91.9, 98.0, 97.6,"","","","", 96.0, 594 +3.59741935483871,3.6,a-picp-i1,2022-23,Bedford-Lt Eleazer Davis,00230010, 0.0, 100.0, 100.0,"","","","","","","","","","", 69.7, 476 +5.161290322580645,5,a-picp-i1,2022-23,Bedford-Lt Job Lane School,00230012,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 581 +3.607741935483871,3.61,a-picp-i1,2022-23,Belchertown-Belchertown High,00240505,"","","","","","","","","", 78.2, 73.4, 70.4, 59.6, 69.9, 642 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Chestnut Hill Community School,00240006,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 484 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Cold Spring,00240005, 100.0,"","","","","","","","","","","","", 100.0, 127 +4.820645161290323,4.82,a-picp-i1,2022-23,Belchertown-Jabish Middle School,00240025,"","","","","","","", 94.0, 92.9,"","","","", 93.4, 350 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Swift River Elementary,00240018,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 477 +3.855483870967742,3.86,a-picp-i1,2022-23,Bellingham-Bellingham High School,00250505,"","","","","","","","", 97.5, 64.4, 66.0, 60.9, 86.7, 74.7, 736 +5.109677419354838,5,a-picp-i1,2022-23,Bellingham-Bellingham Memorial School,00250315,"","","","", 100.0, 100.0, 97.5, 98.6,"","","","","", 99.0, 594 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Joseph F DiPietro Elementary School,00250020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 300 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Keough Memorial Academy,00250510,"","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 30 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Stall Brook,00250025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 245 +2.9832258064516126,2.98,a-picp-i1,2022-23,Belmont-Belmont High,00260505,"","","","","","","","","", 90.6, 51.9, 42.8, 43.0, 57.8," 1,370" +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Daniel Butler,00260015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Mary Lee Burbank,00260010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 339 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Roger E Wellington,00260035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 491 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Winn Brook,00260005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 436 +5.073548387096774,5,a-picp-i1,2022-23,Belmont-Winthrop L Chenery Middle,00260305,"","","","","", 99.7, 98.0, 98.7, 96.7,"","","","", 98.3," 1,382" +5.161290322580645,5,a-picp-i1,2022-23,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 308 +5.161290322580645,5,a-picp-i1,2022-23,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 867 +5.161290322580645,5,a-picp-i1,2022-23,Berkley-Berkley Community School,00270010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 423 +5.161290322580645,5,a-picp-i1,2022-23,Berkley-Berkley Middle School,00270305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 370 +4.6812903225806455,4.68,a-picp-i1,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305,"","","","","","", 100.0, 100.0, 100.0, 98.0, 66.7, 78.8, 62.5, 90.7, 375 +3.7161290322580647,3.72,a-picp-i1,2022-23,Berkshire Hills-Monument Mt Regional High,06180505,"","","","","","","","","", 89.4, 67.9, 76.2, 54.4, 72.0, 482 +5.145806451612903,5,a-picp-i1,2022-23,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 98.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 319 +5.0683870967741935,5,a-picp-i1,2022-23,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310,"","","","","", 100.0, 98.8, 94.8, 100.0,"","","","", 98.2, 334 +5.135483870967742,5,a-picp-i1,2022-23,Berlin-Boylston-Berlin Memorial School,06200005, 100.0, 100.0, 100.0, 96.7, 100.0, 100.0,"","","","","","","", 99.5, 204 +5.161290322580645,5,a-picp-i1,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +3.747096774193548,3.75,a-picp-i1,2022-23,Berlin-Boylston-Tahanto Regional High,06200505,"","","","","","", 96.3, 96.5, 82.7, 66.2, 41.8, 45.6, 72.1, 72.6, 521 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Ayers/Ryal Side School,00300055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 390 +3.489032258064516,3.49,a-picp-i1,2022-23,Beverly-Beverly High,00300505,"","","","","","","","","", 65.9, 84.0, 75.8, 46.4, 67.6," 1,282" +5.099354838709678,5,a-picp-i1,2022-23,Beverly-Beverly Middle School,00300305,"","","","","", 98.0, 98.8, 99.4, 99.2,"","","","", 98.8," 1,385" +5.130322580645162,5,a-picp-i1,2022-23,Beverly-Centerville Elementary,00300010, 100.0, 96.4, 100.0, 100.0, 100.0,"","","","","","","","", 99.4, 322 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Cove Elementary,00300015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 425 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Hannah Elementary,00300033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 322 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-North Beverly Elementary,00300040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 347 +3.6025806451612903,3.6,a-picp-i1,2022-23,Billerica-Billerica Memorial High School,00310505,"","","","","","","","", 69.2, 79.8, 65.9, 55.3, 77.1, 69.8," 1,566" +5.109677419354838,5,a-picp-i1,2022-23,Billerica-Frederick J Dutile,00310007, 98.4, 98.3, 100.0, 97.9, 100.0,"","","","","","","","", 99.0, 288 +5.145806451612903,5,a-picp-i1,2022-23,Billerica-Hajjar Elementary,00310026, 100.0, 100.0, 98.8, 100.0, 100.0,"","","","","","","","", 99.7, 377 +5.161290322580645,5,a-picp-i1,2022-23,Billerica-John F Kennedy,00310012, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 310 +4.96516129032258,4.97,a-picp-i1,2022-23,Billerica-Locke Middle,00310310,"","","","","", 93.2, 98.8, 96.6,"","","","","", 96.2, 552 +4.990967741935484,4.99,a-picp-i1,2022-23,Billerica-Marshall Middle School,00310305,"","","","","", 94.5, 98.1, 97.2,"","","","","", 96.7, 612 +5.150967741935483,5,a-picp-i1,2022-23,Billerica-Parker,00310015, 100.0, 100.0, 100.0, 98.8, 100.0,"","","","","","","","", 99.8, 423 +5.161290322580645,5,a-picp-i1,2022-23,Billerica-Thomas Ditson,00310005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 559 +1.729032258064516,1.73,a-picp-i1,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605,"","","","","","","","","", 17.6, 14.5, 45.0, 58.2, 33.5," 1,221" +5.161290322580645,5,a-picp-i1,2022-23,Blackstone-Millville-A F Maloney,06220015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 253 +4.077419354838709,4.08,a-picp-i1,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505,"","","","","","","","","", 94.4, 75.5, 64.4, 78.6, 79.0, 386 +4.841290322580645,4.84,a-picp-i1,2022-23,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405,"","","","","","", 94.9, 95.3, 90.8,"","","","", 93.8, 356 +5.161290322580645,5,a-picp-i1,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008,"","","", 100.0,"","","","","","","","","", 100.0, 110 +5.145806451612903,5,a-picp-i1,2022-23,Blackstone-Millville-Millville Elementary,06220010, 100.0, 98.7, 100.0,"","","","","","","","","","", 99.7, 296 +1.2180645161290324,1.22,a-picp-i1,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605,"","","","","","","","","", 9.1, 11.3, 30.5, 46.6, 23.6, 902 +4.665806451612903,4.67,a-picp-i1,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305,"","","","","", 96.1, 97.1, 100.0, 100.0, 95.8, 74.0, 89.6, 67.9, 90.4, 712 +0.4645161290322581,1,a-picp-i1,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505,"","","","","","","","","", 12.1, 3.8, 0.0, 9.1, 9.0, 399 +4.118709677419354,4.12,a-picp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305,"","","","","","", 100.0, 96.4, 96.8, 97.6, 96.2, 31.5, 46.9, 79.8, 461 +2.6219354838709674,2.62,a-picp-i1,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305,"","","","","","", 75.0, 75.0, 64.3, 27.2, 35.0, 28.0, 63.0, 50.8, 691 +4.949677419354839,4.95,a-picp-i1,2022-23,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 97.7, 82.5, 99.3, 98.5, 98.4, 100.0, 97.0,"","","","","","", 95.9, 831 +5.135483870967742,5,a-picp-i1,2022-23,Boston-Adams Elementary School,00350302, 100.0, 100.0, 100.0, 100.0, 100.0, 95.7, 100.0,"","","","","","", 99.5, 216 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Alighieri Dante Montessori School,00350066, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 78 +1.9303225806451612,1.93,a-picp-i1,2022-23,Boston-Another Course To College,00350541,"","","","","","","","","", 47.2, 60.7, 16.4, 26.7, 37.4, 235 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Baldwin Early Learning Pilot Academy,00350003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 81 +4.578064516129032,4.58,a-picp-i1,2022-23,Boston-Bates Elementary School,00350278, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 88.7, 248 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Beethoven Elementary School,00350021, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 228 +5.001290322580646,5,a-picp-i1,2022-23,Boston-Blackstone Elementary School,00350390, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0, 78.9,"","","","","","", 96.9, 518 +0.0,1,a-picp-i1,2022-23,Boston-Boston Adult Tech Academy,00350548,"","","","","","","","","","","", 0.0, 0.0, 0.0, 168 +5.12,5,a-picp-i1,2022-23,Boston-Boston Arts Academy,00350546,"","","","","","","","","", 99.3, 100.0, 99.2, 98.1, 99.2, 484 +0.15483870967741936,1,a-picp-i1,2022-23,Boston-Boston Collaborative High School,00350755,"","","","","","","","","", 0.0, 0.0, 3.1, 3.3, 3.0, 133 +3.2,3.2,a-picp-i1,2022-23,Boston-Boston Community Leadership Academy,00350558,"","","","","","","", 72.3, 77.4, 55.6, 66.7, 49.0, 58.3, 62.0, 587 +1.8064516129032258,1.81,a-picp-i1,2022-23,Boston-Boston International High School & Newcomers Academy,00350507,"","","","","","","","","", 32.1, 36.5, 34.2, 41.0, 35.0, 531 +1.7858064516129033,1.79,a-picp-i1,2022-23,Boston-Boston Latin Academy,00350545,"","","","","","","", 98.1, 6.0, 2.2, 1.8, 33.2, 69.2, 34.6," 1,706" +3.344516129032258,3.34,a-picp-i1,2022-23,Boston-Boston Latin School,00350560,"","","","","","","", 99.5, 98.1, 40.5, 35.2, 48.1, 69.0, 64.8," 2,410" +3.2877419354838713,3.29,a-picp-i1,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 51.6, 2.7, 2.1,"","","","", 63.7, 270 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Bradley Elementary School,00350215, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 249 +3.034838709677419,3.03,a-picp-i1,2022-23,Boston-Brighton High School,00350505,"","","","","","","", 100.0, 97.6, 34.2, 69.7, 52.6, 51.4, 58.8, 614 +2.487741935483871,2.49,a-picp-i1,2022-23,Boston-Burke High School,00350525,"","","","","","","", 0.0, 84.0, 23.5, 38.9, 53.8, 65.9, 48.2, 394 +0.0,1,a-picp-i1,2022-23,Boston-Carter School,00350036,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22 +4.789677419354838,4.79,a-picp-i1,2022-23,Boston-Channing Elementary School,00350360, 97.0, 96.8, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 92.8, 152 +1.2696774193548388,1.27,a-picp-i1,2022-23,Boston-Charlestown High School,00350515,"","","","","","","", 34.5, 48.9, 30.5, 22.0, 16.5, 21.3, 24.6, 745 +4.614193548387097,4.61,a-picp-i1,2022-23,Boston-Chittick Elementary School,00350154, 100.0, 94.1, 96.2, 100.0, 100.0, 100.0, 0.0,"","","","","","", 89.4, 180 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Clap Elementary School,00350298, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 91 +2.5238709677419355,2.52,a-picp-i1,2022-23,Boston-Community Academy,00350518,"","","","","","","","","", 33.3, 63.6, 61.5, 35.0, 48.9, 47 +1.4554838709677418,1.46,a-picp-i1,2022-23,Boston-Community Academy of Science and Health,00350581,"","","","","","","","","", 35.1, 27.9, 20.2, 31.7, 28.2, 309 +5.12,5,a-picp-i1,2022-23,Boston-Condon K-8 School,00350146, 100.0, 100.0, 98.1, 95.8, 98.7, 100.0, 100.0, 100.0, 98.9,"","","","", 99.2, 591 +4.113548387096774,4.11,a-picp-i1,2022-23,Boston-Conley Elementary School,00350122, 100.0, 100.0, 100.0, 95.7, 86.7, 86.7, 0.0,"","","","","","", 79.7, 138 +5.156129032258065,5,a-picp-i1,2022-23,Boston-Curley K-8 School,00350020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.8, 100.0,"","","","", 99.9, 825 +3.979354838709677,3.98,a-picp-i1,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074,"","","","","","", 97.6, 95.6, 95.5, 58.4, 59.4, 68.6, 76.6, 77.1, 568 +4.578064516129032,4.58,a-picp-i1,2022-23,Boston-Dever Elementary School,00350268, 100.0, 100.0, 97.7, 100.0, 100.0, 100.0, 29.8,"","","","","","", 88.7, 362 +5.161290322580645,5,a-picp-i1,2022-23,Boston-East Boston Early Education Center,00350009, 100.0, 100.0,"","","","","","","","","","","", 100.0, 95 +1.9200000000000002,1.92,a-picp-i1,2022-23,Boston-East Boston High School,00350530,"","","","","","","", 23.3, 63.5, 2.2, 30.5, 53.6, 51.2, 37.2," 1,274" +4.40258064516129,4.4,a-picp-i1,2022-23,Boston-Edison K-8 School,00350375, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 77.4, 29.5, 33.9,"","","","", 85.3, 585 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Eliot K-8 Innovation School,00350096, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 748 +4.95483870967742,4.95,a-picp-i1,2022-23,Boston-Ellis Elementary School,00350072, 98.0, 100.0, 98.0, 100.0, 72.7, 97.1, 100.0,"","","","","","", 96.0, 298 +5.12,5,a-picp-i1,2022-23,Boston-Ellison-Parks Early Education School,00350008, 100.0, 100.0, 97.2, 100.0,"","","","","","","","","", 99.2, 132 +2.771612903225807,2.77,a-picp-i1,2022-23,Boston-English High School,00350535,"","","","","","","", 100.0, 54.2, 55.3, 45.0, 40.0, 58.6, 53.7, 641 +4.454193548387097,4.45,a-picp-i1,2022-23,Boston-Everett Elementary School,00350088, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 86.3, 262 +3.225806451612903,3.23,a-picp-i1,2022-23,Boston-Excel High School,00350522,"","","","","","","","","", 89.9, 38.6, 51.4, 68.0, 62.5, 392 +1.6516129032258065,1.65,a-picp-i1,2022-23,Boston-Fenway High School,00350540,"","","","","","","","","", 29.8, 49.5, 0.0, 44.6, 32.0, 363 +4.836129032258064,4.84,a-picp-i1,2022-23,Boston-Frederick Pilot Middle School,00350383,"","","","","","", 93.0, 92.1, 95.4,"","","","", 93.7, 365 +2.198709677419355,2.2,a-picp-i1,2022-23,Boston-Gardner Pilot Academy,00350326, 100.0, 97.3, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 42.6, 352 +2.7303225806451614,2.73,a-picp-i1,2022-23,Boston-Greater Egleston High School,00350543,"","","","","","","","","", 100.0, 62.5, 70.0, 43.6, 52.9, 85 +5.145806451612903,5,a-picp-i1,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.7, 342 +4.774193548387097,4.77,a-picp-i1,2022-23,Boston-Grew Elementary School,00350135, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 92.5, 186 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Guild Elementary School,00350062, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 219 +4.418064516129032,4.42,a-picp-i1,2022-23,Boston-Hale Elementary School,00350243, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 85.6, 146 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Haley Pilot School,00350077, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 331 +5.027096774193549,5,a-picp-i1,2022-23,Boston-Harvard-Kent Elementary School,00350200, 100.0, 100.0, 95.5, 100.0, 100.0, 97.5, 0.0,"","","","","","", 97.4, 265 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Haynes Early Education Center,00350010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Henderson K-12 Inclusion School Lower,00350266, 100.0, 100.0,"","","","","","","","","","","", 100.0, 123 +3.855483870967742,3.86,a-picp-i1,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426,"","", 100.0, 100.0, 100.0, 100.0, 98.2, 97.0, 97.0, 0.0, 33.8, 88.1, 37.0, 74.7, 664 +5.016774193548387,5,a-picp-i1,2022-23,Boston-Hennigan K-8 School,00350153, 100.0, 100.0, 100.0, 94.5, 97.4, 86.9, 100.0, 97.5, 100.0,"","","","", 97.2, 541 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Hernandez K-8 School,00350691, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 377 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 86 +5.135483870967742,5,a-picp-i1,2022-23,Boston-Higginson-Lewis K-8 School,00350377,"","","", 100.0, 100.0, 96.8, 100.0, 100.0, 100.0,"","","","", 99.5, 183 +5.140645161290323,5,a-picp-i1,2022-23,Boston-Holmes Elementary School,00350138, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 96.7,"","","","","","", 99.6, 253 +4.201290322580645,4.2,a-picp-i1,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 100.0, 100.0, 100.0,"", 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 33.3, 66.7, 40.0, 81.4, 59 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Hurley K-8 School,00350182, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 325 +5.073548387096774,5,a-picp-i1,2022-23,Boston-Kennedy John F Elementary School,00350166, 98.0, 100.0, 98.0, 95.4, 100.0, 100.0, 97.6,"","","","","","", 98.3, 361 +4.758709677419355,4.76,a-picp-i1,2022-23,Boston-Kennedy Patrick J Elementary School,00350264, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 9.5,"","","","","","", 92.2, 243 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Kenny Elementary School,00350328, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 296 +5.114838709677419,5,a-picp-i1,2022-23,Boston-Kilmer K-8 School,00350190, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 91.9, 100.0, 100.0,"","","","", 99.1, 346 +4.072258064516129,4.07,a-picp-i1,2022-23,Boston-King Elementary School,00350376, 86.9, 98.4, 100.0, 26.5, 98.4, 97.6, 0.0,"","","","","","", 78.9, 370 +0.0,1,a-picp-i1,2022-23,Boston-Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","", 0.0, 130 +3.664516129032258,3.66,a-picp-i1,2022-23,Boston-Lee K-8 School,00350183, 65.4, 90.7, 81.8, 92.2, 91.8, 86.5, 46.5, 48.6, 0.0,"","","","", 71.0, 441 +4.252903225806452,4.25,a-picp-i1,2022-23,Boston-Lyndon K-8 School,00350262, 100.0, 100.0, 100.0, 100.0, 90.8, 95.0, 46.0, 42.1, 21.9,"","","","", 82.4, 511 +4.913548387096775,4.91,a-picp-i1,2022-23,Boston-Lyon High School,00350655,"","","","","","","","","", 100.0, 100.0, 82.8, 100.0, 95.2, 105 +5.078709677419355,5,a-picp-i1,2022-23,Boston-Lyon K-8 School,00350004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 91.7, 96.6,"","","","", 98.4, 129 +0.4696774193548387,1,a-picp-i1,2022-23,Boston-Madison Park Technical Vocational High School,00350537,"","","","","","","","","", 4.8, 6.5, 14.9, 11.6, 9.1," 1,019" +4.4799999999999995,4.48,a-picp-i1,2022-23,Boston-Manning Elementary School,00350184, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 86.8, 144 +4.40258064516129,4.4,a-picp-i1,2022-23,Boston-Margarita Muniz Academy,00350549,"","","","","","","","","", 81.9, 70.1, 96.8, 95.7, 85.3, 293 +5.140645161290323,5,a-picp-i1,2022-23,Boston-Mario Umana Academy,00350656, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 98.8,"","","","", 99.6, 570 +4.4232258064516135,4.42,a-picp-i1,2022-23,Boston-Mason Elementary School,00350304, 100.0, 100.0, 100.0, 96.6, 100.0, 0.0,"","","","","","","", 85.7, 161 +4.95483870967742,4.95,a-picp-i1,2022-23,Boston-Mather Elementary School,00350227, 76.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 96.0, 428 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Mattahunt Elementary School,00350016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Boston-McKay K-8 School,00350080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 654 +5.047741935483871,5,a-picp-i1,2022-23,Boston-McKinley Schools,00350363,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 94.7, 91.3, 97.8, 138 +4.495483870967742,4.5,a-picp-i1,2022-23,Boston-Mendell Elementary School,00350100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 87.1, 279 +2.2761290322580647,2.28,a-picp-i1,2022-23,Boston-Mildred Avenue K-8 School,00350378, 0.0, 93.8, 100.0, 95.5, 96.9, 74.7, 20.2, 9.3, 6.5,"","","","", 44.1, 590 +5.089032258064516,5,a-picp-i1,2022-23,Boston-Mozart Elementary School,00350237, 100.0, 100.0, 95.7, 100.0, 100.0, 95.0, 100.0,"","","","","","", 98.6, 147 +4.598709677419355,4.6,a-picp-i1,2022-23,Boston-Murphy K-8 School,00350240, 0.0, 93.8, 98.8, 96.7, 94.3, 99.0, 99.2, 91.7, 95.9,"","","","", 89.1, 787 +3.034838709677419,3.03,a-picp-i1,2022-23,Boston-New Mission High School,00350542,"","","","","","","", 98.2, 100.0, 82.1, 40.2, 31.0, 28.1, 58.8, 599 +3.2929032258064517,3.29,a-picp-i1,2022-23,Boston-O'Bryant School of Math & Science,00350575,"","","","","","","", 97.6, 75.4, 96.9, 41.8, 37.2, 53.1, 63.8," 1,543" +3.3806451612903228,3.38,a-picp-i1,2022-23,Boston-O'Donnell Elementary School,00350141, 0.0, 100.0, 100.0, 100.0, 100.0, 61.0, 0.0,"","","","","","", 65.5, 275 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Ohrenberger School,00350258,"","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 480 +5.094193548387097,5,a-picp-i1,2022-23,Boston-Orchard Gardens K-8 School,00350257, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 94.0, 100.0, 95.6,"","","","", 98.7, 671 +4.438709677419355,4.44,a-picp-i1,2022-23,Boston-Otis Elementary School,00350156, 100.0, 100.0, 100.0, 69.4, 100.0, 100.0, 0.0,"","","","","","", 86.0, 364 +4.418064516129032,4.42,a-picp-i1,2022-23,Boston-Perkins Elementary School,00350231, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 85.6, 146 +4.815483870967742,4.82,a-picp-i1,2022-23,Boston-Perry Elementary School,00350255, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 93.3, 149 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Philbrick Elementary School,00350172, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 101 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Quincy Elementary School,00350286, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 667 +5.130322580645162,5,a-picp-i1,2022-23,Boston-Quincy Upper School,00350565,"","","","","","", 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 96.9, 99.4, 538 +5.078709677419355,5,a-picp-i1,2022-23,Boston-Roosevelt K-8 School,00350116, 100.0, 100.0, 100.0, 100.0, 95.5, 100.0, 97.4, 97.2, 97.7,"","","","", 98.4, 314 +5.1251612903225805,5,a-picp-i1,2022-23,Boston-Russell Elementary School,00350366, 100.0, 96.2, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.3, 307 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Shaw Elementary School,00350014, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 137 +3.509677419354839,3.51,a-picp-i1,2022-23,Boston-Snowden International High School,00350690,"","","","","","","","","", 92.6, 92.0, 57.4, 22.0, 68.0, 435 +4.655483870967742,4.66,a-picp-i1,2022-23,Boston-Sumner Elementary School,00350052, 100.0, 100.0, 100.0, 100.0, 98.8, 95.1, 0.0,"","","","","","", 90.2, 480 +3.5251612903225804,3.53,a-picp-i1,2022-23,Boston-Taylor Elementary School,00350054, 100.0, 100.0, 100.0, 84.4, 37.3, 54.1, 2.6,"","","","","","", 68.3, 347 +3.112258064516129,3.11,a-picp-i1,2022-23,Boston-TechBoston Academy,00350657,"","","","","","", 81.8, 86.7, 85.2, 56.9, 42.4, 38.0, 53.8, 60.3, 892 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Tobin K-8 School,00350229, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 390 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Trotter Elementary School,00350370, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 254 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Tynan Elementary School,00350181, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 167 +5.140645161290323,5,a-picp-i1,2022-23,Boston-UP Academy Holland,00350167, 98.8, 100.0, 100.0, 100.0, 99.0, 100.0,"","","","","","","", 99.6, 555 +4.934193548387096,4.93,a-picp-i1,2022-23,Boston-Warren-Prescott K-8 School,00350346, 91.3, 92.1, 95.5, 96.0, 96.6, 96.2, 100.0, 100.0, 100.0,"","","","", 95.6, 456 +5.161290322580645,5,a-picp-i1,2022-23,Boston-West Zone Early Learning Center,00350006, 100.0, 100.0,"","","","","","","","","","","", 100.0, 57 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Winship Elementary School,00350374, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 287 +5.058064516129032,5,a-picp-i1,2022-23,Boston-Winthrop Elementary School,00350180, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 81.8,"","","","","","", 98.0, 201 +3.6593548387096777,3.66,a-picp-i1,2022-23,Boston-Young Achievers K-8 School,00350380, 100.0, 100.0, 96.1, 100.0, 98.5, 100.0, 0.0, 10.3, 0.0,"","","","", 70.9, 461 +3.0503225806451613,3.05,a-picp-i1,2022-23,Bourne-Bourne High School,00360505,"","","","","","","","","", 78.8, 43.2, 45.2, 69.3, 59.1, 347 +5.161290322580645,5,a-picp-i1,2022-23,Bourne-Bourne Intermediate School,00360030,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 380 +5.078709677419355,5,a-picp-i1,2022-23,Bourne-Bourne Middle School,00360325,"","","","","","", 99.3, 98.7, 97.4,"","","","", 98.4, 444 +5.161290322580645,5,a-picp-i1,2022-23,Bourne-Bournedale Elementary School,00360005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 337 +5.161290322580645,5,a-picp-i1,2022-23,Boxford-Harry Lee Cole,00380005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 309 +5.161290322580645,5,a-picp-i1,2022-23,Boxford-Spofford Pond,00380013,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 384 +5.145806451612903,5,a-picp-i1,2022-23,Braintree-Archie T Morrison,00400033, 100.0, 98.6, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 300 +3.0451612903225804,3.05,a-picp-i1,2022-23,Braintree-Braintree High,00400505,"","","","","","","","","", 50.0, 79.5, 54.6, 50.5, 59.0," 1,620" +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Donald Ross,00400050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 203 +4.572903225806451,4.57,a-picp-i1,2022-23,Braintree-East Middle School,00400305,"","","","","", 76.3, 95.8, 96.3, 85.2,"","","","", 88.6, 988 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Highlands,00400015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 411 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Hollis,00400005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Liberty,00400025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 360 +4.567741935483871,4.57,a-picp-i1,2022-23,Braintree-Mary E Flaherty School,00400020, 95.7, 86.9, 89.1, 88.2, 87.7,"","","","","","","","", 88.5, 295 +4.95483870967742,4.95,a-picp-i1,2022-23,Braintree-Monatiquot Kindergarten Center,00400009, 96.0,"","","","","","","","","","","","", 96.0, 200 +4.903225806451613,4.9,a-picp-i1,2022-23,Braintree-South Middle School,00400310,"","","","","","", 96.9, 98.8, 89.7,"","","","", 95.0, 519 +5.161290322580645,5,a-picp-i1,2022-23,Brewster-Eddy Elementary,00410010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 202 +5.161290322580645,5,a-picp-i1,2022-23,Brewster-Stony Brook Elementary,00410005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 194 +5.161290322580645,5,a-picp-i1,2022-23,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 302 +4.980645161290322,4.98,a-picp-i1,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320,"","","","","","", 98.0, 94.2, 97.2,"","","","", 96.5, 763 +1.0838709677419356,1.08,a-picp-i1,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505,"","","","","","","","","", 25.8, 19.1, 14.2, 25.2, 21.0," 1,392" +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 498 +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 357 +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 813 +5.1251612903225805,5,a-picp-i1,2022-23,Bridgewater-Raynham-Raynham Middle School,06250315,"","","","","", 99.4, 100.0, 99.0, 98.8,"","","","", 99.3, 729 +0.0,1,a-picp-i1,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415,"","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9 +5.058064516129032,5,a-picp-i1,2022-23,Bridgewater-Raynham-Williams Intermediate School,06250300,"","","", 98.1, 100.0, 95.8,"","","","","","","", 98.0, 803 +4.433548387096774,4.43,a-picp-i1,2022-23,Brimfield-Brimfield Elementary,00430005, 0.0, 94.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 85.9, 255 +0.0,1,a-picp-i1,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 550 +1.0219354838709678,1.02,a-picp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605,"","","","","","","","","", 53.2, 7.9, 9.7, 5.7, 19.8," 1,309" +5.130322580645162,5,a-picp-i1,2022-23,Brockton-Ashfield Middle School,00440421,"","","","","","", 99.4, 98.7, 100.0,"","","","", 99.4, 470 +2.6425806451612903,2.64,a-picp-i1,2022-23,Brockton-Brockton Champion High School,00440515,"","","","","","","","","", 55.8, 42.1, 57.1, 52.0, 51.2, 129 +2.9419354838709677,2.94,a-picp-i1,2022-23,Brockton-Brockton High,00440505,"","","","","","","","","", 48.2, 55.0, 58.7, 70.6, 57.0," 3,601" +4.454193548387097,4.45,a-picp-i1,2022-23,Brockton-Brockton Virtual Learning Academy,00440705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 38.5, 68.2, 100.0, 100.0, 86.3, 168 +5.150967741935483,5,a-picp-i1,2022-23,Brockton-Brookfield,00440010, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 411 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Downey,00440110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 512 +5.145806451612903,5,a-picp-i1,2022-23,Brockton-Dr W Arnone Community School,00440001, 100.0, 100.0, 100.0, 98.2, 100.0, 100.0,"","","","","","","", 99.7, 703 +5.063225806451612,5,a-picp-i1,2022-23,Brockton-East Middle School,00440405,"","","","","","", 97.6, 97.9, 98.8,"","","","", 98.1, 473 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Edgar B Davis,00440023, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 935 +0.3251612903225806,1,a-picp-i1,2022-23,Brockton-Edison Academy,00440520,"","","","","","","","","", 2.4, 7.3, 8.7, 6.7, 6.3, 239 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Gilmore Elementary School,00440055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Hancock,00440045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 603 +4.572903225806451,4.57,a-picp-i1,2022-23,Brockton-Huntington Therapeutic Day School,00440400,"","","","","","","", 100.0, 100.0, 75.0, 90.0, 88.9, 66.7, 88.6, 35 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-John F Kennedy,00440017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 546 +5.156129032258065,5,a-picp-i1,2022-23,Brockton-Louis F Angelo Elementary,00440065, 100.0, 100.0, 99.2, 100.0, 100.0, 100.0,"","","","","","","", 99.9, 816 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Manthala George Jr. School,00440003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 717 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Mary E. Baker School,00440002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 685 +5.114838709677419,5,a-picp-i1,2022-23,Brockton-North Middle School,00440410,"","","","","","", 98.1, 99.2, 100.0,"","","","", 99.1, 441 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Oscar F Raymond,00440078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 764 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-PROMISE College and Career Academy,00440525,"","","","","","","","","", 100.0,"","","", 100.0, 37 +5.094193548387097,5,a-picp-i1,2022-23,Brockton-Plouffe Middle School,00440422,"","","","","","", 98.5, 98.4, 99.2,"","","","", 98.7, 686 +5.104516129032258,5,a-picp-i1,2022-23,Brockton-South Middle School,00440415,"","","","","","", 99.4, 98.9, 98.3,"","","","", 98.9, 527 +5.114838709677419,5,a-picp-i1,2022-23,Brockton-West Middle School,00440420,"","","","","","", 99.4, 99.5, 98.4,"","","","", 99.1, 558 +4.464516129032258,4.46,a-picp-i1,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 98.4, 99.5, 99.0, 99.0, 100.0, 99.0, 98.4, 98.9, 100.0, 1.9, 78.8, 21.7, 90.8, 86.5," 2,215" +4.443870967741935,4.44,a-picp-i1,2022-23,Brookfield-Brookfield Elementary,00450005, 0.0, 100.0, 100.0, 100.0, 100.0, 97.5, 100.0,"","","","","","", 86.1, 266 +2.9883870967741935,2.99,a-picp-i1,2022-23,Brookline-Brookline High,00460505,"","","","","","","","","", 67.8, 67.3, 47.8, 47.2, 57.9," 2,062" +5.130322580645162,5,a-picp-i1,2022-23,Brookline-Edith C Baker,00460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6, 100.0, 96.5,"","","","", 99.4, 677 +5.130322580645162,5,a-picp-i1,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 100.0, 100.0, 100.0, 100.0, 96.4, 100.0, 98.8, 98.9, 100.0,"","","","", 99.4, 821 +5.150967741935483,5,a-picp-i1,2022-23,Brookline-Heath,00460025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0,"","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-John D Runkle,00460045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 488 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Lawrence,00460030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 618 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Michael Driscoll,00460020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 469 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Pierce,00460040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 691 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-William H Lincoln,00460035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 478 +1.7393548387096776,1.74,a-picp-i1,2022-23,Burlington-Burlington High,00480505,"","","","","","","","","", 34.1, 37.7, 29.9, 32.9, 33.7, 901 +5.1251612903225805,5,a-picp-i1,2022-23,Burlington-Fox Hill,00480007, 98.4, 100.0, 100.0, 100.0, 97.4, 100.0,"","","","","","","", 99.3, 432 +5.161290322580645,5,a-picp-i1,2022-23,Burlington-Francis Wyman Elementary,00480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 495 +4.975483870967742,4.98,a-picp-i1,2022-23,Burlington-Marshall Simonds Middle,00480303,"","","","","","", 94.9, 96.8, 97.7,"","","","", 96.4, 838 +5.135483870967742,5,a-picp-i1,2022-23,Burlington-Memorial,00480015, 100.0, 98.7, 100.0, 100.0, 98.5, 100.0,"","","","","","","", 99.5, 398 +5.161290322580645,5,a-picp-i1,2022-23,Burlington-Pine Glen Elementary,00480020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Amigos School,00490006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 376 +2.7148387096774194,2.71,a-picp-i1,2022-23,Cambridge-Cambridge Rindge and Latin,00490506,"","","","","","","","","", 57.1, 51.1, 57.0, 45.6, 52.6," 1,889" +5.1251612903225805,5,a-picp-i1,2022-23,Cambridge-Cambridge Street Upper School,00490305,"","","","","","", 100.0, 100.0, 98.0,"","","","", 99.3, 295 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Cambridgeport,00490007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Graham and Parks,00490080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 340 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Haggerty,00490020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-John M Tobin,00490065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 205 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Kennedy-Longfellow,00490040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 189 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-King Open,00490035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Maria L. Baldwin,00490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Martin Luther King Jr.,00490030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 284 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Morse,00490045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 240 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Peabody,00490050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 271 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Putnam Avenue Upper School,00490310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 246 +5.0116129032258065,5,a-picp-i1,2022-23,Cambridge-Rindge Avenue Upper School,00490315,"","","","","","", 99.0, 100.0, 92.2,"","","","", 97.1, 277 +5.140645161290323,5,a-picp-i1,2022-23,Cambridge-Vassal Lane Upper School,00490320,"","","","","","", 99.0, 100.0, 100.0,"","","","", 99.6, 281 +3.938064516129032,3.94,a-picp-i1,2022-23,Canton-Canton High,00500505,"","","","","","","","","", 91.6, 85.3, 55.2, 68.8, 76.3, 899 +5.161290322580645,5,a-picp-i1,2022-23,Canton-Dean S Luce,00500020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.161290322580645,5,a-picp-i1,2022-23,Canton-John F Kennedy,00500017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 476 +5.104516129032258,5,a-picp-i1,2022-23,Canton-Lt Peter M Hansen,00500012, 97.6, 97.8, 100.0, 100.0, 97.7, 100.0,"","","","","","","", 98.9, 536 +5.063225806451612,5,a-picp-i1,2022-23,Canton-Wm H Galvin Middle,00500305,"","","","","","", 98.4, 98.1, 97.9,"","","","", 98.1, 749 +5.12,5,a-picp-i1,2022-23,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530,"","","","","","", 100.0, 100.0, 97.5,"","","","", 99.2, 249 +1.0787096774193548,1.08,a-picp-i1,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605,"","","","","","","","","", 37.0, 25.0, 7.0, 11.8, 20.9, 675 +5.161290322580645,5,a-picp-i1,2022-23,Carlisle-Carlisle School,00510025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 592 +5.161290322580645,5,a-picp-i1,2022-23,Carver-Carver Elementary School,00520015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 722 +3.8193548387096774,3.82,a-picp-i1,2022-23,Carver-Carver Middle/High School,00520405,"","","","","","", 97.9, 98.4, 93.3, 53.7, 52.4, 61.5, 34.1, 74.0, 762 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Becket Washington School,06350005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 88 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Craneville,06350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 442 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Kittredge,06350035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 123 +5.130322580645162,5,a-picp-i1,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305,"","","","","","", 100.0, 99.1, 99.2,"","","","", 99.4, 349 +2.209032258064516,2.21,a-picp-i1,2022-23,Central Berkshire-Wahconah Regional High,06350505,"","","","","","","","","", 46.8, 36.4, 36.9, 53.2, 42.8, 484 +5.150967741935483,5,a-picp-i1,2022-23,Chelmsford-Byam School,00560030, 99.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 507 +5.140645161290323,5,a-picp-i1,2022-23,Chelmsford-Center Elementary School,00560005, 98.9, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 495 +5.12,5,a-picp-i1,2022-23,Chelmsford-Charles D Harrington,00560025, 96.3, 98.9, 100.0, 100.0, 100.0,"","","","","","","","", 99.2, 472 +3.2361290322580647,3.24,a-picp-i1,2022-23,Chelmsford-Chelmsford High,00560505,"","","","","","","","","", 65.9, 68.6, 57.8, 58.1, 62.7," 1,366" +5.027096774193549,5,a-picp-i1,2022-23,Chelmsford-Col Moses Parker School,00560305,"","","","","", 96.6, 97.2, 97.2, 98.4,"","","","", 97.4, 730 +5.047741935483871,5,a-picp-i1,2022-23,Chelmsford-McCarthy Middle School,00560310,"","","","","", 99.1, 99.1, 98.6, 94.3,"","","","", 97.8, 854 +5.140645161290323,5,a-picp-i1,2022-23,Chelmsford-South Row,00560015, 97.6, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 473 +2.678709677419355,2.68,a-picp-i1,2022-23,Chelsea-Chelsea High,00570505,"","","","","","","","","", 46.9, 55.0, 53.7, 54.0, 51.9," 1,668" +0.0,1,a-picp-i1,2022-23,Chelsea-Chelsea Opportunity Academy,00570515,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 79 +0.11870967741935483,1,a-picp-i1,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.5, 0.0, 2.3, 44 +5.052903225806452,5,a-picp-i1,2022-23,Chelsea-Clark Avenue School,00570050,"","","","","", 98.1, 97.1, 97.7, 98.4,"","","","", 97.9, 699 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Edgar A Hooks Elementary,00570030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 502 +4.990967741935484,4.99,a-picp-i1,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045,"","","","","", 96.0, 98.0, 97.4, 95.7,"","","","", 96.7, 457 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Frank M Sokolowski Elementary,00570040,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 497 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-George F. Kelly Elementary,00570035,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 478 +4.96,4.96,a-picp-i1,2022-23,Chelsea-Joseph A. Browne School,00570055,"","","","","", 96.1, 97.5, 96.4, 94.7,"","","","", 96.1, 537 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 574 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-William A Berkowitz Elementary,00570025,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 449 +5.161290322580645,5,a-picp-i1,2022-23,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 129 +5.145806451612903,5,a-picp-i1,2022-23,Chicopee-Barry,00610003, 100.0, 100.0, 100.0, 100.0, 100.0, 98.5,"","","","","","","", 99.7, 362 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Belcher,00610010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 193 +2.833548387096774,2.83,a-picp-i1,2022-23,Chicopee-Bellamy Middle,00610305,"","","","","","", 69.3, 34.8, 61.8,"","","","", 54.9, 807 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Bowe,00610015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 413 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Bowie,00610020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 273 +3.349677419354839,3.35,a-picp-i1,2022-23,Chicopee-Chicopee Academy,00610021,"","","","","","","", 85.7, 83.3, 88.9, 75.0, 76.9, 11.8, 64.9, 74 +3.241290322580645,3.24,a-picp-i1,2022-23,Chicopee-Chicopee Comprehensive High School,00610510,"","","","","","","","","", 69.7, 65.1, 45.2, 70.5, 62.8," 1,202" +3.7625806451612904,3.76,a-picp-i1,2022-23,Chicopee-Chicopee High,00610505,"","","","","","","","","", 63.5, 80.6, 74.3, 74.9, 72.9, 916 +2.503225806451613,2.5,a-picp-i1,2022-23,Chicopee-Dupont Middle,00610310,"","","","","","", 87.1, 47.5, 8.2,"","","","", 48.5, 699 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Fairview Elementary,00610050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 345 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Gen John J Stefanik,00610090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Lambert-Lavoie,00610040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 235 +5.114838709677419,5,a-picp-i1,2022-23,Chicopee-Litwin,00610022, 100.0, 100.0, 100.0, 97.2, 100.0, 100.0,"","","","","","","", 99.1, 338 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Streiber Memorial School,00610065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +4.691612903225807,4.69,a-picp-i1,2022-23,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305,"","","","","","", 100.0, 94.5, 78.3,"","","","", 90.9, 329 +1.5741935483870968,1.57,a-picp-i1,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505,"","","","","","","","","", 97.7, 4.7, 0.0, 34.2, 30.5, 190 +4.655483870967742,4.66,a-picp-i1,2022-23,Clarksburg-Clarksburg Elementary,00630010, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 90.2, 174 +5.063225806451612,5,a-picp-i1,2022-23,Clinton-Clinton Elementary,00640050, 98.5, 96.8, 98.7, 99.3, 97.6,"","","","","","","","", 98.1, 753 +5.150967741935483,5,a-picp-i1,2022-23,Clinton-Clinton Middle School,00640305,"","","","","", 99.2, 100.0, 100.0, 100.0,"","","","", 99.8, 556 +1.3264516129032258,1.33,a-picp-i1,2022-23,Clinton-Clinton Senior High,00640505,"","","","","","","","","", 17.2, 37.1, 33.1, 16.8, 25.7, 556 +2.4980645161290322,2.5,a-picp-i1,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 18.9, 3.1, 7.1, 48.4, 318 +4.794838709677419,4.79,a-picp-i1,2022-23,Cohasset-Cohasset High School,00650505,"","","","","","","","","", 97.4, 95.2, 92.9, 86.2, 92.9, 434 +4.985806451612903,4.99,a-picp-i1,2022-23,Cohasset-Cohasset Middle School,00650305,"","","","","","", 93.7, 100.0, 97.0,"","","","", 96.6, 298 +5.161290322580645,5,a-picp-i1,2022-23,Cohasset-Deer Hill,00650005,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 306 +5.161290322580645,5,a-picp-i1,2022-23,Cohasset-Joseph Osgood,00650010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 347 +4.903225806451613,4.9,a-picp-i1,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 95.0," 1,169" +2.9832258064516126,2.98,a-picp-i1,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305,"","","","","","", 100.0, 95.2, 100.0, 100.0, 2.0, 19.1, 22.2, 57.8, 258 +0.0,1,a-picp-i1,2022-23,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0," 1,085" +5.161290322580645,5,a-picp-i1,2022-23,Concord-Alcott,00670005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 403 +2.5238709677419355,2.52,a-picp-i1,2022-23,Concord-Carlisle-Concord Carlisle High,06400505,"","","","","","","","","", 72.8, 48.8, 32.1, 42.5, 48.9," 1,314" +5.0683870967741935,5,a-picp-i1,2022-23,Concord-Concord Middle,00670305,"","","","","","", 99.5, 97.8, 97.2,"","","","", 98.2, 656 +5.161290322580645,5,a-picp-i1,2022-23,Concord-Thoreau,00670020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 418 +5.161290322580645,5,a-picp-i1,2022-23,Concord-Willard,00670030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 433 +5.145806451612903,5,a-picp-i1,2022-23,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 100.0, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","", 99.7, 396 +5.161290322580645,5,a-picp-i1,2022-23,Conway-Conway Grammar,00680005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 119 +3.5922580645161286,3.59,a-picp-i1,2022-23,Danvers-Danvers High,00710505,"","","","","","","","","", 69.1, 75.3, 70.6, 63.5, 69.6, 766 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Great Oak,00710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Highlands,00710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.073548387096774,5,a-picp-i1,2022-23,Danvers-Holten Richmond Middle School,00710305,"","","","","","", 99.6, 97.6, 97.8,"","","","", 98.3, 781 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Ivan G Smith,00710032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Riverside,00710030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 260 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Willis E Thorpe,00710045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-Andrew B. Cushman School,00720005, 100.0,"","","","","","","","","","","","", 100.0, 54 +3.5509677419354837,3.55,a-picp-i1,2022-23,Dartmouth-Dartmouth High,00720505,"","","","","","","","","", 84.4, 65.9, 53.8, 72.2, 68.8, 990 +4.516129032258065,4.52,a-picp-i1,2022-23,Dartmouth-Dartmouth Middle,00720050,"","","","","","", 92.1, 88.3, 82.3,"","","","", 87.5, 805 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-George H Potter,00720030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-James M. Quinn School,00720040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 706 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-Joseph Demello,00720015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.1251612903225805,5,a-picp-i1,2022-23,Dedham-Avery,00730010,"", 98.5, 98.6, 100.0, 100.0, 100.0,"","","","","","","", 99.3, 294 +2.6683870967741936,2.67,a-picp-i1,2022-23,Dedham-Dedham High,00730505,"","","","","","","","","", 58.2, 40.3, 43.9, 65.3, 51.7, 722 +4.96,4.96,a-picp-i1,2022-23,Dedham-Dedham Middle School,00730305,"","","","","","", 96.4, 95.3, 96.6,"","","","", 96.1, 565 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Early Childhood Center,00730005, 100.0,"","","","","","","","","","","","", 100.0, 210 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Greenlodge,00730025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 281 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Oakdale,00730030,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 245 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Riverdale,00730045,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 182 +5.161290322580645,5,a-picp-i1,2022-23,Deerfield-Deerfield Elementary,00740015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 300 +5.140645161290323,5,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050,"","","","", 99.2, 100.0,"","","","","","","", 99.6, 458 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305,"","","","","","", 100.0, 100.0,"","","","","", 100.0, 482 +4.139354838709678,4.14,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505,"","","","","","","","", 95.6, 81.0, 78.9, 71.1, 69.3, 80.2, 899 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 295 +5.135483870967742,5,a-picp-i1,2022-23,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 100.0, 100.0, 98.1, 100.0,"","","","","","","","","", 99.5, 220 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Station Avenue Elementary,06450025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 417 +5.150967741935483,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 100.0, 98.8, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 433 +5.161290322580645,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton Middle School,06500305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 369 +3.303225806451613,3.3,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505,"","","","","","","","","", 66.7, 63.2, 60.9, 65.2, 64.0, 663 +5.150967741935483,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310,"","","","","", 100.0, 100.0, 99.1, 100.0,"","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Dighton-Rehoboth-Palmer River,06500010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 570 +5.161290322580645,5,a-picp-i1,2022-23,Douglas-Douglas Elementary School,00770015,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 346 +3.184516129032258,3.18,a-picp-i1,2022-23,Douglas-Douglas High School,00770505,"","","","","","","","","", 58.1, 60.0, 68.1, 59.6, 61.7, 324 +5.042580645161291,5,a-picp-i1,2022-23,Douglas-Douglas Middle School,00770305,"","","","","","", 98.2, 97.0, 97.9,"","","","", 97.7, 304 +5.161290322580645,5,a-picp-i1,2022-23,Douglas-Douglas Primary School,00770005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 160 +5.161290322580645,5,a-picp-i1,2022-23,Dover-Chickering,00780005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 496 +4.232258064516129,4.23,a-picp-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505,"","","","","","","","","", 94.6, 81.5, 79.1, 70.5, 82.0, 667 +5.150967741935483,5,a-picp-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405,"","","","","","", 100.0, 99.3, 100.0,"","","","", 99.8, 481 +5.150967741935483,5,a-picp-i1,2022-23,Dracut-Brookside Elementary,00790035, 100.0, 100.0, 100.0, 100.0, 98.7, 100.0,"","","","","","","", 99.8, 478 +2.6270967741935483,2.63,a-picp-i1,2022-23,Dracut-Dracut Senior High,00790505,"","","","","","","","","", 48.3, 49.5, 54.1, 52.3, 50.9, 849 +5.161290322580645,5,a-picp-i1,2022-23,Dracut-George H. Englesby Elementary School,00790045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 548 +5.161290322580645,5,a-picp-i1,2022-23,Dracut-Greenmont Avenue,00790030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 235 +4.944516129032258,4.94,a-picp-i1,2022-23,Dracut-Joseph A Campbell Elementary,00790020, 93.5, 95.7, 96.0, 94.7, 96.0, 98.0,"","","","","","","", 95.8, 566 +4.9961290322580645,5.0,a-picp-i1,2022-23,Dracut-Justus C. Richardson Middle School,00790410,"","","","","","", 97.4, 96.5, 96.5,"","","","", 96.8, 874 +0.0,1,a-picp-i1,2022-23,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","", 0.0, 250 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Charlton Elementary,06580020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 269 +5.145806451612903,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Charlton Middle School,06580310,"","","","","", 100.0, 99.3, 100.0, 99.3,"","","","", 99.7, 604 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Dudley Elementary,06580005,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 342 +5.140645161290323,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305,"","","","","", 100.0, 100.0, 99.3, 99.3,"","","","", 99.6, 566 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Heritage School,06580030,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 449 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 182 +2.6425806451612903,2.64,a-picp-i1,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505,"","","","","","","","","", 50.2, 51.6, 44.8, 58.3, 51.2, 932 +5.161290322580645,5,a-picp-i1,2022-23,Duxbury-Alden School,00820004,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 598 +5.161290322580645,5,a-picp-i1,2022-23,Duxbury-Chandler Elementary,00820006, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 601 +3.52,3.52,a-picp-i1,2022-23,Duxbury-Duxbury High,00820505,"","","","","","","","","", 78.3, 72.6, 55.3, 67.0, 68.2, 920 +4.712258064516129,4.71,a-picp-i1,2022-23,Duxbury-Duxbury Middle,00820305,"","","","","","", 99.5, 96.4, 76.6,"","","","", 91.3, 620 +5.161290322580645,5,a-picp-i1,2022-23,East Bridgewater-Central,00830005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 421 +4.8103225806451615,4.81,a-picp-i1,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505,"","","","","","","", 98.2, 99.4, 99.4, 97.0, 84.2, 80.6, 93.2, 916 +5.114838709677419,5,a-picp-i1,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010,"","","", 100.0, 100.0, 98.2, 98.2,"","","","","","", 99.1, 638 +4.495483870967742,4.5,a-picp-i1,2022-23,East Longmeadow-Birchland Park,00870305,"","","","","","", 84.6, 86.1, 90.8,"","","","", 87.1, 598 +2.3793548387096775,2.38,a-picp-i1,2022-23,East Longmeadow-East Longmeadow High,00870505,"","","","","","","","","", 37.1, 60.1, 50.0, 38.9, 46.1, 811 +5.161290322580645,5,a-picp-i1,2022-23,East Longmeadow-Mapleshade,00870010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 290 +5.140645161290323,5,a-picp-i1,2022-23,East Longmeadow-Meadow Brook,00870013, 99.4, 100.0, 99.4,"","","","","","","","","","", 99.6, 501 +5.161290322580645,5,a-picp-i1,2022-23,East Longmeadow-Mountain View,00870015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2022-23,Eastham-Eastham Elementary,00850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 184 +2.9419354838709677,2.94,a-picp-i1,2022-23,Easthampton-Easthampton High,00860505,"","","","","","","","","", 63.3, 58.0, 53.4, 53.2, 57.0, 372 +5.150967741935483,5,a-picp-i1,2022-23,Easthampton-Mountain View School,00860415, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0, 99.1, 100.0,"","","","", 99.8," 1,007" +5.161290322580645,5,a-picp-i1,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 660 +5.12,5,a-picp-i1,2022-23,Easton-Easton Middle School,00880405,"","","","","","", 99.6, 99.6, 98.3,"","","","", 99.2, 830 +1.9561290322580644,1.96,a-picp-i1,2022-23,Easton-Oliver Ames High,00880505,"","","","","","","","","", 33.3, 34.9, 41.5, 41.5, 37.9," 1,082" +5.161290322580645,5,a-picp-i1,2022-23,Easton-Richardson Olmsted School,00880025,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 767 +5.063225806451612,5,a-picp-i1,2022-23,Edgartown-Edgartown Elementary,00890005, 100.0, 97.0, 100.0, 93.6, 100.0, 97.6, 98.1, 95.5, 100.0,"","","","", 98.1, 414 +5.027096774193549,5,a-picp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505,"","","","","","","","","", 97.2, 95.7, 99.0, 97.6, 97.4, 378 +5.161290322580645,5,a-picp-i1,2022-23,Erving-Erving Elementary,00910030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 105 +0.38193548387096776,1,a-picp-i1,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505,"","","","","","","","","", 0.0, 4.3, 19.7, 6.8, 7.4," 1,675" +5.037419354838709,5,a-picp-i1,2022-23,Everett-Devens School,00930030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 66.7, 97.6, 41 +2.590967741935484,2.59,a-picp-i1,2022-23,Everett-Everett High,00930505,"","","","","","","","","", 53.1, 52.6, 48.4, 44.9, 50.2," 2,297" +5.156129032258065,5,a-picp-i1,2022-23,Everett-George Keverian School,00930028, 100.0, 100.0, 100.0, 100.0, 98.8, 100.0, 100.0, 100.0, 100.0,"","","","", 99.9, 892 +5.145806451612903,5,a-picp-i1,2022-23,Everett-Lafayette School,00930038, 100.0, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.7," 1,031" +5.161290322580645,5,a-picp-i1,2022-23,Everett-Madeline English School,00930018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 755 +5.12,5,a-picp-i1,2022-23,Everett-Parlin School,00930058, 97.3, 96.9, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 100.0,"","","","", 99.2," 1,096" +5.161290322580645,5,a-picp-i1,2022-23,Everett-Sumner G. Whittier School,00930010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 633 +5.161290322580645,5,a-picp-i1,2022-23,Everett-Webster School,00930015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +3.303225806451613,3.3,a-picp-i1,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205,"","","","","", 100.0, 100.0, 100.0, 100.0, 40.6, 31.6, 18.1, 15.3, 64.0," 1,357" +3.4632258064516126,3.46,a-picp-i1,2022-23,Fairhaven-East Fairhaven,00940010, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 67.1, 298 +3.9277419354838705,3.93,a-picp-i1,2022-23,Fairhaven-Fairhaven High,00940505,"","","","","","","","","", 89.2, 86.8, 66.0, 62.7, 76.1, 633 +5.150967741935483,5,a-picp-i1,2022-23,Fairhaven-Hastings Middle,00940305,"","","","","","", 99.3, 100.0, 100.0,"","","","", 99.8, 442 +3.6903225806451614,3.69,a-picp-i1,2022-23,Fairhaven-Leroy Wood,00940030, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 71.5, 421 +2.4567741935483873,2.46,a-picp-i1,2022-23,Fall River-B M C Durfee High,00950505,"","","","","","","","","", 39.4, 49.2, 51.3, 52.6, 47.6," 2,391" +5.161290322580645,5,a-picp-i1,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 688 +5.1251612903225805,5,a-picp-i1,2022-23,Fall River-Henry Lord Community School,00950017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.7, 96.1, 98.7,"","","","", 99.3, 765 +5.140645161290323,5,a-picp-i1,2022-23,Fall River-James Tansey,00950140, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 273 +5.150967741935483,5,a-picp-i1,2022-23,Fall River-John J Doran,00950045, 100.0, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 100.0, 100.0,"","","","", 99.8, 464 +4.898064516129033,4.9,a-picp-i1,2022-23,Fall River-Letourneau Elementary School,00950013, 93.8, 97.2, 87.9, 94.9, 95.8, 99.0,"","","","","","","", 94.9, 585 +5.161290322580645,5,a-picp-i1,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 575 +5.109677419354838,5,a-picp-i1,2022-23,Fall River-Matthew J Kuss Middle,00950320,"","","","","","", 98.7, 98.2, 100.0,"","","","", 99.0, 680 +4.825806451612904,4.83,a-picp-i1,2022-23,Fall River-Morton Middle,00950315,"","","","","","", 95.9, 91.7, 92.7,"","","","", 93.5, 665 +5.161290322580645,5,a-picp-i1,2022-23,Fall River-North End Elementary,00950005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 629 +2.47741935483871,2.48,a-picp-i1,2022-23,Fall River-Resiliency Preparatory Academy,00950525,"","","","","","","", 72.7, 96.3, 59.3, 32.1, 36.8, 25.0, 48.0, 175 +5.0683870967741935,5,a-picp-i1,2022-23,Fall River-Samuel Watson,00950145, 93.8, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 98.2, 228 +5.037419354838709,5,a-picp-i1,2022-23,Fall River-Spencer Borden,00950130, 100.0, 100.0, 94.3, 91.3, 100.0, 100.0,"","","","","","","", 97.6, 541 +4.144516129032258,4.14,a-picp-i1,2022-23,Fall River-Stone PK-12 School,00950340,"", 100.0, 100.0, 85.7, 100.0, 100.0, 100.0, 87.5, 100.0, 91.7, 0.0, 85.7, 57.1, 80.3, 66 +5.063225806451612,5,a-picp-i1,2022-23,Fall River-Talbot Innovation School,00950305,"","","","","","", 95.5, 98.9, 100.0,"","","","", 98.1, 534 +5.145806451612903,5,a-picp-i1,2022-23,Fall River-William S Greene,00950065, 100.0, 100.0, 99.0, 100.0, 99.1, 100.0,"","","","","","","", 99.7, 687 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-East Falmouth Elementary,00960005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 191 +3.1225806451612903,3.12,a-picp-i1,2022-23,Falmouth-Falmouth High,00960505,"","","","","","","","","", 62.1, 55.9, 56.3, 67.9, 60.5, 767 +5.078709677419355,5,a-picp-i1,2022-23,Falmouth-Lawrence,00960405,"","","","","","","", 99.1, 97.6,"","","","", 98.4, 489 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Morse Pond School,00960305,"","","","","", 100.0, 100.0,"","","","","","", 100.0, 487 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Mullen-Hall,00960020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-North Falmouth Elementary,00960030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 312 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Teaticket,00960015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 241 +5.161290322580645,5,a-picp-i1,2022-23,Farmington River Reg-Farmington River Elementary,06620020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 107 +4.9393548387096775,4.94,a-picp-i1,2022-23,Fitchburg-Arthur M Longsjo Middle School,00970315,"","","","","","", 98.7, 94.1, 94.0,"","","","", 95.7, 611 +5.150967741935483,5,a-picp-i1,2022-23,Fitchburg-Crocker Elementary,00970016,"", 100.0, 100.0, 99.2, 100.0, 100.0,"","","","","","","", 99.8, 603 +3.0141935483870967,3.01,a-picp-i1,2022-23,Fitchburg-Fitchburg High,00970505,"","","","","","","","","", 52.6, 49.7, 64.4, 68.2, 58.4," 1,194" +0.4593548387096774,1,a-picp-i1,2022-23,Fitchburg-Goodrich Academy,00970510,"","","","","","","","","", 16.7, 35.0, 8.6, 3.4, 8.9, 213 +5.161290322580645,5,a-picp-i1,2022-23,Fitchburg-McKay Elementary School,00970340,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 729 +5.047741935483871,5,a-picp-i1,2022-23,Fitchburg-Memorial Middle School,00970048,"","","","","","", 98.6, 97.9, 97.0,"","","","", 97.8, 595 +5.161290322580645,5,a-picp-i1,2022-23,Fitchburg-Reingold Elementary,00970043,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 655 +5.1251612903225805,5,a-picp-i1,2022-23,Fitchburg-South Street Early Learning Center,00970060, 99.3,"","","","","","","","","","","","", 99.3, 418 +4.588387096774194,4.59,a-picp-i1,2022-23,Florida-Abbott Memorial,00980005, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0, 100.0, 81.8,"","","","", 88.9, 81 +4.211612903225806,4.21,a-picp-i1,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 14.7, 17.2, 23.9, 39.5, 81.6," 1,538" +5.140645161290323,5,a-picp-i1,2022-23,Foxborough-Charles Taylor Elementary,00990050, 100.0, 100.0, 100.0, 98.2, 100.0,"","","","","","","","", 99.6, 257 +2.967741935483871,2.97,a-picp-i1,2022-23,Foxborough-Foxborough High,00990505,"","","","","","","","","", 54.9, 57.0, 58.8, 59.6, 57.5, 783 +5.083870967741936,5,a-picp-i1,2022-23,Foxborough-John J Ahern,00990405,"","","","","", 99.5, 99.0, 96.6, 98.9,"","","","", 98.5, 748 +5.161290322580645,5,a-picp-i1,2022-23,Foxborough-Mabelle M Burrell,00990015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Foxborough-Vincent M Igo Elementary,00990020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 362 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Barbieri Elementary,01000035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 671 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Brophy,01000006, 100.0, 100.0, 100.0, 98.7, 100.0, 100.0,"","","","","","","", 99.8, 475 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Cameron Middle School,01000302,"","","","","","", 100.0, 100.0, 99.5,"","","","", 99.8, 568 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Charlotte A Dunning,01000007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 431 +2.7406451612903227,2.74,a-picp-i1,2022-23,Framingham-Framingham High School,01000515,"","","","","","","","","", 61.9, 62.6, 44.2, 40.7, 53.1," 2,571" +5.021935483870967,5,a-picp-i1,2022-23,Framingham-Fuller Middle,01000305,"","","","","","", 96.6, 96.8, 98.7,"","","","", 97.3, 674 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Harmony Grove Elementary,01000055, 100.0, 100.0, 100.0, 98.6, 100.0, 100.0,"","","","","","","", 99.8, 475 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Hemenway,01000015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 546 +4.96516129032258,4.97,a-picp-i1,2022-23,Framingham-King Elementary School,01000005, 100.0, 98.4, 91.9, 95.0, 93.3, 100.0,"","","","","","","", 96.2, 394 +5.145806451612903,5,a-picp-i1,2022-23,Framingham-Mary E Stapleton Elementary,01000045, 100.0, 100.0, 100.0, 100.0, 98.5, 100.0,"","","","","","","", 99.7, 352 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Miriam F McCarthy School,01000050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 524 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Potter Road,01000039, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 538 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Walsh Middle,01000310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 810 +0.4490322580645161,1,a-picp-i1,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505,"","","","","","","", 0.0, 0.0, 0.0, 1.6, 32.7, 23.4, 8.7, 391 +0.0,1,a-picp-i1,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 596 +5.083870967741936,5,a-picp-i1,2022-23,Franklin-Annie Sullivan Middle School,01010040,"","","","","","", 96.6, 100.0, 99.0,"","","","", 98.5, 326 +2.9780645161290322,2.98,a-picp-i1,2022-23,Franklin-Franklin High,01010505,"","","","","","","","","", 81.9, 62.9, 43.8, 44.1, 57.7," 1,626" +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Helen Keller Elementary,01010012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 538 +5.135483870967742,5,a-picp-i1,2022-23,Franklin-Horace Mann,01010405,"","","","","","", 100.0, 100.0, 98.4,"","","","", 99.5, 379 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-J F Kennedy Memorial,01010013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Jefferson Elementary,01010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Oak Street Elementary,01010030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Parmenter,01010032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 293 +5.063225806451612,5,a-picp-i1,2022-23,Franklin-Remington Middle,01010310,"","","","","","", 98.4, 97.4, 98.5,"","","","", 98.1, 377 +3.0038709677419355,3.0,a-picp-i1,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505,"","","","","","","","","", 94.8, 51.4, 32.3, 56.4, 58.2, 720 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-Assawompset Elementary School,06650002, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 491 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-Freetown Elementary School,06650001, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 375 +4.774193548387097,4.77,a-picp-i1,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305,"","","","","","", 93.5, 93.5, 90.1,"","","","", 92.5, 676 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-George R Austin Intermediate School,06650015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 446 +3.184516129032258,3.18,a-picp-i1,2022-23,Frontier-Frontier Regional,06700505,"","","","","","","", 83.2, 65.1, 54.3, 50.5, 50.5, 62.1, 61.7, 595 +0.4748387096774193,1,a-picp-i1,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515,"","","","","","","","","", 0.0, 0.0, 0.0, 16.9, 9.2, 119 +4.9961290322580645,5.0,a-picp-i1,2022-23,Gardner-Gardner Elementary School,01030001, 95.4, 96.0, 97.9, 98.3, 96.9,"","","","","","","","", 96.8, 919 +2.63741935483871,2.64,a-picp-i1,2022-23,Gardner-Gardner High,01030505,"","","","","","","","", 68.7, 64.5, 35.4, 36.6, 40.8, 51.1, 795 +5.047741935483871,5,a-picp-i1,2022-23,Gardner-Gardner Middle School,01030405,"","","","","", 97.6, 96.8, 98.8,"","","","","", 97.8, 496 +5.161290322580645,5,a-picp-i1,2022-23,Gateway-Chester Elementary,06720059, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 91 +2.8438709677419354,2.84,a-picp-i1,2022-23,Gateway-Gateway Regional High,06720505,"","","","","","","","","", 59.6, 48.4, 47.9, 63.4, 55.1, 167 +5.032258064516129,5,a-picp-i1,2022-23,Gateway-Gateway Regional Middle School,06720405,"","","","","","", 98.3, 96.8, 97.4,"","","","", 97.5, 199 +5.161290322580645,5,a-picp-i1,2022-23,Gateway-Littleville Elementary School,06720143, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 265 +4.16,4.16,a-picp-i1,2022-23,Georgetown-Georgetown High School,01050505,"","","","","","","","","", 79.3, 82.1, 70.8, 89.7, 80.6, 299 +4.9961290322580645,5.0,a-picp-i1,2022-23,Georgetown-Georgetown Middle School,01050305,"","","","","","","", 100.0, 93.4,"","","","", 96.8, 189 +5.161290322580645,5,a-picp-i1,2022-23,Georgetown-Penn Brook,01050010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 702 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Gill Elementary,06740005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 104 +4.846451612903226,4.85,a-picp-i1,2022-23,Gill-Montague-Great Falls Middle,06740310,"","","","","","", 92.9, 97.8, 88.7,"","","","", 93.9, 212 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Hillcrest Elementary School,06740015, 100.0, 100.0,"","","","","","","","","","","", 100.0, 111 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Sheffield Elementary School,06740050,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 214 +4.201290322580645,4.2,a-picp-i1,2022-23,Gill-Montague-Turners Fall High,06740505,"","","","","","","","","", 86.0, 85.4, 85.7, 61.8, 81.4, 188 +4.784516129032259,4.78,a-picp-i1,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305,"","","","","", 100.0, 100.0, 100.0, 100.0, 76.0, 72.5, 92.3, 74.4, 92.7, 496 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Beeman Memorial,01070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-East Gloucester Elementary,01070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 190 +3.009032258064516,3.01,a-picp-i1,2022-23,Gloucester-Gloucester High,01070505,"","","","","","","","","", 56.1, 62.2, 53.4, 62.0, 58.3, 799 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Plum Cove School,01070042, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 201 +4.975483870967742,4.98,a-picp-i1,2022-23,Gloucester-Ralph B O'Maley Middle,01070305,"","","","","","", 97.1, 95.5, 96.6,"","","","", 96.4, 634 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Veterans Memorial,01070045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 216 +5.145806451612903,5,a-picp-i1,2022-23,Gloucester-West Parish,01070050, 100.0, 98.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 371 +3.127741935483871,3.13,a-picp-i1,2022-23,Grafton-Grafton High School,01100505,"","","","","","","","","", 46.5, 46.7, 64.4, 84.2, 60.6, 870 +5.073548387096774,5,a-picp-i1,2022-23,Grafton-Grafton Middle,01100305,"","","","","","","", 98.3, 98.2,"","","","", 98.3, 527 +5.145806451612903,5,a-picp-i1,2022-23,Grafton-Millbury Street Elementary School,01100200,"","", 100.0, 100.0, 100.0, 100.0, 98.5,"","","","","","", 99.7, 595 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-North Grafton Elementary,01100025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 204 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-North Street Elementary School,01100030,"","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 551 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-South Grafton Elementary,01100005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 239 +5.161290322580645,5,a-picp-i1,2022-23,Granby-East Meadow,01110004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 374 +3.489032258064516,3.49,a-picp-i1,2022-23,Granby-Granby Jr Sr High School,01110505,"","","","","","","", 79.6, 54.9, 82.0, 79.6, 52.1, 57.9, 67.6, 309 +3.0038709677419355,3.0,a-picp-i1,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 81.0, 86.4, 76.5, 19.4, 12.3, 24.3, 56.3, 58.2," 1,276" +0.407741935483871,1,a-picp-i1,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605,"","","","","","","","","", 6.4, 6.6, 8.7, 10.3, 7.9," 1,405" +0.0,1,a-picp-i1,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0," 1,693" +0.38193548387096776,1,a-picp-i1,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605,"","","","","","","","","", 7.7, 7.3, 7.2, 7.5, 7.4," 2,281" +0.3767741935483871,1,a-picp-i1,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605,"","","","","","","","","", 7.0, 7.3, 8.3, 6.4, 7.3," 2,092" +5.135483870967742,5,a-picp-i1,2022-23,Greenfield-Discovery School at Four Corners,01140025, 97.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.5, 215 +5.109677419354838,5,a-picp-i1,2022-23,Greenfield-Federal Street School,01140010, 100.0, 100.0, 97.0, 100.0, 97.8,"","","","","","","","", 99.0, 204 +2.895483870967742,2.9,a-picp-i1,2022-23,Greenfield-Greenfield High,01140505,"","","","","","","","", 93.4, 51.1, 46.9, 43.6, 33.3, 56.1, 442 +5.078709677419355,5,a-picp-i1,2022-23,Greenfield-Greenfield Middle,01140305,"","","","","", 99.1, 97.1, 99.0,"","","","","", 98.4, 309 +5.161290322580645,5,a-picp-i1,2022-23,Greenfield-Newton School,01140035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 211 +4.95483870967742,4.95,a-picp-i1,2022-23,Groton-Dunstable-Florence Roche School,06730010, 100.0, 100.0, 100.0, 100.0, 82.5,"","","","","","","","", 96.0, 526 +3.2774193548387096,3.28,a-picp-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505,"","","","","","","","","", 67.7, 71.8, 58.4, 56.7, 63.5, 676 +5.006451612903226,5,a-picp-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional Middle,06730305,"","","","","", 97.7, 93.6, 97.4, 99.0,"","","","", 97.0, 723 +5.161290322580645,5,a-picp-i1,2022-23,Groton-Dunstable-Swallow/Union School,06730005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2022-23,Hadley-Hadley Elementary,01170015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 238 +3.370322580645161,3.37,a-picp-i1,2022-23,Hadley-Hopkins Academy,01170505,"","","","","","","", 73.5, 93.1, 48.4, 56.8, 68.9, 56.4, 65.3, 222 +5.161290322580645,5,a-picp-i1,2022-23,Halifax-Halifax Elementary,01180005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 560 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Bessie Buker Elementary,06750007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Cutler School,06750010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 255 +3.7780645161290325,3.78,a-picp-i1,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505,"","","","","","","","","", 80.8, 77.6, 60.5, 75.4, 73.2, 448 +5.12,5,a-picp-i1,2022-23,Hamilton-Wenham-Miles River Middle,06750310,"","","","","","", 99.1, 99.2, 99.3,"","","","", 99.2, 375 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Winthrop School,06750015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 290 +3.112258064516129,3.11,a-picp-i1,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305,"","","","","","", 98.9, 100.0, 100.0, 13.8, 8.9, 14.1, 66.7, 60.3, 551 +3.9277419354838705,3.93,a-picp-i1,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305,"","","","","","", 98.4, 100.0, 100.0, 41.8, 49.1, 58.3, 70.4, 76.1, 373 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Mile Tree Elementary,06800025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 295 +2.48258064516129,2.48,a-picp-i1,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505,"","","","","","","","","", 51.3, 49.0, 47.9, 43.7, 48.1, 973 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Soule Road,06800030,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 311 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Stony Hill School,06800050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 303 +4.640000000000001,4.64,a-picp-i1,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310,"","","","","","", 90.2, 87.0, 92.4,"","","","", 89.9, 605 +3.59741935483871,3.6,a-picp-i1,2022-23,Hampshire-Hampshire Regional High,06830505,"","","","","","","", 97.7, 98.4, 35.0, 61.8, 47.5, 63.3, 69.7, 661 +5.161290322580645,5,a-picp-i1,2022-23,Hancock-Hancock Elementary,01210005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 49 +5.161290322580645,5,a-picp-i1,2022-23,Hanover-Cedar Elementary,01220004, 100.0, 100.0,"","","","","","","","","","","", 100.0, 367 +5.150967741935483,5,a-picp-i1,2022-23,Hanover-Center Elementary,01220005,"","", 99.5, 100.0, 100.0,"","","","","","","","", 99.8, 645 +2.415483870967742,2.42,a-picp-i1,2022-23,Hanover-Hanover High,01220505,"","","","","","","","","", 58.7, 57.5, 31.9, 41.7, 46.8, 667 +5.161290322580645,5,a-picp-i1,2022-23,Hanover-Hanover Middle,01220305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 809 +4.0,4.0,a-picp-i1,2022-23,Harvard-Bromfield,01250505,"","","","","","", 100.0, 100.0, 98.7, 81.0, 48.8, 51.8, 63.2, 77.5, 560 +5.161290322580645,5,a-picp-i1,2022-23,Harvard-Hildreth Elementary School,01250005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 438 +5.161290322580645,5,a-picp-i1,2022-23,Hatfield-Hatfield Elementary,01270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 186 +4.23741935483871,4.24,a-picp-i1,2022-23,Hatfield-Smith Academy,01270505,"","","","","","","", 100.0, 100.0, 85.7, 61.1, 68.4, 66.7, 82.1, 134 +0.0,1,a-picp-i1,2022-23,Haverhill-Bartlett School and Assessment Center,01280073,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0, 28 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Bradford Elementary,01280008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 513 +5.130322580645162,5,a-picp-i1,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 100.0, 100.0, 100.0, 100.0, 100.0, 99.4, 100.0, 98.8, 98.3,"","","","", 99.4," 1,067" +5.099354838709678,5,a-picp-i1,2022-23,Haverhill-Consentino Middle School,01280100,"","","","","", 97.4, 98.7, 99.0, 99.1,"","","","", 98.8, 730 +5.037419354838709,5,a-picp-i1,2022-23,Haverhill-Dr Paul Nettle,01280050,"","","","","", 100.0, 97.0, 95.7, 97.6,"","","","", 97.6, 575 +2.6838709677419357,2.68,a-picp-i1,2022-23,Haverhill-Gateway Academy,01280515,"","","","","","","", 100.0, 100.0, 100.0, 30.8, 0.0, 25.0, 52.0, 75 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Golden Hill,01280026, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 460 +1.672258064516129,1.67,a-picp-i1,2022-23,Haverhill-Greenleaf Academy,01280033,"","","","","","", 0.0, 33.3, 22.2, 0.0, 83.3, 60.0, 0.0, 32.4, 34 +2.905806451612903,2.91,a-picp-i1,2022-23,Haverhill-Haverhill High,01280505,"","","","","","","","","", 64.5, 52.4, 49.7, 56.1, 56.3," 1,942" +5.099354838709678,5,a-picp-i1,2022-23,Haverhill-John G Whittier,01280085,"","","","","", 98.9, 100.0, 97.7, 98.4,"","","","", 98.8, 488 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Moody,01280045, 100.0,"","","","","","","","","","","","", 100.0, 8 +5.109677419354838,5,a-picp-i1,2022-23,Haverhill-Pentucket Lake Elementary,01280054, 100.0, 97.0, 100.0, 97.6, 100.0, 100.0,"","","","","","","", 99.0, 525 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Silver Hill Elementary School,01280067, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 480 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Tilton,01280075, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 318 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Tilton Upper Middle School,01280105,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 179 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Walnut Square,01280080, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 139 +5.161290322580645,5,a-picp-i1,2022-23,Hawlemont-Hawlemont Regional,06850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 75 +5.016774193548387,5,a-picp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305,"","","","","","", 96.8, 96.9, 97.7,"","","","", 97.2, 107 +5.161290322580645,5,a-picp-i1,2022-23,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 306 +5.161290322580645,5,a-picp-i1,2022-23,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-East Elementary School,01310005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 425 +1.7238709677419355,1.72,a-picp-i1,2022-23,Hingham-Hingham High,01310505,"","","","","","","","","", 36.6, 19.1, 28.0, 47.6, 33.4," 1,155" +3.9277419354838705,3.93,a-picp-i1,2022-23,Hingham-Hingham Middle School,01310410,"","","","","","", 99.7, 65.1, 62.0,"","","","", 76.1, 840 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-Plymouth River,01310019, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 382 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-South Elementary,01310020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 503 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-Wm L Foster Elementary,01310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 405 +3.783225806451613,3.78,a-picp-i1,2022-23,Holbrook-Holbrook Middle High School,01330505,"","","","","","", 36.3, 94.0, 84.0, 81.9, 71.2, 78.3, 75.9, 73.3, 648 +5.161290322580645,5,a-picp-i1,2022-23,Holbrook-John F Kennedy,01330018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 634 +4.15483870967742,4.15,a-picp-i1,2022-23,Holland-Holland Elementary,01350005, 0.0, 93.8, 92.6, 100.0, 93.3, 93.5, 100.0,"","","","","","", 80.5, 200 +3.8761290322580644,3.88,a-picp-i1,2022-23,Holliston-Holliston High,01360505,"","","","","","","","","", 82.6, 67.0, 73.4, 77.0, 75.1, 804 +5.161290322580645,5,a-picp-i1,2022-23,Holliston-Miller School,01360007,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 605 +5.161290322580645,5,a-picp-i1,2022-23,Holliston-Placentino Elementary,01360010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 623 +5.135483870967742,5,a-picp-i1,2022-23,Holliston-Robert H. Adams Middle School,01360305,"","","","","","", 100.0, 99.5, 99.1,"","","","", 99.5, 654 +0.0,1,a-picp-i1,2022-23,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0, 697 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-E N White Elementary,01370045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 318 +5.099354838709678,5,a-picp-i1,2022-23,Holyoke-H.B. Lawrence School,01370070, 100.0, 94.7, 100.0, 100.0,"","","","","","","","","", 98.8, 164 +2.08,2.08,a-picp-i1,2022-23,Holyoke-Holyoke High,01370505,"","","","","","","","","", 21.9, 51.1, 52.0, 38.0, 40.3," 1,505" +4.9961290322580645,5.0,a-picp-i1,2022-23,Holyoke-Holyoke Middle School,01370325,"","","","","","", 98.8, 98.1, 93.7,"","","","", 96.8, 281 +2.590967741935484,2.59,a-picp-i1,2022-23,Holyoke-Holyoke STEM Academy,01370320,"","","","","","", 46.1, 56.7, 48.1,"","","","", 50.2, 303 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Joseph Metcalf School,01370003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 350 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Kelly Elementary,01370040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +3.096774193548387,3.1,a-picp-i1,2022-23,Holyoke-Lt Clayre Sullivan Elementary,01370055, 100.0, 100.0, 100.0, 100.0, 100.0, 97.2, 0.0, 0.0, 0.0,"","","","", 60.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Lt Elmer J McMahon Elementary,01370015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 312 +4.469677419354839,4.47,a-picp-i1,2022-23,Holyoke-Maurice A Donahue Elementary,01370060, 66.7, 78.2, 79.2, 94.0, 100.0, 100.0,"","","","","","","", 86.6, 307 +0.025806451612903226,1,a-picp-i1,2022-23,Holyoke-Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4,"","","","","","","", 0.5, 209 +5.001290322580646,5,a-picp-i1,2022-23,Holyoke-William R. Peck School,01370030,"","","","", 100.0, 100.0, 95.2, 100.0, 89.5,"","","","", 96.9, 195 +5.114838709677419,5,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 100.0, 99.0, 100.0, 97.8,"","","","","","","","","", 99.1, 325 +2.358709677419355,2.36,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505,"","","","","","","","", 30.8, 66.7, 39.6, 50.0, 44.2, 45.7, 328 +5.042580645161291,5,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley Middle School,06030315,"","","","", 98.5, 97.5, 95.5, 98.8,"","","","","", 97.7, 298 +4.304516129032258,4.3,a-picp-i1,2022-23,Hopedale-Hopedale Jr Sr High,01380505,"","","","","","","", 95.8, 96.7, 33.9, 90.0, 95.0, 76.9, 83.4, 440 +5.161290322580645,5,a-picp-i1,2022-23,Hopedale-Memorial,01380010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 554 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Elmwood,01390010,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 637 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Hopkins Elementary School,01390015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 640 +2.900645161290323,2.9,a-picp-i1,2022-23,Hopkinton-Hopkinton High,01390505,"","","","","","","","","", 77.8, 52.4, 45.6, 47.8, 56.2," 1,241" +5.150967741935483,5,a-picp-i1,2022-23,Hopkinton-Hopkinton Middle School,01390305,"","","","","","", 100.0, 100.0, 99.4,"","","","", 99.8, 982 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Marathon Elementary School,01390005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 604 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-C A Farley,01410030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 415 +5.114838709677419,5,a-picp-i1,2022-23,Hudson-David J. Quinn Middle School,01410410,"","","","","", 98.6, 99.4, 99.5,"","","","","", 99.1, 577 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-Forest Avenue Elementary,01410015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 290 +4.0206451612903225,4.02,a-picp-i1,2022-23,Hudson-Hudson High,01410505,"","","","","","","","", 94.0, 85.5, 63.6, 67.3, 80.5, 77.9, 829 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-Mulready Elementary,01410007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 226 +3.4219354838709677,3.42,a-picp-i1,2022-23,Hull-Hull High,01420505,"","","","","","","","","", 76.9, 67.2, 50.9, 67.2, 66.3, 243 +5.145806451612903,5,a-picp-i1,2022-23,Hull-Lillian M Jacobs,01420015, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 311 +4.944516129032258,4.94,a-picp-i1,2022-23,Hull-Memorial Middle,01420305,"","","","","","", 90.9, 98.1, 98.3,"","","","", 95.8, 167 +4.345806451612903,4.35,a-picp-i1,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305,"","","","","", 100.0, 99.0, 99.0, 100.0, 81.1, 72.4, 66.3, 48.2, 84.2, 792 +3.979354838709677,3.98,a-picp-i1,2022-23,Ipswich-Ipswich High,01440505,"","","","","","","","","", 69.8, 82.9, 74.2, 80.8, 77.1, 493 +5.089032258064516,5,a-picp-i1,2022-23,Ipswich-Ipswich Middle School,01440305,"","","","","","", 98.5, 98.3, 99.2,"","","","", 98.6, 365 +5.145806451612903,5,a-picp-i1,2022-23,Ipswich-Paul F Doyon Memorial,01440007, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 347 +5.161290322580645,5,a-picp-i1,2022-23,Ipswich-Winthrop,01440015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +3.313548387096774,3.31,a-picp-i1,2022-23,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 64.2, 576 +4.428387096774194,4.43,a-picp-i1,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 19.7, 95.4, 96.0, 44.0, 55.6, 85.8," 1,604" +3.0193548387096776,3.02,a-picp-i1,2022-23,King Philip-King Philip Middle School,06900510,"","","","","","","", 97.7, 16.3,"","","","", 58.5, 677 +2.4,2.4,a-picp-i1,2022-23,King Philip-King Philip Regional High,06900505,"","","","","","","","","", 34.2, 54.2, 48.6, 50.2, 46.5," 1,131" +5.161290322580645,5,a-picp-i1,2022-23,Kingston-Kingston Elementary,01450005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 509 +5.161290322580645,5,a-picp-i1,2022-23,Kingston-Kingston Intermediate,01450020,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 600 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 749 +5.150967741935483,5,a-picp-i1,2022-23,Lawrence-Alexander B Bruce,01490015,"","","", 100.0, 100.0, 100.0, 100.0, 98.9, 100.0,"","","","", 99.8, 401 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Arlington Elementary,01490009, 93.9, 94.3, 100.0, 99.1, 100.0,"","","","","","","","", 97.6, 581 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Arlington Middle School,01490017,"","","","","", 93.1, 97.3, 98.8, 100.0,"","","","", 97.6, 588 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Edward F. Parthum,01490053, 100.0, 100.0, 99.3, 95.6, 93.6,"","","","","","","","", 97.6, 675 +5.058064516129032,5,a-picp-i1,2022-23,Lawrence-Emily G Wetherbee,01490080, 100.0, 97.8, 87.2, 100.0, 94.5, 100.0, 100.0, 100.0, 100.0,"","","","", 98.0, 494 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Francis M Leahy,01490040,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Frost Middle School,01490525,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 497 +5.032258064516129,5,a-picp-i1,2022-23,Lawrence-Gerard A. Guilmette,01490022,"", 100.0, 96.9, 97.1, 95.5,"","","","","","","","", 97.5, 475 +4.96,4.96,a-picp-i1,2022-23,Lawrence-Guilmette Middle School,01490025,"","","","","", 95.2, 96.4, 95.4, 97.7,"","","","", 96.1, 431 +0.0,1,a-picp-i1,2022-23,Lawrence-High School Learning Center,01490536,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 198 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-James F Hennessey,01490020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 218 +4.753548387096774,4.75,a-picp-i1,2022-23,Lawrence-John Breen School,01490003, 92.1,"","","","","","","","","","","","", 92.1, 101 +5.016774193548387,5,a-picp-i1,2022-23,Lawrence-John K Tarbox,01490075,"", 100.0, 100.0, 95.8, 97.9, 92.3,"","","","","","","", 97.2, 286 +0.03096774193548387,1,a-picp-i1,2022-23,Lawrence-Lawlor Early Childhood Center,01490002, 0.6,"","","","","","","","","","","","", 0.6, 172 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Lawrence Family Public Academy,01490011, 100.0,"","","","","","","","","","","","", 100.0, 107 +3.4374193548387093,3.44,a-picp-i1,2022-23,Lawrence-Lawrence High School,01490515,"","","","","","","","","", 76.6, 70.9, 62.1, 50.4, 66.6," 3,102" +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Leonard Middle School,01490090,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 328 +4.970322580645161,4.97,a-picp-i1,2022-23,Lawrence-Oliver Elementary School,01490048,"", 100.0, 100.0, 98.9, 89.8, 93.8,"","","","","","","", 96.3, 464 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Oliver Middle School,01490049,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 353 +5.052903225806452,5,a-picp-i1,2022-23,Lawrence-Parthum Middle School,01490027,"","","","","", 97.2, 97.9, 98.6, 97.9,"","","","", 97.9, 526 +0.0,1,a-picp-i1,2022-23,Lawrence-RISE Academy,01490615,"","","","","","", 0.0,"", 0.0,"", 0.0, 0.0, 0.0, 0.0, 53 +5.073548387096774,5,a-picp-i1,2022-23,Lawrence-Robert Frost,01490018, 100.0, 100.0, 100.0, 99.1, 93.7,"","","","","","","","", 98.3, 540 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Rollins Early Childhood Center,01490001, 100.0,"","","","","","","","","","","","", 100.0, 75 +1.9870967741935484,1.99,a-picp-i1,2022-23,Lawrence-School for Exceptional Studies,01490537, 100.0, 0.0, 80.0, 60.0, 42.9, 25.0, 71.4, 25.0, 41.7, 0.0, 0.0, 28.6, 25.0, 38.5, 78 +4.929032258064516,4.93,a-picp-i1,2022-23,Lawrence-South Lawrence East Elementary School,01490004,"", 100.0, 100.0, 92.4, 90.8, 93.8,"","","","","","","", 95.5, 665 +0.0,1,a-picp-i1,2022-23,Lawrence-Spark Academy,01490085,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 446 +5.161290322580645,5,a-picp-i1,2022-23,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 657 +5.145806451612903,5,a-picp-i1,2022-23,Lee-Lee Elementary,01500025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.8,"","","","","","", 99.7, 325 +3.618064516129032,3.62,a-picp-i1,2022-23,Lee-Lee Middle/High School,01500505,"","","","","","","", 100.0, 91.5, 61.0, 57.1, 49.0, 57.6, 70.1, 321 +5.161290322580645,5,a-picp-i1,2022-23,Leicester-Leicester Elementary,01510005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 487 +3.2516129032258063,3.25,a-picp-i1,2022-23,Leicester-Leicester High,01510505,"","","","","","","","","", 78.4, 64.1, 51.8, 56.6, 63.0, 419 +4.211612903225806,4.21,a-picp-i1,2022-23,Leicester-Leicester Middle,01510015,"","","","","", 82.2, 63.2, 82.7, 95.9,"","","","", 81.6, 412 +3.9690322580645163,3.97,a-picp-i1,2022-23,Lenox-Lenox Memorial High,01520505,"","","","","","", 96.9, 92.1, 97.0, 65.1, 47.5, 71.9, 65.1, 76.9, 442 +5.161290322580645,5,a-picp-i1,2022-23,Lenox-Morris,01520015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 320 +1.3212903225806452,1.32,a-picp-i1,2022-23,Leominster-Center For Technical Education Innovation,01530605,"","","","","","","","","", 44.2, 13.4, 11.9, 14.9, 25.6, 733 +4.629677419354839,4.63,a-picp-i1,2022-23,Leominster-Fall Brook,01530007, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 89.7, 611 +4.134193548387096,4.13,a-picp-i1,2022-23,Leominster-Frances Drake School,01530010, 0.0, 92.1, 95.5, 96.7, 88.8, 94.9,"","","","","","","", 80.1, 458 +4.449032258064516,4.45,a-picp-i1,2022-23,Leominster-Johnny Appleseed,01530025, 0.0, 100.0, 100.0, 100.0, 99.1, 99.1,"","","","","","","", 86.2, 652 +0.0,1,a-picp-i1,2022-23,Leominster-Leominster Center for Excellence,01530515,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 47 +3.4941935483870967,3.49,a-picp-i1,2022-23,Leominster-Leominster High School,01530505,"","","","","","","","","", 77.3, 78.1, 61.4, 58.6, 67.7," 1,079" +4.820645161290323,4.82,a-picp-i1,2022-23,Leominster-Northwest,01530030, 0.0, 99.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 93.4, 726 +5.161290322580645,5,a-picp-i1,2022-23,Leominster-Priest Street,01530040, 100.0,"","","","","","","","","","","","", 100.0, 123 +4.990967741935484,4.99,a-picp-i1,2022-23,Leominster-Samoset School,01530045,"","","","","","", 94.2, 97.1, 98.4,"","","","", 96.7, 512 +5.027096774193549,5,a-picp-i1,2022-23,Leominster-Sky View Middle School,01530320,"","","","","","", 98.0, 97.1, 97.1,"","","","", 97.4, 921 +4.908387096774193,4.91,a-picp-i1,2022-23,Leverett-Leverett Elementary,01540005, 53.8, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 95.1, 123 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Bowman,01550008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 444 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Bridge,01550006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Fiske,01550015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 343 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Harrington,01550030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +5.001290322580646,5,a-picp-i1,2022-23,Lexington-Jonas Clarke Middle,01550305,"","","","","","", 99.3, 97.1, 94.5,"","","","", 96.9, 832 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Joseph Estabrook,01550010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 549 +4.330322580645162,4.33,a-picp-i1,2022-23,Lexington-Lexington High,01550505,"","","","","","","","","", 86.7, 82.9, 79.2, 86.7, 83.9," 2,323" +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Maria Hastings,01550035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 621 +5.037419354838709,5,a-picp-i1,2022-23,Lexington-Wm Diamond Middle,01550310,"","","","","","", 97.4, 98.7, 96.7,"","","","", 97.6, 963 +0.5625806451612904,1,a-picp-i1,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305,"","","","","","", 0.0, 0.0, 0.0, 17.1, 43.8,"","", 10.9, 439 +5.140645161290323,5,a-picp-i1,2022-23,Lincoln-Hanscom Middle,01570305,"","","","", 100.0, 100.0, 100.0, 97.3, 100.0,"","","","", 99.6, 225 +5.161290322580645,5,a-picp-i1,2022-23,Lincoln-Hanscom Primary,01570006, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 172 +5.161290322580645,5,a-picp-i1,2022-23,Lincoln-Lincoln School,01570025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 508 +3.2516129032258063,3.25,a-picp-i1,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505,"","","","","","","","","", 82.8, 67.1, 53.0, 47.2, 63.0," 1,482" +3.664516129032258,3.66,a-picp-i1,2022-23,Littleton-Littleton High School,01580505,"","","","","","","","","", 72.1, 89.3, 59.2, 62.3, 71.0, 476 +4.892903225806451,4.89,a-picp-i1,2022-23,Littleton-Littleton Middle School,01580305,"","","","","","", 95.1, 94.7, 94.5,"","","","", 94.8, 382 +5.161290322580645,5,a-picp-i1,2022-23,Littleton-Russell St Elementary,01580015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +0.0,1,a-picp-i1,2022-23,Littleton-Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0,"","","","","","","","","","", 0.0, 383 +5.161290322580645,5,a-picp-i1,2022-23,Longmeadow-Blueberry Hill,01590005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 394 +5.016774193548387,5,a-picp-i1,2022-23,Longmeadow-Center,01590010, 98.5, 98.6, 95.3, 96.0, 98.7, 95.9,"","","","","","","", 97.2, 425 +5.145806451612903,5,a-picp-i1,2022-23,Longmeadow-Glenbrook Middle,01590017,"","","","","","", 100.0, 99.1, 100.0,"","","","", 99.7, 334 +1.9819354838709677,1.98,a-picp-i1,2022-23,Longmeadow-Longmeadow High,01590505,"","","","","","","","","", 41.4, 46.3, 34.1, 31.0, 38.4, 902 +5.140645161290323,5,a-picp-i1,2022-23,Longmeadow-Williams Middle,01590305,"","","","","","", 100.0, 100.0, 98.9,"","","","", 99.6, 284 +5.161290322580645,5,a-picp-i1,2022-23,Longmeadow-Wolf Swamp Road,01590025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 768 +4.547096774193548,4.55,a-picp-i1,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505,"","","","","","","","","", 100.0, 89.3, 82.6, 82.1, 88.1, 118 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Abraham Lincoln,01600020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 428 +5.094193548387097,5,a-picp-i1,2022-23,Lowell-B.F. Butler Middle School,01600310,"","","","","", 100.0, 98.5, 99.2, 97.3,"","","","", 98.7, 526 +5.140645161290323,5,a-picp-i1,2022-23,Lowell-Bartlett Community Partnership,01600090, 97.8, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","", 99.6, 466 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Charles W Morey,01600030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 432 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Charlotte M Murkland Elementary,01600080, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 417 +5.156129032258065,5,a-picp-i1,2022-23,Lowell-Dr An Wang School,01600345,"","","","","", 100.0, 99.4, 100.0, 100.0,"","","","", 99.9, 684 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Dr Gertrude Bailey,01600002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 430 +3.9948387096774196,3.99,a-picp-i1,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 100.0, 100.0, 100.0, 60.0, 100.0, 100.0, 100.0, 66.7, 100.0,"", 0.0, 0.0, 0.0, 77.4, 53 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Greenhalge,01600015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 434 +5.114838709677419,5,a-picp-i1,2022-23,Lowell-Henry J Robinson Middle,01600330,"","","","","", 98.6, 98.1, 99.4, 100.0,"","","","", 99.1, 640 +4.96516129032258,4.97,a-picp-i1,2022-23,Lowell-James S Daley Middle School,01600315,"","","","","", 97.8, 95.1, 94.0, 97.8,"","","","", 96.2, 688 +5.052903225806452,5,a-picp-i1,2022-23,Lowell-James Sullivan Middle School,01600340,"","","","","", 97.2, 98.0, 96.8, 99.4,"","","","", 97.9, 625 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-John J Shaughnessy,01600050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 443 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Joseph McAvinnue,01600010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 425 +5.12,5,a-picp-i1,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360,"","","","","", 100.0, 98.8, 100.0, 98.3,"","","","", 99.2, 659 +4.794838709677419,4.79,a-picp-i1,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085,"","","", 100.0,"","", 100.0, 100.0, 66.7,"","","","", 92.9, 14 +3.3858064516129027,3.39,a-picp-i1,2022-23,Lowell-Leblanc Therapeutic Day School,01600320,"","","","","","","","","", 72.7, 77.8, 33.3, 66.7, 65.6, 32 +1.8683870967741938,1.87,a-picp-i1,2022-23,Lowell-Lowell High,01600505,"","","","","","","","","", 23.1, 41.7, 40.1, 45.4, 36.2," 3,171" +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Moody Elementary,01600027, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 222 +5.089032258064516,5,a-picp-i1,2022-23,Lowell-Pawtucketville Memorial,01600036, 100.0, 98.9, 94.1, 100.0, 100.0,"","","","","","","","", 98.6, 437 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Peter W Reilly,01600040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 447 +5.130322580645162,5,a-picp-i1,2022-23,Lowell-Pyne Arts,01600018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 96.6, 100.0,"","","","", 99.4, 471 +5.135483870967742,5,a-picp-i1,2022-23,Lowell-Rogers STEM Academy,01600005, 100.0, 97.6, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 99.2,"","","","", 99.5, 876 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-S Christa McAuliffe Elementary,01600075, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 448 +0.8825806451612904,1,a-picp-i1,2022-23,Lowell-The Career Academy,01600515,"","","","","","","","","", 25.8, 20.0, 23.1, 3.6, 17.1, 82 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Washington,01600055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +5.140645161290323,5,a-picp-i1,2022-23,Ludlow-East Street Elementary School,01610010, 99.2, 100.0,"","","","","","","","","","","", 99.6, 260 +5.161290322580645,5,a-picp-i1,2022-23,Ludlow-Harris Brook Elementary School,01610665,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 654 +2.704516129032258,2.7,a-picp-i1,2022-23,Ludlow-Ludlow Senior High,01610505,"","","","","","","","","", 69.3, 51.7, 40.7, 44.1, 52.4, 785 +3.3393548387096774,3.34,a-picp-i1,2022-23,Ludlow-Paul R Baird Middle,01610305,"","","","","","", 99.4, 17.0, 77.8,"","","","", 64.7, 519 +3.0812903225806454,3.08,a-picp-i1,2022-23,Lunenburg-Lunenburg High,01620505,"","","","","","","","","", 18.0, 64.2, 82.1, 83.7, 59.7, 447 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Lunenburg Middle School,01620305,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 387 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Lunenburg Primary School,01620010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Turkey Hill Elementary School,01620025,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 363 +4.774193548387097,4.77,a-picp-i1,2022-23,Lynn-A Drewicz Elementary,01630016, 100.0, 100.0, 59.8, 97.0, 98.7, 100.0,"","","","","","","", 92.5, 506 +4.846451612903226,4.85,a-picp-i1,2022-23,Lynn-Aborn,01630011, 100.0, 100.0, 66.7, 97.2, 100.0, 100.0,"","","","","","","", 93.9, 214 +4.908387096774193,4.91,a-picp-i1,2022-23,Lynn-Breed Middle School,01630405,"","","","","","", 99.6, 96.4, 87.0,"","","","", 95.1," 1,293" +4.918709677419355,4.92,a-picp-i1,2022-23,Lynn-Brickett Elementary,01630020, 100.0, 100.0, 75.0, 100.0, 100.0, 100.0,"","","","","","","", 95.3, 322 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Capt William G Shoemaker,01630090, 97.7, 100.0, 82.2, 100.0, 100.0, 100.0,"","","","","","","", 97.1, 311 +2.4516129032258065,2.45,a-picp-i1,2022-23,Lynn-Classical High,01630505,"","","","","","","","","", 60.9, 53.7, 35.9, 31.2, 47.5," 1,933" +4.887741935483871,4.89,a-picp-i1,2022-23,Lynn-Cobbet Elementary,01630035, 100.0, 99.0, 70.4, 100.0, 100.0, 100.0,"","","","","","","", 94.7, 617 +4.918709677419355,4.92,a-picp-i1,2022-23,Lynn-E J Harrington,01630045, 98.8, 99.0, 76.3, 100.0, 98.9, 100.0,"","","","","","","", 95.3, 549 +4.892903225806451,4.89,a-picp-i1,2022-23,Lynn-Edward A Sisson,01630095, 100.0, 100.0, 63.3, 100.0, 100.0, 100.0,"","","","","","","", 94.8, 425 +2.8748387096774195,2.87,a-picp-i1,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525,"","","","","","", 100.0, 40.0, 28.6, 88.2, 83.3, 56.3, 20.0, 55.7, 79 +5.161290322580645,5,a-picp-i1,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575,"","","","","","","","","", 100.0,"","","", 100.0, 72 +4.970322580645161,4.97,a-picp-i1,2022-23,Lynn-Hood,01630055, 100.0, 100.0, 79.3, 98.6, 100.0, 100.0,"","","","","","","", 96.3, 488 +4.836129032258064,4.84,a-picp-i1,2022-23,Lynn-Ingalls,01630060, 100.0, 100.0, 65.9, 100.0, 99.1, 99.0,"","","","","","","", 93.7, 701 +4.87225806451613,4.87,a-picp-i1,2022-23,Lynn-Julia F Callahan,01630030, 100.0, 100.0, 71.7, 98.0, 100.0, 100.0,"","","","","","","", 94.4, 322 +4.88258064516129,4.88,a-picp-i1,2022-23,Lynn-Lincoln-Thomson,01630070, 100.0, 100.0, 72.2, 100.0, 97.8, 100.0,"","","","","","","", 94.6, 202 +2.1625806451612903,2.16,a-picp-i1,2022-23,Lynn-Lynn English High,01630510,"","","","","","","","","", 36.7, 49.4, 40.6, 38.2, 41.9," 2,259" +2.136774193548387,2.14,a-picp-i1,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 88.9, 100.0,"", 100.0, 100.0, 100.0, 0.0,"", 99.6, 11.1, 8.5, 34.2, 54.5, 41.4," 1,383" +4.634838709677419,4.63,a-picp-i1,2022-23,Lynn-Lynn Woods,01630075, 100.0, 100.0, 50.0, 100.0, 100.0, 100.0,"","","","","","","", 89.8, 157 +5.089032258064516,5,a-picp-i1,2022-23,Lynn-Pickering Middle,01630420,"","","","","","", 99.1, 97.5, 99.4,"","","","", 98.6, 568 +4.975483870967742,4.98,a-picp-i1,2022-23,Lynn-Robert L Ford,01630050,"", 100.0, 83.1, 98.8, 98.7, 100.0,"","","","","","","", 96.4, 415 +4.96516129032258,4.97,a-picp-i1,2022-23,Lynn-Sewell-Anderson,01630085, 100.0, 100.0, 75.0, 96.4, 97.1, 100.0,"","","","","","","", 96.2, 291 +4.454193548387097,4.45,a-picp-i1,2022-23,Lynn-Thurgood Marshall Mid,01630305,"","","","","","", 87.3, 92.4, 77.9,"","","","", 86.3," 1,297" +4.851612903225806,4.85,a-picp-i1,2022-23,Lynn-Tracy,01630100,"", 96.4, 73.3, 100.0, 100.0, 100.0,"","","","","","","", 94.0, 384 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Washington Elementary School,01630005, 100.0, 100.0, 83.6, 100.0, 98.6, 98.6,"","","","","","","", 97.1, 441 +5.161290322580645,5,a-picp-i1,2022-23,Lynn-William R Fallon,01630080,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 24 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Wm P Connery,01630040, 100.0, 100.0, 80.2, 100.0, 100.0, 100.0,"","","","","","","", 97.1, 548 +5.140645161290323,5,a-picp-i1,2022-23,Lynnfield-Huckleberry Hill,01640010, 98.8, 100.0, 99.0, 100.0, 100.0,"","","","","","","","", 99.6, 450 +2.023225806451613,2.02,a-picp-i1,2022-23,Lynnfield-Lynnfield High,01640505,"","","","","","","","","", 72.2, 34.9, 25.7, 26.7, 39.2, 566 +5.12,5,a-picp-i1,2022-23,Lynnfield-Lynnfield Middle School,01640405,"","","","","", 98.9, 98.8, 98.9, 100.0,"","","","", 99.2, 719 +5.161290322580645,5,a-picp-i1,2022-23,Lynnfield-Summer Street,01640020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 422 +0.4748387096774193,1,a-picp-i1,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505,"","","","","","","","","","","", 0.0, 18.0, 9.2, 98 +5.063225806451612,5,a-picp-i1,2022-23,Malden-Beebe,01650003, 100.0, 100.0, 100.0, 100.0, 99.0, 95.7, 94.9, 95.7, 97.0,"","","","", 98.1, 881 +5.109677419354838,5,a-picp-i1,2022-23,Malden-Ferryway,01650013, 99.0, 99.0, 97.0, 100.0, 99.0, 99.0, 100.0, 98.0, 100.0,"","","","", 99.0, 889 +5.145806451612903,5,a-picp-i1,2022-23,Malden-Forestdale,01650027, 98.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.8,"","","","", 99.7, 591 +5.094193548387097,5,a-picp-i1,2022-23,Malden-Linden,01650047, 100.0, 100.0, 100.0, 100.0, 100.0, 98.9, 98.0, 96.0, 95.9,"","","","", 98.7, 838 +2.6477419354838707,2.65,a-picp-i1,2022-23,Malden-Malden High,01650505,"","","","","","","","","", 56.5, 48.5, 48.1, 51.5, 51.3," 1,906" +5.047741935483871,5,a-picp-i1,2022-23,Malden-Salemwood,01650057, 100.0, 99.3, 100.0, 100.0, 100.0, 96.7, 93.8, 94.6, 97.7,"","","","", 97.8," 1,052" +5.161290322580645,5,a-picp-i1,2022-23,Manchester Essex Regional-Essex Elementary,06980020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +2.9212903225806452,2.92,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510,"","","","","","","","","", 92.5, 69.0, 32.6, 35.0, 56.6, 415 +5.052903225806452,5,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030,"","","","","","", 97.9, 96.3, 99.1,"","","","", 97.9, 283 +5.161290322580645,5,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +5.161290322580645,5,a-picp-i1,2022-23,Mansfield-Everett W Robinson,01670007, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 760 +4.9393548387096775,4.94,a-picp-i1,2022-23,Mansfield-Harold L Qualters Middle,01670035,"","","","","","", 98.5, 96.7, 91.7,"","","","", 95.7, 807 +5.161290322580645,5,a-picp-i1,2022-23,Mansfield-Jordan/Jackson Elementary,01670014,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 704 +3.174193548387097,3.17,a-picp-i1,2022-23,Mansfield-Mansfield High,01670505,"","","","","","","","","", 73.4, 60.5, 60.1, 53.3, 61.5," 1,094" +1.0270967741935484,1.03,a-picp-i1,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505,"","","","","","","","","", 29.8, 22.9, 21.4, 9.3, 19.9, 276 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305,"","","","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead-Glover,01680020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 293 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead-Lucretia and Joseph Brown School,01680030, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 415 +3.0451612903225804,3.05,a-picp-i1,2022-23,Marblehead-Marblehead High,01680505,"","","","","","","","","", 81.7, 54.5, 49.3, 53.3, 59.0, 883 +4.727741935483871,4.73,a-picp-i1,2022-23,Marblehead-Marblehead Veterans Middle School,01680300,"","","","","","","", 91.7, 91.5,"","","","", 91.6, 419 +5.150967741935483,5,a-picp-i1,2022-23,Marblehead-Village School,01680016,"","","","", 99.4, 100.0, 100.0,"","","","","","", 99.8, 565 +5.145806451612903,5,a-picp-i1,2022-23,Marion-Sippican,01690005, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 100.0,"","","","","","", 99.7, 384 +5.150967741935483,5,a-picp-i1,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045,"","","","","","", 100.0, 99.7, 99.7,"","","","", 99.8," 1,104" +5.140645161290323,5,a-picp-i1,2022-23,Marlborough-Charles Jaworek School,01700030, 100.0, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 99.6, 698 +5.161290322580645,5,a-picp-i1,2022-23,Marlborough-Francis J Kane,01700008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 491 +5.150967741935483,5,a-picp-i1,2022-23,Marlborough-Goodnow Brothers Elementary School,01700020, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","","","","", 99.8, 817 +3.643870967741935,3.64,a-picp-i1,2022-23,Marlborough-Marlborough High,01700505,"","","","","","","","","", 83.1, 78.9, 60.5, 59.3, 70.6," 1,152" +5.1251612903225805,5,a-picp-i1,2022-23,Marlborough-Richer,01700025, 100.0, 100.0, 100.0, 100.0, 100.0, 95.3,"","","","","","","", 99.3, 561 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Daniel Webster,01710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 276 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Eames Way School,01710005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 211 +5.016774193548387,5,a-picp-i1,2022-23,Marshfield-Furnace Brook Middle,01710310,"","","","","","", 99.7, 97.8, 94.0,"","","","", 97.2, 872 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Gov Edward Winslow,01710020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +2.353548387096774,2.35,a-picp-i1,2022-23,Marshfield-Marshfield High,01710505,"","","","","","","","","", 44.0, 53.7, 42.4, 41.1, 45.6," 1,173" +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Martinson Elementary,01710025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-South River,01710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +3.8658064516129036,3.87,a-picp-i1,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 71.4, 77.8, 74.9, 179 +2.689032258064516,2.69,a-picp-i1,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505,"","","","","","","","","", 67.0, 44.8, 56.3, 39.2, 52.1, 762 +5.161290322580645,5,a-picp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +2.2193548387096773,2.22,a-picp-i1,2022-23,Masconomet-Masconomet Regional High School,07050505,"","","","","","","","","", 57.0, 39.2, 37.9, 36.8, 43.0, 991 +5.140645161290323,5,a-picp-i1,2022-23,Masconomet-Masconomet Regional Middle School,07050405,"","","","","","","", 100.0, 99.3,"","","","", 99.6, 561 +5.161290322580645,5,a-picp-i1,2022-23,Mashpee-Kenneth Coombs School,01720005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 326 +3.169032258064516,3.17,a-picp-i1,2022-23,Mashpee-Mashpee Middle-High School,01720505,"","","","","","","", 95.7, 85.0, 46.3, 48.8, 54.3, 33.0, 61.4, 679 +5.099354838709678,5,a-picp-i1,2022-23,Mashpee-Quashnet School,01720035,"","","", 99.0, 97.8, 99.1, 99.0,"","","","","","", 98.8, 412 +4.80516129032258,4.81,a-picp-i1,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 100.0, 100.0, 99.0, 100.0, 100.0, 100.0, 98.9, 94.1, 96.9, 100.0, 100.0, 98.5, 1.5, 93.1," 1,132" +5.114838709677419,5,a-picp-i1,2022-23,Mattapoisett-Center,01730005, 96.2, 100.0, 100.0, 100.0,"","","","","","","","","", 99.1, 211 +5.161290322580645,5,a-picp-i1,2022-23,Mattapoisett-Old Hammondtown,01730010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 188 +5.161290322580645,5,a-picp-i1,2022-23,Maynard-Fowler School,01740305,"","","","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Maynard-Green Meadow,01740010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 366 +3.5664516129032253,3.57,a-picp-i1,2022-23,Maynard-Maynard High,01740505,"","","","","","","","","", 84.0, 60.2, 67.1, 65.3, 69.1, 314 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Dale Street,01750005,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 390 +3.344516129032258,3.34,a-picp-i1,2022-23,Medfield-Medfield Senior High,01750505,"","","","","","","","","", 71.9, 71.9, 49.5, 66.5, 64.8, 742 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Memorial School,01750003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 377 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Ralph Wheelock School,01750007,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 384 +4.96,4.96,a-picp-i1,2022-23,Medfield-Thomas Blake Middle,01750305,"","","","","","", 97.5, 96.0, 94.6,"","","","", 96.1, 584 +5.161290322580645,5,a-picp-i1,2022-23,Medford-Brooks School,01760130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 504 +1.7187096774193547,1.72,a-picp-i1,2022-23,Medford-Curtis-Tufts,01760510,"","","","","","","","","", 50.0, 0.0, 75.0, 25.0, 33.3, 15 +5.130322580645162,5,a-picp-i1,2022-23,Medford-John J McGlynn Elementary School,01760068, 100.0, 99.0, 98.9, 98.7, 100.0, 100.0,"","","","","","","", 99.4, 481 +5.073548387096774,5,a-picp-i1,2022-23,Medford-John J. McGlynn Middle School,01760320,"","","","","","", 98.1, 99.4, 97.5,"","","","", 98.3, 483 +5.073548387096774,5,a-picp-i1,2022-23,Medford-Madeleine Dugger Andrews,01760315,"","","","","","", 100.0, 98.1, 96.5,"","","","", 98.3, 464 +1.615483870967742,1.62,a-picp-i1,2022-23,Medford-Medford High,01760505,"","","","","","","","","", 21.2, 32.0, 34.9, 38.7, 31.3," 1,242" +5.161290322580645,5,a-picp-i1,2022-23,Medford-Milton Fuller Roberts,01760150, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 527 +5.135483870967742,5,a-picp-i1,2022-23,Medford-Missituk Elementary School,01760140, 100.0, 100.0, 98.4, 100.0, 98.5, 100.0,"","","","","","","", 99.5, 388 +5.161290322580645,5,a-picp-i1,2022-23,Medway-Burke/Memorial Elementary School,01770015,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 495 +5.161290322580645,5,a-picp-i1,2022-23,Medway-John D Mc Govern Elementary,01770013, 100.0, 100.0,"","","","","","","","","","","", 100.0, 321 +3.432258064516129,3.43,a-picp-i1,2022-23,Medway-Medway High,01770505,"","","","","","","","","", 68.9, 64.3, 61.0, 71.6, 66.5, 624 +5.052903225806452,5,a-picp-i1,2022-23,Medway-Medway Middle,01770305,"","","","","", 99.4, 98.0, 97.2, 96.9,"","","","", 97.9, 658 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Early Childhood Center,01780003, 100.0,"","","","","","","","","","","","", 100.0, 79 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Herbert Clark Hoover,01780017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 297 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Horace Mann,01780025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 240 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Lincoln,01780020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +2.1161290322580646,2.12,a-picp-i1,2022-23,Melrose-Melrose High,01780505,"","","","","","","","","", 49.4, 42.1, 39.2, 32.7, 41.0, 915 +4.815483870967742,4.82,a-picp-i1,2022-23,Melrose-Melrose Middle,01780305,"","","","","","", 94.3, 94.3, 91.0,"","","","", 93.3, 877 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Roosevelt,01780035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 409 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Winthrop,01780050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Mendon-Upton-Henry P Clough,07100179, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 328 +5.150967741935483,5,a-picp-i1,2022-23,Mendon-Upton-Memorial School,07100001, 100.0, 98.9, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 496 +4.8103225806451615,4.81,a-picp-i1,2022-23,Mendon-Upton-Miscoe Hill School,07100015,"","","","","", 98.2, 95.0, 83.1, 96.4,"","","","", 93.2, 643 +2.8438709677419354,2.84,a-picp-i1,2022-23,Mendon-Upton-Nipmuc Regional High,07100510,"","","","","","","","","", 48.1, 65.6, 51.6, 53.5, 55.1, 597 +5.130322580645162,5,a-picp-i1,2022-23,Methuen-Comprehensive Grammar School,01810050, 100.0, 100.0, 98.0, 98.1, 99.1, 100.0, 100.0, 99.2, 100.0,"","","","", 99.4," 1,001" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Donald P Timony Grammar,01810060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,196" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Marsh Grammar School,01810030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,047" +3.4167741935483873,3.42,a-picp-i1,2022-23,Methuen-Methuen High,01810505,"","","","","","","","","", 63.8, 60.9, 65.8, 74.9, 66.2," 2,005" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Tenney Grammar School,01810055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,248" +5.150967741935483,5,a-picp-i1,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008,"", 100.0, 99.2, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 576 +5.073548387096774,5,a-picp-i1,2022-23,Middleborough-John T. Nichols Middle,01820305,"","","","","","", 97.9, 98.3, 98.8,"","","","", 98.3, 722 +5.150967741935483,5,a-picp-i1,2022-23,Middleborough-Mary K. Goode Elementary School,01820010,"", 100.0, 100.0, 99.2, 100.0, 100.0,"","","","","","","", 99.8, 616 +5.161290322580645,5,a-picp-i1,2022-23,Middleborough-Memorial Early Childhood Center,01820011, 100.0,"","","","","","","","","","","","", 100.0, 236 +3.5664516129032253,3.57,a-picp-i1,2022-23,Middleborough-Middleborough High,01820505,"","","","","","","","","", 71.3, 69.7, 68.2, 67.0, 69.1, 849 +5.161290322580645,5,a-picp-i1,2022-23,Middleton-Fuller Meadow,01840003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Middleton-Howe-Manning,01840005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 378 +5.150967741935483,5,a-picp-i1,2022-23,Milford-Brookside,01850065, 99.5, 100.0, 100.0,"","","","","","","","","","", 99.8, 555 +5.130322580645162,5,a-picp-i1,2022-23,Milford-Memorial,01850010, 97.8, 100.0, 100.0,"","","","","","","","","","", 99.4, 481 +2.689032258064516,2.69,a-picp-i1,2022-23,Milford-Milford High,01850505,"","","","","","","","","", 63.5, 50.9, 40.9, 49.0, 52.1," 1,336" +4.861935483870968,4.86,a-picp-i1,2022-23,Milford-Stacy Middle,01850305,"","","","","","", 95.3, 92.3, 94.9,"","","","", 94.2," 1,064" +5.156129032258065,5,a-picp-i1,2022-23,Milford-Woodland,01850090,"","","", 100.0, 100.0, 99.7,"","","","","","","", 99.9, 965 +5.161290322580645,5,a-picp-i1,2022-23,Millbury-Elmwood Street,01860017, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 365 +3.0451612903225804,3.05,a-picp-i1,2022-23,Millbury-Millbury Junior/Senior High,01860505,"","","","","","","", 72.5, 56.6, 39.3, 60.9, 55.3, 68.0, 59.0, 744 +5.161290322580645,5,a-picp-i1,2022-23,Millbury-Raymond E. Shaw Elementary,01860025,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 469 +4.309677419354839,4.31,a-picp-i1,2022-23,Millis-Clyde F Brown,01870005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 547 +2.193548387096774,2.19,a-picp-i1,2022-23,Millis-Millis High School,01870505,"","","","","","","","","", 62.7, 26.6, 40.4, 43.8, 42.5, 313 +5.0683870967741935,5,a-picp-i1,2022-23,Millis-Millis Middle,01870020,"","","","","","", 98.9, 97.6, 98.0,"","","","", 98.2, 273 +4.278709677419355,4.28,a-picp-i1,2022-23,Milton-Charles S Pierce Middle,01890410,"","","","","","", 94.0, 70.2, 81.4,"","","","", 82.9, 951 +4.975483870967742,4.98,a-picp-i1,2022-23,Milton-Collicot,01890005, 97.0, 93.5, 97.1, 95.3, 97.0, 98.1,"","","","","","","", 96.4, 585 +5.161290322580645,5,a-picp-i1,2022-23,Milton-Cunningham School,01890007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 534 +5.161290322580645,5,a-picp-i1,2022-23,Milton-Glover,01890010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 629 +3.3341935483870966,3.33,a-picp-i1,2022-23,Milton-Milton High,01890505,"","","","","","","","","", 66.7, 69.8, 61.5, 60.7, 64.6," 1,058" +5.150967741935483,5,a-picp-i1,2022-23,Milton-Tucker,01890020, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","","","","", 99.8, 424 +2.88,2.88,a-picp-i1,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605,"","","","","","","","","", 72.7, 44.1, 55.0, 50.3, 55.8, 685 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Buckland-Shelburne Regional,07170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 245 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Colrain Central,07170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 86 +2.270967741935484,2.27,a-picp-i1,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505,"","","","","","","", 30.6, 37.7, 64.3, 30.6, 59.5, 61.5, 44.0, 282 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Sanderson Academy,07170020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 105 +5.161290322580645,5,a-picp-i1,2022-23,Monomoy Regional School District-Chatham Elementary School,07120001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Monomoy Regional School District-Harwich Elementary School,07120002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 432 +3.5045161290322584,3.5,a-picp-i1,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515,"","","","","","","","", 64.5, 66.0, 64.9, 73.3, 73.2, 67.9, 703 +5.150967741935483,5,a-picp-i1,2022-23,Monomoy Regional School District-Monomoy Regional Middle School,07120315,"","","","","", 100.0, 99.3, 100.0,"","","","","", 99.8, 453 +5.135483870967742,5,a-picp-i1,2022-23,Monson-Granite Valley School,01910030,"", 100.0, 100.0, 100.0, 97.1, 100.0, 100.0,"","","","","","", 99.5, 408 +3.6903225806451614,3.69,a-picp-i1,2022-23,Monson-Monson High School,01910505,"","","","","","","", 100.0, 97.2, 53.5, 56.3, 66.7, 10.5, 71.5, 291 +5.161290322580645,5,a-picp-i1,2022-23,Monson-Quarry Hill Community School,01910010, 100.0,"","","","","","","","","","","","", 100.0, 60 +1.0116129032258065,1.01,a-picp-i1,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605,"","","","","","","","","", 31.1, 14.9, 13.3, 18.6, 19.6," 1,393" +5.161290322580645,5,a-picp-i1,2022-23,Mount Greylock-Lanesborough Elementary,07150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 213 +2.8593548387096774,2.86,a-picp-i1,2022-23,Mount Greylock-Mt Greylock Regional High,07150505,"","","","","","","", 37.9, 31.8, 69.9, 57.3, 74.5, 69.5, 55.4, 542 +5.161290322580645,5,a-picp-i1,2022-23,Mount Greylock-Williamstown Elementary,07150010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 404 +4.072258064516129,4.07,a-picp-i1,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 5.2, 11.1, 78.9," 1,605" +5.027096774193549,5,a-picp-i1,2022-23,Nahant-Johnson,01960010, 100.0, 100.0, 96.7, 100.0, 100.0, 100.0, 88.9,"","","","","","", 97.4, 117 +4.908387096774193,4.91,a-picp-i1,2022-23,Nantucket-Cyrus Peirce,01970010,"","","","","","", 98.1, 94.7, 93.5,"","","","", 95.1, 391 +5.161290322580645,5,a-picp-i1,2022-23,Nantucket-Nantucket Elementary,01970005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 360 +4.098064516129033,4.1,a-picp-i1,2022-23,Nantucket-Nantucket High,01970505,"","","","","","","","","", 78.8, 84.3, 70.8, 81.9, 79.4, 592 +5.161290322580645,5,a-picp-i1,2022-23,Nantucket-Nantucket Intermediate School,01970020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +4.877419354838709,4.88,a-picp-i1,2022-23,Narragansett-Narragansett Middle,07200305,"","","","","", 90.8, 96.6, 96.0,"","","","","", 94.5, 365 +2.2606451612903222,2.26,a-picp-i1,2022-23,Narragansett-Narragansett Regional High,07200505,"","","","","","","","", 9.3, 51.9, 58.2, 64.7, 55.4, 43.8, 466 +5.161290322580645,5,a-picp-i1,2022-23,Narragansett-Templeton Elementary School,07200020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 554 +2.3845161290322583,2.38,a-picp-i1,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605,"","","","","","","","","", 57.0, 46.2, 36.5, 42.3, 46.2, 746 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Center School,07250020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 456 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Florence Sawyer School,07250025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 712 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Hale,07250310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 270 +5.12,5,a-picp-i1,2022-23,Nashoba-Luther Burbank Middle School,07250305,"","","","","","", 98.8, 100.0, 98.8,"","","","", 99.2, 240 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 444 +3.2877419354838713,3.29,a-picp-i1,2022-23,Nashoba-Nashoba Regional,07250505,"","","","","","","","","", 58.9, 73.2, 59.6, 63.1, 63.7, 823 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Bennett-Hemenway,01980005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 483 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Brown,01980010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 501 +5.156129032258065,5,a-picp-i1,2022-23,Natick-J F Kennedy Middle School,01980305,"","","","","", 100.0, 100.0, 99.5, 100.0,"","","","", 99.9, 899 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Johnson,01980031,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 136 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Lilja Elementary,01980035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 415 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Memorial,01980043, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 435 +3.5509677419354837,3.55,a-picp-i1,2022-23,Natick-Natick High,01980505,"","","","","","","","","", 91.4, 58.3, 51.5, 71.4, 68.8," 1,596" +5.145806451612903,5,a-picp-i1,2022-23,Natick-Wilson Middle,01980310,"","","","","", 99.0, 100.0, 100.0, 100.0,"","","","", 99.7, 777 +2.8748387096774195,2.87,a-picp-i1,2022-23,Nauset-Nauset Regional High,06600505,"","","","","","","","","", 64.5, 57.6, 54.8, 47.3, 55.7, 768 +3.9690322580645163,3.97,a-picp-i1,2022-23,Nauset-Nauset Regional Middle,06600305,"","","","","","", 98.9, 52.5, 79.3,"","","","", 76.9, 536 +5.161290322580645,5,a-picp-i1,2022-23,Needham-Broadmeadow,01990005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 507 +5.094193548387097,5,a-picp-i1,2022-23,Needham-High Rock School,01990410,"","","","","","", 98.7,"","","","","","", 98.7, 449 +5.161290322580645,5,a-picp-i1,2022-23,Needham-John Eliot,01990020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 421 +4.041290322580645,4.04,a-picp-i1,2022-23,Needham-Needham High,01990505,"","","","","","","","","", 98.8, 96.0, 71.5, 43.2, 78.3," 1,639" +5.161290322580645,5,a-picp-i1,2022-23,Needham-Newman Elementary,01990050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 621 +5.016774193548387,5,a-picp-i1,2022-23,Needham-Pollard Middle,01990405,"","","","","","","", 95.5, 99.2,"","","","", 97.2, 821 +5.161290322580645,5,a-picp-i1,2022-23,Needham-Sunita L. Williams Elementary,01990035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 532 +5.161290322580645,5,a-picp-i1,2022-23,Needham-William Mitchell,01990040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 449 +4.655483870967742,4.66,a-picp-i1,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 100.0, 100.0, 100.0, 100.0, 100.0, 92.2, 100.0, 92.3, 100.0, 97.5, 96.3, 63.8, 36.7, 90.2, 763 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Abraham Lincoln,02010095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 647 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Alfred J Gomes,02010063, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 482 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Betsey B Winslow,02010140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 230 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Carlos Pacheco,02010105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Casimir Pulaski,02010123, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 463 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Charles S Ashley,02010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Ellen R Hathaway,02010075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 197 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Elwyn G Campbell,02010020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 210 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Hayden/McFadden,02010078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 605 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-James B Congdon,02010040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Jireh Swift,02010130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 186 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-John Avery Parker,02010115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 220 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-John B Devalles,02010050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 288 +4.6090322580645156,4.61,a-picp-i1,2022-23,New Bedford-Keith Middle School,02010405,"","","","","","", 89.9, 93.8, 85.3,"","","","", 89.3, 853 +3.6541935483870964,3.65,a-picp-i1,2022-23,New Bedford-New Bedford High,02010505,"","","","","","","","","", 90.8, 64.3, 69.6, 54.3, 70.8," 2,848" +5.094193548387097,5,a-picp-i1,2022-23,New Bedford-Normandin Middle School,02010410,"","","","","","", 98.2, 98.9, 98.9,"","","","", 98.7," 1,055" +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Renaissance Community Innovation School,02010124, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 101 +4.72258064516129,4.72,a-picp-i1,2022-23,New Bedford-Roosevelt Middle School,02010415,"","","","","","", 92.3, 89.3, 93.0,"","","","", 91.5, 800 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 545 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Thomas R Rodman,02010125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 196 +4.407741935483871,4.41,a-picp-i1,2022-23,New Bedford-Trinity Day Academy,02010510,"","","","","", 100.0, 100.0, 100.0, 100.0, 77.8, 73.3, 75.0, 80.0, 85.4, 82 +2.183225806451613,2.18,a-picp-i1,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515,"","","","","","", 0.0, 0.0, 0.0, 52.0, 50.0, 44.4, 38.2, 42.3, 137 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-William H Taylor,02010135, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 218 +1.1148387096774195,1.11,a-picp-i1,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305,"","","","","","", 0.0, 36.2, 1.8, 31.0, 31.5, 28.4, 22.6, 21.6, 746 +5.161290322580645,5,a-picp-i1,2022-23,New Salem-Wendell-Swift River,07280015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 121 +5.145806451612903,5,a-picp-i1,2022-23,Newburyport-Edward G. Molin Elementary School,02040030,"","","","", 99.3, 100.0,"","","","","","","", 99.7, 286 +5.161290322580645,5,a-picp-i1,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 526 +2.9522580645161294,2.95,a-picp-i1,2022-23,Newburyport-Newburyport High,02040505,"","","","","","","","","", 65.8, 72.1, 41.7, 50.2, 57.2, 818 +5.140645161290323,5,a-picp-i1,2022-23,Newburyport-Rupert A Nock Middle,02040305,"","","","","","", 100.0, 99.4, 99.4,"","","","", 99.6, 486 +5.161290322580645,5,a-picp-i1,2022-23,Newton-A E Angier,02070005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 376 +5.104516129032258,5,a-picp-i1,2022-23,Newton-Bigelow Middle,02070305,"","","","","","", 100.0, 98.6, 98.2,"","","","", 98.9, 449 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Bowen,02070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2022-23,Newton-C C Burr,02070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Cabot,02070025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.104516129032258,5,a-picp-i1,2022-23,Newton-Charles E Brown Middle,02070310,"","","","","","", 98.4, 99.2, 99.2,"","","","", 98.9, 761 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Countryside,02070040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.150967741935483,5,a-picp-i1,2022-23,Newton-F A Day Middle,02070315,"","","","","","", 100.0, 99.7, 99.7,"","","","", 99.8, 934 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Franklin,02070055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 367 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Horace Mann,02070075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 366 +5.161290322580645,5,a-picp-i1,2022-23,Newton-John Ward,02070120, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 196 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Lincoln-Eliot,02070070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Mason-Rice,02070080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Memorial Spaulding,02070105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 395 +2.7148387096774194,2.71,a-picp-i1,2022-23,Newton-Newton North High,02070505,"","","","","","","","","", 60.3, 58.9, 45.5, 45.4, 52.6," 2,073" +2.689032258064516,2.69,a-picp-i1,2022-23,Newton-Newton South High,02070510,"","","","","","","","","", 51.2, 58.7, 54.1, 44.8, 52.1," 1,854" +5.0116129032258065,5,a-picp-i1,2022-23,Newton-Oak Hill Middle,02070320,"","","","","","", 99.6, 91.6, 99.6,"","","","", 97.1, 664 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Peirce,02070100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 238 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Underwood,02070115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 223 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Williams,02070125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 231 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Zervas,02070130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 410 +0.0,1,a-picp-i1,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 585 +5.161290322580645,5,a-picp-i1,2022-23,Norfolk-Freeman-Kennedy School,02080005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 519 +5.161290322580645,5,a-picp-i1,2022-23,Norfolk-H Olive Day,02080015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 429 +5.135483870967742,5,a-picp-i1,2022-23,North Adams-Brayton,02090035, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.5, 201 +5.109677419354838,5,a-picp-i1,2022-23,North Adams-Colegrove Park Elementary,02090008, 100.0, 100.0, 100.0, 97.2, 100.0, 96.0, 100.0,"","","","","","", 99.0, 209 +3.411612903225806,3.41,a-picp-i1,2022-23,North Adams-Drury High,02090505,"","","","","","","", 95.2, 95.9, 48.8, 41.1, 54.5, 53.8, 66.1, 487 +5.140645161290323,5,a-picp-i1,2022-23,North Adams-Greylock,02090015, 100.0, 100.0, 100.0, 100.0, 100.0, 96.8, 100.0,"","","","","","", 99.6, 239 +5.161290322580645,5,a-picp-i1,2022-23,North Andover-Anne Bradstreet Early Childhood Center,02110005, 100.0,"","","","","","","","","","","","", 100.0, 304 +5.150967741935483,5,a-picp-i1,2022-23,North Andover-Annie L Sargent School,02110018,"", 98.9, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 466 +5.1251612903225805,5,a-picp-i1,2022-23,North Andover-Atkinson,02110001,"", 100.0, 100.0, 100.0, 96.6, 100.0,"","","","","","","", 99.3, 276 +5.145806451612903,5,a-picp-i1,2022-23,North Andover-Franklin,02110010,"", 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 383 +5.094193548387097,5,a-picp-i1,2022-23,North Andover-Kittredge,02110015,"", 97.5, 100.0, 97.9, 97.8, 100.0,"","","","","","","", 98.7, 228 +3.726451612903226,3.73,a-picp-i1,2022-23,North Andover-North Andover High,02110505,"","","","","","","","","", 81.9, 77.9, 66.2, 61.8, 72.2," 1,336" +5.073548387096774,5,a-picp-i1,2022-23,North Andover-North Andover Middle,02110305,"","","","","","", 98.8, 97.4, 98.7,"","","","", 98.3," 1,066" +5.145806451612903,5,a-picp-i1,2022-23,North Andover-Thomson,02110020,"", 100.0, 98.5, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 309 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Amvet Boulevard,02120007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 410 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Community,02120030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 292 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Falls,02120010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 232 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 533 +3.349677419354839,3.35,a-picp-i1,2022-23,North Attleborough-North Attleboro High,02120505,"","","","","","","","","", 64.9, 67.4, 62.7, 64.4, 64.9," 1,122" +5.130322580645162,5,a-picp-i1,2022-23,North Attleborough-North Attleborough Middle,02120305,"","","","","","", 100.0, 98.5, 99.7,"","","","", 99.4, 964 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Roosevelt Avenue,02120015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 251 +5.1251612903225805,5,a-picp-i1,2022-23,North Brookfield-North Brookfield Elementary,02150015, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 97.8,"","","","","","", 99.3, 269 +2.8851612903225807,2.89,a-picp-i1,2022-23,North Brookfield-North Brookfield High,02150505,"","","","","","","", 89.5, 7.7, 65.5, 76.2, 63.6, 35.3, 55.9, 145 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Ashby Elementary,07350010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 136 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Hawthorne Brook,07350030,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 470 +5.140645161290323,5,a-picp-i1,2022-23,North Middlesex-Nissitissit Middle School,07350310,"","","","","", 100.0, 100.0, 100.0, 98.4,"","","","", 99.6, 490 +3.6025806451612903,3.6,a-picp-i1,2022-23,North Middlesex-North Middlesex Regional,07350505,"","","","","","","","","", 75.1, 62.3, 70.6, 72.6, 69.8, 755 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Spaulding Memorial,07350005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 417 +0.0,1,a-picp-i1,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","", 0.0, 10 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Varnum Brook,07350035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 627 +5.161290322580645,5,a-picp-i1,2022-23,North Reading-E Ethel Little School,02170003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 300 +5.161290322580645,5,a-picp-i1,2022-23,North Reading-J Turner Hood,02170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 357 +5.047741935483871,5,a-picp-i1,2022-23,North Reading-L D Batchelder,02170005, 86.5, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 97.8, 464 +2.838709677419355,2.84,a-picp-i1,2022-23,North Reading-North Reading High,02170505,"","","","","","","","","", 26.9, 46.6, 69.8, 79.7, 55.0, 644 +5.027096774193549,5,a-picp-i1,2022-23,North Reading-North Reading Middle,02170305,"","","","","","", 97.6, 98.0, 96.7,"","","","", 97.4, 542 +4.273548387096774,4.27,a-picp-i1,2022-23,Northampton-Bridge Street,02100005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.8, 244 +4.23741935483871,4.24,a-picp-i1,2022-23,Northampton-Jackson Street,02100020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.1, 290 +4.701935483870967,4.7,a-picp-i1,2022-23,Northampton-John F Kennedy Middle School,02100410,"","","","","","", 85.2, 93.3, 94.8,"","","","", 91.1, 596 +4.309677419354839,4.31,a-picp-i1,2022-23,Northampton-Leeds,02100025, 0.0, 97.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 261 +2.905806451612903,2.91,a-picp-i1,2022-23,Northampton-Northampton High,02100505,"","","","","","","","","", 64.7, 61.0, 55.3, 44.9, 56.3, 893 +4.361290322580645,4.36,a-picp-i1,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.5, 233 +3.0709677419354837,3.07,a-picp-i1,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705,"","","","","","","","","", 98.0, 99.3, 4.4, 26.2, 59.5, 571 +2.1625806451612903,2.16,a-picp-i1,2022-23,Northboro-Southboro-Algonquin Regional High,07300505,"","","","","","","","","", 54.2, 40.1, 24.9, 49.7, 41.9," 1,212" +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Fannie E Proctor,02130015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Lincoln Street,02130003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 291 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Marguerite E Peaslee,02130014, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Marion E Zeh,02130020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 250 +5.094193548387097,5,a-picp-i1,2022-23,Northborough-Robert E. Melican Middle School,02130305,"","","","","","", 99.5, 98.5, 98.3,"","","","", 98.7, 553 +5.161290322580645,5,a-picp-i1,2022-23,Northbridge-Northbridge Elementary School,02140001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 851 +3.643870967741935,3.64,a-picp-i1,2022-23,Northbridge-Northbridge High,02140505,"","","","","","","","","", 77.6, 68.6, 76.7, 59.1, 70.6, 507 +5.130322580645162,5,a-picp-i1,2022-23,Northbridge-Northbridge Middle,02140305,"","","","","","", 99.3, 98.8, 100.0,"","","","", 99.4, 484 +0.26322580645161286,1,a-picp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605,"","","","","","","","","", 0.0, 7.0, 7.4, 6.7, 5.1," 1,294" +0.0,1,a-picp-i1,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 535 +5.145806451612903,5,a-picp-i1,2022-23,Norton-Henri A. Yelle,02180060,"","","","", 99.3, 100.0,"","","","","","","", 99.7, 334 +5.161290322580645,5,a-picp-i1,2022-23,Norton-J C Solmonese,02180015, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 414 +5.161290322580645,5,a-picp-i1,2022-23,Norton-L G Nourse Elementary,02180010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 293 +2.972903225806452,2.97,a-picp-i1,2022-23,Norton-Norton High,02180505,"","","","","","","","","", 52.4, 55.7, 56.9, 66.0, 57.6, 681 +5.104516129032258,5,a-picp-i1,2022-23,Norton-Norton Middle,02180305,"","","","","","", 99.5, 98.4, 99.0,"","","","", 98.9, 560 +5.161290322580645,5,a-picp-i1,2022-23,Norwell-Grace Farrar Cole,02190005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 501 +3.9070967741935485,3.91,a-picp-i1,2022-23,Norwell-Norwell High,02190505,"","","","","","","","","", 86.9, 85.5, 63.2, 67.5, 75.7, 600 +5.078709677419355,5,a-picp-i1,2022-23,Norwell-Norwell Middle School,02190405,"","","","","","", 96.4, 98.8, 100.0,"","","","", 98.4, 498 +5.161290322580645,5,a-picp-i1,2022-23,Norwell-William G Vinal,02190020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 520 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-Balch,02200005,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +4.949677419354839,4.95,a-picp-i1,2022-23,Norwood-Charles J Prescott,02200025, 0.0, 89.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 95.9, 245 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-Cornelius M Callahan,02200010,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +4.846451612903226,4.85,a-picp-i1,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305,"","","","","","", 96.8, 94.7, 89.7,"","","","", 93.9, 804 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-F A Cleveland,02200015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 307 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-George F. Willett,02200075, 100.0,"","","","","","","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-John P Oldham,02200020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 269 +3.1070967741935487,3.11,a-picp-i1,2022-23,Norwood-Norwood High,02200505,"","","","","","","","","", 82.6, 75.1, 47.1, 39.9, 60.2, 962 +4.980645161290322,4.98,a-picp-i1,2022-23,Oak Bluffs-Oak Bluffs Elementary,02210005, 100.0, 100.0, 100.0, 97.4, 100.0, 91.9, 95.0, 93.1, 92.3,"","","","", 96.5, 426 +0.39741935483870966,1,a-picp-i1,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605,"","","","","","","","","", 9.4, 5.7, 6.5, 9.3, 7.7, 556 +3.3548387096774195,3.35,a-picp-i1,2022-23,Old Rochester-Old Rochester Regional High,07400505,"","","","","","","","","", 77.3, 64.9, 57.0, 61.2, 65.0, 620 +5.135483870967742,5,a-picp-i1,2022-23,Old Rochester-Old Rochester Regional Jr High,07400405,"","","","","","","", 100.0, 99.0,"","","","", 99.5, 426 +3.4425806451612906,3.44,a-picp-i1,2022-23,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 100.0, 100.0, 100.0, 100.0, 100.0, 97.6, 0.0, 0.0, 0.0,"","","","", 66.7, 360 +5.104516129032258,5,a-picp-i1,2022-23,Orange-Dexter Park,02230010,"","","", 100.0, 98.5, 100.0, 97.3,"","","","","","", 98.9, 282 +5.135483870967742,5,a-picp-i1,2022-23,Orange-Fisher Hill,02230015, 98.3, 100.0, 100.0,"","","","","","","","","","", 99.5, 186 +5.161290322580645,5,a-picp-i1,2022-23,Orleans-Orleans Elementary,02240005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Oxford-Alfred M Chaffee,02260010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Oxford-Clara Barton,02260005,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 223 +3.855483870967742,3.86,a-picp-i1,2022-23,Oxford-Oxford High,02260505,"","","","","","","","","", 80.7, 76.9, 67.0, 72.0, 74.7, 383 +5.089032258064516,5,a-picp-i1,2022-23,Oxford-Oxford Middle,02260405,"","","","","", 99.1, 99.3, 98.5, 97.6,"","","","", 98.6, 515 +5.083870967741936,5,a-picp-i1,2022-23,Palmer-Old Mill Pond,02270008, 97.6, 97.7, 97.3, 100.0, 100.0, 99.1,"","","","","","","", 98.5, 545 +4.211612903225806,4.21,a-picp-i1,2022-23,Palmer-Palmer High,02270505,"","","","","","", 95.2, 98.7, 95.6, 73.0, 68.1, 59.4, 64.1, 81.6, 537 +1.6258064516129032,1.63,a-picp-i1,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605,"","","","","","","","","", 0.0, 0.0, 70.5, 67.7, 31.5, 629 +2.96258064516129,2.96,a-picp-i1,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505,"","","","","","","","","", 47.4, 65.5, 38.2, 73.3, 57.4, 284 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Captain Samuel Brown,02290005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 376 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Center,02290015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 425 +5.083870967741936,5,a-picp-i1,2022-23,Peabody-J Henry Higgins Middle,02290305,"","","","","","", 98.7, 97.9, 98.7,"","","","", 98.5," 1,361" +5.161290322580645,5,a-picp-i1,2022-23,Peabody-John E Burke,02290007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 250 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-John E. McCarthy,02290016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +1.0993548387096774,1.1,a-picp-i1,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.3, 89 +2.673548387096774,2.67,a-picp-i1,2022-23,Peabody-Peabody Veterans Memorial High,02290510,"","","","","","","","","", 61.0, 41.4, 52.6, 51.9, 51.8," 1,451" +5.161290322580645,5,a-picp-i1,2022-23,Peabody-South Memorial,02290035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 408 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Thomas Carroll,02290010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 584 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-West Memorial,02290045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 216 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-William A Welch Sr,02290027, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 222 +5.161290322580645,5,a-picp-i1,2022-23,Pelham-Pelham Elementary,02300005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 132 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-Bryantville Elementary,02310003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 432 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-Hobomock Elementary,02310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 405 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-North Pembroke Elementary,02310015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 447 +5.109677419354838,5,a-picp-i1,2022-23,Pembroke-Pembroke Community Middle School,02310305,"","","","","","","", 100.0, 98.1,"","","","", 99.0, 406 +3.04,3.04,a-picp-i1,2022-23,Pembroke-Pembroke High School,02310505,"","","","","","","","","", 57.7, 59.4, 48.3, 69.1, 58.9, 721 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 189 +5.145806451612903,5,a-picp-i1,2022-23,Pentucket-Dr John C Page School,07450015, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 295 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Elmer S Bagnall,07450005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 452 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Helen R Donaghue School,07450010,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 249 +3.5458064516129033,3.55,a-picp-i1,2022-23,Pentucket-Pentucket Regional Middle,07450405,"","","","","","","", 95.9, 43.5,"","","","", 68.7, 358 +3.5251612903225804,3.53,a-picp-i1,2022-23,Pentucket-Pentucket Regional Sr High,07450505,"","","","","","","","","", 72.3, 79.6, 67.6, 54.4, 68.3, 590 +5.161290322580645,5,a-picp-i1,2022-23,Petersham-Petersham Center,02340005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 125 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 39 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 108 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 146 +4.640000000000001,4.64,a-picp-i1,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 100.0, 98.5, 100.0, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 100.0, 72.1, 93.3, 89.9, 792 +3.390967741935484,3.39,a-picp-i1,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 100.0, 100.0, 100.0,"","","","", 100.0, 97.3, 0.0, 0.0, 60.0, 66.7, 65.7, 466 +4.846451612903226,4.85,a-picp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.5, 31.8, 10.5, 93.9, 544 +5.161290322580645,5,a-picp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505,"","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 398 +5.161290322580645,5,a-picp-i1,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 190 +5.104516129032258,5,a-picp-i1,2022-23,Pioneer Valley-Northfield Elementary,07500008, 100.0, 100.0, 96.7, 100.0, 100.0, 96.4, 100.0,"","","","","","", 98.9, 177 +4.025806451612903,4.03,a-picp-i1,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505,"","","","","","","", 100.0, 100.0, 50.0, 52.6, 52.5, 81.3, 78.0, 259 +5.099354838709678,5,a-picp-i1,2022-23,Pittsfield-Allendale,02360010, 98.0, 100.0, 97.4, 97.7, 100.0, 100.0,"","","","","","","", 98.8, 257 +4.645161290322581,4.65,a-picp-i1,2022-23,Pittsfield-Crosby,02360065, 100.0, 96.2, 87.0, 87.2, 88.9, 84.0,"","","","","","","", 90.0, 239 +0.0,1,a-picp-i1,2022-23,Pittsfield-Crosby Educational Academy,02360030,"", 0.0,"", 0.0, 0.0, 0.0,"","","","","","","", 0.0, 17 +4.056774193548387,4.06,a-picp-i1,2022-23,Pittsfield-Eagle Education Academy,02360525,"","","","","","", 66.7, 100.0, 75.0, 66.7, 100.0,"","", 78.6, 14 +4.949677419354839,4.95,a-picp-i1,2022-23,Pittsfield-Egremont,02360035, 98.1, 100.0, 97.8, 94.8, 96.9, 88.9,"","","","","","","", 95.9, 366 +3.5664516129032253,3.57,a-picp-i1,2022-23,Pittsfield-John T Reid Middle,02360305,"","","","","","", 67.1, 74.6, 66.7,"","","","", 69.1, 460 +4.913548387096775,4.91,a-picp-i1,2022-23,Pittsfield-Morningside Community School,02360055, 100.0, 96.2, 96.2, 100.0, 96.2, 82.4,"","","","","","","", 95.2, 315 +3.3083870967741933,3.31,a-picp-i1,2022-23,Pittsfield-Pittsfield High,02360505,"","","","","","","","","", 65.6, 48.2, 63.4, 81.5, 64.1, 649 +4.887741935483871,4.89,a-picp-i1,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705,"", 100.0, 100.0, 100.0, 100.0, 80.0, 100.0, 100.0, 100.0, 100.0, 90.0, 88.2, 90.9, 94.7, 94 +5.130322580645162,5,a-picp-i1,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 100.0, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 99.4, 162 +5.099354838709678,5,a-picp-i1,2022-23,Pittsfield-Silvio O Conte Community,02360105, 98.2, 100.0, 100.0, 100.0, 98.4, 96.6,"","","","","","","", 98.8, 330 +5.042580645161291,5,a-picp-i1,2022-23,Pittsfield-Stearns,02360090, 100.0, 96.4, 100.0, 100.0, 92.5, 97.8,"","","","","","","", 97.7, 213 +2.9212903225806452,2.92,a-picp-i1,2022-23,Pittsfield-Taconic High,02360510,"","","","","","","","","", 80.0, 59.0, 35.2, 45.1, 56.6, 843 +4.190967741935484,4.19,a-picp-i1,2022-23,Pittsfield-Theodore Herberg Middle,02360310,"","","","","","", 84.0, 88.1, 73.4,"","","","", 81.2, 490 +5.12,5,a-picp-i1,2022-23,Pittsfield-Williams,02360100, 100.0, 100.0, 100.0, 97.8, 100.0, 97.4,"","","","","","","", 99.2, 239 +5.161290322580645,5,a-picp-i1,2022-23,Plainville-Anna Ware Jackson,02380010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 234 +5.161290322580645,5,a-picp-i1,2022-23,Plainville-Beatrice H Wood Elementary,02380005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 347 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Cold Spring,02390005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 213 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Federal Furnace School,02390011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Hedge,02390010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Indian Brook,02390012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 578 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Manomet Elementary,02390015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 254 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 508 +4.990967741935484,4.99,a-picp-i1,2022-23,Plymouth-Plymouth Commun Intermediate,02390405,"","","","","","", 99.0, 93.8, 96.7,"","","","", 96.7, 901 +3.2051612903225806,3.21,a-picp-i1,2022-23,Plymouth-Plymouth North High,02390505,"","","","","","","","","", 63.7, 59.6, 56.3, 69.6, 62.1," 1,290" +2.343225806451613,2.34,a-picp-i1,2022-23,Plymouth-Plymouth South High,02390515,"","","","","","","","","", 39.1, 41.2, 47.3, 55.0, 45.4," 1,019" +5.12,5,a-picp-i1,2022-23,Plymouth-Plymouth South Middle,02390305,"","","","","","", 100.0, 100.0, 97.6,"","","","", 99.2, 624 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-South Elementary,02390046, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 624 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-West Elementary,02390047, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 314 +5.161290322580645,5,a-picp-i1,2022-23,Plympton-Dennett Elementary,02400010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 239 +1.5019354838709678,1.5,a-picp-i1,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 98.6, 95.1, 55.1, 6.2, 8.7, 29.1, 938 +5.032258064516129,5,a-picp-i1,2022-23,Provincetown-Provincetown Schools,02420020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 90.0, 87.5, 100.0,"","","","", 97.5, 120 +5.130322580645162,5,a-picp-i1,2022-23,Quabbin-Hardwick Elementary,07530005, 100.0, 97.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 172 +5.161290322580645,5,a-picp-i1,2022-23,Quabbin-Hubbardston Center,07530010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,Quabbin-Oakham Center,07530025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 178 +3.499354838709677,3.5,a-picp-i1,2022-23,Quabbin-Quabbin Regional High School,07530505,"","","","","","","","","", 79.1, 64.0, 57.4, 67.6, 67.8, 572 +5.140645161290323,5,a-picp-i1,2022-23,Quabbin-Quabbin Regional Middle School,07530405,"","","","","","", 100.0, 99.4, 99.5,"","","","", 99.6, 528 +5.052903225806452,5,a-picp-i1,2022-23,Quabbin-Ruggles Lane,07530030, 96.0, 98.4, 94.7, 98.6, 100.0, 100.0,"","","","","","","", 97.9, 338 +2.8851612903225807,2.89,a-picp-i1,2022-23,Quaboag Regional-Quaboag Regional High,07780505,"","","","","","","","","", 43.3, 43.4, 70.9, 64.9, 55.9, 356 +5.006451612903226,5,a-picp-i1,2022-23,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305,"","","","","","","", 95.7, 98.2,"","","","", 97.0, 203 +5.161290322580645,5,a-picp-i1,2022-23,Quaboag Regional-Warren Elementary,07780005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 262 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Atherton Hough,02430040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 253 +5.078709677419355,5,a-picp-i1,2022-23,Quincy-Atlantic Middle,02430305,"","","","","","", 97.5, 99.4, 98.4,"","","","", 98.4, 562 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Beechwood Knoll Elementary,02430020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 332 +5.114838709677419,5,a-picp-i1,2022-23,Quincy-Broad Meadows Middle,02430310,"","","","","","", 98.0, 100.0, 99.1,"","","","", 99.1, 317 +5.12,5,a-picp-i1,2022-23,Quincy-Central Middle,02430315,"","","","","","", 99.5, 100.0, 98.1,"","","","", 99.2, 644 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Charles A Bernazzani Elementary,02430025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Clifford H Marshall Elementary,02430055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 522 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Francis W Parker,02430075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Lincoln-Hancock Community School,02430035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 559 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Merrymount,02430060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 326 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Montclair,02430065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 428 +1.7496774193548386,1.75,a-picp-i1,2022-23,Quincy-North Quincy High,02430510,"","","","","","","","","", 50.8, 30.6, 26.8, 26.3, 33.9," 1,462" +5.058064516129032,5,a-picp-i1,2022-23,Quincy-Point Webster Middle,02430325,"","","","","", 100.0, 96.8, 94.8, 100.0,"","","","", 98.0, 358 +1.8425806451612905,1.84,a-picp-i1,2022-23,Quincy-Quincy High,02430505,"","","","","","","","","", 43.5, 37.3, 36.2, 26.4, 35.7," 1,519" +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Snug Harbor Community School,02430090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 299 +5.0683870967741935,5,a-picp-i1,2022-23,Quincy-South West Middle School,02430320,"","","","","", 100.0, 100.0, 98.2, 94.7,"","","","", 98.2, 446 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Squantum,02430095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 346 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Wollaston School,02430110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 324 +4.567741935483871,4.57,a-picp-i1,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505,"","","","","","","", 93.9, 95.2, 93.8, 80.8, 84.5, 76.3, 88.5, 532 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-Elizabeth G Lyons Elementary,02440020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-J F Kennedy Elementary,02440018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 335 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-Margaret L Donovan,02440015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 431 +5.058064516129032,5,a-picp-i1,2022-23,Randolph-Martin E Young Elementary,02440040, 100.0, 100.0, 92.9, 95.0, 100.0, 100.0,"","","","","","","", 98.0, 244 +4.541935483870968,4.54,a-picp-i1,2022-23,Randolph-Randolph Community Middle,02440410,"","","","","","", 86.2, 77.3, 99.5,"","","","", 88.0, 594 +3.478709677419355,3.48,a-picp-i1,2022-23,Randolph-Randolph High,02440505,"","","","","","","","","", 57.5, 76.1, 76.5, 64.0, 67.4, 650 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Alice M Barrows,02460002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 357 +5.052903225806452,5,a-picp-i1,2022-23,Reading-Arthur W Coolidge Middle,02460305,"","","","","","", 97.2, 100.0, 96.6,"","","","", 97.9, 427 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Birch Meadow,02460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 355 +5.161290322580645,5,a-picp-i1,2022-23,Reading-J Warren Killam,02460017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 414 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Joshua Eaton,02460010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +2.4206451612903224,2.42,a-picp-i1,2022-23,Reading-Reading Memorial High,02460505,"","","","","","","","","", 59.7, 71.6, 28.8, 32.1, 46.9," 1,100" +4.9393548387096775,4.94,a-picp-i1,2022-23,Reading-Walter S Parker Middle,02460310,"","","","","","", 98.4, 99.4, 90.3,"","","","", 95.7, 464 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Wood End Elementary School,02460020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 247 +5.161290322580645,5,a-picp-i1,2022-23,Revere-A. C. Whelan Elementary School,02480003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 745 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Abraham Lincoln,02480025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 555 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Beachmont Veterans Memorial School,02480013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 320 +4.08258064516129,4.08,a-picp-i1,2022-23,Revere-CityLab Innovation High School,02480520,"","","","","","","","","", 95.2, 84.2, 87.5, 40.9, 79.1, 91 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Garfield Elementary School,02480056, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 661 +5.114838709677419,5,a-picp-i1,2022-23,Revere-Garfield Middle School,02480057,"","","","","","", 98.4, 99.5, 99.5,"","","","", 99.1, 578 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Paul Revere,02480050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 453 +1.661935483870968,1.66,a-picp-i1,2022-23,Revere-Revere High,02480505,"","","","","","","","","", 4.2, 22.4, 54.0, 63.3, 32.2," 2,193" +5.063225806451612,5,a-picp-i1,2022-23,Revere-Rumney Marsh Academy,02480014,"","","","","","", 99.0, 99.0, 96.4,"","","","", 98.1, 586 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Staff Sargent James J. Hill Elementary School,02480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 670 +5.047741935483871,5,a-picp-i1,2022-23,Revere-Susan B. Anthony Middle School,02480305,"","","","","","", 100.0, 93.6, 100.0,"","","","", 97.8, 602 +5.161290322580645,5,a-picp-i1,2022-23,Richmond-Richmond Consolidated,02490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 141 +5.027096774193549,5,a-picp-i1,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305,"","","","","", 100.0, 100.0, 98.9, 100.0, 98.7, 100.0, 81.8, 93.8, 97.4, 627 +5.161290322580645,5,a-picp-i1,2022-23,River Valley Charter (District)-River Valley Charter School,04820050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 287 +5.150967741935483,5,a-picp-i1,2022-23,Rochester-Rochester Memorial,02500005, 100.0, 100.0, 98.4, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.8, 473 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-Jefferson Elementary School,02510060, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 246 +5.1251612903225805,5,a-picp-i1,2022-23,Rockland-John W Rogers Middle,02510305,"","","","","", 100.0, 100.0, 98.5, 99.0,"","","","", 99.3, 726 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-Memorial Park,02510020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 251 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-R Stewart Esten,02510025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 323 +2.343225806451613,2.34,a-picp-i1,2022-23,Rockland-Rockland Senior High,02510505,"","","","","","","","","", 66.3, 34.1, 28.8, 45.1, 45.4, 568 +5.140645161290323,5,a-picp-i1,2022-23,Rockport-Rockport Elementary,02520005, 97.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 277 +3.4425806451612906,3.44,a-picp-i1,2022-23,Rockport-Rockport High,02520510,"","","","","","","","","", 56.4, 80.0, 67.6, 65.0, 66.7, 228 +5.135483870967742,5,a-picp-i1,2022-23,Rockport-Rockport Middle,02520305,"","","","","","", 98.1, 100.0, 100.0,"","","","", 99.5, 193 +4.113548387096774,4.11,a-picp-i1,2022-23,Rowe-Rowe Elementary,02530005, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0,"","","","","","", 79.7, 59 +5.156129032258065,5,a-picp-i1,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505,"","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 99.9," 1,222" +4.08258064516129,4.08,a-picp-i1,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485,"","","","","","", 100.0, 100.0, 100.0, 40.8, 74.3, 74.2, 63.2, 79.1, 488 +5.145806451612903,5,a-picp-i1,2022-23,Salem-Bates,02580003, 100.0, 98.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 365 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Bentley Academy Innovation School,02580010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 281 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Carlton,02580015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +4.96,4.96,a-picp-i1,2022-23,Salem-Collins Middle,02580305,"","","","","","", 95.8, 96.3, 96.3,"","","","", 96.1, 646 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Horace Mann Laboratory,02580030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +0.0,1,a-picp-i1,2022-23,Salem-New Liberty Innovation School,02580510,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 45 +2.6477419354838707,2.65,a-picp-i1,2022-23,Salem-Salem High,02580505,"","","","","","","","","", 43.9, 59.1, 51.3, 51.9, 51.3, 907 +1.104516129032258,1.1,a-picp-i1,2022-23,Salem-Salem Prep High School,02580515,"","","","","","","","","", 50.0, 20.0, 100.0, 0.0, 21.4, 14 +5.083870967741936,5,a-picp-i1,2022-23,Salem-Saltonstall School,02580050, 100.0, 89.2, 100.0, 100.0, 100.0, 100.0, 97.6, 100.0, 98.0,"","","","", 98.5, 388 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Witchcraft Heights,02580070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 461 +5.161290322580645,5,a-picp-i1,2022-23,Sandwich-Forestdale School,02610002, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 474 +5.161290322580645,5,a-picp-i1,2022-23,Sandwich-Oak Ridge,02610025,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 676 +4.325161290322581,4.33,a-picp-i1,2022-23,Sandwich-Sandwich Middle High School,02610505,"","","","","","","", 100.0, 95.5, 68.2, 82.9, 66.2, 81.1, 83.8, 932 +5.109677419354838,5,a-picp-i1,2022-23,Saugus-Belmonte STEAM Academy,02620060,"","", 99.1, 99.0, 99.5, 98.6,"","","","","","","", 99.0, 826 +2.9522580645161294,2.95,a-picp-i1,2022-23,Saugus-Saugus High,02620505,"","","","","","","","","", 77.8, 52.7, 37.1, 59.6, 57.2, 732 +4.387096774193548,4.39,a-picp-i1,2022-23,Saugus-Saugus Middle School,02620305,"","","","","","", 94.3, 79.4, 81.3,"","","","", 85.0, 627 +4.701935483870967,4.7,a-picp-i1,2022-23,Saugus-Veterans Early Learning Center,02620065, 83.3, 100.0,"","","","","","","","","","","", 91.1, 381 +3.6283870967741936,3.63,a-picp-i1,2022-23,Savoy-Emma L Miller Elementary School,02630010, 0.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0,"","","","","","", 70.3, 37 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Cushing Elementary,02640007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +5.042580645161291,5,a-picp-i1,2022-23,Scituate-Gates Middle School,02640305,"","","","","","", 99.5, 98.1, 95.5,"","","","", 97.7, 607 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Hatherly Elementary,02640010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 259 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Jenkins Elementary School,02640015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +3.5664516129032253,3.57,a-picp-i1,2022-23,Scituate-Scituate High School,02640505,"","","","","","","","","", 83.6, 80.6, 59.5, 55.6, 69.1, 761 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Wampatuck Elementary,02640020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +4.918709677419355,4.92,a-picp-i1,2022-23,Seekonk-Dr. Kevin M. Hurley Middle School,02650405,"","","","","","", 93.3, 96.3, 96.8,"","","","", 95.3, 493 +5.161290322580645,5,a-picp-i1,2022-23,Seekonk-George R Martin,02650007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 454 +5.161290322580645,5,a-picp-i1,2022-23,Seekonk-Mildred Aitken School,02650015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 523 +3.6283870967741936,3.63,a-picp-i1,2022-23,Seekonk-Seekonk High,02650505,"","","","","","","","","", 67.5, 75.2, 78.0, 60.1, 70.3, 538 +5.104516129032258,5,a-picp-i1,2022-23,Sharon-Cottage Street,02660005, 98.6, 96.8, 98.7, 98.6, 100.0, 100.0,"","","","","","","", 98.9, 445 +5.161290322580645,5,a-picp-i1,2022-23,Sharon-East Elementary,02660010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 493 +5.145806451612903,5,a-picp-i1,2022-23,Sharon-Heights Elementary,02660015, 98.9, 100.0, 100.0, 100.0, 100.0, 98.9,"","","","","","","", 99.7, 574 +3.1948387096774193,3.19,a-picp-i1,2022-23,Sharon-Sharon High,02660505,"","","","","","","","","", 80.7, 77.0, 41.8, 46.7, 61.9," 1,148" +5.150967741935483,5,a-picp-i1,2022-23,Sharon-Sharon Middle,02660305,"","","","","","", 99.6, 99.6, 100.0,"","","","", 99.8, 860 +0.5161290322580645,1,a-picp-i1,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605,"","","","","","","","","", 8.7, 9.6, 11.0, 10.9, 10.0," 1,298" +5.161290322580645,5,a-picp-i1,2022-23,Sherborn-Pine Hill,02690010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 252 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Floral Street School,02710020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 548 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 601 +5.058064516129032,5,a-picp-i1,2022-23,Shrewsbury-Oak Middle School,02710030,"","","","","","","", 97.7, 98.4,"","","","", 98.0, 964 +5.140645161290323,5,a-picp-i1,2022-23,Shrewsbury-Sherwood Middle School,02710305,"","","","","", 99.6, 99.6,"","","","","","", 99.6, 974 +2.6632258064516128,2.66,a-picp-i1,2022-23,Shrewsbury-Shrewsbury High School,02710505,"","","","","","","","","", 65.3, 49.4, 37.0, 52.9, 51.6," 1,834" +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Spring Street School,02710035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Walter J. Paton School,02710025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Shutesbury-Shutesbury Elementary,02720005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 103 +2.5083870967741935,2.51,a-picp-i1,2022-23,Silver Lake-Silver Lake Regional High,07600505,"","","","","","","","","", 37.5, 47.4, 43.7, 65.5, 48.6," 1,033" +4.5109677419354846,4.51,a-picp-i1,2022-23,Silver Lake-Silver Lake Regional Middle School,07600405,"","","","","","","", 99.6, 73.6,"","","","", 87.4, 533 +3.912258064516129,3.91,a-picp-i1,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505,"","","","","","","", 89.5, 83.3, 84.1, 73.1, 60.8, 45.2, 75.8, 368 +3.4219354838709677,3.42,a-picp-i1,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505,"","","","","","","","","", 62.5, 52.5, 73.6, 76.5, 66.3, 992 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-Chace Street,02730005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-North Elementary,02730008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 405 +5.114838709677419,5,a-picp-i1,2022-23,Somerset-Somerset Middle School,02730305,"","","","","","", 99.5, 97.7, 100.0,"","","","", 99.1, 583 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-South,02730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 263 +5.114838709677419,5,a-picp-i1,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 95.3, 98.7, 98.8, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.1, 551 +5.140645161290323,5,a-picp-i1,2022-23,Somerville-Arthur D Healey,02740075, 100.0, 98.4, 100.0, 100.0, 100.0, 97.9, 100.0, 100.0, 100.0,"","","","", 99.6, 493 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-Benjamin G Brown,02740015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 212 +4.877419354838709,4.88,a-picp-i1,2022-23,Somerville-Capuano Early Childhood Center,02740005, 93.6, 100.0,"","","","","","","","","","","", 94.5, 55 +5.156129032258065,5,a-picp-i1,2022-23,Somerville-E Somerville Community,02740111, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","", 99.9, 701 +4.707096774193548,4.71,a-picp-i1,2022-23,Somerville-Full Circle High School,02740510,"","","","","","","","","", 100.0, 100.0, 80.0, 78.6, 91.2, 57 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-John F Kennedy,02740083, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 422 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-Next Wave Junior High,02740410,"","","","","","","", 100.0, 100.0,"","","","", 100.0, 15 +3.0606451612903225,3.06,a-picp-i1,2022-23,Somerville-Somerville High,02740505,"","","","","","","","","", 70.9, 60.3, 54.2, 48.8, 59.3," 1,316" +5.161290322580645,5,a-picp-i1,2022-23,Somerville-West Somerville Neighborhood,02740115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 354 +5.1251612903225805,5,a-picp-i1,2022-23,Somerville-Winter Hill Community,02740120, 100.0, 96.8, 98.0, 100.0, 100.0, 96.3, 100.0, 100.0, 100.0,"","","","", 99.3, 420 +5.150967741935483,5,a-picp-i1,2022-23,South Hadley-Michael E. Smith Middle School,02780305,"","","","","", 99.2, 100.0, 100.0, 100.0,"","","","", 99.8, 526 +5.161290322580645,5,a-picp-i1,2022-23,South Hadley-Mosier,02780020,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 343 +2.96258064516129,2.96,a-picp-i1,2022-23,South Hadley-Plains Elementary,02780015, 0.0, 100.0,"","","","","","","","","","","", 57.4, 251 +2.193548387096774,2.19,a-picp-i1,2022-23,South Hadley-South Hadley High,02780505,"","","","","","","","","", 79.6, 50.0, 21.7, 23.4, 42.5, 497 +1.6980645161290322,1.7,a-picp-i1,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605,"","","","","","","","","", 15.4, 37.3, 49.8, 31.6, 32.9, 830 +3.92258064516129,3.92,a-picp-i1,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 28.7, 10.2, 23.5, 20.8, 76.0," 1,059" +1.6774193548387097,1.68,a-picp-i1,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605,"","","","","","","","","", 100.0, 9.1, 10.1, 8.4, 32.5, 643 +5.161290322580645,5,a-picp-i1,2022-23,Southampton-William E Norris,02750005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Southborough-Albert S. Woodward Memorial School,02760050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 269 +5.140645161290323,5,a-picp-i1,2022-23,Southborough-Margaret A Neary,02760020,"","","","", 100.0, 99.3,"","","","","","","", 99.6, 268 +5.161290322580645,5,a-picp-i1,2022-23,Southborough-Mary E Finn School,02760008, 100.0, 100.0,"","","","","","","","","","","", 100.0, 263 +4.2941935483870965,4.29,a-picp-i1,2022-23,Southborough-P Brent Trottier,02760305,"","","","","","", 99.2, 98.5, 50.0,"","","","", 83.2, 387 +5.140645161290323,5,a-picp-i1,2022-23,Southbridge-Charlton Street,02770005,"", 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 251 +5.145806451612903,5,a-picp-i1,2022-23,Southbridge-Eastford Road,02770010, 99.3, 100.0,"","","","","","","","","","","", 99.7, 288 +2.064516129032258,2.06,a-picp-i1,2022-23,Southbridge-Southbridge Academy,02770525,"","","","","","", 100.0, 100.0, 100.0, 12.5, 0.0,"", 0.0, 40.0, 20 +4.547096774193548,4.55,a-picp-i1,2022-23,Southbridge-Southbridge High School,02770515,"","","","","","","","","", 89.9, 84.3, 85.3, 93.3, 88.1, 471 +4.841290322580645,4.84,a-picp-i1,2022-23,Southbridge-Southbridge Middle School,02770315,"","","","","","", 96.6, 94.4, 90.0,"","","","", 93.8, 418 +5.161290322580645,5,a-picp-i1,2022-23,Southbridge-West Street,02770020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +0.7329032258064516,1,a-picp-i1,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605,"","","","","","","","","", 11.8, 17.5, 14.6, 12.8, 14.2," 1,566" +4.00516129032258,4.01,a-picp-i1,2022-23,Southern Berkshire-Mt Everett Regional,07650505,"","","","","","", 100.0, 97.9, 97.6, 73.7, 52.1, 64.3, 56.3, 77.6, 295 +5.161290322580645,5,a-picp-i1,2022-23,Southern Berkshire-New Marlborough Central,07650018, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 49 +0.0,1,a-picp-i1,2022-23,Southern Berkshire-South Egremont,07650030, 0.0,"","","","","","","","","","","","", 0.0, 13 +5.161290322580645,5,a-picp-i1,2022-23,Southern Berkshire-Undermountain,07650035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 211 +0.3251612903225806,1,a-picp-i1,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605,"","","","","","","","","", 6.3, 5.8, 7.0, 6.3, 6.3," 1,183" +5.161290322580645,5,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 389 +3.411612903225806,3.41,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505,"","","","","","","", 98.3, 100.0, 45.9, 59.6, 38.4, 40.7, 66.1, 634 +5.161290322580645,5,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 279 +3.8193548387096774,3.82,a-picp-i1,2022-23,Spencer-E Brookfield-David Prouty High,07670505,"","","","","","","","","", 97.2, 60.9, 58.0, 76.0, 74.0, 362 +5.161290322580645,5,a-picp-i1,2022-23,Spencer-E Brookfield-East Brookfield Elementary,07670008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 135 +4.593548387096774,4.59,a-picp-i1,2022-23,Spencer-E Brookfield-Knox Trail Middle School,07670415,"","","","","", 89.1, 86.5, 90.0, 90.7,"","","","", 89.0, 390 +5.150967741935483,5,a-picp-i1,2022-23,Spencer-E Brookfield-Wire Village School,07670040, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 442 +5.140645161290323,5,a-picp-i1,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 100.0, 100.0, 100.0, 99.2, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 96.3, 100.0, 100.0, 99.6," 1,554" +5.0683870967741935,5,a-picp-i1,2022-23,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 100.0, 98.2, 100.0, 98.2, 96.4, 100.0, 100.0, 94.6, 96.4,"","","","", 98.2, 497 +4.526451612903226,4.53,a-picp-i1,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 87.7, 359 +4.330322580645162,4.33,a-picp-i1,2022-23,Springfield-Alice B Beal Elementary,02810175, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.9, 261 +4.252903225806452,4.25,a-picp-i1,2022-23,Springfield-Arthur T Talmadge,02810165, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.4, 205 +4.438709677419355,4.44,a-picp-i1,2022-23,Springfield-Brightwood,02810025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.0, 408 +4.258064516129032,4.26,a-picp-i1,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367,"","","","","","", 81.3, 84.8, 81.7,"","","","", 82.5, 252 +5.078709677419355,5,a-picp-i1,2022-23,Springfield-Conservatory of the Arts,02810475,"","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 95.7, 91.9, 98.4, 311 +4.242580645161291,4.24,a-picp-i1,2022-23,Springfield-Daniel B Brunton,02810035, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.2, 297 +4.283870967741936,4.28,a-picp-i1,2022-23,Springfield-Edward P. Boland School,02810010, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.0, 423 +4.56258064516129,4.56,a-picp-i1,2022-23,Springfield-Elias Brookings,02810030, 9.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.4, 241 +1.0425806451612902,1.04,a-picp-i1,2022-23,Springfield-Emergence Academy,02810318,"","","","","","", 0.0, 0.0, 0.0, 62.7,"","","", 20.2, 183 +4.6090322580645156,4.61,a-picp-i1,2022-23,Springfield-Forest Park Middle,02810325,"","","","","","", 91.3, 83.2, 92.8,"","","","", 89.3, 366 +4.190967741935484,4.19,a-picp-i1,2022-23,Springfield-Frank H Freedman,02810075, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.2, 250 +4.376774193548387,4.38,a-picp-i1,2022-23,Springfield-Frederick Harris,02810080, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.8, 481 +2.270967741935484,2.27,a-picp-i1,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575,"","","","","","","","","", 0.0, 0.0, 60.0, 50.0, 44.0, 25 +0.6709677419354839,1,a-picp-i1,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580,"","","","","","","","","", 0.0, 20.0, 0.0, 14.3, 13.0, 23 +4.2064516129032254,4.21,a-picp-i1,2022-23,Springfield-German Gerena Community School,02810195, 0.0, 94.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.5, 508 +4.309677419354839,4.31,a-picp-i1,2022-23,Springfield-Glenwood,02810065, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 261 +4.5109677419354846,4.51,a-picp-i1,2022-23,Springfield-Glickman Elementary,02810068, 2.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.4, 262 +3.0451612903225804,3.05,a-picp-i1,2022-23,Springfield-High School Of Commerce,02810510,"","","","","","","","","", 68.9, 47.8, 62.0, 61.9, 59.0," 1,050" +4.376774193548387,4.38,a-picp-i1,2022-23,Springfield-Hiram L Dorman,02810050, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.8, 250 +4.170322580645161,4.17,a-picp-i1,2022-23,Springfield-Homer Street,02810085, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.8, 365 +4.418064516129032,4.42,a-picp-i1,2022-23,Springfield-Impact Prep at Chestnut,02810366,"","","","","","", 92.1, 74.3, 90.7,"","","","", 85.6, 208 +4.0929032258064515,4.09,a-picp-i1,2022-23,Springfield-Indian Orchard Elementary,02810100, 0.0, 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","", 79.3, 450 +4.87225806451613,4.87,a-picp-i1,2022-23,Springfield-John F Kennedy Middle,02810328,"","","","","","", 93.0, 93.5, 96.9,"","","","", 94.4, 394 +3.5406451612903225,3.54,a-picp-i1,2022-23,Springfield-John J Duggan Academy,02810320,"","","","","","", 63.3, 74.7, 97.5, 1.3, 72.2, 82.0, 62.3, 68.6, 807 +4.299354838709677,4.3,a-picp-i1,2022-23,Springfield-Kensington International School,02810110, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.3, 203 +4.696774193548387,4.7,a-picp-i1,2022-23,Springfield-Kiley Academy,02810316,"","","","","","", 92.9, 89.3, 90.8,"","","","", 91.0, 312 +3.2670967741935484,3.27,a-picp-i1,2022-23,Springfield-Kiley Prep,02810315,"","","","","","", 91.2, 48.1, 50.5,"","","","", 63.3, 275 +4.55741935483871,4.56,a-picp-i1,2022-23,Springfield-Liberty,02810115, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.3, 213 +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Liberty Preparatory Academy,02810560,"","","","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 10 +4.2941935483870965,4.29,a-picp-i1,2022-23,Springfield-Lincoln,02810120, 0.0, 90.6, 98.7, 91.3, 100.0, 100.0,"","","","","","","", 83.2, 381 +4.118709677419354,4.12,a-picp-i1,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 79.8, 252 +4.175483870967742,4.18,a-picp-i1,2022-23,Springfield-Mary M Lynch,02810140, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.9, 199 +4.418064516129032,4.42,a-picp-i1,2022-23,Springfield-Mary M Walsh,02810155, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.6, 229 +4.541935483870968,4.54,a-picp-i1,2022-23,Springfield-Mary O Pottenger,02810145, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.0, 359 +4.309677419354839,4.31,a-picp-i1,2022-23,Springfield-Milton Bradley School,02810023, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 412 +4.190967741935484,4.19,a-picp-i1,2022-23,Springfield-Rebecca M Johnson,02810055, 0.0, 100.0, 100.0, 96.3, 98.9, 100.0,"","","","","","","", 81.2, 489 +0.0,1,a-picp-i1,2022-23,Springfield-Rise Academy at Van Sickle,02810480,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 241 +2.4929032258064514,2.49,a-picp-i1,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620,"","","","","","","","","", 20.8, 40.5, 46.2, 93.9, 48.3," 1,341" +3.881290322580645,3.88,a-picp-i1,2022-23,Springfield-STEM Middle Academy,02810350,"","","","","","", 68.8, 71.4, 85.0,"","","","", 75.2, 294 +4.526451612903226,4.53,a-picp-i1,2022-23,Springfield-Samuel Bowles,02810020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.7, 195 +4.903225806451613,4.9,a-picp-i1,2022-23,Springfield-South End Middle School,02810355,"","","","","","", 96.9, 96.7, 90.9,"","","","", 95.0, 179 +2.7922580645161292,2.79,a-picp-i1,2022-23,Springfield-Springfield Central High,02810500,"","","","","","","","","", 42.6, 51.7, 68.2, 60.7, 54.1," 2,018" +0.8825806451612904,1,a-picp-i1,2022-23,Springfield-Springfield High School,02810570,"","","","","","","","","", 0.0, 6.7, 46.2, 16.7, 17.1, 70 +3.695483870967742,3.7,a-picp-i1,2022-23,Springfield-Springfield High School of Science and Technology,02810530,"","","","","","","","","", 70.1, 69.6, 83.1, 65.8, 71.6," 1,040" +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Springfield International Academy at Johnson,02810215,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 34 +2.487741935483871,2.49,a-picp-i1,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700,"","","","","","","","","", 56.1, 28.0, 0.0, 78.6, 48.2, 85 +3.6541935483870964,3.65,a-picp-i1,2022-23,Springfield-Springfield Legacy Academy,02810317,"","","","","","", 2.1, 99.1, 100.0,"","","","", 70.8, 319 +4.588387096774194,4.59,a-picp-i1,2022-23,Springfield-Springfield Middle School,02810360,"","","","","","", 100.0, 100.0, 77.8,"","","","", 88.9, 18 +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Springfield Public Day Elementary School,02810005,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 31 +2.1109677419354838,2.11,a-picp-i1,2022-23,Springfield-Springfield Public Day High School,02810550,"","","","","","","","","", 0.0, 9.1, 90.9, 58.3, 40.9, 44 +4.851612903225806,4.85,a-picp-i1,2022-23,Springfield-Springfield Public Day Middle School,02810345,"","","","","","", 100.0, 90.0, 92.3,"","","","", 94.0, 50 +0.0,1,a-picp-i1,2022-23,Springfield-Springfield Realization Academy,02810335,"","","","","","", 0.0, 0.0,"","","","","", 0.0, 128 +4.428387096774194,4.43,a-picp-i1,2022-23,Springfield-Sumner Avenue,02810160, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.8, 387 +4.242580645161291,4.24,a-picp-i1,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205,"","","","","","", 96.9, 98.9, 95.2, 0.0, 94.4, 95.5, 100.0, 82.2, 611 +3.468387096774194,3.47,a-picp-i1,2022-23,Springfield-The Springfield Virtual School,02810705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 87.2, 94.7, 100.0, 2.3, 24.4, 8.3, 0.0, 67.2, 387 +4.325161290322581,4.33,a-picp-i1,2022-23,Springfield-Thomas M Balliet,02810015, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.8, 240 +4.944516129032258,4.94,a-picp-i1,2022-23,Springfield-Van Sickle Academy,02810485,"","","","","","", 96.6, 97.7, 93.1,"","","","", 95.8, 263 +4.325161290322581,4.33,a-picp-i1,2022-23,Springfield-Warner,02810180, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.8, 191 +4.056774193548387,4.06,a-picp-i1,2022-23,Springfield-Washington,02810185, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 78.6, 359 +4.278709677419355,4.28,a-picp-i1,2022-23,Springfield-White Street,02810190, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.9, 385 +4.588387096774194,4.59,a-picp-i1,2022-23,Springfield-William N. DeBerry,02810045, 3.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.9, 226 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-Colonial Park,02840005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 221 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-Robin Hood,02840025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 355 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-South,02840030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 321 +4.9961290322580645,5.0,a-picp-i1,2022-23,Stoneham-Stoneham Central Middle School,02840405,"","","","","", 96.3, 96.3, 97.2, 97.4,"","","","", 96.8, 682 +3.881290322580645,3.88,a-picp-i1,2022-23,Stoneham-Stoneham High,02840505,"","","","","","","","","", 90.1, 75.9, 57.2, 75.9, 75.2, 613 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Helen Hansen Elementary,02850010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Joseph H Gibbons,02850025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 359 +5.145806451612903,5,a-picp-i1,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 383 +5.027096774193549,5,a-picp-i1,2022-23,Stoughton-O'Donnell Middle School,02850405,"","","","","","", 98.9, 96.3, 97.1,"","","","", 97.4, 845 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Richard L. Wilkins Elementary School,02850020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 289 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-South Elementary,02850015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 283 +3.824516129032258,3.82,a-picp-i1,2022-23,Stoughton-Stoughton High,02850505,"","","","","","","","","", 76.9, 72.3, 68.8, 79.2, 74.1," 1,111" +4.438709677419355,4.44,a-picp-i1,2022-23,Sturbridge-Burgess Elementary,02870005, 0.0, 98.4, 99.0, 99.2, 97.1, 97.5, 100.0,"","","","","","", 86.0, 814 +3.6696774193548385,3.67,a-picp-i1,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505,"","","","","","","","","", 99.5, 99.5, 47.0, 32.9, 71.1, 827 +4.784516129032259,4.78,a-picp-i1,2022-23,Sudbury-Ephraim Curtis Middle,02880305,"","","","","","", 93.5, 93.2, 91.4,"","","","", 92.7, 860 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-General John Nixon Elementary,02880025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Israel Loring School,02880015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Josiah Haynes,02880010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 374 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Peter Noyes,02880030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 509 +5.161290322580645,5,a-picp-i1,2022-23,Sunderland-Sunderland Elementary,02890005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 151 +5.161290322580645,5,a-picp-i1,2022-23,Sutton-Sutton Early Learning,02900003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2022-23,Sutton-Sutton Elementary,02900005,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +2.900645161290323,2.9,a-picp-i1,2022-23,Sutton-Sutton High School,02900510,"","","","","","","","","", 75.8, 44.1, 33.7, 72.5, 56.2, 370 +4.134193548387096,4.13,a-picp-i1,2022-23,Sutton-Sutton Middle School,02900305,"","","","","","", 98.9, 97.1, 49.1,"","","","", 80.1, 301 +5.135483870967742,5,a-picp-i1,2022-23,Swampscott-Clarke,02910005, 100.0, 100.0, 100.0, 97.9, 100.0,"","","","","","","","", 99.5, 207 +5.161290322580645,5,a-picp-i1,2022-23,Swampscott-Hadley,02910010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 357 +5.161290322580645,5,a-picp-i1,2022-23,Swampscott-Stanley,02910020,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 162 +3.8193548387096774,3.82,a-picp-i1,2022-23,Swampscott-Swampscott High,02910505,"","","","","","","","","", 77.3, 73.1, 67.9, 77.3, 74.0, 642 +5.150967741935483,5,a-picp-i1,2022-23,Swampscott-Swampscott Middle,02910305,"","","","","", 100.0, 100.0, 100.0, 99.4,"","","","", 99.8, 620 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Elizabeth S Brown,02920006,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 288 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Gardner,02920015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 250 +3.086451612903226,3.09,a-picp-i1,2022-23,Swansea-Joseph Case High,02920505,"","","","","","","","","", 61.4, 56.9, 51.0, 73.4, 59.8, 537 +3.303225806451613,3.3,a-picp-i1,2022-23,Swansea-Joseph Case Jr High,02920305,"","","","","","", 98.8, 99.3, 0.0,"","","","", 64.0, 497 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Joseph G Luther,02920020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 181 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 191 +2.771612903225807,2.77,a-picp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 92.1, 93.5, 91.4, 90.6, 92.4, 95.4, 80.8, 97.7, 94.1, 19.6, 27.0, 26.2, 31.9, 53.7," 3,221" +5.042580645161291,5,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Jr High,07700405,"","","","","","","", 98.5, 96.9,"","","","", 97.7, 556 +3.3961290322580644,3.4,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505,"","","","","","","","","", 48.8, 58.7, 79.2, 75.6, 65.8, 663 +1.9509677419354838,1.95,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605,"","","","","","","","","", 42.4, 46.1, 23.3, 36.9, 37.8, 508 +5.145806451612903,5,a-picp-i1,2022-23,Taunton-Benjamin Friedman Middle,02930315,"","","","","", 99.6, 100.0, 99.6,"","","","","", 99.7, 738 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-East Taunton Elementary,02930010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 512 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-Edmund Hatch Bennett,02930007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 289 +5.150967741935483,5,a-picp-i1,2022-23,Taunton-Elizabeth Pole,02930027, 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","","", 99.8, 629 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-H H Galligan,02930057, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 263 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 795 +4.9961290322580645,5.0,a-picp-i1,2022-23,Taunton-John F Parker Middle,02930305,"","","","","", 96.5, 96.1, 97.8,"","","","","", 96.8, 536 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-Joseph C Chamberlain,02930008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 438 +5.104516129032258,5,a-picp-i1,2022-23,Taunton-Joseph H Martin,02930042,"","","","","", 98.6, 100.0, 98.0,"","","","","", 98.9, 642 +0.0,1,a-picp-i1,2022-23,Taunton-Taunton Alternative High School,02930525,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 74 +2.441290322580645,2.44,a-picp-i1,2022-23,Taunton-Taunton High,02930505,"","","","","","","","", 53.5, 48.7, 44.4, 43.5, 44.1, 47.3," 2,802" +5.161290322580645,5,a-picp-i1,2022-23,Tewksbury-Center Elementary School,02950030,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 12 +2.1006451612903225,2.1,a-picp-i1,2022-23,Tewksbury-Heath-Brook,02950010, 0.0, 100.0,"","","","","","","","","","","", 40.7, 236 +5.150967741935483,5,a-picp-i1,2022-23,Tewksbury-John F. Ryan,02950023,"","","","","", 100.0, 99.6,"","","","","","", 99.8, 520 +5.140645161290323,5,a-picp-i1,2022-23,Tewksbury-John W. Wynn Middle,02950305,"","","","","","","", 99.6, 99.6,"","","","", 99.6, 502 +2.5187096774193547,2.52,a-picp-i1,2022-23,Tewksbury-L F Dewing,02950001, 0.0, 100.0,"","","","","","","","","","","", 48.8, 301 +NA,NA,a-picp-i1,2022-23,Tewksbury-North Street,02950020,"","","","","","","","","","","","","","", 1 +3.9845161290322584,3.98,a-picp-i1,2022-23,Tewksbury-Tewksbury Memorial High,02950505,"","","","","","","","","", 91.5, 80.4, 54.4, 82.9, 77.2, 753 +4.96516129032258,4.97,a-picp-i1,2022-23,Tisbury-Tisbury Elementary,02960005, 93.5, 97.3, 100.0, 96.7, 96.9, 88.9, 96.2, 100.0, 94.7,"","","","", 96.2, 265 +5.161290322580645,5,a-picp-i1,2022-23,Topsfield-Proctor Elementary,02980005,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 258 +5.145806451612903,5,a-picp-i1,2022-23,Topsfield-Steward Elementary,02980010, 98.6, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 324 +1.615483870967742,1.62,a-picp-i1,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605,"","","","","","","","","", 5.8, 5.9, 66.8, 54.0, 31.3, 956 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Newbury Elementary,07730020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 354 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Pine Grove,07730025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 395 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Salisbury Elementary,07730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 379 +2.601290322580645,2.6,a-picp-i1,2022-23,Triton-Triton Regional High School,07730505,"","","","","","","","","", 74.1, 34.8, 36.9, 54.3, 50.4, 635 +5.099354838709678,5,a-picp-i1,2022-23,Triton-Triton Regional Middle School,07730405,"","","","","","","", 98.8, 98.7,"","","","", 98.8, 320 +5.161290322580645,5,a-picp-i1,2022-23,Truro-Truro Central,03000005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 79 +5.130322580645162,5,a-picp-i1,2022-23,Tyngsborough-Tyngsborough Elementary,03010020, 98.1, 100.0, 99.1, 100.0, 100.0, 99.1,"","","","","","","", 99.4, 694 +3.4012903225806457,3.4,a-picp-i1,2022-23,Tyngsborough-Tyngsborough High School,03010505,"","","","","","","","","", 59.7, 62.0, 63.3, 78.2, 65.9, 419 +5.0116129032258065,5,a-picp-i1,2022-23,Tyngsborough-Tyngsborough Middle,03010305,"","","","","","", 98.0, 99.2, 94.1,"","","","", 97.1, 407 +5.161290322580645,5,a-picp-i1,2022-23,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 203 +5.161290322580645,5,a-picp-i1,2022-23,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 541 +5.161290322580645,5,a-picp-i1,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 69 +3.958709677419355,3.96,a-picp-i1,2022-23,Up-Island Regional-West Tisbury Elementary,07740020, 100.0, 100.0, 97.1, 100.0, 97.6, 100.0, 100.0, 22.2, 12.8,"","","","", 76.7, 335 +0.0,1,a-picp-i1,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 746 +0.4593548387096774,1,a-picp-i1,2022-23,Uxbridge-Gateway to College,03040515,"","","","","","","","","","", 0.0, 0.0, 18.2, 8.9, 45 +5.161290322580645,5,a-picp-i1,2022-23,Uxbridge-Taft Early Learning Center,03040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 452 +2.689032258064516,2.69,a-picp-i1,2022-23,Uxbridge-Uxbridge High,03040505,"","","","","","","","", 25.9, 66.7, 59.1, 64.4, 56.8, 52.1, 593 +5.12,5,a-picp-i1,2022-23,Uxbridge-Whitin Intermediate,03040405,"","","","", 100.0, 99.2, 100.0, 97.7,"","","","","", 99.2, 491 +4.670967741935484,4.67,a-picp-i1,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405,"","","","","", 100.0, 100.0, 100.0, 100.0, 48.9,"","","", 90.5, 484 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Central Tree Middle,07750310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 372 +5.032258064516129,5,a-picp-i1,2022-23,Wachusett-Chocksett Middle School,07750315,"","","","","", 98.5, 95.2, 97.6, 98.6,"","","","", 97.5, 281 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Davis Hill Elementary,07750018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Dawson,07750020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 499 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Glenwood Elementary School,07750060,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +5.145806451612903,5,a-picp-i1,2022-23,Wachusett-Houghton Elementary,07750027, 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 328 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Leroy E.Mayo,07750032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 487 +5.145806451612903,5,a-picp-i1,2022-23,Wachusett-Mountview Middle,07750305,"","","","","","", 99.3, 100.0, 100.0,"","","","", 99.7, 781 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Naquag Elementary School,07750005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 367 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Paxton Center,07750040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 447 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Thomas Prince,07750045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 343 +2.8180645161290325,2.82,a-picp-i1,2022-23,Wachusett-Wachusett Regional High,07750505,"","","","","","","","","", 75.8, 66.3, 35.3, 42.5, 54.6," 1,919" +5.150967741935483,5,a-picp-i1,2022-23,Wakefield-Dolbeare,03050005, 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 437 +5.083870967741936,5,a-picp-i1,2022-23,Wakefield-Galvin Middle School,03050310,"","","","","", 98.5, 97.4, 99.2, 98.9,"","","","", 98.5," 1,074" +5.161290322580645,5,a-picp-i1,2022-23,Wakefield-Greenwood,03050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +3.2516129032258063,3.25,a-picp-i1,2022-23,Wakefield-Wakefield Memorial High,03050505,"","","","","","","","","", 70.5, 66.3, 49.0, 64.7, 63.0, 825 +5.161290322580645,5,a-picp-i1,2022-23,Wakefield-Walton,03050040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 211 +5.1251612903225805,5,a-picp-i1,2022-23,Wakefield-Woodville School,03050015, 100.0, 97.5, 99.0, 100.0, 100.0,"","","","","","","","", 99.3, 406 +4.252903225806452,4.25,a-picp-i1,2022-23,Wales-Wales Elementary,03060005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 82.4, 91 +4.9961290322580645,5.0,a-picp-i1,2022-23,Walpole-Bird Middle,03070305,"","","","","","", 99.3, 96.1, 94.8,"","","","", 96.8, 377 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Boyden,03070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 411 +5.047741935483871,5,a-picp-i1,2022-23,Walpole-Eleanor N Johnson Middle,03070310,"","","","","","", 97.9, 97.2, 98.5,"","","","", 97.8, 417 +5.150967741935483,5,a-picp-i1,2022-23,Walpole-Elm Street School,03070005, 100.0, 100.0, 100.0, 98.5, 100.0, 100.0,"","","","","","","", 99.8, 445 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Fisher,03070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 471 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Old Post Road,03070018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 459 +3.6593548387096777,3.66,a-picp-i1,2022-23,Walpole-Walpole High,03070505,"","","","","","","","","", 61.9, 75.7, 70.5, 75.3, 70.9, 984 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 476 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Henry Whittemore Elementary School,03080065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 385 +5.083870967741936,5,a-picp-i1,2022-23,Waltham-John F Kennedy Middle,03080404,"","","","","","", 98.3, 99.0, 98.3,"","","","", 98.5, 612 +5.145806451612903,5,a-picp-i1,2022-23,Waltham-John W. McDevitt Middle School,03080415,"","","","","","", 100.0, 99.0, 100.0,"","","","", 99.7, 605 +5.150967741935483,5,a-picp-i1,2022-23,Waltham-Northeast Elementary School,03080040, 98.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 454 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 210 +3.0606451612903225,3.06,a-picp-i1,2022-23,Waltham-Waltham Sr High,03080505,"","","","","","","","","", 63.9, 71.1, 53.4, 45.5, 59.3," 1,807" +5.161290322580645,5,a-picp-i1,2022-23,Waltham-William F. Stanley Elementary School,03080005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 319 +5.161290322580645,5,a-picp-i1,2022-23,Ware-Stanley M Koziol Elementary School,03090020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 322 +3.6696774193548385,3.67,a-picp-i1,2022-23,Ware-Ware Junior/Senior High School,03090505,"","","","","","","", 95.2, 93.9, 37.4, 58.7, 63.1, 70.9, 71.1, 505 +5.099354838709678,5,a-picp-i1,2022-23,Ware-Ware Middle School,03090305,"","","","", 98.9, 100.0, 97.5,"","","","","","", 98.8, 252 +0.18580645161290324,1,a-picp-i1,2022-23,Wareham-Wareham Cooperative Alternative School,03100315,"","","","","","","","","", 0.0, 14.3, 0.0, 0.0, 3.6, 28 +5.161290322580645,5,a-picp-i1,2022-23,Wareham-Wareham Elementary School,03100017, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 839 +4.949677419354839,4.95,a-picp-i1,2022-23,Wareham-Wareham Middle,03100305,"","","","","", 93.0, 97.6, 97.5,"","","","","", 95.9, 437 +3.7006451612903226,3.7,a-picp-i1,2022-23,Wareham-Wareham Senior High,03100505,"","","","","","","","", 82.4, 75.5, 53.5, 58.5, 77.9, 71.7, 612 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-Cunniff,03140015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 321 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-Hosmer,03140020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 585 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-James Russell Lowell,03140025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 361 +2.9109677419354836,2.91,a-picp-i1,2022-23,Watertown-Watertown High,03140505,"","","","","","","","","", 72.6, 50.0, 50.6, 49.7, 56.4, 762 +5.150967741935483,5,a-picp-i1,2022-23,Watertown-Watertown Middle,03140305,"","","","","","", 99.5, 100.0, 100.0,"","","","", 99.8, 549 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Claypit Hill School,03150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 504 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Happy Hollow School,03150015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 363 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Loker School,03150020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 387 +2.441290322580645,2.44,a-picp-i1,2022-23,Wayland-Wayland High School,03150505,"","","","","","","","","", 60.3, 51.4, 39.7, 36.7, 47.3, 823 +5.145806451612903,5,a-picp-i1,2022-23,Wayland-Wayland Middle School,03150305,"","","","","","", 99.5, 99.5, 100.0,"","","","", 99.7, 623 +3.6490322580645165,3.65,a-picp-i1,2022-23,Webster-Bartlett High School,03160505,"","","","","","","","","", 61.9, 69.6, 75.3, 78.8, 70.7, 365 +5.161290322580645,5,a-picp-i1,2022-23,Webster-Park Avenue Elementary,03160015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 689 +5.0116129032258065,5,a-picp-i1,2022-23,Webster-Webster Middle School,03160315,"","","","","", 98.5, 95.8, 96.4, 98.2,"","","","", 97.1, 624 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Ernest F Upham,03170050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 159 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Hunnewell,03170025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 195 +5.135483870967742,5,a-picp-i1,2022-23,Wellesley-John D Hardy,03170020, 100.0, 97.5, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 210 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Joseph E Fiske,03170015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Katharine Lee Bates,03170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 266 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Schofield,03170045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 331 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Sprague Elementary School,03170048, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 294 +4.975483870967742,4.98,a-picp-i1,2022-23,Wellesley-Wellesley Middle,03170305,"","","","","","", 98.4, 97.4, 93.5,"","","","", 96.4, 935 +3.096774193548387,3.1,a-picp-i1,2022-23,Wellesley-Wellesley Sr High,03170505,"","","","","","","","","", 63.4, 65.2, 58.0, 53.6, 60.0," 1,405" +5.161290322580645,5,a-picp-i1,2022-23,Wellfleet-Wellfleet Elementary,03180005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 93 +5.161290322580645,5,a-picp-i1,2022-23,West Boylston-Major Edwards Elementary,03220005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +4.572903225806451,4.57,a-picp-i1,2022-23,West Boylston-West Boylston Junior/Senior High,03220505,"","","","","","", 100.0, 97.3, 97.2, 87.3, 79.2, 82.5, 71.0, 88.6, 437 +5.161290322580645,5,a-picp-i1,2022-23,West Bridgewater-Howard School,03230305,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 319 +5.145806451612903,5,a-picp-i1,2022-23,West Bridgewater-Rose L Macdonald,03230003,"", 100.0, 100.0, 99.0,"","","","","","","","","", 99.7, 319 +5.161290322580645,5,a-picp-i1,2022-23,West Bridgewater-Spring Street School,03230005, 100.0,"","","","","","","","","","","","", 100.0, 104 +4.794838709677419,4.79,a-picp-i1,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505,"","","","","","","", 100.0, 99.1, 96.5, 91.8, 86.3, 81.8, 92.9, 638 +5.130322580645162,5,a-picp-i1,2022-23,West Springfield-John Ashley,03320005, 99.4,"","","","","","","","","","","","", 99.4, 176 +5.135483870967742,5,a-picp-i1,2022-23,West Springfield-John R Fausey,03320010,"", 100.0, 98.9, 98.8, 100.0, 100.0,"","","","","","","", 99.5, 412 +5.135483870967742,5,a-picp-i1,2022-23,West Springfield-Memorial,03320025,"", 97.5, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 193 +5.1251612903225805,5,a-picp-i1,2022-23,West Springfield-Mittineague,03320030,"", 100.0, 100.0, 100.0, 100.0, 97.3,"","","","","","","", 99.3, 150 +5.037419354838709,5,a-picp-i1,2022-23,West Springfield-Philip G Coburn,03320007, 94.7, 99.0, 95.6, 99.1, 97.6, 98.9,"","","","","","","", 97.6, 572 +5.140645161290323,5,a-picp-i1,2022-23,West Springfield-Tatham,03320040,"", 100.0, 100.0, 97.6, 100.0, 100.0,"","","","","","","", 99.6, 225 +3.556129032258065,3.56,a-picp-i1,2022-23,West Springfield-West Springfield High,03320505,"","","","","","","","","", 71.5, 70.5, 73.0, 60.2, 68.9," 1,203" +4.7380645161290325,4.74,a-picp-i1,2022-23,West Springfield-West Springfield Middle,03320305,"","","","","","", 93.9, 94.2, 87.3,"","","","", 91.8, 953 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-Annie E Fales,03210010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 335 +4.913548387096775,4.91,a-picp-i1,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 78.1, 100.0, 100.0, 100.0,"","","","","","","","","", 95.2, 332 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-J Harding Armstrong,03210005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-Mill Pond School,03210045,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 874 +5.073548387096774,5,a-picp-i1,2022-23,Westborough-Sarah W Gibbons Middle,03210305,"","","","","","","", 99.0, 97.7,"","","","", 98.3, 605 +2.750967741935484,2.75,a-picp-i1,2022-23,Westborough-Westborough High,03210505,"","","","","","","","","", 58.1, 47.6, 49.3, 59.3, 53.3," 1,188" +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Abner Gibbs,03250020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 180 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Franklin Ave,03250015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 175 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Highland,03250025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Munger Hill,03250033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 332 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Paper Mill,03250036, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Southampton Road,03250040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 291 +3.370322580645161,3.37,a-picp-i1,2022-23,Westfield-Westfield High,03250505,"","","","","","","","","", 64.0, 75.9, 54.6, 66.4, 65.3, 993 +4.949677419354839,4.95,a-picp-i1,2022-23,Westfield-Westfield Intermediate School,03250075,"","","","","", 93.5, 98.1,"","","","","","", 95.9, 682 +3.576774193548387,3.58,a-picp-i1,2022-23,Westfield-Westfield Middle School,03250310,"","","","","","","", 63.3, 76.2,"","","","", 69.3, 687 +1.001290322580645,1.0,a-picp-i1,2022-23,Westfield-Westfield Technical Academy,03250605,"","","","","","","","","", 15.7, 10.2, 22.8, 31.0, 19.4, 536 +4.794838709677419,4.79,a-picp-i1,2022-23,Westfield-Westfield Virtual School,03250705,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 80.0, 33.3, 92.9, 70 +5.145806451612903,5,a-picp-i1,2022-23,Westford-Abbot Elementary,03260004,"","","", 100.0, 100.0, 99.2,"","","","","","","", 99.7, 365 +5.140645161290323,5,a-picp-i1,2022-23,Westford-Blanchard Middle,03260310,"","","","","","", 98.9, 100.0, 100.0,"","","","", 99.6, 549 +5.099354838709678,5,a-picp-i1,2022-23,Westford-Col John Robinson,03260025, 99.1, 97.3, 100.0,"","","","","","","","","","", 98.8, 324 +5.114838709677419,5,a-picp-i1,2022-23,Westford-Day Elementary,03260007,"","","", 99.0, 99.0, 99.2,"","","","","","","", 99.1, 329 +5.114838709677419,5,a-picp-i1,2022-23,Westford-John A. Crisafulli Elementary School,03260045,"","","", 100.0, 98.4, 99.2,"","","","","","","", 99.1, 346 +5.104516129032258,5,a-picp-i1,2022-23,Westford-Nabnasset,03260015, 99.1, 99.0, 98.6,"","","","","","","","","","", 98.9, 351 +5.104516129032258,5,a-picp-i1,2022-23,Westford-Rita E. Miller Elementary School,03260055, 97.5, 98.9, 100.0,"","","","","","","","","","", 98.9, 262 +5.145806451612903,5,a-picp-i1,2022-23,Westford-Stony Brook School,03260330,"","","","","","", 100.0, 100.0, 99.1,"","","","", 99.7, 619 +2.7561290322580643,2.76,a-picp-i1,2022-23,Westford-Westford Academy,03260505,"","","","","","","","","", 54.7, 59.0, 47.1, 53.1, 53.4," 1,522" +5.161290322580645,5,a-picp-i1,2022-23,Westhampton-Westhampton Elementary School,03270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 94 +5.145806451612903,5,a-picp-i1,2022-23,Weston-Country,03300010, 98.9, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 311 +5.161290322580645,5,a-picp-i1,2022-23,Weston-Field Elementary School,03300012,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 267 +4.412903225806452,4.41,a-picp-i1,2022-23,Weston-Weston High,03300505,"","","","","","","","","", 99.4, 85.8, 75.0, 81.8, 85.5, 642 +5.140645161290323,5,a-picp-i1,2022-23,Weston-Weston Middle,03300305,"","","","","","", 100.0, 99.4, 99.3,"","","","", 99.6, 448 +5.145806451612903,5,a-picp-i1,2022-23,Weston-Woodland,03300015, 98.8, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 302 +5.161290322580645,5,a-picp-i1,2022-23,Westport-Alice A Macomber,03310015, 100.0,"","","","","","","","","","","","", 100.0, 107 +5.161290322580645,5,a-picp-i1,2022-23,Westport-Westport Elementary,03310030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 445 +4.645161290322581,4.65,a-picp-i1,2022-23,Westport-Westport Middle-High School,03310515,"","","","","", 98.3, 99.2, 100.0, 98.5, 75.0, 78.9, 72.6, 74.3, 90.0, 832 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Deerfield School,03350010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 199 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Downey,03350012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +5.156129032258065,5,a-picp-i1,2022-23,Westwood-E W Thurston Middle,03350305,"","","","","","", 99.5, 100.0, 100.0,"","","","", 99.9, 667 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Martha Jones,03350017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 267 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Paul Hanlon,03350015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 226 +3.6335483870967744,3.63,a-picp-i1,2022-23,Westwood-Westwood High,03350505,"","","","","","","","","", 79.7, 74.5, 56.5, 72.7, 70.4, 906 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-William E Sheehan,03350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 285 +5.130322580645162,5,a-picp-i1,2022-23,Weymouth-Academy Avenue,03360005, 100.0, 98.3, 98.3, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 350 +5.140645161290323,5,a-picp-i1,2022-23,Weymouth-Frederick C Murphy,03360050, 97.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 285 +5.161290322580645,5,a-picp-i1,2022-23,Weymouth-Lawrence W Pingree,03360065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 263 +5.109677419354838,5,a-picp-i1,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020,"","","","","", 100.0, 99.8, 99.0, 98.3,"","","","", 99.0," 1,230" +5.042580645161291,5,a-picp-i1,2022-23,Weymouth-Ralph Talbot,03360085, 97.9, 97.7, 95.5, 95.7, 100.0, 100.0,"","","","","","","", 97.7, 265 +5.140645161290323,5,a-picp-i1,2022-23,Weymouth-Thomas V Nash,03360060, 97.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 242 +5.145806451612903,5,a-picp-i1,2022-23,Weymouth-Thomas W. Hamilton Primary School,03360105, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 358 +5.130322580645162,5,a-picp-i1,2022-23,Weymouth-Wessagusset,03360110, 97.9, 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 346 +1.5070967741935484,1.51,a-picp-i1,2022-23,Weymouth-Weymouth High School,03360505,"","","","","","","","","", 32.7, 33.7, 24.3, 25.8, 29.2," 1,793" +5.135483870967742,5,a-picp-i1,2022-23,Weymouth-William Seach,03360080, 97.1, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 376 +5.161290322580645,5,a-picp-i1,2022-23,Whately-Whately Elementary,03370005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 113 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Hanson Middle School,07800315,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 446 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Indian Head,07800035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 485 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-John H Duval,07800030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Louise A Conley,07800010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 480 +2.126451612903226,2.13,a-picp-i1,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505,"","","","","","","","","", 31.2, 51.0, 33.6, 48.1, 41.2," 1,065" +4.55741935483871,4.56,a-picp-i1,2022-23,Whitman-Hanson-Whitman Middle,07800310,"","","","","","", 87.0, 97.7, 79.4,"","","","", 88.3, 511 +0.7380645161290323,1,a-picp-i1,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605,"","","","","","","","","", 0.0, 6.9, 13.5, 36.8, 14.3," 1,281" +5.161290322580645,5,a-picp-i1,2022-23,Williamsburg-Anne T. Dunphy School,03400020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 117 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Boutwell,03420005, 100.0,"","","","","","","","","","","","", 100.0, 101 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-North Intermediate,03420060,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Shawsheen Elementary,03420025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-West Intermediate,03420080, 100.0,"","","", 100.0, 100.0,"","","","","","","", 100.0, 270 +3.5664516129032253,3.57,a-picp-i1,2022-23,Wilmington-Wilmington High,03420505,"","","","","","","","","", 54.4, 63.9, 73.1, 81.8, 69.1, 663 +4.934193548387096,4.93,a-picp-i1,2022-23,Wilmington-Wilmington Middle School,03420330,"","","","","","", 94.3, 96.6, 95.7,"","","","", 95.6, 638 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Woburn Street,03420020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 424 +5.161290322580645,5,a-picp-i1,2022-23,Winchendon-Memorial,03430040, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 314 +0.0,1,a-picp-i1,2022-23,Winchendon-Murdock Academy for Success,03430405,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 24 +3.747096774193548,3.75,a-picp-i1,2022-23,Winchendon-Murdock High School,03430515,"","","","","","","","","", 77.5, 75.0, 75.0, 57.1, 72.6, 270 +5.104516129032258,5,a-picp-i1,2022-23,Winchendon-Murdock Middle School,03430315,"","","","","","", 100.0, 98.9, 97.6,"","","","", 98.9, 279 +5.145806451612903,5,a-picp-i1,2022-23,Winchendon-Toy Town Elementary,03430050,"","","", 98.9, 100.0, 100.0,"","","","","","","", 99.7, 292 +4.485161290322581,4.49,a-picp-i1,2022-23,Winchester-Ambrose Elementary,03440045, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.9, 344 +4.381935483870968,4.38,a-picp-i1,2022-23,Winchester-Lincoln Elementary,03440005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.9, 332 +4.505806451612903,4.51,a-picp-i1,2022-23,Winchester-Lynch Elementary,03440020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.3, 426 +5.027096774193549,5,a-picp-i1,2022-23,Winchester-McCall Middle,03440305,"","","","","","", 96.9, 98.3, 97.0,"","","","", 97.4," 1,036" +4.392258064516128,4.39,a-picp-i1,2022-23,Winchester-Muraco Elementary,03440040, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.1, 328 +4.505806451612903,4.51,a-picp-i1,2022-23,Winchester-Vinson-Owen Elementary,03440025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.3, 408 +2.7561290322580643,2.76,a-picp-i1,2022-23,Winchester-Winchester High School,03440505,"","","","","","","","","", 68.1, 59.4, 48.4, 37.2, 53.4," 1,379" +5.161290322580645,5,a-picp-i1,2022-23,Winthrop-Arthur T. Cummings Elementary School,03460020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 438 +5.161290322580645,5,a-picp-i1,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 450 +2.5393548387096776,2.54,a-picp-i1,2022-23,Winthrop-Winthrop High School,03460505,"","","","","","","","","", 80.8, 28.6, 39.4, 43.6, 49.2, 608 +5.150967741935483,5,a-picp-i1,2022-23,Winthrop-Winthrop Middle School,03460305,"","","","","","", 100.0, 99.2, 100.0,"","","","", 99.8, 441 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Clyde Reeves,03470040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 294 +5.150967741935483,5,a-picp-i1,2022-23,Woburn-Daniel L Joyce Middle School,03470410,"","","","","","", 100.0, 100.0, 99.3,"","","","", 99.8, 462 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Goodyear Elementary School,03470005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 319 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Hurld-Wyman Elementary School,03470020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 392 +5.037419354838709,5,a-picp-i1,2022-23,Woburn-John F Kennedy Middle School,03470405,"","","","","","", 96.7, 98.2, 97.8,"","","","", 97.6, 533 +5.109677419354838,5,a-picp-i1,2022-23,Woburn-Linscott-Rumford,03470025, 100.0, 97.4, 100.0, 100.0, 96.4, 100.0,"","","","","","","", 99.0, 199 +4.789677419354838,4.79,a-picp-i1,2022-23,Woburn-Malcolm White,03470055, 100.0, 100.0, 93.8, 96.4, 68.4, 100.0,"","","","","","","", 92.8, 318 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Mary D Altavesta,03470065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 195 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Shamrock,03470043, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 253 +2.4980645161290322,2.5,a-picp-i1,2022-23,Woburn-Woburn High,03470505,"","","","","","","","","", 54.8, 46.4, 53.1, 39.1, 48.4," 1,183" +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Belmont Street Community,03480020, 98.7, 100.0, 100.0, 100.0, 97.0, 96.9, 100.0,"","","","","","", 98.8, 505 +4.815483870967742,4.82,a-picp-i1,2022-23,Worcester-Burncoat Middle School,03480405,"","","","","","","", 89.8, 97.0,"","","","", 93.3, 697 +3.0709677419354837,3.07,a-picp-i1,2022-23,Worcester-Burncoat Senior High,03480503,"","","","","","","","","", 67.6, 53.1, 57.1, 58.7, 59.5," 1,148" +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Burncoat Street,03480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 230 +5.1251612903225805,5,a-picp-i1,2022-23,Worcester-Canterbury,03480045, 100.0, 100.0, 100.0, 96.9, 100.0, 97.6, 100.0,"","","","","","", 99.3, 276 +5.058064516129032,5,a-picp-i1,2022-23,Worcester-Chandler Elementary Community,03480050, 98.3, 100.0, 95.9, 98.1, 95.7, 100.0, 98.6,"","","","","","", 98.0, 410 +5.104516129032258,5,a-picp-i1,2022-23,Worcester-Chandler Magnet,03480052, 100.0, 100.0, 97.2, 100.0, 98.3, 96.7, 100.0,"","","","","","", 98.9, 364 +5.058064516129032,5,a-picp-i1,2022-23,Worcester-City View,03480053, 98.2, 98.4, 97.6, 97.7, 96.3, 98.7, 98.4,"","","","","","", 98.0, 397 +3.7780645161290325,3.78,a-picp-i1,2022-23,Worcester-Claremont Academy,03480350,"","","","","","","", 92.5, 49.5, 95.7, 22.0, 98.7, 98.6, 73.2, 485 +5.001290322580646,5,a-picp-i1,2022-23,Worcester-Clark St Community,03480055, 100.0, 97.1, 100.0, 96.0, 91.9, 94.1, 100.0,"","","","","","", 96.9, 223 +4.9961290322580645,5.0,a-picp-i1,2022-23,Worcester-Columbus Park,03480060, 94.0, 97.9, 100.0, 96.8, 93.2, 96.1, 100.0,"","","","","","", 96.8, 347 +2.8645161290322583,2.86,a-picp-i1,2022-23,Worcester-Doherty Memorial High,03480512,"","","","","","","","","", 56.7, 49.9, 59.1, 56.5, 55.5," 1,341" +5.0116129032258065,5,a-picp-i1,2022-23,Worcester-Elm Park Community,03480095, 98.4, 100.0, 98.1, 100.0, 91.5, 94.9, 98.4,"","","","","","", 97.1, 415 +5.12,5,a-picp-i1,2022-23,Worcester-Flagg Street,03480090, 95.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.2, 362 +5.042580645161291,5,a-picp-i1,2022-23,Worcester-Forest Grove Middle,03480415,"","","","","","","", 96.7, 98.5,"","","","", 97.7, 905 +5.109677419354838,5,a-picp-i1,2022-23,Worcester-Francis J McGrath Elementary,03480177, 100.0, 100.0, 100.0, 100.0, 97.2, 97.1, 100.0,"","","","","","", 99.0, 208 +5.037419354838709,5,a-picp-i1,2022-23,Worcester-Gates Lane,03480110, 94.9, 98.8, 100.0, 95.7, 98.1, 97.2, 100.0,"","","","","","", 97.6, 463 +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Goddard School/Science Technical,03480100, 100.0, 100.0, 97.6, 100.0, 97.8, 96.5, 100.0,"","","","","","", 98.8, 345 +5.047741935483871,5,a-picp-i1,2022-23,Worcester-Grafton Street,03480115, 100.0, 100.0, 96.2, 95.0, 93.1, 100.0, 100.0,"","","","","","", 97.8, 416 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Heard Street,03480136, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 248 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 319 +5.073548387096774,5,a-picp-i1,2022-23,Worcester-La Familia Dual Language School,03480025, 97.4, 97.4, 100.0, 95.2, 100.0, 100.0, 100.0,"","","","","","", 98.3, 173 +5.145806451612903,5,a-picp-i1,2022-23,Worcester-Lake View,03480145, 100.0, 98.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 303 +4.9393548387096775,4.94,a-picp-i1,2022-23,Worcester-Lincoln Street,03480160, 97.8, 97.9, 91.3, 100.0, 90.3, 92.9, 96.2,"","","","","","", 95.7, 233 +5.089032258064516,5,a-picp-i1,2022-23,Worcester-May Street,03480175, 100.0, 100.0, 100.0, 100.0, 97.4, 97.8, 95.5,"","","","","","", 98.6, 294 +5.135483870967742,5,a-picp-i1,2022-23,Worcester-Midland Street,03480185, 100.0, 100.0, 100.0, 100.0, 96.9, 100.0, 100.0,"","","","","","", 99.5, 206 +5.109677419354838,5,a-picp-i1,2022-23,Worcester-Nelson Place,03480200, 98.5, 100.0, 100.0, 100.0, 98.8, 100.0, 94.8,"","","","","","", 99.0, 516 +5.083870967741936,5,a-picp-i1,2022-23,Worcester-Norrback Avenue,03480202, 100.0, 100.0, 96.2, 98.6, 96.3, 98.5, 100.0,"","","","","","", 98.5, 453 +3.3341935483870966,3.33,a-picp-i1,2022-23,Worcester-North High,03480515,"","","","","","","","","", 12.5, 88.9, 90.6, 67.2, 64.6," 1,363" +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Quinsigamond,03480210, 100.0, 99.1, 100.0, 100.0, 97.9, 99.0, 95.3,"","","","","","", 98.8, 688 +5.140645161290323,5,a-picp-i1,2022-23,Worcester-Rice Square,03480215, 100.0, 100.0, 98.7, 100.0, 98.0, 100.0, 100.0,"","","","","","", 99.6, 454 +5.042580645161291,5,a-picp-i1,2022-23,Worcester-Roosevelt,03480220, 95.7, 98.7, 91.3, 100.0, 98.7, 100.0, 100.0,"","","","","","", 97.7, 469 +2.6993548387096773,2.7,a-picp-i1,2022-23,Worcester-South High Community,03480520,"","","","","","","","","", 46.8, 41.1, 66.6, 56.3, 52.3," 1,673" +4.670967741935484,4.67,a-picp-i1,2022-23,Worcester-Sullivan Middle,03480423,"","","","","","", 100.0, 92.9, 87.2,"","","","", 90.5, 834 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Tatnuck,03480230, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 360 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-Thorndyke Road,03480235, 96.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.4, 357 +5.094193548387097,5,a-picp-i1,2022-23,Worcester-Union Hill School,03480240, 100.0, 100.0, 98.4, 100.0, 96.2, 96.7, 100.0,"","","","","","", 98.7, 395 +2.895483870967742,2.9,a-picp-i1,2022-23,Worcester-University Pk Campus School,03480285,"","","","","","","", 100.0, 97.4, 100.0, 0.0, 37.1, 2.6, 56.1, 223 +5.104516129032258,5,a-picp-i1,2022-23,Worcester-Vernon Hill School,03480280, 98.2, 100.0, 97.8, 100.0, 98.6, 96.4, 100.0,"","","","","","", 98.9, 441 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Wawecus Road School,03480026, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 125 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-West Tatnuck,03480260, 100.0, 100.0, 97.7, 97.8, 100.0, 100.0, 100.0,"","","","","","", 99.4, 314 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-Woodland Academy,03480030, 100.0, 100.0, 100.0, 100.0, 98.4, 97.3, 100.0,"","","","","","", 99.4, 493 +5.145806451612903,5,a-picp-i1,2022-23,Worcester-Worcester Arts Magnet School,03480225, 97.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 348 +4.851612903225806,4.85,a-picp-i1,2022-23,Worcester-Worcester East Middle,03480420,"","","","","","","", 92.0, 95.8,"","","","", 94.0, 770 +0.29419354838709677,1,a-picp-i1,2022-23,Worcester-Worcester Technical High,03480605,"","","","","","","","","", 5.3, 3.7, 7.8, 6.2, 5.7," 1,444" +5.161290322580645,5,a-picp-i1,2022-23,Worthington-R. H. Conwell,03490010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 58 +5.161290322580645,5,a-picp-i1,2022-23,Wrentham-Charles E Roderick,03500010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 376 +5.161290322580645,5,a-picp-i1,2022-23,Wrentham-Delaney,03500003, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 502 4.934193548387096,4.93,a-picp-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0, 100.0, 60.0, 71.7, 95.6," 1,421" 2.5961290322580646,2.6,a-picp-i1,2021-22,Abington-Abington High,00010505,"","","","","","","","","", 46.3, 56.6, 36.7, 60.0, 50.3, 582 5.083870967741936,5,a-picp-i1,2021-22,Abington-Abington Middle School,00010405,"","","","","", 100.0, 100.0, 98.3, 95.8,"","","","", 98.5, 666 diff --git a/data/dashboard/admin_data/dese/5D_2_age_staffing.csv b/data/admin_data/dese/5D_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/5D_2_age_staffing.csv rename to data/admin_data/dese/5D_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv b/data/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv rename to data/admin_data/dese/archive/2023-April/1A_1_teacher_data.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/1A_3_staffing_retention.csv b/data/admin_data/dese/archive/2023-April/1A_3_staffing_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/1A_3_staffing_retention.csv rename to data/admin_data/dese/archive/2023-April/1A_3_staffing_retention.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/1A_3_teachers_of_color.csv b/data/admin_data/dese/archive/2023-April/1A_3_teachers_of_color.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/1A_3_teachers_of_color.csv rename to data/admin_data/dese/archive/2023-April/1A_3_teachers_of_color.csv diff --git a/data/dashboard/admin_data/dese/2A_1_students_disciplined.csv b/data/admin_data/dese/archive/2023-April/2A_1_students_disciplined.csv similarity index 100% rename from data/dashboard/admin_data/dese/2A_1_students_disciplined.csv rename to data/admin_data/dese/archive/2023-April/2A_1_students_disciplined.csv diff --git a/data/dashboard/admin_data/dese/2A_1_students_suspended.csv b/data/admin_data/dese/archive/2023-April/2A_1_students_suspended.csv similarity index 100% rename from data/dashboard/admin_data/dese/2A_1_students_suspended.csv rename to data/admin_data/dese/archive/2023-April/2A_1_students_suspended.csv diff --git a/data/dashboard/admin_data/dese/2C_1_attendance.csv b/data/admin_data/dese/archive/2023-April/2C_1_attendance.csv similarity index 100% rename from data/dashboard/admin_data/dese/2C_1_attendance.csv rename to data/admin_data/dese/archive/2023-April/2C_1_attendance.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3A_1_average_class_size.csv b/data/admin_data/dese/archive/2023-April/3A_1_average_class_size.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3A_1_average_class_size.csv rename to data/admin_data/dese/archive/2023-April/3A_1_average_class_size.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv b/data/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv rename to data/admin_data/dese/archive/2023-April/3A_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3A_2_enrollment.csv b/data/admin_data/dese/archive/2023-April/3A_2_enrollment.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3A_2_enrollment.csv rename to data/admin_data/dese/archive/2023-April/3A_2_enrollment.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3A_2_grade_subject_staffing.csv b/data/admin_data/dese/archive/2023-April/3A_2_grade_subject_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3A_2_grade_subject_staffing.csv rename to data/admin_data/dese/archive/2023-April/3A_2_grade_subject_staffing.csv diff --git a/data/dashboard/admin_data/dese/3B_1_advcoursecomprate.csv b/data/admin_data/dese/archive/2023-April/3B_1_advcoursecomprate.csv similarity index 100% rename from data/dashboard/admin_data/dese/3B_1_advcoursecomprate.csv rename to data/admin_data/dese/archive/2023-April/3B_1_advcoursecomprate.csv diff --git a/data/dashboard/admin_data/dese/3B_1_ap.csv b/data/admin_data/dese/archive/2023-April/3B_1_ap.csv similarity index 100% rename from data/dashboard/admin_data/dese/3B_1_ap.csv rename to data/admin_data/dese/archive/2023-April/3B_1_ap.csv diff --git a/data/dashboard/admin_data/dese/3B_1_masscore.csv b/data/admin_data/dese/archive/2023-April/3B_1_masscore.csv similarity index 100% rename from data/dashboard/admin_data/dese/3B_1_masscore.csv rename to data/admin_data/dese/archive/2023-April/3B_1_masscore.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3B_2_student_by_race_and_gender.csv b/data/admin_data/dese/archive/2023-April/3B_2_student_by_race_and_gender.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3B_2_student_by_race_and_gender.csv rename to data/admin_data/dese/archive/2023-April/3B_2_student_by_race_and_gender.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3B_2_teacher_by_race_and_gender.csv b/data/admin_data/dese/archive/2023-April/3B_2_teacher_by_race_and_gender.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3B_2_teacher_by_race_and_gender.csv rename to data/admin_data/dese/archive/2023-April/3B_2_teacher_by_race_and_gender.csv diff --git a/data/dashboard/admin_data/dese/4A_1_grade_nine_course_pass.csv b/data/admin_data/dese/archive/2023-April/4A_1_grade_nine_course_pass.csv similarity index 100% rename from data/dashboard/admin_data/dese/4A_1_grade_nine_course_pass.csv rename to data/admin_data/dese/archive/2023-April/4A_1_grade_nine_course_pass.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/4B_2_five_year_grad.csv b/data/admin_data/dese/archive/2023-April/4B_2_five_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/4B_2_five_year_grad.csv rename to data/admin_data/dese/archive/2023-April/4B_2_five_year_grad.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/4B_2_four_year_grad.csv b/data/admin_data/dese/archive/2023-April/4B_2_four_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/4B_2_four_year_grad.csv rename to data/admin_data/dese/archive/2023-April/4B_2_four_year_grad.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/4B_2_retention.csv b/data/admin_data/dese/archive/2023-April/4B_2_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/4B_2_retention.csv rename to data/admin_data/dese/archive/2023-April/4B_2_retention.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/4D_1_plans_of_grads.csv b/data/admin_data/dese/archive/2023-April/4D_1_plans_of_grads.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/4D_1_plans_of_grads.csv rename to data/admin_data/dese/archive/2023-April/4D_1_plans_of_grads.csv diff --git a/data/dashboard/admin_data/dese/5C_1_art_course.csv b/data/admin_data/dese/archive/2023-April/5C_1_art_course.csv similarity index 100% rename from data/dashboard/admin_data/dese/5C_1_art_course.csv rename to data/admin_data/dese/archive/2023-April/5C_1_art_course.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv b/data/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv rename to data/admin_data/dese/archive/2023-April/5D_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/5D_2_enrollments.csv b/data/admin_data/dese/archive/2023-April/5D_2_enrollments.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/5D_2_enrollments.csv rename to data/admin_data/dese/archive/2023-April/5D_2_enrollments.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/enrollments.csv b/data/admin_data/dese/archive/2023-April/enrollments.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/enrollments.csv rename to data/admin_data/dese/archive/2023-April/enrollments.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/1A_1_teacher_data.csv b/data/admin_data/dese/archive/june-2023/1A_1_teacher_data.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/1A_1_teacher_data.csv rename to data/admin_data/dese/archive/june-2023/1A_1_teacher_data.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/1A_3_staffing_retention.csv b/data/admin_data/dese/archive/june-2023/1A_3_staffing_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/1A_3_staffing_retention.csv rename to data/admin_data/dese/archive/june-2023/1A_3_staffing_retention.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/1A_3_teachers_of_color.csv b/data/admin_data/dese/archive/june-2023/1A_3_teachers_of_color.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/1A_3_teachers_of_color.csv rename to data/admin_data/dese/archive/june-2023/1A_3_teachers_of_color.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/2A_1_students_disciplined.csv b/data/admin_data/dese/archive/june-2023/2A_1_students_disciplined.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/2A_1_students_disciplined.csv rename to data/admin_data/dese/archive/june-2023/2A_1_students_disciplined.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/2A_1_students_suspended.csv b/data/admin_data/dese/archive/june-2023/2A_1_students_suspended.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/2A_1_students_suspended.csv rename to data/admin_data/dese/archive/june-2023/2A_1_students_suspended.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/2C_1_attendance.csv b/data/admin_data/dese/archive/june-2023/2C_1_attendance.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/2C_1_attendance.csv rename to data/admin_data/dese/archive/june-2023/2C_1_attendance.csv diff --git a/data/dashboard/admin_data/dese/3A_1_average_class_size.csv b/data/admin_data/dese/archive/june-2023/3A_1_average_class_size.csv similarity index 100% rename from data/dashboard/admin_data/dese/3A_1_average_class_size.csv rename to data/admin_data/dese/archive/june-2023/3A_1_average_class_size.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv b/data/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv rename to data/admin_data/dese/archive/june-2023/3A_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3A_2_grade_subject_staffing.csv b/data/admin_data/dese/archive/june-2023/3A_2_grade_subject_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/3A_2_grade_subject_staffing.csv rename to data/admin_data/dese/archive/june-2023/3A_2_grade_subject_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3B_1_advcoursecomprate.csv b/data/admin_data/dese/archive/june-2023/3B_1_advcoursecomprate.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3B_1_advcoursecomprate.csv rename to data/admin_data/dese/archive/june-2023/3B_1_advcoursecomprate.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3B_1_ap.csv b/data/admin_data/dese/archive/june-2023/3B_1_ap.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3B_1_ap.csv rename to data/admin_data/dese/archive/june-2023/3B_1_ap.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/3B_1_masscore.csv b/data/admin_data/dese/archive/june-2023/3B_1_masscore.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/3B_1_masscore.csv rename to data/admin_data/dese/archive/june-2023/3B_1_masscore.csv diff --git a/data/dashboard/admin_data/dese/3B_2_student_by_race_and_gender.csv b/data/admin_data/dese/archive/june-2023/3B_2_student_by_race_and_gender.csv similarity index 100% rename from data/dashboard/admin_data/dese/3B_2_student_by_race_and_gender.csv rename to data/admin_data/dese/archive/june-2023/3B_2_student_by_race_and_gender.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/3B_2_teacher_by_race_and_gender.csv b/data/admin_data/dese/archive/june-2023/3B_2_teacher_by_race_and_gender.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/3B_2_teacher_by_race_and_gender.csv rename to data/admin_data/dese/archive/june-2023/3B_2_teacher_by_race_and_gender.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/4A_1_grade_nine_course_pass.csv b/data/admin_data/dese/archive/june-2023/4A_1_grade_nine_course_pass.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/4A_1_grade_nine_course_pass.csv rename to data/admin_data/dese/archive/june-2023/4A_1_grade_nine_course_pass.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/4B_2_five_year_grad.csv b/data/admin_data/dese/archive/june-2023/4B_2_five_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/4B_2_five_year_grad.csv rename to data/admin_data/dese/archive/june-2023/4B_2_five_year_grad.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/4B_2_four_year_grad.csv b/data/admin_data/dese/archive/june-2023/4B_2_four_year_grad.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/4B_2_four_year_grad.csv rename to data/admin_data/dese/archive/june-2023/4B_2_four_year_grad.csv diff --git a/data/dashboard/admin_data/dese/4B_2_retention.csv b/data/admin_data/dese/archive/june-2023/4B_2_retention.csv similarity index 100% rename from data/dashboard/admin_data/dese/4B_2_retention.csv rename to data/admin_data/dese/archive/june-2023/4B_2_retention.csv diff --git a/data/dashboard/admin_data/dese/4D_1_plans_of_grads.csv b/data/admin_data/dese/archive/june-2023/4D_1_plans_of_grads.csv similarity index 100% rename from data/dashboard/admin_data/dese/4D_1_plans_of_grads.csv rename to data/admin_data/dese/archive/june-2023/4D_1_plans_of_grads.csv diff --git a/data/dashboard/admin_data/dese/archive/2023-April/5C_1_art_course.csv b/data/admin_data/dese/archive/june-2023/5C_1_art_course.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/2023-April/5C_1_art_course.csv rename to data/admin_data/dese/archive/june-2023/5C_1_art_course.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv b/data/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv rename to data/admin_data/dese/archive/june-2023/5D_2_age_staffing.csv diff --git a/data/dashboard/admin_data/dese/archive/june-2023/enrollments.csv b/data/admin_data/dese/archive/june-2023/enrollments.csv similarity index 100% rename from data/dashboard/admin_data/dese/archive/june-2023/enrollments.csv rename to data/admin_data/dese/archive/june-2023/enrollments.csv diff --git a/data/dashboard/enrollment/enrollment.csv b/data/admin_data/dese/enrollments.csv similarity index 99% rename from data/dashboard/enrollment/enrollment.csv rename to data/admin_data/dese/enrollments.csv index 57ec1b8..8f69d49 100644 --- a/data/dashboard/enrollment/enrollment.csv +++ b/data/admin_data/dese/enrollments.csv @@ -340,11 +340,11 @@ NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Putterham,0046 NA,NA,"",2023-24,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 521, 551, 513, 18," 2,173" NA,NA,"",2023-24,Brookline - Edith C Baker,00460005, 0, 66, 72, 84, 82, 77, 74, 61, 72, 66, 0, 0, 0, 0, 0, 654 NA,NA,"",2023-24,Brookline - Florida Ruffin Ridley School,00460015, 32, 84, 102, 103, 94, 93, 85, 86, 80, 93, 0, 0, 0, 0, 0, 852 -NA,NA,"",2023-24,Brookline - Heath,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 NA,NA,"",2023-24,Brookline - John D Runkle,00460045, 16, 46, 45, 52, 40, 61, 55, 56, 51, 61, 0, 0, 0, 0, 0, 483 NA,NA,"",2023-24,Brookline - Lawrence,00460030, 0, 68, 82, 70, 77, 69, 60, 75, 51, 63, 0, 0, 0, 0, 0, 615 NA,NA,"",2023-24,Brookline - Michael Driscoll,00460020, 32, 46, 57, 41, 66, 53, 59, 50, 54, 52, 0, 0, 0, 0, 0, 510 NA,NA,"",2023-24,Brookline - Pierce,00460040, 0, 68, 62, 78, 78, 74, 78, 83, 63, 84, 0, 0, 0, 0, 0, 668 +NA,NA,"",2023-24,Brookline - Roland Hayes,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 NA,NA,"",2023-24,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55 NA,NA,"",2023-24,Brookline - William H Lincoln,00460035, 0, 52, 60, 50, 57, 55, 41, 51, 62, 46, 0, 0, 0, 0, 0, 474 NA,NA,"",2023-24,Burlington - Burlington High,00480505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 227, 231, 218, 0," 1,005" diff --git a/data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Faber_School.csv b/data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Faber_School.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Faber_School.csv rename to data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Faber_School.csv diff --git a/data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_HS.csv b/data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_HS.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_HS.csv rename to data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_HS.csv diff --git a/data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Lincoln_MS.csv b/data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Lincoln_MS.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Lincoln_MS.csv rename to data/admin_data/out_of_state/2022-23_School_Admin_Data_Dunellen_New_Jersey_Dunellen_Lincoln_MS.csv diff --git a/data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_JR_SR_HS.csv b/data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_JR_SR_HS.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_JR_SR_HS.csv rename to data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_JR_SR_HS.csv diff --git a/data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Meadow_View.csv b/data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Meadow_View.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Meadow_View.csv rename to data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Meadow_View.csv diff --git a/data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Rock_River.csv b/data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Rock_River.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Rock_River.csv rename to data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_Rock_River.csv diff --git a/data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_SAGES.csv b/data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_SAGES.csv similarity index 100% rename from data/dashboard/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_SAGES.csv rename to data/admin_data/out_of_state/2022_23_ECP_School_Admin_Data_Waupun_Wisconsin_SAGES.csv diff --git a/data/dashboard/demographics.csv b/data/demographics.csv similarity index 100% rename from data/dashboard/demographics.csv rename to data/demographics.csv diff --git a/data/dashboard/admin_data/dese/enrollments.csv b/data/enrollment/enrollments.csv similarity index 87% rename from data/dashboard/admin_data/dese/enrollments.csv rename to data/enrollment/enrollments.csv index 5fcec9b..8f69d49 100644 --- a/data/dashboard/admin_data/dese/enrollments.csv +++ b/data/enrollment/enrollments.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,PK,K,1,2,3,4,5,6,7,8,9,10,11,12,SP,Total +NA,NA,"",2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 121, 119, 123, 128, 123, 124, 126, 115, 104, 90, 83, 78, 87, 0," 1,421" +NA,NA,"",2023-24,Abington - Abington Early Education Program,00010001, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78 +NA,NA,"",2023-24,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 135, 129, 146, 8, 561 +NA,NA,"",2023-24,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 170, 162, 165, 139, 0, 0, 0, 0, 0, 636 +NA,NA,"",2023-24,Abington - Beaver Brook Elementary,00010020, 0, 177, 161, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506 +NA,NA,"",2023-24,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 192, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 30, 55, 62, 64, 60, 56, 52, 61, 0, 440 +NA,NA,"",2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 425, 403, 415, 3," 1,649" +NA,NA,"",2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 56, 67, 63, 76, 61, 90, 94, 0, 0, 0, 0, 0, 0, 0, 507 +NA,NA,"",2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 60, 61, 63, 58, 67, 50, 48, 0, 0, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 +NA,NA,"",2023-24,Acton-Boxborough - Luther Conant School,06000030, 0, 60, 42, 62, 39, 68, 73, 69, 0, 0, 0, 0, 0, 0, 0, 413 +NA,NA,"",2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 60, 59, 43, 58, 67, 69, 85, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Acton-Boxborough - Merriam School,06000010, 0, 39, 39, 62, 60, 65, 69, 70, 0, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 59, 59, 60, 40, 43, 49, 46, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 399, 414, 0, 0, 0, 0, 0, 813 +NA,NA,"",2023-24,Acushnet - Acushnet Elementary School,00030025, 41, 98, 94, 87, 105, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 +NA,NA,"",2023-24,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 124, 102, 87, 107, 0, 0, 0, 0, 0, 420 +NA,NA,"",2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 145, 142, 143, 149, 132, 128, 127, 0, 966 +NA,NA,"",2023-24,Agawam - Agawam Early Childhood Center,00050003, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150 +NA,NA,"",2023-24,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 283, 244, 235, 4," 1,050" +NA,NA,"",2023-24,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 288, 263, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Agawam - Benjamin J Phelps,00050020, 0, 53, 70, 51, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 +NA,NA,"",2023-24,Agawam - Clifford M Granger,00050010, 0, 70, 59, 81, 64, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Agawam - James Clark School,00050030, 0, 53, 65, 66, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 +NA,NA,"",2023-24,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 264, 240, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Agawam - William P. Sapelli Elementary,00050025, 0, 54, 54, 51, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 100, 105, 103, 102, 104, 100, 147, 148, 132, 0, 0, 0, 0, 0," 1,041" +NA,NA,"",2023-24,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 116, 104, 105, 4, 465 +NA,NA,"",2023-24,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 15, 13, 16, 0, 51 +NA,NA,"",2023-24,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 0, 135, 132, 149, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0, 0, 0, 0, 144, 141, 113, 0, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Amesbury - Shay Elementary,00070005, 59, 149, 141, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 +NA,NA,"",2023-24,Amherst - Crocker Farm Elementary,00080009, 61, 30, 32, 29, 47, 38, 52, 37, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Amherst - Fort River Elementary,00080020, 0, 48, 58, 53, 43, 60, 48, 36, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Amherst - Wildwood Elementary,00080050, 0, 36, 44, 26, 47, 40, 56, 62, 0, 0, 0, 0, 0, 0, 0, 311 +NA,NA,"",2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 230, 197, 215, 4, 841 +NA,NA,"",2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 187, 182, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410, 419, 405, 416, 32," 1,682" +NA,NA,"",2023-24,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 150, 168, 175, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Andover - Bancroft Elementary,00090003, 0, 73, 92, 89, 72, 89, 107, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 155, 149, 158, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Andover - Henry C Sanborn Elementary,00090010, 0, 39, 61, 63, 56, 47, 68, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Andover - High Plain Elementary,00090004, 0, 82, 73, 89, 99, 92, 109, 0, 0, 0, 0, 0, 0, 0, 0, 544 +NA,NA,"",2023-24,Andover - Shawsheen School,00090005, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 +NA,NA,"",2023-24,Andover - South Elementary,00090020, 0, 63, 63, 73, 76, 74, 83, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Andover - West Elementary,00090025, 0, 77, 94, 98, 99, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 111, 99, 121, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 104, 104, 103, 89, 79, 43, 52, 0, 574 +NA,NA,"",2023-24,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 391, 388, 398, 0," 1,609" +NA,NA,"",2023-24,Arlington - Brackett,00100010, 0, 60, 81, 51, 69, 64, 98, 0, 0, 0, 0, 0, 0, 0, 0, 423 +NA,NA,"",2023-24,Arlington - Cyrus E Dallin,00100025, 0, 55, 72, 63, 65, 69, 85, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 468, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Arlington - Hardy,00100030, 0, 63, 72, 73, 60, 51, 64, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Arlington - John A Bishop,00100005, 0, 60, 60, 68, 67, 64, 72, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Arlington - M Norcross Stratton,00100055, 0, 69, 54, 84, 74, 86, 70, 0, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Arlington - Menotomy Preschool,00100038, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 493, 448, 0, 0, 0, 0, 0, 941 +NA,NA,"",2023-24,Arlington - Peirce,00100045, 0, 41, 67, 51, 61, 56, 59, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Arlington - Thompson,00100050, 0, 86, 91, 97, 86, 86, 76, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 38, 76, 77, 73, 67, 71, 90, 0, 0, 0, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 41, 70, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195 +NA,NA,"",2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 163, 154, 155, 3, 634 +NA,NA,"",2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 180, 178, 177, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 94, 101, 93, 120, 0, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 224, 215, 208, 0, 870 +NA,NA,"",2023-24,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 231, 216, 232, 0, 0, 0, 0, 0, 679 +NA,NA,"",2023-24,Ashland - David Mindess,00140015, 0, 0, 0, 0, 242, 193, 232, 0, 0, 0, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Ashland - Henry E Warren Elementary,00140010, 0, 219, 175, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Ashland - William Pittaway Elementary,00140005, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 +NA,NA,"",2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303, 279, 282, 266, 0," 1,130" +NA,NA,"",2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 53, 105, 101, 129, 97, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 99, 110, 94, 4, 414 +NA,NA,"",2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 117, 101, 124, 121, 0, 0, 0, 0, 0, 463 +NA,NA,"",2023-24,Athol-Royalston - Royalston Community School,06150050, 17, 21, 21, 23, 16, 19, 17, 14, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 109, 110, 110, 110, 110, 110, 110, 110, 110, 61, 68, 80, 59, 0," 1,257" +NA,NA,"",2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 70, 74, 78, 58, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 7, 13, 20, 19, 0, 68 +NA,NA,"",2023-24,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479, 490, 506, 425, 25," 1,925" +NA,NA,"",2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 9, 13, 0, 31 +NA,NA,"",2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 149, 152, 147, 165, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,Attleboro - Early Learning Center,00160008, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0, 78, 73, 95, 75, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0, 86, 93, 93, 86, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0, 84, 94, 97, 82, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 139, 131, 153, 154, 0, 0, 0, 0, 0, 577 +NA,NA,"",2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0, 72, 74, 77, 74, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 +NA,NA,"",2023-24,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 132, 155, 137, 156, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 179, 232, 211, 0, 0, 0, 0, 0, 622 +NA,NA,"",2023-24,Auburn - Auburn Senior High,00170505, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 187, 170, 172, 11, 815 +NA,NA,"",2023-24,Auburn - Bryn Mawr,00170010, 0, 72, 96, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Auburn - Pakachoag School,00170025, 0, 74, 84, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244 +NA,NA,"",2023-24,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 177, 192, 192, 0, 0, 0, 0, 0, 0, 0, 0, 561 +NA,NA,"",2023-24,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 62, 63, 63, 49, 57, 64, 47, 3, 408 +NA,NA,"",2023-24,Avon - Ralph D Butler,00180010, 17, 45, 54, 49, 52, 50, 57, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 101, 121, 93, 0, 412 +NA,NA,"",2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 134, 130, 115, 0, 0, 0, 0, 0, 379 +NA,NA,"",2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 58, 58, 67, 62, 59, 52, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 84, 65, 85, 92, 54, 81, 79, 0, 0, 0, 0, 0, 0, 0, 0, 540 +NA,NA,"",2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0, 80, 86, 69, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 336, 358, 356, 337, 14," 1,756" +NA,NA,"",2023-24,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 325, 314, 0, 0, 0, 0, 0, 0, 639 +NA,NA,"",2023-24,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 342, 364, 0, 0, 0, 0, 0, 0, 0, 0, 706 +NA,NA,"",2023-24,Barnstable - Centerville Elementary,00200010, 0, 61, 68, 69, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 +NA,NA,"",2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Barnstable - Hyannis West Elementary,00200025, 0, 92, 80, 78, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 +NA,NA,"",2023-24,Barnstable - West Barnstable Elementary,00200005, 0, 52, 69, 67, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Barnstable - West Villages Elementary School,00200045, 0, 86, 101, 110, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 399 +NA,NA,"",2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 60, 51, 70, 62, 57, 62, 52, 0, 414 +NA,NA,"",2023-24,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 213, 226, 197, 0, 866 +NA,NA,"",2023-24,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 221, 189, 202, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,Bedford - Lt Eleazer Davis,00230010, 41, 158, 159, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 192, 182, 197, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 153, 148, 153, 5, 602 +NA,NA,"",2023-24,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 158, 164, 167, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Belchertown - Cold Spring,00240005, 64, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Belchertown - Swift River Elementary,00240018, 0, 0, 142, 168, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 +NA,NA,"",2023-24,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 159, 150, 143, 148, 7, 749 +NA,NA,"",2023-24,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 149, 141, 141, 160, 0, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 85, 80, 68, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 8, 2, 4, 0, 26 +NA,NA,"",2023-24,Bellingham - Stall Brook,00250025, 0, 42, 58, 57, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 +NA,NA,"",2023-24,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 398, 371, 363, 330, 0," 1,462" +NA,NA,"",2023-24,Belmont - Belmont Middle School,00260315, 0, 0, 0, 0, 0, 0, 0, 0, 354, 312, 0, 0, 0, 0, 0, 666 +NA,NA,"",2023-24,Belmont - Daniel Butler,00260015, 0, 54, 63, 63, 69, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Belmont - Mary Lee Burbank,00260010, 0, 53, 60, 68, 56, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Belmont - Roger E Wellington,00260035, 69, 64, 87, 110, 82, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Belmont - Winn Brook,00260005, 0, 65, 80, 87, 95, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0, 0, 0, 0, 0, 0, 349, 364, 0, 0, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 16, 49, 48, 48, 49, 47, 46, 43, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 100, 100, 100, 100, 100, 100, 100, 99, 89, 0, 0, 0, 0, 0, 888 +NA,NA,"",2023-24,Berkley - Berkley Community School,00270010, 54, 77, 86, 78, 82, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 +NA,NA,"",2023-24,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 90, 81, 100, 94, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 72, 69, 65, 52, 45, 33, 29, 0, 365 +NA,NA,"",2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 117, 134, 108, 4, 451 +NA,NA,"",2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 54, 61, 57, 68, 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 79, 69, 99, 101, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 24, 30, 39, 28, 43, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 23, 62, 48, 62, 37, 59, 45, 0, 0, 0, 0, 0, 0, 0, 0, 336 +NA,NA,"",2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 96, 84, 87, 75, 73, 63, 76, 0, 554 +NA,NA,"",2023-24,Beverly - Ayers/Ryal Side School,00300055, 0, 71, 84, 71, 90, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 +NA,NA,"",2023-24,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 326, 301, 289, 9," 1,255" +NA,NA,"",2023-24,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 350, 362, 324, 320, 0, 0, 0, 0, 0," 1,356" +NA,NA,"",2023-24,Beverly - Centerville Elementary,00300010, 0, 56, 71, 60, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Beverly - Cove Elementary,00300015, 0, 82, 75, 77, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 405 +NA,NA,"",2023-24,Beverly - Hannah Elementary,00300033, 0, 63, 63, 65, 51, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Beverly - McKeown School,00300002, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 +NA,NA,"",2023-24,Beverly - North Beverly Elementary,00300040, 0, 66, 67, 69, 78, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Billerica - Billerica Memorial High School,00310505, 222, 0, 0, 0, 0, 0, 0, 0, 0, 410, 310, 314, 291, 267, 7," 1,821" +NA,NA,"",2023-24,Billerica - Frederick J Dutile,00310007, 0, 60, 62, 58, 66, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Billerica - Hajjar Elementary,00310026, 0, 68, 82, 71, 81, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382 +NA,NA,"",2023-24,Billerica - John F Kennedy,00310012, 0, 62, 52, 74, 74, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 170, 169, 164, 0, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 201, 193, 205, 0, 0, 0, 0, 0, 0, 599 +NA,NA,"",2023-24,Billerica - Parker,00310015, 0, 84, 82, 89, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Billerica - Thomas Ditson,00310005, 0, 105, 116, 115, 112, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 306, 316, 308, 0," 1,250" +NA,NA,"",2023-24,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 0, 117, 121, 0, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 102, 92, 84, 5, 382 +NA,NA,"",2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 132, 93, 142, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115 +NA,NA,"",2023-24,Blackstone-Millville - Millville Elementary,06220010, 72, 97, 97, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 233, 221, 222, 0, 918 +NA,NA,"",2023-24,Boston - Adams Elementary School,00350302, 28, 34, 33, 31, 33, 47, 22, 23, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Boston - Alighieri Dante Montessori School,00350066, 26, 16, 12, 12, 9, 12, 13, 8, 0, 0, 0, 0, 0, 0, 0, 108 +NA,NA,"",2023-24,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 64, 62, 58, 0, 240 +NA,NA,"",2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 84, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 +NA,NA,"",2023-24,Boston - Bates Elementary School,00350278, 23, 39, 36, 40, 35, 37, 37, 32, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Boston - Beethoven Elementary School,00350021, 40, 68, 74, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Boston - Blackstone Elementary School,00350390, 78, 73, 74, 71, 80, 73, 69, 63, 0, 0, 0, 0, 0, 0, 0, 581 +NA,NA,"",2023-24,Boston - Boston Adult Tech Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 82, 1, 185 +NA,NA,"",2023-24,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 130, 115, 108, 1, 473 +NA,NA,"",2023-24,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 21, 56, 133, 1, 218 +NA,NA,"",2023-24,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 51, 70, 109, 124, 110, 93, 12, 569 +NA,NA,"",2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 147, 105, 79, 0, 486 +NA,NA,"",2023-24,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 275, 255, 308, 310, 267, 278, 0," 1,693" +NA,NA,"",2023-24,Boston - Boston Latin School,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 397, 404, 417, 397, 401, 384, 1," 2,401" +NA,NA,"",2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 25, 25, 25, 26, 28, 26, 22, 30, 34, 31, 0, 0, 0, 0, 0, 272 +NA,NA,"",2023-24,Boston - Bradley Elementary School,00350215, 30, 41, 41, 42, 41, 43, 30, 32, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Boston - Brighton High School,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 30, 40, 97, 117, 169, 119, 12, 584 +NA,NA,"",2023-24,Boston - Burke High School,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 18, 30, 73, 70, 103, 89, 12, 395 +NA,NA,"",2023-24,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 3, 11, 3, 31 +NA,NA,"",2023-24,Boston - Channing Elementary School,00350360, 33, 33, 26, 25, 18, 25, 19, 13, 0, 0, 0, 0, 0, 0, 0, 192 +NA,NA,"",2023-24,Boston - Charlestown High School,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 30, 36, 140, 170, 184, 178, 51, 789 +NA,NA,"",2023-24,Boston - Chittick Elementary School,00350154, 39, 33, 37, 34, 27, 27, 20, 11, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Boston - Clap Elementary School,00350298, 14, 18, 19, 20, 16, 14, 17, 12, 0, 0, 0, 0, 0, 0, 0, 130 +NA,NA,"",2023-24,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 14, 17, 0, 41 +NA,NA,"",2023-24,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 72, 98, 78, 30, 341 +NA,NA,"",2023-24,Boston - Condon K-8 School,00350146, 35, 48, 60, 64, 49, 50, 69, 71, 75, 59, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Boston - Conley Elementary School,00350122, 21, 19, 21, 23, 14, 20, 19, 14, 0, 0, 0, 0, 0, 0, 0, 151 +NA,NA,"",2023-24,Boston - Curley K-8 School,00350020, 95, 87, 84, 93, 96, 102, 96, 105, 77, 77, 0, 0, 0, 0, 0, 912 +NA,NA,"",2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0, 0, 0, 0, 0, 0, 0, 34, 74, 93, 86, 89, 98, 79, 0, 553 +NA,NA,"",2023-24,Boston - Dever Elementary School,00350268, 26, 48, 55, 55, 53, 54, 60, 55, 0, 0, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Boston - East Boston Early Education Center,00350009, 95, 51, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Boston - East Boston High School,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 104, 119, 223, 244, 295, 286, 22," 1,293" +NA,NA,"",2023-24,Boston - Edison K-8 School,00350375, 20, 36, 55, 85, 63, 79, 84, 71, 50, 41, 0, 0, 0, 0, 0, 584 +NA,NA,"",2023-24,Boston - Eliot K-8 Innovation School,00350096, 70, 80, 81, 79, 87, 89, 92, 98, 48, 68, 0, 0, 0, 0, 0, 792 +NA,NA,"",2023-24,Boston - Ellis Elementary School,00350072, 39, 50, 50, 56, 45, 44, 29, 27, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Boston - Ellison-Parks Early Education School,00350008, 54, 36, 30, 38, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Boston - English High School,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 44, 43, 166, 134, 152, 128, 15, 682 +NA,NA,"",2023-24,Boston - Everett Elementary School,00350088, 14, 38, 39, 39, 36, 40, 38, 34, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 109, 110, 90, 3, 387 +NA,NA,"",2023-24,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 91, 86, 88, 9, 376 +NA,NA,"",2023-24,Boston - Frederick Pilot Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 85, 117, 125, 0, 0, 0, 0, 0, 327 +NA,NA,"",2023-24,Boston - Gardner Pilot Academy,00350326, 29, 38, 40, 36, 40, 40, 40, 40, 34, 34, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Boston - Greater Egleston High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 20, 36, 1, 76 +NA,NA,"",2023-24,Boston - Greenwood Sarah K-8 School,00350308, 38, 39, 44, 39, 39, 43, 34, 36, 22, 25, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Boston - Grew Elementary School,00350135, 18, 20, 27, 36, 17, 33, 28, 18, 0, 0, 0, 0, 0, 0, 0, 197 +NA,NA,"",2023-24,Boston - Guild Elementary School,00350062, 27, 37, 29, 35, 30, 37, 28, 24, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Boston - Hale Elementary School,00350243, 17, 18, 20, 20, 23, 24, 22, 22, 0, 0, 0, 0, 0, 0, 0, 166 +NA,NA,"",2023-24,Boston - Haley Pilot School,00350077, 40, 37, 43, 41, 44, 48, 43, 43, 23, 19, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Boston - Harvard-Kent Elementary School,00350200, 44, 42, 45, 44, 45, 41, 44, 35, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Boston - Haynes Early Education Center,00350010, 62, 60, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 +NA,NA,"",2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 81, 67, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0, 0, 0, 58, 53, 57, 47, 39, 58, 66, 60, 67, 63, 59, 12, 639 +NA,NA,"",2023-24,Boston - Hennigan K-8 School,00350153, 0, 27, 40, 51, 40, 56, 79, 65, 71, 76, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Boston - Hernandez K-8 School,00350691, 39, 46, 46, 46, 49, 47, 44, 34, 31, 25, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 32, 44, 42, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 +NA,NA,"",2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0, 0, 0, 0, 20, 28, 31, 33, 34, 23, 0, 0, 0, 0, 0, 169 +NA,NA,"",2023-24,Boston - Holmes Elementary School,00350138, 38, 25, 35, 34, 34, 48, 43, 30, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 6, 2, 3, 4, 7, 2, 3, 5, 6, 5, 9, 1, 10, 2, 8, 73 +NA,NA,"",2023-24,Boston - Hurley K-8 School,00350182, 25, 43, 46, 44, 45, 39, 34, 37, 15, 21, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Boston - Kennedy John F Elementary School,00350166, 27, 52, 57, 61, 55, 63, 40, 41, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 20, 36, 38, 40, 34, 38, 27, 34, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Boston - Kenny Elementary School,00350328, 28, 40, 42, 41, 42, 50, 47, 48, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Boston - Kilmer K-8 School,00350190, 42, 37, 44, 43, 34, 30, 37, 37, 30, 37, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Boston - King Elementary School,00350376, 84, 66, 58, 60, 60, 47, 52, 43, 0, 0, 0, 0, 0, 0, 0, 470 +NA,NA,"",2023-24,Boston - Lee Academy,00350001, 63, 36, 34, 38, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Boston - Lee K-8 School,00350183, 56, 57, 59, 53, 54, 51, 57, 47, 51, 42, 0, 0, 0, 0, 0, 527 +NA,NA,"",2023-24,Boston - Lyndon K-8 School,00350262, 60, 61, 65, 61, 54, 67, 57, 45, 25, 33, 0, 0, 0, 0, 0, 528 +NA,NA,"",2023-24,Boston - Lyon High School,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 29, 15, 30, 0, 102 +NA,NA,"",2023-24,Boston - Lyon K-8 School,00350004, 0, 13, 15, 14, 15, 11, 13, 12, 16, 11, 0, 0, 0, 0, 0, 120 +NA,NA,"",2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 273, 272, 192, 35," 1,058" +NA,NA,"",2023-24,Boston - Manning Elementary School,00350184, 14, 18, 23, 25, 23, 23, 25, 18, 0, 0, 0, 0, 0, 0, 0, 169 +NA,NA,"",2023-24,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 86, 78, 61, 0, 308 +NA,NA,"",2023-24,Boston - Mario Umana Academy,00350656, 36, 71, 68, 53, 59, 75, 58, 77, 67, 68, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Boston - Mason Elementary School,00350304, 24, 21, 26, 32, 28, 31, 27, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Boston - Mather Elementary School,00350227, 46, 65, 66, 70, 74, 69, 64, 0, 0, 0, 0, 0, 0, 0, 0, 454 +NA,NA,"",2023-24,Boston - Mattahunt Elementary School,00350016, 88, 81, 75, 57, 62, 52, 54, 43, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Boston - McKay K-8 School,00350080, 20, 54, 59, 72, 73, 87, 60, 89, 74, 82, 0, 0, 0, 0, 0, 670 +NA,NA,"",2023-24,Boston - Melvin H. King South End Academy,00350363, 0, 0, 0, 1, 1, 3, 3, 7, 12, 18, 16, 24, 20, 19, 10, 134 +NA,NA,"",2023-24,Boston - Mendell Elementary School,00350100, 28, 41, 40, 38, 39, 43, 42, 37, 0, 0, 0, 0, 0, 0, 0, 308 +NA,NA,"",2023-24,Boston - Mildred Avenue K-8 School,00350378, 48, 42, 40, 33, 38, 59, 62, 74, 91, 103, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Boston - Mozart Elementary School,00350237, 26, 21, 23, 23, 22, 22, 18, 23, 0, 0, 0, 0, 0, 0, 0, 178 +NA,NA,"",2023-24,Boston - Murphy K-8 School,00350240, 52, 65, 64, 86, 90, 114, 120, 116, 61, 71, 0, 0, 0, 0, 0, 839 +NA,NA,"",2023-24,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 82, 74, 124, 137, 135, 116, 0, 668 +NA,NA,"",2023-24,Boston - O'Bryant School of Math & Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 171, 149, 319, 324, 296, 279, 0," 1,538" +NA,NA,"",2023-24,Boston - O'Donnell Elementary School,00350141, 19, 34, 39, 39, 37, 42, 33, 32, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Boston - Ohrenberger School,00350258, 0, 0, 0, 0, 71, 73, 83, 84, 67, 70, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Boston - Orchard Gardens K-8 School,00350257, 44, 55, 59, 64, 67, 63, 85, 74, 78, 83, 0, 0, 0, 0, 0, 672 +NA,NA,"",2023-24,Boston - Otis Elementary School,00350156, 39, 52, 56, 63, 57, 57, 40, 38, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Boston - Perkins Elementary School,00350231, 5, 26, 24, 19, 24, 21, 13, 17, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Boston - Perry Elementary School,00350255, 29, 25, 29, 25, 24, 22, 15, 12, 0, 0, 0, 0, 0, 0, 0, 181 +NA,NA,"",2023-24,Boston - Philbrick Elementary School,00350172, 14, 21, 21, 16, 14, 15, 16, 15, 0, 0, 0, 0, 0, 0, 0, 132 +NA,NA,"",2023-24,Boston - Quincy Elementary School,00350286, 83, 87, 113, 116, 106, 113, 115, 0, 0, 0, 0, 0, 0, 0, 0, 733 +NA,NA,"",2023-24,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 117, 84, 79, 58, 63, 66, 61, 4, 532 +NA,NA,"",2023-24,Boston - Roosevelt K-8 School,00350116, 35, 40, 38, 32, 22, 33, 40, 29, 38, 24, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Boston - Russell Elementary School,00350366, 54, 61, 54, 48, 43, 43, 43, 0, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Boston - Shaw Elementary School,00350014, 44, 35, 32, 20, 29, 21, 20, 0, 0, 0, 0, 0, 0, 0, 0, 201 +NA,NA,"",2023-24,Boston - Snowden International High School,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 120, 108, 107, 0, 445 +NA,NA,"",2023-24,Boston - Sumner Elementary School,00350052, 60, 82, 74, 81, 79, 77, 71, 56, 0, 0, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Boston - Taylor Elementary School,00350054, 33, 38, 50, 38, 49, 40, 58, 37, 0, 0, 0, 0, 0, 0, 0, 343 +NA,NA,"",2023-24,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 39, 87, 110, 174, 166, 151, 143, 0, 870 +NA,NA,"",2023-24,Boston - Tobin K-8 School,00350229, 22, 26, 41, 37, 32, 35, 45, 43, 46, 48, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Boston - Trotter Elementary School,00350370, 46, 35, 34, 36, 36, 39, 40, 34, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Boston - Tynan Elementary School,00350181, 24, 32, 24, 28, 35, 24, 22, 16, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Boston - UP Academy Holland,00350167, 53, 67, 79, 72, 97, 102, 96, 0, 0, 0, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Boston - Warren-Prescott K-8 School,00350346, 50, 68, 68, 60, 64, 44, 55, 46, 20, 24, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Boston - West Zone Early Learning Center,00350006, 50, 33, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 +NA,NA,"",2023-24,Boston - Winship Elementary School,00350374, 45, 43, 43, 43, 46, 45, 44, 36, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Boston - Winthrop Elementary School,00350180, 22, 44, 30, 42, 32, 22, 27, 22, 0, 0, 0, 0, 0, 0, 0, 241 +NA,NA,"",2023-24,Boston - Young Achievers K-8 School,00350380, 44, 50, 51, 59, 39, 55, 48, 50, 35, 35, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 102, 104, 88, 83, 90, 67, 89, 65, 0, 688 +NA,NA,"",2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 0, 233, 0, 293 +NA,NA,"",2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 45, 54, 55, 83, 78, 71, 60, 13, 459 +NA,NA,"",2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 87, 107, 104, 118, 92, 94, 91, 2, 695 +NA,NA,"",2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 115, 123, 134, 134, 146, 116, 99, 70, 0, 0, 0, 0, 0, 0, 0, 937 +NA,NA,"",2023-24,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 81, 77, 92, 10, 335 +NA,NA,"",2023-24,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 109, 129, 121, 0, 0, 0, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 153, 128, 159, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Bourne - Bournedale Elementary School,00360005, 58, 128, 122, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429 +NA,NA,"",2023-24,Boxford - Harry Lee Cole,00380005, 42, 114, 94, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 109, 108, 89, 97, 0, 0, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Braintree - Archie T Morrison,00400033, 0, 22, 77, 70, 74, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 +NA,NA,"",2023-24,Braintree - Braintree High,00400505, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 403, 436, 374, 0," 1,677" +NA,NA,"",2023-24,Braintree - Donald Ross,00400050, 0, 21, 41, 36, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 +NA,NA,"",2023-24,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 266, 242, 248, 243, 0, 0, 0, 0, 0, 999 +NA,NA,"",2023-24,Braintree - Highlands,00400015, 0, 42, 70, 75, 75, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 +NA,NA,"",2023-24,Braintree - Hollis,00400005, 0, 37, 71, 63, 79, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Braintree - Liberty,00400025, 0, 9, 70, 87, 76, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Braintree - Mary E Flaherty School,00400020, 0, 21, 52, 86, 54, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281 +NA,NA,"",2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 164, 146, 158, 170, 0, 0, 0, 0, 0, 638 +NA,NA,"",2023-24,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 61, 70, 74, 0, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Brewster - Stony Brook Elementary,00410005, 36, 59, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 33, 37, 40, 36, 40, 39, 36, 36, 21, 16, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 275, 251, 261, 0, 0, 0, 0, 0, 787 +NA,NA,"",2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316, 365, 403, 310, 14," 1,408" +NA,NA,"",2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 178, 159, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 158, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 144, 268, 249, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 945 +NA,NA,"",2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 173, 181, 193, 199, 0, 0, 0, 0, 0, 746 +NA,NA,"",2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 4, 0, 11 +NA,NA,"",2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 281, 271, 280, 0, 0, 0, 0, 0, 0, 0, 0, 832 +NA,NA,"",2023-24,Brimfield - Brimfield Elementary,00430005, 25, 37, 34, 35, 28, 45, 35, 45, 0, 0, 0, 0, 0, 0, 0, 284 +NA,NA,"",2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 165, 159, 102, 0, 592 +NA,NA,"",2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 349, 315, 310, 0," 1,330" +NA,NA,"",2023-24,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 175, 185, 157, 0, 0, 0, 0, 0, 517 +NA,NA,"",2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,112", 883, 857, 670, 64," 3,586" +NA,NA,"",2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0, 0, 0, 5, 6, 6, 5, 9, 16, 20, 28, 28, 21, 15, 0, 159 +NA,NA,"",2023-24,Brockton - Brookfield,00440010, 39, 73, 67, 78, 69, 63, 62, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Brockton - Downey,00440110, 32, 105, 82, 124, 103, 76, 77, 0, 0, 0, 0, 0, 0, 0, 0, 599 +NA,NA,"",2023-24,Brockton - Dr W Arnone Community School,00440001, 49, 114, 108, 128, 128, 114, 122, 0, 0, 0, 0, 0, 0, 0, 0, 763 +NA,NA,"",2023-24,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 111, 173, 148, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Brockton - Edgar B Davis,00440023, 0, 107, 99, 121, 111, 83, 84, 124, 116, 99, 0, 0, 0, 0, 0, 944 +NA,NA,"",2023-24,Brockton - Edison Day Academy,00440535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 56, 35, 20, 0, 163 +NA,NA,"",2023-24,Brockton - Edison Evening Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 69, 42, 56, 0, 198 +NA,NA,"",2023-24,Brockton - Gilmore Elementary School,00440055, 36, 61, 65, 71, 77, 59, 63, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Brockton - Hancock,00440045, 27, 110, 114, 115, 131, 83, 86, 0, 0, 0, 0, 0, 0, 0, 0, 666 +NA,NA,"",2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 4, 8, 10, 0, 36 +NA,NA,"",2023-24,Brockton - John F Kennedy,00440017, 0, 81, 104, 97, 87, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Brockton - Louis F Angelo Elementary,00440065, 0, 116, 113, 122, 130, 175, 179, 0, 0, 0, 0, 0, 0, 0, 0, 835 +NA,NA,"",2023-24,Brockton - Manthala George Jr. School,00440003, 48, 148, 150, 148, 103, 89, 92, 0, 0, 0, 0, 0, 0, 0, 0, 778 +NA,NA,"",2023-24,Brockton - Mary E. Baker School,00440002, 0, 117, 124, 129, 122, 110, 122, 0, 0, 0, 0, 0, 0, 0, 0, 724 +NA,NA,"",2023-24,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 145, 141, 120, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Brockton - Oscar F Raymond,00440078, 0, 146, 152, 138, 142, 110, 123, 0, 0, 0, 0, 0, 0, 0, 0, 811 +NA,NA,"",2023-24,Brockton - Plouffe Middle School,00440422, 0, 0, 0, 0, 0, 0, 0, 202, 193, 234, 0, 0, 0, 0, 0, 629 +NA,NA,"",2023-24,Brockton - PROMISE College and Career Academy,00440525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 32, 0, 0, 0, 97 +NA,NA,"",2023-24,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 141, 159, 168, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 150, 159, 183, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 193, 195, 191, 195, 191, 188, 193, 173, 178, 143, 141, 115, 111, 1," 2,208" +NA,NA,"",2023-24,Brookfield - Brookfield Elementary,00450005, 28, 37, 40, 41, 41, 36, 42, 37, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42 +NA,NA,"",2023-24,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 521, 551, 513, 18," 2,173" +NA,NA,"",2023-24,Brookline - Edith C Baker,00460005, 0, 66, 72, 84, 82, 77, 74, 61, 72, 66, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Brookline - Florida Ruffin Ridley School,00460015, 32, 84, 102, 103, 94, 93, 85, 86, 80, 93, 0, 0, 0, 0, 0, 852 +NA,NA,"",2023-24,Brookline - John D Runkle,00460045, 16, 46, 45, 52, 40, 61, 55, 56, 51, 61, 0, 0, 0, 0, 0, 483 +NA,NA,"",2023-24,Brookline - Lawrence,00460030, 0, 68, 82, 70, 77, 69, 60, 75, 51, 63, 0, 0, 0, 0, 0, 615 +NA,NA,"",2023-24,Brookline - Michael Driscoll,00460020, 32, 46, 57, 41, 66, 53, 59, 50, 54, 52, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Brookline - Pierce,00460040, 0, 68, 62, 78, 78, 74, 78, 83, 63, 84, 0, 0, 0, 0, 0, 668 +NA,NA,"",2023-24,Brookline - Roland Hayes,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 +NA,NA,"",2023-24,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55 +NA,NA,"",2023-24,Brookline - William H Lincoln,00460035, 0, 52, 60, 50, 57, 55, 41, 51, 62, 46, 0, 0, 0, 0, 0, 474 +NA,NA,"",2023-24,Burlington - Burlington High,00480505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 227, 231, 218, 0," 1,005" +NA,NA,"",2023-24,Burlington - Fox Hill,00480007, 0, 81, 64, 85, 76, 72, 77, 0, 0, 0, 0, 0, 0, 0, 0, 455 +NA,NA,"",2023-24,Burlington - Francis Wyman Elementary,00480035, 0, 71, 92, 83, 89, 84, 67, 0, 0, 0, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 282, 302, 278, 0, 0, 0, 0, 0, 862 +NA,NA,"",2023-24,Burlington - Memorial,00480015, 0, 61, 52, 76, 58, 71, 65, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Burlington - Pine Glen Elementary,00480020, 0, 60, 56, 49, 50, 52, 67, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Cambridge - Amigos School,00490006, 30, 50, 46, 47, 43, 37, 43, 43, 38, 41, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533, 495, 491, 438, 22," 1,979" +NA,NA,"",2023-24,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 116, 96, 92, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Cambridge - Cambridgeport,00490007, 42, 45, 34, 40, 47, 37, 40, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 42, 33, 39, 40, 32, 33, 32, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Cambridge - Graham and Parks,00490080, 36, 55, 62, 61, 68, 55, 59, 0, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Cambridge - Haggerty,00490020, 18, 36, 37, 38, 40, 27, 33, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Cambridge - John M Tobin,00490065, 102, 47, 39, 35, 33, 36, 34, 0, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Cambridge - Kennedy-Longfellow,00490040, 23, 33, 26, 30, 31, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 220 +NA,NA,"",2023-24,Cambridge - King Open,00490035, 37, 69, 67, 60, 56, 52, 46, 0, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Cambridge - Maria L. Baldwin,00490005, 28, 73, 56, 54, 50, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Cambridge - Martin Luther King Jr.,00490030, 27, 66, 53, 49, 45, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Cambridge - Morse,00490045, 56, 45, 40, 45, 45, 36, 35, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Cambridge - Peabody,00490050, 45, 48, 49, 46, 43, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 93, 93, 84, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 96, 98, 95, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 92, 93, 73, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 263, 222, 212, 6, 931 +NA,NA,"",2023-24,Canton - Dean S Luce,00500020, 0, 78, 83, 77, 87, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 477 +NA,NA,"",2023-24,Canton - John F Kennedy,00500017, 0, 69, 73, 92, 66, 85, 72, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Canton - Lt Peter M Hansen,00500012, 0, 78, 87, 89, 104, 91, 87, 0, 0, 0, 0, 0, 0, 0, 0, 536 +NA,NA,"",2023-24,Canton - Rodman Early Childhood Center,00500010, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 +NA,NA,"",2023-24,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 241, 241, 260, 0, 0, 0, 0, 0, 742 +NA,NA,"",2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 83, 84, 84, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 169, 162, 149, 0, 663 +NA,NA,"",2023-24,Carlisle - Carlisle School,00510025, 15, 69, 61, 80, 61, 59, 70, 63, 72, 58, 0, 0, 0, 0, 0, 608 +NA,NA,"",2023-24,Carver - Carver Elementary School,00520015, 63, 96, 122, 143, 103, 130, 118, 0, 0, 0, 0, 0, 0, 0, 0, 775 +NA,NA,"",2023-24,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 92, 141, 116, 92, 78, 94, 98, 2, 713 +NA,NA,"",2023-24,Central Berkshire - Becket Washington School,06350005, 11, 8, 24, 13, 11, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,Central Berkshire - Craneville,06350025, 0, 76, 74, 75, 66, 91, 71, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Central Berkshire - Kittredge,06350035, 38, 28, 20, 22, 22, 26, 21, 0, 0, 0, 0, 0, 0, 0, 0, 177 +NA,NA,"",2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 126, 124, 108, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 116, 121, 125, 0, 482 +NA,NA,"",2023-24,Chelmsford - Byam School,00560030, 0, 115, 103, 110, 103, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 530 +NA,NA,"",2023-24,Chelmsford - Center Elementary School,00560005, 0, 95, 87, 98, 101, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Chelmsford - Charles D Harrington,00560025, 0, 80, 91, 90, 112, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 +NA,NA,"",2023-24,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 361, 345, 347, 0," 1,413" +NA,NA,"",2023-24,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 393, 404, 0, 0, 0, 0, 0, 0, 0, 797 +NA,NA,"",2023-24,Chelmsford - Community Education Center,00560001, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 0, 0, 398, 384, 0, 0, 0, 0, 0, 782 +NA,NA,"",2023-24,Chelmsford - South Row,00560015, 0, 85, 86, 93, 108, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 +NA,NA,"",2023-24,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488, 439, 404, 344, 5," 1,680" +NA,NA,"",2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 36, 75, 0, 125 +NA,NA,"",2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 12, 8, 10, 17, 0, 60 +NA,NA,"",2023-24,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 164, 165, 179, 170, 0, 0, 0, 0, 0, 678 +NA,NA,"",2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0, 0, 87, 113, 111, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 108, 117, 108, 110, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 86, 137, 139, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 108, 121, 118, 83, 28, 28, 0, 0, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 110, 118, 127, 130, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Chelsea - Shurtleff Early Childhood,00570003, 273, 445, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 806 +NA,NA,"",2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 90, 121, 113, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435 +NA,NA,"",2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 22, 14, 18, 23, 12, 17, 17, 16, 0, 0, 0, 0, 0, 0, 0, 139 +NA,NA,"",2023-24,Chicopee - Barry,00610003, 0, 55, 48, 54, 68, 76, 61, 0, 0, 0, 0, 0, 0, 0, 0, 362 +NA,NA,"",2023-24,Chicopee - Belcher,00610010, 51, 60, 59, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 272, 265, 280, 0, 0, 0, 0, 0, 817 +NA,NA,"",2023-24,Chicopee - Bowe,00610015, 0, 87, 55, 65, 76, 64, 71, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Chicopee - Bowie,00610020, 19, 40, 31, 44, 45, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 10, 23, 11, 10, 0, 69 +NA,NA,"",2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 325, 298, 283, 0," 1,212" +NA,NA,"",2023-24,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 258, 229, 216, 0, 932 +NA,NA,"",2023-24,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 216, 244, 218, 0, 0, 0, 0, 0, 678 +NA,NA,"",2023-24,Chicopee - Fairview Elementary,00610050, 26, 54, 61, 55, 60, 60, 49, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Chicopee - Gen John J Stefanik,00610090, 0, 42, 58, 66, 73, 75, 77, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Chicopee - Lambert-Lavoie,00610040, 0, 36, 28, 41, 37, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Chicopee - Litwin,00610022, 0, 18, 17, 13, 93, 120, 83, 0, 0, 0, 0, 0, 0, 0, 0, 344 +NA,NA,"",2023-24,Chicopee - Streiber Memorial School,00610065, 0, 49, 44, 31, 37, 40, 32, 0, 0, 0, 0, 0, 0, 0, 0, 233 +NA,NA,"",2023-24,Chicopee - Szetela Early Childhood Center,00610001, 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 +NA,NA,"",2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0, 0, 0, 0, 0, 0, 0, 84, 97, 107, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 61, 48, 34, 0, 199 +NA,NA,"",2023-24,Clarksburg - Clarksburg Elementary,00630010, 24, 16, 19, 22, 20, 20, 22, 28, 17, 20, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Clinton - Clinton Elementary,00640050, 112, 143, 132, 153, 155, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 837 +NA,NA,"",2023-24,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 167, 133, 131, 140, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Clinton - Clinton Senior High,00640505, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 147, 119, 139, 0, 581 +NA,NA,"",2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 21, 23, 21, 22, 22, 22, 19, 21, 21, 20, 24, 34, 35, 31, 0, 336 +NA,NA,"",2023-24,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 111, 100, 99, 0, 406 +NA,NA,"",2023-24,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 98, 106, 86, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 111, 105, 105, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Cohasset - Joseph Osgood,00650010, 36, 108, 118, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 100, 116, 122, 88, 97, 112, 116, 110, 108, 91, 72, 52, 27, 0," 1,211" +NA,NA,"",2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 25, 48, 45, 29, 30, 39, 45, 0, 261 +NA,NA,"",2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 121, 127, 124, 124, 106, 124, 126, 120, 115, 113, 0, 0, 0, 0, 0," 1,200" +NA,NA,"",2023-24,Concord - Alcott,00670005, 29, 56, 71, 68, 62, 72, 72, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 218, 207, 229, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Concord - Thoreau,00670020, 21, 71, 55, 69, 72, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Concord - Willard,00670030, 13, 69, 71, 68, 78, 77, 75, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, 317, 310, 324, 5," 1,230" +NA,NA,"",2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 45, 51, 52, 51, 53, 56, 46, 42, 28, 20, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Conway - Conway Grammar,00680005, 17, 15, 13, 17, 19, 26, 17, 20, 0, 0, 0, 0, 0, 0, 0, 144 +NA,NA,"",2023-24,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 186, 181, 212, 11, 798 +NA,NA,"",2023-24,Danvers - Great Oak,00710015, 0, 41, 45, 53, 58, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Danvers - Highlands,00710010, 0, 56, 60, 68, 73, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 230, 248, 263, 0, 0, 0, 0, 0, 741 +NA,NA,"",2023-24,Danvers - Ivan G Smith,00710032, 0, 57, 69, 56, 66, 57, 64, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Danvers - Riverside,00710030, 55, 42, 42, 39, 44, 43, 51, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Danvers - Willis E Thorpe,00710045, 43, 66, 46, 29, 69, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Dartmouth - Andrew B. Cushman School,00720005, 85, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155 +NA,NA,"",2023-24,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 242, 238, 249, 3, 949 +NA,NA,"",2023-24,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 262, 268, 257, 0, 0, 0, 0, 0, 787 +NA,NA,"",2023-24,Dartmouth - George H Potter,00720030, 15, 61, 59, 72, 74, 65, 71, 0, 0, 0, 0, 0, 0, 0, 0, 417 +NA,NA,"",2023-24,Dartmouth - James M. Quinn School,00720040, 0, 102, 121, 126, 110, 144, 109, 0, 0, 0, 0, 0, 0, 0, 0, 712 +NA,NA,"",2023-24,Dartmouth - Joseph Demello,00720015, 0, 0, 57, 69, 64, 71, 70, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Dedham - Avery,00730010, 0, 0, 56, 69, 78, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 185, 198, 167, 5, 731 +NA,NA,"",2023-24,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 186, 191, 166, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Dedham - Early Childhood Center,00730005, 104, 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344 +NA,NA,"",2023-24,Dedham - Greenlodge,00730025, 0, 0, 75, 59, 56, 62, 58, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Dedham - Oakdale,00730030, 0, 0, 51, 59, 49, 57, 40, 0, 0, 0, 0, 0, 0, 0, 0, 256 +NA,NA,"",2023-24,Dedham - Riverdale,00730045, 0, 0, 38, 46, 36, 29, 44, 0, 0, 0, 0, 0, 0, 0, 0, 193 +NA,NA,"",2023-24,Deerfield - Deerfield Elementary,00740015, 29, 31, 37, 39, 30, 55, 41, 51, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0, 0, 0, 0, 0, 252, 258, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 201, 244, 0, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 164, 191, 186, 147, 0, 922 +NA,NA,"",2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44, 80, 90, 77, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 +NA,NA,"",2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 46, 54, 56, 65, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 111, 119, 98, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 25, 92, 82, 84, 104, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 91, 99, 93, 84, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 154, 168, 171, 4, 650 +NA,NA,"",2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 131, 111, 123, 113, 0, 0, 0, 0, 0, 478 +NA,NA,"",2023-24,Dighton-Rehoboth - Palmer River,06500010, 22, 110, 111, 114, 119, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 88, 73, 101, 91, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 71, 70, 93, 0, 303 +NA,NA,"",2023-24,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 83, 108, 98, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Douglas - Douglas Primary School,00770005, 64, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Dover - Chickering,00780005, 23, 61, 75, 89, 66, 96, 87, 0, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 179, 155, 174, 0, 648 +NA,NA,"",2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 138, 165, 154, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Dracut - Brookside Elementary,00790035, 32, 55, 93, 91, 72, 79, 78, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 220, 208, 193, 6, 789 +NA,NA,"",2023-24,Dracut - George H. Englesby Elementary School,00790045, 0, 91, 74, 85, 97, 99, 91, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Dracut - Greenmont Avenue,00790030, 0, 32, 37, 32, 45, 45, 39, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Dracut - Joseph A Campbell Elementary,00790020, 39, 78, 79, 94, 101, 95, 92, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 317, 276, 316, 0, 0, 0, 0, 0, 909 +NA,NA,"",2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 35, 45, 44, 38, 48, 42, 36, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 59, 145, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 152, 150, 150, 151, 0, 0, 0, 0, 0, 603 +NA,NA,"",2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 111, 112, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 128, 145, 133, 146, 0, 0, 0, 0, 0, 552 +NA,NA,"",2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 147, 150, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 38, 116, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, 253, 206, 204, 4, 937 +NA,NA,"",2023-24,Duxbury - Alden School,00820004, 0, 0, 0, 0, 226, 196, 199, 0, 0, 0, 0, 0, 0, 0, 0, 621 +NA,NA,"",2023-24,Duxbury - Chandler Elementary,00820006, 55, 189, 213, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649 +NA,NA,"",2023-24,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 220, 224, 233, 2, 862 +NA,NA,"",2023-24,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 203, 202, 218, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,East Bridgewater - Central,00830005, 109, 129, 126, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 +NA,NA,"",2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 163, 168, 134, 147, 122, 142, 1, 877 +NA,NA,"",2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 151, 151, 149, 165, 0, 0, 0, 0, 0, 0, 0, 616 +NA,NA,"",2023-24,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 210, 198, 206, 0, 0, 0, 0, 0, 614 +NA,NA,"",2023-24,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 198, 181, 206, 5, 771 +NA,NA,"",2023-24,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 96, 93, 98, 0, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,East Longmeadow - Meadow Brook,00870013, 57, 157, 165, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562 +NA,NA,"",2023-24,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 87, 101, 85, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Eastham - Eastham Elementary,00850005, 11, 19, 29, 37, 24, 25, 31, 0, 0, 0, 0, 0, 0, 0, 0, 176 +NA,NA,"",2023-24,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 86, 93, 91, 1, 373 +NA,NA,"",2023-24,Easthampton - Mountain View School,00860415, 48, 83, 102, 101, 120, 121, 116, 111, 113, 109, 0, 0, 0, 0, 0," 1,024" +NA,NA,"",2023-24,Easton - Blanche A. Ames Elementary School,00880015, 111, 206, 211, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 781 +NA,NA,"",2023-24,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 281, 262, 265, 0, 0, 0, 0, 0, 808 +NA,NA,"",2023-24,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 243, 289, 273, 10," 1,076" +NA,NA,"",2023-24,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 229, 252, 255, 0, 0, 0, 0, 0, 0, 0, 0, 736 +NA,NA,"",2023-24,Edgartown - Edgartown Elementary,00890005, 8, 43, 37, 32, 49, 48, 39, 40, 48, 42, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 93, 84, 95, 0, 375 +NA,NA,"",2023-24,Erving - Erving Elementary,00910030, 18, 13, 13, 18, 17, 16, 15, 13, 0, 0, 0, 0, 0, 0, 0, 123 +NA,NA,"",2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476, 450, 429, 390, 0," 1,745" +NA,NA,"",2023-24,Everett - Adams School,00930003, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 +NA,NA,"",2023-24,Everett - Devens School,00930030, 0, 5, 3, 4, 1, 2, 2, 5, 3, 7, 2, 7, 3, 5, 0, 49 +NA,NA,"",2023-24,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566, 587, 633, 499, 4," 2,289" +NA,NA,"",2023-24,Everett - George Keverian School,00930028, 0, 79, 70, 89, 69, 97, 81, 123, 137, 128, 0, 0, 0, 0, 0, 873 +NA,NA,"",2023-24,Everett - Lafayette School,00930038, 0, 85, 100, 104, 125, 106, 100, 127, 113, 140, 0, 0, 0, 0, 0," 1,000" +NA,NA,"",2023-24,Everett - Madeline English School,00930018, 0, 96, 76, 82, 68, 88, 77, 107, 98, 88, 0, 0, 0, 0, 0, 780 +NA,NA,"",2023-24,Everett - Parlin School,00930058, 0, 92, 106, 122, 126, 128, 121, 102, 101, 114, 0, 0, 0, 0, 0," 1,012" +NA,NA,"",2023-24,Everett - Sumner G. Whittier School,00930010, 0, 62, 62, 64, 69, 71, 79, 75, 69, 65, 0, 0, 0, 0, 0, 616 +NA,NA,"",2023-24,Everett - Webster Extension,00930001, 222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,Everett - Webster School,00930015, 0, 48, 59, 65, 60, 58, 51, 0, 0, 0, 0, 0, 0, 0, 0, 341 +NA,NA,"",2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 175, 175, 173, 173, 175, 170, 170, 151, 1," 1,363" +NA,NA,"",2023-24,Fairhaven - East Fairhaven,00940010, 22, 40, 48, 48, 49, 43, 56, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 153, 142, 153, 2, 591 +NA,NA,"",2023-24,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 139, 142, 147, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Fairhaven - Leroy Wood,00940030, 19, 66, 60, 61, 71, 82, 75, 0, 0, 0, 0, 0, 0, 0, 0, 434 +NA,NA,"",2023-24,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590, 709, 602, 500, 34," 2,435" +NA,NA,"",2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 97, 112, 131, 115, 120, 122, 0, 0, 0, 0, 0, 0, 0, 0, 697 +NA,NA,"",2023-24,Fall River - Early Learning Center,00950001, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95 +NA,NA,"",2023-24,Fall River - FRPS Early Learning Center,00950002, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 +NA,NA,"",2023-24,Fall River - Henry Lord Community School,00950017, 17, 102, 94, 96, 86, 90, 89, 74, 81, 68, 0, 0, 0, 0, 0, 797 +NA,NA,"",2023-24,Fall River - James Tansey,00950140, 0, 55, 55, 54, 41, 56, 45, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Fall River - John J Doran,00950045, 37, 44, 51, 56, 65, 53, 57, 52, 48, 48, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,Fall River - Letourneau Elementary School,00950013, 0, 91, 113, 108, 103, 100, 103, 0, 0, 0, 0, 0, 0, 0, 0, 618 +NA,NA,"",2023-24,Fall River - Mary Fonseca Elementary School,00950011, 58, 92, 106, 102, 91, 88, 95, 0, 0, 0, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 211, 239, 244, 0, 0, 0, 0, 0, 694 +NA,NA,"",2023-24,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 230, 247, 237, 0, 0, 0, 0, 0, 714 +NA,NA,"",2023-24,Fall River - North End Elementary,00950005, 48, 77, 115, 107, 93, 112, 102, 0, 0, 0, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 4, 17, 32, 33, 41, 57, 0, 184 +NA,NA,"",2023-24,Fall River - Samuel Watson,00950145, 0, 47, 50, 50, 29, 39, 50, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,Fall River - Spencer Borden,00950130, 23, 96, 96, 91, 91, 97, 84, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Fall River - Stone PK-12 School,00950340, 0, 0, 1, 2, 2, 7, 3, 3, 3, 13, 7, 8, 5, 8, 0, 62 +NA,NA,"",2023-24,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 190, 184, 183, 0, 0, 0, 0, 0, 557 +NA,NA,"",2023-24,Fall River - William S Greene,00950065, 29, 105, 118, 131, 115, 131, 120, 0, 0, 0, 0, 0, 0, 0, 0, 749 +NA,NA,"",2023-24,Falmouth - East Falmouth Elementary,00960005, 118, 39, 33, 47, 28, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298 +NA,NA,"",2023-24,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 165, 189, 172, 5, 727 +NA,NA,"",2023-24,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 227, 232, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 232, 248, 0, 0, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Falmouth - Mullen-Hall,00960020, 0, 63, 75, 72, 80, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Falmouth - North Falmouth Elementary,00960030, 0, 40, 50, 88, 54, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Falmouth - Teaticket,00960015, 0, 60, 53, 50, 43, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Farmington River Reg - Farmington River Elementary,06620020, 20, 13, 15, 18, 19, 17, 11, 16, 0, 0, 0, 0, 0, 0, 0, 129 +NA,NA,"",2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 0, 178, 203, 184, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Fitchburg - Crocker Elementary,00970016, 0, 0, 121, 130, 117, 122, 130, 0, 0, 0, 0, 0, 0, 0, 0, 620 +NA,NA,"",2023-24,Fitchburg - Fitchburg High,00970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 313, 283, 265, 0," 1,180" +NA,NA,"",2023-24,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 27, 59, 105, 19, 226 +NA,NA,"",2023-24,Fitchburg - McKay Elementary School,00970340, 0, 0, 167, 122, 139, 159, 175, 0, 0, 0, 0, 0, 0, 0, 0, 762 +NA,NA,"",2023-24,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 0, 199, 187, 201, 0, 0, 0, 0, 0, 587 +NA,NA,"",2023-24,Fitchburg - Reingold Elementary,00970043, 0, 0, 145, 129, 124, 125, 138, 0, 0, 0, 0, 0, 0, 0, 0, 661 +NA,NA,"",2023-24,Fitchburg - South Street Early Learning Center,00970060, 173, 350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523 +NA,NA,"",2023-24,Florida - Abbott Memorial,00980005, 13, 6, 6, 7, 14, 7, 9, 4, 10, 9, 0, 0, 0, 0, 0, 85 +NA,NA,"",2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 39, 36, 39, 35, 27, 0, 214 +NA,NA,"",2023-24,Foxborough - Charles Taylor Elementary,00990050, 0, 66, 50, 47, 60, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 +NA,NA,"",2023-24,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 192, 198, 190, 2, 757 +NA,NA,"",2023-24,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 185, 187, 198, 175, 0, 0, 0, 0, 0, 745 +NA,NA,"",2023-24,Foxborough - Mabelle M Burrell,00990015, 73, 45, 59, 56, 54, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0, 75, 70, 72, 72, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372 +NA,NA,"",2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 129, 143, 138, 147, 142, 128, 113, 119, 108, 90, 92, 85, 86, 0," 1,520" +NA,NA,"",2023-24,Framingham - Barbieri Elementary,01000035, 0, 97, 109, 120, 113, 110, 109, 0, 0, 0, 0, 0, 0, 0, 0, 658 +NA,NA,"",2023-24,Framingham - Brophy,01000006, 0, 78, 84, 94, 81, 77, 79, 0, 0, 0, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 202, 175, 187, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Framingham - Charlotte A Dunning,01000007, 0, 63, 74, 74, 61, 69, 95, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 765, 612, 597, 570, 1," 2,545" +NA,NA,"",2023-24,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 164, 206, 194, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Framingham - Harmony Grove Elementary,01000055, 0, 76, 83, 75, 76, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Framingham - Hemenway,01000015, 0, 75, 90, 87, 96, 93, 101, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Framingham - Juniper Hill School,01000001, 277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Framingham - King Elementary School,01000005, 0, 62, 60, 71, 77, 65, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0, 53, 61, 56, 55, 63, 66, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Framingham - Miriam F McCarthy School,01000050, 0, 81, 79, 86, 77, 78, 103, 0, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Framingham - Potter Road,01000039, 0, 88, 84, 91, 89, 91, 92, 0, 0, 0, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 266, 249, 265, 0, 0, 0, 0, 0, 780 +NA,NA,"",2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 63, 74, 63, 60, 60, 50, 0, 370 +NA,NA,"",2023-24,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 89, 117, 116, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152 +NA,NA,"",2023-24,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 384, 398, 410, 11," 1,569" +NA,NA,"",2023-24,Franklin - Helen Keller Elementary,01010012, 0, 90, 80, 93, 85, 99, 111, 0, 0, 0, 0, 0, 0, 0, 0, 558 +NA,NA,"",2023-24,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 136, 140, 111, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Franklin - J F Kennedy Memorial,01010013, 0, 46, 59, 64, 64, 40, 58, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Franklin - Jefferson Elementary,01010010, 0, 48, 55, 45, 65, 50, 70, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Franklin - Oak Street Elementary,01010030, 0, 74, 61, 61, 64, 58, 68, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Franklin - Parmenter,01010032, 0, 49, 47, 44, 42, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 112, 125, 114, 0, 0, 0, 0, 0, 351 +NA,NA,"",2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 155, 160, 145, 0, 621 +NA,NA,"",2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 174, 170, 182, 2, 683 +NA,NA,"",2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 102, 114, 113, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 45, 70, 83, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 +NA,NA,"",2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 236, 236, 233, 0, 0, 0, 0, 0, 705 +NA,NA,"",2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 237, 227, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 119, 113, 73, 98, 98, 97, 7, 605 +NA,NA,"",2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 23, 36, 55, 0, 127 +NA,NA,"",2023-24,Gardner - Gardner Elementary School,01030001, 93, 196, 205, 198, 174, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,053" +NA,NA,"",2023-24,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 168, 161, 177, 132, 3, 809 +NA,NA,"",2023-24,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 156, 183, 144, 0, 0, 0, 0, 0, 0, 483 +NA,NA,"",2023-24,Gateway - Chester Elementary,06720059, 31, 15, 17, 12, 9, 16, 17, 0, 0, 0, 0, 0, 0, 0, 0, 117 +NA,NA,"",2023-24,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 37, 31, 43, 2, 162 +NA,NA,"",2023-24,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 70, 62, 64, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Gateway - Littleville Elementary School,06720143, 29, 39, 47, 41, 39, 37, 45, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 79, 63, 72, 0, 289 +NA,NA,"",2023-24,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 91, 98, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Georgetown - Penn Brook,01050010, 0, 88, 103, 93, 93, 103, 107, 109, 0, 0, 0, 0, 0, 0, 0, 696 +NA,NA,"",2023-24,Georgetown - Perley Elementary,01050005, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 +NA,NA,"",2023-24,Gill-Montague - Gill Elementary,06740005, 0, 14, 13, 18, 19, 12, 18, 20, 0, 0, 0, 0, 0, 0, 0, 114 +NA,NA,"",2023-24,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 65, 83, 89, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 44, 43, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 68, 41, 45, 58, 0, 0, 0, 0, 0, 0, 0, 0, 212 +NA,NA,"",2023-24,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 48, 50, 55, 4, 202 +NA,NA,"",2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 87, 88, 79, 89, 44, 50, 39, 26, 0, 502 +NA,NA,"",2023-24,Gloucester - Beeman Memorial,01070010, 0, 46, 41, 49, 51, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Gloucester - East Veterans Elementary School,01070030, 0, 84, 82, 79, 65, 72, 68, 0, 0, 0, 0, 0, 0, 0, 0, 450 +NA,NA,"",2023-24,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 203, 168, 208, 7, 807 +NA,NA,"",2023-24,Gloucester - Gloucester PreSchool,01070025, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114 +NA,NA,"",2023-24,Gloucester - Plum Cove School,01070042, 0, 38, 21, 43, 38, 29, 39, 0, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 202, 207, 217, 0, 0, 0, 0, 0, 626 +NA,NA,"",2023-24,Gloucester - West Parish,01070050, 0, 61, 59, 65, 62, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +NA,NA,"",2023-24,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 211, 220, 196, 6, 891 +NA,NA,"",2023-24,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 228, 231, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 129, 103, 132, 95, 130, 0, 0, 0, 0, 0, 0, 0, 589 +NA,NA,"",2023-24,Grafton - North Grafton Elementary,01100025, 67, 85, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Grafton - North Street Elementary School,01100030, 0, 0, 0, 113, 125, 117, 99, 114, 0, 0, 0, 0, 0, 0, 0, 568 +NA,NA,"",2023-24,Grafton - South Grafton Elementary,01100005, 51, 121, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Granby - East Meadow,01110004, 32, 41, 37, 56, 61, 58, 61, 56, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 48, 56, 38, 47, 52, 50, 0, 291 +NA,NA,"",2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0, 24, 33, 41, 40, 55, 51, 74, 88, 116, 167, 139, 146, 185, 2," 1,161" +NA,NA,"",2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 363, 364, 336, 1," 1,443" +NA,NA,"",2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485, 449, 433, 407, 0," 1,774" +NA,NA,"",2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 576, 577, 559, 21," 2,314" +NA,NA,"",2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571, 551, 528, 497, 0," 2,147" +NA,NA,"",2023-24,Greenfield - Discovery School at Four Corners,01140025, 0, 32, 34, 44, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210 +NA,NA,"",2023-24,Greenfield - Federal Street School,01140010, 0, 30, 46, 38, 33, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 +NA,NA,"",2023-24,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 85, 84, 89, 80, 8, 448 +NA,NA,"",2023-24,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 107, 104, 90, 0, 0, 0, 0, 0, 0, 301 +NA,NA,"",2023-24,Greenfield - Newton School,01140035, 0, 27, 48, 33, 34, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 +NA,NA,"",2023-24,Groton-Dunstable - Boutwell School,06730001, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75 +NA,NA,"",2023-24,Groton-Dunstable - Florence Roche School,06730010, 0, 93, 84, 106, 111, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 166, 164, 175, 5, 689 +NA,NA,"",2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 187, 182, 188, 156, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0, 53, 72, 71, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Hadley - Hadley Elementary,01170015, 45, 36, 38, 28, 45, 28, 44, 28, 0, 0, 0, 0, 0, 0, 0, 292 +NA,NA,"",2023-24,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 40, 31, 26, 30, 40, 44, 0, 211 +NA,NA,"",2023-24,Halifax - Halifax Elementary,01180005, 0, 90, 67, 69, 76, 68, 85, 94, 0, 0, 0, 0, 0, 0, 0, 549 +NA,NA,"",2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 36, 38, 65, 39, 36, 45, 0, 0, 0, 0, 0, 0, 0, 0, 259 +NA,NA,"",2023-24,Hamilton-Wenham - Cutler School,06750010, 0, 55, 39, 43, 35, 36, 47, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 104, 104, 117, 0, 442 +NA,NA,"",2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 135, 116, 127, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Hamilton-Wenham - Winthrop School,06750015, 35, 40, 60, 46, 57, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 90, 90, 90, 78, 76, 72, 57, 0, 553 +NA,NA,"",2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 63, 69, 54, 56, 62, 44, 46, 0, 394 +NA,NA,"",2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 23, 36, 36, 54, 39, 44, 36, 3, 0, 5, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 54, 152, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 263, 244, 238, 0, 981 +NA,NA,"",2023-24,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 160, 163, 0, 0, 0, 0, 0, 0, 0, 0, 323 +NA,NA,"",2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 147, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 189, 216, 201, 0, 0, 0, 0, 0, 606 +NA,NA,"",2023-24,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 146, 136, 106, 99, 104, 98, 1, 690 +NA,NA,"",2023-24,Hancock - Hancock Elementary,01210005, 10, 10, 6, 4, 8, 8, 5, 7, 0, 0, 0, 0, 0, 0, 0, 58 +NA,NA,"",2023-24,Hanover - Cedar Elementary,01220004, 104, 204, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 +NA,NA,"",2023-24,Hanover - Center Elementary,01220005, 0, 0, 0, 192, 209, 227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 150, 172, 183, 0, 684 +NA,NA,"",2023-24,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 210, 187, 212, 191, 0, 0, 0, 0, 0, 800 +NA,NA,"",2023-24,Harvard - Hildreth Elementary School,01250005, 22, 64, 75, 77, 59, 70, 75, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Harvard - The Bromfield High School,01250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 86, 82, 79, 2, 325 +NA,NA,"",2023-24,Harvard - The Bromfield Middle School,01250305, 0, 0, 0, 0, 0, 0, 0, 88, 79, 85, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Hatfield - Hatfield Elementary,01270005, 21, 30, 21, 23, 22, 28, 32, 19, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 31, 20, 17, 20, 19, 19, 0, 126 +NA,NA,"",2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0, 0, 0, 5, 3, 4, 6, 4, 2, 2, 3, 4, 1, 0, 7, 41 +NA,NA,"",2023-24,Haverhill - Bradford Elementary,01280008, 0, 70, 104, 101, 97, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 +NA,NA,"",2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0, 83, 82, 82, 73, 109, 140, 174, 150, 171, 0, 0, 0, 0, 0," 1,064" +NA,NA,"",2023-24,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 214, 199, 217, 198, 0, 0, 0, 0, 0, 828 +NA,NA,"",2023-24,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 116, 144, 131, 140, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Haverhill - Gateway Academy,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 6, 13, 19, 32, 23, 10, 0, 103 +NA,NA,"",2023-24,Haverhill - Golden Hill,01280026, 0, 103, 99, 93, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 11, 7, 4, 4, 0, 34 +NA,NA,"",2023-24,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562, 508, 422, 468, 31," 1,991" +NA,NA,"",2023-24,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 91, 135, 140, 132, 0, 0, 0, 0, 0, 498 +NA,NA,"",2023-24,Haverhill - Moody,01280045, 145, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Haverhill - Moody Preschool Extension,01280001, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0, 73, 88, 66, 102, 130, 40, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Haverhill - Silver Hill Elementary School,01280067, 0, 89, 99, 96, 84, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Haverhill - Tilton,01280075, 0, 108, 67, 99, 84, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Haverhill - Walnut Square,01280080, 0, 42, 45, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 +NA,NA,"",2023-24,Hawlemont - Hawlemont Regional,06850005, 3, 8, 6, 5, 10, 9, 9, 6, 0, 0, 0, 0, 0, 0, 0, 56 +NA,NA,"",2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 19, 44, 32, 0, 0, 0, 0, 0, 95 +NA,NA,"",2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 35, 36, 35, 33, 32, 33, 32, 35, 33, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 22, 21, 22, 22, 34, 28, 29, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Hingham - East Elementary School,01310005, 77, 64, 84, 81, 67, 76, 70, 0, 0, 0, 0, 0, 0, 0, 0, 519 +NA,NA,"",2023-24,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 281, 271, 281, 5," 1,100" +NA,NA,"",2023-24,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 292, 274, 280, 0, 0, 0, 0, 0, 846 +NA,NA,"",2023-24,Hingham - Plymouth River,01310019, 0, 44, 70, 57, 59, 66, 62, 0, 0, 0, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Hingham - South Elementary,01310020, 0, 72, 84, 94, 77, 79, 87, 0, 0, 0, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Hingham - Wm L Foster Elementary,01310010, 0, 63, 65, 54, 67, 77, 65, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 109, 117, 119, 67, 72, 73, 80, 3, 640 +NA,NA,"",2023-24,Holbrook - John F Kennedy,01330018, 51, 88, 107, 102, 92, 111, 118, 0, 0, 0, 0, 0, 0, 0, 0, 669 +NA,NA,"",2023-24,Holland - Holland Elementary,01350005, 39, 15, 30, 33, 29, 19, 30, 31, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193, 211, 206, 190, 3, 803 +NA,NA,"",2023-24,Holliston - Miller School,01360007, 0, 0, 0, 0, 197, 205, 178, 0, 0, 0, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Holliston - Placentino Elementary,01360010, 88, 165, 200, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686 +NA,NA,"",2023-24,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 217, 222, 216, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Holyoke - E N White Elementary,01370045, 20, 86, 81, 68, 75, 62, 59, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Holyoke - H.B. Lawrence School,01370070, 70, 41, 39, 43, 53, 49, 39, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 402, 376, 409, 0," 1,567" +NA,NA,"",2023-24,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 100, 110, 94, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Holyoke - Joseph Metcalf School,01370003, 0, 0, 0, 0, 0, 0, 0, 61, 67, 77, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Holyoke - Kelly Elementary,01370040, 100, 57, 68, 51, 66, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0, 0, 0, 0, 0, 0, 0, 159, 177, 158, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 23, 37, 43, 51, 54, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 80, 55, 54, 65, 54, 57, 65, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Holyoke - Morgan Full Service Community School,01370025, 46, 62, 35, 46, 43, 43, 48, 0, 0, 0, 0, 0, 0, 0, 0, 323 +NA,NA,"",2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 73, 75, 83, 62, 92, 86, 78, 71, 72, 0, 0, 0, 0, 0, 692 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 59, 73, 76, 99, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 53, 78, 47, 43, 0, 299 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 86, 71, 74, 78, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 87, 71, 79, 64, 65, 80, 1, 447 +NA,NA,"",2023-24,Hopedale - Memorial,01380010, 0, 64, 79, 75, 82, 79, 82, 87, 0, 0, 0, 0, 0, 0, 0, 548 +NA,NA,"",2023-24,Hopedale - Park Street School,01380003, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,Hopkinton - Elmwood,01390010, 0, 0, 0, 313, 326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639 +NA,NA,"",2023-24,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 328, 349, 0, 0, 0, 0, 0, 0, 0, 0, 677 +NA,NA,"",2023-24,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 317, 325, 285, 5," 1,241" +NA,NA,"",2023-24,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 307, 338, 315, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Hopkinton - Hopkinton Pre-School,01390003, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 +NA,NA,"",2023-24,Hopkinton - Marathon Elementary School,01390005, 0, 272, 302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574 +NA,NA,"",2023-24,Hudson - C A Farley,01410030, 12, 95, 84, 93, 83, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 211, 186, 176, 0, 0, 0, 0, 0, 0, 573 +NA,NA,"",2023-24,Hudson - Forest Avenue Elementary,01410015, 11, 56, 57, 46, 44, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 128, 168, 175, 155, 0, 809 +NA,NA,"",2023-24,Hudson - Mulready Elementary,01410007, 19, 47, 42, 38, 49, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 63, 65, 54, 0, 233 +NA,NA,"",2023-24,Hull - Lillian M Jacobs,01420015, 60, 45, 49, 57, 43, 54, 51, 57, 0, 0, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 0, 56, 50, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 105, 99, 100, 99, 100, 97, 102, 86, 0, 788 +NA,NA,"",2023-24,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 116, 120, 133, 6, 482 +NA,NA,"",2023-24,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 134, 131, 117, 0, 0, 0, 0, 0, 382 +NA,NA,"",2023-24,Ipswich - Paul F Doyon Memorial,01440007, 26, 61, 57, 62, 53, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Ipswich - Winthrop,01440015, 35, 60, 47, 68, 51, 56, 52, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 357, 350, 0, 0, 0, 0, 0, 707 +NA,NA,"",2023-24,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 314, 265, 292, 5," 1,142" +NA,NA,"",2023-24,Kingston - Kingston Elementary,01450005, 138, 163, 174, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 161, 158, 147, 147, 0, 0, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 60, 75, 72, 68, 70, 68, 64, 54, 60, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 123, 124, 124, 124, 124, 127, 124, 123, 123, 125, 126, 125, 123, 0," 1,615" +NA,NA,"",2023-24,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 56, 66, 58, 59, 82, 95, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Lawrence - Arlington Elementary,01490009, 0, 99, 113, 121, 113, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556 +NA,NA,"",2023-24,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 113, 158, 152, 165, 0, 0, 0, 0, 0, 588 +NA,NA,"",2023-24,Lawrence - Edward F. Parthum,01490053, 0, 110, 143, 151, 137, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679 +NA,NA,"",2023-24,Lawrence - Emily G Wetherbee,01490080, 0, 53, 56, 45, 49, 59, 54, 55, 66, 66, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Lawrence - Francis M Leahy,01490040, 22, 42, 79, 83, 88, 88, 80, 0, 0, 0, 0, 0, 0, 0, 0, 482 +NA,NA,"",2023-24,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 126, 106, 125, 136, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 104, 135, 137, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 +NA,NA,"",2023-24,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 111, 128, 112, 113, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 16, 32, 145, 0, 195 +NA,NA,"",2023-24,Lawrence - James F Hennessey,01490020, 56, 78, 83, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 +NA,NA,"",2023-24,Lawrence - John Breen School,01490003, 149, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Lawrence - John K Tarbox,01490075, 0, 0, 61, 55, 62, 54, 42, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 53, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Lawrence - Lawrence Family Public Academy,01490011, 87, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 +NA,NA,"",2023-24,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 795, 891, 810, 721, 29," 3,246" +NA,NA,"",2023-24,Lawrence - Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 88, 110, 123, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Lawrence - Oliver Elementary School,01490048, 0, 0, 98, 84, 87, 90, 103, 0, 0, 0, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Lawrence - Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 116, 114, 116, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 144, 146, 154, 146, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Lawrence - RISE Academy,01490615, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 5, 14, 17, 28, 0, 67 +NA,NA,"",2023-24,Lawrence - Robert Frost,01490018, 0, 105, 101, 106, 109, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 546 +NA,NA,"",2023-24,Lawrence - Rollins Early Childhood Center,01490001, 96, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Lawrence - School for Exceptional Studies,01490537, 0, 2, 2, 5, 7, 8, 7, 8, 6, 12, 15, 9, 9, 11, 7, 108 +NA,NA,"",2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 122, 126, 145, 138, 129, 0, 0, 0, 0, 0, 0, 0, 0, 660 +NA,NA,"",2023-24,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 132, 157, 156, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 104, 104, 104, 104, 84, 82, 81, 74, 72, 70, 0, 0, 0, 0, 0, 879 +NA,NA,"",2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0, 75, 75, 76, 75, 75, 76, 71, 72, 72, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Lee - Lee Elementary,01500025, 18, 45, 46, 40, 41, 42, 51, 55, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 46, 58, 57, 41, 46, 58, 2, 308 +NA,NA,"",2023-24,Leicester - Leicester Elementary,01510005, 0, 77, 87, 109, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 +NA,NA,"",2023-24,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 113, 89, 110, 1, 397 +NA,NA,"",2023-24,Leicester - Leicester Integrated Preschool,01510001, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49 +NA,NA,"",2023-24,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 100, 123, 85, 98, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 58, 64, 69, 68, 63, 59, 62, 3, 446 +NA,NA,"",2023-24,Lenox - Morris,01520015, 25, 48, 53, 48, 52, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 337 +NA,NA,"",2023-24,Leominster - Bennett,01530003, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 +NA,NA,"",2023-24,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 179, 138, 135, 0, 807 +NA,NA,"",2023-24,Leominster - Fall Brook,01530007, 0, 72, 105, 126, 107, 109, 113, 0, 0, 0, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Leominster - Frances Drake School,01530010, 0, 99, 63, 75, 68, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Leominster - Johnny Appleseed,01530025, 0, 75, 114, 127, 107, 111, 121, 0, 0, 0, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 11, 30, 0, 65 +NA,NA,"",2023-24,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 295, 306, 303, 9," 1,073" +NA,NA,"",2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16 +NA,NA,"",2023-24,Leominster - Lincoln School,01530005, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 +NA,NA,"",2023-24,Leominster - Northwest,01530030, 0, 0, 112, 154, 136, 130, 137, 0, 0, 0, 0, 0, 0, 0, 0, 669 +NA,NA,"",2023-24,Leominster - Priest Street,01530040, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 +NA,NA,"",2023-24,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 153, 147, 168, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 293, 283, 298, 0, 0, 0, 0, 0, 874 +NA,NA,"",2023-24,Leverett - Leverett Elementary,01540005, 15, 16, 15, 19, 18, 20, 17, 22, 0, 0, 0, 0, 0, 0, 0, 142 +NA,NA,"",2023-24,Lexington - Bowman,01550008, 0, 69, 63, 65, 72, 77, 82, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Lexington - Bridge,01550006, 0, 50, 59, 57, 68, 59, 72, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Lexington - Fiske,01550015, 0, 37, 46, 55, 61, 75, 61, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Lexington - Harrington,01550030, 0, 56, 54, 60, 51, 78, 79, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 266, 258, 286, 0, 0, 0, 0, 0, 810 +NA,NA,"",2023-24,Lexington - Joseph Estabrook,01550010, 0, 71, 72, 101, 88, 94, 111, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Lexington - Lexington Children's Place,01550001, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 +NA,NA,"",2023-24,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 595, 596, 591, 536, 0," 2,318" +NA,NA,"",2023-24,Lexington - Maria Hastings,01550035, 0, 79, 79, 119, 96, 118, 140, 0, 0, 0, 0, 0, 0, 0, 0, 631 +NA,NA,"",2023-24,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 297, 308, 322, 0, 0, 0, 0, 0, 927 +NA,NA,"",2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 95, 103, 98, 90, 66, 67, 0, 0, 519 +NA,NA,"",2023-24,Lincoln - Hanscom School,01570305, 71, 60, 45, 58, 43, 50, 49, 49, 36, 33, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Lincoln - Lincoln School,01570025, 25, 54, 46, 58, 61, 59, 73, 53, 61, 49, 0, 0, 0, 0, 0, 539 +NA,NA,"",2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 380, 386, 346, 3," 1,462" +NA,NA,"",2023-24,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 124, 123, 125, 4, 487 +NA,NA,"",2023-24,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 140, 115, 133, 0, 0, 0, 0, 0, 388 +NA,NA,"",2023-24,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 108, 122, 126, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Littleton - Shaker Lane Elementary,01580005, 44, 134, 127, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Longmeadow - Blueberry Hill,01590005, 0, 55, 61, 66, 59, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Longmeadow - Center,01590010, 0, 57, 71, 69, 63, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 105, 109, 106, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 236, 225, 222, 0, 911 +NA,NA,"",2023-24,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 111, 109, 90, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Longmeadow - Wolf Swamp Road,01590025, 73, 59, 67, 67, 57, 59, 66, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Lowell - Abraham Lincoln,01600020, 56, 82, 85, 85, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 125, 123, 135, 122, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Lowell - Bartlett Community Partnership,01600090, 40, 35, 44, 49, 59, 50, 55, 43, 52, 53, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 +NA,NA,"",2023-24,Lowell - Charles W Morey,01600030, 58, 86, 86, 83, 83, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478 +NA,NA,"",2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 42, 80, 71, 83, 79, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 170, 161, 164, 163, 0, 0, 0, 0, 0, 658 +NA,NA,"",2023-24,Lowell - Dr Gertrude Bailey,01600002, 33, 83, 81, 86, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Lowell - Dr. Janice Adie Day School,01600605, 2, 1, 2, 2, 4, 5, 10, 6, 9, 6, 2, 0, 4, 4, 1, 58 +NA,NA,"",2023-24,Lowell - Greenhalge,01600015, 43, 74, 80, 87, 87, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 160, 138, 139, 155, 0, 0, 0, 0, 0, 592 +NA,NA,"",2023-24,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 180, 173, 161, 166, 0, 0, 0, 0, 0, 680 +NA,NA,"",2023-24,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 156, 143, 159, 159, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Lowell - John J Shaughnessy,01600050, 31, 87, 80, 89, 93, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Lowell - Joseph McAvinnue,01600010, 30, 72, 78, 83, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429 +NA,NA,"",2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 153, 145, 162, 165, 0, 0, 0, 0, 0, 625 +NA,NA,"",2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 0, 1, 0, 4, 6, 5, 0, 0, 0, 0, 0, 16 +NA,NA,"",2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, 9, 9, 0, 36 +NA,NA,"",2023-24,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,004", 861, 753, 763, 21," 3,402" +NA,NA,"",2023-24,Lowell - Moody Elementary,01600027, 20, 45, 44, 48, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 +NA,NA,"",2023-24,Lowell - Pawtucketville Memorial,01600036, 32, 74, 88, 87, 85, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,Lowell - Peter W Reilly,01600040, 25, 81, 82, 95, 91, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 +NA,NA,"",2023-24,Lowell - Pyne Arts,01600018, 31, 39, 40, 43, 46, 47, 60, 53, 54, 51, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Lowell - Rogers STEM Academy,01600005, 0, 77, 83, 93, 93, 86, 110, 103, 103, 110, 0, 0, 0, 0, 0, 858 +NA,NA,"",2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 50, 77, 84, 93, 95, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 482 +NA,NA,"",2023-24,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 22, 19, 32, 0, 92 +NA,NA,"",2023-24,Lowell - Washington,01600055, 32, 34, 44, 45, 47, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 +NA,NA,"",2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 100, 97, 95, 86, 92, 84, 80, 76, 67, 0, 0, 0, 0, 0, 817 +NA,NA,"",2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 32, 18, 35, 0, 106 +NA,NA,"",2023-24,Ludlow - East Street Elementary School,01610010, 97, 134, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Ludlow - Harris Brook Elementary School,01610665, 0, 0, 0, 140, 163, 165, 149, 0, 0, 0, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 204, 190, 170, 5, 750 +NA,NA,"",2023-24,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 181, 180, 171, 0, 0, 0, 0, 0, 532 +NA,NA,"",2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7 +NA,NA,"",2023-24,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 120, 104, 106, 0, 449 +NA,NA,"",2023-24,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 109, 122, 132, 0, 0, 0, 0, 0, 363 +NA,NA,"",2023-24,Lunenburg - Lunenburg Primary School,01620010, 46, 106, 115, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 113, 109, 148, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Lynn - A Drewicz Elementary,01630016, 0, 83, 107, 78, 85, 70, 69, 0, 0, 0, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Lynn - Aborn,01630011, 0, 33, 35, 37, 37, 37, 49, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 471, 474, 308, 0, 0, 0, 0, 0," 1,253" +NA,NA,"",2023-24,Lynn - Brickett Elementary,01630020, 0, 50, 49, 58, 58, 47, 55, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,Lynn - Capt William G Shoemaker,01630090, 6, 68, 54, 56, 52, 40, 62, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 521, 511, 353, 1," 1,878" +NA,NA,"",2023-24,Lynn - Cobbet Elementary,01630035, 23, 92, 105, 104, 106, 87, 106, 0, 0, 0, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,Lynn - E J Harrington,01630045, 66, 93, 95, 97, 100, 90, 93, 0, 0, 0, 0, 0, 0, 0, 0, 634 +NA,NA,"",2023-24,Lynn - Edward A Sisson,01630095, 10, 49, 71, 76, 68, 81, 72, 0, 0, 0, 0, 0, 0, 0, 0, 427 +NA,NA,"",2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 5, 4, 7, 9, 20, 18, 25, 0, 88 +NA,NA,"",2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 92, 0, 0, 0, 157 +NA,NA,"",2023-24,Lynn - Hood,01630055, 4, 81, 100, 86, 86, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Lynn - Ingalls,01630060, 0, 171, 107, 102, 115, 86, 117, 0, 0, 0, 0, 0, 0, 0, 0, 698 +NA,NA,"",2023-24,Lynn - Julia F Callahan,01630030, 56, 45, 50, 61, 63, 53, 66, 0, 0, 0, 0, 0, 0, 0, 0, 394 +NA,NA,"",2023-24,Lynn - Lincoln-Thomson,01630070, 0, 27, 43, 30, 32, 34, 50, 0, 0, 0, 0, 0, 0, 0, 0, 216 +NA,NA,"",2023-24,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442, 584, 562, 484, 0," 2,072" +NA,NA,"",2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 67, 1, 7, 1, 0, 1, 3, 2, 2, 295, 300, 282, 278, 264, 54," 1,557" +NA,NA,"",2023-24,Lynn - Lynn Woods,01630075, 0, 23, 23, 27, 36, 19, 33, 0, 0, 0, 0, 0, 0, 0, 0, 161 +NA,NA,"",2023-24,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 214, 202, 127, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Lynn - Robert L Ford,01630050, 0, 0, 100, 74, 78, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Lynn - Sewell-Anderson,01630085, 0, 105, 39, 31, 36, 26, 34, 0, 0, 0, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 478, 442, 360, 0, 0, 0, 0, 0," 1,280" +NA,NA,"",2023-24,Lynn - Tracy,01630100, 0, 0, 74, 82, 75, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81 +NA,NA,"",2023-24,Lynn - Washington Elementary School,01630005, 0, 63, 79, 85, 65, 86, 69, 0, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Lynn - William R Fallon,01630080, 0, 1, 0, 2, 6, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 24 +NA,NA,"",2023-24,Lynn - Wm P Connery,01630040, 0, 102, 108, 102, 77, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 554 +NA,NA,"",2023-24,Lynnfield - Huckleberry Hill,01640010, 0, 91, 81, 84, 96, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449 +NA,NA,"",2023-24,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 133, 144, 147, 0, 571 +NA,NA,"",2023-24,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 176, 185, 159, 189, 0, 0, 0, 0, 0, 709 +NA,NA,"",2023-24,Lynnfield - Lynnfield Preschool,01640005, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39 +NA,NA,"",2023-24,Lynnfield - Summer Street,01640020, 0, 67, 89, 99, 86, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 47, 0, 97 +NA,NA,"",2023-24,Malden - Beebe,01650003, 0, 90, 109, 114, 108, 92, 101, 93, 100, 94, 0, 0, 0, 0, 0, 901 +NA,NA,"",2023-24,Malden - Ferryway,01650013, 0, 96, 103, 110, 104, 98, 99, 98, 100, 97, 0, 0, 0, 0, 0, 905 +NA,NA,"",2023-24,Malden - Forestdale,01650027, 0, 51, 58, 63, 59, 60, 64, 48, 69, 78, 0, 0, 0, 0, 0, 550 +NA,NA,"",2023-24,Malden - Linden,01650047, 0, 85, 86, 96, 98, 95, 95, 86, 89, 95, 0, 0, 0, 0, 0, 825 +NA,NA,"",2023-24,Malden - Malden Early Learning Center,01650049, 251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489, 462, 492, 440, 11," 1,894" +NA,NA,"",2023-24,Malden - Salemwood,01650057, 0, 92, 89, 116, 92, 101, 101, 116, 124, 125, 0, 0, 0, 0, 0, 956 +NA,NA,"",2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0, 36, 36, 40, 39, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 92, 112, 89, 1, 400 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 93, 98, 83, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 37, 40, 42, 37, 48, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Mansfield - Everett W Robinson,01670007, 0, 213, 247, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 712 +NA,NA,"",2023-24,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 253, 262, 271, 0, 0, 0, 0, 0, 786 +NA,NA,"",2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 263, 235, 240, 0, 0, 0, 0, 0, 0, 0, 0, 738 +NA,NA,"",2023-24,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 261, 241, 279, 16," 1,035" +NA,NA,"",2023-24,Mansfield - Roland Green School,01670003, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 +NA,NA,"",2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 75, 82, 70, 0, 277 +NA,NA,"",2023-24,Marblehead - Glover,01680020, 27, 60, 87, 70, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 32, 105, 99, 101, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 199, 244, 215, 0, 874 +NA,NA,"",2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 235, 208, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 187, 171, 179, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 39, 39, 45, 26, 26, 0, 0, 0, 0, 0, 175 +NA,NA,"",2023-24,Marion - Sippican,01690005, 23, 36, 45, 52, 55, 54, 66, 58, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 0, 289, 296, 359, 0, 0, 0, 0, 0, 944 +NA,NA,"",2023-24,Marlborough - Charles Jaworek School,01700030, 0, 104, 115, 115, 97, 120, 104, 0, 0, 0, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Marlborough - Early Childhood Center,01700006, 231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Marlborough - Francis J Kane,01700008, 0, 75, 86, 96, 90, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0, 128, 123, 145, 151, 116, 133, 0, 0, 0, 0, 0, 0, 0, 0, 796 +NA,NA,"",2023-24,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 270, 285, 239, 10," 1,013" +NA,NA,"",2023-24,Marlborough - Richer,01700025, 0, 104, 81, 96, 100, 94, 103, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Marshfield - Daniel Webster,01710015, 4, 44, 50, 44, 43, 44, 42, 0, 0, 0, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Marshfield - Eames Way School,01710005, 0, 54, 36, 35, 35, 34, 34, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 270, 303, 276, 0, 0, 0, 0, 0, 849 +NA,NA,"",2023-24,Marshfield - Gov Edward Winslow,01710020, 0, 57, 57, 52, 64, 65, 58, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 293, 320, 256, 2," 1,149" +NA,NA,"",2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 +NA,NA,"",2023-24,Marshfield - Martinson Elementary,01710025, 0, 68, 73, 92, 67, 89, 64, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Marshfield - South River,01710010, 0, 39, 54, 34, 45, 47, 30, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 186, 196, 165, 4, 681 +NA,NA,"",2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0, 12, 9, 15, 16, 15, 22, 25, 13, 16, 7, 14, 4, 7, 0, 175 +NA,NA,"",2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0, 64, 59, 56, 61, 60, 56, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 261, 210, 254, 0, 975 +NA,NA,"",2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 289, 271, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Mashpee - Kenneth Coombs School,01720005, 95, 90, 111, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Mashpee - Mashpee Middle-High School,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 101, 116, 103, 98, 112, 90, 0, 620 +NA,NA,"",2023-24,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 104, 109, 83, 112, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 54, 81, 98, 96, 97, 98, 98, 94, 91, 90, 100, 66, 61, 60, 1," 1,185" +NA,NA,"",2023-24,Mattapoisett - Center,01730005, 24, 45, 54, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 49, 60, 61, 0, 0, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 97, 94, 99, 89, 97, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Maynard - Green Meadow,01740010, 48, 108, 90, 96, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 84, 82, 72, 0, 297 +NA,NA,"",2023-24,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 206, 198, 0, 0, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 176, 175, 185, 6, 705 +NA,NA,"",2023-24,Medfield - Memorial School,01750003, 42, 193, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 +NA,NA,"",2023-24,Medfield - Ralph Wheelock School,01750007, 9, 0, 0, 207, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 193, 192, 200, 0, 0, 0, 0, 0, 585 +NA,NA,"",2023-24,Medford - Brooks School,01760130, 44, 89, 72, 95, 81, 87, 69, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 15 +NA,NA,"",2023-24,Medford - John J McGlynn Elementary School,01760068, 0, 96, 66, 97, 96, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 140, 154, 138, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 143, 158, 151, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,Medford - Medford High,01760505, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 313, 279, 278, 6," 1,191" +NA,NA,"",2023-24,Medford - Milton Fuller Roberts,01760150, 26, 100, 96, 99, 88, 78, 84, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Medford - Missituk Elementary School,01760140, 36, 63, 57, 79, 59, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 164, 167, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Medway - John D Mc Govern Elementary,01770013, 46, 162, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377 +NA,NA,"",2023-24,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 150, 161, 148, 0, 607 +NA,NA,"",2023-24,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 164, 168, 155, 178, 0, 0, 0, 0, 0, 665 +NA,NA,"",2023-24,Melrose - Early Childhood Center,01780003, 225, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Melrose - Herbert Clark Hoover,01780017, 0, 53, 38, 42, 44, 51, 55, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Melrose - Horace Mann,01780025, 0, 40, 45, 47, 45, 43, 46, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,Melrose - Lincoln,01780020, 0, 57, 69, 77, 85, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 412 +NA,NA,"",2023-24,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 237, 238, 233, 5, 959 +NA,NA,"",2023-24,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 320, 309, 281, 0, 0, 0, 0, 0, 910 +NA,NA,"",2023-24,Melrose - Roosevelt,01780035, 0, 56, 64, 66, 83, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Melrose - Winthrop,01780050, 0, 73, 62, 70, 64, 69, 63, 0, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Mendon-Upton - Henry P Clough,07100179, 21, 86, 57, 86, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Mendon-Upton - Memorial School,07100001, 28, 82, 108, 91, 90, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 169, 176, 128, 163, 0, 0, 0, 0, 0, 636 +NA,NA,"",2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 133, 154, 149, 3, 559 +NA,NA,"",2023-24,Methuen - Comprehensive Grammar School,01810050, 0, 100, 101, 115, 107, 111, 119, 116, 134, 130, 0, 0, 0, 0, 0," 1,033" +NA,NA,"",2023-24,Methuen - Donald P Timony Grammar,01810060, 0, 96, 122, 132, 121, 146, 147, 139, 117, 128, 0, 0, 0, 0, 0," 1,148" +NA,NA,"",2023-24,Methuen - Early Childhood Center,01810001, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143 +NA,NA,"",2023-24,Methuen - Marsh Grammar School,01810030, 0, 122, 106, 105, 120, 109, 113, 109, 147, 115, 0, 0, 0, 0, 0," 1,046" +NA,NA,"",2023-24,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 517, 501, 462, 0," 1,898" +NA,NA,"",2023-24,Methuen - Tenney Grammar School,01810055, 0, 112, 134, 120, 143, 151, 149, 148, 141, 166, 0, 0, 0, 0, 0," 1,264" +NA,NA,"",2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 128, 113, 121, 107, 115, 0, 0, 0, 0, 0, 0, 0, 0, 584 +NA,NA,"",2023-24,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 239, 238, 232, 0, 0, 0, 0, 0, 709 +NA,NA,"",2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 116, 125, 129, 119, 122, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Middleborough - Memorial Early Childhood Center,01820011, 69, 198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 204, 208, 192, 1, 827 +NA,NA,"",2023-24,Middleton - Fuller Meadow,01840003, 0, 86, 103, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Middleton - Howe-Manning,01840005, 55, 0, 0, 0, 97, 93, 109, 83, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Milford - Brookside,01850065, 0, 189, 205, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569 +NA,NA,"",2023-24,Milford - Memorial,01850010, 0, 144, 131, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 339, 336, 296, 1," 1,297" +NA,NA,"",2023-24,Milford - Shining Star Early Childhood Center,01850075, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 +NA,NA,"",2023-24,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 297, 335, 339, 0, 0, 0, 0, 0, 971 +NA,NA,"",2023-24,Milford - Woodland,01850090, 0, 0, 0, 0, 339, 317, 322, 0, 0, 0, 0, 0, 0, 0, 0, 978 +NA,NA,"",2023-24,Millbury - Elmwood Street,01860017, 93, 108, 134, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 120, 138, 115, 126, 113, 3, 721 +NA,NA,"",2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 103, 122, 111, 131, 0, 0, 0, 0, 0, 0, 0, 467 +NA,NA,"",2023-24,Millis - Clyde F Brown,01870005, 50, 89, 94, 96, 80, 99, 87, 0, 0, 0, 0, 0, 0, 0, 0, 595 +NA,NA,"",2023-24,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 65, 79, 91, 0, 317 +NA,NA,"",2023-24,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 101, 89, 78, 0, 0, 0, 0, 0, 268 +NA,NA,"",2023-24,Millis - TIES,01870515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 +NA,NA,"",2023-24,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 352, 332, 276, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Milton - Collicot,01890005, 0, 86, 113, 98, 105, 86, 98, 0, 0, 0, 0, 0, 0, 0, 0, 586 +NA,NA,"",2023-24,Milton - Cunningham School,01890007, 87, 85, 80, 95, 86, 95, 83, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Milton - Glover,01890010, 0, 89, 92, 115, 88, 119, 119, 0, 0, 0, 0, 0, 0, 0, 0, 622 +NA,NA,"",2023-24,Milton - Milton High,01890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 245, 269, 278, 9," 1,092" +NA,NA,"",2023-24,Milton - Tucker,01890020, 32, 66, 69, 69, 67, 77, 69, 0, 0, 0, 0, 0, 0, 0, 0, 449 +NA,NA,"",2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 169, 180, 162, 0, 683 +NA,NA,"",2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 28, 24, 29, 34, 36, 34, 39, 41, 0, 0, 0, 0, 0, 0, 1, 266 +NA,NA,"",2023-24,Mohawk Trail - Colrain Central,07170010, 17, 13, 11, 10, 13, 9, 15, 15, 0, 0, 0, 0, 0, 0, 0, 103 +NA,NA,"",2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 82, 71, 44, 33, 34, 35, 0, 299 +NA,NA,"",2023-24,Mohawk Trail - Sanderson Academy,07170020, 33, 15, 17, 12, 12, 15, 14, 20, 0, 0, 0, 0, 0, 0, 0, 138 +NA,NA,"",2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0, 30, 30, 29, 21, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 65, 59, 78, 81, 99, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 139, 136, 163, 116, 6, 719 +NA,NA,"",2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 124, 142, 148, 0, 0, 0, 0, 0, 0, 414 +NA,NA,"",2023-24,Monson - Granite Valley School,01910030, 0, 0, 59, 56, 69, 74, 71, 58, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 70, 47, 37, 31, 38, 5, 295 +NA,NA,"",2023-24,Monson - Quarry Hill Community School,01910010, 65, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125 +NA,NA,"",2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 368, 357, 343, 0," 1,428" +NA,NA,"",2023-24,Mount Greylock - Lanesborough Elementary,07150005, 22, 28, 25, 28, 25, 36, 36, 29, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 112, 99, 94, 72, 71, 104, 1, 553 +NA,NA,"",2023-24,Mount Greylock - Williamstown Elementary,07150010, 33, 45, 54, 65, 43, 55, 64, 72, 0, 0, 0, 0, 0, 0, 0, 431 +NA,NA,"",2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 167, 160, 157, 156, 146, 145, 144, 113, 106, 91, 99, 74, 95, 0," 1,653" +NA,NA,"",2023-24,Nahant - Johnson,01960010, 33, 28, 21, 16, 28, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 123, 101, 129, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Nantucket - Nantucket Elementary,01970005, 44, 107, 116, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 159, 153, 116, 4, 593 +NA,NA,"",2023-24,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 123, 104, 113, 0, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 132, 112, 122, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 103, 89, 93, 63, 2, 475 +NA,NA,"",2023-24,Narragansett - Templeton Elementary School,07200020, 84, 98, 108, 96, 105, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,Nashoba - Center School,07250020, 33, 74, 74, 87, 70, 71, 91, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Nashoba - Florence Sawyer School,07250025, 23, 61, 78, 85, 95, 69, 86, 82, 74, 90, 0, 0, 0, 0, 0, 743 +NA,NA,"",2023-24,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 67, 89, 81, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 91, 88, 70, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 25, 72, 74, 79, 73, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 461 +NA,NA,"",2023-24,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 204, 201, 218, 9, 841 +NA,NA,"",2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 199, 193, 167, 0, 773 +NA,NA,"",2023-24,Natick - Bennett-Hemenway,01980005, 0, 102, 72, 116, 99, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Natick - Brown,01980010, 0, 95, 101, 117, 87, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 241, 211, 236, 223, 0, 0, 0, 0, 0, 911 +NA,NA,"",2023-24,Natick - Johnson,01980031, 0, 0, 0, 7, 13, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51 +NA,NA,"",2023-24,Natick - Lilja Elementary,01980035, 0, 82, 91, 92, 71, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410 +NA,NA,"",2023-24,Natick - Memorial,01980043, 0, 80, 90, 93, 101, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Natick - Natick High,01980505, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433, 427, 381, 378, 0," 1,743" +NA,NA,"",2023-24,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 188, 193, 176, 191, 0, 0, 0, 0, 0, 748 +NA,NA,"",2023-24,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 171, 210, 189, 3, 751 +NA,NA,"",2023-24,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 137, 171, 177, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Needham - Broadmeadow,01990005, 0, 81, 82, 85, 86, 87, 101, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Needham - John Eliot,01990020, 0, 53, 73, 69, 62, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373, 414, 417, 418, 0," 1,622" +NA,NA,"",2023-24,Needham - Newman Elementary,01990050, 80, 98, 111, 100, 99, 103, 107, 0, 0, 0, 0, 0, 0, 0, 0, 698 +NA,NA,"",2023-24,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 437, 443, 0, 0, 0, 0, 0, 880 +NA,NA,"",2023-24,Needham - Sunita L. Williams Elementary,01990035, 0, 78, 90, 87, 102, 88, 86, 0, 0, 0, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Needham - William Mitchell,01990040, 0, 66, 87, 62, 76, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 439 +NA,NA,"",2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 38, 38, 40, 44, 44, 46, 78, 75, 71, 66, 106, 71, 76, 63, 0, 856 +NA,NA,"",2023-24,New Bedford - Abraham Lincoln,02010095, 0, 111, 126, 108, 108, 97, 122, 0, 0, 0, 0, 0, 0, 0, 0, 672 +NA,NA,"",2023-24,New Bedford - Alfred J Gomes,02010063, 53, 94, 95, 97, 88, 97, 86, 0, 0, 0, 0, 0, 0, 0, 0, 610 +NA,NA,"",2023-24,New Bedford - Betsey B Winslow,02010140, 0, 32, 42, 44, 41, 38, 37, 0, 0, 0, 0, 0, 0, 0, 0, 234 +NA,NA,"",2023-24,New Bedford - Carlos Pacheco,02010105, 0, 37, 51, 44, 42, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,New Bedford - Casimir Pulaski,02010123, 85, 80, 77, 88, 74, 75, 81, 0, 0, 0, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,New Bedford - Charles S Ashley,02010010, 0, 27, 53, 48, 47, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0, 40, 38, 46, 52, 47, 41, 0, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,New Bedford - Ellen R Hathaway,02010075, 47, 37, 24, 42, 33, 29, 33, 0, 0, 0, 0, 0, 0, 0, 0, 245 +NA,NA,"",2023-24,New Bedford - Elwyn G Campbell,02010020, 73, 28, 35, 29, 46, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,New Bedford - Hayden/McFadden,02010078, 97, 103, 109, 118, 101, 89, 96, 0, 0, 0, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 25, 70, 54, 54, 60, 67, 53, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,New Bedford - James B Congdon,02010040, 0, 44, 54, 37, 61, 48, 57, 0, 0, 0, 0, 0, 0, 0, 0, 301 +NA,NA,"",2023-24,New Bedford - Jireh Swift,02010130, 33, 36, 32, 35, 30, 31, 24, 0, 0, 0, 0, 0, 0, 0, 0, 221 +NA,NA,"",2023-24,New Bedford - John Avery Parker,02010115, 28, 45, 36, 50, 42, 32, 31, 0, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,New Bedford - John B Devalles,02010050, 0, 55, 55, 44, 48, 54, 36, 0, 0, 0, 0, 0, 0, 0, 0, 292 +NA,NA,"",2023-24,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 302, 311, 259, 0, 0, 0, 0, 0, 872 +NA,NA,"",2023-24,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 752, 809, 719, 613, 0," 2,893" +NA,NA,"",2023-24,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 332, 333, 373, 0, 0, 0, 0, 0," 1,038" +NA,NA,"",2023-24,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 246, 280, 262, 0, 0, 0, 0, 0, 788 +NA,NA,"",2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 64, 105, 93, 105, 82, 91, 73, 0, 0, 0, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,New Bedford - Thomas R Rodman,02010125, 0, 34, 38, 34, 35, 31, 33, 0, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 6, 14, 4, 12, 12, 15, 12, 11, 0, 86 +NA,NA,"",2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 1, 1, 9, 29, 31, 66, 42, 0, 179 +NA,NA,"",2023-24,New Bedford - William H Taylor,02010135, 34, 33, 36, 46, 41, 41, 30, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 112, 111, 104, 97, 105, 112, 89, 0, 730 +NA,NA,"",2023-24,New Salem-Wendell - Swift River,07280015, 18, 13, 12, 18, 18, 21, 17, 20, 0, 0, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 159, 141, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 64, 145, 121, 133, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 194, 206, 204, 3, 785 +NA,NA,"",2023-24,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 148, 166, 159, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Newton - A E Angier,02070005, 0, 64, 52, 61, 63, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 144, 125, 145, 0, 0, 0, 0, 0, 414 +NA,NA,"",2023-24,Newton - Bowen,02070015, 0, 51, 53, 57, 64, 67, 63, 0, 0, 0, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Newton - C C Burr,02070020, 0, 54, 56, 58, 61, 62, 64, 0, 0, 0, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Newton - Cabot,02070025, 0, 54, 73, 66, 84, 85, 66, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 237, 248, 247, 0, 0, 0, 0, 0, 732 +NA,NA,"",2023-24,Newton - Countryside,02070040, 0, 43, 60, 67, 68, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 272, 305, 291, 0, 0, 0, 0, 0, 868 +NA,NA,"",2023-24,Newton - Franklin,02070055, 0, 44, 44, 59, 72, 63, 67, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Newton - Horace Mann,02070075, 0, 51, 50, 62, 64, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Newton - John Ward,02070120, 0, 42, 21, 35, 42, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 212 +NA,NA,"",2023-24,Newton - Lincoln-Eliot,02070070, 0, 47, 58, 56, 59, 44, 64, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Newton - Mason-Rice,02070080, 0, 40, 60, 54, 61, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Newton - Memorial Spaulding,02070105, 0, 46, 53, 83, 57, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Newton - Newton Early Childhood Program,02070108, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185 +NA,NA,"",2023-24,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 532, 521, 525, 507, 33," 2,118" +NA,NA,"",2023-24,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 459, 463, 434, 2," 1,861" +NA,NA,"",2023-24,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 222, 224, 202, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Newton - Peirce,02070100, 0, 36, 39, 36, 40, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 236 +NA,NA,"",2023-24,Newton - Underwood,02070115, 0, 37, 45, 36, 44, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 242 +NA,NA,"",2023-24,Newton - Williams,02070125, 0, 26, 35, 41, 37, 38, 38, 0, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Newton - Zervas,02070130, 0, 67, 58, 73, 59, 76, 66, 0, 0, 0, 0, 0, 0, 0, 0, 399 +NA,NA,"",2023-24,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 163, 126, 136, 127, 0, 0, 0, 0, 0, 0, 0, 552 +NA,NA,"",2023-24,Norfolk - H Olive Day,02080015, 62, 166, 117, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 154, 148, 131, 0, 586 +NA,NA,"",2023-24,North Adams - Brayton,02090035, 24, 28, 33, 35, 25, 16, 38, 19, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,North Adams - Colegrove Park Elementary,02090008, 38, 29, 27, 32, 41, 35, 27, 25, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 75, 81, 82, 80, 95, 48, 4, 465 +NA,NA,"",2023-24,North Adams - Greylock,02090015, 25, 40, 37, 38, 29, 38, 41, 22, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 126, 287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 +NA,NA,"",2023-24,North Andover - Annie L Sargent School,02110018, 0, 0, 97, 93, 90, 85, 103, 0, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,North Andover - Atkinson,02110001, 0, 0, 53, 48, 52, 56, 57, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,North Andover - Franklin,02110010, 0, 0, 72, 79, 66, 89, 74, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,North Andover - Kittredge,02110015, 0, 0, 46, 40, 43, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 347, 331, 344, 0," 1,380" +NA,NA,"",2023-24,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 344, 332, 341, 0, 0, 0, 0, 0," 1,017" +NA,NA,"",2023-24,North Andover - Thomson,02110020, 0, 0, 50, 52, 69, 62, 84, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,North Attleborough - Amvet Boulevard,02120007, 0, 54, 49, 85, 70, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,North Attleborough - Community,02120030, 0, 49, 46, 49, 48, 42, 54, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,North Attleborough - Falls,02120010, 0, 39, 48, 49, 35, 31, 38, 0, 0, 0, 0, 0, 0, 0, 0, 240 +NA,NA,"",2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 82, 83, 89, 100, 90, 97, 0, 0, 0, 0, 0, 0, 0, 0, 541 +NA,NA,"",2023-24,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 243, 301, 293, 17," 1,079" +NA,NA,"",2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 309, 331, 324, 0, 0, 0, 0, 0, 964 +NA,NA,"",2023-24,North Attleborough - Roosevelt Avenue,02120015, 0, 36, 34, 46, 46, 43, 48, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,North Brookfield - North Brookfield Elementary,02150015, 28, 26, 29, 42, 37, 38, 38, 36, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 23, 15, 15, 29, 20, 31, 0, 133 +NA,NA,"",2023-24,North Middlesex - Ashby Elementary,07350010, 0, 34, 22, 27, 38, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 +NA,NA,"",2023-24,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 116, 117, 105, 114, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 123, 122, 124, 117, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 183, 214, 176, 12, 757 +NA,NA,"",2023-24,North Middlesex - Spaulding Memorial,07350005, 0, 97, 78, 96, 80, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 93, 2, 3, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,North Middlesex - Varnum Brook,07350035, 0, 112, 120, 125, 135, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,North Reading - E Ethel Little School,02170003, 23, 40, 55, 41, 51, 58, 26, 0, 0, 0, 0, 0, 0, 0, 0, 294 +NA,NA,"",2023-24,North Reading - J Turner Hood,02170010, 22, 62, 86, 64, 63, 60, 53, 0, 0, 0, 0, 0, 0, 0, 0, 410 +NA,NA,"",2023-24,North Reading - L D Batchelder,02170005, 0, 75, 68, 79, 76, 85, 69, 0, 0, 0, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 171, 162, 127, 5, 618 +NA,NA,"",2023-24,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 187, 165, 191, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Northampton - Bridge Street,02100005, 24, 38, 44, 40, 35, 40, 38, 0, 0, 0, 0, 0, 0, 0, 0, 259 +NA,NA,"",2023-24,Northampton - Jackson Street,02100020, 0, 36, 50, 41, 53, 52, 44, 0, 0, 0, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 175, 204, 163, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Northampton - Leeds,02100025, 19, 33, 41, 33, 38, 56, 58, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 222, 231, 207, 9, 907 +NA,NA,"",2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0, 35, 36, 37, 39, 41, 45, 0, 0, 0, 0, 0, 0, 0, 0, 233 +NA,NA,"",2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 147, 146, 128, 0, 569 +NA,NA,"",2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 276, 292, 318, 15," 1,194" +NA,NA,"",2023-24,Northborough - Fannie E Proctor,02130015, 0, 23, 40, 40, 41, 58, 45, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Northborough - Lincoln Street,02130003, 0, 37, 42, 44, 58, 45, 56, 0, 0, 0, 0, 0, 0, 0, 0, 282 +NA,NA,"",2023-24,Northborough - Marguerite E Peaslee,02130014, 0, 40, 40, 57, 54, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 281 +NA,NA,"",2023-24,Northborough - Marion E Zeh,02130020, 0, 42, 42, 42, 42, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 172, 196, 201, 0, 0, 0, 0, 0, 569 +NA,NA,"",2023-24,Northbridge - Northbridge Elementary School,02140001, 92, 171, 143, 152, 147, 143, 112, 0, 0, 0, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 135, 102, 111, 0, 473 +NA,NA,"",2023-24,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 0, 129, 147, 156, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 366, 322, 295, 0," 1,343" +NA,NA,"",2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 140, 140, 112, 0, 520 +NA,NA,"",2023-24,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 180, 153, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Norton - J C Solmonese,02180015, 102, 104, 104, 100, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 +NA,NA,"",2023-24,Norton - L G Nourse Elementary,02180010, 0, 80, 65, 84, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 +NA,NA,"",2023-24,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 179, 171, 163, 3, 685 +NA,NA,"",2023-24,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 193, 185, 181, 0, 0, 0, 0, 0, 559 +NA,NA,"",2023-24,Norwell - Grace Farrar Cole,02190005, 23, 91, 70, 87, 93, 89, 88, 0, 0, 0, 0, 0, 0, 0, 0, 541 +NA,NA,"",2023-24,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 141, 150, 148, 0, 596 +NA,NA,"",2023-24,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 166, 168, 166, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Norwell - William G Vinal,02190020, 19, 67, 91, 88, 84, 105, 80, 0, 0, 0, 0, 0, 0, 0, 0, 534 +NA,NA,"",2023-24,Norwood - Balch,02200005, 0, 0, 67, 68, 54, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Norwood - Charles J Prescott,02200025, 0, 8, 57, 50, 55, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 250 +NA,NA,"",2023-24,Norwood - Cornelius M Callahan,02200010, 0, 0, 45, 43, 42, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 234 +NA,NA,"",2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 255, 274, 262, 0, 0, 0, 0, 0, 791 +NA,NA,"",2023-24,Norwood - F A Cleveland,02200015, 0, 0, 67, 55, 72, 69, 54, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,Norwood - George F. Willett,02200075, 134, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 +NA,NA,"",2023-24,Norwood - John P Oldham,02200020, 0, 0, 46, 64, 68, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 214, 239, 247, 5, 951 +NA,NA,"",2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 15, 42, 45, 44, 48, 37, 48, 33, 51, 56, 0, 0, 0, 0, 0, 419 +NA,NA,"",2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 137, 135, 138, 0, 549 +NA,NA,"",2023-24,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 146, 147, 152, 6, 610 +NA,NA,"",2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 192, 239, 0, 0, 0, 0, 0, 431 +NA,NA,"",2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 39, 40, 40, 40, 39, 30, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Orange - Fisher Hill School,02230010, 46, 68, 48, 82, 58, 75, 73, 73, 0, 0, 0, 0, 0, 0, 0, 523 +NA,NA,"",2023-24,Orleans - Orleans Elementary,02240005, 0, 29, 14, 32, 20, 21, 26, 0, 0, 0, 0, 0, 0, 0, 0, 142 +NA,NA,"",2023-24,Oxford - Alfred M Chaffee,02260010, 0, 101, 106, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Oxford - Clara Barton,02260005, 0, 0, 0, 0, 88, 106, 127, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Oxford - Oxford High,02260505, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 100, 109, 88, 5, 463 +NA,NA,"",2023-24,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 0, 112, 143, 130, 0, 0, 0, 0, 0, 385 +NA,NA,"",2023-24,Palmer - Old Mill Pond,02270008, 54, 87, 84, 90, 109, 61, 91, 0, 0, 0, 0, 0, 0, 0, 0, 576 +NA,NA,"",2023-24,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 105, 90, 81, 46, 56, 72, 58, 1, 509 +NA,NA,"",2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 169, 152, 149, 0, 643 +NA,NA,"",2023-24,Peabody - Captain Samuel Brown,02290005, 0, 78, 54, 65, 60, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Peabody - Center,02290015, 0, 45, 49, 61, 54, 66, 74, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 417, 441, 425, 0, 0, 0, 0, 0," 1,283" +NA,NA,"",2023-24,Peabody - John E Burke,02290007, 0, 46, 43, 53, 47, 49, 57, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Peabody - John E. McCarthy,02290016, 122, 44, 42, 45, 42, 43, 46, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0, 0, 0, 1, 3, 5, 4, 3, 5, 8, 16, 15, 19, 19, 0, 98 +NA,NA,"",2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 371, 374, 299, 10," 1,420" +NA,NA,"",2023-24,Peabody - South Memorial,02290035, 73, 51, 69, 65, 64, 69, 83, 0, 0, 0, 0, 0, 0, 0, 0, 474 +NA,NA,"",2023-24,Peabody - Thomas Carroll,02290010, 17, 82, 92, 97, 87, 88, 116, 0, 0, 0, 0, 0, 0, 0, 0, 579 +NA,NA,"",2023-24,Peabody - West Memorial,02290045, 39, 45, 38, 41, 40, 36, 38, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Peabody - William A Welch Sr,02290027, 0, 62, 64, 64, 58, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Pelham - Pelham Elementary,02300005, 0, 17, 17, 20, 21, 19, 18, 17, 0, 0, 0, 0, 0, 0, 0, 129 +NA,NA,"",2023-24,Pembroke - Bryantville Elementary,02310003, 0, 61, 58, 69, 57, 57, 71, 68, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Pembroke - Hobomock Elementary,02310010, 0, 48, 60, 60, 53, 53, 58, 64, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Pembroke - North Pembroke Elementary,02310015, 74, 54, 71, 58, 73, 51, 61, 63, 0, 0, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 164, 196, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 172, 178, 172, 11, 715 +NA,NA,"",2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 37, 58, 69, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Pentucket - Dr John C Page School,07450015, 28, 40, 43, 47, 30, 56, 42, 40, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Pentucket - Elmer S Bagnall,07450005, 38, 69, 65, 83, 64, 68, 65, 66, 0, 0, 0, 0, 0, 0, 0, 518 +NA,NA,"",2023-24,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 56, 60, 66, 63, 0, 0, 0, 0, 0, 0, 0, 245 +NA,NA,"",2023-24,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 159, 172, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 134, 155, 143, 0, 574 +NA,NA,"",2023-24,Petersham - Petersham Center,02340005, 0, 19, 19, 19, 19, 18, 26, 13, 0, 0, 0, 0, 0, 0, 0, 133 +NA,NA,"",2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 2, 20, 15, 0, 194 +NA,NA,"",2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 1, 14, 6, 0, 114 +NA,NA,"",2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 5, 53, 10, 0, 159 +NA,NA,"",2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 62, 63, 62, 63, 63, 63, 63, 63, 63, 62, 55, 54, 43, 0, 779 +NA,NA,"",2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0, 50, 50, 47, 49, 0, 0, 0, 73, 74, 70, 67, 45, 41, 0, 566 +NA,NA,"",2023-24,Pioneer Valley - Bernardston Elementary,07500006, 23, 17, 31, 29, 30, 17, 24, 36, 0, 0, 0, 0, 0, 0, 0, 207 +NA,NA,"",2023-24,Pioneer Valley - Northfield Elementary,07500008, 29, 18, 14, 16, 22, 17, 25, 27, 0, 0, 0, 0, 0, 0, 0, 168 +NA,NA,"",2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 60, 60, 28, 16, 36, 41, 0, 241 +NA,NA,"",2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 45, 44, 42, 44, 44, 44, 57, 55, 46, 41, 34, 36, 20, 0, 552 +NA,NA,"",2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 70, 69, 70, 67, 67, 56, 0, 399 +NA,NA,"",2023-24,Pittsfield - Allendale,02360010, 14, 36, 52, 26, 38, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Pittsfield - Crosby,02360065, 23, 50, 37, 30, 43, 29, 35, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Pittsfield - Crosby Educational Academy,02360030, 0, 0, 1, 5, 4, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 21 +NA,NA,"",2023-24,Pittsfield - Eagle Education Academy,02360525, 0, 0, 0, 0, 0, 0, 0, 7, 4, 3, 9, 5, 1, 1, 0, 30 +NA,NA,"",2023-24,Pittsfield - Egremont,02360035, 23, 60, 53, 79, 45, 61, 65, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 153, 157, 132, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Pittsfield - Morningside Community School,02360055, 26, 57, 64, 54, 51, 54, 56, 0, 0, 0, 0, 0, 0, 0, 0, 362 +NA,NA,"",2023-24,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 165, 178, 185, 13, 724 +NA,NA,"",2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 13, 33, 35, 33, 24, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 188 +NA,NA,"",2023-24,Pittsfield - Silvio O Conte Community,02360105, 27, 46, 64, 49, 55, 48, 59, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Pittsfield - Stearns,02360090, 16, 22, 41, 30, 28, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 210 +NA,NA,"",2023-24,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 234, 212, 195, 0, 875 +NA,NA,"",2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 209, 165, 157, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Pittsfield - Williams,02360100, 14, 47, 38, 40, 42, 46, 34, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Plainville - Anna Ware Jackson,02380010, 51, 96, 85, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 63, 86, 82, 83, 0, 0, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Plymouth - Cold Spring,02390005, 0, 40, 33, 32, 39, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 220 +NA,NA,"",2023-24,Plymouth - Federal Furnace School,02390011, 0, 51, 66, 73, 66, 63, 64, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Plymouth - Hedge,02390010, 0, 37, 43, 37, 32, 31, 38, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Plymouth - Indian Brook,02390012, 0, 84, 84, 80, 97, 88, 110, 0, 0, 0, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Plymouth - Manomet Elementary,02390015, 0, 53, 42, 44, 37, 54, 43, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0, 79, 79, 84, 89, 91, 80, 0, 0, 0, 0, 0, 0, 0, 0, 502 +NA,NA,"",2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 305, 304, 262, 0, 0, 0, 0, 0, 871 +NA,NA,"",2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 +NA,NA,"",2023-24,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 289, 339, 302, 0," 1,247" +NA,NA,"",2023-24,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 258, 246, 253, 0," 1,003" +NA,NA,"",2023-24,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 199, 191, 215, 0, 0, 0, 0, 0, 605 +NA,NA,"",2023-24,Plymouth - South Elementary,02390046, 0, 96, 98, 130, 96, 108, 100, 0, 0, 0, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Plymouth - West Elementary,02390047, 0, 71, 47, 72, 54, 60, 39, 0, 0, 0, 0, 0, 0, 0, 0, 343 +NA,NA,"",2023-24,Plympton - Dennett Elementary,02400010, 0, 34, 36, 47, 34, 44, 29, 29, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 33, 61, 61, 65, 57, 80, 78, 72, 80, 69, 65, 71, 64, 61, 0, 917 +NA,NA,"",2023-24,Provincetown - Provincetown Schools,02420020, 21, 18, 11, 14, 9, 13, 13, 18, 7, 13, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Quabbin - Hardwick Elementary,07530005, 14, 30, 26, 36, 22, 36, 25, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Quabbin - Hubbardston Center,07530010, 35, 48, 48, 37, 53, 50, 42, 0, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Quabbin - New Braintree Grade,07530020, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 35 +NA,NA,"",2023-24,Quabbin - Oakham Center,07530025, 0, 23, 20, 23, 33, 24, 33, 0, 0, 0, 0, 0, 0, 0, 0, 156 +NA,NA,"",2023-24,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 140, 116, 121, 0, 567 +NA,NA,"",2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 184, 165, 178, 0, 0, 0, 0, 0, 527 +NA,NA,"",2023-24,Quabbin - Ruggles Lane,07530030, 47, 51, 50, 64, 55, 66, 48, 0, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 87, 80, 82, 0, 344 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 79, 91, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Quaboag Regional - Warren Elementary,07780005, 0, 30, 35, 61, 43, 47, 41, 50, 0, 0, 0, 0, 0, 0, 0, 307 +NA,NA,"",2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0, 29, 31, 34, 33, 42, 29, 46, 0, 0, 0, 0, 0, 0, 0, 244 +NA,NA,"",2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Quincy - Atherton Hough,02430040, 0, 39, 41, 31, 50, 47, 40, 0, 0, 0, 0, 0, 0, 0, 0, 248 +NA,NA,"",2023-24,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 183, 199, 178, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0, 65, 53, 54, 53, 60, 54, 0, 0, 0, 0, 0, 0, 0, 0, 339 +NA,NA,"",2023-24,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 105, 103, 110, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 240, 209, 221, 0, 0, 0, 0, 0, 670 +NA,NA,"",2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0, 54, 62, 52, 56, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0, 94, 112, 111, 108, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 529 +NA,NA,"",2023-24,Quincy - Francis W Parker,02430075, 0, 53, 49, 57, 66, 44, 67, 0, 0, 0, 0, 0, 0, 0, 0, 336 +NA,NA,"",2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0, 108, 108, 120, 128, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567 +NA,NA,"",2023-24,Quincy - Merrymount,02430060, 0, 54, 51, 54, 45, 48, 67, 0, 0, 0, 0, 0, 0, 0, 0, 319 +NA,NA,"",2023-24,Quincy - Montclair,02430065, 0, 48, 76, 57, 77, 69, 82, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 372, 361, 366, 29," 1,508" +NA,NA,"",2023-24,Quincy - Point Webster Middle,02430325, 55, 0, 0, 0, 0, 0, 102, 85, 90, 76, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 376, 392, 359, 0," 1,473" +NA,NA,"",2023-24,Quincy - Snug Harbor Community School,02430090, 89, 55, 45, 50, 50, 62, 38, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 92, 112, 124, 115, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Quincy - Squantum,02430095, 0, 54, 69, 57, 51, 65, 64, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Quincy - Wollaston School,02430110, 0, 47, 50, 54, 56, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 315 +NA,NA,"",2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 92, 97, 78, 76, 55, 0, 504 +NA,NA,"",2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 44, 36, 47, 41, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Randolph - J F Kennedy Elementary,02440018, 128, 61, 64, 67, 47, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Randolph - Margaret L Donovan,02440015, 0, 61, 66, 68, 58, 84, 71, 0, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Randolph - Martin E Young Elementary,02440040, 0, 40, 44, 53, 46, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 226, 184, 192, 0, 0, 0, 0, 0, 602 +NA,NA,"",2023-24,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 185, 158, 136, 2, 664 +NA,NA,"",2023-24,Reading - Alice M Barrows,02460002, 0, 58, 54, 60, 56, 65, 63, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 123, 146, 134, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Reading - Birch Meadow,02460005, 0, 65, 63, 53, 52, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Reading - J Warren Killam,02460017, 0, 76, 63, 76, 54, 79, 73, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Reading - Joshua Eaton,02460010, 0, 59, 65, 65, 62, 73, 68, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 260, 256, 291, 0," 1,097" +NA,NA,"",2023-24,Reading - RISE PreSchool,02460001, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 +NA,NA,"",2023-24,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 161, 126, 164, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Reading - Wood End Elementary School,02460020, 0, 43, 35, 44, 31, 49, 47, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Revere - A. C. Whelan Elementary School,02480003, 0, 76, 112, 106, 132, 121, 137, 0, 0, 0, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Revere - Abraham Lincoln,02480025, 56, 79, 96, 93, 90, 88, 102, 0, 0, 0, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Revere - Beachmont Veterans Memorial School,02480013, 30, 52, 61, 48, 45, 52, 39, 0, 0, 0, 0, 0, 0, 0, 0, 327 +NA,NA,"",2023-24,Revere - CityLab Innovation High School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 39, 10, 18, 0, 109 +NA,NA,"",2023-24,Revere - Garfield Elementary School,02480056, 48, 102, 110, 106, 101, 104, 119, 0, 0, 0, 0, 0, 0, 0, 0, 690 +NA,NA,"",2023-24,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 187, 186, 193, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Revere - Paul Revere,02480050, 0, 80, 81, 84, 82, 78, 62, 0, 0, 0, 0, 0, 0, 0, 0, 467 +NA,NA,"",2023-24,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 554, 544, 576, 409, 15," 2,098" +NA,NA,"",2023-24,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 193, 189, 197, 0, 0, 0, 0, 0, 579 +NA,NA,"",2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 97, 98, 113, 112, 118, 114, 0, 0, 0, 0, 0, 0, 0, 0, 652 +NA,NA,"",2023-24,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 188, 186, 194, 0, 0, 0, 0, 0, 568 +NA,NA,"",2023-24,Richmond - Richmond Consolidated,02490005, 15, 14, 13, 18, 18, 15, 19, 17, 12, 17, 0, 0, 0, 0, 0, 158 +NA,NA,"",2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 90, 94, 95, 96, 69, 70, 61, 48, 0, 623 +NA,NA,"",2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 31, 33, 33, 33, 32, 30, 32, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Rochester - Rochester Memorial,02500005, 19, 62, 57, 62, 61, 70, 74, 89, 0, 0, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 172, 146, 185, 194, 0, 0, 0, 0, 0, 697 +NA,NA,"",2023-24,Rockland - Phelps Elementary School,02510060, 0, 0, 155, 162, 150, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 640 +NA,NA,"",2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 66, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Rockland - Rockland Senior High,02510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 158, 119, 122, 6, 577 +NA,NA,"",2023-24,Rockport - Rockport Elementary,02520005, 21, 37, 38, 42, 47, 36, 51, 0, 0, 0, 0, 0, 0, 0, 0, 272 +NA,NA,"",2023-24,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 50, 42, 66, 0, 226 +NA,NA,"",2023-24,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 56, 54, 63, 0, 0, 0, 0, 0, 173 +NA,NA,"",2023-24,Rowe - Rowe Elementary,02530005, 8, 5, 7, 5, 8, 13, 8, 7, 0, 0, 0, 0, 0, 0, 0, 61 +NA,NA,"",2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 73, 141, 182, 212, 192, 126, 113, 99, 0," 1,138" +NA,NA,"",2023-24,Salem - Bates,02580003, 35, 63, 59, 64, 57, 68, 51, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Salem - Bentley Academy Innovation School,02580010, 0, 49, 40, 41, 52, 46, 42, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Salem - Carlton,02580015, 0, 42, 44, 40, 42, 48, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 197, 214, 214, 0, 0, 0, 0, 0, 625 +NA,NA,"",2023-24,Salem - Horace Mann Laboratory,02580030, 31, 43, 41, 45, 41, 46, 60, 0, 0, 0, 0, 0, 0, 0, 0, 307 +NA,NA,"",2023-24,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 11, 22, 0, 45 +NA,NA,"",2023-24,Salem - Salem Early Childhood,02580001, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112 +NA,NA,"",2023-24,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 240, 208, 215, 8, 948 +NA,NA,"",2023-24,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 8, 1, 0, 17 +NA,NA,"",2023-24,Salem - Saltonstall School,02580050, 0, 39, 41, 39, 45, 47, 48, 42, 43, 46, 0, 0, 0, 0, 0, 390 +NA,NA,"",2023-24,Salem - Witchcraft Heights,02580070, 0, 71, 74, 81, 70, 84, 66, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 72, 75, 72, 79, 56, 69, 65, 0, 488 +NA,NA,"",2023-24,Sandwich - Forestdale School,02610002, 88, 144, 162, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 174, 151, 185, 164, 0, 0, 0, 0, 0, 0, 0, 674 +NA,NA,"",2023-24,Sandwich - Sandwich Middle High School,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 179, 191, 117, 143, 143, 137, 2, 912 +NA,NA,"",2023-24,Saugus - Belmonte STEAM Academy,02620060, 0, 0, 0, 199, 203, 197, 201, 0, 0, 0, 0, 0, 0, 0, 0, 800 +NA,NA,"",2023-24,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 179, 193, 177, 3, 727 +NA,NA,"",2023-24,Saugus - Saugus Middle School,02620305, 0, 0, 0, 0, 0, 0, 0, 206, 198, 213, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Saugus - Veterans Early Learning Center,02620065, 91, 172, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Savoy - Emma L Miller Elementary School,02630010, 8, 5, 8, 2, 5, 6, 6, 7, 0, 0, 0, 0, 0, 0, 0, 47 +NA,NA,"",2023-24,Scituate - Cushing Elementary,02640007, 0, 59, 71, 60, 52, 66, 59, 0, 0, 0, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 220, 190, 204, 0, 0, 0, 0, 0, 614 +NA,NA,"",2023-24,Scituate - Hatherly Elementary,02640010, 0, 45, 43, 34, 36, 42, 50, 0, 0, 0, 0, 0, 0, 0, 0, 250 +NA,NA,"",2023-24,Scituate - Jenkins Elementary School,02640015, 0, 48, 58, 49, 59, 63, 58, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 158, 201, 209, 1, 749 +NA,NA,"",2023-24,Scituate - Wampatuck Elementary,02640020, 79, 43, 67, 61, 56, 60, 64, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 175, 178, 161, 0, 0, 0, 0, 0, 514 +NA,NA,"",2023-24,Seekonk - George R Martin,02650007, 0, 77, 71, 68, 71, 87, 72, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Seekonk - Mildred Aitken School,02650015, 47, 70, 86, 95, 104, 82, 91, 0, 0, 0, 0, 0, 0, 0, 0, 575 +NA,NA,"",2023-24,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 112, 149, 129, 0, 520 +NA,NA,"",2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 +NA,NA,"",2023-24,Sharon - Cottage Street,02660005, 0, 62, 84, 61, 76, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 439 +NA,NA,"",2023-24,Sharon - East Elementary,02660010, 0, 58, 74, 74, 84, 83, 112, 0, 0, 0, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Sharon - Heights Elementary,02660015, 0, 73, 88, 86, 89, 108, 98, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Sharon - Sharon Early Childhood Center,02660001, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 +NA,NA,"",2023-24,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 293, 277, 272, 0," 1,132" +NA,NA,"",2023-24,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 257, 271, 279, 0, 0, 0, 0, 0, 807 +NA,NA,"",2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 325, 333, 327, 0," 1,306" +NA,NA,"",2023-24,Sherborn - Pine Hill,02690010, 12, 50, 64, 70, 65, 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0, 53, 59, 60, 50, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Shrewsbury - Floral Street School,02710020, 0, 95, 103, 110, 111, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0, 117, 128, 113, 122, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 608 +NA,NA,"",2023-24,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 482, 459, 0, 0, 0, 0, 0, 941 +NA,NA,"",2023-24,Shrewsbury - Parker Road Preschool,02710040, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 +NA,NA,"",2023-24,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 467, 450, 0, 0, 0, 0, 0, 0, 0, 917 +NA,NA,"",2023-24,Shrewsbury - Shrewsbury High School,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485, 507, 438, 432, 17," 1,879" +NA,NA,"",2023-24,Shrewsbury - Spring Street School,02710035, 0, 50, 50, 56, 56, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Shrewsbury - Walter J. Paton School,02710025, 0, 43, 51, 59, 49, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Shutesbury - Shutesbury Elementary,02720005, 15, 14, 11, 14, 11, 17, 15, 14, 0, 0, 0, 0, 0, 0, 0, 111 +NA,NA,"",2023-24,Silver Lake - Silver Lake Regional High,07600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 265, 261, 235, 11," 1,026" +NA,NA,"",2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 281, 282, 0, 0, 0, 0, 0, 563 +NA,NA,"",2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 51, 66, 49, 49, 42, 45, 0, 302 +NA,NA,"",2023-24,Somerset - Chace Street,02730005, 0, 40, 46, 47, 51, 49, 72, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Somerset - North Elementary,02730008, 76, 59, 63, 66, 64, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 184, 217, 165, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Somerset - South,02730015, 0, 38, 37, 51, 42, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 259, 225, 245, 10, 960 +NA,NA,"",2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 65, 66, 68, 78, 62, 59, 44, 49, 55, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Somerville - Arthur D Healey,02740075, 29, 34, 44, 56, 58, 57, 67, 44, 52, 45, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Somerville - Benjamin G Brown,02740015, 0, 45, 37, 44, 31, 38, 30, 0, 0, 0, 0, 0, 0, 0, 0, 225 +NA,NA,"",2023-24,Somerville - Capuano Early Childhood Center,02740005, 189, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Somerville - E Somerville Community,02740111, 18, 65, 62, 91, 88, 89, 90, 81, 78, 81, 0, 0, 0, 0, 0, 743 +NA,NA,"",2023-24,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 14, 19, 9, 1, 64 +NA,NA,"",2023-24,Somerville - John F Kennedy,02740083, 18, 48, 47, 44, 41, 51, 39, 50, 52, 58, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0, 0, 13 +NA,NA,"",2023-24,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 343, 356, 315, 10," 1,373" +NA,NA,"",2023-24,Somerville - West Somerville Neighborhood,02740115, 18, 43, 39, 41, 39, 43, 33, 39, 43, 40, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Somerville - Winter Hill Community,02740120, 18, 30, 48, 42, 49, 45, 32, 35, 50, 54, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 142, 128, 127, 114, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,South Hadley - Mosier,02780020, 0, 0, 0, 144, 103, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,South Hadley - Plains Elementary,02780015, 50, 106, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 110, 135, 128, 2, 508 +NA,NA,"",2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 232, 208, 199, 0, 871 +NA,NA,"",2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 76, 83, 84, 82, 83, 85, 79, 79, 84, 89, 84, 78, 69, 0," 1,055" +NA,NA,"",2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 170, 164, 157, 0, 667 +NA,NA,"",2023-24,Southampton - William E Norris,02750005, 50, 62, 62, 67, 58, 59, 60, 53, 0, 0, 0, 0, 0, 0, 0, 471 +NA,NA,"",2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 122, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 154, 131, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Southborough - Mary E Finn School,02760008, 107, 109, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 141, 130, 136, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Southbridge - Charlton Street,02770005, 10, 6, 3, 68, 72, 68, 56, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Southbridge - Eastford Road,02770010, 41, 165, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 8, 7, 9, 1, 0, 36 +NA,NA,"",2023-24,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 121, 113, 109, 0, 465 +NA,NA,"",2023-24,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 145, 142, 141, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Southbridge - West Street,02770020, 0, 0, 3, 80, 85, 94, 66, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 404, 397, 379, 0," 1,597" +NA,NA,"",2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 30, 46, 48, 42, 41, 42, 32, 0, 281 +NA,NA,"",2023-24,Southern Berkshire - New Marlborough Central,07650018, 19, 7, 11, 19, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65 +NA,NA,"",2023-24,Southern Berkshire - South Egremont,07650030, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11 +NA,NA,"",2023-24,Southern Berkshire - Undermountain,07650035, 33, 32, 25, 42, 41, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 304, 299, 280, 0," 1,193" +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 87, 98, 102, 94, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 110, 116, 93, 107, 91, 96, 1, 614 +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 43, 85, 99, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 106, 72, 68, 3, 331 +NA,NA,"",2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 106, 27, 19, 22, 16, 22, 14, 21, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 86, 97, 116, 90, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0, 89, 79, 97, 85, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 66, 48, 41, 39, 43, 46, 49, 37, 33, 23, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Springfield - Alice B Beal Elementary,02810175, 33, 42, 48, 46, 44, 40, 51, 0, 0, 0, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Springfield - Arthur T Talmadge,02810165, 20, 28, 44, 25, 34, 39, 34, 0, 0, 0, 0, 0, 0, 0, 0, 224 +NA,NA,"",2023-24,Springfield - Balliet Preschool,02810003, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 +NA,NA,"",2023-24,Springfield - Benjamin Swan Elementary,02810085, 49, 79, 80, 73, 81, 71, 66, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Springfield - Brightwood,02810025, 52, 72, 58, 79, 72, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 91, 85, 78, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 54, 45, 39, 35, 47, 40, 43, 0, 303 +NA,NA,"",2023-24,Springfield - Daniel B Brunton,02810035, 52, 49, 52, 35, 31, 41, 35, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Springfield - Early Childhood Education Center,02810001, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 +NA,NA,"",2023-24,Springfield - Edward P. Boland School,02810010, 103, 85, 77, 74, 86, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 554 +NA,NA,"",2023-24,Springfield - Elias Brookings,02810030, 38, 46, 33, 50, 37, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Springfield - Emergence Academy,02810318, 0, 0, 0, 0, 0, 0, 0, 41, 48, 47, 41, 54, 0, 0, 0, 231 +NA,NA,"",2023-24,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 86, 82, 116, 0, 0, 0, 0, 0, 284 +NA,NA,"",2023-24,Springfield - Frank H Freedman,02810075, 38, 46, 35, 36, 39, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Springfield - Frederick Harris,02810080, 68, 60, 77, 78, 74, 73, 82, 0, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 14, 0, 28 +NA,NA,"",2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 11, 0, 25 +NA,NA,"",2023-24,Springfield - German Gerena Community School,02810195, 73, 95, 98, 87, 87, 93, 90, 0, 0, 0, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,Springfield - Glenwood,02810065, 20, 46, 49, 55, 36, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Springfield - Glickman Elementary,02810068, 34, 44, 34, 50, 43, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 315 +NA,NA,"",2023-24,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 258, 320, 235, 0," 1,060" +NA,NA,"",2023-24,Springfield - Hiram L Dorman,02810050, 31, 41, 42, 44, 34, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 71, 64, 67, 0, 0, 0, 0, 0, 202 +NA,NA,"",2023-24,Springfield - Indian Orchard Elementary,02810100, 82, 84, 103, 82, 65, 85, 64, 0, 0, 0, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 117, 115, 135, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Springfield - John J Duggan Academy,02810320, 0, 0, 0, 0, 0, 0, 0, 186, 179, 172, 78, 76, 75, 65, 0, 831 +NA,NA,"",2023-24,Springfield - Kensington International School,02810110, 34, 34, 39, 47, 28, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Springfield - Kiley Academy,02810316, 0, 0, 0, 0, 0, 0, 0, 81, 98, 108, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Springfield - Kiley Prep,02810315, 0, 0, 0, 0, 0, 0, 0, 85, 94, 84, 0, 0, 0, 0, 0, 263 +NA,NA,"",2023-24,Springfield - Liberty,02810115, 31, 34, 26, 33, 38, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 246 +NA,NA,"",2023-24,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 7 +NA,NA,"",2023-24,Springfield - Lincoln,02810120, 62, 62, 54, 67, 78, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 454 +NA,NA,"",2023-24,Springfield - Margaret C Ells,02810060, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138 +NA,NA,"",2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 32, 42, 51, 43, 36, 46, 40, 0, 0, 0, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Springfield - Mary M Lynch,02810140, 20, 31, 45, 29, 36, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Springfield - Mary M Walsh,02810155, 24, 33, 36, 40, 29, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Springfield - Mary O Pottenger,02810145, 48, 50, 48, 58, 46, 58, 58, 0, 0, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Springfield - Milton Bradley School,02810023, 57, 44, 57, 53, 54, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Springfield - Rebecca M Johnson,02810055, 67, 87, 92, 86, 86, 82, 95, 0, 0, 0, 0, 0, 0, 0, 0, 595 +NA,NA,"",2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 56, 77, 83, 0, 0, 0, 0, 0, 216 +NA,NA,"",2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 361, 341, 311, 0," 1,383" +NA,NA,"",2023-24,Springfield - Samuel Bowles,02810020, 39, 59, 33, 28, 47, 53, 51, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 66, 61, 62, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 635, 512, 360, 535, 0," 2,042" +NA,NA,"",2023-24,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 32, 43, 96, 0, 221 +NA,NA,"",2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333, 333, 240, 191, 0," 1,097" +NA,NA,"",2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 7, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 32 +NA,NA,"",2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 23, 1, 0, 72 +NA,NA,"",2023-24,Springfield - Springfield Legacy Academy,02810317, 0, 0, 0, 0, 0, 0, 0, 123, 111, 121, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Springfield - Springfield Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 3, 9, 0, 0, 0, 0, 0, 14 +NA,NA,"",2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0, 2, 1, 3, 10, 9, 12, 0, 0, 0, 0, 0, 0, 0, 0, 37 +NA,NA,"",2023-24,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 16, 16, 6, 0, 78 +NA,NA,"",2023-24,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 19, 21, 21, 0, 0, 0, 0, 0, 61 +NA,NA,"",2023-24,Springfield - Springfield Realization Academy,02810335, 0, 0, 0, 0, 0, 0, 0, 69, 65, 65, 0, 0, 0, 0, 0, 199 +NA,NA,"",2023-24,Springfield - Springfield Transition Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 115 +NA,NA,"",2023-24,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 91, 96, 100, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Springfield - Sumner Avenue,02810160, 62, 73, 58, 70, 62, 75, 88, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 98, 94, 92, 87, 88, 88, 62, 0, 609 +NA,NA,"",2023-24,Springfield - The Springfield Virtual School,02810705, 0, 0, 0, 8, 11, 26, 26, 29, 32, 35, 57, 30, 29, 21, 0, 304 +NA,NA,"",2023-24,Springfield - Thomas M Balliet,02810015, 38, 37, 41, 47, 47, 35, 33, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 86, 85, 81, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Springfield - Warner,02810180, 45, 33, 34, 26, 36, 33, 31, 0, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Springfield - Washington,02810185, 72, 42, 71, 69, 41, 59, 43, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Springfield - White Street,02810190, 19, 51, 66, 64, 61, 71, 60, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Springfield - William N. DeBerry,02810045, 48, 68, 50, 78, 66, 56, 58, 0, 0, 0, 0, 0, 0, 0, 0, 424 +NA,NA,"",2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0, 90, 104, 107, 120, 117, 114, 141, 122, 126, 140, 97, 107, 92, 1," 1,478" +NA,NA,"",2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 54, 54, 56, 54, 54, 53, 55, 53, 0, 0, 0, 0, 0, 487 +NA,NA,"",2023-24,Stoneham - Colonial Park,02840005, 32, 48, 41, 44, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Stoneham - Robin Hood,02840025, 23, 85, 74, 70, 71, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 +NA,NA,"",2023-24,Stoneham - South,02840030, 31, 67, 71, 65, 69, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 178, 156, 186, 180, 0, 0, 0, 0, 0, 700 +NA,NA,"",2023-24,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 161, 142, 150, 3, 585 +NA,NA,"",2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 +NA,NA,"",2023-24,Stoughton - Helen Hansen Elementary,02850010, 0, 35, 43, 53, 37, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Stoughton - Joseph H Gibbons,02850025, 0, 63, 63, 63, 60, 61, 66, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 69, 70, 79, 52, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 254, 274, 305, 0, 0, 0, 0, 0, 833 +NA,NA,"",2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 14, 57, 76, 62, 39, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Stoughton - South Elementary,02850015, 0, 47, 55, 44, 49, 55, 43, 0, 0, 0, 0, 0, 0, 0, 0, 293 +NA,NA,"",2023-24,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 247, 299, 265, 3," 1,097" +NA,NA,"",2023-24,Sturbridge - Burgess Elementary,02870005, 66, 119, 115, 124, 110, 137, 109, 122, 0, 0, 0, 0, 0, 0, 0, 902 +NA,NA,"",2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 215, 209, 185, 0, 826 +NA,NA,"",2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 272, 268, 288, 0, 0, 0, 0, 0, 828 +NA,NA,"",2023-24,Sudbury - General John Nixon Elementary,02880025, 0, 51, 60, 55, 49, 73, 46, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Sudbury - Israel Loring School,02880015, 0, 60, 75, 78, 60, 74, 70, 0, 0, 0, 0, 0, 0, 0, 0, 417 +NA,NA,"",2023-24,Sudbury - Josiah Haynes,02880010, 0, 76, 61, 67, 49, 73, 63, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Sudbury - Peter Noyes,02880030, 72, 69, 89, 73, 86, 92, 90, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Sunderland - Sunderland Elementary,02890005, 27, 18, 25, 21, 14, 24, 25, 29, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Sutton - Sutton Early Learning,02900003, 45, 101, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 +NA,NA,"",2023-24,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 94, 97, 122, 0, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 94, 95, 95, 0, 363 +NA,NA,"",2023-24,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 102, 90, 103, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Swampscott - Clarke,02910005, 0, 38, 44, 44, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 +NA,NA,"",2023-24,Swampscott - Hadley,02910010, 0, 93, 80, 64, 60, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Swampscott - Stanley,02910020, 0, 0, 40, 43, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 +NA,NA,"",2023-24,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 174, 164, 158, 4, 666 +NA,NA,"",2023-24,Swampscott - Swampscott Middle,02910305, 60, 0, 0, 0, 0, 0, 141, 143, 155, 188, 0, 0, 0, 0, 0, 687 +NA,NA,"",2023-24,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 81, 107, 86, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Swansea - Gardner,02920015, 0, 89, 86, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 137, 122, 162, 5, 574 +NA,NA,"",2023-24,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 172, 174, 149, 0, 0, 0, 0, 0, 495 +NA,NA,"",2023-24,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 61, 56, 62, 0, 0, 0, 0, 0, 0, 0, 0, 179 +NA,NA,"",2023-24,Swansea - Mark G Hoyle Elementary,02920017, 56, 63, 64, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 289, 271, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 170, 165, 168, 11, 663 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 138, 131, 110, 0, 536 +NA,NA,"",2023-24,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 209, 238, 245, 0, 0, 0, 0, 0, 0, 692 +NA,NA,"",2023-24,Taunton - East Taunton Elementary,02930010, 19, 89, 117, 112, 98, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536 +NA,NA,"",2023-24,Taunton - Edmund Hatch Bennett,02930007, 0, 70, 56, 46, 59, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Taunton - Edward F. Leddy Preschool,02930005, 261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Taunton - Elizabeth Pole,02930027, 0, 112, 115, 136, 127, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602 +NA,NA,"",2023-24,Taunton - H H Galligan,02930057, 0, 68, 62, 52, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 58, 163, 162, 180, 151, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 882 +NA,NA,"",2023-24,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 163, 174, 173, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Taunton - Joseph C Chamberlain,02930008, 19, 109, 84, 92, 83, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 199, 229, 220, 0, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 80, 0, 85 +NA,NA,"",2023-24,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637, 530, 530, 517, 461, 15," 2,690" +NA,NA,"",2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 11, 17, 6, 0, 47 +NA,NA,"",2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 49, 69, 93, 84, 101, 139, 166, 217, 286, 450, 440, 390, 423, 0," 2,907" +NA,NA,"",2023-24,Tewksbury - Center Elementary School,02950030, 0, 0, 0, 241, 261, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 767 +NA,NA,"",2023-24,Tewksbury - Heath-Brook,02950010, 57, 113, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 249, 248, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 279, 241, 0, 0, 0, 0, 0, 520 +NA,NA,"",2023-24,Tewksbury - L F Dewing,02950001, 89, 141, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 184, 172, 191, 4, 719 +NA,NA,"",2023-24,Tisbury - Tisbury Elementary,02960005, 7, 30, 32, 35, 39, 29, 32, 20, 26, 21, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 86, 83, 85, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Topsfield - Steward Elementary,02980010, 50, 63, 71, 89, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 +NA,NA,"",2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 258, 229, 222, 0, 964 +NA,NA,"",2023-24,Triton - Newbury Elementary,07730020, 53, 51, 62, 54, 58, 56, 52, 40, 0, 0, 0, 0, 0, 0, 0, 426 +NA,NA,"",2023-24,Triton - Pine Grove,07730025, 38, 60, 65, 72, 43, 62, 47, 60, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Triton - Salisbury Elementary,07730015, 39, 54, 44, 44, 39, 69, 58, 54, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 148, 159, 134, 1, 567 +NA,NA,"",2023-24,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 151, 163, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Truro - Truro Central,03000005, 22, 12, 9, 15, 10, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 57, 111, 106, 124, 113, 112, 130, 0, 0, 0, 0, 0, 0, 0, 0, 753 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 117, 98, 95, 0, 420 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 107, 145, 117, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 42, 62, 62, 0, 0, 0, 0, 0, 166 +NA,NA,"",2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 53, 58, 66, 61, 67, 65, 59, 61, 44, 44, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0, 10, 19, 12, 14, 8, 10, 0, 0, 0, 0, 0, 0, 0, 0, 73 +NA,NA,"",2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 14, 22, 31, 27, 36, 28, 41, 43, 38, 45, 0, 0, 0, 0, 0, 325 +NA,NA,"",2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 221, 192, 178, 0, 826 +NA,NA,"",2023-24,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 25, 0, 41 +NA,NA,"",2023-24,Uxbridge - Taft Early Learning Center,03040005, 82, 115, 105, 121, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533 +NA,NA,"",2023-24,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 121, 112, 113, 104, 0, 582 +NA,NA,"",2023-24,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 115, 112, 128, 121, 0, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 99, 105, 105, 109, 102, 95, 0, 0, 0, 615 +NA,NA,"",2023-24,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 115, 128, 137, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 68, 68, 60, 77, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Wachusett - Davis Hill Elementary,07750018, 0, 78, 73, 77, 87, 71, 89, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Wachusett - Dawson,07750020, 0, 71, 85, 94, 72, 77, 89, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Wachusett - Early Childhood Center,07750001, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 +NA,NA,"",2023-24,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 121, 111, 116, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Wachusett - Houghton Elementary,07750027, 0, 63, 61, 61, 60, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Wachusett - Leroy E.Mayo,07750032, 0, 72, 77, 77, 95, 73, 85, 0, 0, 0, 0, 0, 0, 0, 0, 479 +NA,NA,"",2023-24,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 235, 270, 246, 0, 0, 0, 0, 0, 751 +NA,NA,"",2023-24,Wachusett - Naquag Elementary School,07750005, 0, 122, 106, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Wachusett - Paxton Center,07750040, 0, 39, 57, 43, 48, 51, 50, 43, 56, 45, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Wachusett - Thomas Prince,07750045, 0, 41, 31, 38, 46, 44, 37, 37, 41, 38, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426, 447, 481, 485, 22," 1,861" +NA,NA,"",2023-24,Wakefield - Dolbeare,03050005, 0, 91, 80, 89, 94, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 +NA,NA,"",2023-24,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 252, 273, 269, 258, 0, 0, 0, 0, 0," 1,052" +NA,NA,"",2023-24,Wakefield - Greenwood,03050020, 0, 47, 42, 45, 48, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 215, 214, 194, 0, 840 +NA,NA,"",2023-24,Wakefield - Walton,03050040, 0, 42, 39, 45, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 +NA,NA,"",2023-24,Wakefield - Woodville School,03050015, 30, 91, 72, 79, 96, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 +NA,NA,"",2023-24,Wales - Wales Elementary,03060005, 7, 10, 16, 9, 11, 15, 11, 14, 0, 0, 0, 0, 0, 0, 0, 93 +NA,NA,"",2023-24,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 141, 131, 128, 0, 0, 0, 0, 0, 400 +NA,NA,"",2023-24,Walpole - Boyden,03070010, 0, 71, 78, 68, 59, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 405 +NA,NA,"",2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 143, 136, 136, 0, 0, 0, 0, 0, 415 +NA,NA,"",2023-24,Walpole - Elm Street School,03070005, 0, 68, 74, 81, 87, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Walpole - Fisher,03070015, 0, 76, 82, 62, 98, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Walpole - Old Post Road,03070018, 0, 73, 58, 84, 82, 94, 78, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 241, 238, 254, 6, 946 +NA,NA,"",2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0, 68, 80, 90, 93, 66, 78, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Waltham - Dual Language School,03080001, 0, 40, 39, 40, 36, 34, 29, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0, 75, 59, 62, 56, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0, 51, 63, 69, 57, 48, 66, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 209, 225, 194, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 210, 196, 198, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Waltham - Northeast Elementary School,03080040, 62, 65, 85, 73, 73, 82, 60, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0, 55, 65, 54, 49, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 499, 457, 430, 11," 1,816" +NA,NA,"",2023-24,Waltham - William F. Stanley Elementary School,03080005, 60, 54, 53, 53, 56, 52, 48, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Ware - Stanley M Koziol Elementary School,03090020, 72, 90, 72, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 77, 96, 77, 66, 83, 65, 7, 471 +NA,NA,"",2023-24,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 90, 94, 80, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 8, 7, 0, 30 +NA,NA,"",2023-24,Wareham - Wareham Elementary School,03100017, 79, 173, 180, 172, 163, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933 +NA,NA,"",2023-24,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 136, 150, 118, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 121, 118, 78, 90, 12, 583 +NA,NA,"",2023-24,Warwick - Warwick Community School,03120020, 0, 4, 2, 7, 6, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 27 +NA,NA,"",2023-24,Watertown - Cunniff,03140015, 0, 51, 44, 59, 52, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Watertown - Hosmer,03140020, 132, 102, 113, 104, 83, 89, 97, 0, 0, 0, 0, 0, 0, 0, 0, 720 +NA,NA,"",2023-24,Watertown - James Russell Lowell,03140025, 0, 77, 51, 69, 54, 68, 57, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 199, 210, 172, 4, 760 +NA,NA,"",2023-24,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 186, 184, 181, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Wayland - Claypit Hill School,03150005, 0, 84, 76, 85, 95, 74, 75, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Wayland - Happy Hollow School,03150015, 0, 52, 45, 60, 63, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Wayland - Loker School,03150020, 0, 59, 53, 64, 67, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 377 +NA,NA,"",2023-24,Wayland - The Children's Way Preschool,03150025, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 +NA,NA,"",2023-24,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 200, 216, 208, 0, 820 +NA,NA,"",2023-24,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 247, 216, 204, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 87, 96, 64, 6, 373 +NA,NA,"",2023-24,Webster - Park Avenue Elementary,03160015, 60, 116, 149, 127, 134, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734 +NA,NA,"",2023-24,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 142, 133, 165, 152, 0, 0, 0, 0, 0, 592 +NA,NA,"",2023-24,Wellesley - Ernest F Upham,03170050, 0, 21, 20, 30, 24, 22, 24, 0, 0, 0, 0, 0, 0, 0, 0, 141 +NA,NA,"",2023-24,Wellesley - Hunnewell,03170025, 0, 29, 27, 32, 38, 33, 41, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Wellesley - John D Hardy,03170020, 0, 37, 38, 40, 37, 37, 36, 0, 0, 0, 0, 0, 0, 0, 0, 225 +NA,NA,"",2023-24,Wellesley - Joseph E Fiske,03170015, 0, 57, 48, 57, 43, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Wellesley - Katharine Lee Bates,03170005, 0, 38, 42, 53, 37, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 +NA,NA,"",2023-24,Wellesley - Schofield,03170045, 0, 32, 50, 56, 59, 57, 45, 0, 0, 0, 0, 0, 0, 0, 0, 299 +NA,NA,"",2023-24,Wellesley - Sprague Elementary School,03170048, 0, 55, 43, 43, 39, 54, 59, 0, 0, 0, 0, 0, 0, 0, 0, 293 +NA,NA,"",2023-24,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 313, 301, 305, 0, 0, 0, 0, 0, 919 +NA,NA,"",2023-24,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 345, 327, 356, 9," 1,358" +NA,NA,"",2023-24,Wellfleet - Wellfleet Elementary,03180005, 0, 7, 15, 20, 17, 14, 18, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,West Boylston - Major Edwards Elementary,03220005, 39, 66, 67, 78, 58, 76, 71, 0, 0, 0, 0, 0, 0, 0, 0, 455 +NA,NA,"",2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 75, 62, 80, 60, 65, 47, 58, 1, 448 +NA,NA,"",2023-24,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 99, 112, 98, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 105, 101, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,West Bridgewater - Spring Street School,03230005, 49, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 111, 111, 94, 105, 96, 102, 0, 619 +NA,NA,"",2023-24,West Springfield - John Ashley,03320005, 47, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,West Springfield - John R Fausey,03320010, 0, 0, 92, 83, 90, 92, 88, 0, 0, 0, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,West Springfield - Memorial,03320025, 0, 1, 35, 40, 54, 38, 40, 0, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,West Springfield - Mittineague,03320030, 0, 0, 23, 24, 24, 30, 39, 0, 0, 0, 0, 0, 0, 0, 0, 140 +NA,NA,"",2023-24,West Springfield - Philip G Coburn,03320007, 78, 87, 79, 88, 84, 89, 68, 0, 0, 0, 0, 0, 0, 0, 0, 573 +NA,NA,"",2023-24,West Springfield - Tatham,03320040, 0, 0, 58, 38, 55, 50, 61, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 300, 286, 268, 19," 1,208" +NA,NA,"",2023-24,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 290, 318, 318, 0, 0, 0, 0, 0, 926 +NA,NA,"",2023-24,Westborough - Annie E Fales,03210010, 0, 79, 77, 90, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 +NA,NA,"",2023-24,Westborough - Elsie A Hastings Elementary,03210025, 138, 95, 74, 88, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Westborough - J Harding Armstrong,03210005, 0, 88, 100, 111, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 297, 277, 302, 0, 0, 0, 0, 0, 0, 0, 876 +NA,NA,"",2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 299, 302, 0, 0, 0, 0, 0, 601 +NA,NA,"",2023-24,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 297, 336, 287, 10," 1,202" +NA,NA,"",2023-24,Westfield - Abner Gibbs,03250020, 0, 36, 30, 41, 35, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185 +NA,NA,"",2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 +NA,NA,"",2023-24,Westfield - Franklin Ave,03250015, 0, 30, 28, 33, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 +NA,NA,"",2023-24,Westfield - Highland,03250025, 15, 61, 63, 66, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Westfield - Munger Hill,03250033, 15, 52, 55, 60, 73, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Westfield - Paper Mill,03250036, 0, 49, 81, 68, 55, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Westfield - Southampton Road,03250040, 28, 50, 52, 62, 55, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 255, 256, 257, 12," 1,006" +NA,NA,"",2023-24,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 360, 324, 0, 0, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 346, 360, 0, 0, 0, 0, 0, 706 +NA,NA,"",2023-24,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 139, 142, 122, 0, 548 +NA,NA,"",2023-24,Westfield - Westfield Virtual School,03250705, 0, 0, 0, 0, 0, 0, 0, 2, 6, 9, 6, 12, 12, 15, 0, 62 +NA,NA,"",2023-24,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 137, 117, 118, 0, 0, 0, 0, 0, 0, 0, 0, 372 +NA,NA,"",2023-24,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 176, 176, 183, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Westford - Col John Robinson,03260025, 19, 65, 113, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westford - Day Elementary,03260007, 0, 0, 0, 0, 86, 107, 103, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 106, 100, 124, 0, 0, 0, 0, 0, 0, 0, 0, 330 +NA,NA,"",2023-24,Westford - Nabnasset,03260015, 21, 78, 105, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westford - Rita E. Miller Elementary School,03260055, 30, 75, 82, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 183, 171, 232, 0, 0, 0, 0, 0, 586 +NA,NA,"",2023-24,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 340, 368, 377, 1," 1,444" +NA,NA,"",2023-24,Westhampton - Westhampton Elementary School,03270005, 15, 8, 16, 15, 11, 14, 14, 11, 0, 0, 0, 0, 0, 0, 0, 104 +NA,NA,"",2023-24,Weston - Country,03300010, 20, 53, 92, 79, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 150, 154, 0, 0, 0, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 164, 173, 159, 0, 662 +NA,NA,"",2023-24,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 125, 145, 158, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Weston - Woodland,03300015, 20, 58, 82, 79, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Westport - Alice A Macomber,03310015, 60, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 +NA,NA,"",2023-24,Westport - Westport Elementary,03310030, 0, 0, 113, 110, 112, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Westport - Westport Middle-High School,03310515, 0, 0, 0, 0, 0, 0, 122, 126, 126, 138, 107, 83, 90, 86, 2, 880 +NA,NA,"",2023-24,Westwood - Downey,03350012, 2, 50, 51, 52, 48, 44, 67, 0, 0, 0, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 229, 214, 218, 0, 0, 0, 0, 0, 661 +NA,NA,"",2023-24,Westwood - Martha Jones,03350017, 0, 55, 39, 43, 57, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Westwood - Pine Hill Elementary School,03350030, 0, 66, 72, 84, 77, 64, 58, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 200, 206, 242, 0, 874 +NA,NA,"",2023-24,Westwood - Westwood Integrated Preschool,03350050, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36 +NA,NA,"",2023-24,Westwood - William E Sheehan,03350025, 0, 54, 42, 47, 52, 45, 60, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Weymouth - Academy Avenue,03360005, 0, 53, 70, 55, 53, 60, 47, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Weymouth - Frederick C Murphy,03360050, 0, 46, 45, 47, 47, 52, 46, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Weymouth - Johnson Early Childhood Center,03360003, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Weymouth - Lawrence W Pingree,03360065, 0, 42, 43, 42, 46, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 0, 400, 398, 389, 0, 0, 0, 0, 0," 1,187" +NA,NA,"",2023-24,Weymouth - Ralph Talbot,03360085, 0, 72, 44, 44, 46, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Weymouth - Thomas V Nash,03360060, 0, 46, 45, 42, 44, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 70, 66, 62, 69, 36, 48, 0, 0, 0, 0, 0, 0, 0, 0, 351 +NA,NA,"",2023-24,Weymouth - Wessagusset,03360110, 0, 44, 47, 78, 64, 42, 53, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465, 422, 418, 432, 14," 1,751" +NA,NA,"",2023-24,Weymouth - William Seach,03360080, 0, 69, 70, 61, 61, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Whately - Whately Elementary,03370005, 14, 16, 20, 12, 17, 15, 17, 14, 0, 0, 0, 0, 0, 0, 0, 125 +NA,NA,"",2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 100, 119, 110, 95, 0, 0, 0, 0, 0, 424 +NA,NA,"",2023-24,Whitman-Hanson - Indian Head,07800035, 0, 99, 95, 106, 93, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 +NA,NA,"",2023-24,Whitman-Hanson - John H Duval,07800030, 0, 80, 57, 77, 69, 69, 83, 0, 0, 0, 0, 0, 0, 0, 0, 435 +NA,NA,"",2023-24,Whitman-Hanson - Louise A Conley,07800010, 0, 70, 78, 84, 69, 95, 79, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 +NA,NA,"",2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 266, 253, 269, 11," 1,039" +NA,NA,"",2023-24,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 159, 174, 174, 0, 0, 0, 0, 0, 507 +NA,NA,"",2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 320, 321, 313, 0," 1,279" +NA,NA,"",2023-24,Williamsburg - Anne T. Dunphy School,03400020, 9, 17, 14, 15, 11, 18, 20, 19, 0, 0, 0, 0, 0, 0, 0, 123 +NA,NA,"",2023-24,Wilmington - Boutwell,03420005, 46, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 +NA,NA,"",2023-24,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 141, 108, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Wilmington - Shawsheen Elementary,03420025, 0, 0, 109, 98, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 +NA,NA,"",2023-24,Wilmington - West Intermediate,03420080, 21, 44, 0, 0, 0, 100, 108, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 164, 145, 172, 0, 613 +NA,NA,"",2023-24,Wilmington - Wilmington Middle School,03420330, 21, 58, 0, 0, 0, 0, 0, 266, 205, 231, 0, 0, 0, 0, 0, 781 +NA,NA,"",2023-24,Wilmington - Woburn Street,03420020, 0, 0, 136, 122, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Winchendon - Memorial,03430040, 0, 79, 109, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 8, 0, 20 +NA,NA,"",2023-24,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 80, 61, 41, 5, 252 +NA,NA,"",2023-24,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 102, 99, 89, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 91, 94, 91, 0, 0, 0, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Winchendon - Winchendon PreSchool Program,03430010, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Winchester - Ambrose Elementary,03440045, 0, 70, 51, 76, 54, 73, 59, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Winchester - Lincoln Elementary,03440005, 0, 70, 52, 47, 58, 56, 66, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Winchester - Lynch Elementary,03440020, 60, 20, 54, 70, 65, 76, 80, 0, 0, 0, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 328, 349, 362, 0, 0, 0, 0, 0," 1,039" +NA,NA,"",2023-24,Winchester - Muraco Elementary,03440040, 0, 54, 55, 52, 45, 72, 60, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Winchester - Vinson-Owen Elementary,03440025, 12, 71, 53, 66, 58, 88, 77, 0, 0, 0, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 366, 319, 347, 5," 1,372" +NA,NA,"",2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 141, 157, 145, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 56, 139, 149, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Winthrop - Winthrop High School,03460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 149, 162, 135, 7, 595 +NA,NA,"",2023-24,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 137, 161, 125, 0, 0, 0, 0, 0, 423 +NA,NA,"",2023-24,Woburn - Clyde Reeves,03470040, 137, 49, 60, 43, 49, 47, 59, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 136, 153, 171, 0, 0, 0, 0, 0, 460 +NA,NA,"",2023-24,Woburn - Goodyear Elementary School,03470005, 0, 59, 67, 64, 48, 57, 58, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0, 76, 78, 71, 68, 69, 53, 0, 0, 0, 0, 0, 0, 0, 0, 415 +NA,NA,"",2023-24,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 172, 174, 165, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,Woburn - Linscott-Rumford,03470025, 0, 30, 43, 40, 31, 22, 30, 0, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Woburn - Malcolm White,03470055, 0, 53, 58, 54, 52, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Woburn - Mary D Altavesta,03470065, 0, 32, 38, 37, 34, 34, 29, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Woburn - Shamrock,03470043, 31, 40, 44, 36, 45, 45, 34, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 293, 338, 287, 12," 1,228" +NA,NA,"",2023-24,Worcester - Belmont Street Community,03480020, 46, 86, 77, 71, 67, 73, 96, 67, 0, 0, 0, 0, 0, 0, 0, 583 +NA,NA,"",2023-24,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 341, 343, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 265, 251, 303, 18," 1,124" +NA,NA,"",2023-24,Worcester - Burncoat Street,03480035, 0, 26, 32, 35, 35, 29, 32, 42, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Worcester - Canterbury,03480045, 41, 49, 63, 37, 25, 33, 39, 48, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Worcester - Chandler Elementary Community,03480050, 12, 58, 55, 54, 44, 56, 73, 59, 0, 0, 0, 0, 0, 0, 0, 411 +NA,NA,"",2023-24,Worcester - Chandler Magnet,03480052, 32, 78, 77, 85, 70, 71, 70, 65, 0, 0, 0, 0, 0, 0, 0, 548 +NA,NA,"",2023-24,Worcester - City View,03480053, 27, 72, 52, 61, 42, 45, 51, 83, 0, 0, 0, 0, 0, 0, 0, 433 +NA,NA,"",2023-24,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 90, 83, 77, 72, 83, 70, 3, 478 +NA,NA,"",2023-24,Worcester - Clark St Community,03480055, 24, 39, 30, 33, 31, 29, 37, 38, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Worcester - Columbus Park,03480060, 27, 46, 50, 46, 50, 65, 44, 47, 0, 0, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383, 370, 325, 313, 7," 1,398" +NA,NA,"",2023-24,Worcester - Elm Park Community,03480095, 36, 62, 55, 64, 53, 44, 70, 56, 0, 0, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Worcester - Flagg Street,03480090, 0, 63, 66, 66, 46, 59, 51, 36, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 411, 418, 0, 0, 0, 0, 0, 829 +NA,NA,"",2023-24,Worcester - Francis J McGrath Elementary,03480177, 11, 31, 33, 19, 19, 26, 39, 30, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Worcester - Gates Lane,03480110, 67, 83, 75, 77, 52, 69, 51, 73, 0, 0, 0, 0, 0, 0, 0, 547 +NA,NA,"",2023-24,Worcester - Goddard School/Science Technical,03480100, 24, 57, 47, 61, 36, 55, 45, 53, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Worcester - Grafton Street,03480115, 0, 53, 60, 71, 54, 57, 55, 48, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Worcester - Head Start,03480002, 376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Worcester - Heard Street,03480136, 0, 34, 45, 31, 39, 24, 37, 41, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Worcester - Jacob Hiatt Magnet,03480140, 57, 61, 64, 39, 38, 45, 40, 37, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Worcester - Lake View,03480145, 0, 37, 47, 53, 34, 40, 40, 35, 0, 0, 0, 0, 0, 0, 0, 286 +NA,NA,"",2023-24,Worcester - Lincoln Street,03480160, 0, 34, 31, 41, 23, 25, 30, 31, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Worcester - May Street,03480175, 0, 40, 45, 46, 36, 46, 36, 45, 0, 0, 0, 0, 0, 0, 0, 294 +NA,NA,"",2023-24,Worcester - Midland Street,03480185, 0, 44, 33, 39, 30, 22, 36, 34, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Worcester - Nelson Place,03480200, 50, 83, 64, 79, 77, 75, 85, 77, 0, 0, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Worcester - Norrback Avenue,03480202, 56, 46, 67, 58, 56, 70, 79, 59, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 369, 338, 334, 21," 1,420" +NA,NA,"",2023-24,Worcester - Quinsigamond,03480210, 25, 90, 88, 117, 100, 102, 99, 94, 0, 0, 0, 0, 0, 0, 0, 715 +NA,NA,"",2023-24,Worcester - Rice Square,03480215, 0, 58, 65, 63, 66, 71, 49, 64, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Worcester - Roosevelt,03480220, 100, 76, 76, 71, 73, 74, 73, 53, 0, 0, 0, 0, 0, 0, 0, 596 +NA,NA,"",2023-24,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445, 455, 439, 439, 13," 1,791" +NA,NA,"",2023-24,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 46, 401, 397, 0, 0, 0, 0, 0, 844 +NA,NA,"",2023-24,Worcester - Tatnuck,03480230, 27, 66, 49, 47, 51, 49, 52, 39, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Worcester - Thorndyke Road,03480235, 0, 41, 59, 61, 41, 48, 45, 57, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Worcester - Union Hill School,03480240, 0, 50, 50, 56, 60, 53, 48, 52, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 44, 40, 39, 37, 39, 45, 0, 244 +NA,NA,"",2023-24,Worcester - Vernon Hill School,03480280, 44, 84, 56, 62, 46, 63, 78, 55, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Worcester - Wawecus Road School,03480026, 0, 20, 24, 20, 21, 24, 26, 15, 0, 0, 0, 0, 0, 0, 0, 150 +NA,NA,"",2023-24,Worcester - West Tatnuck,03480260, 53, 34, 52, 39, 42, 45, 46, 55, 0, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Worcester - Woodland Academy,03480030, 0, 68, 67, 77, 60, 69, 73, 75, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Worcester - Worcester Arts Magnet School,03480225, 29, 60, 55, 66, 50, 48, 51, 47, 0, 0, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 344, 351, 0, 0, 0, 0, 0, 695 +NA,NA,"",2023-24,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 352, 369, 331, 15," 1,439" +NA,NA,"",2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0, 41, 24, 25, 25, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 +NA,NA,"",2023-24,Worthington - R. H. Conwell,03490010, 14, 8, 12, 4, 8, 7, 6, 14, 0, 0, 0, 0, 0, 0, 0, 73 +NA,NA,"",2023-24,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 117, 113, 140, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Wrentham - Delaney,03500003, 87, 131, 128, 139, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 611 NA,NA,"",2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 120, 120, 118, 121, 124, 121, 122, 114, 110, 89, 83, 90, 90, 0," 1,422" NA,NA,"",2022-23,Abington - Abington Early Education Program,00010001, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 NA,NA,"",2022-23,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 127, 146, 131, 7, 548 diff --git a/data/dashboard/enrollment/nj_enrollment.csv b/data/enrollment/nj_enrollment.csv similarity index 100% rename from data/dashboard/enrollment/nj_enrollment.csv rename to data/enrollment/nj_enrollment.csv diff --git a/data/dashboard/enrollment/wi_enrollment.csv b/data/enrollment/wi_enrollment.csv similarity index 100% rename from data/dashboard/enrollment/wi_enrollment.csv rename to data/enrollment/wi_enrollment.csv diff --git a/data/dashboard/master_list_of_schools_and_districts.csv b/data/master_list_of_schools_and_districts.csv similarity index 100% rename from data/dashboard/master_list_of_schools_and_districts.csv rename to data/master_list_of_schools_and_districts.csv diff --git a/data/dashboard/sqm_framework.csv b/data/sqm_framework.csv similarity index 100% rename from data/dashboard/sqm_framework.csv rename to data/sqm_framework.csv diff --git a/data/dashboard/staffing/nj_staffing.csv b/data/staffing/nj_staffing.csv similarity index 100% rename from data/dashboard/staffing/nj_staffing.csv rename to data/staffing/nj_staffing.csv diff --git a/data/dashboard/staffing/staffing.csv b/data/staffing/staffing.csv similarity index 100% rename from data/dashboard/staffing/staffing.csv rename to data/staffing/staffing.csv diff --git a/data/dashboard/staffing/wi_staffing.csv b/data/staffing/wi_staffing.csv similarity index 100% rename from data/dashboard/staffing/wi_staffing.csv rename to data/staffing/wi_staffing.csv diff --git a/lib/tasks/dashboard_tasks.rake b/lib/tasks/dashboard_tasks.rake index 8facda8..376dc55 100644 --- a/lib/tasks/dashboard_tasks.rake +++ b/lib/tasks/dashboard_tasks.rake @@ -31,12 +31,12 @@ namespace :dashboard do desc "load admin_data" task load_admin_data: :environment do original_count = AdminDataValue.count - Dir.glob(Dashboard::Engine.root.join("data", "dashboard", "admin_data", "dese", "*.csv")).each do |filepath| + Dir.glob(Dashboard::Engine.root.join("data", "admin_data", "dese", "*.csv")).each do |filepath| puts "=====================> Loading data from csv at path: #{filepath}" Dashboard::Dese::Loader.load_data filepath: end - Dir.glob(Dashboard::Engine.root.join("data", "dashboard", "admin_data", "out_of_state", + Dir.glob(Dashboard::Engine.root.join("data", "admin_data", "out_of_state", "*.csv")).each do |filepath| puts "=====================> Loading data from csv at path: #{filepath}" Dashboard::Dese::Loader.load_data filepath: diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index a9c5198..9cb952f 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -6,10 +6,10 @@ namespace :dashboard do seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23", "2023-24" - seeder.seed_districts_and_schools Dashboard::Engine.root.join("data", "dashboard", + seeder.seed_districts_and_schools Dashboard::Engine.root.join("data", "master_list_of_schools_and_districts.csv") - seeder.seed_sqm_framework Dashboard::Engine.root.join("data", "dashboard", "sqm_framework.csv") - seeder.seed_demographics Dashboard::Engine.root.join("data", "dashboard", "demographics.csv") + seeder.seed_sqm_framework Dashboard::Engine.root.join("data", "sqm_framework.csv") + seeder.seed_demographics Dashboard::Engine.root.join("data", "demographics.csv") Dir.glob("#{Dashboard::Engine.root}/data/dashboard/enrollment/*.csv").each do |file| seeder.seed_enrollment file diff --git a/lib/tasks/scrape.rake b/lib/tasks/scrape.rake index e28b9ff..a32777b 100644 --- a/lib/tasks/scrape.rake +++ b/lib/tasks/scrape.rake @@ -3,8 +3,8 @@ namespace :dashboard do desc "scrape dese site for admin data" task admin: :environment do puts "scraping data from dese" - scrapers = [Dese::OneAOne, Dese::OneAThree, Dese::TwoAOne, Dese::TwoCOne, Dese::ThreeAOne, Dese::ThreeATwo, - Dese::ThreeBOne, Dese::ThreeBTwo, Dese::FourAOne, Dese::FourBTwo, Dese::FourDOne, Dese::FiveCOne, Dese::FiveDTwo] + scrapers = [Dashboard::Dese::OneAOne, Dashboard::Dese::OneAThree, Dashboard::Dese::TwoAOne, Dashboard::Dese::TwoCOne, Dashboard::Dese::ThreeAOne, Dashboard::Dese::ThreeATwo, + Dashboard::Dese::ThreeBOne, Dashboard::Dese::ThreeBTwo, Dashboard::Dese::FourAOne, Dashboard::Dese::FourBTwo, Dashboard::Dese::FourDOne, Dashboard::Dese::FiveCOne, Dashboard::Dese::FiveDTwo] scrapers.each do |scraper| scraper.new.run_all end @@ -12,8 +12,8 @@ namespace :dashboard do desc "scrape dese site for teacher staffing information" task enrollment: :environment do - Dese::ThreeATwo.new.scrape_enrollments(filepath: Dashboard::Engine.root.join("data", "dashboard", "enrollment", - "enrollment.csv")) + Dese::ThreeATwo.new.scrape_enrollments(filepath: Dashboard::Engine.root.join("data", "enrollment", + "enrollments.csv")) end desc "scrape dese site for student staffing information"